@wildix/wda-insights-client 1.1.41 → 1.1.42

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.
@@ -519,6 +519,7 @@ declare const CreateProjectionCommand_base: {
519
519
  * // updatedAt: "STRING_VALUE",
520
520
  * // metadata: { // ProjectionMetadata
521
521
  * // predefined: true || false,
522
+ * // customized: true || false,
522
523
  * // },
523
524
  * // },
524
525
  * // };
@@ -284,6 +284,7 @@ declare const DisableProjectionCommand_base: {
284
284
  * // updatedAt: "STRING_VALUE",
285
285
  * // metadata: { // ProjectionMetadata
286
286
  * // predefined: true || false,
287
+ * // customized: true || false,
287
288
  * // },
288
289
  * // },
289
290
  * // };
@@ -284,6 +284,7 @@ declare const EnableProjectionCommand_base: {
284
284
  * // updatedAt: "STRING_VALUE",
285
285
  * // metadata: { // ProjectionMetadata
286
286
  * // predefined: true || false,
287
+ * // customized: true || false,
287
288
  * // },
288
289
  * // },
289
290
  * // };
@@ -284,6 +284,7 @@ declare const GetProjectionCommand_base: {
284
284
  * // updatedAt: "STRING_VALUE",
285
285
  * // metadata: { // ProjectionMetadata
286
286
  * // predefined: true || false,
287
+ * // customized: true || false,
287
288
  * // },
288
289
  * // },
289
290
  * // };
@@ -284,6 +284,7 @@ declare const ListProjectionsCommand_base: {
284
284
  * // updatedAt: "STRING_VALUE",
285
285
  * // metadata: { // ProjectionMetadata
286
286
  * // predefined: true || false,
287
+ * // customized: true || false,
287
288
  * // },
288
289
  * // },
289
290
  * // ],
@@ -284,6 +284,7 @@ declare const PauseProjectionCommand_base: {
284
284
  * // updatedAt: "STRING_VALUE",
285
285
  * // metadata: { // ProjectionMetadata
286
286
  * // predefined: true || false,
287
+ * // customized: true || false,
287
288
  * // },
288
289
  * // },
289
290
  * // };
@@ -519,6 +519,7 @@ declare const UpdateProjectionCommand_base: {
519
519
  * // updatedAt: "STRING_VALUE",
520
520
  * // metadata: { // ProjectionMetadata
521
521
  * // predefined: true || false,
522
+ * // customized: true || false,
522
523
  * // },
523
524
  * // },
524
525
  * // };
@@ -2689,6 +2689,11 @@ export interface CreateProjectionInput {
2689
2689
  */
2690
2690
  export interface ProjectionMetadata {
2691
2691
  predefined?: boolean | undefined;
2692
+ /**
2693
+ * True when a predefined projection has tenant-specific overrides applied.
2694
+ * @public
2695
+ */
2696
+ customized?: boolean | undefined;
2692
2697
  }
2693
2698
  /**
2694
2699
  * @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.1.41",
4
+ "version": "1.1.42",
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",