@axinom/mosaic-messages 0.28.1-rc.0 → 0.29.0-rc.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.
@@ -126,12 +126,8 @@ export declare const UserServiceEndUserCreatedEventSchema: {
126
126
  description: string;
127
127
  };
128
128
  email: {
129
- type: string;
129
+ type: string[];
130
130
  description: string;
131
- additionalItems: boolean;
132
- items: {
133
- type: string;
134
- };
135
131
  };
136
132
  };
137
133
  };
@@ -161,12 +157,8 @@ export declare const UserServiceEndUserDeletedEventSchema: {
161
157
  description: string;
162
158
  };
163
159
  email: {
164
- type: string;
160
+ type: string[];
165
161
  description: string;
166
- additionalItems: boolean;
167
- items: {
168
- type: string;
169
- };
170
162
  };
171
163
  };
172
164
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/user/events/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC;AACjF,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAC;AACrF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+B,CAAC;AAC/E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC;AACnF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC;AACnF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/user/events/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC;AACjF,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAC;AACrF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+B,CAAC;AAC/E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC;AACnF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC;AACnF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC"}
@@ -32,12 +32,11 @@
32
32
  "description": "Name of the user"
33
33
  },
34
34
  "email": {
35
- "type": "array",
36
- "description": "Email(s) of the user",
37
- "additionalItems": false,
38
- "items": {
39
- "type": "string"
40
- }
35
+ "type": [
36
+ "string",
37
+ "null"
38
+ ],
39
+ "description": "Email of the user"
41
40
  }
42
41
  }
43
42
  }
@@ -32,12 +32,11 @@
32
32
  "description": "Name of the user"
33
33
  },
34
34
  "email": {
35
- "type": "array",
36
- "description": "Email(s) of the user",
37
- "additionalItems": false,
38
- "items": {
39
- "type": "string"
40
- }
35
+ "type": [
36
+ "string",
37
+ "null"
38
+ ],
39
+ "description": "Email of the user"
41
40
  }
42
41
  }
43
42
  }
@@ -11,8 +11,8 @@ export interface EndUser {
11
11
  */
12
12
  name: string | null;
13
13
  /**
14
- * Email(s) of the user
14
+ * Email of the user
15
15
  */
16
- email: string[];
16
+ email: string | null;
17
17
  }
18
18
  //# sourceMappingURL=end-user.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"end-user.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/user/types/end-user.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,MAAM,EAAE,CAAC;CACjB"}
1
+ {"version":3,"file":"end-user.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/user/types/end-user.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;OAEG;IACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axinom/mosaic-messages",
3
- "version": "0.28.1-rc.0",
3
+ "version": "0.29.0-rc.0",
4
4
  "description": "Shared types for Axinom Mosaic service messages",
5
5
  "author": "Axinom",
6
6
  "license": "PROPRIETARY",
@@ -29,8 +29,8 @@
29
29
  "dev": "concurrently --names \"codegen,tsc\" \"yarn codegen:watch\" \"yarn build:compile:watch\""
30
30
  },
31
31
  "devDependencies": {
32
- "@axinom/mosaic-cli": "^0.18.5-rc.0",
33
- "@axinom/mosaic-message-bus-abstractions": "^0.5.6-rc.0",
32
+ "@axinom/mosaic-cli": "^0.18.5-rc.2",
33
+ "@axinom/mosaic-message-bus-abstractions": "^0.5.6-rc.2",
34
34
  "@types/glob": "^7.1.3",
35
35
  "concurrently": "^5.3.0",
36
36
  "rimraf": "^3.0.2",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "32853a01e5b6de8cb3712ea5e1bd75780df8d59d"
45
+ "gitHead": "d097678632aee4af6bbe24d3db3ff3c43f46311d"
46
46
  }
@@ -32,12 +32,11 @@
32
32
  "description": "Name of the user"
33
33
  },
34
34
  "email": {
35
- "type": "array",
36
- "description": "Email(s) of the user",
37
- "additionalItems": false,
38
- "items": {
39
- "type": "string"
40
- }
35
+ "type": [
36
+ "string",
37
+ "null"
38
+ ],
39
+ "description": "Email of the user"
41
40
  }
42
41
  }
43
42
  }
@@ -32,12 +32,11 @@
32
32
  "description": "Name of the user"
33
33
  },
34
34
  "email": {
35
- "type": "array",
36
- "description": "Email(s) of the user",
37
- "additionalItems": false,
38
- "items": {
39
- "type": "string"
40
- }
35
+ "type": [
36
+ "string",
37
+ "null"
38
+ ],
39
+ "description": "Email of the user"
41
40
  }
42
41
  }
43
42
  }
@@ -11,7 +11,7 @@ export interface EndUser {
11
11
  */
12
12
  name: string | null;
13
13
  /**
14
- * Email(s) of the user
14
+ * Email of the user
15
15
  */
16
- email: string[];
16
+ email: string | null;
17
17
  }