@axinom/mosaic-messages 0.36.0-rc.10 → 0.36.0-rc.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.
@@ -88,9 +88,9 @@
88
88
  "type": "integer",
89
89
  "description": "The order in which this field should be displayed in relation to other fields of the same entity"
90
90
  },
91
- "is_archived": {
91
+ "is_active": {
92
92
  "type": "boolean",
93
- "description": "Set to true if field definition should be archived, and send a separate declare command without the field after the field definition is archived to completely delete it."
93
+ "description": "Set to false if field definition should be deactivated, and send a separate declare command without the field after the field definition is deactivated to completely delete it."
94
94
  },
95
95
  "field_validation_rules": {
96
96
  "type": "array",
@@ -73,7 +73,7 @@ export declare const DeclareEntityDefinitionCommandSchema: {
73
73
  type: string;
74
74
  description: string;
75
75
  };
76
- is_archived: {
76
+ is_active: {
77
77
  type: string;
78
78
  description: string;
79
79
  };
@@ -85,9 +85,9 @@
85
85
  "type": "integer",
86
86
  "description": "The order in which this field should be displayed in relation to other fields of the same entity"
87
87
  },
88
- "is_archived": {
88
+ "is_active": {
89
89
  "type": "boolean",
90
- "description": "Set to true if field definition should be archived, and send a separate declare command without the field after the field definition is archived to completely delete it."
90
+ "description": "Set to false if field definition should be deactivated, and send a separate declare command without the field after the field definition is deactivated to completely delete it."
91
91
  },
92
92
  "field_validation_rules": {
93
93
  "type": "array",
@@ -45,9 +45,9 @@
45
45
  "description": "The string has a minimum length of one character and it cannot consist of only whitespace characters."
46
46
  }
47
47
  },
48
- "archived_fields": {
48
+ "inactive_fields": {
49
49
  "type": "array",
50
- "description": "An array of entity fields that already existed and were explicitly archived.",
50
+ "description": "An array of entity fields that already existed and were explicitly made inactive.",
51
51
  "uniqueItems": true,
52
52
  "additionalItems": false,
53
53
  "items": {
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "deleted_fields": {
61
61
  "type": "array",
62
- "description": "An array of entity fields that already existed in an archived state, but were not defined anymore as part of the command, so they were deleted.",
62
+ "description": "An array of entity fields that already existed in an inactive state, but were not defined anymore as part of the command, so they were deleted.",
63
63
  "uniqueItems": true,
64
64
  "additionalItems": false,
65
65
  "items": {
@@ -69,7 +69,7 @@ export declare const EntityDefinitionDeclareFailedEventSchema: {
69
69
  type: string;
70
70
  description: string;
71
71
  };
72
- is_archived: {
72
+ is_active: {
73
73
  type: string;
74
74
  description: string;
75
75
  };
@@ -167,7 +167,7 @@ export declare const EntityDefinitionDeclareFinishedEventSchema: {
167
167
  description: string;
168
168
  };
169
169
  };
170
- archived_fields: {
170
+ inactive_fields: {
171
171
  type: string;
172
172
  description: string;
173
173
  uniqueItems: boolean;
@@ -19,11 +19,11 @@ export interface EntityDefinitionDeclareFinishedEvent {
19
19
  */
20
20
  existing_fields?: string[];
21
21
  /**
22
- * An array of entity fields that already existed and were explicitly archived.
22
+ * An array of entity fields that already existed and were explicitly made inactive.
23
23
  */
24
- archived_fields?: string[];
24
+ inactive_fields?: string[];
25
25
  /**
26
- * An array of entity fields that already existed in an archived state, but were not defined anymore as part of the command, so they were deleted.
26
+ * An array of entity fields that already existed in an inactive state, but were not defined anymore as part of the command, so they were deleted.
27
27
  */
28
28
  deleted_fields?: string[];
29
29
  }
@@ -30,9 +30,9 @@ export interface EntityFieldDefinition {
30
30
  */
31
31
  sort_index?: number;
32
32
  /**
33
- * Set to true if field definition should be archived, and send a separate declare command without the field after the field definition is archived to completely delete it.
33
+ * Set to false if field definition should be deactivated, and send a separate declare command without the field after the field definition is deactivated to completely delete it.
34
34
  */
35
- is_archived?: boolean;
35
+ is_active?: boolean;
36
36
  /**
37
37
  * An array of field validation rules.
38
38
  */
@@ -1 +1 @@
1
- {"version":3,"file":"entity-field-definition.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/localization/types/entity-field-definition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAC;AAC9E,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AACnF;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,wBAAwB,CAAC;IACrC;;OAEG;IACH,aAAa,EAAE,0BAA0B,CAAC;IAC1C;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,sBAAsB,CAAC,EAAE,6BAA6B,EAAE,CAAC;CAC1D"}
1
+ {"version":3,"file":"entity-field-definition.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/localization/types/entity-field-definition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAC;AAC9E,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AACnF;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,wBAAwB,CAAC;IACrC;;OAEG;IACH,aAAa,EAAE,0BAA0B,CAAC;IAC1C;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,sBAAsB,CAAC,EAAE,6BAA6B,EAAE,CAAC;CAC1D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axinom/mosaic-messages",
3
- "version": "0.36.0-rc.10",
3
+ "version": "0.36.0-rc.12",
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.26.0-rc.10",
33
- "@axinom/mosaic-message-bus-abstractions": "^0.7.0-rc.10",
32
+ "@axinom/mosaic-cli": "^0.26.0-rc.12",
33
+ "@axinom/mosaic-message-bus-abstractions": "^0.7.0-rc.12",
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": "a56de4f80b74873d982b58bd4c0e4e2e7f43e32e"
45
+ "gitHead": "0e1edd919cebd44b7a317f83c2b99602e07768d5"
46
46
  }
@@ -88,9 +88,9 @@
88
88
  "type": "integer",
89
89
  "description": "The order in which this field should be displayed in relation to other fields of the same entity"
90
90
  },
91
- "is_archived": {
91
+ "is_active": {
92
92
  "type": "boolean",
93
- "description": "Set to true if field definition should be archived, and send a separate declare command without the field after the field definition is archived to completely delete it."
93
+ "description": "Set to false if field definition should be deactivated, and send a separate declare command without the field after the field definition is deactivated to completely delete it."
94
94
  },
95
95
  "field_validation_rules": {
96
96
  "type": "array",
@@ -85,9 +85,9 @@
85
85
  "type": "integer",
86
86
  "description": "The order in which this field should be displayed in relation to other fields of the same entity"
87
87
  },
88
- "is_archived": {
88
+ "is_active": {
89
89
  "type": "boolean",
90
- "description": "Set to true if field definition should be archived, and send a separate declare command without the field after the field definition is archived to completely delete it."
90
+ "description": "Set to false if field definition should be deactivated, and send a separate declare command without the field after the field definition is deactivated to completely delete it."
91
91
  },
92
92
  "field_validation_rules": {
93
93
  "type": "array",
@@ -45,9 +45,9 @@
45
45
  "description": "The string has a minimum length of one character and it cannot consist of only whitespace characters."
46
46
  }
47
47
  },
48
- "archived_fields": {
48
+ "inactive_fields": {
49
49
  "type": "array",
50
- "description": "An array of entity fields that already existed and were explicitly archived.",
50
+ "description": "An array of entity fields that already existed and were explicitly made inactive.",
51
51
  "uniqueItems": true,
52
52
  "additionalItems": false,
53
53
  "items": {
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "deleted_fields": {
61
61
  "type": "array",
62
- "description": "An array of entity fields that already existed in an archived state, but were not defined anymore as part of the command, so they were deleted.",
62
+ "description": "An array of entity fields that already existed in an inactive state, but were not defined anymore as part of the command, so they were deleted.",
63
63
  "uniqueItems": true,
64
64
  "additionalItems": false,
65
65
  "items": {
@@ -19,11 +19,11 @@ export interface EntityDefinitionDeclareFinishedEvent {
19
19
  */
20
20
  existing_fields?: string[];
21
21
  /**
22
- * An array of entity fields that already existed and were explicitly archived.
22
+ * An array of entity fields that already existed and were explicitly made inactive.
23
23
  */
24
- archived_fields?: string[];
24
+ inactive_fields?: string[];
25
25
  /**
26
- * An array of entity fields that already existed in an archived state, but were not defined anymore as part of the command, so they were deleted.
26
+ * An array of entity fields that already existed in an inactive state, but were not defined anymore as part of the command, so they were deleted.
27
27
  */
28
28
  deleted_fields?: string[];
29
29
  }
@@ -30,9 +30,9 @@ export interface EntityFieldDefinition {
30
30
  */
31
31
  sort_index?: number;
32
32
  /**
33
- * Set to true if field definition should be archived, and send a separate declare command without the field after the field definition is archived to completely delete it.
33
+ * Set to false if field definition should be deactivated, and send a separate declare command without the field after the field definition is deactivated to completely delete it.
34
34
  */
35
- is_archived?: boolean;
35
+ is_active?: boolean;
36
36
  /**
37
37
  * An array of field validation rules.
38
38
  */