@wildix/wda-insights-client 1.0.49 → 1.0.50

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.
@@ -150,6 +150,9 @@ declare const CreateProjectionCommand_base: {
150
150
  * // version: Number("int"), // required
151
151
  * // createdAt: "STRING_VALUE", // required
152
152
  * // updatedAt: "STRING_VALUE",
153
+ * // metadata: { // ProjectionMetadata
154
+ * // predefined: true || false,
155
+ * // },
153
156
  * // },
154
157
  * // };
155
158
  *
@@ -99,6 +99,9 @@ declare const DisableProjectionCommand_base: {
99
99
  * // version: Number("int"), // required
100
100
  * // createdAt: "STRING_VALUE", // required
101
101
  * // updatedAt: "STRING_VALUE",
102
+ * // metadata: { // ProjectionMetadata
103
+ * // predefined: true || false,
104
+ * // },
102
105
  * // },
103
106
  * // };
104
107
  *
@@ -99,6 +99,9 @@ declare const EnableProjectionCommand_base: {
99
99
  * // version: Number("int"), // required
100
100
  * // createdAt: "STRING_VALUE", // required
101
101
  * // updatedAt: "STRING_VALUE",
102
+ * // metadata: { // ProjectionMetadata
103
+ * // predefined: true || false,
104
+ * // },
102
105
  * // },
103
106
  * // };
104
107
  *
@@ -99,6 +99,9 @@ declare const GetProjectionCommand_base: {
99
99
  * // version: Number("int"), // required
100
100
  * // createdAt: "STRING_VALUE", // required
101
101
  * // updatedAt: "STRING_VALUE",
102
+ * // metadata: { // ProjectionMetadata
103
+ * // predefined: true || false,
104
+ * // },
102
105
  * // },
103
106
  * // };
104
107
  *
@@ -99,6 +99,9 @@ declare const ListProjectionsCommand_base: {
99
99
  * // version: Number("int"), // required
100
100
  * // createdAt: "STRING_VALUE", // required
101
101
  * // updatedAt: "STRING_VALUE",
102
+ * // metadata: { // ProjectionMetadata
103
+ * // predefined: true || false,
104
+ * // },
102
105
  * // },
103
106
  * // ],
104
107
  * // categories: [ // ProjectionsCategoriesList // required
@@ -150,6 +150,9 @@ declare const UpdateProjectionCommand_base: {
150
150
  * // version: Number("int"), // required
151
151
  * // createdAt: "STRING_VALUE", // required
152
152
  * // updatedAt: "STRING_VALUE",
153
+ * // metadata: { // ProjectionMetadata
154
+ * // predefined: true || false,
155
+ * // },
153
156
  * // },
154
157
  * // };
155
158
  *
@@ -1063,6 +1063,12 @@ export interface CreateProjectionInput {
1063
1063
  company?: string | undefined;
1064
1064
  id: string;
1065
1065
  }
1066
+ /**
1067
+ * @public
1068
+ */
1069
+ export interface ProjectionMetadata {
1070
+ predefined?: boolean | undefined;
1071
+ }
1066
1072
  /**
1067
1073
  * @public
1068
1074
  * @enum
@@ -1091,6 +1097,7 @@ export interface Projection {
1091
1097
  version: number;
1092
1098
  createdAt: string;
1093
1099
  updatedAt?: string | undefined;
1100
+ metadata?: ProjectionMetadata | undefined;
1094
1101
  }
1095
1102
  /**
1096
1103
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-insights-client",
3
3
  "description": "@wildix/wda-insights-client client",
4
- "version": "1.0.49",
4
+ "version": "1.0.50",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",