Update manifests to contain up to date author, homepage, support and privacy fields (#399)
This commit is contained in:
parent
453baf78a1
commit
57f6d41bc4
13 changed files with 45 additions and 3 deletions
15
.changeset/friendly-pumas-agree.md
Normal file
15
.changeset/friendly-pumas-agree.md
Normal 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
|
|
@ -24,6 +24,9 @@ export default createManifestHandler({
|
||||||
],
|
],
|
||||||
extensions: [],
|
extensions: [],
|
||||||
author: "Saleor Commerce",
|
author: "Saleor Commerce",
|
||||||
|
supportUrl: "https://github.com/saleor/apps/discussions",
|
||||||
|
homepageUrl: "https://github.com/saleor/apps",
|
||||||
|
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
|
||||||
};
|
};
|
||||||
|
|
||||||
return manifest;
|
return manifest;
|
||||||
|
|
|
@ -30,6 +30,10 @@ export default createManifestHandler({
|
||||||
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
|
* 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;
|
return manifest;
|
||||||
|
|
|
@ -25,6 +25,9 @@ export default createManifestHandler({
|
||||||
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
|
* 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",
|
author: "Saleor Commerce",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -32,8 +32,9 @@ export default createManifestHandler({
|
||||||
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
|
* 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",
|
supportUrl: "https://github.com/saleor/apps/discussions",
|
||||||
|
homepageUrl: "https://github.com/saleor/apps",
|
||||||
|
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
|
||||||
author: "Saleor Commerce",
|
author: "Saleor Commerce",
|
||||||
/**
|
/**
|
||||||
* Requires 3.10 due to invoices event payload - in previous versions, order reference was missing
|
* Requires 3.10 due to invoices event payload - in previous versions, order reference was missing
|
||||||
|
|
|
@ -16,8 +16,9 @@ export default createManifestHandler({
|
||||||
version: packageJson.version,
|
version: packageJson.version,
|
||||||
webhooks: [invoiceRequestedWebhook.getWebhookManifest(context.appBaseUrl)],
|
webhooks: [invoiceRequestedWebhook.getWebhookManifest(context.appBaseUrl)],
|
||||||
extensions: [],
|
extensions: [],
|
||||||
homepageUrl: "https://github.com/saleor/apps",
|
|
||||||
supportUrl: "https://github.com/saleor/apps/discussions",
|
supportUrl: "https://github.com/saleor/apps/discussions",
|
||||||
|
homepageUrl: "https://github.com/saleor/apps",
|
||||||
|
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
|
||||||
author: "Saleor Commerce",
|
author: "Saleor Commerce",
|
||||||
/**
|
/**
|
||||||
* Requires 3.10 due to invoices event payload - in previous versions, order reference was missing
|
* Requires 3.10 due to invoices event payload - in previous versions, order reference was missing
|
||||||
|
|
|
@ -24,6 +24,10 @@ const handler = createManifestHandler({
|
||||||
orderCreatedWebhook.getWebhookManifest(appBaseUrl),
|
orderCreatedWebhook.getWebhookManifest(appBaseUrl),
|
||||||
orderFullyPaidWebhook.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",
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -114,6 +114,7 @@ class Manifest(BaseModel):
|
||||||
id: str
|
id: str
|
||||||
permissions: list[str]
|
permissions: list[str]
|
||||||
name: str
|
name: str
|
||||||
|
author: str
|
||||||
version: str
|
version: str
|
||||||
about: str
|
about: str
|
||||||
extensions: list[Any] = []
|
extensions: list[Any] = []
|
||||||
|
|
|
@ -38,4 +38,5 @@ manifest = Manifest(
|
||||||
permissions=[SaleorPermissions.MANAGE_OBSERVABILITY],
|
permissions=[SaleorPermissions.MANAGE_OBSERVABILITY],
|
||||||
extensions=[],
|
extensions=[],
|
||||||
webhooks=[],
|
webhooks=[],
|
||||||
|
author="Saleor Commerce"
|
||||||
)
|
)
|
||||||
|
|
|
@ -15,6 +15,9 @@ export default createManifestHandler({
|
||||||
webhooks: [],
|
webhooks: [],
|
||||||
extensions: [],
|
extensions: [],
|
||||||
author: "Saleor Commerce",
|
author: "Saleor Commerce",
|
||||||
|
supportUrl: "https://github.com/saleor/apps/discussions",
|
||||||
|
homepageUrl: "https://github.com/saleor/apps",
|
||||||
|
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
|
||||||
};
|
};
|
||||||
|
|
||||||
return manifest;
|
return manifest;
|
||||||
|
|
|
@ -44,7 +44,9 @@ export default createManifestHandler({
|
||||||
* https://docs.saleor.io/docs/3.x/developer/extending/apps/extending-dashboard-with-apps
|
* 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;
|
return manifest;
|
||||||
|
|
|
@ -16,6 +16,9 @@ const handler = createManifestHandler({
|
||||||
webhooks: [orderCreatedWebhook.getWebhookManifest(context.appBaseUrl)],
|
webhooks: [orderCreatedWebhook.getWebhookManifest(context.appBaseUrl)],
|
||||||
extensions: [],
|
extensions: [],
|
||||||
author: "Saleor Commerce",
|
author: "Saleor Commerce",
|
||||||
|
supportUrl: "https://github.com/saleor/apps/discussions",
|
||||||
|
homepageUrl: "https://github.com/saleor/apps",
|
||||||
|
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
|
||||||
};
|
};
|
||||||
|
|
||||||
return manifest;
|
return manifest;
|
||||||
|
|
|
@ -26,6 +26,7 @@ export default createManifestHandler({
|
||||||
homepageUrl: "https://github.com/saleor/apps",
|
homepageUrl: "https://github.com/saleor/apps",
|
||||||
supportUrl: "https://github.com/saleor/apps/discussions",
|
supportUrl: "https://github.com/saleor/apps/discussions",
|
||||||
author: "Saleor Commerce",
|
author: "Saleor Commerce",
|
||||||
|
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
|
||||||
};
|
};
|
||||||
|
|
||||||
return manifest;
|
return manifest;
|
||||||
|
|
Loading…
Reference in a new issue