@axinom/mosaic-messages 0.11.0 → 0.12.0-rc.1

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.
@@ -149,14 +149,14 @@ export declare const SynchronizePermissionsFinishedEventSchema: {
149
149
  type: string;
150
150
  description: string;
151
151
  };
152
- added_permissions: {
152
+ permissions_stored: {
153
153
  type: string;
154
154
  description: string;
155
155
  items: {
156
156
  type: string;
157
157
  };
158
158
  };
159
- removed_permissions: {
159
+ permissions_removed: {
160
160
  type: string;
161
161
  description: string;
162
162
  items: {
@@ -6,22 +6,22 @@
6
6
  "additionalProperties": false,
7
7
  "required": [
8
8
  "service_id",
9
- "added_permissions",
10
- "removed_permissions"
9
+ "permissions_stored",
10
+ "permissions_removed"
11
11
  ],
12
12
  "properties": {
13
13
  "service_id": {
14
14
  "type": "string",
15
15
  "description": "ID of the service permissions synchronized for."
16
16
  },
17
- "added_permissions": {
17
+ "permissions_stored": {
18
18
  "type": "array",
19
19
  "description": "Newly added permissions",
20
20
  "items": {
21
21
  "type": "string"
22
22
  }
23
23
  },
24
- "removed_permissions": {
24
+ "permissions_removed": {
25
25
  "type": "array",
26
26
  "description": "Removed permissions",
27
27
  "items": {
@@ -9,10 +9,10 @@ export interface SynchronizePermissionsFinishedEvent {
9
9
  /**
10
10
  * Newly added permissions
11
11
  */
12
- added_permissions: Array<string>;
12
+ permissions_stored: Array<string>;
13
13
  /**
14
14
  * Removed permissions
15
15
  */
16
- removed_permissions: Array<string>;
16
+ permissions_removed: Array<string>;
17
17
  }
18
18
  //# sourceMappingURL=synchronize-permissions-finished-event.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"synchronize-permissions-finished-event.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/events/synchronize-permissions-finished-event.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,mCAAmC;IAClD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACjC;;OAEG;IACH,mBAAmB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACpC"}
1
+ {"version":3,"file":"synchronize-permissions-finished-event.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/events/synchronize-permissions-finished-event.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,mCAAmC;IAClD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,kBAAkB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAClC;;OAEG;IACH,mBAAmB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACpC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axinom/mosaic-messages",
3
- "version": "0.11.0",
3
+ "version": "0.12.0-rc.1",
4
4
  "description": "Shared types for Axinom Mosaic service messages",
5
5
  "author": "Axinom",
6
6
  "license": "PROPRIETARY",
@@ -27,8 +27,8 @@
27
27
  "dev": "concurrently --names \"codegen,tsc\" \"yarn codegen:watch\" \"yarn build:compile:watch\""
28
28
  },
29
29
  "devDependencies": {
30
- "@axinom/mosaic-cli": "^0.8.0",
31
- "@axinom/mosaic-message-bus-abstractions": "^0.2.2",
30
+ "@axinom/mosaic-cli": "^0.9.0-rc.0",
31
+ "@axinom/mosaic-message-bus-abstractions": "^0.2.3-rc.2",
32
32
  "@types/glob": "^7.1.3",
33
33
  "concurrently": "^5.3.0",
34
34
  "rimraf": "^3.0.2",
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "2f3085cfbf61f629644f119e67b08e400fb14350"
43
+ "gitHead": "d155d361420d2b7ecbc4cc0cc9114cec2a66a711"
44
44
  }