@aws-sdk/client-partnercentral-account 3.1074.0 → 3.1076.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/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultPartnerCentralAccountHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AcceptConnectionInvitation$, AssociateAwsTrainingCertificationEmailDomain$, CancelConnection$, CancelConnectionInvitation$, CancelProfileUpdateTask$, CreateConnectionInvitation$, CreatePartner$, DisassociateAwsTrainingCertificationEmailDomain$, GetAllianceLeadContact$, GetConnection$, GetConnectionInvitation$, GetConnectionPreferences$, GetPartner$, GetProfileUpdateTask$, GetProfileVisibility$, GetVerification$, ListConnectionInvitations$, ListConnections$, ListPartners$, ListTagsForResource$, PutAllianceLeadContact$, PutProfileVisibility$, RejectConnectionInvitation$, SendEmailVerificationCode$, StartProfileUpdateTask$, StartVerification$, TagResource$, UntagResource$, UpdateConnectionPreferences$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { PartnerCentralAccountServiceException } = require("./models/PartnerCentralAccountServiceException");
18
- exports.PartnerCentralAccountServiceException = PartnerCentralAccountServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultPartnerCentralAccountHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "partnercentral-account",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultPartnerCentralAccountHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -29,6 +65,1052 @@ const commonParams = {
29
65
  Region: { type: "builtInParams", name: "region" },
30
66
  };
31
67
 
68
+ var version = "3.1075.0";
69
+ var packageInfo = {
70
+ version: version};
71
+
72
+ const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
73
+ const _data = {
74
+ conditions: [
75
+ [a, [b]],
76
+ [a, c],
77
+ ["aws.partition", c, "PartitionResult"],
78
+ ["booleanEquals", [{ ref: "UseFIPS" }, true]]
79
+ ],
80
+ results: [
81
+ [-1],
82
+ [-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
83
+ [b, {}],
84
+ ["https://partnercentral-account-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
85
+ ["https://partnercentral-account.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
86
+ [-1, "Invalid Configuration: Missing Region"]
87
+ ]
88
+ };
89
+ const root = 2;
90
+ const r = 100_000_000;
91
+ const nodes = new Int32Array([
92
+ -1, 1, -1,
93
+ 0, 6, 3,
94
+ 1, 4, r + 5,
95
+ 2, 5, r + 5,
96
+ 3, r + 3, r + 4,
97
+ 3, r + 1, r + 2,
98
+ ]);
99
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
100
+
101
+ const cache = new EndpointCache({
102
+ size: 50,
103
+ params: ["Endpoint", "Region", "UseFIPS"],
104
+ });
105
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
106
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
107
+ endpointParams: endpointParams,
108
+ logger: context.logger,
109
+ }));
110
+ };
111
+ customEndpointFunctions.aws = awsEndpointFunctions;
112
+
113
+ class PartnerCentralAccountServiceException extends ServiceException {
114
+ constructor(options) {
115
+ super(options);
116
+ Object.setPrototypeOf(this, PartnerCentralAccountServiceException.prototype);
117
+ }
118
+ }
119
+
120
+ class AccessDeniedException extends PartnerCentralAccountServiceException {
121
+ name = "AccessDeniedException";
122
+ $fault = "client";
123
+ Message;
124
+ Reason;
125
+ constructor(opts) {
126
+ super({
127
+ name: "AccessDeniedException",
128
+ $fault: "client",
129
+ ...opts,
130
+ });
131
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
+ this.Message = opts.Message;
133
+ this.Reason = opts.Reason;
134
+ }
135
+ }
136
+ class ConflictException extends PartnerCentralAccountServiceException {
137
+ name = "ConflictException";
138
+ $fault = "client";
139
+ Message;
140
+ Reason;
141
+ constructor(opts) {
142
+ super({
143
+ name: "ConflictException",
144
+ $fault: "client",
145
+ ...opts,
146
+ });
147
+ Object.setPrototypeOf(this, ConflictException.prototype);
148
+ this.Message = opts.Message;
149
+ this.Reason = opts.Reason;
150
+ }
151
+ }
152
+ class InternalServerException extends PartnerCentralAccountServiceException {
153
+ name = "InternalServerException";
154
+ $fault = "server";
155
+ $retryable = {};
156
+ Message;
157
+ constructor(opts) {
158
+ super({
159
+ name: "InternalServerException",
160
+ $fault: "server",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, InternalServerException.prototype);
164
+ this.Message = opts.Message;
165
+ }
166
+ }
167
+ class ResourceNotFoundException extends PartnerCentralAccountServiceException {
168
+ name = "ResourceNotFoundException";
169
+ $fault = "client";
170
+ Message;
171
+ Reason;
172
+ constructor(opts) {
173
+ super({
174
+ name: "ResourceNotFoundException",
175
+ $fault: "client",
176
+ ...opts,
177
+ });
178
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
179
+ this.Message = opts.Message;
180
+ this.Reason = opts.Reason;
181
+ }
182
+ }
183
+ class ServiceQuotaExceededException extends PartnerCentralAccountServiceException {
184
+ name = "ServiceQuotaExceededException";
185
+ $fault = "client";
186
+ Message;
187
+ Reason;
188
+ constructor(opts) {
189
+ super({
190
+ name: "ServiceQuotaExceededException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
195
+ this.Message = opts.Message;
196
+ this.Reason = opts.Reason;
197
+ }
198
+ }
199
+ class ThrottlingException extends PartnerCentralAccountServiceException {
200
+ name = "ThrottlingException";
201
+ $fault = "client";
202
+ $retryable = {};
203
+ Message;
204
+ ServiceCode;
205
+ QuotaCode;
206
+ constructor(opts) {
207
+ super({
208
+ name: "ThrottlingException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
213
+ this.Message = opts.Message;
214
+ this.ServiceCode = opts.ServiceCode;
215
+ this.QuotaCode = opts.QuotaCode;
216
+ }
217
+ }
218
+ class ValidationException extends PartnerCentralAccountServiceException {
219
+ name = "ValidationException";
220
+ $fault = "client";
221
+ Message;
222
+ Reason;
223
+ ErrorDetails;
224
+ constructor(opts) {
225
+ super({
226
+ name: "ValidationException",
227
+ $fault: "client",
228
+ ...opts,
229
+ });
230
+ Object.setPrototypeOf(this, ValidationException.prototype);
231
+ this.Message = opts.Message;
232
+ this.Reason = opts.Reason;
233
+ this.ErrorDetails = opts.ErrorDetails;
234
+ }
235
+ }
236
+
237
+ const _A = "Arn";
238
+ const _AATCED = "AssociateAwsTrainingCertificationEmailDomain";
239
+ const _AATCEDR = "AssociateAwsTrainingCertificationEmailDomainRequest";
240
+ const _AATCEDRs = "AssociateAwsTrainingCertificationEmailDomainResponse";
241
+ const _ACI = "AcceptConnectionInvitation";
242
+ const _ACIR = "AcceptConnectionInvitationRequest";
243
+ const _ACIRc = "AcceptConnectionInvitationResponse";
244
+ const _ADE = "AccessDeniedException";
245
+ const _ALC = "AllianceLeadContact";
246
+ const _AS = "AccountSummary";
247
+ const _AT = "AccessType";
248
+ const _ATCED = "AwsTrainingCertificationEmailDomains";
249
+ const _Ac = "Account";
250
+ const _BT = "BusinessTitle";
251
+ const _BVD = "BusinessVerificationDetails";
252
+ const _BVE = "BusinessValidationError";
253
+ const _BVR = "BusinessVerificationResponse";
254
+ const _C = "Catalog";
255
+ const _CA = "CreatedAt";
256
+ const _CAa = "CanceledAt";
257
+ const _CAo = "CompletedAt";
258
+ const _CB = "CanceledBy";
259
+ const _CC = "CountryCode";
260
+ const _CCI = "CancelConnectionInvitation";
261
+ const _CCIR = "CancelConnectionInvitationRequest";
262
+ const _CCIRa = "CancelConnectionInvitationResponse";
263
+ const _CCIRr = "CreateConnectionInvitationRequest";
264
+ const _CCIRre = "CreateConnectionInvitationResponse";
265
+ const _CCIr = "CreateConnectionInvitation";
266
+ const _CCR = "CancelConnectionRequest";
267
+ const _CCRa = "CancelConnectionResponse";
268
+ const _CCa = "CancelConnection";
269
+ const _CE = "ConflictException";
270
+ const _CI = "ConnectionId";
271
+ const _CIS = "ConnectionInvitationSummary";
272
+ const _CISL = "ConnectionInvitationSummaryList";
273
+ const _CISo = "ConnectionInvitationSummaries";
274
+ const _CP = "CreatePartner";
275
+ const _CPR = "CreatePartnerRequest";
276
+ const _CPRr = "CreatePartnerResponse";
277
+ const _CPUT = "CancelProfileUpdateTask";
278
+ const _CPUTR = "CancelProfileUpdateTaskRequest";
279
+ const _CPUTRa = "CancelProfileUpdateTaskResponse";
280
+ const _CS = "ConnectionSummary";
281
+ const _CSL = "ConnectionSummaryList";
282
+ const _CSo = "ConnectionSummaries";
283
+ const _CT = "ClientToken";
284
+ const _CTD = "ConnectionTypeDetail";
285
+ const _CTDM = "ConnectionTypeDetailMap";
286
+ const _CTS = "ConnectionTypeSummary";
287
+ const _CTSM = "ConnectionTypeSummaryMap";
288
+ const _CTo = "ConnectionType";
289
+ const _CTon = "ConnectionTypes";
290
+ const _CU = "CompletionUrl";
291
+ const _CUEA = "CompletionUrlExpiresAt";
292
+ const _Co = "Connection";
293
+ const _Cod = "Code";
294
+ const _D = "Description";
295
+ const _DATCED = "DisassociateAwsTrainingCertificationEmailDomain";
296
+ const _DATCEDR = "DisassociateAwsTrainingCertificationEmailDomainRequest";
297
+ const _DATCEDRi = "DisassociateAwsTrainingCertificationEmailDomainResponse";
298
+ const _DN = "DomainName";
299
+ const _DNi = "DisplayName";
300
+ const _E = "Email";
301
+ const _EA = "ExpiresAt";
302
+ const _EAn = "EndedAt";
303
+ const _ED = "ErrorDetails";
304
+ const _EDL = "ErrorDetailList";
305
+ const _EDr = "ErrorDetail";
306
+ const _EPI = "ExcludedParticipantIds";
307
+ const _EPIx = "ExcludedParticipantIdentifiers";
308
+ const _EVC = "EmailVerificationCode";
309
+ const _FN = "FirstName";
310
+ const _FVE = "FieldValidationError";
311
+ const _GALC = "GetAllianceLeadContact";
312
+ const _GALCR = "GetAllianceLeadContactRequest";
313
+ const _GALCRe = "GetAllianceLeadContactResponse";
314
+ const _GC = "GetConnection";
315
+ const _GCI = "GetConnectionInvitation";
316
+ const _GCIR = "GetConnectionInvitationRequest";
317
+ const _GCIRe = "GetConnectionInvitationResponse";
318
+ const _GCP = "GetConnectionPreferences";
319
+ const _GCPR = "GetConnectionPreferencesRequest";
320
+ const _GCPRe = "GetConnectionPreferencesResponse";
321
+ const _GCR = "GetConnectionRequest";
322
+ const _GCRe = "GetConnectionResponse";
323
+ const _GP = "GetPartner";
324
+ const _GPR = "GetPartnerRequest";
325
+ const _GPRe = "GetPartnerResponse";
326
+ const _GPUT = "GetProfileUpdateTask";
327
+ const _GPUTR = "GetProfileUpdateTaskRequest";
328
+ const _GPUTRe = "GetProfileUpdateTaskResponse";
329
+ const _GPV = "GetProfileVisibility";
330
+ const _GPVR = "GetProfileVisibilityRequest";
331
+ const _GPVRe = "GetProfileVisibilityResponse";
332
+ const _GV = "GetVerification";
333
+ const _GVR = "GetVerificationRequest";
334
+ const _GVRe = "GetVerificationResponse";
335
+ const _I = "Identifier";
336
+ const _IE = "InviterEmail";
337
+ const _IM = "InvitationMessage";
338
+ const _IN = "InviterName";
339
+ const _IS = "IndustrySegments";
340
+ const _ISE = "InternalServerException";
341
+ const _Id = "Id";
342
+ const _JOI = "JurisdictionOfIncorporation";
343
+ const _K = "Key";
344
+ const _L = "Locale";
345
+ const _LC = "LocalizedContent";
346
+ const _LCI = "ListConnectionInvitations";
347
+ const _LCIR = "ListConnectionInvitationsRequest";
348
+ const _LCIRi = "ListConnectionInvitationsResponse";
349
+ const _LCL = "LocalizedContentList";
350
+ const _LCR = "ListConnectionsRequest";
351
+ const _LCRi = "ListConnectionsResponse";
352
+ const _LCi = "ListConnections";
353
+ const _LCo = "LocalizedContents";
354
+ const _LN = "LegalName";
355
+ const _LNa = "LastName";
356
+ const _LP = "ListPartners";
357
+ const _LPR = "ListPartnersRequest";
358
+ const _LPRi = "ListPartnersResponse";
359
+ const _LTFR = "ListTagsForResource";
360
+ const _LTFRR = "ListTagsForResourceRequest";
361
+ const _LTFRRi = "ListTagsForResourceResponse";
362
+ const _LU = "LogoUrl";
363
+ const _M = "Message";
364
+ const _MR = "MaxResults";
365
+ const _N = "Name";
366
+ const _NT = "NextToken";
367
+ const _OP = "OtherParticipant";
368
+ const _OPAI = "OtherParticipantAccountId";
369
+ const _OPI = "OtherParticipantIdentifier";
370
+ const _OPIt = "OtherParticipantIdentifiers";
371
+ const _P = "Profile";
372
+ const _PALC = "PutAllianceLeadContact";
373
+ const _PALCR = "PutAllianceLeadContactRequest";
374
+ const _PALCRu = "PutAllianceLeadContactResponse";
375
+ const _PD = "PartnerDomain";
376
+ const _PDL = "PartnerDomainList";
377
+ const _PI = "ProfileId";
378
+ const _PP = "PartnerProfile";
379
+ const _PPS = "PartnerProfileSummary";
380
+ const _PPV = "PutProfileVisibility";
381
+ const _PPVR = "PutProfileVisibilityRequest";
382
+ const _PPVRu = "PutProfileVisibilityResponse";
383
+ const _PS = "PartnerSummary";
384
+ const _PSL = "PartnerSummaryList";
385
+ const _PST = "PrimarySolutionType";
386
+ const _PT = "ParticipantType";
387
+ const _Pa = "Participant";
388
+ const _QC = "QuotaCode";
389
+ const _R = "Reason";
390
+ const _RA = "ResourceArn";
391
+ const _RAe = "RegisteredAt";
392
+ const _RCI = "RejectConnectionInvitation";
393
+ const _RCIR = "RejectConnectionInvitationRequest";
394
+ const _RCIRe = "RejectConnectionInvitationResponse";
395
+ const _RI = "RegistrationId";
396
+ const _RIe = "ReceiverIdentifier";
397
+ const _RNFE = "ResourceNotFoundException";
398
+ const _RVD = "RegistrantVerificationDetails";
399
+ const _RVR = "RegistrantVerificationResponse";
400
+ const _Re = "Revision";
401
+ const _S = "Status";
402
+ const _SA = "StartedAt";
403
+ const _SC = "ServiceCode";
404
+ const _SEVC = "SendEmailVerificationCode";
405
+ const _SEVCR = "SendEmailVerificationCodeRequest";
406
+ const _SEVCRe = "SendEmailVerificationCodeResponse";
407
+ const _SP = "SellerProfile";
408
+ const _SPS = "SellerProfileSummary";
409
+ const _SPUT = "StartProfileUpdateTask";
410
+ const _SPUTR = "StartProfileUpdateTaskRequest";
411
+ const _SPUTRt = "StartProfileUpdateTaskResponse";
412
+ const _SQEE = "ServiceQuotaExceededException";
413
+ const _SUS = "SensitiveUnicodeString";
414
+ const _SV = "StartVerification";
415
+ const _SVR = "StartVerificationRequest";
416
+ const _SVRt = "StartVerificationResponse";
417
+ const _T = "Tags";
418
+ const _TD = "TaskDetails";
419
+ const _TE = "ThrottlingException";
420
+ const _TI = "TaskId";
421
+ const _TK = "TagKeys";
422
+ const _TL = "TagList";
423
+ const _TR = "TagResource";
424
+ const _TRR = "TagResourceRequest";
425
+ const _TRRa = "TagResourceResponse";
426
+ const _TSL = "TranslationSourceLocale";
427
+ const _Ta = "Tag";
428
+ const _UA = "UpdatedAt";
429
+ const _UCP = "UpdateConnectionPreferences";
430
+ const _UCPR = "UpdateConnectionPreferencesRequest";
431
+ const _UCPRp = "UpdateConnectionPreferencesResponse";
432
+ const _UR = "UntagResource";
433
+ const _URR = "UntagResourceRequest";
434
+ const _URRn = "UntagResourceResponse";
435
+ const _V = "Visibility";
436
+ const _VD = "VerificationDetails";
437
+ const _VE = "ValidationException";
438
+ const _VEL = "ValidationErrorList";
439
+ const _VEa = "ValidationError";
440
+ const _VRD = "VerificationResponseDetails";
441
+ const _VS = "VerificationStatus";
442
+ const _VSR = "VerificationStatusReason";
443
+ const _VT = "VerificationType";
444
+ const _Va = "Value";
445
+ const _WU = "WebsiteUrl";
446
+ const _c = "client";
447
+ const _e = "error";
448
+ const _hE = "httpError";
449
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.partnercentralaccount";
450
+ const _se = "server";
451
+ const n0 = "com.amazonaws.partnercentralaccount";
452
+ const _s_registry = TypeRegistry.for(_s);
453
+ var PartnerCentralAccountServiceException$ = [-3, _s, "PartnerCentralAccountServiceException", 0, [], []];
454
+ _s_registry.registerError(PartnerCentralAccountServiceException$, PartnerCentralAccountServiceException);
455
+ const n0_registry = TypeRegistry.for(n0);
456
+ var AccessDeniedException$ = [-3, n0, _ADE,
457
+ { [_e]: _c, [_hE]: 403 },
458
+ [_M, _R],
459
+ [0, 0], 2
460
+ ];
461
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
462
+ var ConflictException$ = [-3, n0, _CE,
463
+ { [_e]: _c, [_hE]: 409 },
464
+ [_M, _R],
465
+ [0, 0], 2
466
+ ];
467
+ n0_registry.registerError(ConflictException$, ConflictException);
468
+ var InternalServerException$ = [-3, n0, _ISE,
469
+ { [_e]: _se, [_hE]: 500 },
470
+ [_M],
471
+ [0], 1
472
+ ];
473
+ n0_registry.registerError(InternalServerException$, InternalServerException);
474
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
475
+ { [_e]: _c, [_hE]: 404 },
476
+ [_M, _R],
477
+ [0, 0], 2
478
+ ];
479
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
480
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
481
+ { [_e]: _c, [_hE]: 402 },
482
+ [_M, _R],
483
+ [0, 0], 2
484
+ ];
485
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
486
+ var ThrottlingException$ = [-3, n0, _TE,
487
+ { [_e]: _c, [_hE]: 429 },
488
+ [_M, _SC, _QC],
489
+ [0, 0, 0], 1
490
+ ];
491
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
492
+ var ValidationException$ = [-3, n0, _VE,
493
+ { [_e]: _c, [_hE]: 400 },
494
+ [_M, _R, _ED],
495
+ [0, 0, () => ValidationErrorList], 2
496
+ ];
497
+ n0_registry.registerError(ValidationException$, ValidationException);
498
+ const errorTypeRegistries = [
499
+ _s_registry,
500
+ n0_registry,
501
+ ];
502
+ var EmailVerificationCode = [0, n0, _EVC, 8, 0];
503
+ var LegalName = [0, n0, _LN, 8, 0];
504
+ var RegistrationId = [0, n0, _RI, 8, 0];
505
+ var SensitiveUnicodeString = [0, n0, _SUS, 8, 0];
506
+ var AcceptConnectionInvitationRequest$ = [3, n0, _ACIR,
507
+ 0,
508
+ [_C, _I, _CT],
509
+ [0, 0, [0, 4]], 2
510
+ ];
511
+ var AcceptConnectionInvitationResponse$ = [3, n0, _ACIRc,
512
+ 0,
513
+ [_Co],
514
+ [[() => Connection$, 0]], 1
515
+ ];
516
+ var AccountSummary$ = [3, n0, _AS,
517
+ 0,
518
+ [_N],
519
+ [0], 1
520
+ ];
521
+ var AllianceLeadContact$ = [3, n0, _ALC,
522
+ 0,
523
+ [_FN, _LNa, _E, _BT],
524
+ [[() => SensitiveUnicodeString, 0], [() => SensitiveUnicodeString, 0], 0, [() => SensitiveUnicodeString, 0]], 4
525
+ ];
526
+ var AssociateAwsTrainingCertificationEmailDomainRequest$ = [3, n0, _AATCEDR,
527
+ 0,
528
+ [_C, _I, _E, _EVC, _CT],
529
+ [0, 0, 0, [() => EmailVerificationCode, 0], [0, 4]], 4
530
+ ];
531
+ var AssociateAwsTrainingCertificationEmailDomainResponse$ = [3, n0, _AATCEDRs,
532
+ 0,
533
+ [],
534
+ []
535
+ ];
536
+ var BusinessValidationError$ = [3, n0, _BVE,
537
+ 0,
538
+ [_M, _Cod],
539
+ [0, 0], 2
540
+ ];
541
+ var BusinessVerificationDetails$ = [3, n0, _BVD,
542
+ 0,
543
+ [_LN, _RI, _CC, _JOI],
544
+ [[() => LegalName, 0], [() => RegistrationId, 0], 0, 0], 3
545
+ ];
546
+ var BusinessVerificationResponse$ = [3, n0, _BVR,
547
+ 0,
548
+ [_BVD, _CU, _CUEA],
549
+ [[() => BusinessVerificationDetails$, 0], 0, 5], 1
550
+ ];
551
+ var CancelConnectionInvitationRequest$ = [3, n0, _CCIR,
552
+ 0,
553
+ [_C, _I, _CT],
554
+ [0, 0, [0, 4]], 2
555
+ ];
556
+ var CancelConnectionInvitationResponse$ = [3, n0, _CCIRa,
557
+ 0,
558
+ [_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
559
+ [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
560
+ ];
561
+ var CancelConnectionRequest$ = [3, n0, _CCR,
562
+ 0,
563
+ [_C, _I, _CTo, _R, _CT],
564
+ [0, 0, 0, 0, [0, 4]], 4
565
+ ];
566
+ var CancelConnectionResponse$ = [3, n0, _CCRa,
567
+ 0,
568
+ [_C, _Id, _A, _OPAI, _UA, _CTon],
569
+ [0, 0, 0, 0, 5, [() => ConnectionTypeDetailMap, 0]], 6
570
+ ];
571
+ var CancelProfileUpdateTaskRequest$ = [3, n0, _CPUTR,
572
+ 0,
573
+ [_C, _I, _TI, _CT],
574
+ [0, 0, 0, [0, 4]], 3
575
+ ];
576
+ var CancelProfileUpdateTaskResponse$ = [3, n0, _CPUTRa,
577
+ 0,
578
+ [_C, _A, _Id, _TI, _TD, _SA, _S, _EAn, _EDL],
579
+ [0, 0, 0, 0, () => TaskDetails$, 5, 0, 5, () => ErrorDetailList], 7
580
+ ];
581
+ var Connection$ = [3, n0, _Co,
582
+ 0,
583
+ [_C, _Id, _A, _OPAI, _UA, _CTon],
584
+ [0, 0, 0, 0, 5, [() => ConnectionTypeDetailMap, 0]], 6
585
+ ];
586
+ var ConnectionInvitationSummary$ = [3, n0, _CIS,
587
+ 0,
588
+ [_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _CI, _EA],
589
+ [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5], 9
590
+ ];
591
+ var ConnectionSummary$ = [3, n0, _CS,
592
+ 0,
593
+ [_C, _Id, _A, _OPAI, _UA, _CTon],
594
+ [0, 0, 0, 0, 5, () => ConnectionTypeSummaryMap], 6
595
+ ];
596
+ var ConnectionTypeDetail$ = [3, n0, _CTD,
597
+ 0,
598
+ [_CA, _IE, _IN, _S, _OP, _CAa, _CB],
599
+ [5, 0, [() => SensitiveUnicodeString, 0], 0, () => Participant$, 5, 0], 5
600
+ ];
601
+ var ConnectionTypeSummary$ = [3, n0, _CTS,
602
+ 0,
603
+ [_S, _OP],
604
+ [0, () => Participant$], 2
605
+ ];
606
+ var CreateConnectionInvitationRequest$ = [3, n0, _CCIRr,
607
+ 0,
608
+ [_C, _CTo, _E, _M, _N, _RIe, _CT],
609
+ [0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, [0, 4]], 6
610
+ ];
611
+ var CreateConnectionInvitationResponse$ = [3, n0, _CCIRre,
612
+ 0,
613
+ [_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
614
+ [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
615
+ ];
616
+ var CreatePartnerRequest$ = [3, n0, _CPR,
617
+ 0,
618
+ [_C, _LN, _PST, _ALC, _EVC, _CT, _T],
619
+ [0, [() => SensitiveUnicodeString, 0], 0, [() => AllianceLeadContact$, 0], [() => EmailVerificationCode, 0], [0, 4], () => TagList], 5
620
+ ];
621
+ var CreatePartnerResponse$ = [3, n0, _CPRr,
622
+ 0,
623
+ [_C, _A, _Id, _LN, _CA, _P, _ALC, _ATCED],
624
+ [0, 0, 0, [() => SensitiveUnicodeString, 0], 5, () => PartnerProfile$, [() => AllianceLeadContact$, 0], () => PartnerDomainList], 7
625
+ ];
626
+ var DisassociateAwsTrainingCertificationEmailDomainRequest$ = [3, n0, _DATCEDR,
627
+ 0,
628
+ [_C, _I, _DN, _CT],
629
+ [0, 0, 0, [0, 4]], 3
630
+ ];
631
+ var DisassociateAwsTrainingCertificationEmailDomainResponse$ = [3, n0, _DATCEDRi,
632
+ 0,
633
+ [],
634
+ []
635
+ ];
636
+ var ErrorDetail$ = [3, n0, _EDr,
637
+ 0,
638
+ [_L, _M, _R],
639
+ [0, 0, 0], 3
640
+ ];
641
+ var FieldValidationError$ = [3, n0, _FVE,
642
+ 0,
643
+ [_N, _M, _Cod],
644
+ [0, 0, 0], 3
645
+ ];
646
+ var GetAllianceLeadContactRequest$ = [3, n0, _GALCR,
647
+ 0,
648
+ [_C, _I],
649
+ [0, 0], 2
650
+ ];
651
+ var GetAllianceLeadContactResponse$ = [3, n0, _GALCRe,
652
+ 0,
653
+ [_C, _A, _Id, _ALC],
654
+ [0, 0, 0, [() => AllianceLeadContact$, 0]], 4
655
+ ];
656
+ var GetConnectionInvitationRequest$ = [3, n0, _GCIR,
657
+ 0,
658
+ [_C, _I],
659
+ [0, 0], 2
660
+ ];
661
+ var GetConnectionInvitationResponse$ = [3, n0, _GCIRe,
662
+ 0,
663
+ [_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
664
+ [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
665
+ ];
666
+ var GetConnectionPreferencesRequest$ = [3, n0, _GCPR,
667
+ 0,
668
+ [_C],
669
+ [0], 1
670
+ ];
671
+ var GetConnectionPreferencesResponse$ = [3, n0, _GCPRe,
672
+ 0,
673
+ [_C, _A, _AT, _UA, _Re, _EPI],
674
+ [0, 0, 0, 5, 1, 64 | 0], 5
675
+ ];
676
+ var GetConnectionRequest$ = [3, n0, _GCR,
677
+ 0,
678
+ [_C, _I],
679
+ [0, 0], 2
680
+ ];
681
+ var GetConnectionResponse$ = [3, n0, _GCRe,
682
+ 0,
683
+ [_C, _Id, _A, _OPAI, _UA, _CTon],
684
+ [0, 0, 0, 0, 5, [() => ConnectionTypeDetailMap, 0]], 6
685
+ ];
686
+ var GetPartnerRequest$ = [3, n0, _GPR,
687
+ 0,
688
+ [_C, _I],
689
+ [0, 0], 2
690
+ ];
691
+ var GetPartnerResponse$ = [3, n0, _GPRe,
692
+ 0,
693
+ [_C, _A, _Id, _LN, _CA, _P, _ATCED],
694
+ [0, 0, 0, [() => SensitiveUnicodeString, 0], 5, () => PartnerProfile$, () => PartnerDomainList], 6
695
+ ];
696
+ var GetProfileUpdateTaskRequest$ = [3, n0, _GPUTR,
697
+ 0,
698
+ [_C, _I],
699
+ [0, 0], 2
700
+ ];
701
+ var GetProfileUpdateTaskResponse$ = [3, n0, _GPUTRe,
702
+ 0,
703
+ [_C, _A, _Id, _TI, _TD, _SA, _S, _EAn, _EDL],
704
+ [0, 0, 0, 0, () => TaskDetails$, 5, 0, 5, () => ErrorDetailList], 7
705
+ ];
706
+ var GetProfileVisibilityRequest$ = [3, n0, _GPVR,
707
+ 0,
708
+ [_C, _I],
709
+ [0, 0], 2
710
+ ];
711
+ var GetProfileVisibilityResponse$ = [3, n0, _GPVRe,
712
+ 0,
713
+ [_C, _A, _Id, _V, _PI],
714
+ [0, 0, 0, 0, 0], 5
715
+ ];
716
+ var GetVerificationRequest$ = [3, n0, _GVR,
717
+ 0,
718
+ [_VT],
719
+ [0], 1
720
+ ];
721
+ var GetVerificationResponse$ = [3, n0, _GVRe,
722
+ 0,
723
+ [_VT, _VS, _VRD, _SA, _VSR, _CAo],
724
+ [0, 0, [() => VerificationResponseDetails$, 0], 5, 0, 5], 4
725
+ ];
726
+ var ListConnectionInvitationsRequest$ = [3, n0, _LCIR,
727
+ 0,
728
+ [_C, _NT, _CTo, _MR, _OPIt, _PT, _S],
729
+ [0, 0, 0, 1, 64 | 0, 0, 0], 1
730
+ ];
731
+ var ListConnectionInvitationsResponse$ = [3, n0, _LCIRi,
732
+ 0,
733
+ [_CISo, _NT],
734
+ [() => ConnectionInvitationSummaryList, 0], 1
735
+ ];
736
+ var ListConnectionsRequest$ = [3, n0, _LCR,
737
+ 0,
738
+ [_C, _NT, _CTo, _MR, _OPIt],
739
+ [0, 0, 0, 1, 64 | 0], 1
740
+ ];
741
+ var ListConnectionsResponse$ = [3, n0, _LCRi,
742
+ 0,
743
+ [_CSo, _NT],
744
+ [() => ConnectionSummaryList, 0], 1
745
+ ];
746
+ var ListPartnersRequest$ = [3, n0, _LPR,
747
+ 0,
748
+ [_C, _NT],
749
+ [0, 0], 1
750
+ ];
751
+ var ListPartnersResponse$ = [3, n0, _LPRi,
752
+ 0,
753
+ [_PSL, _NT],
754
+ [[() => PartnerSummaryList, 0], 0], 1
755
+ ];
756
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
757
+ 0,
758
+ [_RA],
759
+ [0], 1
760
+ ];
761
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
762
+ 0,
763
+ [_RA, _T],
764
+ [0, () => TagList], 1
765
+ ];
766
+ var LocalizedContent$ = [3, n0, _LC,
767
+ 0,
768
+ [_DNi, _D, _WU, _LU, _L],
769
+ [0, 0, 0, 0, 0], 5
770
+ ];
771
+ var PartnerDomain$ = [3, n0, _PD,
772
+ 0,
773
+ [_DN, _RAe],
774
+ [0, 5], 2
775
+ ];
776
+ var PartnerProfile$ = [3, n0, _PP,
777
+ 0,
778
+ [_DNi, _D, _WU, _LU, _PST, _IS, _TSL, _LCo, _PI],
779
+ [0, 0, 0, 0, 0, 64 | 0, 0, () => LocalizedContentList, 0], 7
780
+ ];
781
+ var PartnerProfileSummary$ = [3, n0, _PPS,
782
+ 0,
783
+ [_Id, _N],
784
+ [0, 0], 2
785
+ ];
786
+ var PartnerSummary$ = [3, n0, _PS,
787
+ 0,
788
+ [_C, _A, _Id, _LN, _CA],
789
+ [0, 0, 0, [() => SensitiveUnicodeString, 0], 5], 5
790
+ ];
791
+ var PutAllianceLeadContactRequest$ = [3, n0, _PALCR,
792
+ 0,
793
+ [_C, _I, _ALC, _EVC],
794
+ [0, 0, [() => AllianceLeadContact$, 0], [() => EmailVerificationCode, 0]], 3
795
+ ];
796
+ var PutAllianceLeadContactResponse$ = [3, n0, _PALCRu,
797
+ 0,
798
+ [_C, _A, _Id, _ALC],
799
+ [0, 0, 0, [() => AllianceLeadContact$, 0]], 4
800
+ ];
801
+ var PutProfileVisibilityRequest$ = [3, n0, _PPVR,
802
+ 0,
803
+ [_C, _I, _V],
804
+ [0, 0, 0], 3
805
+ ];
806
+ var PutProfileVisibilityResponse$ = [3, n0, _PPVRu,
807
+ 0,
808
+ [_C, _A, _Id, _V, _PI],
809
+ [0, 0, 0, 0, 0], 5
810
+ ];
811
+ var RegistrantVerificationDetails$ = [3, n0, _RVD,
812
+ 0,
813
+ [],
814
+ []
815
+ ];
816
+ var RegistrantVerificationResponse$ = [3, n0, _RVR,
817
+ 0,
818
+ [_CU, _CUEA],
819
+ [0, 5], 2
820
+ ];
821
+ var RejectConnectionInvitationRequest$ = [3, n0, _RCIR,
822
+ 0,
823
+ [_C, _I, _CT, _R],
824
+ [0, 0, [0, 4], 0], 2
825
+ ];
826
+ var RejectConnectionInvitationResponse$ = [3, n0, _RCIRe,
827
+ 0,
828
+ [_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
829
+ [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
830
+ ];
831
+ var SellerProfileSummary$ = [3, n0, _SPS,
832
+ 0,
833
+ [_Id, _N],
834
+ [0, 0], 2
835
+ ];
836
+ var SendEmailVerificationCodeRequest$ = [3, n0, _SEVCR,
837
+ 0,
838
+ [_C, _E],
839
+ [0, 0], 2
840
+ ];
841
+ var SendEmailVerificationCodeResponse$ = [3, n0, _SEVCRe,
842
+ 0,
843
+ [],
844
+ []
845
+ ];
846
+ var StartProfileUpdateTaskRequest$ = [3, n0, _SPUTR,
847
+ 0,
848
+ [_C, _I, _TD, _CT],
849
+ [0, 0, () => TaskDetails$, [0, 4]], 3
850
+ ];
851
+ var StartProfileUpdateTaskResponse$ = [3, n0, _SPUTRt,
852
+ 0,
853
+ [_C, _A, _Id, _TI, _TD, _SA, _S, _EAn, _EDL],
854
+ [0, 0, 0, 0, () => TaskDetails$, 5, 0, 5, () => ErrorDetailList], 7
855
+ ];
856
+ var StartVerificationRequest$ = [3, n0, _SVR,
857
+ 0,
858
+ [_CT, _VD],
859
+ [[0, 4], [() => VerificationDetails$, 0]]
860
+ ];
861
+ var StartVerificationResponse$ = [3, n0, _SVRt,
862
+ 0,
863
+ [_VT, _VS, _VRD, _SA, _VSR, _CAo],
864
+ [0, 0, [() => VerificationResponseDetails$, 0], 5, 0, 5], 4
865
+ ];
866
+ var Tag$ = [3, n0, _Ta,
867
+ 0,
868
+ [_K, _Va],
869
+ [0, 0], 2
870
+ ];
871
+ var TagResourceRequest$ = [3, n0, _TRR,
872
+ 0,
873
+ [_RA, _T],
874
+ [0, () => TagList], 2
875
+ ];
876
+ var TagResourceResponse$ = [3, n0, _TRRa,
877
+ 0,
878
+ [],
879
+ []
880
+ ];
881
+ var TaskDetails$ = [3, n0, _TD,
882
+ 0,
883
+ [_DNi, _D, _WU, _LU, _PST, _IS, _TSL, _LCo],
884
+ [0, 0, 0, 0, 0, 64 | 0, 0, () => LocalizedContentList], 7
885
+ ];
886
+ var UntagResourceRequest$ = [3, n0, _URR,
887
+ 0,
888
+ [_RA, _TK],
889
+ [0, 64 | 0], 2
890
+ ];
891
+ var UntagResourceResponse$ = [3, n0, _URRn,
892
+ 0,
893
+ [],
894
+ []
895
+ ];
896
+ var UpdateConnectionPreferencesRequest$ = [3, n0, _UCPR,
897
+ 0,
898
+ [_C, _Re, _AT, _EPIx],
899
+ [0, 1, 0, 64 | 0], 3
900
+ ];
901
+ var UpdateConnectionPreferencesResponse$ = [3, n0, _UCPRp,
902
+ 0,
903
+ [_C, _A, _AT, _UA, _Re, _EPI],
904
+ [0, 0, 0, 5, 1, 64 | 0], 5
905
+ ];
906
+ var ConnectionInvitationSummaryList = [1, n0, _CISL,
907
+ 0, () => ConnectionInvitationSummary$
908
+ ];
909
+ var ConnectionSummaryList = [1, n0, _CSL,
910
+ 0, () => ConnectionSummary$
911
+ ];
912
+ var ErrorDetailList = [1, n0, _EDL,
913
+ 0, () => ErrorDetail$
914
+ ];
915
+ var LocalizedContentList = [1, n0, _LCL,
916
+ 0, () => LocalizedContent$
917
+ ];
918
+ var PartnerDomainList = [1, n0, _PDL,
919
+ 0, () => PartnerDomain$
920
+ ];
921
+ var PartnerSummaryList = [1, n0, _PSL,
922
+ 0, [() => PartnerSummary$,
923
+ 0]
924
+ ];
925
+ var TagList = [1, n0, _TL,
926
+ 0, () => Tag$
927
+ ];
928
+ var ValidationErrorList = [1, n0, _VEL,
929
+ 0, () => ValidationError$
930
+ ];
931
+ var ConnectionTypeDetailMap = [2, n0, _CTDM,
932
+ 0, [0,
933
+ 0],
934
+ [() => ConnectionTypeDetail$,
935
+ 0]
936
+ ];
937
+ var ConnectionTypeSummaryMap = [2, n0, _CTSM,
938
+ 0, 0, () => ConnectionTypeSummary$
939
+ ];
940
+ var Participant$ = [4, n0, _Pa,
941
+ 0,
942
+ [_PP, _SP, _Ac],
943
+ [() => PartnerProfileSummary$, () => SellerProfileSummary$, () => AccountSummary$]
944
+ ];
945
+ var ValidationError$ = [4, n0, _VEa,
946
+ 0,
947
+ [_FVE, _BVE],
948
+ [() => FieldValidationError$, () => BusinessValidationError$]
949
+ ];
950
+ var VerificationDetails$ = [4, n0, _VD,
951
+ 0,
952
+ [_BVD, _RVD],
953
+ [[() => BusinessVerificationDetails$, 0], () => RegistrantVerificationDetails$]
954
+ ];
955
+ var VerificationResponseDetails$ = [4, n0, _VRD,
956
+ 0,
957
+ [_BVR, _RVR],
958
+ [[() => BusinessVerificationResponse$, 0], () => RegistrantVerificationResponse$]
959
+ ];
960
+ var AcceptConnectionInvitation$ = [9, n0, _ACI,
961
+ 0, () => AcceptConnectionInvitationRequest$, () => AcceptConnectionInvitationResponse$
962
+ ];
963
+ var AssociateAwsTrainingCertificationEmailDomain$ = [9, n0, _AATCED,
964
+ 2, () => AssociateAwsTrainingCertificationEmailDomainRequest$, () => AssociateAwsTrainingCertificationEmailDomainResponse$
965
+ ];
966
+ var CancelConnection$ = [9, n0, _CCa,
967
+ 0, () => CancelConnectionRequest$, () => CancelConnectionResponse$
968
+ ];
969
+ var CancelConnectionInvitation$ = [9, n0, _CCI,
970
+ 0, () => CancelConnectionInvitationRequest$, () => CancelConnectionInvitationResponse$
971
+ ];
972
+ var CancelProfileUpdateTask$ = [9, n0, _CPUT,
973
+ 0, () => CancelProfileUpdateTaskRequest$, () => CancelProfileUpdateTaskResponse$
974
+ ];
975
+ var CreateConnectionInvitation$ = [9, n0, _CCIr,
976
+ 0, () => CreateConnectionInvitationRequest$, () => CreateConnectionInvitationResponse$
977
+ ];
978
+ var CreatePartner$ = [9, n0, _CP,
979
+ 2, () => CreatePartnerRequest$, () => CreatePartnerResponse$
980
+ ];
981
+ var DisassociateAwsTrainingCertificationEmailDomain$ = [9, n0, _DATCED,
982
+ 2, () => DisassociateAwsTrainingCertificationEmailDomainRequest$, () => DisassociateAwsTrainingCertificationEmailDomainResponse$
983
+ ];
984
+ var GetAllianceLeadContact$ = [9, n0, _GALC,
985
+ 0, () => GetAllianceLeadContactRequest$, () => GetAllianceLeadContactResponse$
986
+ ];
987
+ var GetConnection$ = [9, n0, _GC,
988
+ 0, () => GetConnectionRequest$, () => GetConnectionResponse$
989
+ ];
990
+ var GetConnectionInvitation$ = [9, n0, _GCI,
991
+ 0, () => GetConnectionInvitationRequest$, () => GetConnectionInvitationResponse$
992
+ ];
993
+ var GetConnectionPreferences$ = [9, n0, _GCP,
994
+ 0, () => GetConnectionPreferencesRequest$, () => GetConnectionPreferencesResponse$
995
+ ];
996
+ var GetPartner$ = [9, n0, _GP,
997
+ 0, () => GetPartnerRequest$, () => GetPartnerResponse$
998
+ ];
999
+ var GetProfileUpdateTask$ = [9, n0, _GPUT,
1000
+ 0, () => GetProfileUpdateTaskRequest$, () => GetProfileUpdateTaskResponse$
1001
+ ];
1002
+ var GetProfileVisibility$ = [9, n0, _GPV,
1003
+ 0, () => GetProfileVisibilityRequest$, () => GetProfileVisibilityResponse$
1004
+ ];
1005
+ var GetVerification$ = [9, n0, _GV,
1006
+ 0, () => GetVerificationRequest$, () => GetVerificationResponse$
1007
+ ];
1008
+ var ListConnectionInvitations$ = [9, n0, _LCI,
1009
+ 0, () => ListConnectionInvitationsRequest$, () => ListConnectionInvitationsResponse$
1010
+ ];
1011
+ var ListConnections$ = [9, n0, _LCi,
1012
+ 0, () => ListConnectionsRequest$, () => ListConnectionsResponse$
1013
+ ];
1014
+ var ListPartners$ = [9, n0, _LP,
1015
+ 0, () => ListPartnersRequest$, () => ListPartnersResponse$
1016
+ ];
1017
+ var ListTagsForResource$ = [9, n0, _LTFR,
1018
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1019
+ ];
1020
+ var PutAllianceLeadContact$ = [9, n0, _PALC,
1021
+ 0, () => PutAllianceLeadContactRequest$, () => PutAllianceLeadContactResponse$
1022
+ ];
1023
+ var PutProfileVisibility$ = [9, n0, _PPV,
1024
+ 0, () => PutProfileVisibilityRequest$, () => PutProfileVisibilityResponse$
1025
+ ];
1026
+ var RejectConnectionInvitation$ = [9, n0, _RCI,
1027
+ 0, () => RejectConnectionInvitationRequest$, () => RejectConnectionInvitationResponse$
1028
+ ];
1029
+ var SendEmailVerificationCode$ = [9, n0, _SEVC,
1030
+ 0, () => SendEmailVerificationCodeRequest$, () => SendEmailVerificationCodeResponse$
1031
+ ];
1032
+ var StartProfileUpdateTask$ = [9, n0, _SPUT,
1033
+ 2, () => StartProfileUpdateTaskRequest$, () => StartProfileUpdateTaskResponse$
1034
+ ];
1035
+ var StartVerification$ = [9, n0, _SV,
1036
+ 2, () => StartVerificationRequest$, () => StartVerificationResponse$
1037
+ ];
1038
+ var TagResource$ = [9, n0, _TR,
1039
+ 2, () => TagResourceRequest$, () => TagResourceResponse$
1040
+ ];
1041
+ var UntagResource$ = [9, n0, _UR,
1042
+ 2, () => UntagResourceRequest$, () => UntagResourceResponse$
1043
+ ];
1044
+ var UpdateConnectionPreferences$ = [9, n0, _UCP,
1045
+ 2, () => UpdateConnectionPreferencesRequest$, () => UpdateConnectionPreferencesResponse$
1046
+ ];
1047
+
1048
+ const getRuntimeConfig$1 = (config) => {
1049
+ return {
1050
+ apiVersion: "2025-04-04",
1051
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1052
+ base64Encoder: config?.base64Encoder ?? toBase64,
1053
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1054
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1055
+ extensions: config?.extensions ?? [],
1056
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultPartnerCentralAccountHttpAuthSchemeProvider,
1057
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1058
+ {
1059
+ schemeId: "aws.auth#sigv4",
1060
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1061
+ signer: new AwsSdkSigV4Signer(),
1062
+ },
1063
+ ],
1064
+ logger: config?.logger ?? new NoOpLogger(),
1065
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
1066
+ protocolSettings: config?.protocolSettings ?? {
1067
+ defaultNamespace: "com.amazonaws.partnercentralaccount",
1068
+ errorTypeRegistries,
1069
+ version: "2025-04-04",
1070
+ serviceTarget: "PartnerCentralAccount",
1071
+ },
1072
+ serviceId: config?.serviceId ?? "PartnerCentral Account",
1073
+ urlParser: config?.urlParser ?? parseUrl,
1074
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1075
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1076
+ };
1077
+ };
1078
+
1079
+ const getRuntimeConfig = (config) => {
1080
+ emitWarningIfUnsupportedVersion(process.version);
1081
+ const defaultsMode = resolveDefaultsModeConfig(config);
1082
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1083
+ const clientSharedValues = getRuntimeConfig$1(config);
1084
+ emitWarningIfUnsupportedVersion$1(process.version);
1085
+ const loaderConfig = {
1086
+ profile: config?.profile,
1087
+ logger: clientSharedValues.logger,
1088
+ };
1089
+ return {
1090
+ ...clientSharedValues,
1091
+ ...config,
1092
+ runtime: "node",
1093
+ defaultsMode,
1094
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1095
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1096
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1097
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1098
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1099
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1100
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1101
+ retryMode: config?.retryMode ??
1102
+ loadConfig({
1103
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1104
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1105
+ }, config),
1106
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1107
+ streamCollector: config?.streamCollector ?? streamCollector,
1108
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1109
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1110
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1111
+ };
1112
+ };
1113
+
32
1114
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
33
1115
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
34
1116
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -668,56 +1750,186 @@ const VerificationStatus = {
668
1750
  SUCCEEDED: "SUCCEEDED",
669
1751
  };
670
1752
 
1753
+ exports.AcceptConnectionInvitation$ = AcceptConnectionInvitation$;
671
1754
  exports.AcceptConnectionInvitationCommand = AcceptConnectionInvitationCommand;
1755
+ exports.AcceptConnectionInvitationRequest$ = AcceptConnectionInvitationRequest$;
1756
+ exports.AcceptConnectionInvitationResponse$ = AcceptConnectionInvitationResponse$;
1757
+ exports.AccessDeniedException = AccessDeniedException;
1758
+ exports.AccessDeniedException$ = AccessDeniedException$;
672
1759
  exports.AccessDeniedExceptionReason = AccessDeniedExceptionReason;
673
1760
  exports.AccessType = AccessType;
1761
+ exports.AccountSummary$ = AccountSummary$;
1762
+ exports.AllianceLeadContact$ = AllianceLeadContact$;
1763
+ exports.AssociateAwsTrainingCertificationEmailDomain$ = AssociateAwsTrainingCertificationEmailDomain$;
674
1764
  exports.AssociateAwsTrainingCertificationEmailDomainCommand = AssociateAwsTrainingCertificationEmailDomainCommand;
1765
+ exports.AssociateAwsTrainingCertificationEmailDomainRequest$ = AssociateAwsTrainingCertificationEmailDomainRequest$;
1766
+ exports.AssociateAwsTrainingCertificationEmailDomainResponse$ = AssociateAwsTrainingCertificationEmailDomainResponse$;
675
1767
  exports.BusinessValidationCode = BusinessValidationCode;
1768
+ exports.BusinessValidationError$ = BusinessValidationError$;
1769
+ exports.BusinessVerificationDetails$ = BusinessVerificationDetails$;
1770
+ exports.BusinessVerificationResponse$ = BusinessVerificationResponse$;
1771
+ exports.CancelConnection$ = CancelConnection$;
676
1772
  exports.CancelConnectionCommand = CancelConnectionCommand;
1773
+ exports.CancelConnectionInvitation$ = CancelConnectionInvitation$;
677
1774
  exports.CancelConnectionInvitationCommand = CancelConnectionInvitationCommand;
1775
+ exports.CancelConnectionInvitationRequest$ = CancelConnectionInvitationRequest$;
1776
+ exports.CancelConnectionInvitationResponse$ = CancelConnectionInvitationResponse$;
1777
+ exports.CancelConnectionRequest$ = CancelConnectionRequest$;
1778
+ exports.CancelConnectionResponse$ = CancelConnectionResponse$;
1779
+ exports.CancelProfileUpdateTask$ = CancelProfileUpdateTask$;
678
1780
  exports.CancelProfileUpdateTaskCommand = CancelProfileUpdateTaskCommand;
1781
+ exports.CancelProfileUpdateTaskRequest$ = CancelProfileUpdateTaskRequest$;
1782
+ exports.CancelProfileUpdateTaskResponse$ = CancelProfileUpdateTaskResponse$;
1783
+ exports.ConflictException = ConflictException;
1784
+ exports.ConflictException$ = ConflictException$;
679
1785
  exports.ConflictExceptionReason = ConflictExceptionReason;
1786
+ exports.Connection$ = Connection$;
1787
+ exports.ConnectionInvitationSummary$ = ConnectionInvitationSummary$;
1788
+ exports.ConnectionSummary$ = ConnectionSummary$;
680
1789
  exports.ConnectionType = ConnectionType;
1790
+ exports.ConnectionTypeDetail$ = ConnectionTypeDetail$;
681
1791
  exports.ConnectionTypeStatus = ConnectionTypeStatus;
1792
+ exports.ConnectionTypeSummary$ = ConnectionTypeSummary$;
1793
+ exports.CreateConnectionInvitation$ = CreateConnectionInvitation$;
682
1794
  exports.CreateConnectionInvitationCommand = CreateConnectionInvitationCommand;
1795
+ exports.CreateConnectionInvitationRequest$ = CreateConnectionInvitationRequest$;
1796
+ exports.CreateConnectionInvitationResponse$ = CreateConnectionInvitationResponse$;
1797
+ exports.CreatePartner$ = CreatePartner$;
683
1798
  exports.CreatePartnerCommand = CreatePartnerCommand;
1799
+ exports.CreatePartnerRequest$ = CreatePartnerRequest$;
1800
+ exports.CreatePartnerResponse$ = CreatePartnerResponse$;
1801
+ exports.DisassociateAwsTrainingCertificationEmailDomain$ = DisassociateAwsTrainingCertificationEmailDomain$;
684
1802
  exports.DisassociateAwsTrainingCertificationEmailDomainCommand = DisassociateAwsTrainingCertificationEmailDomainCommand;
1803
+ exports.DisassociateAwsTrainingCertificationEmailDomainRequest$ = DisassociateAwsTrainingCertificationEmailDomainRequest$;
1804
+ exports.DisassociateAwsTrainingCertificationEmailDomainResponse$ = DisassociateAwsTrainingCertificationEmailDomainResponse$;
1805
+ exports.ErrorDetail$ = ErrorDetail$;
685
1806
  exports.FieldValidationCode = FieldValidationCode;
1807
+ exports.FieldValidationError$ = FieldValidationError$;
1808
+ exports.GetAllianceLeadContact$ = GetAllianceLeadContact$;
686
1809
  exports.GetAllianceLeadContactCommand = GetAllianceLeadContactCommand;
1810
+ exports.GetAllianceLeadContactRequest$ = GetAllianceLeadContactRequest$;
1811
+ exports.GetAllianceLeadContactResponse$ = GetAllianceLeadContactResponse$;
1812
+ exports.GetConnection$ = GetConnection$;
687
1813
  exports.GetConnectionCommand = GetConnectionCommand;
1814
+ exports.GetConnectionInvitation$ = GetConnectionInvitation$;
688
1815
  exports.GetConnectionInvitationCommand = GetConnectionInvitationCommand;
1816
+ exports.GetConnectionInvitationRequest$ = GetConnectionInvitationRequest$;
1817
+ exports.GetConnectionInvitationResponse$ = GetConnectionInvitationResponse$;
1818
+ exports.GetConnectionPreferences$ = GetConnectionPreferences$;
689
1819
  exports.GetConnectionPreferencesCommand = GetConnectionPreferencesCommand;
1820
+ exports.GetConnectionPreferencesRequest$ = GetConnectionPreferencesRequest$;
1821
+ exports.GetConnectionPreferencesResponse$ = GetConnectionPreferencesResponse$;
1822
+ exports.GetConnectionRequest$ = GetConnectionRequest$;
1823
+ exports.GetConnectionResponse$ = GetConnectionResponse$;
1824
+ exports.GetPartner$ = GetPartner$;
690
1825
  exports.GetPartnerCommand = GetPartnerCommand;
1826
+ exports.GetPartnerRequest$ = GetPartnerRequest$;
1827
+ exports.GetPartnerResponse$ = GetPartnerResponse$;
1828
+ exports.GetProfileUpdateTask$ = GetProfileUpdateTask$;
691
1829
  exports.GetProfileUpdateTaskCommand = GetProfileUpdateTaskCommand;
1830
+ exports.GetProfileUpdateTaskRequest$ = GetProfileUpdateTaskRequest$;
1831
+ exports.GetProfileUpdateTaskResponse$ = GetProfileUpdateTaskResponse$;
1832
+ exports.GetProfileVisibility$ = GetProfileVisibility$;
692
1833
  exports.GetProfileVisibilityCommand = GetProfileVisibilityCommand;
1834
+ exports.GetProfileVisibilityRequest$ = GetProfileVisibilityRequest$;
1835
+ exports.GetProfileVisibilityResponse$ = GetProfileVisibilityResponse$;
1836
+ exports.GetVerification$ = GetVerification$;
693
1837
  exports.GetVerificationCommand = GetVerificationCommand;
1838
+ exports.GetVerificationRequest$ = GetVerificationRequest$;
1839
+ exports.GetVerificationResponse$ = GetVerificationResponse$;
694
1840
  exports.IndustrySegment = IndustrySegment;
1841
+ exports.InternalServerException = InternalServerException;
1842
+ exports.InternalServerException$ = InternalServerException$;
695
1843
  exports.InvitationStatus = InvitationStatus;
1844
+ exports.ListConnectionInvitations$ = ListConnectionInvitations$;
696
1845
  exports.ListConnectionInvitationsCommand = ListConnectionInvitationsCommand;
1846
+ exports.ListConnectionInvitationsRequest$ = ListConnectionInvitationsRequest$;
1847
+ exports.ListConnectionInvitationsResponse$ = ListConnectionInvitationsResponse$;
1848
+ exports.ListConnections$ = ListConnections$;
697
1849
  exports.ListConnectionsCommand = ListConnectionsCommand;
1850
+ exports.ListConnectionsRequest$ = ListConnectionsRequest$;
1851
+ exports.ListConnectionsResponse$ = ListConnectionsResponse$;
1852
+ exports.ListPartners$ = ListPartners$;
698
1853
  exports.ListPartnersCommand = ListPartnersCommand;
1854
+ exports.ListPartnersRequest$ = ListPartnersRequest$;
1855
+ exports.ListPartnersResponse$ = ListPartnersResponse$;
1856
+ exports.ListTagsForResource$ = ListTagsForResource$;
699
1857
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1858
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1859
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1860
+ exports.LocalizedContent$ = LocalizedContent$;
1861
+ exports.Participant$ = Participant$;
700
1862
  exports.ParticipantType = ParticipantType;
701
1863
  exports.PartnerCentralAccount = PartnerCentralAccount;
702
1864
  exports.PartnerCentralAccountClient = PartnerCentralAccountClient;
1865
+ exports.PartnerCentralAccountServiceException = PartnerCentralAccountServiceException;
1866
+ exports.PartnerCentralAccountServiceException$ = PartnerCentralAccountServiceException$;
1867
+ exports.PartnerDomain$ = PartnerDomain$;
1868
+ exports.PartnerProfile$ = PartnerProfile$;
1869
+ exports.PartnerProfileSummary$ = PartnerProfileSummary$;
1870
+ exports.PartnerSummary$ = PartnerSummary$;
703
1871
  exports.PrimarySolutionType = PrimarySolutionType;
704
1872
  exports.ProfileTaskStatus = ProfileTaskStatus;
705
1873
  exports.ProfileValidationErrorReason = ProfileValidationErrorReason;
706
1874
  exports.ProfileVisibility = ProfileVisibility;
1875
+ exports.PutAllianceLeadContact$ = PutAllianceLeadContact$;
707
1876
  exports.PutAllianceLeadContactCommand = PutAllianceLeadContactCommand;
1877
+ exports.PutAllianceLeadContactRequest$ = PutAllianceLeadContactRequest$;
1878
+ exports.PutAllianceLeadContactResponse$ = PutAllianceLeadContactResponse$;
1879
+ exports.PutProfileVisibility$ = PutProfileVisibility$;
708
1880
  exports.PutProfileVisibilityCommand = PutProfileVisibilityCommand;
1881
+ exports.PutProfileVisibilityRequest$ = PutProfileVisibilityRequest$;
1882
+ exports.PutProfileVisibilityResponse$ = PutProfileVisibilityResponse$;
1883
+ exports.RegistrantVerificationDetails$ = RegistrantVerificationDetails$;
1884
+ exports.RegistrantVerificationResponse$ = RegistrantVerificationResponse$;
1885
+ exports.RejectConnectionInvitation$ = RejectConnectionInvitation$;
709
1886
  exports.RejectConnectionInvitationCommand = RejectConnectionInvitationCommand;
1887
+ exports.RejectConnectionInvitationRequest$ = RejectConnectionInvitationRequest$;
1888
+ exports.RejectConnectionInvitationResponse$ = RejectConnectionInvitationResponse$;
1889
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1890
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
710
1891
  exports.ResourceNotFoundExceptionReason = ResourceNotFoundExceptionReason;
1892
+ exports.SellerProfileSummary$ = SellerProfileSummary$;
1893
+ exports.SendEmailVerificationCode$ = SendEmailVerificationCode$;
711
1894
  exports.SendEmailVerificationCodeCommand = SendEmailVerificationCodeCommand;
1895
+ exports.SendEmailVerificationCodeRequest$ = SendEmailVerificationCodeRequest$;
1896
+ exports.SendEmailVerificationCodeResponse$ = SendEmailVerificationCodeResponse$;
1897
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1898
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
712
1899
  exports.ServiceQuotaExceededExceptionReason = ServiceQuotaExceededExceptionReason;
1900
+ exports.StartProfileUpdateTask$ = StartProfileUpdateTask$;
713
1901
  exports.StartProfileUpdateTaskCommand = StartProfileUpdateTaskCommand;
1902
+ exports.StartProfileUpdateTaskRequest$ = StartProfileUpdateTaskRequest$;
1903
+ exports.StartProfileUpdateTaskResponse$ = StartProfileUpdateTaskResponse$;
1904
+ exports.StartVerification$ = StartVerification$;
714
1905
  exports.StartVerificationCommand = StartVerificationCommand;
1906
+ exports.StartVerificationRequest$ = StartVerificationRequest$;
1907
+ exports.StartVerificationResponse$ = StartVerificationResponse$;
1908
+ exports.Tag$ = Tag$;
1909
+ exports.TagResource$ = TagResource$;
715
1910
  exports.TagResourceCommand = TagResourceCommand;
1911
+ exports.TagResourceRequest$ = TagResourceRequest$;
1912
+ exports.TagResourceResponse$ = TagResourceResponse$;
1913
+ exports.TaskDetails$ = TaskDetails$;
1914
+ exports.ThrottlingException = ThrottlingException;
1915
+ exports.ThrottlingException$ = ThrottlingException$;
1916
+ exports.UntagResource$ = UntagResource$;
716
1917
  exports.UntagResourceCommand = UntagResourceCommand;
1918
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1919
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1920
+ exports.UpdateConnectionPreferences$ = UpdateConnectionPreferences$;
717
1921
  exports.UpdateConnectionPreferencesCommand = UpdateConnectionPreferencesCommand;
1922
+ exports.UpdateConnectionPreferencesRequest$ = UpdateConnectionPreferencesRequest$;
1923
+ exports.UpdateConnectionPreferencesResponse$ = UpdateConnectionPreferencesResponse$;
1924
+ exports.ValidationError$ = ValidationError$;
1925
+ exports.ValidationException = ValidationException;
1926
+ exports.ValidationException$ = ValidationException$;
718
1927
  exports.ValidationExceptionReason = ValidationExceptionReason;
1928
+ exports.VerificationDetails$ = VerificationDetails$;
1929
+ exports.VerificationResponseDetails$ = VerificationResponseDetails$;
719
1930
  exports.VerificationStatus = VerificationStatus;
720
1931
  exports.VerificationType = VerificationType;
1932
+ exports.errorTypeRegistries = errorTypeRegistries;
721
1933
  exports.paginateListConnectionInvitations = paginateListConnectionInvitations;
722
1934
  exports.paginateListConnections = paginateListConnections;
723
1935
  exports.paginateListPartners = paginateListPartners;