UNPKG

@line/bot-sdk

Version:
188 lines (174 loc) 7.96 kB
/** * LINE Messaging API * This document describes LINE Messaging API. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /* tslint:disable:no-unused-locals */ import { CreateAudienceGroupResponse } from "../model/createAudienceGroupResponse.js"; import * as Types from "../../types.js"; import { ensureJSON, buildPath } from "../../utils.js"; import { Readable } from "node:stream"; import HTTPFetchClient, { convertResponseToReadable, mergeHeaders, } from "../../http-fetch.js"; // =============================================== // This file is autogenerated - Please do not edit // =============================================== interface httpClientConfig { /** * Base URL for requests. * Defaults to 'https://api-data.line.me'. * You can override this for testing or to use a mock server. */ baseURL?: string; /** * Channel access token used for authorization. */ channelAccessToken: string; /** * Extra headers merged into every request. */ defaultHeaders?: Record<string, string>; } /** * @see {@link LineBotClient} for a unified interface that wraps this client. */ export class ManageAudienceBlobClient { private httpClient: HTTPFetchClient; /** * Initializes a new `ManageAudienceBlobClient`. * * @param config Configuration for this API client. * @param config.baseURL The base URL for requests. Defaults to `https://api-data.line.me`. * @param config.channelAccessToken The channel access token used for authorization. * @param config.defaultHeaders Extra headers merged into every request. * * @example * const client = new ManageAudienceBlobClient({ * channelAccessToken: process.env.LINE_CHANNEL_ACCESS_TOKEN!, * }); */ constructor(config: httpClientConfig) { const baseURL = config.baseURL || "https://api-data.line.me"; const defaultHeaders = mergeHeaders(config.defaultHeaders, { Authorization: "Bearer " + config.channelAccessToken, }); this.httpClient = new HTTPFetchClient({ defaultHeaders: defaultHeaders, baseURL: baseURL, }); } /** * Add user IDs or Identifiers for Advertisers (IFAs) to an audience for uploading user IDs (by file). * Calls `PUT https://api-data.line.me/v2/bot/audienceGroup/upload/byFile`. * To inspect the HTTP status code or response headers, use {@link addUserIdsToAudienceWithHttpInfo}. * @param file A text file with one user ID or IFA entered per line. Specify text/plain as Content-Type. Max file number: 1 Max number: 1,500,000 * @param audienceGroupId The audience ID. * @param uploadDescription The description to register with the job * @returns A promise resolving to the response body. * @see <a href="https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group-by-file">LINE Developers documentation</a> */ public async addUserIdsToAudience( file: Blob, audienceGroupId?: number, uploadDescription?: string, ): Promise<Types.MessageAPIResponseBase> { return ( await this.addUserIdsToAudienceWithHttpInfo( file, audienceGroupId, uploadDescription, ) ).body; } /** * Add user IDs or Identifiers for Advertisers (IFAs) to an audience for uploading user IDs (by file). * Calls `PUT https://api-data.line.me/v2/bot/audienceGroup/upload/byFile`. * This method returns the response body together with the underlying `httpResponse`. * @param file A text file with one user ID or IFA entered per line. Specify text/plain as Content-Type. Max file number: 1 Max number: 1,500,000 * @param audienceGroupId The audience ID. * @param uploadDescription The description to register with the job * @returns A promise resolving to the response body together with the underlying `httpResponse`. * @see <a href="https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group-by-file">LINE Developers documentation</a> */ public async addUserIdsToAudienceWithHttpInfo( file: Blob, audienceGroupId?: number, uploadDescription?: string, ): Promise<Types.ApiResponseType<Types.MessageAPIResponseBase>> { const form = new FormData(); form.append("audienceGroupId", String(audienceGroupId)); form.append("uploadDescription", String(uploadDescription)); form.append("file", file); // file const res = await this.httpClient.putFormMultipart( "/v2/bot/audienceGroup/upload/byFile", form, ); const text = await res.text(); const parsedBody = text ? JSON.parse(text) : null; return { httpResponse: res, body: parsedBody }; } /** * Create audience for uploading user IDs (by file). * Calls `POST https://api-data.line.me/v2/bot/audienceGroup/upload/byFile`. * To inspect the HTTP status code or response headers, use {@link createAudienceForUploadingUserIdsWithHttpInfo}. * @param file A text file with one user ID or IFA entered per line. Specify text/plain as Content-Type. Max file number: 1 Max number: 1,500,000 * @param description The audience's name. This is case-insensitive, meaning AUDIENCE and audience are considered identical. Max character limit: 120 * @param isIfaAudience To specify recipients by IFAs: set `true`. To specify recipients by user IDs: set `false` or omit isIfaAudience property. * @param uploadDescription The description to register for the job (in `jobs[].description`). * @returns A promise resolving to the response body. * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-upload-audience-group-by-file">LINE Developers documentation</a> */ public async createAudienceForUploadingUserIds( file: Blob, description?: string, isIfaAudience?: boolean, uploadDescription?: string, ): Promise<CreateAudienceGroupResponse> { return ( await this.createAudienceForUploadingUserIdsWithHttpInfo( file, description, isIfaAudience, uploadDescription, ) ).body; } /** * Create audience for uploading user IDs (by file). * Calls `POST https://api-data.line.me/v2/bot/audienceGroup/upload/byFile`. * This method returns the response body together with the underlying `httpResponse`. * @param file A text file with one user ID or IFA entered per line. Specify text/plain as Content-Type. Max file number: 1 Max number: 1,500,000 * @param description The audience's name. This is case-insensitive, meaning AUDIENCE and audience are considered identical. Max character limit: 120 * @param isIfaAudience To specify recipients by IFAs: set `true`. To specify recipients by user IDs: set `false` or omit isIfaAudience property. * @param uploadDescription The description to register for the job (in `jobs[].description`). * @returns A promise resolving to the response body together with the underlying `httpResponse`. * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-upload-audience-group-by-file">LINE Developers documentation</a> */ public async createAudienceForUploadingUserIdsWithHttpInfo( file: Blob, description?: string, isIfaAudience?: boolean, uploadDescription?: string, ): Promise<Types.ApiResponseType<CreateAudienceGroupResponse>> { const form = new FormData(); form.append("description", String(description)); form.append("isIfaAudience", String(isIfaAudience)); form.append("uploadDescription", String(uploadDescription)); form.append("file", file); // file const res = await this.httpClient.postFormMultipart( "/v2/bot/audienceGroup/upload/byFile", form, ); const text = await res.text(); const parsedBody = text ? JSON.parse(text) : null; return { httpResponse: res, body: parsedBody }; } }