@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
171 lines • 6.98 kB
JavaScript
;
/**
* LIFF server API
* LIFF Server API.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.LiffClient = void 0;
const utils_js_1 = require("../../utils.js");
const http_fetch_js_1 = __importStar(require("../../http-fetch.js"));
/**
* @see {@link LineBotClient} for a unified interface that wraps this client.
*/
class LiffClient {
constructor(config) {
const baseURL = config.baseURL || "https://api.line.me";
const defaultHeaders = (0, http_fetch_js_1.mergeHeaders)(config.defaultHeaders, {
Authorization: "Bearer " + config.channelAccessToken,
});
this.httpClient = new http_fetch_js_1.default({
defaultHeaders: defaultHeaders,
baseURL: baseURL,
});
}
/**
* Adding the LIFF app to a channel
* @summary Create LIFF app
* @param addLiffAppRequest
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#add-liff-app">Create LIFF app Documentation</a>
*/
async addLIFFApp(addLiffAppRequest) {
return (await this.addLIFFAppWithHttpInfo(addLiffAppRequest)).body;
}
/**
* Adding the LIFF app to a channel.
* This method includes HttpInfo object to return additional information.
* @summary Create LIFF app
* @param addLiffAppRequest
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#add-liff-app">Create LIFF app Documentation</a>
*/
async addLIFFAppWithHttpInfo(addLiffAppRequest) {
const params = addLiffAppRequest;
const res = await this.httpClient.post("/liff/v1/apps", params);
const text = await res.text();
const parsedBody = text ? JSON.parse(text) : null;
return { httpResponse: res, body: parsedBody };
}
/**
* Deletes a LIFF app from a channel.
* @summary Delete LIFF app from a channel
* @param liffId ID of the LIFF app to be updated
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#delete-liff-app">Delete LIFF app from a channel Documentation</a>
*/
async deleteLIFFApp(liffId) {
return (await this.deleteLIFFAppWithHttpInfo(liffId)).body;
}
/**
* Deletes a LIFF app from a channel. .
* This method includes HttpInfo object to return additional information.
* @summary Delete LIFF app from a channel
* @param liffId ID of the LIFF app to be updated
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#delete-liff-app">Delete LIFF app from a channel Documentation</a>
*/
async deleteLIFFAppWithHttpInfo(liffId) {
const requestPath = (0, utils_js_1.buildPath)("/liff/v1/apps/{liffId}", {
liffId: liffId,
});
const res = await this.httpClient.delete(requestPath);
const text = await res.text();
const parsedBody = text ? JSON.parse(text) : null;
return { httpResponse: res, body: parsedBody };
}
/**
* Gets information on all the LIFF apps added to the channel.
* @summary Get all LIFF apps
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#get-all-liff-apps">Get all LIFF apps Documentation</a>
*/
async getAllLIFFApps() {
return (await this.getAllLIFFAppsWithHttpInfo()).body;
}
/**
* Gets information on all the LIFF apps added to the channel..
* This method includes HttpInfo object to return additional information.
* @summary Get all LIFF apps
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#get-all-liff-apps">Get all LIFF apps Documentation</a>
*/
async getAllLIFFAppsWithHttpInfo() {
const res = await this.httpClient.get("/liff/v1/apps");
const text = await res.text();
const parsedBody = text ? JSON.parse(text) : null;
return { httpResponse: res, body: parsedBody };
}
/**
* Update LIFF app settings
* @summary Update LIFF app from a channel
* @param liffId ID of the LIFF app to be updated
* @param updateLiffAppRequest
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#update-liff-app">Update LIFF app from a channel Documentation</a>
*/
async updateLIFFApp(liffId, updateLiffAppRequest) {
return (await this.updateLIFFAppWithHttpInfo(liffId, updateLiffAppRequest))
.body;
}
/**
* Update LIFF app settings.
* This method includes HttpInfo object to return additional information.
* @summary Update LIFF app from a channel
* @param liffId ID of the LIFF app to be updated
* @param updateLiffAppRequest
*
* @see <a href="https://developers.line.biz/en/reference/liff-server/#update-liff-app">Update LIFF app from a channel Documentation</a>
*/
async updateLIFFAppWithHttpInfo(liffId, updateLiffAppRequest) {
const requestPath = (0, utils_js_1.buildPath)("/liff/v1/apps/{liffId}", {
liffId: liffId,
});
const params = updateLiffAppRequest;
const res = await this.httpClient.put(requestPath, params);
const text = await res.text();
const parsedBody = text ? JSON.parse(text) : null;
return { httpResponse: res, body: parsedBody };
}
}
exports.LiffClient = LiffClient;
//# sourceMappingURL=liffClient.js.map