saleor-apps-redis_apl/apps/data-importer/src/pages/api/manifest.ts

37 lines
1.2 KiB
TypeScript
Raw Normal View History

2023-02-07 18:11:39 +00:00
import { createManifestHandler } from "@saleor/app-sdk/handlers/next";
import { AppManifest } from "@saleor/app-sdk/types";
import packageJson from "../../../package.json";
export default createManifestHandler({
async manifestFactory(context) {
const manifest: AppManifest = {
name: "Data Importer",
2023-02-07 18:11:39 +00:00
tokenTargetUrl: `${context.appBaseUrl}/api/register`,
appUrl: context.appBaseUrl,
permissions: ["MANAGE_USERS"],
id: "saleor.app.data-importer",
2023-02-07 18:11:39 +00:00
version: packageJson.version,
webhooks: [
/**
* Configure webhooks here. They will be created in Saleor during installation
* Read more
* https://docs.saleor.io/docs/3.x/developer/api-reference/objects/webhook
*/
],
extensions: [
/**
* Optionally, extend Dashboard with custom UIs
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
*/
],
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
author: "Saleor Commerce",
2023-02-07 18:11:39 +00:00
};
return manifest;
},
});