@wildix/wda-insights-client 1.0.49 → 1.0.51

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.
@@ -208,6 +208,7 @@ exports.ProjectionProvider = {
208
208
  exports.ProjectionStatus = {
209
209
  DISABLED: "DISABLED",
210
210
  ENABLED: "ENABLED",
211
+ PAUSED: "PAUSED",
211
212
  };
212
213
  class FilterNotFoundException extends WdaInsightsServiceException_1.WdaInsightsServiceException {
213
214
  name = "FilterNotFoundException";
@@ -202,6 +202,7 @@ export const ProjectionProvider = {
202
202
  export const ProjectionStatus = {
203
203
  DISABLED: "DISABLED",
204
204
  ENABLED: "ENABLED",
205
+ PAUSED: "PAUSED",
205
206
  };
206
207
  export class FilterNotFoundException extends __BaseException {
207
208
  name = "FilterNotFoundException";
@@ -146,10 +146,13 @@ declare const CreateProjectionCommand_base: {
146
146
  * // name: "STRING_VALUE",
147
147
  * // },
148
148
  * // id: "STRING_VALUE", // required
149
- * // status: "ENABLED" || "DISABLED", // required
149
+ * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
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
  *
@@ -95,10 +95,13 @@ declare const DisableProjectionCommand_base: {
95
95
  * // name: "STRING_VALUE",
96
96
  * // },
97
97
  * // id: "STRING_VALUE", // required
98
- * // status: "ENABLED" || "DISABLED", // required
98
+ * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
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
  *
@@ -95,10 +95,13 @@ declare const EnableProjectionCommand_base: {
95
95
  * // name: "STRING_VALUE",
96
96
  * // },
97
97
  * // id: "STRING_VALUE", // required
98
- * // status: "ENABLED" || "DISABLED", // required
98
+ * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
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
  *
@@ -95,10 +95,13 @@ declare const GetProjectionCommand_base: {
95
95
  * // name: "STRING_VALUE",
96
96
  * // },
97
97
  * // id: "STRING_VALUE", // required
98
- * // status: "ENABLED" || "DISABLED", // required
98
+ * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
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
  *
@@ -95,10 +95,13 @@ declare const ListProjectionsCommand_base: {
95
95
  * // name: "STRING_VALUE",
96
96
  * // },
97
97
  * // id: "STRING_VALUE", // required
98
- * // status: "ENABLED" || "DISABLED", // required
98
+ * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
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
@@ -146,10 +146,13 @@ declare const UpdateProjectionCommand_base: {
146
146
  * // name: "STRING_VALUE",
147
147
  * // },
148
148
  * // id: "STRING_VALUE", // required
149
- * // status: "ENABLED" || "DISABLED", // required
149
+ * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
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
@@ -1070,6 +1076,7 @@ export interface CreateProjectionInput {
1070
1076
  export declare const ProjectionStatus: {
1071
1077
  readonly DISABLED: "DISABLED";
1072
1078
  readonly ENABLED: "ENABLED";
1079
+ readonly PAUSED: "PAUSED";
1073
1080
  };
1074
1081
  /**
1075
1082
  * @public
@@ -1091,6 +1098,7 @@ export interface Projection {
1091
1098
  version: number;
1092
1099
  createdAt: string;
1093
1100
  updatedAt?: string | undefined;
1101
+ metadata?: ProjectionMetadata | undefined;
1094
1102
  }
1095
1103
  /**
1096
1104
  * @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.51",
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",