Update manifests to contain up to date author, homepage, support and privacy fields (#399)

This commit is contained in:
Lukasz Ostrowski 2023-04-18 14:04:14 +02:00 committed by GitHub
parent 453baf78a1
commit 57f6d41bc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 45 additions and 3 deletions

View file

@ -0,0 +1,15 @@
---
"saleor-app-emails-and-messages": minor
"saleor-app-data-importer": minor
"saleor-app-products-feed": minor
"saleor-app-monitoring": minor
"saleor-app-invoices": minor
"saleor-app-klaviyo": minor
"saleor-app-search": minor
"saleor-app-slack": minor
"saleor-app-taxes": minor
"saleor-app-cms": minor
"saleor-app-crm": minor
---
Updated Manifest to contain up to date support, privacy, homepage and author fields

View file

@ -24,6 +24,9 @@ export default createManifestHandler({
],
extensions: [],
author: "Saleor Commerce",
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
};
return manifest;

View file

@ -30,6 +30,10 @@ export default createManifestHandler({
* 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",
};
return manifest;

View file

@ -25,6 +25,9 @@ export default createManifestHandler({
* 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",
};

View file

@ -32,8 +32,9 @@ export default createManifestHandler({
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
*/
],
homepageUrl: "https://github.com/saleor/apps",
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
author: "Saleor Commerce",
/**
* Requires 3.10 due to invoices event payload - in previous versions, order reference was missing

View file

@ -16,8 +16,9 @@ export default createManifestHandler({
version: packageJson.version,
webhooks: [invoiceRequestedWebhook.getWebhookManifest(context.appBaseUrl)],
extensions: [],
homepageUrl: "https://github.com/saleor/apps",
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
author: "Saleor Commerce",
/**
* Requires 3.10 due to invoices event payload - in previous versions, order reference was missing

View file

@ -24,6 +24,10 @@ const handler = createManifestHandler({
orderCreatedWebhook.getWebhookManifest(appBaseUrl),
orderFullyPaidWebhook.getWebhookManifest(appBaseUrl),
],
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
author: "Saleor Commerce",
};
},
});

View file

@ -114,6 +114,7 @@ class Manifest(BaseModel):
id: str
permissions: list[str]
name: str
author: str
version: str
about: str
extensions: list[Any] = []

View file

@ -38,4 +38,5 @@ manifest = Manifest(
permissions=[SaleorPermissions.MANAGE_OBSERVABILITY],
extensions=[],
webhooks=[],
author="Saleor Commerce"
)

View file

@ -15,6 +15,9 @@ export default createManifestHandler({
webhooks: [],
extensions: [],
author: "Saleor Commerce",
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
};
return manifest;

View file

@ -44,7 +44,9 @@ export default createManifestHandler({
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
*/
],
author: "Saleor Commerce",
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
};
return manifest;

View file

@ -16,6 +16,9 @@ const handler = createManifestHandler({
webhooks: [orderCreatedWebhook.getWebhookManifest(context.appBaseUrl)],
extensions: [],
author: "Saleor Commerce",
supportUrl: "https://github.com/saleor/apps/discussions",
homepageUrl: "https://github.com/saleor/apps",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
};
return manifest;

View file

@ -26,6 +26,7 @@ export default createManifestHandler({
homepageUrl: "https://github.com/saleor/apps",
supportUrl: "https://github.com/saleor/apps/discussions",
author: "Saleor Commerce",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
};
return manifest;