@wildix/wda-insights-client 1.0.50 → 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.
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CreateProjectionCommand.d.ts +1 -1
- package/dist-types/commands/DisableProjectionCommand.d.ts +1 -1
- package/dist-types/commands/EnableProjectionCommand.d.ts +1 -1
- package/dist-types/commands/GetProjectionCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProjectionCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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,7 +146,7 @@ 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",
|
|
@@ -95,7 +95,7 @@ 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",
|
|
@@ -95,7 +95,7 @@ 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",
|
|
@@ -95,7 +95,7 @@ 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",
|
|
@@ -95,7 +95,7 @@ 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",
|
|
@@ -146,7 +146,7 @@ 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",
|
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.
|
|
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",
|