@appsemble/types 0.36.5-test.6 → 0.36.6-test.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.36.5-test.6/config/assets/logo.svg) Appsemble Types
1
+ # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.36.6-test.0/config/assets/logo.svg) Appsemble Types
2
2
 
3
3
  > Reusable TypeScript types
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@appsemble/types)](https://www.npmjs.com/package/@appsemble/types)
6
- [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.36.5-test.6/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.36.5-test.6)
6
+ [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.36.6-test.0/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.36.6-test.0)
7
7
  [![Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://prettier.io)
8
8
 
9
9
  ## Table of Contents
@@ -26,5 +26,5 @@ not guaranteed.
26
26
 
27
27
  ## License
28
28
 
29
- [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.36.5-test.6/LICENSE.md) ©
29
+ [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.36.6-test.0/LICENSE.md) ©
30
30
  [Appsemble](https://appsemble.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appsemble/types",
3
- "version": "0.36.5-test.6",
3
+ "version": "0.36.6-test.0",
4
4
  "description": "TypeScript definitions reused within Appsemble internally",
5
5
  "keywords": [
6
6
  "app",
@@ -40,7 +40,7 @@
40
40
  "test": "vitest"
41
41
  },
42
42
  "dependencies": {
43
- "@appsemble/lang-sdk": "0.36.5-test.6",
43
+ "@appsemble/lang-sdk": "0.36.6-test.0",
44
44
  "@fortawesome/fontawesome-common-types": "^6.0.0",
45
45
  "react": "^18.0.0"
46
46
  }
package/permissions.d.ts CHANGED
@@ -279,6 +279,10 @@ export declare enum OrganizationPermission {
279
279
  /**
280
280
  * The permission to query organization subscriptions.
281
281
  */
282
- QueryOrganizationSubscriptions = 68
282
+ QueryOrganizationSubscriptions = 68,
283
+ /**
284
+ * The permission to invoke webhooks for an app.
285
+ */
286
+ InvokeAppWebhooks = 69
283
287
  }
284
288
  export declare const appOrganizationPermissionMapping: Record<AppPermission, OrganizationPermission>;
package/permissions.js CHANGED
@@ -281,6 +281,10 @@ export var OrganizationPermission;
281
281
  * The permission to query organization subscriptions.
282
282
  */
283
283
  OrganizationPermission[OrganizationPermission["QueryOrganizationSubscriptions"] = 68] = "QueryOrganizationSubscriptions";
284
+ /**
285
+ * The permission to invoke webhooks for an app.
286
+ */
287
+ OrganizationPermission[OrganizationPermission["InvokeAppWebhooks"] = 69] = "InvokeAppWebhooks";
284
288
  })(OrganizationPermission || (OrganizationPermission = {}));
285
289
  export const appOrganizationPermissionMapping = {
286
290
  [AppPermission.CreateAppInvites]: OrganizationPermission.CreateAppInvites,
@@ -309,5 +313,6 @@ export const appOrganizationPermissionMapping = {
309
313
  [AppPermission.UpdateOwnResources]: OrganizationPermission.UpdateAppResources,
310
314
  [AppPermission.PatchOwnResources]: OrganizationPermission.PatchAppResources,
311
315
  [AppPermission.DeleteOwnResources]: OrganizationPermission.DeleteAppResources,
316
+ [AppPermission.InvokeWebhooks]: OrganizationPermission.InvokeAppWebhooks,
312
317
  };
313
318
  //# sourceMappingURL=permissions.js.map