@wildix/wda-insights-client 1.1.25 → 1.1.27

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.
@@ -107,7 +107,6 @@ exports.License = {
107
107
  };
108
108
  exports.CallFlowTranscriptionStatus = {
109
109
  AVAILABLE: "AVAILABLE",
110
- POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
111
110
  UNAVAILABLE: "UNAVAILABLE",
112
111
  };
113
112
  exports.RecordType = {
@@ -852,6 +852,7 @@ const se_UpdateDashboardAccessCommand = async (input, context) => {
852
852
  let body;
853
853
  body = JSON.stringify((0, smithy_client_1.take)(input, {
854
854
  'access': _ => (0, smithy_client_1._json)(_),
855
+ 'notify': _ => (0, smithy_client_1._json)(_),
855
856
  }));
856
857
  b.m("PATCH")
857
858
  .h(headers)
@@ -936,6 +937,7 @@ const se_UpdatePlaylistAccessCommand = async (input, context) => {
936
937
  let body;
937
938
  body = JSON.stringify((0, smithy_client_1.take)(input, {
938
939
  'access': _ => (0, smithy_client_1._json)(_),
940
+ 'notify': _ => (0, smithy_client_1._json)(_),
939
941
  }));
940
942
  b.m("PATCH")
941
943
  .h(headers)
@@ -100,7 +100,6 @@ export const License = {
100
100
  };
101
101
  export const CallFlowTranscriptionStatus = {
102
102
  AVAILABLE: "AVAILABLE",
103
- POST_TRANSCRIPTION: "POST_TRANSCRIPTION",
104
103
  UNAVAILABLE: "UNAVAILABLE",
105
104
  };
106
105
  export const RecordType = {
@@ -801,6 +801,7 @@ export const se_UpdateDashboardAccessCommand = async (input, context) => {
801
801
  let body;
802
802
  body = JSON.stringify(take(input, {
803
803
  'access': _ => _json(_),
804
+ 'notify': _ => _json(_),
804
805
  }));
805
806
  b.m("PATCH")
806
807
  .h(headers)
@@ -881,6 +882,7 @@ export const se_UpdatePlaylistAccessCommand = async (input, context) => {
881
882
  let body;
882
883
  body = JSON.stringify(take(input, {
883
884
  'access': _ => _json(_),
885
+ 'notify': _ => _json(_),
884
886
  }));
885
887
  b.m("PATCH")
886
888
  .h(headers)
@@ -315,7 +315,7 @@ declare const ListConversationsCommand_base: {
315
315
  * // remotePhoneCountryCodeStr: "STRING_VALUE",
316
316
  * // remotePhoneLocation: "STRING_VALUE",
317
317
  * // callStatus: "COMPLETED" || "MISSED",
318
- * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
318
+ * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
319
319
  * // transcriptionLanguage: "STRING_VALUE",
320
320
  * // transcriptionSeconds: Number("int"),
321
321
  * // attachment: "STRING_VALUE",
@@ -141,7 +141,7 @@ declare const ListPlaylistItemsCommand_base: {
141
141
  * // remotePhoneCountryCodeStr: "STRING_VALUE",
142
142
  * // remotePhoneLocation: "STRING_VALUE",
143
143
  * // callStatus: "COMPLETED" || "MISSED",
144
- * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
144
+ * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
145
145
  * // transcriptionLanguage: "STRING_VALUE",
146
146
  * // transcriptionSeconds: Number("int"),
147
147
  * // attachment: "STRING_VALUE",
@@ -139,7 +139,7 @@ declare const ListWatchHistoryCommand_base: {
139
139
  * // remotePhoneCountryCodeStr: "STRING_VALUE",
140
140
  * // remotePhoneLocation: "STRING_VALUE",
141
141
  * // callStatus: "COMPLETED" || "MISSED",
142
- * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
142
+ * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
143
143
  * // transcriptionLanguage: "STRING_VALUE",
144
144
  * // transcriptionSeconds: Number("int"),
145
145
  * // attachment: "STRING_VALUE",
@@ -50,6 +50,12 @@ declare const UpdateDashboardAccessCommand_base: {
50
50
  * },
51
51
  * ],
52
52
  * },
53
+ * notify: { // DashboardAccessNotify
54
+ * emails: [ // StringList // required
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * message: "STRING_VALUE",
58
+ * },
53
59
  * };
54
60
  * const command = new UpdateDashboardAccessCommand(input);
55
61
  * const response = await client.send(command);
@@ -50,6 +50,12 @@ declare const UpdatePlaylistAccessCommand_base: {
50
50
  * },
51
51
  * ],
52
52
  * },
53
+ * notify: { // PlaylistAccessNotify
54
+ * emails: [ // StringList // required
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * message: "STRING_VALUE",
58
+ * },
53
59
  * };
54
60
  * const command = new UpdatePlaylistAccessCommand(input);
55
61
  * const response = await client.send(command);
@@ -311,7 +311,6 @@ export type License = typeof License[keyof typeof License];
311
311
  */
312
312
  export declare const CallFlowTranscriptionStatus: {
313
313
  readonly AVAILABLE: "AVAILABLE";
314
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
315
314
  readonly UNAVAILABLE: "UNAVAILABLE";
316
315
  };
317
316
  /**
@@ -2705,6 +2704,13 @@ export interface ProjectionsCategory {
2705
2704
  export interface CreateProjectionsCategoryOutput {
2706
2705
  category: ProjectionsCategory;
2707
2706
  }
2707
+ /**
2708
+ * @public
2709
+ */
2710
+ export interface DashboardAccessNotify {
2711
+ emails: (string)[];
2712
+ message?: string | undefined;
2713
+ }
2708
2714
  /**
2709
2715
  * @public
2710
2716
  */
@@ -3846,6 +3852,13 @@ export interface PauseProjectionInput {
3846
3852
  export interface PauseProjectionOutput {
3847
3853
  projection: Projection;
3848
3854
  }
3855
+ /**
3856
+ * @public
3857
+ */
3858
+ export interface PlaylistAccessNotify {
3859
+ emails: (string)[];
3860
+ message?: string | undefined;
3861
+ }
3849
3862
  /**
3850
3863
  * @public
3851
3864
  */
@@ -3952,6 +3965,7 @@ export interface UpdateDashboardAccessInput {
3952
3965
  user?: string | undefined;
3953
3966
  id: string;
3954
3967
  access: DashboardAccess;
3968
+ notify?: DashboardAccessNotify | undefined;
3955
3969
  }
3956
3970
  /**
3957
3971
  * @public
@@ -4046,6 +4060,7 @@ export interface UpdatePlaylistAccessInput {
4046
4060
  user?: string | undefined;
4047
4061
  id: string;
4048
4062
  access: PlaylistAccess;
4063
+ notify?: PlaylistAccessNotify | undefined;
4049
4064
  }
4050
4065
  /**
4051
4066
  * @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.25",
4
+ "version": "1.1.27",
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",
@@ -80,4 +80,4 @@
80
80
  "react-native": {
81
81
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
82
82
  }
83
- }
83
+ }