@wildix/wim-voicebots-client 1.1.7 → 1.1.8

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.
@@ -20,6 +20,7 @@ const se_CreateVoiceBotCommand = async (input, context) => {
20
20
  'capabilities': _ => (0, smithy_client_1._json)(_),
21
21
  'category': [],
22
22
  'endpoint': _ => se_VoiceBotEndpoint(_, context),
23
+ 'groupId': [],
23
24
  'message': [],
24
25
  'name': [],
25
26
  'pipeline': _ => (0, smithy_client_1._json)(_),
@@ -237,6 +238,7 @@ const se_UpdateVoiceBotCommand = async (input, context) => {
237
238
  'capabilities': _ => (0, smithy_client_1._json)(_),
238
239
  'category': [],
239
240
  'endpoint': _ => se_VoiceBotEndpoint(_, context),
241
+ 'groupId': [],
240
242
  'message': [],
241
243
  'name': [],
242
244
  'pipeline': _ => (0, smithy_client_1._json)(_),
@@ -902,6 +904,7 @@ const de_VoiceBot = (output, context) => {
902
904
  'category': smithy_client_1.expectString,
903
905
  'createdAt': smithy_client_1.expectString,
904
906
  'endpoint': (_) => de_VoiceBotEndpoint((0, core_1.awsExpectUnion)(_), context),
907
+ 'groupId': smithy_client_1.expectString,
905
908
  'id': smithy_client_1.expectString,
906
909
  'message': smithy_client_1.expectString,
907
910
  'name': smithy_client_1.expectString,
@@ -17,6 +17,7 @@ export const se_CreateVoiceBotCommand = async (input, context) => {
17
17
  'capabilities': _ => _json(_),
18
18
  'category': [],
19
19
  'endpoint': _ => se_VoiceBotEndpoint(_, context),
20
+ 'groupId': [],
20
21
  'message': [],
21
22
  'name': [],
22
23
  'pipeline': _ => _json(_),
@@ -221,6 +222,7 @@ export const se_UpdateVoiceBotCommand = async (input, context) => {
221
222
  'capabilities': _ => _json(_),
222
223
  'category': [],
223
224
  'endpoint': _ => se_VoiceBotEndpoint(_, context),
225
+ 'groupId': [],
224
226
  'message': [],
225
227
  'name': [],
226
228
  'pipeline': _ => _json(_),
@@ -871,6 +873,7 @@ const de_VoiceBot = (output, context) => {
871
873
  'category': __expectString,
872
874
  'createdAt': __expectString,
873
875
  'endpoint': (_) => de_VoiceBotEndpoint(__expectUnion(_), context),
876
+ 'groupId': __expectString,
874
877
  'id': __expectString,
875
878
  'message': __expectString,
876
879
  'name': __expectString,
@@ -218,6 +218,7 @@ declare const CreateVoiceBotCommand_base: {
218
218
  * },
219
219
  * },
220
220
  * ],
221
+ * groupId: "STRING_VALUE",
221
222
  * company: "STRING_VALUE",
222
223
  * };
223
224
  * const command = new CreateVoiceBotCommand(input);
@@ -407,6 +408,7 @@ declare const CreateVoiceBotCommand_base: {
407
408
  * // },
408
409
  * // },
409
410
  * // ],
411
+ * // groupId: "STRING_VALUE",
410
412
  * // id: "STRING_VALUE", // required
411
413
  * // createdAt: "STRING_VALUE", // required
412
414
  * // updatedAt: "STRING_VALUE",
@@ -225,6 +225,7 @@ declare const GetVoiceBotCommand_base: {
225
225
  * // },
226
226
  * // },
227
227
  * // ],
228
+ * // groupId: "STRING_VALUE",
228
229
  * // id: "STRING_VALUE", // required
229
230
  * // createdAt: "STRING_VALUE", // required
230
231
  * // updatedAt: "STRING_VALUE",
@@ -225,6 +225,7 @@ declare const ListVoiceBotsCommand_base: {
225
225
  * // },
226
226
  * // },
227
227
  * // ],
228
+ * // groupId: "STRING_VALUE",
228
229
  * // id: "STRING_VALUE", // required
229
230
  * // createdAt: "STRING_VALUE", // required
230
231
  * // updatedAt: "STRING_VALUE",
@@ -218,6 +218,7 @@ declare const UpdateVoiceBotCommand_base: {
218
218
  * },
219
219
  * },
220
220
  * ],
221
+ * groupId: "STRING_VALUE",
221
222
  * company: "STRING_VALUE",
222
223
  * botId: "STRING_VALUE", // required
223
224
  * };
@@ -408,6 +409,7 @@ declare const UpdateVoiceBotCommand_base: {
408
409
  * // },
409
410
  * // },
410
411
  * // ],
412
+ * // groupId: "STRING_VALUE",
411
413
  * // id: "STRING_VALUE", // required
412
414
  * // createdAt: "STRING_VALUE", // required
413
415
  * // updatedAt: "STRING_VALUE",
@@ -777,6 +777,11 @@ export interface CreateVoiceBotInput {
777
777
  */
778
778
  endpoint: VoiceBotEndpoint;
779
779
  capabilities?: (VoiceBotCapability)[] | undefined;
780
+ /**
781
+ * PBX group ID for ACL-based visibility in Sales Intelligence.
782
+ * @public
783
+ */
784
+ groupId?: string | undefined;
780
785
  company?: string | undefined;
781
786
  }
782
787
  /**
@@ -801,6 +806,11 @@ export interface VoiceBot {
801
806
  */
802
807
  endpoint: VoiceBotEndpoint;
803
808
  capabilities?: (VoiceBotCapability)[] | undefined;
809
+ /**
810
+ * PBX group ID for ACL-based visibility in Sales Intelligence.
811
+ * @public
812
+ */
813
+ groupId?: string | undefined;
804
814
  id: string;
805
815
  createdAt: string;
806
816
  updatedAt?: string | undefined;
@@ -2179,6 +2189,11 @@ export interface UpdateVoiceBotInput {
2179
2189
  */
2180
2190
  endpoint: VoiceBotEndpoint;
2181
2191
  capabilities?: (VoiceBotCapability)[] | undefined;
2192
+ /**
2193
+ * PBX group ID for ACL-based visibility in Sales Intelligence.
2194
+ * @public
2195
+ */
2196
+ groupId?: string | undefined;
2182
2197
  company?: string | undefined;
2183
2198
  botId: string;
2184
2199
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-voicebots-client",
3
3
  "description": "@wildix/wim-voicebots-client client",
4
- "version": "1.1.7",
4
+ "version": "1.1.8",
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
+ }