rapida-partner 1.16.11 → 1.16.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapida-partner",
3
- "version": "1.16.11",
3
+ "version": "1.16.12",
4
4
  "main": "dist/index.js",
5
5
  "module": "index.ts",
6
6
  "files": [
@@ -35,6 +35,7 @@ export interface IForm {
35
35
  id: string;
36
36
  endpoint: string;
37
37
  actions: ("create" | "get" | "getById" | "update" | "softDelete" | "hardDelete" | "clone" | "sendEmail")[];
38
+ permissionedUrls: string[];
38
39
  request?: IContractRequest;
39
40
  conditions?: IFormCondition;
40
41
  businessRules?: IBusinessRule[];
@@ -94,6 +94,7 @@ export interface IList {
94
94
  id: string;
95
95
  endpoint: string;
96
96
  actions: ("create" | "get" | "getById" | "update" | "softDelete" | "hardDelete" | "clone" | "sendEmail")[];
97
+ permissionedUrls: string[];
97
98
  request?: IContractRequest;
98
99
  conditions?: IFormCondition;
99
100
  businessRules?: IBusinessRule[];
@@ -297,6 +297,12 @@
297
297
  ]
298
298
  }
299
299
  },
300
+ "permissionedUrls": {
301
+ "type": "array",
302
+ "items": {
303
+ "type": "string"
304
+ }
305
+ },
300
306
  "request": {
301
307
  "type": "object",
302
308
  "properties": {
@@ -514,6 +514,12 @@
514
514
  ]
515
515
  }
516
516
  },
517
+ "permissionedUrls": {
518
+ "type": "array",
519
+ "items": {
520
+ "type": "string"
521
+ }
522
+ },
517
523
  "request": {
518
524
  "type": "object",
519
525
  "properties": {