@aws-sdk/client-connect 3.511.0 → 3.513.0
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/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +434 -376
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/ConnectClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/ConnectClient.d.ts +13 -11
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -503,13 +503,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
503
503
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
504
504
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
505
505
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
506
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
507
506
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
508
507
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
508
|
+
var import_core = require("@smithy/core");
|
|
509
509
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
510
510
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
511
511
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
512
512
|
|
|
513
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
513
514
|
|
|
514
515
|
// src/endpoint/EndpointParameters.ts
|
|
515
516
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -534,19 +535,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
534
535
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
535
536
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
536
537
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
538
|
+
|
|
539
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
540
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
541
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
542
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
543
|
+
let _credentials = runtimeConfig.credentials;
|
|
544
|
+
return {
|
|
545
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
546
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
547
|
+
if (index === -1) {
|
|
548
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
549
|
+
} else {
|
|
550
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
httpAuthSchemes() {
|
|
554
|
+
return _httpAuthSchemes;
|
|
555
|
+
},
|
|
556
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
557
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
558
|
+
},
|
|
559
|
+
httpAuthSchemeProvider() {
|
|
560
|
+
return _httpAuthSchemeProvider;
|
|
561
|
+
},
|
|
562
|
+
setCredentials(credentials) {
|
|
563
|
+
_credentials = credentials;
|
|
564
|
+
},
|
|
565
|
+
credentials() {
|
|
566
|
+
return _credentials;
|
|
567
|
+
}
|
|
568
|
+
};
|
|
569
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
570
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
571
|
+
return {
|
|
572
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
573
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
574
|
+
credentials: config.credentials()
|
|
575
|
+
};
|
|
576
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
577
|
+
|
|
578
|
+
// src/runtimeExtensions.ts
|
|
537
579
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
538
580
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
539
581
|
const extensionConfiguration = {
|
|
540
582
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
541
583
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
542
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
584
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
585
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
543
586
|
};
|
|
544
587
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
545
588
|
return {
|
|
546
589
|
...runtimeConfig,
|
|
547
590
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
548
591
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
549
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
592
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
593
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
550
594
|
};
|
|
551
595
|
}, "resolveRuntimeExtensions");
|
|
552
596
|
|
|
@@ -559,8 +603,8 @@ var _ConnectClient = class _ConnectClient extends import_smithy_client.Client {
|
|
|
559
603
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
560
604
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
561
605
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
562
|
-
const _config_6 = (0,
|
|
563
|
-
const _config_7 = (0,
|
|
606
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
607
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
564
608
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
565
609
|
super(_config_8);
|
|
566
610
|
this.config = _config_8;
|
|
@@ -569,8 +613,14 @@ var _ConnectClient = class _ConnectClient extends import_smithy_client.Client {
|
|
|
569
613
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
570
614
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
571
615
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
572
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
573
616
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
617
|
+
this.middlewareStack.use(
|
|
618
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
619
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
620
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
621
|
+
})
|
|
622
|
+
);
|
|
623
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
574
624
|
}
|
|
575
625
|
/**
|
|
576
626
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -580,6 +630,14 @@ var _ConnectClient = class _ConnectClient extends import_smithy_client.Client {
|
|
|
580
630
|
destroy() {
|
|
581
631
|
super.destroy();
|
|
582
632
|
}
|
|
633
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
634
|
+
return import_httpAuthSchemeProvider.defaultConnectHttpAuthSchemeParametersProvider;
|
|
635
|
+
}
|
|
636
|
+
getIdentityProviderConfigProvider() {
|
|
637
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
638
|
+
"aws.auth#sigv4": config.credentials
|
|
639
|
+
});
|
|
640
|
+
}
|
|
583
641
|
};
|
|
584
642
|
__name(_ConnectClient, "ConnectClient");
|
|
585
643
|
var ConnectClient = _ConnectClient;
|
|
@@ -594,8 +652,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
594
652
|
var import_types = require("@smithy/types");
|
|
595
653
|
|
|
596
654
|
// src/protocols/Aws_restJson1.ts
|
|
597
|
-
var
|
|
598
|
-
|
|
655
|
+
var import_core2 = require("@aws-sdk/core");
|
|
656
|
+
|
|
599
657
|
|
|
600
658
|
var import_uuid = require("uuid");
|
|
601
659
|
|
|
@@ -2185,7 +2243,7 @@ var UpdateViewMetadataRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) =
|
|
|
2185
2243
|
|
|
2186
2244
|
// src/protocols/Aws_restJson1.ts
|
|
2187
2245
|
var se_ActivateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2188
|
-
const b = (0,
|
|
2246
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2189
2247
|
const headers = {
|
|
2190
2248
|
"content-type": "application/json"
|
|
2191
2249
|
};
|
|
@@ -2202,7 +2260,7 @@ var se_ActivateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2202
2260
|
return b.build();
|
|
2203
2261
|
}, "se_ActivateEvaluationFormCommand");
|
|
2204
2262
|
var se_AssociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2205
|
-
const b = (0,
|
|
2263
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2206
2264
|
const headers = {
|
|
2207
2265
|
"content-type": "application/json"
|
|
2208
2266
|
};
|
|
@@ -2219,7 +2277,7 @@ var se_AssociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2219
2277
|
return b.build();
|
|
2220
2278
|
}, "se_AssociateAnalyticsDataSetCommand");
|
|
2221
2279
|
var se_AssociateApprovedOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2222
|
-
const b = (0,
|
|
2280
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2223
2281
|
const headers = {
|
|
2224
2282
|
"content-type": "application/json"
|
|
2225
2283
|
};
|
|
@@ -2235,7 +2293,7 @@ var se_AssociateApprovedOriginCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2235
2293
|
return b.build();
|
|
2236
2294
|
}, "se_AssociateApprovedOriginCommand");
|
|
2237
2295
|
var se_AssociateBotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2238
|
-
const b = (0,
|
|
2296
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2239
2297
|
const headers = {
|
|
2240
2298
|
"content-type": "application/json"
|
|
2241
2299
|
};
|
|
@@ -2252,7 +2310,7 @@ var se_AssociateBotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2252
2310
|
return b.build();
|
|
2253
2311
|
}, "se_AssociateBotCommand");
|
|
2254
2312
|
var se_AssociateDefaultVocabularyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2255
|
-
const b = (0,
|
|
2313
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2256
2314
|
const headers = {
|
|
2257
2315
|
"content-type": "application/json"
|
|
2258
2316
|
};
|
|
@@ -2269,7 +2327,7 @@ var se_AssociateDefaultVocabularyCommand = /* @__PURE__ */ __name(async (input,
|
|
|
2269
2327
|
return b.build();
|
|
2270
2328
|
}, "se_AssociateDefaultVocabularyCommand");
|
|
2271
2329
|
var se_AssociateFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2272
|
-
const b = (0,
|
|
2330
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2273
2331
|
const headers = {
|
|
2274
2332
|
"content-type": "application/json"
|
|
2275
2333
|
};
|
|
@@ -2287,7 +2345,7 @@ var se_AssociateFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2287
2345
|
return b.build();
|
|
2288
2346
|
}, "se_AssociateFlowCommand");
|
|
2289
2347
|
var se_AssociateInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2290
|
-
const b = (0,
|
|
2348
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2291
2349
|
const headers = {
|
|
2292
2350
|
"content-type": "application/json"
|
|
2293
2351
|
};
|
|
@@ -2304,7 +2362,7 @@ var se_AssociateInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (inp
|
|
|
2304
2362
|
return b.build();
|
|
2305
2363
|
}, "se_AssociateInstanceStorageConfigCommand");
|
|
2306
2364
|
var se_AssociateLambdaFunctionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2307
|
-
const b = (0,
|
|
2365
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2308
2366
|
const headers = {
|
|
2309
2367
|
"content-type": "application/json"
|
|
2310
2368
|
};
|
|
@@ -2320,7 +2378,7 @@ var se_AssociateLambdaFunctionCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2320
2378
|
return b.build();
|
|
2321
2379
|
}, "se_AssociateLambdaFunctionCommand");
|
|
2322
2380
|
var se_AssociateLexBotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2323
|
-
const b = (0,
|
|
2381
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2324
2382
|
const headers = {
|
|
2325
2383
|
"content-type": "application/json"
|
|
2326
2384
|
};
|
|
@@ -2336,7 +2394,7 @@ var se_AssociateLexBotCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2336
2394
|
return b.build();
|
|
2337
2395
|
}, "se_AssociateLexBotCommand");
|
|
2338
2396
|
var se_AssociatePhoneNumberContactFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2339
|
-
const b = (0,
|
|
2397
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2340
2398
|
const headers = {
|
|
2341
2399
|
"content-type": "application/json"
|
|
2342
2400
|
};
|
|
@@ -2353,7 +2411,7 @@ var se_AssociatePhoneNumberContactFlowCommand = /* @__PURE__ */ __name(async (in
|
|
|
2353
2411
|
return b.build();
|
|
2354
2412
|
}, "se_AssociatePhoneNumberContactFlowCommand");
|
|
2355
2413
|
var se_AssociateQueueQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2356
|
-
const b = (0,
|
|
2414
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2357
2415
|
const headers = {
|
|
2358
2416
|
"content-type": "application/json"
|
|
2359
2417
|
};
|
|
@@ -2370,7 +2428,7 @@ var se_AssociateQueueQuickConnectsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
2370
2428
|
return b.build();
|
|
2371
2429
|
}, "se_AssociateQueueQuickConnectsCommand");
|
|
2372
2430
|
var se_AssociateRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2373
|
-
const b = (0,
|
|
2431
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2374
2432
|
const headers = {
|
|
2375
2433
|
"content-type": "application/json"
|
|
2376
2434
|
};
|
|
@@ -2387,7 +2445,7 @@ var se_AssociateRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
2387
2445
|
return b.build();
|
|
2388
2446
|
}, "se_AssociateRoutingProfileQueuesCommand");
|
|
2389
2447
|
var se_AssociateSecurityKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2390
|
-
const b = (0,
|
|
2448
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2391
2449
|
const headers = {
|
|
2392
2450
|
"content-type": "application/json"
|
|
2393
2451
|
};
|
|
@@ -2403,7 +2461,7 @@ var se_AssociateSecurityKeyCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2403
2461
|
return b.build();
|
|
2404
2462
|
}, "se_AssociateSecurityKeyCommand");
|
|
2405
2463
|
var se_AssociateTrafficDistributionGroupUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2406
|
-
const b = (0,
|
|
2464
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2407
2465
|
const headers = {
|
|
2408
2466
|
"content-type": "application/json"
|
|
2409
2467
|
};
|
|
@@ -2420,7 +2478,7 @@ var se_AssociateTrafficDistributionGroupUserCommand = /* @__PURE__ */ __name(asy
|
|
|
2420
2478
|
return b.build();
|
|
2421
2479
|
}, "se_AssociateTrafficDistributionGroupUserCommand");
|
|
2422
2480
|
var se_AssociateUserProficienciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2423
|
-
const b = (0,
|
|
2481
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2424
2482
|
const headers = {
|
|
2425
2483
|
"content-type": "application/json"
|
|
2426
2484
|
};
|
|
@@ -2437,7 +2495,7 @@ var se_AssociateUserProficienciesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
2437
2495
|
return b.build();
|
|
2438
2496
|
}, "se_AssociateUserProficienciesCommand");
|
|
2439
2497
|
var se_BatchAssociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2440
|
-
const b = (0,
|
|
2498
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2441
2499
|
const headers = {
|
|
2442
2500
|
"content-type": "application/json"
|
|
2443
2501
|
};
|
|
@@ -2454,7 +2512,7 @@ var se_BatchAssociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (inp
|
|
|
2454
2512
|
return b.build();
|
|
2455
2513
|
}, "se_BatchAssociateAnalyticsDataSetCommand");
|
|
2456
2514
|
var se_BatchDisassociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2457
|
-
const b = (0,
|
|
2515
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2458
2516
|
const headers = {
|
|
2459
2517
|
"content-type": "application/json"
|
|
2460
2518
|
};
|
|
@@ -2471,7 +2529,7 @@ var se_BatchDisassociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (
|
|
|
2471
2529
|
return b.build();
|
|
2472
2530
|
}, "se_BatchDisassociateAnalyticsDataSetCommand");
|
|
2473
2531
|
var se_BatchGetFlowAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2474
|
-
const b = (0,
|
|
2532
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2475
2533
|
const headers = {
|
|
2476
2534
|
"content-type": "application/json"
|
|
2477
2535
|
};
|
|
@@ -2488,7 +2546,7 @@ var se_BatchGetFlowAssociationCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2488
2546
|
return b.build();
|
|
2489
2547
|
}, "se_BatchGetFlowAssociationCommand");
|
|
2490
2548
|
var se_BatchPutContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2491
|
-
const b = (0,
|
|
2549
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2492
2550
|
const headers = {
|
|
2493
2551
|
"content-type": "application/json"
|
|
2494
2552
|
};
|
|
@@ -2505,7 +2563,7 @@ var se_BatchPutContactCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2505
2563
|
return b.build();
|
|
2506
2564
|
}, "se_BatchPutContactCommand");
|
|
2507
2565
|
var se_ClaimPhoneNumberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2508
|
-
const b = (0,
|
|
2566
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2509
2567
|
const headers = {
|
|
2510
2568
|
"content-type": "application/json"
|
|
2511
2569
|
};
|
|
@@ -2525,7 +2583,7 @@ var se_ClaimPhoneNumberCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
2525
2583
|
return b.build();
|
|
2526
2584
|
}, "se_ClaimPhoneNumberCommand");
|
|
2527
2585
|
var se_CreateAgentStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2528
|
-
const b = (0,
|
|
2586
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2529
2587
|
const headers = {
|
|
2530
2588
|
"content-type": "application/json"
|
|
2531
2589
|
};
|
|
@@ -2545,7 +2603,7 @@ var se_CreateAgentStatusCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2545
2603
|
return b.build();
|
|
2546
2604
|
}, "se_CreateAgentStatusCommand");
|
|
2547
2605
|
var se_CreateContactFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2548
|
-
const b = (0,
|
|
2606
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2549
2607
|
const headers = {
|
|
2550
2608
|
"content-type": "application/json"
|
|
2551
2609
|
};
|
|
@@ -2565,7 +2623,7 @@ var se_CreateContactFlowCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2565
2623
|
return b.build();
|
|
2566
2624
|
}, "se_CreateContactFlowCommand");
|
|
2567
2625
|
var se_CreateContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2568
|
-
const b = (0,
|
|
2626
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2569
2627
|
const headers = {
|
|
2570
2628
|
"content-type": "application/json"
|
|
2571
2629
|
};
|
|
@@ -2585,7 +2643,7 @@ var se_CreateContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2585
2643
|
return b.build();
|
|
2586
2644
|
}, "se_CreateContactFlowModuleCommand");
|
|
2587
2645
|
var se_CreateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2588
|
-
const b = (0,
|
|
2646
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2589
2647
|
const headers = {
|
|
2590
2648
|
"content-type": "application/json"
|
|
2591
2649
|
};
|
|
@@ -2605,7 +2663,7 @@ var se_CreateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2605
2663
|
return b.build();
|
|
2606
2664
|
}, "se_CreateEvaluationFormCommand");
|
|
2607
2665
|
var se_CreateHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2608
|
-
const b = (0,
|
|
2666
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2609
2667
|
const headers = {
|
|
2610
2668
|
"content-type": "application/json"
|
|
2611
2669
|
};
|
|
@@ -2625,7 +2683,7 @@ var se_CreateHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2625
2683
|
return b.build();
|
|
2626
2684
|
}, "se_CreateHoursOfOperationCommand");
|
|
2627
2685
|
var se_CreateInstanceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2628
|
-
const b = (0,
|
|
2686
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2629
2687
|
const headers = {
|
|
2630
2688
|
"content-type": "application/json"
|
|
2631
2689
|
};
|
|
@@ -2646,7 +2704,7 @@ var se_CreateInstanceCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2646
2704
|
return b.build();
|
|
2647
2705
|
}, "se_CreateInstanceCommand");
|
|
2648
2706
|
var se_CreateIntegrationAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2649
|
-
const b = (0,
|
|
2707
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2650
2708
|
const headers = {
|
|
2651
2709
|
"content-type": "application/json"
|
|
2652
2710
|
};
|
|
@@ -2667,7 +2725,7 @@ var se_CreateIntegrationAssociationCommand = /* @__PURE__ */ __name(async (input
|
|
|
2667
2725
|
return b.build();
|
|
2668
2726
|
}, "se_CreateIntegrationAssociationCommand");
|
|
2669
2727
|
var se_CreateParticipantCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2670
|
-
const b = (0,
|
|
2728
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2671
2729
|
const headers = {
|
|
2672
2730
|
"content-type": "application/json"
|
|
2673
2731
|
};
|
|
@@ -2685,7 +2743,7 @@ var se_CreateParticipantCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2685
2743
|
return b.build();
|
|
2686
2744
|
}, "se_CreateParticipantCommand");
|
|
2687
2745
|
var se_CreatePersistentContactAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2688
|
-
const b = (0,
|
|
2746
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2689
2747
|
const headers = {
|
|
2690
2748
|
"content-type": "application/json"
|
|
2691
2749
|
};
|
|
@@ -2704,7 +2762,7 @@ var se_CreatePersistentContactAssociationCommand = /* @__PURE__ */ __name(async
|
|
|
2704
2762
|
return b.build();
|
|
2705
2763
|
}, "se_CreatePersistentContactAssociationCommand");
|
|
2706
2764
|
var se_CreatePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2707
|
-
const b = (0,
|
|
2765
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2708
2766
|
const headers = {
|
|
2709
2767
|
"content-type": "application/json"
|
|
2710
2768
|
};
|
|
@@ -2721,7 +2779,7 @@ var se_CreatePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2721
2779
|
return b.build();
|
|
2722
2780
|
}, "se_CreatePredefinedAttributeCommand");
|
|
2723
2781
|
var se_CreatePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2724
|
-
const b = (0,
|
|
2782
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2725
2783
|
const headers = {
|
|
2726
2784
|
"content-type": "application/json"
|
|
2727
2785
|
};
|
|
@@ -2740,7 +2798,7 @@ var se_CreatePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2740
2798
|
return b.build();
|
|
2741
2799
|
}, "se_CreatePromptCommand");
|
|
2742
2800
|
var se_CreateQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2743
|
-
const b = (0,
|
|
2801
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2744
2802
|
const headers = {
|
|
2745
2803
|
"content-type": "application/json"
|
|
2746
2804
|
};
|
|
@@ -2762,7 +2820,7 @@ var se_CreateQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2762
2820
|
return b.build();
|
|
2763
2821
|
}, "se_CreateQueueCommand");
|
|
2764
2822
|
var se_CreateQuickConnectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2765
|
-
const b = (0,
|
|
2823
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2766
2824
|
const headers = {
|
|
2767
2825
|
"content-type": "application/json"
|
|
2768
2826
|
};
|
|
@@ -2781,7 +2839,7 @@ var se_CreateQuickConnectCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2781
2839
|
return b.build();
|
|
2782
2840
|
}, "se_CreateQuickConnectCommand");
|
|
2783
2841
|
var se_CreateRoutingProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2784
|
-
const b = (0,
|
|
2842
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2785
2843
|
const headers = {
|
|
2786
2844
|
"content-type": "application/json"
|
|
2787
2845
|
};
|
|
@@ -2803,7 +2861,7 @@ var se_CreateRoutingProfileCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2803
2861
|
return b.build();
|
|
2804
2862
|
}, "se_CreateRoutingProfileCommand");
|
|
2805
2863
|
var se_CreateRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2806
|
-
const b = (0,
|
|
2864
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2807
2865
|
const headers = {
|
|
2808
2866
|
"content-type": "application/json"
|
|
2809
2867
|
};
|
|
@@ -2824,7 +2882,7 @@ var se_CreateRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2824
2882
|
return b.build();
|
|
2825
2883
|
}, "se_CreateRuleCommand");
|
|
2826
2884
|
var se_CreateSecurityProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2827
|
-
const b = (0,
|
|
2885
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2828
2886
|
const headers = {
|
|
2829
2887
|
"content-type": "application/json"
|
|
2830
2888
|
};
|
|
@@ -2846,7 +2904,7 @@ var se_CreateSecurityProfileCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2846
2904
|
return b.build();
|
|
2847
2905
|
}, "se_CreateSecurityProfileCommand");
|
|
2848
2906
|
var se_CreateTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2849
|
-
const b = (0,
|
|
2907
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2850
2908
|
const headers = {
|
|
2851
2909
|
"content-type": "application/json"
|
|
2852
2910
|
};
|
|
@@ -2869,7 +2927,7 @@ var se_CreateTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2869
2927
|
return b.build();
|
|
2870
2928
|
}, "se_CreateTaskTemplateCommand");
|
|
2871
2929
|
var se_CreateTrafficDistributionGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2872
|
-
const b = (0,
|
|
2930
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2873
2931
|
const headers = {
|
|
2874
2932
|
"content-type": "application/json"
|
|
2875
2933
|
};
|
|
@@ -2888,7 +2946,7 @@ var se_CreateTrafficDistributionGroupCommand = /* @__PURE__ */ __name(async (inp
|
|
|
2888
2946
|
return b.build();
|
|
2889
2947
|
}, "se_CreateTrafficDistributionGroupCommand");
|
|
2890
2948
|
var se_CreateUseCaseCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2891
|
-
const b = (0,
|
|
2949
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2892
2950
|
const headers = {
|
|
2893
2951
|
"content-type": "application/json"
|
|
2894
2952
|
};
|
|
@@ -2906,7 +2964,7 @@ var se_CreateUseCaseCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2906
2964
|
return b.build();
|
|
2907
2965
|
}, "se_CreateUseCaseCommand");
|
|
2908
2966
|
var se_CreateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2909
|
-
const b = (0,
|
|
2967
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2910
2968
|
const headers = {
|
|
2911
2969
|
"content-type": "application/json"
|
|
2912
2970
|
};
|
|
@@ -2930,7 +2988,7 @@ var se_CreateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2930
2988
|
return b.build();
|
|
2931
2989
|
}, "se_CreateUserCommand");
|
|
2932
2990
|
var se_CreateUserHierarchyGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2933
|
-
const b = (0,
|
|
2991
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2934
2992
|
const headers = {
|
|
2935
2993
|
"content-type": "application/json"
|
|
2936
2994
|
};
|
|
@@ -2948,7 +3006,7 @@ var se_CreateUserHierarchyGroupCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2948
3006
|
return b.build();
|
|
2949
3007
|
}, "se_CreateUserHierarchyGroupCommand");
|
|
2950
3008
|
var se_CreateViewCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2951
|
-
const b = (0,
|
|
3009
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2952
3010
|
const headers = {
|
|
2953
3011
|
"content-type": "application/json"
|
|
2954
3012
|
};
|
|
@@ -2969,7 +3027,7 @@ var se_CreateViewCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2969
3027
|
return b.build();
|
|
2970
3028
|
}, "se_CreateViewCommand");
|
|
2971
3029
|
var se_CreateViewVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2972
|
-
const b = (0,
|
|
3030
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2973
3031
|
const headers = {
|
|
2974
3032
|
"content-type": "application/json"
|
|
2975
3033
|
};
|
|
@@ -2987,7 +3045,7 @@ var se_CreateViewVersionCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2987
3045
|
return b.build();
|
|
2988
3046
|
}, "se_CreateViewVersionCommand");
|
|
2989
3047
|
var se_CreateVocabularyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2990
|
-
const b = (0,
|
|
3048
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2991
3049
|
const headers = {
|
|
2992
3050
|
"content-type": "application/json"
|
|
2993
3051
|
};
|
|
@@ -3007,7 +3065,7 @@ var se_CreateVocabularyCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3007
3065
|
return b.build();
|
|
3008
3066
|
}, "se_CreateVocabularyCommand");
|
|
3009
3067
|
var se_DeactivateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3010
|
-
const b = (0,
|
|
3068
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3011
3069
|
const headers = {
|
|
3012
3070
|
"content-type": "application/json"
|
|
3013
3071
|
};
|
|
@@ -3024,7 +3082,7 @@ var se_DeactivateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
3024
3082
|
return b.build();
|
|
3025
3083
|
}, "se_DeactivateEvaluationFormCommand");
|
|
3026
3084
|
var se_DeleteContactEvaluationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3027
|
-
const b = (0,
|
|
3085
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3028
3086
|
const headers = {};
|
|
3029
3087
|
b.bp("/contact-evaluations/{InstanceId}/{EvaluationId}");
|
|
3030
3088
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3034,7 +3092,7 @@ var se_DeleteContactEvaluationCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3034
3092
|
return b.build();
|
|
3035
3093
|
}, "se_DeleteContactEvaluationCommand");
|
|
3036
3094
|
var se_DeleteContactFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3037
|
-
const b = (0,
|
|
3095
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3038
3096
|
const headers = {};
|
|
3039
3097
|
b.bp("/contact-flows/{InstanceId}/{ContactFlowId}");
|
|
3040
3098
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3044,7 +3102,7 @@ var se_DeleteContactFlowCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3044
3102
|
return b.build();
|
|
3045
3103
|
}, "se_DeleteContactFlowCommand");
|
|
3046
3104
|
var se_DeleteContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3047
|
-
const b = (0,
|
|
3105
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3048
3106
|
const headers = {};
|
|
3049
3107
|
b.bp("/contact-flow-modules/{InstanceId}/{ContactFlowModuleId}");
|
|
3050
3108
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3054,7 +3112,7 @@ var se_DeleteContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3054
3112
|
return b.build();
|
|
3055
3113
|
}, "se_DeleteContactFlowModuleCommand");
|
|
3056
3114
|
var se_DeleteEvaluationFormCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3057
|
-
const b = (0,
|
|
3115
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3058
3116
|
const headers = {};
|
|
3059
3117
|
b.bp("/evaluation-forms/{InstanceId}/{EvaluationFormId}");
|
|
3060
3118
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3067,7 +3125,7 @@ var se_DeleteEvaluationFormCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3067
3125
|
return b.build();
|
|
3068
3126
|
}, "se_DeleteEvaluationFormCommand");
|
|
3069
3127
|
var se_DeleteHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3070
|
-
const b = (0,
|
|
3128
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3071
3129
|
const headers = {};
|
|
3072
3130
|
b.bp("/hours-of-operations/{InstanceId}/{HoursOfOperationId}");
|
|
3073
3131
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3077,7 +3135,7 @@ var se_DeleteHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3077
3135
|
return b.build();
|
|
3078
3136
|
}, "se_DeleteHoursOfOperationCommand");
|
|
3079
3137
|
var se_DeleteInstanceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3080
|
-
const b = (0,
|
|
3138
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3081
3139
|
const headers = {};
|
|
3082
3140
|
b.bp("/instance/{InstanceId}");
|
|
3083
3141
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3086,7 +3144,7 @@ var se_DeleteInstanceCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3086
3144
|
return b.build();
|
|
3087
3145
|
}, "se_DeleteInstanceCommand");
|
|
3088
3146
|
var se_DeleteIntegrationAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3089
|
-
const b = (0,
|
|
3147
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3090
3148
|
const headers = {};
|
|
3091
3149
|
b.bp("/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}");
|
|
3092
3150
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3096,7 +3154,7 @@ var se_DeleteIntegrationAssociationCommand = /* @__PURE__ */ __name(async (input
|
|
|
3096
3154
|
return b.build();
|
|
3097
3155
|
}, "se_DeleteIntegrationAssociationCommand");
|
|
3098
3156
|
var se_DeletePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3099
|
-
const b = (0,
|
|
3157
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3100
3158
|
const headers = {};
|
|
3101
3159
|
b.bp("/predefined-attributes/{InstanceId}/{Name}");
|
|
3102
3160
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3106,7 +3164,7 @@ var se_DeletePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3106
3164
|
return b.build();
|
|
3107
3165
|
}, "se_DeletePredefinedAttributeCommand");
|
|
3108
3166
|
var se_DeletePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3109
|
-
const b = (0,
|
|
3167
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3110
3168
|
const headers = {};
|
|
3111
3169
|
b.bp("/prompts/{InstanceId}/{PromptId}");
|
|
3112
3170
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3116,7 +3174,7 @@ var se_DeletePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3116
3174
|
return b.build();
|
|
3117
3175
|
}, "se_DeletePromptCommand");
|
|
3118
3176
|
var se_DeleteQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3119
|
-
const b = (0,
|
|
3177
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3120
3178
|
const headers = {};
|
|
3121
3179
|
b.bp("/queues/{InstanceId}/{QueueId}");
|
|
3122
3180
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3126,7 +3184,7 @@ var se_DeleteQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3126
3184
|
return b.build();
|
|
3127
3185
|
}, "se_DeleteQueueCommand");
|
|
3128
3186
|
var se_DeleteQuickConnectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3129
|
-
const b = (0,
|
|
3187
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3130
3188
|
const headers = {};
|
|
3131
3189
|
b.bp("/quick-connects/{InstanceId}/{QuickConnectId}");
|
|
3132
3190
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3136,7 +3194,7 @@ var se_DeleteQuickConnectCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3136
3194
|
return b.build();
|
|
3137
3195
|
}, "se_DeleteQuickConnectCommand");
|
|
3138
3196
|
var se_DeleteRoutingProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3139
|
-
const b = (0,
|
|
3197
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3140
3198
|
const headers = {};
|
|
3141
3199
|
b.bp("/routing-profiles/{InstanceId}/{RoutingProfileId}");
|
|
3142
3200
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3146,7 +3204,7 @@ var se_DeleteRoutingProfileCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3146
3204
|
return b.build();
|
|
3147
3205
|
}, "se_DeleteRoutingProfileCommand");
|
|
3148
3206
|
var se_DeleteRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3149
|
-
const b = (0,
|
|
3207
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3150
3208
|
const headers = {};
|
|
3151
3209
|
b.bp("/rules/{InstanceId}/{RuleId}");
|
|
3152
3210
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3156,7 +3214,7 @@ var se_DeleteRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3156
3214
|
return b.build();
|
|
3157
3215
|
}, "se_DeleteRuleCommand");
|
|
3158
3216
|
var se_DeleteSecurityProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3159
|
-
const b = (0,
|
|
3217
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3160
3218
|
const headers = {};
|
|
3161
3219
|
b.bp("/security-profiles/{InstanceId}/{SecurityProfileId}");
|
|
3162
3220
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3166,7 +3224,7 @@ var se_DeleteSecurityProfileCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
3166
3224
|
return b.build();
|
|
3167
3225
|
}, "se_DeleteSecurityProfileCommand");
|
|
3168
3226
|
var se_DeleteTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3169
|
-
const b = (0,
|
|
3227
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3170
3228
|
const headers = {};
|
|
3171
3229
|
b.bp("/instance/{InstanceId}/task/template/{TaskTemplateId}");
|
|
3172
3230
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3176,7 +3234,7 @@ var se_DeleteTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3176
3234
|
return b.build();
|
|
3177
3235
|
}, "se_DeleteTaskTemplateCommand");
|
|
3178
3236
|
var se_DeleteTrafficDistributionGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3179
|
-
const b = (0,
|
|
3237
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3180
3238
|
const headers = {};
|
|
3181
3239
|
b.bp("/traffic-distribution-group/{TrafficDistributionGroupId}");
|
|
3182
3240
|
b.p("TrafficDistributionGroupId", () => input.TrafficDistributionGroupId, "{TrafficDistributionGroupId}", false);
|
|
@@ -3185,7 +3243,7 @@ var se_DeleteTrafficDistributionGroupCommand = /* @__PURE__ */ __name(async (inp
|
|
|
3185
3243
|
return b.build();
|
|
3186
3244
|
}, "se_DeleteTrafficDistributionGroupCommand");
|
|
3187
3245
|
var se_DeleteUseCaseCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3188
|
-
const b = (0,
|
|
3246
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3189
3247
|
const headers = {};
|
|
3190
3248
|
b.bp("/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}/use-cases/{UseCaseId}");
|
|
3191
3249
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3196,7 +3254,7 @@ var se_DeleteUseCaseCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3196
3254
|
return b.build();
|
|
3197
3255
|
}, "se_DeleteUseCaseCommand");
|
|
3198
3256
|
var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3199
|
-
const b = (0,
|
|
3257
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3200
3258
|
const headers = {};
|
|
3201
3259
|
b.bp("/users/{InstanceId}/{UserId}");
|
|
3202
3260
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3206,7 +3264,7 @@ var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3206
3264
|
return b.build();
|
|
3207
3265
|
}, "se_DeleteUserCommand");
|
|
3208
3266
|
var se_DeleteUserHierarchyGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3209
|
-
const b = (0,
|
|
3267
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3210
3268
|
const headers = {};
|
|
3211
3269
|
b.bp("/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}");
|
|
3212
3270
|
b.p("HierarchyGroupId", () => input.HierarchyGroupId, "{HierarchyGroupId}", false);
|
|
@@ -3216,7 +3274,7 @@ var se_DeleteUserHierarchyGroupCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
3216
3274
|
return b.build();
|
|
3217
3275
|
}, "se_DeleteUserHierarchyGroupCommand");
|
|
3218
3276
|
var se_DeleteViewCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3219
|
-
const b = (0,
|
|
3277
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3220
3278
|
const headers = {};
|
|
3221
3279
|
b.bp("/views/{InstanceId}/{ViewId}");
|
|
3222
3280
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3226,7 +3284,7 @@ var se_DeleteViewCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3226
3284
|
return b.build();
|
|
3227
3285
|
}, "se_DeleteViewCommand");
|
|
3228
3286
|
var se_DeleteViewVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3229
|
-
const b = (0,
|
|
3287
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3230
3288
|
const headers = {};
|
|
3231
3289
|
b.bp("/views/{InstanceId}/{ViewId}/versions/{ViewVersion}");
|
|
3232
3290
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3237,7 +3295,7 @@ var se_DeleteViewVersionCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3237
3295
|
return b.build();
|
|
3238
3296
|
}, "se_DeleteViewVersionCommand");
|
|
3239
3297
|
var se_DeleteVocabularyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3240
|
-
const b = (0,
|
|
3298
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3241
3299
|
const headers = {};
|
|
3242
3300
|
b.bp("/vocabulary-remove/{InstanceId}/{VocabularyId}");
|
|
3243
3301
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3247,7 +3305,7 @@ var se_DeleteVocabularyCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3247
3305
|
return b.build();
|
|
3248
3306
|
}, "se_DeleteVocabularyCommand");
|
|
3249
3307
|
var se_DescribeAgentStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3250
|
-
const b = (0,
|
|
3308
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3251
3309
|
const headers = {};
|
|
3252
3310
|
b.bp("/agent-status/{InstanceId}/{AgentStatusId}");
|
|
3253
3311
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3257,7 +3315,7 @@ var se_DescribeAgentStatusCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3257
3315
|
return b.build();
|
|
3258
3316
|
}, "se_DescribeAgentStatusCommand");
|
|
3259
3317
|
var se_DescribeContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3260
|
-
const b = (0,
|
|
3318
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3261
3319
|
const headers = {};
|
|
3262
3320
|
b.bp("/contacts/{InstanceId}/{ContactId}");
|
|
3263
3321
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3267,7 +3325,7 @@ var se_DescribeContactCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3267
3325
|
return b.build();
|
|
3268
3326
|
}, "se_DescribeContactCommand");
|
|
3269
3327
|
var se_DescribeContactEvaluationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3270
|
-
const b = (0,
|
|
3328
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3271
3329
|
const headers = {};
|
|
3272
3330
|
b.bp("/contact-evaluations/{InstanceId}/{EvaluationId}");
|
|
3273
3331
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3277,7 +3335,7 @@ var se_DescribeContactEvaluationCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3277
3335
|
return b.build();
|
|
3278
3336
|
}, "se_DescribeContactEvaluationCommand");
|
|
3279
3337
|
var se_DescribeContactFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3280
|
-
const b = (0,
|
|
3338
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3281
3339
|
const headers = {};
|
|
3282
3340
|
b.bp("/contact-flows/{InstanceId}/{ContactFlowId}");
|
|
3283
3341
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3287,7 +3345,7 @@ var se_DescribeContactFlowCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3287
3345
|
return b.build();
|
|
3288
3346
|
}, "se_DescribeContactFlowCommand");
|
|
3289
3347
|
var se_DescribeContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3290
|
-
const b = (0,
|
|
3348
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3291
3349
|
const headers = {};
|
|
3292
3350
|
b.bp("/contact-flow-modules/{InstanceId}/{ContactFlowModuleId}");
|
|
3293
3351
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3297,7 +3355,7 @@ var se_DescribeContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3297
3355
|
return b.build();
|
|
3298
3356
|
}, "se_DescribeContactFlowModuleCommand");
|
|
3299
3357
|
var se_DescribeEvaluationFormCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3300
|
-
const b = (0,
|
|
3358
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3301
3359
|
const headers = {};
|
|
3302
3360
|
b.bp("/evaluation-forms/{InstanceId}/{EvaluationFormId}");
|
|
3303
3361
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3310,7 +3368,7 @@ var se_DescribeEvaluationFormCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3310
3368
|
return b.build();
|
|
3311
3369
|
}, "se_DescribeEvaluationFormCommand");
|
|
3312
3370
|
var se_DescribeHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3313
|
-
const b = (0,
|
|
3371
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3314
3372
|
const headers = {};
|
|
3315
3373
|
b.bp("/hours-of-operations/{InstanceId}/{HoursOfOperationId}");
|
|
3316
3374
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3320,7 +3378,7 @@ var se_DescribeHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
3320
3378
|
return b.build();
|
|
3321
3379
|
}, "se_DescribeHoursOfOperationCommand");
|
|
3322
3380
|
var se_DescribeInstanceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3323
|
-
const b = (0,
|
|
3381
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3324
3382
|
const headers = {};
|
|
3325
3383
|
b.bp("/instance/{InstanceId}");
|
|
3326
3384
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3329,7 +3387,7 @@ var se_DescribeInstanceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3329
3387
|
return b.build();
|
|
3330
3388
|
}, "se_DescribeInstanceCommand");
|
|
3331
3389
|
var se_DescribeInstanceAttributeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3332
|
-
const b = (0,
|
|
3390
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3333
3391
|
const headers = {};
|
|
3334
3392
|
b.bp("/instance/{InstanceId}/attribute/{AttributeType}");
|
|
3335
3393
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3339,7 +3397,7 @@ var se_DescribeInstanceAttributeCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3339
3397
|
return b.build();
|
|
3340
3398
|
}, "se_DescribeInstanceAttributeCommand");
|
|
3341
3399
|
var se_DescribeInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3342
|
-
const b = (0,
|
|
3400
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3343
3401
|
const headers = {};
|
|
3344
3402
|
b.bp("/instance/{InstanceId}/storage-config/{AssociationId}");
|
|
3345
3403
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3352,7 +3410,7 @@ var se_DescribeInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
3352
3410
|
return b.build();
|
|
3353
3411
|
}, "se_DescribeInstanceStorageConfigCommand");
|
|
3354
3412
|
var se_DescribePhoneNumberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3355
|
-
const b = (0,
|
|
3413
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3356
3414
|
const headers = {};
|
|
3357
3415
|
b.bp("/phone-number/{PhoneNumberId}");
|
|
3358
3416
|
b.p("PhoneNumberId", () => input.PhoneNumberId, "{PhoneNumberId}", false);
|
|
@@ -3361,7 +3419,7 @@ var se_DescribePhoneNumberCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3361
3419
|
return b.build();
|
|
3362
3420
|
}, "se_DescribePhoneNumberCommand");
|
|
3363
3421
|
var se_DescribePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3364
|
-
const b = (0,
|
|
3422
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3365
3423
|
const headers = {};
|
|
3366
3424
|
b.bp("/predefined-attributes/{InstanceId}/{Name}");
|
|
3367
3425
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3371,7 +3429,7 @@ var se_DescribePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3371
3429
|
return b.build();
|
|
3372
3430
|
}, "se_DescribePredefinedAttributeCommand");
|
|
3373
3431
|
var se_DescribePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3374
|
-
const b = (0,
|
|
3432
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3375
3433
|
const headers = {};
|
|
3376
3434
|
b.bp("/prompts/{InstanceId}/{PromptId}");
|
|
3377
3435
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3381,7 +3439,7 @@ var se_DescribePromptCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3381
3439
|
return b.build();
|
|
3382
3440
|
}, "se_DescribePromptCommand");
|
|
3383
3441
|
var se_DescribeQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3384
|
-
const b = (0,
|
|
3442
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3385
3443
|
const headers = {};
|
|
3386
3444
|
b.bp("/queues/{InstanceId}/{QueueId}");
|
|
3387
3445
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3391,7 +3449,7 @@ var se_DescribeQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3391
3449
|
return b.build();
|
|
3392
3450
|
}, "se_DescribeQueueCommand");
|
|
3393
3451
|
var se_DescribeQuickConnectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3394
|
-
const b = (0,
|
|
3452
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3395
3453
|
const headers = {};
|
|
3396
3454
|
b.bp("/quick-connects/{InstanceId}/{QuickConnectId}");
|
|
3397
3455
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3401,7 +3459,7 @@ var se_DescribeQuickConnectCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3401
3459
|
return b.build();
|
|
3402
3460
|
}, "se_DescribeQuickConnectCommand");
|
|
3403
3461
|
var se_DescribeRoutingProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3404
|
-
const b = (0,
|
|
3462
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3405
3463
|
const headers = {};
|
|
3406
3464
|
b.bp("/routing-profiles/{InstanceId}/{RoutingProfileId}");
|
|
3407
3465
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3411,7 +3469,7 @@ var se_DescribeRoutingProfileCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3411
3469
|
return b.build();
|
|
3412
3470
|
}, "se_DescribeRoutingProfileCommand");
|
|
3413
3471
|
var se_DescribeRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3414
|
-
const b = (0,
|
|
3472
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3415
3473
|
const headers = {};
|
|
3416
3474
|
b.bp("/rules/{InstanceId}/{RuleId}");
|
|
3417
3475
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3421,7 +3479,7 @@ var se_DescribeRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3421
3479
|
return b.build();
|
|
3422
3480
|
}, "se_DescribeRuleCommand");
|
|
3423
3481
|
var se_DescribeSecurityProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3424
|
-
const b = (0,
|
|
3482
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3425
3483
|
const headers = {};
|
|
3426
3484
|
b.bp("/security-profiles/{InstanceId}/{SecurityProfileId}");
|
|
3427
3485
|
b.p("SecurityProfileId", () => input.SecurityProfileId, "{SecurityProfileId}", false);
|
|
@@ -3431,7 +3489,7 @@ var se_DescribeSecurityProfileCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3431
3489
|
return b.build();
|
|
3432
3490
|
}, "se_DescribeSecurityProfileCommand");
|
|
3433
3491
|
var se_DescribeTrafficDistributionGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3434
|
-
const b = (0,
|
|
3492
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3435
3493
|
const headers = {};
|
|
3436
3494
|
b.bp("/traffic-distribution-group/{TrafficDistributionGroupId}");
|
|
3437
3495
|
b.p("TrafficDistributionGroupId", () => input.TrafficDistributionGroupId, "{TrafficDistributionGroupId}", false);
|
|
@@ -3440,7 +3498,7 @@ var se_DescribeTrafficDistributionGroupCommand = /* @__PURE__ */ __name(async (i
|
|
|
3440
3498
|
return b.build();
|
|
3441
3499
|
}, "se_DescribeTrafficDistributionGroupCommand");
|
|
3442
3500
|
var se_DescribeUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3443
|
-
const b = (0,
|
|
3501
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3444
3502
|
const headers = {};
|
|
3445
3503
|
b.bp("/users/{InstanceId}/{UserId}");
|
|
3446
3504
|
b.p("UserId", () => input.UserId, "{UserId}", false);
|
|
@@ -3450,7 +3508,7 @@ var se_DescribeUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3450
3508
|
return b.build();
|
|
3451
3509
|
}, "se_DescribeUserCommand");
|
|
3452
3510
|
var se_DescribeUserHierarchyGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3453
|
-
const b = (0,
|
|
3511
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3454
3512
|
const headers = {};
|
|
3455
3513
|
b.bp("/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}");
|
|
3456
3514
|
b.p("HierarchyGroupId", () => input.HierarchyGroupId, "{HierarchyGroupId}", false);
|
|
@@ -3460,7 +3518,7 @@ var se_DescribeUserHierarchyGroupCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3460
3518
|
return b.build();
|
|
3461
3519
|
}, "se_DescribeUserHierarchyGroupCommand");
|
|
3462
3520
|
var se_DescribeUserHierarchyStructureCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3463
|
-
const b = (0,
|
|
3521
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3464
3522
|
const headers = {};
|
|
3465
3523
|
b.bp("/user-hierarchy-structure/{InstanceId}");
|
|
3466
3524
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3469,7 +3527,7 @@ var se_DescribeUserHierarchyStructureCommand = /* @__PURE__ */ __name(async (inp
|
|
|
3469
3527
|
return b.build();
|
|
3470
3528
|
}, "se_DescribeUserHierarchyStructureCommand");
|
|
3471
3529
|
var se_DescribeViewCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3472
|
-
const b = (0,
|
|
3530
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3473
3531
|
const headers = {};
|
|
3474
3532
|
b.bp("/views/{InstanceId}/{ViewId}");
|
|
3475
3533
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3479,7 +3537,7 @@ var se_DescribeViewCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3479
3537
|
return b.build();
|
|
3480
3538
|
}, "se_DescribeViewCommand");
|
|
3481
3539
|
var se_DescribeVocabularyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3482
|
-
const b = (0,
|
|
3540
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3483
3541
|
const headers = {};
|
|
3484
3542
|
b.bp("/vocabulary/{InstanceId}/{VocabularyId}");
|
|
3485
3543
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3489,7 +3547,7 @@ var se_DescribeVocabularyCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3489
3547
|
return b.build();
|
|
3490
3548
|
}, "se_DescribeVocabularyCommand");
|
|
3491
3549
|
var se_DisassociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3492
|
-
const b = (0,
|
|
3550
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3493
3551
|
const headers = {
|
|
3494
3552
|
"content-type": "application/json"
|
|
3495
3553
|
};
|
|
@@ -3506,7 +3564,7 @@ var se_DisassociateAnalyticsDataSetCommand = /* @__PURE__ */ __name(async (input
|
|
|
3506
3564
|
return b.build();
|
|
3507
3565
|
}, "se_DisassociateAnalyticsDataSetCommand");
|
|
3508
3566
|
var se_DisassociateApprovedOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3509
|
-
const b = (0,
|
|
3567
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3510
3568
|
const headers = {};
|
|
3511
3569
|
b.bp("/instance/{InstanceId}/approved-origin");
|
|
3512
3570
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3518,7 +3576,7 @@ var se_DisassociateApprovedOriginCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3518
3576
|
return b.build();
|
|
3519
3577
|
}, "se_DisassociateApprovedOriginCommand");
|
|
3520
3578
|
var se_DisassociateBotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3521
|
-
const b = (0,
|
|
3579
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3522
3580
|
const headers = {
|
|
3523
3581
|
"content-type": "application/json"
|
|
3524
3582
|
};
|
|
@@ -3535,7 +3593,7 @@ var se_DisassociateBotCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3535
3593
|
return b.build();
|
|
3536
3594
|
}, "se_DisassociateBotCommand");
|
|
3537
3595
|
var se_DisassociateFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3538
|
-
const b = (0,
|
|
3596
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3539
3597
|
const headers = {};
|
|
3540
3598
|
b.bp("/flow-associations/{InstanceId}/{ResourceId}/{ResourceType}");
|
|
3541
3599
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3546,7 +3604,7 @@ var se_DisassociateFlowCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3546
3604
|
return b.build();
|
|
3547
3605
|
}, "se_DisassociateFlowCommand");
|
|
3548
3606
|
var se_DisassociateInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3549
|
-
const b = (0,
|
|
3607
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3550
3608
|
const headers = {};
|
|
3551
3609
|
b.bp("/instance/{InstanceId}/storage-config/{AssociationId}");
|
|
3552
3610
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3559,7 +3617,7 @@ var se_DisassociateInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (
|
|
|
3559
3617
|
return b.build();
|
|
3560
3618
|
}, "se_DisassociateInstanceStorageConfigCommand");
|
|
3561
3619
|
var se_DisassociateLambdaFunctionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3562
|
-
const b = (0,
|
|
3620
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3563
3621
|
const headers = {};
|
|
3564
3622
|
b.bp("/instance/{InstanceId}/lambda-function");
|
|
3565
3623
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3571,7 +3629,7 @@ var se_DisassociateLambdaFunctionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3571
3629
|
return b.build();
|
|
3572
3630
|
}, "se_DisassociateLambdaFunctionCommand");
|
|
3573
3631
|
var se_DisassociateLexBotCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3574
|
-
const b = (0,
|
|
3632
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3575
3633
|
const headers = {};
|
|
3576
3634
|
b.bp("/instance/{InstanceId}/lex-bot");
|
|
3577
3635
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3584,7 +3642,7 @@ var se_DisassociateLexBotCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3584
3642
|
return b.build();
|
|
3585
3643
|
}, "se_DisassociateLexBotCommand");
|
|
3586
3644
|
var se_DisassociatePhoneNumberContactFlowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3587
|
-
const b = (0,
|
|
3645
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3588
3646
|
const headers = {};
|
|
3589
3647
|
b.bp("/phone-number/{PhoneNumberId}/contact-flow");
|
|
3590
3648
|
b.p("PhoneNumberId", () => input.PhoneNumberId, "{PhoneNumberId}", false);
|
|
@@ -3596,7 +3654,7 @@ var se_DisassociatePhoneNumberContactFlowCommand = /* @__PURE__ */ __name(async
|
|
|
3596
3654
|
return b.build();
|
|
3597
3655
|
}, "se_DisassociatePhoneNumberContactFlowCommand");
|
|
3598
3656
|
var se_DisassociateQueueQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3599
|
-
const b = (0,
|
|
3657
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3600
3658
|
const headers = {
|
|
3601
3659
|
"content-type": "application/json"
|
|
3602
3660
|
};
|
|
@@ -3613,7 +3671,7 @@ var se_DisassociateQueueQuickConnectsCommand = /* @__PURE__ */ __name(async (inp
|
|
|
3613
3671
|
return b.build();
|
|
3614
3672
|
}, "se_DisassociateQueueQuickConnectsCommand");
|
|
3615
3673
|
var se_DisassociateRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3616
|
-
const b = (0,
|
|
3674
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3617
3675
|
const headers = {
|
|
3618
3676
|
"content-type": "application/json"
|
|
3619
3677
|
};
|
|
@@ -3630,7 +3688,7 @@ var se_DisassociateRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (i
|
|
|
3630
3688
|
return b.build();
|
|
3631
3689
|
}, "se_DisassociateRoutingProfileQueuesCommand");
|
|
3632
3690
|
var se_DisassociateSecurityKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3633
|
-
const b = (0,
|
|
3691
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3634
3692
|
const headers = {};
|
|
3635
3693
|
b.bp("/instance/{InstanceId}/security-key/{AssociationId}");
|
|
3636
3694
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3640,7 +3698,7 @@ var se_DisassociateSecurityKeyCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3640
3698
|
return b.build();
|
|
3641
3699
|
}, "se_DisassociateSecurityKeyCommand");
|
|
3642
3700
|
var se_DisassociateTrafficDistributionGroupUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3643
|
-
const b = (0,
|
|
3701
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3644
3702
|
const headers = {};
|
|
3645
3703
|
b.bp("/traffic-distribution-group/{TrafficDistributionGroupId}/user");
|
|
3646
3704
|
b.p("TrafficDistributionGroupId", () => input.TrafficDistributionGroupId, "{TrafficDistributionGroupId}", false);
|
|
@@ -3653,7 +3711,7 @@ var se_DisassociateTrafficDistributionGroupUserCommand = /* @__PURE__ */ __name(
|
|
|
3653
3711
|
return b.build();
|
|
3654
3712
|
}, "se_DisassociateTrafficDistributionGroupUserCommand");
|
|
3655
3713
|
var se_DisassociateUserProficienciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3656
|
-
const b = (0,
|
|
3714
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3657
3715
|
const headers = {
|
|
3658
3716
|
"content-type": "application/json"
|
|
3659
3717
|
};
|
|
@@ -3670,7 +3728,7 @@ var se_DisassociateUserProficienciesCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
3670
3728
|
return b.build();
|
|
3671
3729
|
}, "se_DisassociateUserProficienciesCommand");
|
|
3672
3730
|
var se_DismissUserContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3673
|
-
const b = (0,
|
|
3731
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3674
3732
|
const headers = {
|
|
3675
3733
|
"content-type": "application/json"
|
|
3676
3734
|
};
|
|
@@ -3687,7 +3745,7 @@ var se_DismissUserContactCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3687
3745
|
return b.build();
|
|
3688
3746
|
}, "se_DismissUserContactCommand");
|
|
3689
3747
|
var se_GetContactAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3690
|
-
const b = (0,
|
|
3748
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3691
3749
|
const headers = {};
|
|
3692
3750
|
b.bp("/contact/attributes/{InstanceId}/{InitialContactId}");
|
|
3693
3751
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3697,7 +3755,7 @@ var se_GetContactAttributesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3697
3755
|
return b.build();
|
|
3698
3756
|
}, "se_GetContactAttributesCommand");
|
|
3699
3757
|
var se_GetCurrentMetricDataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3700
|
-
const b = (0,
|
|
3758
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3701
3759
|
const headers = {
|
|
3702
3760
|
"content-type": "application/json"
|
|
3703
3761
|
};
|
|
@@ -3718,7 +3776,7 @@ var se_GetCurrentMetricDataCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3718
3776
|
return b.build();
|
|
3719
3777
|
}, "se_GetCurrentMetricDataCommand");
|
|
3720
3778
|
var se_GetCurrentUserDataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3721
|
-
const b = (0,
|
|
3779
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3722
3780
|
const headers = {
|
|
3723
3781
|
"content-type": "application/json"
|
|
3724
3782
|
};
|
|
@@ -3736,7 +3794,7 @@ var se_GetCurrentUserDataCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3736
3794
|
return b.build();
|
|
3737
3795
|
}, "se_GetCurrentUserDataCommand");
|
|
3738
3796
|
var se_GetFederationTokenCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3739
|
-
const b = (0,
|
|
3797
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3740
3798
|
const headers = {};
|
|
3741
3799
|
b.bp("/user/federate/{InstanceId}");
|
|
3742
3800
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3745,7 +3803,7 @@ var se_GetFederationTokenCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3745
3803
|
return b.build();
|
|
3746
3804
|
}, "se_GetFederationTokenCommand");
|
|
3747
3805
|
var se_GetFlowAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3748
|
-
const b = (0,
|
|
3806
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3749
3807
|
const headers = {};
|
|
3750
3808
|
b.bp("/flow-associations/{InstanceId}/{ResourceId}/{ResourceType}");
|
|
3751
3809
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3756,7 +3814,7 @@ var se_GetFlowAssociationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3756
3814
|
return b.build();
|
|
3757
3815
|
}, "se_GetFlowAssociationCommand");
|
|
3758
3816
|
var se_GetMetricDataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3759
|
-
const b = (0,
|
|
3817
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3760
3818
|
const headers = {
|
|
3761
3819
|
"content-type": "application/json"
|
|
3762
3820
|
};
|
|
@@ -3778,7 +3836,7 @@ var se_GetMetricDataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3778
3836
|
return b.build();
|
|
3779
3837
|
}, "se_GetMetricDataCommand");
|
|
3780
3838
|
var se_GetMetricDataV2Command = /* @__PURE__ */ __name(async (input, context) => {
|
|
3781
|
-
const b = (0,
|
|
3839
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3782
3840
|
const headers = {
|
|
3783
3841
|
"content-type": "application/json"
|
|
3784
3842
|
};
|
|
@@ -3801,7 +3859,7 @@ var se_GetMetricDataV2Command = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3801
3859
|
return b.build();
|
|
3802
3860
|
}, "se_GetMetricDataV2Command");
|
|
3803
3861
|
var se_GetPromptFileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3804
|
-
const b = (0,
|
|
3862
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3805
3863
|
const headers = {};
|
|
3806
3864
|
b.bp("/prompts/{InstanceId}/{PromptId}/file");
|
|
3807
3865
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3811,7 +3869,7 @@ var se_GetPromptFileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3811
3869
|
return b.build();
|
|
3812
3870
|
}, "se_GetPromptFileCommand");
|
|
3813
3871
|
var se_GetTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3814
|
-
const b = (0,
|
|
3872
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3815
3873
|
const headers = {};
|
|
3816
3874
|
b.bp("/instance/{InstanceId}/task/template/{TaskTemplateId}");
|
|
3817
3875
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3824,7 +3882,7 @@ var se_GetTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3824
3882
|
return b.build();
|
|
3825
3883
|
}, "se_GetTaskTemplateCommand");
|
|
3826
3884
|
var se_GetTrafficDistributionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3827
|
-
const b = (0,
|
|
3885
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3828
3886
|
const headers = {};
|
|
3829
3887
|
b.bp("/traffic-distribution/{Id}");
|
|
3830
3888
|
b.p("Id", () => input.Id, "{Id}", false);
|
|
@@ -3833,7 +3891,7 @@ var se_GetTrafficDistributionCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3833
3891
|
return b.build();
|
|
3834
3892
|
}, "se_GetTrafficDistributionCommand");
|
|
3835
3893
|
var se_ImportPhoneNumberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3836
|
-
const b = (0,
|
|
3894
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3837
3895
|
const headers = {
|
|
3838
3896
|
"content-type": "application/json"
|
|
3839
3897
|
};
|
|
@@ -3852,7 +3910,7 @@ var se_ImportPhoneNumberCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3852
3910
|
return b.build();
|
|
3853
3911
|
}, "se_ImportPhoneNumberCommand");
|
|
3854
3912
|
var se_ListAgentStatusesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3855
|
-
const b = (0,
|
|
3913
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3856
3914
|
const headers = {};
|
|
3857
3915
|
b.bp("/agent-status/{InstanceId}");
|
|
3858
3916
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3866,7 +3924,7 @@ var se_ListAgentStatusesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3866
3924
|
return b.build();
|
|
3867
3925
|
}, "se_ListAgentStatusesCommand");
|
|
3868
3926
|
var se_ListAnalyticsDataAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3869
|
-
const b = (0,
|
|
3927
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3870
3928
|
const headers = {};
|
|
3871
3929
|
b.bp("/analytics-data/instance/{InstanceId}/association");
|
|
3872
3930
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3880,7 +3938,7 @@ var se_ListAnalyticsDataAssociationsCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
3880
3938
|
return b.build();
|
|
3881
3939
|
}, "se_ListAnalyticsDataAssociationsCommand");
|
|
3882
3940
|
var se_ListApprovedOriginsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3883
|
-
const b = (0,
|
|
3941
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3884
3942
|
const headers = {};
|
|
3885
3943
|
b.bp("/instance/{InstanceId}/approved-origins");
|
|
3886
3944
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3893,7 +3951,7 @@ var se_ListApprovedOriginsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3893
3951
|
return b.build();
|
|
3894
3952
|
}, "se_ListApprovedOriginsCommand");
|
|
3895
3953
|
var se_ListBotsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3896
|
-
const b = (0,
|
|
3954
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3897
3955
|
const headers = {};
|
|
3898
3956
|
b.bp("/instance/{InstanceId}/bots");
|
|
3899
3957
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3907,7 +3965,7 @@ var se_ListBotsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3907
3965
|
return b.build();
|
|
3908
3966
|
}, "se_ListBotsCommand");
|
|
3909
3967
|
var se_ListContactEvaluationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3910
|
-
const b = (0,
|
|
3968
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3911
3969
|
const headers = {};
|
|
3912
3970
|
b.bp("/contact-evaluations/{InstanceId}");
|
|
3913
3971
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3920,7 +3978,7 @@ var se_ListContactEvaluationsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3920
3978
|
return b.build();
|
|
3921
3979
|
}, "se_ListContactEvaluationsCommand");
|
|
3922
3980
|
var se_ListContactFlowModulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3923
|
-
const b = (0,
|
|
3981
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3924
3982
|
const headers = {};
|
|
3925
3983
|
b.bp("/contact-flow-modules-summary/{InstanceId}");
|
|
3926
3984
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3934,7 +3992,7 @@ var se_ListContactFlowModulesCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3934
3992
|
return b.build();
|
|
3935
3993
|
}, "se_ListContactFlowModulesCommand");
|
|
3936
3994
|
var se_ListContactFlowsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3937
|
-
const b = (0,
|
|
3995
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3938
3996
|
const headers = {};
|
|
3939
3997
|
b.bp("/contact-flows-summary/{InstanceId}");
|
|
3940
3998
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3948,7 +4006,7 @@ var se_ListContactFlowsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3948
4006
|
return b.build();
|
|
3949
4007
|
}, "se_ListContactFlowsCommand");
|
|
3950
4008
|
var se_ListContactReferencesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3951
|
-
const b = (0,
|
|
4009
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3952
4010
|
const headers = {};
|
|
3953
4011
|
b.bp("/contact/references/{InstanceId}/{ContactId}");
|
|
3954
4012
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3965,7 +4023,7 @@ var se_ListContactReferencesCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
3965
4023
|
return b.build();
|
|
3966
4024
|
}, "se_ListContactReferencesCommand");
|
|
3967
4025
|
var se_ListDefaultVocabulariesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3968
|
-
const b = (0,
|
|
4026
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3969
4027
|
const headers = {
|
|
3970
4028
|
"content-type": "application/json"
|
|
3971
4029
|
};
|
|
@@ -3983,7 +4041,7 @@ var se_ListDefaultVocabulariesCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3983
4041
|
return b.build();
|
|
3984
4042
|
}, "se_ListDefaultVocabulariesCommand");
|
|
3985
4043
|
var se_ListEvaluationFormsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3986
|
-
const b = (0,
|
|
4044
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3987
4045
|
const headers = {};
|
|
3988
4046
|
b.bp("/evaluation-forms/{InstanceId}");
|
|
3989
4047
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -3996,7 +4054,7 @@ var se_ListEvaluationFormsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3996
4054
|
return b.build();
|
|
3997
4055
|
}, "se_ListEvaluationFormsCommand");
|
|
3998
4056
|
var se_ListEvaluationFormVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3999
|
-
const b = (0,
|
|
4057
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4000
4058
|
const headers = {};
|
|
4001
4059
|
b.bp("/evaluation-forms/{InstanceId}/{EvaluationFormId}/versions");
|
|
4002
4060
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4010,7 +4068,7 @@ var se_ListEvaluationFormVersionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4010
4068
|
return b.build();
|
|
4011
4069
|
}, "se_ListEvaluationFormVersionsCommand");
|
|
4012
4070
|
var se_ListFlowAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4013
|
-
const b = (0,
|
|
4071
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4014
4072
|
const headers = {};
|
|
4015
4073
|
b.bp("/flow-associations-summary/{InstanceId}");
|
|
4016
4074
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4024,7 +4082,7 @@ var se_ListFlowAssociationsCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4024
4082
|
return b.build();
|
|
4025
4083
|
}, "se_ListFlowAssociationsCommand");
|
|
4026
4084
|
var se_ListHoursOfOperationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4027
|
-
const b = (0,
|
|
4085
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4028
4086
|
const headers = {};
|
|
4029
4087
|
b.bp("/hours-of-operations-summary/{InstanceId}");
|
|
4030
4088
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4037,7 +4095,7 @@ var se_ListHoursOfOperationsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4037
4095
|
return b.build();
|
|
4038
4096
|
}, "se_ListHoursOfOperationsCommand");
|
|
4039
4097
|
var se_ListInstanceAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4040
|
-
const b = (0,
|
|
4098
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4041
4099
|
const headers = {};
|
|
4042
4100
|
b.bp("/instance/{InstanceId}/attributes");
|
|
4043
4101
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4050,7 +4108,7 @@ var se_ListInstanceAttributesCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
4050
4108
|
return b.build();
|
|
4051
4109
|
}, "se_ListInstanceAttributesCommand");
|
|
4052
4110
|
var se_ListInstancesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4053
|
-
const b = (0,
|
|
4111
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4054
4112
|
const headers = {};
|
|
4055
4113
|
b.bp("/instance");
|
|
4056
4114
|
const query = (0, import_smithy_client.map)({
|
|
@@ -4062,7 +4120,7 @@ var se_ListInstancesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4062
4120
|
return b.build();
|
|
4063
4121
|
}, "se_ListInstancesCommand");
|
|
4064
4122
|
var se_ListInstanceStorageConfigsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4065
|
-
const b = (0,
|
|
4123
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4066
4124
|
const headers = {};
|
|
4067
4125
|
b.bp("/instance/{InstanceId}/storage-configs");
|
|
4068
4126
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4076,7 +4134,7 @@ var se_ListInstanceStorageConfigsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4076
4134
|
return b.build();
|
|
4077
4135
|
}, "se_ListInstanceStorageConfigsCommand");
|
|
4078
4136
|
var se_ListIntegrationAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4079
|
-
const b = (0,
|
|
4137
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4080
4138
|
const headers = {};
|
|
4081
4139
|
b.bp("/instance/{InstanceId}/integration-associations");
|
|
4082
4140
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4091,7 +4149,7 @@ var se_ListIntegrationAssociationsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4091
4149
|
return b.build();
|
|
4092
4150
|
}, "se_ListIntegrationAssociationsCommand");
|
|
4093
4151
|
var se_ListLambdaFunctionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4094
|
-
const b = (0,
|
|
4152
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4095
4153
|
const headers = {};
|
|
4096
4154
|
b.bp("/instance/{InstanceId}/lambda-functions");
|
|
4097
4155
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4104,7 +4162,7 @@ var se_ListLambdaFunctionsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4104
4162
|
return b.build();
|
|
4105
4163
|
}, "se_ListLambdaFunctionsCommand");
|
|
4106
4164
|
var se_ListLexBotsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4107
|
-
const b = (0,
|
|
4165
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4108
4166
|
const headers = {};
|
|
4109
4167
|
b.bp("/instance/{InstanceId}/lex-bots");
|
|
4110
4168
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4117,7 +4175,7 @@ var se_ListLexBotsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4117
4175
|
return b.build();
|
|
4118
4176
|
}, "se_ListLexBotsCommand");
|
|
4119
4177
|
var se_ListPhoneNumbersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4120
|
-
const b = (0,
|
|
4178
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4121
4179
|
const headers = {};
|
|
4122
4180
|
b.bp("/phone-numbers-summary/{InstanceId}");
|
|
4123
4181
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4135,7 +4193,7 @@ var se_ListPhoneNumbersCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4135
4193
|
return b.build();
|
|
4136
4194
|
}, "se_ListPhoneNumbersCommand");
|
|
4137
4195
|
var se_ListPhoneNumbersV2Command = /* @__PURE__ */ __name(async (input, context) => {
|
|
4138
|
-
const b = (0,
|
|
4196
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4139
4197
|
const headers = {
|
|
4140
4198
|
"content-type": "application/json"
|
|
4141
4199
|
};
|
|
@@ -4156,7 +4214,7 @@ var se_ListPhoneNumbersV2Command = /* @__PURE__ */ __name(async (input, context)
|
|
|
4156
4214
|
return b.build();
|
|
4157
4215
|
}, "se_ListPhoneNumbersV2Command");
|
|
4158
4216
|
var se_ListPredefinedAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4159
|
-
const b = (0,
|
|
4217
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4160
4218
|
const headers = {};
|
|
4161
4219
|
b.bp("/predefined-attributes/{InstanceId}");
|
|
4162
4220
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4169,7 +4227,7 @@ var se_ListPredefinedAttributesCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
4169
4227
|
return b.build();
|
|
4170
4228
|
}, "se_ListPredefinedAttributesCommand");
|
|
4171
4229
|
var se_ListPromptsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4172
|
-
const b = (0,
|
|
4230
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4173
4231
|
const headers = {};
|
|
4174
4232
|
b.bp("/prompts-summary/{InstanceId}");
|
|
4175
4233
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4182,7 +4240,7 @@ var se_ListPromptsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4182
4240
|
return b.build();
|
|
4183
4241
|
}, "se_ListPromptsCommand");
|
|
4184
4242
|
var se_ListQueueQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4185
|
-
const b = (0,
|
|
4243
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4186
4244
|
const headers = {};
|
|
4187
4245
|
b.bp("/queues/{InstanceId}/{QueueId}/quick-connects");
|
|
4188
4246
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4196,7 +4254,7 @@ var se_ListQueueQuickConnectsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
4196
4254
|
return b.build();
|
|
4197
4255
|
}, "se_ListQueueQuickConnectsCommand");
|
|
4198
4256
|
var se_ListQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4199
|
-
const b = (0,
|
|
4257
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4200
4258
|
const headers = {};
|
|
4201
4259
|
b.bp("/queues-summary/{InstanceId}");
|
|
4202
4260
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4210,7 +4268,7 @@ var se_ListQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4210
4268
|
return b.build();
|
|
4211
4269
|
}, "se_ListQueuesCommand");
|
|
4212
4270
|
var se_ListQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4213
|
-
const b = (0,
|
|
4271
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4214
4272
|
const headers = {};
|
|
4215
4273
|
b.bp("/quick-connects/{InstanceId}");
|
|
4216
4274
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4224,7 +4282,7 @@ var se_ListQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4224
4282
|
return b.build();
|
|
4225
4283
|
}, "se_ListQuickConnectsCommand");
|
|
4226
4284
|
var se_ListRealtimeContactAnalysisSegmentsV2Command = /* @__PURE__ */ __name(async (input, context) => {
|
|
4227
|
-
const b = (0,
|
|
4285
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4228
4286
|
const headers = {
|
|
4229
4287
|
"content-type": "application/json"
|
|
4230
4288
|
};
|
|
@@ -4244,7 +4302,7 @@ var se_ListRealtimeContactAnalysisSegmentsV2Command = /* @__PURE__ */ __name(asy
|
|
|
4244
4302
|
return b.build();
|
|
4245
4303
|
}, "se_ListRealtimeContactAnalysisSegmentsV2Command");
|
|
4246
4304
|
var se_ListRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4247
|
-
const b = (0,
|
|
4305
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4248
4306
|
const headers = {};
|
|
4249
4307
|
b.bp("/routing-profiles/{InstanceId}/{RoutingProfileId}/queues");
|
|
4250
4308
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4258,7 +4316,7 @@ var se_ListRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
4258
4316
|
return b.build();
|
|
4259
4317
|
}, "se_ListRoutingProfileQueuesCommand");
|
|
4260
4318
|
var se_ListRoutingProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4261
|
-
const b = (0,
|
|
4319
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4262
4320
|
const headers = {};
|
|
4263
4321
|
b.bp("/routing-profiles-summary/{InstanceId}");
|
|
4264
4322
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4271,7 +4329,7 @@ var se_ListRoutingProfilesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4271
4329
|
return b.build();
|
|
4272
4330
|
}, "se_ListRoutingProfilesCommand");
|
|
4273
4331
|
var se_ListRulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4274
|
-
const b = (0,
|
|
4332
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4275
4333
|
const headers = {};
|
|
4276
4334
|
b.bp("/rules/{InstanceId}");
|
|
4277
4335
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4286,7 +4344,7 @@ var se_ListRulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4286
4344
|
return b.build();
|
|
4287
4345
|
}, "se_ListRulesCommand");
|
|
4288
4346
|
var se_ListSecurityKeysCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4289
|
-
const b = (0,
|
|
4347
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4290
4348
|
const headers = {};
|
|
4291
4349
|
b.bp("/instance/{InstanceId}/security-keys");
|
|
4292
4350
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4299,7 +4357,7 @@ var se_ListSecurityKeysCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4299
4357
|
return b.build();
|
|
4300
4358
|
}, "se_ListSecurityKeysCommand");
|
|
4301
4359
|
var se_ListSecurityProfileApplicationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4302
|
-
const b = (0,
|
|
4360
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4303
4361
|
const headers = {};
|
|
4304
4362
|
b.bp("/security-profiles-applications/{InstanceId}/{SecurityProfileId}");
|
|
4305
4363
|
b.p("SecurityProfileId", () => input.SecurityProfileId, "{SecurityProfileId}", false);
|
|
@@ -4313,7 +4371,7 @@ var se_ListSecurityProfileApplicationsCommand = /* @__PURE__ */ __name(async (in
|
|
|
4313
4371
|
return b.build();
|
|
4314
4372
|
}, "se_ListSecurityProfileApplicationsCommand");
|
|
4315
4373
|
var se_ListSecurityProfilePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4316
|
-
const b = (0,
|
|
4374
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4317
4375
|
const headers = {};
|
|
4318
4376
|
b.bp("/security-profiles-permissions/{InstanceId}/{SecurityProfileId}");
|
|
4319
4377
|
b.p("SecurityProfileId", () => input.SecurityProfileId, "{SecurityProfileId}", false);
|
|
@@ -4327,7 +4385,7 @@ var se_ListSecurityProfilePermissionsCommand = /* @__PURE__ */ __name(async (inp
|
|
|
4327
4385
|
return b.build();
|
|
4328
4386
|
}, "se_ListSecurityProfilePermissionsCommand");
|
|
4329
4387
|
var se_ListSecurityProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4330
|
-
const b = (0,
|
|
4388
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4331
4389
|
const headers = {};
|
|
4332
4390
|
b.bp("/security-profiles-summary/{InstanceId}");
|
|
4333
4391
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4340,7 +4398,7 @@ var se_ListSecurityProfilesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4340
4398
|
return b.build();
|
|
4341
4399
|
}, "se_ListSecurityProfilesCommand");
|
|
4342
4400
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4343
|
-
const b = (0,
|
|
4401
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4344
4402
|
const headers = {};
|
|
4345
4403
|
b.bp("/tags/{resourceArn}");
|
|
4346
4404
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -4349,7 +4407,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4349
4407
|
return b.build();
|
|
4350
4408
|
}, "se_ListTagsForResourceCommand");
|
|
4351
4409
|
var se_ListTaskTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4352
|
-
const b = (0,
|
|
4410
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4353
4411
|
const headers = {};
|
|
4354
4412
|
b.bp("/instance/{InstanceId}/task/template");
|
|
4355
4413
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4364,7 +4422,7 @@ var se_ListTaskTemplatesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4364
4422
|
return b.build();
|
|
4365
4423
|
}, "se_ListTaskTemplatesCommand");
|
|
4366
4424
|
var se_ListTrafficDistributionGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4367
|
-
const b = (0,
|
|
4425
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4368
4426
|
const headers = {};
|
|
4369
4427
|
b.bp("/traffic-distribution-groups");
|
|
4370
4428
|
const query = (0, import_smithy_client.map)({
|
|
@@ -4377,7 +4435,7 @@ var se_ListTrafficDistributionGroupsCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
4377
4435
|
return b.build();
|
|
4378
4436
|
}, "se_ListTrafficDistributionGroupsCommand");
|
|
4379
4437
|
var se_ListTrafficDistributionGroupUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4380
|
-
const b = (0,
|
|
4438
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4381
4439
|
const headers = {};
|
|
4382
4440
|
b.bp("/traffic-distribution-group/{TrafficDistributionGroupId}/user");
|
|
4383
4441
|
b.p("TrafficDistributionGroupId", () => input.TrafficDistributionGroupId, "{TrafficDistributionGroupId}", false);
|
|
@@ -4390,7 +4448,7 @@ var se_ListTrafficDistributionGroupUsersCommand = /* @__PURE__ */ __name(async (
|
|
|
4390
4448
|
return b.build();
|
|
4391
4449
|
}, "se_ListTrafficDistributionGroupUsersCommand");
|
|
4392
4450
|
var se_ListUseCasesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4393
|
-
const b = (0,
|
|
4451
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4394
4452
|
const headers = {};
|
|
4395
4453
|
b.bp("/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}/use-cases");
|
|
4396
4454
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4404,7 +4462,7 @@ var se_ListUseCasesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4404
4462
|
return b.build();
|
|
4405
4463
|
}, "se_ListUseCasesCommand");
|
|
4406
4464
|
var se_ListUserHierarchyGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4407
|
-
const b = (0,
|
|
4465
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4408
4466
|
const headers = {};
|
|
4409
4467
|
b.bp("/user-hierarchy-groups-summary/{InstanceId}");
|
|
4410
4468
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4417,7 +4475,7 @@ var se_ListUserHierarchyGroupsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
4417
4475
|
return b.build();
|
|
4418
4476
|
}, "se_ListUserHierarchyGroupsCommand");
|
|
4419
4477
|
var se_ListUserProficienciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4420
|
-
const b = (0,
|
|
4478
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4421
4479
|
const headers = {};
|
|
4422
4480
|
b.bp("/users/{InstanceId}/{UserId}/proficiencies");
|
|
4423
4481
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4431,7 +4489,7 @@ var se_ListUserProficienciesCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4431
4489
|
return b.build();
|
|
4432
4490
|
}, "se_ListUserProficienciesCommand");
|
|
4433
4491
|
var se_ListUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4434
|
-
const b = (0,
|
|
4492
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4435
4493
|
const headers = {};
|
|
4436
4494
|
b.bp("/users-summary/{InstanceId}");
|
|
4437
4495
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4444,7 +4502,7 @@ var se_ListUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4444
4502
|
return b.build();
|
|
4445
4503
|
}, "se_ListUsersCommand");
|
|
4446
4504
|
var se_ListViewsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4447
|
-
const b = (0,
|
|
4505
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4448
4506
|
const headers = {};
|
|
4449
4507
|
b.bp("/views/{InstanceId}");
|
|
4450
4508
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4458,7 +4516,7 @@ var se_ListViewsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4458
4516
|
return b.build();
|
|
4459
4517
|
}, "se_ListViewsCommand");
|
|
4460
4518
|
var se_ListViewVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4461
|
-
const b = (0,
|
|
4519
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4462
4520
|
const headers = {};
|
|
4463
4521
|
b.bp("/views/{InstanceId}/{ViewId}/versions");
|
|
4464
4522
|
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
@@ -4472,7 +4530,7 @@ var se_ListViewVersionsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4472
4530
|
return b.build();
|
|
4473
4531
|
}, "se_ListViewVersionsCommand");
|
|
4474
4532
|
var se_MonitorContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4475
|
-
const b = (0,
|
|
4533
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4476
4534
|
const headers = {
|
|
4477
4535
|
"content-type": "application/json"
|
|
4478
4536
|
};
|
|
@@ -4491,7 +4549,7 @@ var se_MonitorContactCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4491
4549
|
return b.build();
|
|
4492
4550
|
}, "se_MonitorContactCommand");
|
|
4493
4551
|
var se_PauseContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4494
|
-
const b = (0,
|
|
4552
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4495
4553
|
const headers = {
|
|
4496
4554
|
"content-type": "application/json"
|
|
4497
4555
|
};
|
|
@@ -4508,7 +4566,7 @@ var se_PauseContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4508
4566
|
return b.build();
|
|
4509
4567
|
}, "se_PauseContactCommand");
|
|
4510
4568
|
var se_PutUserStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4511
|
-
const b = (0,
|
|
4569
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4512
4570
|
const headers = {
|
|
4513
4571
|
"content-type": "application/json"
|
|
4514
4572
|
};
|
|
@@ -4525,7 +4583,7 @@ var se_PutUserStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4525
4583
|
return b.build();
|
|
4526
4584
|
}, "se_PutUserStatusCommand");
|
|
4527
4585
|
var se_ReleasePhoneNumberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4528
|
-
const b = (0,
|
|
4586
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4529
4587
|
const headers = {};
|
|
4530
4588
|
b.bp("/phone-number/{PhoneNumberId}");
|
|
4531
4589
|
b.p("PhoneNumberId", () => input.PhoneNumberId, "{PhoneNumberId}", false);
|
|
@@ -4537,7 +4595,7 @@ var se_ReleasePhoneNumberCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4537
4595
|
return b.build();
|
|
4538
4596
|
}, "se_ReleasePhoneNumberCommand");
|
|
4539
4597
|
var se_ReplicateInstanceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4540
|
-
const b = (0,
|
|
4598
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4541
4599
|
const headers = {
|
|
4542
4600
|
"content-type": "application/json"
|
|
4543
4601
|
};
|
|
@@ -4555,7 +4613,7 @@ var se_ReplicateInstanceCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4555
4613
|
return b.build();
|
|
4556
4614
|
}, "se_ReplicateInstanceCommand");
|
|
4557
4615
|
var se_ResumeContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4558
|
-
const b = (0,
|
|
4616
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4559
4617
|
const headers = {
|
|
4560
4618
|
"content-type": "application/json"
|
|
4561
4619
|
};
|
|
@@ -4572,7 +4630,7 @@ var se_ResumeContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4572
4630
|
return b.build();
|
|
4573
4631
|
}, "se_ResumeContactCommand");
|
|
4574
4632
|
var se_ResumeContactRecordingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4575
|
-
const b = (0,
|
|
4633
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4576
4634
|
const headers = {
|
|
4577
4635
|
"content-type": "application/json"
|
|
4578
4636
|
};
|
|
@@ -4589,7 +4647,7 @@ var se_ResumeContactRecordingCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
4589
4647
|
return b.build();
|
|
4590
4648
|
}, "se_ResumeContactRecordingCommand");
|
|
4591
4649
|
var se_SearchAvailablePhoneNumbersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4592
|
-
const b = (0,
|
|
4650
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4593
4651
|
const headers = {
|
|
4594
4652
|
"content-type": "application/json"
|
|
4595
4653
|
};
|
|
@@ -4610,7 +4668,7 @@ var se_SearchAvailablePhoneNumbersCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4610
4668
|
return b.build();
|
|
4611
4669
|
}, "se_SearchAvailablePhoneNumbersCommand");
|
|
4612
4670
|
var se_SearchContactsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4613
|
-
const b = (0,
|
|
4671
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4614
4672
|
const headers = {
|
|
4615
4673
|
"content-type": "application/json"
|
|
4616
4674
|
};
|
|
@@ -4630,7 +4688,7 @@ var se_SearchContactsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4630
4688
|
return b.build();
|
|
4631
4689
|
}, "se_SearchContactsCommand");
|
|
4632
4690
|
var se_SearchHoursOfOperationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4633
|
-
const b = (0,
|
|
4691
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4634
4692
|
const headers = {
|
|
4635
4693
|
"content-type": "application/json"
|
|
4636
4694
|
};
|
|
@@ -4649,7 +4707,7 @@ var se_SearchHoursOfOperationsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
4649
4707
|
return b.build();
|
|
4650
4708
|
}, "se_SearchHoursOfOperationsCommand");
|
|
4651
4709
|
var se_SearchPredefinedAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4652
|
-
const b = (0,
|
|
4710
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4653
4711
|
const headers = {
|
|
4654
4712
|
"content-type": "application/json"
|
|
4655
4713
|
};
|
|
@@ -4667,7 +4725,7 @@ var se_SearchPredefinedAttributesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4667
4725
|
return b.build();
|
|
4668
4726
|
}, "se_SearchPredefinedAttributesCommand");
|
|
4669
4727
|
var se_SearchPromptsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4670
|
-
const b = (0,
|
|
4728
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4671
4729
|
const headers = {
|
|
4672
4730
|
"content-type": "application/json"
|
|
4673
4731
|
};
|
|
@@ -4686,7 +4744,7 @@ var se_SearchPromptsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4686
4744
|
return b.build();
|
|
4687
4745
|
}, "se_SearchPromptsCommand");
|
|
4688
4746
|
var se_SearchQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4689
|
-
const b = (0,
|
|
4747
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4690
4748
|
const headers = {
|
|
4691
4749
|
"content-type": "application/json"
|
|
4692
4750
|
};
|
|
@@ -4705,7 +4763,7 @@ var se_SearchQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4705
4763
|
return b.build();
|
|
4706
4764
|
}, "se_SearchQueuesCommand");
|
|
4707
4765
|
var se_SearchQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4708
|
-
const b = (0,
|
|
4766
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4709
4767
|
const headers = {
|
|
4710
4768
|
"content-type": "application/json"
|
|
4711
4769
|
};
|
|
@@ -4724,7 +4782,7 @@ var se_SearchQuickConnectsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4724
4782
|
return b.build();
|
|
4725
4783
|
}, "se_SearchQuickConnectsCommand");
|
|
4726
4784
|
var se_SearchResourceTagsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4727
|
-
const b = (0,
|
|
4785
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4728
4786
|
const headers = {
|
|
4729
4787
|
"content-type": "application/json"
|
|
4730
4788
|
};
|
|
@@ -4743,7 +4801,7 @@ var se_SearchResourceTagsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4743
4801
|
return b.build();
|
|
4744
4802
|
}, "se_SearchResourceTagsCommand");
|
|
4745
4803
|
var se_SearchRoutingProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4746
|
-
const b = (0,
|
|
4804
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4747
4805
|
const headers = {
|
|
4748
4806
|
"content-type": "application/json"
|
|
4749
4807
|
};
|
|
@@ -4762,7 +4820,7 @@ var se_SearchRoutingProfilesCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4762
4820
|
return b.build();
|
|
4763
4821
|
}, "se_SearchRoutingProfilesCommand");
|
|
4764
4822
|
var se_SearchSecurityProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4765
|
-
const b = (0,
|
|
4823
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4766
4824
|
const headers = {
|
|
4767
4825
|
"content-type": "application/json"
|
|
4768
4826
|
};
|
|
@@ -4781,7 +4839,7 @@ var se_SearchSecurityProfilesCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
4781
4839
|
return b.build();
|
|
4782
4840
|
}, "se_SearchSecurityProfilesCommand");
|
|
4783
4841
|
var se_SearchUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4784
|
-
const b = (0,
|
|
4842
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4785
4843
|
const headers = {
|
|
4786
4844
|
"content-type": "application/json"
|
|
4787
4845
|
};
|
|
@@ -4800,7 +4858,7 @@ var se_SearchUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4800
4858
|
return b.build();
|
|
4801
4859
|
}, "se_SearchUsersCommand");
|
|
4802
4860
|
var se_SearchVocabulariesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4803
|
-
const b = (0,
|
|
4861
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4804
4862
|
const headers = {
|
|
4805
4863
|
"content-type": "application/json"
|
|
4806
4864
|
};
|
|
@@ -4820,7 +4878,7 @@ var se_SearchVocabulariesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4820
4878
|
return b.build();
|
|
4821
4879
|
}, "se_SearchVocabulariesCommand");
|
|
4822
4880
|
var se_SendChatIntegrationEventCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4823
|
-
const b = (0,
|
|
4881
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4824
4882
|
const headers = {
|
|
4825
4883
|
"content-type": "application/json"
|
|
4826
4884
|
};
|
|
@@ -4839,7 +4897,7 @@ var se_SendChatIntegrationEventCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
4839
4897
|
return b.build();
|
|
4840
4898
|
}, "se_SendChatIntegrationEventCommand");
|
|
4841
4899
|
var se_StartChatContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4842
|
-
const b = (0,
|
|
4900
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4843
4901
|
const headers = {
|
|
4844
4902
|
"content-type": "application/json"
|
|
4845
4903
|
};
|
|
@@ -4864,7 +4922,7 @@ var se_StartChatContactCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4864
4922
|
return b.build();
|
|
4865
4923
|
}, "se_StartChatContactCommand");
|
|
4866
4924
|
var se_StartContactEvaluationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4867
|
-
const b = (0,
|
|
4925
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4868
4926
|
const headers = {
|
|
4869
4927
|
"content-type": "application/json"
|
|
4870
4928
|
};
|
|
@@ -4882,7 +4940,7 @@ var se_StartContactEvaluationCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
4882
4940
|
return b.build();
|
|
4883
4941
|
}, "se_StartContactEvaluationCommand");
|
|
4884
4942
|
var se_StartContactRecordingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4885
|
-
const b = (0,
|
|
4943
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4886
4944
|
const headers = {
|
|
4887
4945
|
"content-type": "application/json"
|
|
4888
4946
|
};
|
|
@@ -4900,7 +4958,7 @@ var se_StartContactRecordingCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4900
4958
|
return b.build();
|
|
4901
4959
|
}, "se_StartContactRecordingCommand");
|
|
4902
4960
|
var se_StartContactStreamingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4903
|
-
const b = (0,
|
|
4961
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4904
4962
|
const headers = {
|
|
4905
4963
|
"content-type": "application/json"
|
|
4906
4964
|
};
|
|
@@ -4918,7 +4976,7 @@ var se_StartContactStreamingCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4918
4976
|
return b.build();
|
|
4919
4977
|
}, "se_StartContactStreamingCommand");
|
|
4920
4978
|
var se_StartOutboundVoiceContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4921
|
-
const b = (0,
|
|
4979
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4922
4980
|
const headers = {
|
|
4923
4981
|
"content-type": "application/json"
|
|
4924
4982
|
};
|
|
@@ -4946,7 +5004,7 @@ var se_StartOutboundVoiceContactCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4946
5004
|
return b.build();
|
|
4947
5005
|
}, "se_StartOutboundVoiceContactCommand");
|
|
4948
5006
|
var se_StartTaskContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4949
|
-
const b = (0,
|
|
5007
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4950
5008
|
const headers = {
|
|
4951
5009
|
"content-type": "application/json"
|
|
4952
5010
|
};
|
|
@@ -4972,7 +5030,7 @@ var se_StartTaskContactCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4972
5030
|
return b.build();
|
|
4973
5031
|
}, "se_StartTaskContactCommand");
|
|
4974
5032
|
var se_StartWebRTCContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4975
|
-
const b = (0,
|
|
5033
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4976
5034
|
const headers = {
|
|
4977
5035
|
"content-type": "application/json"
|
|
4978
5036
|
};
|
|
@@ -4995,7 +5053,7 @@ var se_StartWebRTCContactCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4995
5053
|
return b.build();
|
|
4996
5054
|
}, "se_StartWebRTCContactCommand");
|
|
4997
5055
|
var se_StopContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4998
|
-
const b = (0,
|
|
5056
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4999
5057
|
const headers = {
|
|
5000
5058
|
"content-type": "application/json"
|
|
5001
5059
|
};
|
|
@@ -5012,7 +5070,7 @@ var se_StopContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5012
5070
|
return b.build();
|
|
5013
5071
|
}, "se_StopContactCommand");
|
|
5014
5072
|
var se_StopContactRecordingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5015
|
-
const b = (0,
|
|
5073
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5016
5074
|
const headers = {
|
|
5017
5075
|
"content-type": "application/json"
|
|
5018
5076
|
};
|
|
@@ -5029,7 +5087,7 @@ var se_StopContactRecordingCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
5029
5087
|
return b.build();
|
|
5030
5088
|
}, "se_StopContactRecordingCommand");
|
|
5031
5089
|
var se_StopContactStreamingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5032
|
-
const b = (0,
|
|
5090
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5033
5091
|
const headers = {
|
|
5034
5092
|
"content-type": "application/json"
|
|
5035
5093
|
};
|
|
@@ -5046,7 +5104,7 @@ var se_StopContactStreamingCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
5046
5104
|
return b.build();
|
|
5047
5105
|
}, "se_StopContactStreamingCommand");
|
|
5048
5106
|
var se_SubmitContactEvaluationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5049
|
-
const b = (0,
|
|
5107
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5050
5108
|
const headers = {
|
|
5051
5109
|
"content-type": "application/json"
|
|
5052
5110
|
};
|
|
@@ -5064,7 +5122,7 @@ var se_SubmitContactEvaluationCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5064
5122
|
return b.build();
|
|
5065
5123
|
}, "se_SubmitContactEvaluationCommand");
|
|
5066
5124
|
var se_SuspendContactRecordingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5067
|
-
const b = (0,
|
|
5125
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5068
5126
|
const headers = {
|
|
5069
5127
|
"content-type": "application/json"
|
|
5070
5128
|
};
|
|
@@ -5081,7 +5139,7 @@ var se_SuspendContactRecordingCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5081
5139
|
return b.build();
|
|
5082
5140
|
}, "se_SuspendContactRecordingCommand");
|
|
5083
5141
|
var se_TagContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5084
|
-
const b = (0,
|
|
5142
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5085
5143
|
const headers = {
|
|
5086
5144
|
"content-type": "application/json"
|
|
5087
5145
|
};
|
|
@@ -5098,7 +5156,7 @@ var se_TagContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5098
5156
|
return b.build();
|
|
5099
5157
|
}, "se_TagContactCommand");
|
|
5100
5158
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5101
|
-
const b = (0,
|
|
5159
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5102
5160
|
const headers = {
|
|
5103
5161
|
"content-type": "application/json"
|
|
5104
5162
|
};
|
|
@@ -5114,7 +5172,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5114
5172
|
return b.build();
|
|
5115
5173
|
}, "se_TagResourceCommand");
|
|
5116
5174
|
var se_TransferContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5117
|
-
const b = (0,
|
|
5175
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5118
5176
|
const headers = {
|
|
5119
5177
|
"content-type": "application/json"
|
|
5120
5178
|
};
|
|
@@ -5134,7 +5192,7 @@ var se_TransferContactCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
5134
5192
|
return b.build();
|
|
5135
5193
|
}, "se_TransferContactCommand");
|
|
5136
5194
|
var se_UntagContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5137
|
-
const b = (0,
|
|
5195
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5138
5196
|
const headers = {};
|
|
5139
5197
|
b.bp("/contact/tags/{InstanceId}/{ContactId}");
|
|
5140
5198
|
b.p("ContactId", () => input.ContactId, "{ContactId}", false);
|
|
@@ -5150,7 +5208,7 @@ var se_UntagContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5150
5208
|
return b.build();
|
|
5151
5209
|
}, "se_UntagContactCommand");
|
|
5152
5210
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5153
|
-
const b = (0,
|
|
5211
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5154
5212
|
const headers = {};
|
|
5155
5213
|
b.bp("/tags/{resourceArn}");
|
|
5156
5214
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -5165,7 +5223,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5165
5223
|
return b.build();
|
|
5166
5224
|
}, "se_UntagResourceCommand");
|
|
5167
5225
|
var se_UpdateAgentStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5168
|
-
const b = (0,
|
|
5226
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5169
5227
|
const headers = {
|
|
5170
5228
|
"content-type": "application/json"
|
|
5171
5229
|
};
|
|
@@ -5186,7 +5244,7 @@ var se_UpdateAgentStatusCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
5186
5244
|
return b.build();
|
|
5187
5245
|
}, "se_UpdateAgentStatusCommand");
|
|
5188
5246
|
var se_UpdateContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5189
|
-
const b = (0,
|
|
5247
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5190
5248
|
const headers = {
|
|
5191
5249
|
"content-type": "application/json"
|
|
5192
5250
|
};
|
|
@@ -5205,7 +5263,7 @@ var se_UpdateContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5205
5263
|
return b.build();
|
|
5206
5264
|
}, "se_UpdateContactCommand");
|
|
5207
5265
|
var se_UpdateContactAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5208
|
-
const b = (0,
|
|
5266
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5209
5267
|
const headers = {
|
|
5210
5268
|
"content-type": "application/json"
|
|
5211
5269
|
};
|
|
@@ -5222,7 +5280,7 @@ var se_UpdateContactAttributesCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5222
5280
|
return b.build();
|
|
5223
5281
|
}, "se_UpdateContactAttributesCommand");
|
|
5224
5282
|
var se_UpdateContactEvaluationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5225
|
-
const b = (0,
|
|
5283
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5226
5284
|
const headers = {
|
|
5227
5285
|
"content-type": "application/json"
|
|
5228
5286
|
};
|
|
@@ -5240,7 +5298,7 @@ var se_UpdateContactEvaluationCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5240
5298
|
return b.build();
|
|
5241
5299
|
}, "se_UpdateContactEvaluationCommand");
|
|
5242
5300
|
var se_UpdateContactFlowContentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5243
|
-
const b = (0,
|
|
5301
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5244
5302
|
const headers = {
|
|
5245
5303
|
"content-type": "application/json"
|
|
5246
5304
|
};
|
|
@@ -5257,7 +5315,7 @@ var se_UpdateContactFlowContentCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
5257
5315
|
return b.build();
|
|
5258
5316
|
}, "se_UpdateContactFlowContentCommand");
|
|
5259
5317
|
var se_UpdateContactFlowMetadataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5260
|
-
const b = (0,
|
|
5318
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5261
5319
|
const headers = {
|
|
5262
5320
|
"content-type": "application/json"
|
|
5263
5321
|
};
|
|
@@ -5276,7 +5334,7 @@ var se_UpdateContactFlowMetadataCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5276
5334
|
return b.build();
|
|
5277
5335
|
}, "se_UpdateContactFlowMetadataCommand");
|
|
5278
5336
|
var se_UpdateContactFlowModuleContentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5279
|
-
const b = (0,
|
|
5337
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5280
5338
|
const headers = {
|
|
5281
5339
|
"content-type": "application/json"
|
|
5282
5340
|
};
|
|
@@ -5293,7 +5351,7 @@ var se_UpdateContactFlowModuleContentCommand = /* @__PURE__ */ __name(async (inp
|
|
|
5293
5351
|
return b.build();
|
|
5294
5352
|
}, "se_UpdateContactFlowModuleContentCommand");
|
|
5295
5353
|
var se_UpdateContactFlowModuleMetadataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5296
|
-
const b = (0,
|
|
5354
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5297
5355
|
const headers = {
|
|
5298
5356
|
"content-type": "application/json"
|
|
5299
5357
|
};
|
|
@@ -5312,7 +5370,7 @@ var se_UpdateContactFlowModuleMetadataCommand = /* @__PURE__ */ __name(async (in
|
|
|
5312
5370
|
return b.build();
|
|
5313
5371
|
}, "se_UpdateContactFlowModuleMetadataCommand");
|
|
5314
5372
|
var se_UpdateContactFlowNameCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5315
|
-
const b = (0,
|
|
5373
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5316
5374
|
const headers = {
|
|
5317
5375
|
"content-type": "application/json"
|
|
5318
5376
|
};
|
|
@@ -5330,7 +5388,7 @@ var se_UpdateContactFlowNameCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5330
5388
|
return b.build();
|
|
5331
5389
|
}, "se_UpdateContactFlowNameCommand");
|
|
5332
5390
|
var se_UpdateContactRoutingDataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5333
|
-
const b = (0,
|
|
5391
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5334
5392
|
const headers = {
|
|
5335
5393
|
"content-type": "application/json"
|
|
5336
5394
|
};
|
|
@@ -5348,7 +5406,7 @@ var se_UpdateContactRoutingDataCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
5348
5406
|
return b.build();
|
|
5349
5407
|
}, "se_UpdateContactRoutingDataCommand");
|
|
5350
5408
|
var se_UpdateContactScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5351
|
-
const b = (0,
|
|
5409
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5352
5410
|
const headers = {
|
|
5353
5411
|
"content-type": "application/json"
|
|
5354
5412
|
};
|
|
@@ -5365,7 +5423,7 @@ var se_UpdateContactScheduleCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5365
5423
|
return b.build();
|
|
5366
5424
|
}, "se_UpdateContactScheduleCommand");
|
|
5367
5425
|
var se_UpdateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5368
|
-
const b = (0,
|
|
5426
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5369
5427
|
const headers = {
|
|
5370
5428
|
"content-type": "application/json"
|
|
5371
5429
|
};
|
|
@@ -5388,7 +5446,7 @@ var se_UpdateEvaluationFormCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
5388
5446
|
return b.build();
|
|
5389
5447
|
}, "se_UpdateEvaluationFormCommand");
|
|
5390
5448
|
var se_UpdateHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5391
|
-
const b = (0,
|
|
5449
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5392
5450
|
const headers = {
|
|
5393
5451
|
"content-type": "application/json"
|
|
5394
5452
|
};
|
|
@@ -5408,7 +5466,7 @@ var se_UpdateHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
5408
5466
|
return b.build();
|
|
5409
5467
|
}, "se_UpdateHoursOfOperationCommand");
|
|
5410
5468
|
var se_UpdateInstanceAttributeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5411
|
-
const b = (0,
|
|
5469
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5412
5470
|
const headers = {
|
|
5413
5471
|
"content-type": "application/json"
|
|
5414
5472
|
};
|
|
@@ -5425,7 +5483,7 @@ var se_UpdateInstanceAttributeCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5425
5483
|
return b.build();
|
|
5426
5484
|
}, "se_UpdateInstanceAttributeCommand");
|
|
5427
5485
|
var se_UpdateInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5428
|
-
const b = (0,
|
|
5486
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5429
5487
|
const headers = {
|
|
5430
5488
|
"content-type": "application/json"
|
|
5431
5489
|
};
|
|
@@ -5445,7 +5503,7 @@ var se_UpdateInstanceStorageConfigCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5445
5503
|
return b.build();
|
|
5446
5504
|
}, "se_UpdateInstanceStorageConfigCommand");
|
|
5447
5505
|
var se_UpdateParticipantRoleConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5448
|
-
const b = (0,
|
|
5506
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5449
5507
|
const headers = {
|
|
5450
5508
|
"content-type": "application/json"
|
|
5451
5509
|
};
|
|
@@ -5462,7 +5520,7 @@ var se_UpdateParticipantRoleConfigCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5462
5520
|
return b.build();
|
|
5463
5521
|
}, "se_UpdateParticipantRoleConfigCommand");
|
|
5464
5522
|
var se_UpdatePhoneNumberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5465
|
-
const b = (0,
|
|
5523
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5466
5524
|
const headers = {
|
|
5467
5525
|
"content-type": "application/json"
|
|
5468
5526
|
};
|
|
@@ -5480,7 +5538,7 @@ var se_UpdatePhoneNumberCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
5480
5538
|
return b.build();
|
|
5481
5539
|
}, "se_UpdatePhoneNumberCommand");
|
|
5482
5540
|
var se_UpdatePhoneNumberMetadataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5483
|
-
const b = (0,
|
|
5541
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5484
5542
|
const headers = {
|
|
5485
5543
|
"content-type": "application/json"
|
|
5486
5544
|
};
|
|
@@ -5497,7 +5555,7 @@ var se_UpdatePhoneNumberMetadataCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5497
5555
|
return b.build();
|
|
5498
5556
|
}, "se_UpdatePhoneNumberMetadataCommand");
|
|
5499
5557
|
var se_UpdatePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5500
|
-
const b = (0,
|
|
5558
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5501
5559
|
const headers = {
|
|
5502
5560
|
"content-type": "application/json"
|
|
5503
5561
|
};
|
|
@@ -5514,7 +5572,7 @@ var se_UpdatePredefinedAttributeCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5514
5572
|
return b.build();
|
|
5515
5573
|
}, "se_UpdatePredefinedAttributeCommand");
|
|
5516
5574
|
var se_UpdatePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5517
|
-
const b = (0,
|
|
5575
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5518
5576
|
const headers = {
|
|
5519
5577
|
"content-type": "application/json"
|
|
5520
5578
|
};
|
|
@@ -5533,7 +5591,7 @@ var se_UpdatePromptCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5533
5591
|
return b.build();
|
|
5534
5592
|
}, "se_UpdatePromptCommand");
|
|
5535
5593
|
var se_UpdateQueueHoursOfOperationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5536
|
-
const b = (0,
|
|
5594
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5537
5595
|
const headers = {
|
|
5538
5596
|
"content-type": "application/json"
|
|
5539
5597
|
};
|
|
@@ -5550,7 +5608,7 @@ var se_UpdateQueueHoursOfOperationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5550
5608
|
return b.build();
|
|
5551
5609
|
}, "se_UpdateQueueHoursOfOperationCommand");
|
|
5552
5610
|
var se_UpdateQueueMaxContactsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5553
|
-
const b = (0,
|
|
5611
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5554
5612
|
const headers = {
|
|
5555
5613
|
"content-type": "application/json"
|
|
5556
5614
|
};
|
|
@@ -5567,7 +5625,7 @@ var se_UpdateQueueMaxContactsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
5567
5625
|
return b.build();
|
|
5568
5626
|
}, "se_UpdateQueueMaxContactsCommand");
|
|
5569
5627
|
var se_UpdateQueueNameCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5570
|
-
const b = (0,
|
|
5628
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5571
5629
|
const headers = {
|
|
5572
5630
|
"content-type": "application/json"
|
|
5573
5631
|
};
|
|
@@ -5585,7 +5643,7 @@ var se_UpdateQueueNameCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
5585
5643
|
return b.build();
|
|
5586
5644
|
}, "se_UpdateQueueNameCommand");
|
|
5587
5645
|
var se_UpdateQueueOutboundCallerConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5588
|
-
const b = (0,
|
|
5646
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5589
5647
|
const headers = {
|
|
5590
5648
|
"content-type": "application/json"
|
|
5591
5649
|
};
|
|
@@ -5602,7 +5660,7 @@ var se_UpdateQueueOutboundCallerConfigCommand = /* @__PURE__ */ __name(async (in
|
|
|
5602
5660
|
return b.build();
|
|
5603
5661
|
}, "se_UpdateQueueOutboundCallerConfigCommand");
|
|
5604
5662
|
var se_UpdateQueueStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5605
|
-
const b = (0,
|
|
5663
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5606
5664
|
const headers = {
|
|
5607
5665
|
"content-type": "application/json"
|
|
5608
5666
|
};
|
|
@@ -5619,7 +5677,7 @@ var se_UpdateQueueStatusCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
5619
5677
|
return b.build();
|
|
5620
5678
|
}, "se_UpdateQueueStatusCommand");
|
|
5621
5679
|
var se_UpdateQuickConnectConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5622
|
-
const b = (0,
|
|
5680
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5623
5681
|
const headers = {
|
|
5624
5682
|
"content-type": "application/json"
|
|
5625
5683
|
};
|
|
@@ -5636,7 +5694,7 @@ var se_UpdateQuickConnectConfigCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
5636
5694
|
return b.build();
|
|
5637
5695
|
}, "se_UpdateQuickConnectConfigCommand");
|
|
5638
5696
|
var se_UpdateQuickConnectNameCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5639
|
-
const b = (0,
|
|
5697
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5640
5698
|
const headers = {
|
|
5641
5699
|
"content-type": "application/json"
|
|
5642
5700
|
};
|
|
@@ -5654,7 +5712,7 @@ var se_UpdateQuickConnectNameCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
5654
5712
|
return b.build();
|
|
5655
5713
|
}, "se_UpdateQuickConnectNameCommand");
|
|
5656
5714
|
var se_UpdateRoutingProfileAgentAvailabilityTimerCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5657
|
-
const b = (0,
|
|
5715
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5658
5716
|
const headers = {
|
|
5659
5717
|
"content-type": "application/json"
|
|
5660
5718
|
};
|
|
@@ -5671,7 +5729,7 @@ var se_UpdateRoutingProfileAgentAvailabilityTimerCommand = /* @__PURE__ */ __nam
|
|
|
5671
5729
|
return b.build();
|
|
5672
5730
|
}, "se_UpdateRoutingProfileAgentAvailabilityTimerCommand");
|
|
5673
5731
|
var se_UpdateRoutingProfileConcurrencyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5674
|
-
const b = (0,
|
|
5732
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5675
5733
|
const headers = {
|
|
5676
5734
|
"content-type": "application/json"
|
|
5677
5735
|
};
|
|
@@ -5688,7 +5746,7 @@ var se_UpdateRoutingProfileConcurrencyCommand = /* @__PURE__ */ __name(async (in
|
|
|
5688
5746
|
return b.build();
|
|
5689
5747
|
}, "se_UpdateRoutingProfileConcurrencyCommand");
|
|
5690
5748
|
var se_UpdateRoutingProfileDefaultOutboundQueueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5691
|
-
const b = (0,
|
|
5749
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5692
5750
|
const headers = {
|
|
5693
5751
|
"content-type": "application/json"
|
|
5694
5752
|
};
|
|
@@ -5705,7 +5763,7 @@ var se_UpdateRoutingProfileDefaultOutboundQueueCommand = /* @__PURE__ */ __name(
|
|
|
5705
5763
|
return b.build();
|
|
5706
5764
|
}, "se_UpdateRoutingProfileDefaultOutboundQueueCommand");
|
|
5707
5765
|
var se_UpdateRoutingProfileNameCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5708
|
-
const b = (0,
|
|
5766
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5709
5767
|
const headers = {
|
|
5710
5768
|
"content-type": "application/json"
|
|
5711
5769
|
};
|
|
@@ -5723,7 +5781,7 @@ var se_UpdateRoutingProfileNameCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
5723
5781
|
return b.build();
|
|
5724
5782
|
}, "se_UpdateRoutingProfileNameCommand");
|
|
5725
5783
|
var se_UpdateRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5726
|
-
const b = (0,
|
|
5784
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5727
5785
|
const headers = {
|
|
5728
5786
|
"content-type": "application/json"
|
|
5729
5787
|
};
|
|
@@ -5740,7 +5798,7 @@ var se_UpdateRoutingProfileQueuesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5740
5798
|
return b.build();
|
|
5741
5799
|
}, "se_UpdateRoutingProfileQueuesCommand");
|
|
5742
5800
|
var se_UpdateRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5743
|
-
const b = (0,
|
|
5801
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5744
5802
|
const headers = {
|
|
5745
5803
|
"content-type": "application/json"
|
|
5746
5804
|
};
|
|
@@ -5760,7 +5818,7 @@ var se_UpdateRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5760
5818
|
return b.build();
|
|
5761
5819
|
}, "se_UpdateRuleCommand");
|
|
5762
5820
|
var se_UpdateSecurityProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5763
|
-
const b = (0,
|
|
5821
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5764
5822
|
const headers = {
|
|
5765
5823
|
"content-type": "application/json"
|
|
5766
5824
|
};
|
|
@@ -5781,7 +5839,7 @@ var se_UpdateSecurityProfileCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5781
5839
|
return b.build();
|
|
5782
5840
|
}, "se_UpdateSecurityProfileCommand");
|
|
5783
5841
|
var se_UpdateTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5784
|
-
const b = (0,
|
|
5842
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5785
5843
|
const headers = {
|
|
5786
5844
|
"content-type": "application/json"
|
|
5787
5845
|
};
|
|
@@ -5804,7 +5862,7 @@ var se_UpdateTaskTemplateCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
5804
5862
|
return b.build();
|
|
5805
5863
|
}, "se_UpdateTaskTemplateCommand");
|
|
5806
5864
|
var se_UpdateTrafficDistributionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5807
|
-
const b = (0,
|
|
5865
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5808
5866
|
const headers = {
|
|
5809
5867
|
"content-type": "application/json"
|
|
5810
5868
|
};
|
|
@@ -5822,7 +5880,7 @@ var se_UpdateTrafficDistributionCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5822
5880
|
return b.build();
|
|
5823
5881
|
}, "se_UpdateTrafficDistributionCommand");
|
|
5824
5882
|
var se_UpdateUserHierarchyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5825
|
-
const b = (0,
|
|
5883
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5826
5884
|
const headers = {
|
|
5827
5885
|
"content-type": "application/json"
|
|
5828
5886
|
};
|
|
@@ -5839,7 +5897,7 @@ var se_UpdateUserHierarchyCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
5839
5897
|
return b.build();
|
|
5840
5898
|
}, "se_UpdateUserHierarchyCommand");
|
|
5841
5899
|
var se_UpdateUserHierarchyGroupNameCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5842
|
-
const b = (0,
|
|
5900
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5843
5901
|
const headers = {
|
|
5844
5902
|
"content-type": "application/json"
|
|
5845
5903
|
};
|
|
@@ -5856,7 +5914,7 @@ var se_UpdateUserHierarchyGroupNameCommand = /* @__PURE__ */ __name(async (input
|
|
|
5856
5914
|
return b.build();
|
|
5857
5915
|
}, "se_UpdateUserHierarchyGroupNameCommand");
|
|
5858
5916
|
var se_UpdateUserHierarchyStructureCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5859
|
-
const b = (0,
|
|
5917
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5860
5918
|
const headers = {
|
|
5861
5919
|
"content-type": "application/json"
|
|
5862
5920
|
};
|
|
@@ -5872,7 +5930,7 @@ var se_UpdateUserHierarchyStructureCommand = /* @__PURE__ */ __name(async (input
|
|
|
5872
5930
|
return b.build();
|
|
5873
5931
|
}, "se_UpdateUserHierarchyStructureCommand");
|
|
5874
5932
|
var se_UpdateUserIdentityInfoCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5875
|
-
const b = (0,
|
|
5933
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5876
5934
|
const headers = {
|
|
5877
5935
|
"content-type": "application/json"
|
|
5878
5936
|
};
|
|
@@ -5889,7 +5947,7 @@ var se_UpdateUserIdentityInfoCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
5889
5947
|
return b.build();
|
|
5890
5948
|
}, "se_UpdateUserIdentityInfoCommand");
|
|
5891
5949
|
var se_UpdateUserPhoneConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5892
|
-
const b = (0,
|
|
5950
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5893
5951
|
const headers = {
|
|
5894
5952
|
"content-type": "application/json"
|
|
5895
5953
|
};
|
|
@@ -5906,7 +5964,7 @@ var se_UpdateUserPhoneConfigCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5906
5964
|
return b.build();
|
|
5907
5965
|
}, "se_UpdateUserPhoneConfigCommand");
|
|
5908
5966
|
var se_UpdateUserProficienciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5909
|
-
const b = (0,
|
|
5967
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5910
5968
|
const headers = {
|
|
5911
5969
|
"content-type": "application/json"
|
|
5912
5970
|
};
|
|
@@ -5923,7 +5981,7 @@ var se_UpdateUserProficienciesCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5923
5981
|
return b.build();
|
|
5924
5982
|
}, "se_UpdateUserProficienciesCommand");
|
|
5925
5983
|
var se_UpdateUserRoutingProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5926
|
-
const b = (0,
|
|
5984
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5927
5985
|
const headers = {
|
|
5928
5986
|
"content-type": "application/json"
|
|
5929
5987
|
};
|
|
@@ -5940,7 +5998,7 @@ var se_UpdateUserRoutingProfileCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
5940
5998
|
return b.build();
|
|
5941
5999
|
}, "se_UpdateUserRoutingProfileCommand");
|
|
5942
6000
|
var se_UpdateUserSecurityProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5943
|
-
const b = (0,
|
|
6001
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5944
6002
|
const headers = {
|
|
5945
6003
|
"content-type": "application/json"
|
|
5946
6004
|
};
|
|
@@ -5957,7 +6015,7 @@ var se_UpdateUserSecurityProfilesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5957
6015
|
return b.build();
|
|
5958
6016
|
}, "se_UpdateUserSecurityProfilesCommand");
|
|
5959
6017
|
var se_UpdateViewContentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5960
|
-
const b = (0,
|
|
6018
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5961
6019
|
const headers = {
|
|
5962
6020
|
"content-type": "application/json"
|
|
5963
6021
|
};
|
|
@@ -5975,7 +6033,7 @@ var se_UpdateViewContentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
5975
6033
|
return b.build();
|
|
5976
6034
|
}, "se_UpdateViewContentCommand");
|
|
5977
6035
|
var se_UpdateViewMetadataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5978
|
-
const b = (0,
|
|
6036
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5979
6037
|
const headers = {
|
|
5980
6038
|
"content-type": "application/json"
|
|
5981
6039
|
};
|
|
@@ -10027,8 +10085,8 @@ var de_EvaluationAnswerData = /* @__PURE__ */ __name((output, context) => {
|
|
|
10027
10085
|
}, "de_EvaluationAnswerData");
|
|
10028
10086
|
var de_EvaluationAnswerOutput = /* @__PURE__ */ __name((output, context) => {
|
|
10029
10087
|
return (0, import_smithy_client.take)(output, {
|
|
10030
|
-
SystemSuggestedValue: (_) => de_EvaluationAnswerData((0,
|
|
10031
|
-
Value: (_) => de_EvaluationAnswerData((0,
|
|
10088
|
+
SystemSuggestedValue: (_) => de_EvaluationAnswerData((0, import_core2.awsExpectUnion)(_), context),
|
|
10089
|
+
Value: (_) => de_EvaluationAnswerData((0, import_core2.awsExpectUnion)(_), context)
|
|
10032
10090
|
});
|
|
10033
10091
|
}, "de_EvaluationAnswerOutput");
|
|
10034
10092
|
var de_EvaluationAnswersOutputMap = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10084,7 +10142,7 @@ var de_EvaluationFormItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
10084
10142
|
}, "de_EvaluationFormItem");
|
|
10085
10143
|
var de_EvaluationFormItemsList = /* @__PURE__ */ __name((output, context) => {
|
|
10086
10144
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
10087
|
-
return de_EvaluationFormItem((0,
|
|
10145
|
+
return de_EvaluationFormItem((0, import_core2.awsExpectUnion)(entry), context);
|
|
10088
10146
|
});
|
|
10089
10147
|
return retVal;
|
|
10090
10148
|
}, "de_EvaluationFormItemsList");
|
|
@@ -10093,7 +10151,7 @@ var de_EvaluationFormQuestion = /* @__PURE__ */ __name((output, context) => {
|
|
|
10093
10151
|
Instructions: import_smithy_client.expectString,
|
|
10094
10152
|
NotApplicableEnabled: import_smithy_client.expectBoolean,
|
|
10095
10153
|
QuestionType: import_smithy_client.expectString,
|
|
10096
|
-
QuestionTypeProperties: (_) => (0, import_smithy_client._json)((0,
|
|
10154
|
+
QuestionTypeProperties: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
10097
10155
|
RefId: import_smithy_client.expectString,
|
|
10098
10156
|
Title: import_smithy_client.expectString,
|
|
10099
10157
|
Weight: import_smithy_client.limitedParseDouble
|
|
@@ -10411,7 +10469,7 @@ var de_PredefinedAttribute = /* @__PURE__ */ __name((output, context) => {
|
|
|
10411
10469
|
LastModifiedRegion: import_smithy_client.expectString,
|
|
10412
10470
|
LastModifiedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10413
10471
|
Name: import_smithy_client.expectString,
|
|
10414
|
-
Values: (_) => (0, import_smithy_client._json)((0,
|
|
10472
|
+
Values: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_))
|
|
10415
10473
|
});
|
|
10416
10474
|
}, "de_PredefinedAttribute");
|
|
10417
10475
|
var de_PredefinedAttributeSearchSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10577,7 +10635,7 @@ var de_RealTimeContactAnalysisSegmentAttachments = /* @__PURE__ */ __name((outpu
|
|
|
10577
10635
|
Id: import_smithy_client.expectString,
|
|
10578
10636
|
ParticipantId: import_smithy_client.expectString,
|
|
10579
10637
|
ParticipantRole: import_smithy_client.expectString,
|
|
10580
|
-
Time: (_) => de_RealTimeContactAnalysisTimeData((0,
|
|
10638
|
+
Time: (_) => de_RealTimeContactAnalysisTimeData((0, import_core2.awsExpectUnion)(_), context)
|
|
10581
10639
|
});
|
|
10582
10640
|
}, "de_RealTimeContactAnalysisSegmentAttachments");
|
|
10583
10641
|
var de_RealTimeContactAnalysisSegmentEvent = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10587,12 +10645,12 @@ var de_RealTimeContactAnalysisSegmentEvent = /* @__PURE__ */ __name((output, con
|
|
|
10587
10645
|
Id: import_smithy_client.expectString,
|
|
10588
10646
|
ParticipantId: import_smithy_client.expectString,
|
|
10589
10647
|
ParticipantRole: import_smithy_client.expectString,
|
|
10590
|
-
Time: (_) => de_RealTimeContactAnalysisTimeData((0,
|
|
10648
|
+
Time: (_) => de_RealTimeContactAnalysisTimeData((0, import_core2.awsExpectUnion)(_), context)
|
|
10591
10649
|
});
|
|
10592
10650
|
}, "de_RealTimeContactAnalysisSegmentEvent");
|
|
10593
10651
|
var de_RealtimeContactAnalysisSegments = /* @__PURE__ */ __name((output, context) => {
|
|
10594
10652
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
10595
|
-
return de_RealtimeContactAnalysisSegment((0,
|
|
10653
|
+
return de_RealtimeContactAnalysisSegment((0, import_core2.awsExpectUnion)(entry), context);
|
|
10596
10654
|
});
|
|
10597
10655
|
return retVal;
|
|
10598
10656
|
}, "de_RealtimeContactAnalysisSegments");
|
|
@@ -10606,7 +10664,7 @@ var de_RealTimeContactAnalysisSegmentTranscript = /* @__PURE__ */ __name((output
|
|
|
10606
10664
|
ParticipantRole: import_smithy_client.expectString,
|
|
10607
10665
|
Redaction: import_smithy_client._json,
|
|
10608
10666
|
Sentiment: import_smithy_client.expectString,
|
|
10609
|
-
Time: (_) => de_RealTimeContactAnalysisTimeData((0,
|
|
10667
|
+
Time: (_) => de_RealTimeContactAnalysisTimeData((0, import_core2.awsExpectUnion)(_), context)
|
|
10610
10668
|
});
|
|
10611
10669
|
}, "de_RealTimeContactAnalysisSegmentTranscript");
|
|
10612
10670
|
var de_RealTimeContactAnalysisTimeData = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -15385,236 +15443,236 @@ var Connect = _Connect;
|
|
|
15385
15443
|
(0, import_smithy_client.createAggregatedClient)(commands, Connect);
|
|
15386
15444
|
|
|
15387
15445
|
// src/pagination/GetCurrentMetricDataPaginator.ts
|
|
15388
|
-
|
|
15389
|
-
var paginateGetCurrentMetricData = (0,
|
|
15446
|
+
|
|
15447
|
+
var paginateGetCurrentMetricData = (0, import_core.createPaginator)(ConnectClient, GetCurrentMetricDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
15390
15448
|
|
|
15391
15449
|
// src/pagination/GetCurrentUserDataPaginator.ts
|
|
15392
|
-
|
|
15393
|
-
var paginateGetCurrentUserData = (0,
|
|
15450
|
+
|
|
15451
|
+
var paginateGetCurrentUserData = (0, import_core.createPaginator)(ConnectClient, GetCurrentUserDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
15394
15452
|
|
|
15395
15453
|
// src/pagination/GetMetricDataPaginator.ts
|
|
15396
|
-
|
|
15397
|
-
var paginateGetMetricData = (0,
|
|
15454
|
+
|
|
15455
|
+
var paginateGetMetricData = (0, import_core.createPaginator)(ConnectClient, GetMetricDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
15398
15456
|
|
|
15399
15457
|
// src/pagination/GetMetricDataV2Paginator.ts
|
|
15400
|
-
|
|
15401
|
-
var paginateGetMetricDataV2 = (0,
|
|
15458
|
+
|
|
15459
|
+
var paginateGetMetricDataV2 = (0, import_core.createPaginator)(ConnectClient, GetMetricDataV2Command, "NextToken", "NextToken", "MaxResults");
|
|
15402
15460
|
|
|
15403
15461
|
// src/pagination/ListAgentStatusesPaginator.ts
|
|
15404
|
-
|
|
15405
|
-
var paginateListAgentStatuses = (0,
|
|
15462
|
+
|
|
15463
|
+
var paginateListAgentStatuses = (0, import_core.createPaginator)(ConnectClient, ListAgentStatusesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15406
15464
|
|
|
15407
15465
|
// src/pagination/ListApprovedOriginsPaginator.ts
|
|
15408
|
-
|
|
15409
|
-
var paginateListApprovedOrigins = (0,
|
|
15466
|
+
|
|
15467
|
+
var paginateListApprovedOrigins = (0, import_core.createPaginator)(ConnectClient, ListApprovedOriginsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15410
15468
|
|
|
15411
15469
|
// src/pagination/ListBotsPaginator.ts
|
|
15412
|
-
|
|
15413
|
-
var paginateListBots = (0,
|
|
15470
|
+
|
|
15471
|
+
var paginateListBots = (0, import_core.createPaginator)(ConnectClient, ListBotsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15414
15472
|
|
|
15415
15473
|
// src/pagination/ListContactEvaluationsPaginator.ts
|
|
15416
|
-
|
|
15417
|
-
var paginateListContactEvaluations = (0,
|
|
15474
|
+
|
|
15475
|
+
var paginateListContactEvaluations = (0, import_core.createPaginator)(ConnectClient, ListContactEvaluationsCommand, "NextToken", "NextToken", "");
|
|
15418
15476
|
|
|
15419
15477
|
// src/pagination/ListContactFlowModulesPaginator.ts
|
|
15420
|
-
|
|
15421
|
-
var paginateListContactFlowModules = (0,
|
|
15478
|
+
|
|
15479
|
+
var paginateListContactFlowModules = (0, import_core.createPaginator)(ConnectClient, ListContactFlowModulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15422
15480
|
|
|
15423
15481
|
// src/pagination/ListContactFlowsPaginator.ts
|
|
15424
|
-
|
|
15425
|
-
var paginateListContactFlows = (0,
|
|
15482
|
+
|
|
15483
|
+
var paginateListContactFlows = (0, import_core.createPaginator)(ConnectClient, ListContactFlowsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15426
15484
|
|
|
15427
15485
|
// src/pagination/ListContactReferencesPaginator.ts
|
|
15428
|
-
|
|
15429
|
-
var paginateListContactReferences = (0,
|
|
15486
|
+
|
|
15487
|
+
var paginateListContactReferences = (0, import_core.createPaginator)(ConnectClient, ListContactReferencesCommand, "NextToken", "NextToken", "");
|
|
15430
15488
|
|
|
15431
15489
|
// src/pagination/ListDefaultVocabulariesPaginator.ts
|
|
15432
|
-
|
|
15433
|
-
var paginateListDefaultVocabularies = (0,
|
|
15490
|
+
|
|
15491
|
+
var paginateListDefaultVocabularies = (0, import_core.createPaginator)(ConnectClient, ListDefaultVocabulariesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15434
15492
|
|
|
15435
15493
|
// src/pagination/ListEvaluationFormVersionsPaginator.ts
|
|
15436
|
-
|
|
15437
|
-
var paginateListEvaluationFormVersions = (0,
|
|
15494
|
+
|
|
15495
|
+
var paginateListEvaluationFormVersions = (0, import_core.createPaginator)(ConnectClient, ListEvaluationFormVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15438
15496
|
|
|
15439
15497
|
// src/pagination/ListEvaluationFormsPaginator.ts
|
|
15440
|
-
|
|
15441
|
-
var paginateListEvaluationForms = (0,
|
|
15498
|
+
|
|
15499
|
+
var paginateListEvaluationForms = (0, import_core.createPaginator)(ConnectClient, ListEvaluationFormsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15442
15500
|
|
|
15443
15501
|
// src/pagination/ListFlowAssociationsPaginator.ts
|
|
15444
|
-
|
|
15445
|
-
var paginateListFlowAssociations = (0,
|
|
15502
|
+
|
|
15503
|
+
var paginateListFlowAssociations = (0, import_core.createPaginator)(ConnectClient, ListFlowAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15446
15504
|
|
|
15447
15505
|
// src/pagination/ListHoursOfOperationsPaginator.ts
|
|
15448
|
-
|
|
15449
|
-
var paginateListHoursOfOperations = (0,
|
|
15506
|
+
|
|
15507
|
+
var paginateListHoursOfOperations = (0, import_core.createPaginator)(ConnectClient, ListHoursOfOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15450
15508
|
|
|
15451
15509
|
// src/pagination/ListInstanceAttributesPaginator.ts
|
|
15452
|
-
|
|
15453
|
-
var paginateListInstanceAttributes = (0,
|
|
15510
|
+
|
|
15511
|
+
var paginateListInstanceAttributes = (0, import_core.createPaginator)(ConnectClient, ListInstanceAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15454
15512
|
|
|
15455
15513
|
// src/pagination/ListInstanceStorageConfigsPaginator.ts
|
|
15456
|
-
|
|
15457
|
-
var paginateListInstanceStorageConfigs = (0,
|
|
15514
|
+
|
|
15515
|
+
var paginateListInstanceStorageConfigs = (0, import_core.createPaginator)(ConnectClient, ListInstanceStorageConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15458
15516
|
|
|
15459
15517
|
// src/pagination/ListInstancesPaginator.ts
|
|
15460
|
-
|
|
15461
|
-
var paginateListInstances = (0,
|
|
15518
|
+
|
|
15519
|
+
var paginateListInstances = (0, import_core.createPaginator)(ConnectClient, ListInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15462
15520
|
|
|
15463
15521
|
// src/pagination/ListIntegrationAssociationsPaginator.ts
|
|
15464
|
-
|
|
15465
|
-
var paginateListIntegrationAssociations = (0,
|
|
15522
|
+
|
|
15523
|
+
var paginateListIntegrationAssociations = (0, import_core.createPaginator)(ConnectClient, ListIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15466
15524
|
|
|
15467
15525
|
// src/pagination/ListLambdaFunctionsPaginator.ts
|
|
15468
|
-
|
|
15469
|
-
var paginateListLambdaFunctions = (0,
|
|
15526
|
+
|
|
15527
|
+
var paginateListLambdaFunctions = (0, import_core.createPaginator)(ConnectClient, ListLambdaFunctionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15470
15528
|
|
|
15471
15529
|
// src/pagination/ListLexBotsPaginator.ts
|
|
15472
|
-
|
|
15473
|
-
var paginateListLexBots = (0,
|
|
15530
|
+
|
|
15531
|
+
var paginateListLexBots = (0, import_core.createPaginator)(ConnectClient, ListLexBotsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15474
15532
|
|
|
15475
15533
|
// src/pagination/ListPhoneNumbersPaginator.ts
|
|
15476
|
-
|
|
15477
|
-
var paginateListPhoneNumbers = (0,
|
|
15534
|
+
|
|
15535
|
+
var paginateListPhoneNumbers = (0, import_core.createPaginator)(ConnectClient, ListPhoneNumbersCommand, "NextToken", "NextToken", "MaxResults");
|
|
15478
15536
|
|
|
15479
15537
|
// src/pagination/ListPhoneNumbersV2Paginator.ts
|
|
15480
|
-
|
|
15481
|
-
var paginateListPhoneNumbersV2 = (0,
|
|
15538
|
+
|
|
15539
|
+
var paginateListPhoneNumbersV2 = (0, import_core.createPaginator)(ConnectClient, ListPhoneNumbersV2Command, "NextToken", "NextToken", "MaxResults");
|
|
15482
15540
|
|
|
15483
15541
|
// src/pagination/ListPredefinedAttributesPaginator.ts
|
|
15484
|
-
|
|
15485
|
-
var paginateListPredefinedAttributes = (0,
|
|
15542
|
+
|
|
15543
|
+
var paginateListPredefinedAttributes = (0, import_core.createPaginator)(ConnectClient, ListPredefinedAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15486
15544
|
|
|
15487
15545
|
// src/pagination/ListPromptsPaginator.ts
|
|
15488
|
-
|
|
15489
|
-
var paginateListPrompts = (0,
|
|
15546
|
+
|
|
15547
|
+
var paginateListPrompts = (0, import_core.createPaginator)(ConnectClient, ListPromptsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15490
15548
|
|
|
15491
15549
|
// src/pagination/ListQueueQuickConnectsPaginator.ts
|
|
15492
|
-
|
|
15493
|
-
var paginateListQueueQuickConnects = (0,
|
|
15550
|
+
|
|
15551
|
+
var paginateListQueueQuickConnects = (0, import_core.createPaginator)(ConnectClient, ListQueueQuickConnectsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15494
15552
|
|
|
15495
15553
|
// src/pagination/ListQueuesPaginator.ts
|
|
15496
|
-
|
|
15497
|
-
var paginateListQueues = (0,
|
|
15554
|
+
|
|
15555
|
+
var paginateListQueues = (0, import_core.createPaginator)(ConnectClient, ListQueuesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15498
15556
|
|
|
15499
15557
|
// src/pagination/ListQuickConnectsPaginator.ts
|
|
15500
|
-
|
|
15501
|
-
var paginateListQuickConnects = (0,
|
|
15558
|
+
|
|
15559
|
+
var paginateListQuickConnects = (0, import_core.createPaginator)(ConnectClient, ListQuickConnectsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15502
15560
|
|
|
15503
15561
|
// src/pagination/ListRealtimeContactAnalysisSegmentsV2Paginator.ts
|
|
15504
|
-
|
|
15505
|
-
var paginateListRealtimeContactAnalysisSegmentsV2 = (0,
|
|
15562
|
+
|
|
15563
|
+
var paginateListRealtimeContactAnalysisSegmentsV2 = (0, import_core.createPaginator)(ConnectClient, ListRealtimeContactAnalysisSegmentsV2Command, "NextToken", "NextToken", "MaxResults");
|
|
15506
15564
|
|
|
15507
15565
|
// src/pagination/ListRoutingProfileQueuesPaginator.ts
|
|
15508
|
-
|
|
15509
|
-
var paginateListRoutingProfileQueues = (0,
|
|
15566
|
+
|
|
15567
|
+
var paginateListRoutingProfileQueues = (0, import_core.createPaginator)(ConnectClient, ListRoutingProfileQueuesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15510
15568
|
|
|
15511
15569
|
// src/pagination/ListRoutingProfilesPaginator.ts
|
|
15512
|
-
|
|
15513
|
-
var paginateListRoutingProfiles = (0,
|
|
15570
|
+
|
|
15571
|
+
var paginateListRoutingProfiles = (0, import_core.createPaginator)(ConnectClient, ListRoutingProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15514
15572
|
|
|
15515
15573
|
// src/pagination/ListRulesPaginator.ts
|
|
15516
|
-
|
|
15517
|
-
var paginateListRules = (0,
|
|
15574
|
+
|
|
15575
|
+
var paginateListRules = (0, import_core.createPaginator)(ConnectClient, ListRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15518
15576
|
|
|
15519
15577
|
// src/pagination/ListSecurityKeysPaginator.ts
|
|
15520
|
-
|
|
15521
|
-
var paginateListSecurityKeys = (0,
|
|
15578
|
+
|
|
15579
|
+
var paginateListSecurityKeys = (0, import_core.createPaginator)(ConnectClient, ListSecurityKeysCommand, "NextToken", "NextToken", "MaxResults");
|
|
15522
15580
|
|
|
15523
15581
|
// src/pagination/ListSecurityProfileApplicationsPaginator.ts
|
|
15524
|
-
|
|
15525
|
-
var paginateListSecurityProfileApplications = (0,
|
|
15582
|
+
|
|
15583
|
+
var paginateListSecurityProfileApplications = (0, import_core.createPaginator)(ConnectClient, ListSecurityProfileApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15526
15584
|
|
|
15527
15585
|
// src/pagination/ListSecurityProfilePermissionsPaginator.ts
|
|
15528
|
-
|
|
15529
|
-
var paginateListSecurityProfilePermissions = (0,
|
|
15586
|
+
|
|
15587
|
+
var paginateListSecurityProfilePermissions = (0, import_core.createPaginator)(ConnectClient, ListSecurityProfilePermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15530
15588
|
|
|
15531
15589
|
// src/pagination/ListSecurityProfilesPaginator.ts
|
|
15532
|
-
|
|
15533
|
-
var paginateListSecurityProfiles = (0,
|
|
15590
|
+
|
|
15591
|
+
var paginateListSecurityProfiles = (0, import_core.createPaginator)(ConnectClient, ListSecurityProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15534
15592
|
|
|
15535
15593
|
// src/pagination/ListTaskTemplatesPaginator.ts
|
|
15536
|
-
|
|
15537
|
-
var paginateListTaskTemplates = (0,
|
|
15594
|
+
|
|
15595
|
+
var paginateListTaskTemplates = (0, import_core.createPaginator)(ConnectClient, ListTaskTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15538
15596
|
|
|
15539
15597
|
// src/pagination/ListTrafficDistributionGroupUsersPaginator.ts
|
|
15540
|
-
|
|
15541
|
-
var paginateListTrafficDistributionGroupUsers = (0,
|
|
15598
|
+
|
|
15599
|
+
var paginateListTrafficDistributionGroupUsers = (0, import_core.createPaginator)(ConnectClient, ListTrafficDistributionGroupUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
15542
15600
|
|
|
15543
15601
|
// src/pagination/ListTrafficDistributionGroupsPaginator.ts
|
|
15544
|
-
|
|
15545
|
-
var paginateListTrafficDistributionGroups = (0,
|
|
15602
|
+
|
|
15603
|
+
var paginateListTrafficDistributionGroups = (0, import_core.createPaginator)(ConnectClient, ListTrafficDistributionGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15546
15604
|
|
|
15547
15605
|
// src/pagination/ListUseCasesPaginator.ts
|
|
15548
|
-
|
|
15549
|
-
var paginateListUseCases = (0,
|
|
15606
|
+
|
|
15607
|
+
var paginateListUseCases = (0, import_core.createPaginator)(ConnectClient, ListUseCasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15550
15608
|
|
|
15551
15609
|
// src/pagination/ListUserHierarchyGroupsPaginator.ts
|
|
15552
|
-
|
|
15553
|
-
var paginateListUserHierarchyGroups = (0,
|
|
15610
|
+
|
|
15611
|
+
var paginateListUserHierarchyGroups = (0, import_core.createPaginator)(ConnectClient, ListUserHierarchyGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15554
15612
|
|
|
15555
15613
|
// src/pagination/ListUserProficienciesPaginator.ts
|
|
15556
|
-
|
|
15557
|
-
var paginateListUserProficiencies = (0,
|
|
15614
|
+
|
|
15615
|
+
var paginateListUserProficiencies = (0, import_core.createPaginator)(ConnectClient, ListUserProficienciesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15558
15616
|
|
|
15559
15617
|
// src/pagination/ListUsersPaginator.ts
|
|
15560
|
-
|
|
15561
|
-
var paginateListUsers = (0,
|
|
15618
|
+
|
|
15619
|
+
var paginateListUsers = (0, import_core.createPaginator)(ConnectClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
15562
15620
|
|
|
15563
15621
|
// src/pagination/ListViewVersionsPaginator.ts
|
|
15564
|
-
|
|
15565
|
-
var paginateListViewVersions = (0,
|
|
15622
|
+
|
|
15623
|
+
var paginateListViewVersions = (0, import_core.createPaginator)(ConnectClient, ListViewVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15566
15624
|
|
|
15567
15625
|
// src/pagination/ListViewsPaginator.ts
|
|
15568
|
-
|
|
15569
|
-
var paginateListViews = (0,
|
|
15626
|
+
|
|
15627
|
+
var paginateListViews = (0, import_core.createPaginator)(ConnectClient, ListViewsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15570
15628
|
|
|
15571
15629
|
// src/pagination/SearchAvailablePhoneNumbersPaginator.ts
|
|
15572
|
-
|
|
15573
|
-
var paginateSearchAvailablePhoneNumbers = (0,
|
|
15630
|
+
|
|
15631
|
+
var paginateSearchAvailablePhoneNumbers = (0, import_core.createPaginator)(ConnectClient, SearchAvailablePhoneNumbersCommand, "NextToken", "NextToken", "MaxResults");
|
|
15574
15632
|
|
|
15575
15633
|
// src/pagination/SearchContactsPaginator.ts
|
|
15576
|
-
|
|
15577
|
-
var paginateSearchContacts = (0,
|
|
15634
|
+
|
|
15635
|
+
var paginateSearchContacts = (0, import_core.createPaginator)(ConnectClient, SearchContactsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15578
15636
|
|
|
15579
15637
|
// src/pagination/SearchHoursOfOperationsPaginator.ts
|
|
15580
|
-
|
|
15581
|
-
var paginateSearchHoursOfOperations = (0,
|
|
15638
|
+
|
|
15639
|
+
var paginateSearchHoursOfOperations = (0, import_core.createPaginator)(ConnectClient, SearchHoursOfOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15582
15640
|
|
|
15583
15641
|
// src/pagination/SearchPredefinedAttributesPaginator.ts
|
|
15584
|
-
|
|
15585
|
-
var paginateSearchPredefinedAttributes = (0,
|
|
15642
|
+
|
|
15643
|
+
var paginateSearchPredefinedAttributes = (0, import_core.createPaginator)(ConnectClient, SearchPredefinedAttributesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15586
15644
|
|
|
15587
15645
|
// src/pagination/SearchPromptsPaginator.ts
|
|
15588
|
-
|
|
15589
|
-
var paginateSearchPrompts = (0,
|
|
15646
|
+
|
|
15647
|
+
var paginateSearchPrompts = (0, import_core.createPaginator)(ConnectClient, SearchPromptsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15590
15648
|
|
|
15591
15649
|
// src/pagination/SearchQueuesPaginator.ts
|
|
15592
|
-
|
|
15593
|
-
var paginateSearchQueues = (0,
|
|
15650
|
+
|
|
15651
|
+
var paginateSearchQueues = (0, import_core.createPaginator)(ConnectClient, SearchQueuesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15594
15652
|
|
|
15595
15653
|
// src/pagination/SearchQuickConnectsPaginator.ts
|
|
15596
|
-
|
|
15597
|
-
var paginateSearchQuickConnects = (0,
|
|
15654
|
+
|
|
15655
|
+
var paginateSearchQuickConnects = (0, import_core.createPaginator)(ConnectClient, SearchQuickConnectsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15598
15656
|
|
|
15599
15657
|
// src/pagination/SearchResourceTagsPaginator.ts
|
|
15600
|
-
|
|
15601
|
-
var paginateSearchResourceTags = (0,
|
|
15658
|
+
|
|
15659
|
+
var paginateSearchResourceTags = (0, import_core.createPaginator)(ConnectClient, SearchResourceTagsCommand, "NextToken", "NextToken", "MaxResults");
|
|
15602
15660
|
|
|
15603
15661
|
// src/pagination/SearchRoutingProfilesPaginator.ts
|
|
15604
|
-
|
|
15605
|
-
var paginateSearchRoutingProfiles = (0,
|
|
15662
|
+
|
|
15663
|
+
var paginateSearchRoutingProfiles = (0, import_core.createPaginator)(ConnectClient, SearchRoutingProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15606
15664
|
|
|
15607
15665
|
// src/pagination/SearchSecurityProfilesPaginator.ts
|
|
15608
|
-
|
|
15609
|
-
var paginateSearchSecurityProfiles = (0,
|
|
15666
|
+
|
|
15667
|
+
var paginateSearchSecurityProfiles = (0, import_core.createPaginator)(ConnectClient, SearchSecurityProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15610
15668
|
|
|
15611
15669
|
// src/pagination/SearchUsersPaginator.ts
|
|
15612
|
-
|
|
15613
|
-
var paginateSearchUsers = (0,
|
|
15670
|
+
|
|
15671
|
+
var paginateSearchUsers = (0, import_core.createPaginator)(ConnectClient, SearchUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
15614
15672
|
|
|
15615
15673
|
// src/pagination/SearchVocabulariesPaginator.ts
|
|
15616
|
-
|
|
15617
|
-
var paginateSearchVocabularies = (0,
|
|
15674
|
+
|
|
15675
|
+
var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient, SearchVocabulariesCommand, "NextToken", "NextToken", "MaxResults");
|
|
15618
15676
|
|
|
15619
15677
|
// src/index.ts
|
|
15620
15678
|
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|