@aws-sdk/client-partnercentral-channel 3.987.0 → 3.988.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 +36 -887
- package/dist-cjs/models/PartnerCentralChannelServiceException.js +12 -0
- package/dist-cjs/models/errors.js +124 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +670 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +78 -72
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var PartnerCentralChannelServiceException = require('./models/PartnerCentralChannelServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -109,774 +112,6 @@ class PartnerCentralChannelClient extends smithyClient.Client {
|
|
|
109
112
|
}
|
|
110
113
|
}
|
|
111
114
|
|
|
112
|
-
class PartnerCentralChannelServiceException extends smithyClient.ServiceException {
|
|
113
|
-
constructor(options) {
|
|
114
|
-
super(options);
|
|
115
|
-
Object.setPrototypeOf(this, PartnerCentralChannelServiceException.prototype);
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
class AccessDeniedException extends PartnerCentralChannelServiceException {
|
|
120
|
-
name = "AccessDeniedException";
|
|
121
|
-
$fault = "client";
|
|
122
|
-
reason;
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
this.reason = opts.reason;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class InternalServerException extends PartnerCentralChannelServiceException {
|
|
134
|
-
name = "InternalServerException";
|
|
135
|
-
$fault = "server";
|
|
136
|
-
$retryable = {};
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "InternalServerException",
|
|
140
|
-
$fault: "server",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class ResourceNotFoundException extends PartnerCentralChannelServiceException {
|
|
147
|
-
name = "ResourceNotFoundException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
resourceId;
|
|
150
|
-
resourceType;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "ResourceNotFoundException",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
158
|
-
this.resourceId = opts.resourceId;
|
|
159
|
-
this.resourceType = opts.resourceType;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ThrottlingException extends PartnerCentralChannelServiceException {
|
|
163
|
-
name = "ThrottlingException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
$retryable = {
|
|
166
|
-
throttling: true,
|
|
167
|
-
};
|
|
168
|
-
serviceCode;
|
|
169
|
-
quotaCode;
|
|
170
|
-
constructor(opts) {
|
|
171
|
-
super({
|
|
172
|
-
name: "ThrottlingException",
|
|
173
|
-
$fault: "client",
|
|
174
|
-
...opts,
|
|
175
|
-
});
|
|
176
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
177
|
-
this.serviceCode = opts.serviceCode;
|
|
178
|
-
this.quotaCode = opts.quotaCode;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
class ValidationException extends PartnerCentralChannelServiceException {
|
|
182
|
-
name = "ValidationException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
reason;
|
|
185
|
-
fieldList;
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "ValidationException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
193
|
-
this.reason = opts.reason;
|
|
194
|
-
this.fieldList = opts.fieldList;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
class ConflictException extends PartnerCentralChannelServiceException {
|
|
198
|
-
name = "ConflictException";
|
|
199
|
-
$fault = "client";
|
|
200
|
-
resourceId;
|
|
201
|
-
resourceType;
|
|
202
|
-
constructor(opts) {
|
|
203
|
-
super({
|
|
204
|
-
name: "ConflictException",
|
|
205
|
-
$fault: "client",
|
|
206
|
-
...opts,
|
|
207
|
-
});
|
|
208
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
209
|
-
this.resourceId = opts.resourceId;
|
|
210
|
-
this.resourceType = opts.resourceType;
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
class ServiceQuotaExceededException extends PartnerCentralChannelServiceException {
|
|
214
|
-
name = "ServiceQuotaExceededException";
|
|
215
|
-
$fault = "client";
|
|
216
|
-
$retryable = {};
|
|
217
|
-
resourceId;
|
|
218
|
-
resourceType;
|
|
219
|
-
quotaCode;
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "ServiceQuotaExceededException",
|
|
223
|
-
$fault: "client",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
227
|
-
this.resourceId = opts.resourceId;
|
|
228
|
-
this.resourceType = opts.resourceType;
|
|
229
|
-
this.quotaCode = opts.quotaCode;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
const _ACH = "AcceptChannelHandshake";
|
|
234
|
-
const _ACHD = "AcceptChannelHandshakeDetail";
|
|
235
|
-
const _ACHR = "AcceptChannelHandshakeRequest";
|
|
236
|
-
const _ACHRc = "AcceptChannelHandshakeResponse";
|
|
237
|
-
const _ADE = "AccessDeniedException";
|
|
238
|
-
const _CCH = "CancelChannelHandshake";
|
|
239
|
-
const _CCHD = "CancelChannelHandshakeDetail";
|
|
240
|
-
const _CCHDr = "CreateChannelHandshakeDetail";
|
|
241
|
-
const _CCHR = "CancelChannelHandshakeRequest";
|
|
242
|
-
const _CCHRa = "CancelChannelHandshakeResponse";
|
|
243
|
-
const _CCHRr = "CreateChannelHandshakeRequest";
|
|
244
|
-
const _CCHRre = "CreateChannelHandshakeResponse";
|
|
245
|
-
const _CCHr = "CreateChannelHandshake";
|
|
246
|
-
const _CE = "ConflictException";
|
|
247
|
-
const _CHP = "ChannelHandshakePayload";
|
|
248
|
-
const _CHS = "ChannelHandshakeSummary";
|
|
249
|
-
const _CHSh = "ChannelHandshakeSummaries";
|
|
250
|
-
const _CPMA = "CreateProgramManagementAccount";
|
|
251
|
-
const _CPMAD = "CreateProgramManagementAccountDetail";
|
|
252
|
-
const _CPMAR = "CreateProgramManagementAccountRequest";
|
|
253
|
-
const _CPMARr = "CreateProgramManagementAccountResponse";
|
|
254
|
-
const _CR = "CreateRelationship";
|
|
255
|
-
const _CRD = "CreateRelationshipDetail";
|
|
256
|
-
const _CRR = "CreateRelationshipRequest";
|
|
257
|
-
const _CRRr = "CreateRelationshipResponse";
|
|
258
|
-
const _DPMA = "DeleteProgramManagementAccount";
|
|
259
|
-
const _DPMAR = "DeleteProgramManagementAccountRequest";
|
|
260
|
-
const _DPMARe = "DeleteProgramManagementAccountResponse";
|
|
261
|
-
const _DR = "DeleteRelationship";
|
|
262
|
-
const _DRR = "DeleteRelationshipRequest";
|
|
263
|
-
const _DRRe = "DeleteRelationshipResponse";
|
|
264
|
-
const _GR = "GetRelationship";
|
|
265
|
-
const _GRR = "GetRelationshipRequest";
|
|
266
|
-
const _GRRe = "GetRelationshipResponse";
|
|
267
|
-
const _HD = "HandshakeDetail";
|
|
268
|
-
const _ISE = "InternalServerException";
|
|
269
|
-
const _LCH = "ListChannelHandshakes";
|
|
270
|
-
const _LCHR = "ListChannelHandshakesRequest";
|
|
271
|
-
const _LCHRi = "ListChannelHandshakesResponse";
|
|
272
|
-
const _LCHTF = "ListChannelHandshakesTypeFilters";
|
|
273
|
-
const _LCHTS = "ListChannelHandshakesTypeSort";
|
|
274
|
-
const _LPMA = "ListProgramManagementAccounts";
|
|
275
|
-
const _LPMAR = "ListProgramManagementAccountsRequest";
|
|
276
|
-
const _LPMARi = "ListProgramManagementAccountsResponse";
|
|
277
|
-
const _LPMASB = "ListProgramManagementAccountsSortBase";
|
|
278
|
-
const _LR = "ListRelationships";
|
|
279
|
-
const _LRR = "ListRelationshipsRequest";
|
|
280
|
-
const _LRRi = "ListRelationshipsResponse";
|
|
281
|
-
const _LRSB = "ListRelationshipsSortBase";
|
|
282
|
-
const _LTFR = "ListTagsForResource";
|
|
283
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
284
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
285
|
-
const _PLS = "PartnerLedSupport";
|
|
286
|
-
const _PMAHD = "ProgramManagementAccountHandshakeDetail";
|
|
287
|
-
const _PMAS = "ProgramManagementAccountSummary";
|
|
288
|
-
const _PMASr = "ProgramManagementAccountSummaries";
|
|
289
|
-
const _PMATF = "ProgramManagementAccountTypeFilters";
|
|
290
|
-
const _PMATS = "ProgramManagementAccountTypeSort";
|
|
291
|
-
const _RB = "ResoldBusiness";
|
|
292
|
-
const _RCH = "RejectChannelHandshake";
|
|
293
|
-
const _RCHD = "RejectChannelHandshakeDetail";
|
|
294
|
-
const _RCHR = "RejectChannelHandshakeRequest";
|
|
295
|
-
const _RCHRe = "RejectChannelHandshakeResponse";
|
|
296
|
-
const _RD = "RelationshipDetail";
|
|
297
|
-
const _RE = "ResoldEnterprise";
|
|
298
|
-
const _RNFE = "ResourceNotFoundException";
|
|
299
|
-
const _RS = "RelationshipSummary";
|
|
300
|
-
const _RSPHD = "RevokeServicePeriodHandshakeDetail";
|
|
301
|
-
const _RSPP = "RevokeServicePeriodPayload";
|
|
302
|
-
const _RSPTF = "RevokeServicePeriodTypeFilters";
|
|
303
|
-
const _RSPTS = "RevokeServicePeriodTypeSort";
|
|
304
|
-
const _RSe = "RelationshipSummaries";
|
|
305
|
-
const _SP = "SupportPlan";
|
|
306
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
307
|
-
const _SSPHD = "StartServicePeriodHandshakeDetail";
|
|
308
|
-
const _SSPP = "StartServicePeriodPayload";
|
|
309
|
-
const _SSPTF = "StartServicePeriodTypeFilters";
|
|
310
|
-
const _SSPTS = "StartServicePeriodTypeSort";
|
|
311
|
-
const _T = "Tag";
|
|
312
|
-
const _TE = "ThrottlingException";
|
|
313
|
-
const _TL = "TagList";
|
|
314
|
-
const _TR = "TagResource";
|
|
315
|
-
const _TRR = "TagResourceRequest";
|
|
316
|
-
const _TRRa = "TagResourceResponse";
|
|
317
|
-
const _UPMA = "UpdateProgramManagementAccount";
|
|
318
|
-
const _UPMAD = "UpdateProgramManagementAccountDetail";
|
|
319
|
-
const _UPMAR = "UpdateProgramManagementAccountRequest";
|
|
320
|
-
const _UPMARp = "UpdateProgramManagementAccountResponse";
|
|
321
|
-
const _UR = "UntagResource";
|
|
322
|
-
const _URD = "UpdateRelationshipDetail";
|
|
323
|
-
const _URR = "UntagResourceRequest";
|
|
324
|
-
const _URRn = "UntagResourceResponse";
|
|
325
|
-
const _URRp = "UpdateRelationshipRequest";
|
|
326
|
-
const _URRpd = "UpdateRelationshipResponse";
|
|
327
|
-
const _URp = "UpdateRelationship";
|
|
328
|
-
const _VE = "ValidationException";
|
|
329
|
-
const _VEF = "ValidationExceptionField";
|
|
330
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
331
|
-
const _a = "arn";
|
|
332
|
-
const _aAI = "associatedAccountId";
|
|
333
|
-
const _aAIs = "associatedAccountIds";
|
|
334
|
-
const _aI = "accountId";
|
|
335
|
-
const _aIc = "accountIds";
|
|
336
|
-
const _aRI = "associatedResourceId";
|
|
337
|
-
const _aRIs = "associatedResourceIdentifier";
|
|
338
|
-
const _aRIss = "associatedResourceIdentifiers";
|
|
339
|
-
const _aT = "associationType";
|
|
340
|
-
const _aTs = "associationTypes";
|
|
341
|
-
const _c = "catalog";
|
|
342
|
-
const _cA = "createdAt";
|
|
343
|
-
const _cAI = "chargeAccountId";
|
|
344
|
-
const _cHD = "channelHandshakeDetail";
|
|
345
|
-
const _cT = "clientToken";
|
|
346
|
-
const _cl = "client";
|
|
347
|
-
const _co = "coverage";
|
|
348
|
-
const _cod = "code";
|
|
349
|
-
const _d = "detail";
|
|
350
|
-
const _dN = "displayName";
|
|
351
|
-
const _dNi = "displayNames";
|
|
352
|
-
const _e = "error";
|
|
353
|
-
const _eD = "endDate";
|
|
354
|
-
const _fL = "fieldList";
|
|
355
|
-
const _h = "http";
|
|
356
|
-
const _hE = "httpError";
|
|
357
|
-
const _hT = "handshakeType";
|
|
358
|
-
const _hTF = "handshakeTypeFilters";
|
|
359
|
-
const _hTS = "handshakeTypeSort";
|
|
360
|
-
const _i = "id";
|
|
361
|
-
const _id = "identifier";
|
|
362
|
-
const _it = "items";
|
|
363
|
-
const _k = "key";
|
|
364
|
-
const _m = "message";
|
|
365
|
-
const _mND = "minimumNoticeDays";
|
|
366
|
-
const _mR = "maxResults";
|
|
367
|
-
const _n = "note";
|
|
368
|
-
const _nT = "nextToken";
|
|
369
|
-
const _na = "name";
|
|
370
|
-
const _oAI = "ownerAccountId";
|
|
371
|
-
const _p = "payload";
|
|
372
|
-
const _pLS = "partnerLedSupport";
|
|
373
|
-
const _pMAD = "programManagementAccountDetail";
|
|
374
|
-
const _pMAHD = "programManagementAccountHandshakeDetail";
|
|
375
|
-
const _pMAI = "programManagementAccountIdentifier";
|
|
376
|
-
const _pMAIr = "programManagementAccountIdentifiers";
|
|
377
|
-
const _pMAIro = "programManagementAccountId";
|
|
378
|
-
const _pMATF = "programManagementAccountTypeFilters";
|
|
379
|
-
const _pMATS = "programManagementAccountTypeSort";
|
|
380
|
-
const _pT = "participantType";
|
|
381
|
-
const _pr = "program";
|
|
382
|
-
const _pro = "programs";
|
|
383
|
-
const _prov = "provider";
|
|
384
|
-
const _qC = "quotaCode";
|
|
385
|
-
const _r = "reason";
|
|
386
|
-
const _rA = "resourceArn";
|
|
387
|
-
const _rAI = "receiverAccountId";
|
|
388
|
-
const _rAM = "resaleAccountModel";
|
|
389
|
-
const _rB = "resoldBusiness";
|
|
390
|
-
const _rD = "relationshipDetail";
|
|
391
|
-
const _rE = "resoldEnterprise";
|
|
392
|
-
const _rI = "resourceId";
|
|
393
|
-
const _rSP = "requestedSupportPlan";
|
|
394
|
-
const _rSPHD = "revokeServicePeriodHandshakeDetail";
|
|
395
|
-
const _rSPP = "revokeServicePeriodPayload";
|
|
396
|
-
const _rSPTF = "revokeServicePeriodTypeFilters";
|
|
397
|
-
const _rSPTS = "revokeServicePeriodTypeSort";
|
|
398
|
-
const _rT = "resourceType";
|
|
399
|
-
const _re = "revision";
|
|
400
|
-
const _s = "status";
|
|
401
|
-
const _sAI = "senderAccountId";
|
|
402
|
-
const _sB = "sortBy";
|
|
403
|
-
const _sC = "serviceCode";
|
|
404
|
-
const _sD = "startDate";
|
|
405
|
-
const _sDN = "senderDisplayName";
|
|
406
|
-
const _sO = "sortOrder";
|
|
407
|
-
const _sPT = "servicePeriodType";
|
|
408
|
-
const _sPTe = "servicePeriodTypes";
|
|
409
|
-
const _sSPHD = "startServicePeriodHandshakeDetail";
|
|
410
|
-
const _sSPP = "startServicePeriodPayload";
|
|
411
|
-
const _sSPTF = "startServicePeriodTypeFilters";
|
|
412
|
-
const _sSPTS = "startServicePeriodTypeSort";
|
|
413
|
-
const _se = "sector";
|
|
414
|
-
const _ser = "server";
|
|
415
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.partnercentralchannel";
|
|
416
|
-
const _so = "sort";
|
|
417
|
-
const _st = "statuses";
|
|
418
|
-
const _t = "tags";
|
|
419
|
-
const _tK = "tagKeys";
|
|
420
|
-
const _tL = "tamLocation";
|
|
421
|
-
const _uA = "updatedAt";
|
|
422
|
-
const _v = "value";
|
|
423
|
-
const n0 = "com.amazonaws.partnercentralchannel";
|
|
424
|
-
var AcceptChannelHandshakeDetail$ = [3, n0, _ACHD,
|
|
425
|
-
0,
|
|
426
|
-
[_i, _a, _s],
|
|
427
|
-
[0, 0, 0]
|
|
428
|
-
];
|
|
429
|
-
var AcceptChannelHandshakeRequest$ = [3, n0, _ACHR,
|
|
430
|
-
0,
|
|
431
|
-
[_c, _id],
|
|
432
|
-
[0, 0], 2
|
|
433
|
-
];
|
|
434
|
-
var AcceptChannelHandshakeResponse$ = [3, n0, _ACHRc,
|
|
435
|
-
0,
|
|
436
|
-
[_cHD],
|
|
437
|
-
[() => AcceptChannelHandshakeDetail$]
|
|
438
|
-
];
|
|
439
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
440
|
-
{ [_e]: _cl, [_hE]: 403 },
|
|
441
|
-
[_m, _r],
|
|
442
|
-
[0, 0], 1
|
|
443
|
-
];
|
|
444
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
445
|
-
var CancelChannelHandshakeDetail$ = [3, n0, _CCHD,
|
|
446
|
-
0,
|
|
447
|
-
[_i, _a, _s],
|
|
448
|
-
[0, 0, 0]
|
|
449
|
-
];
|
|
450
|
-
var CancelChannelHandshakeRequest$ = [3, n0, _CCHR,
|
|
451
|
-
0,
|
|
452
|
-
[_c, _id],
|
|
453
|
-
[0, 0], 2
|
|
454
|
-
];
|
|
455
|
-
var CancelChannelHandshakeResponse$ = [3, n0, _CCHRa,
|
|
456
|
-
0,
|
|
457
|
-
[_cHD],
|
|
458
|
-
[() => CancelChannelHandshakeDetail$]
|
|
459
|
-
];
|
|
460
|
-
var ChannelHandshakeSummary$ = [3, n0, _CHS,
|
|
461
|
-
0,
|
|
462
|
-
[_i, _a, _c, _hT, _oAI, _sAI, _sDN, _rAI, _aRI, _d, _cA, _uA, _s],
|
|
463
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => HandshakeDetail$, 5, 5, 0]
|
|
464
|
-
];
|
|
465
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
466
|
-
{ [_e]: _cl, [_hE]: 409 },
|
|
467
|
-
[_m, _rI, _rT],
|
|
468
|
-
[0, 0, 0], 3
|
|
469
|
-
];
|
|
470
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
471
|
-
var CreateChannelHandshakeDetail$ = [3, n0, _CCHDr,
|
|
472
|
-
0,
|
|
473
|
-
[_i, _a],
|
|
474
|
-
[0, 0]
|
|
475
|
-
];
|
|
476
|
-
var CreateChannelHandshakeRequest$ = [3, n0, _CCHRr,
|
|
477
|
-
0,
|
|
478
|
-
[_hT, _c, _aRIs, _p, _cT, _t],
|
|
479
|
-
[0, 0, 0, () => ChannelHandshakePayload$, [0, 4], () => TagList], 3
|
|
480
|
-
];
|
|
481
|
-
var CreateChannelHandshakeResponse$ = [3, n0, _CCHRre,
|
|
482
|
-
0,
|
|
483
|
-
[_cHD],
|
|
484
|
-
[() => CreateChannelHandshakeDetail$]
|
|
485
|
-
];
|
|
486
|
-
var CreateProgramManagementAccountDetail$ = [3, n0, _CPMAD,
|
|
487
|
-
0,
|
|
488
|
-
[_i, _a],
|
|
489
|
-
[0, 0]
|
|
490
|
-
];
|
|
491
|
-
var CreateProgramManagementAccountRequest$ = [3, n0, _CPMAR,
|
|
492
|
-
0,
|
|
493
|
-
[_c, _pr, _dN, _aI, _cT, _t],
|
|
494
|
-
[0, 0, 0, 0, [0, 4], () => TagList], 4
|
|
495
|
-
];
|
|
496
|
-
var CreateProgramManagementAccountResponse$ = [3, n0, _CPMARr,
|
|
497
|
-
0,
|
|
498
|
-
[_pMAD],
|
|
499
|
-
[() => CreateProgramManagementAccountDetail$]
|
|
500
|
-
];
|
|
501
|
-
var CreateRelationshipDetail$ = [3, n0, _CRD,
|
|
502
|
-
0,
|
|
503
|
-
[_a, _i],
|
|
504
|
-
[0, 0]
|
|
505
|
-
];
|
|
506
|
-
var CreateRelationshipRequest$ = [3, n0, _CRR,
|
|
507
|
-
0,
|
|
508
|
-
[_c, _aT, _pMAI, _aAI, _dN, _se, _rAM, _cT, _t, _rSP],
|
|
509
|
-
[0, 0, 0, 0, 0, 0, 0, [0, 4], () => TagList, () => SupportPlan$], 6
|
|
510
|
-
];
|
|
511
|
-
var CreateRelationshipResponse$ = [3, n0, _CRRr,
|
|
512
|
-
0,
|
|
513
|
-
[_rD],
|
|
514
|
-
[() => CreateRelationshipDetail$]
|
|
515
|
-
];
|
|
516
|
-
var DeleteProgramManagementAccountRequest$ = [3, n0, _DPMAR,
|
|
517
|
-
0,
|
|
518
|
-
[_c, _id, _cT],
|
|
519
|
-
[0, 0, [0, 4]], 2
|
|
520
|
-
];
|
|
521
|
-
var DeleteProgramManagementAccountResponse$ = [3, n0, _DPMARe,
|
|
522
|
-
0,
|
|
523
|
-
[],
|
|
524
|
-
[]
|
|
525
|
-
];
|
|
526
|
-
var DeleteRelationshipRequest$ = [3, n0, _DRR,
|
|
527
|
-
0,
|
|
528
|
-
[_c, _id, _pMAI, _cT],
|
|
529
|
-
[0, 0, 0, [0, 4]], 3
|
|
530
|
-
];
|
|
531
|
-
var DeleteRelationshipResponse$ = [3, n0, _DRRe,
|
|
532
|
-
0,
|
|
533
|
-
[],
|
|
534
|
-
[]
|
|
535
|
-
];
|
|
536
|
-
var GetRelationshipRequest$ = [3, n0, _GRR,
|
|
537
|
-
0,
|
|
538
|
-
[_c, _pMAI, _id],
|
|
539
|
-
[0, 0, 0], 3
|
|
540
|
-
];
|
|
541
|
-
var GetRelationshipResponse$ = [3, n0, _GRRe,
|
|
542
|
-
0,
|
|
543
|
-
[_rD],
|
|
544
|
-
[() => RelationshipDetail$]
|
|
545
|
-
];
|
|
546
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
547
|
-
{ [_e]: _ser, [_hE]: 500 },
|
|
548
|
-
[_m],
|
|
549
|
-
[0], 1
|
|
550
|
-
];
|
|
551
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
552
|
-
var ListChannelHandshakesRequest$ = [3, n0, _LCHR,
|
|
553
|
-
0,
|
|
554
|
-
[_hT, _c, _pT, _mR, _st, _aRIss, _hTF, _hTS, _nT],
|
|
555
|
-
[0, 0, 0, 1, 64 | 0, 64 | 0, () => ListChannelHandshakesTypeFilters$, () => ListChannelHandshakesTypeSort$, 0], 3
|
|
556
|
-
];
|
|
557
|
-
var ListChannelHandshakesResponse$ = [3, n0, _LCHRi,
|
|
558
|
-
0,
|
|
559
|
-
[_it, _nT],
|
|
560
|
-
[() => ChannelHandshakeSummaries, 0]
|
|
561
|
-
];
|
|
562
|
-
var ListProgramManagementAccountsRequest$ = [3, n0, _LPMAR,
|
|
563
|
-
0,
|
|
564
|
-
[_c, _mR, _dNi, _pro, _aIc, _st, _so, _nT],
|
|
565
|
-
[0, 1, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => ListProgramManagementAccountsSortBase$, 0], 1
|
|
566
|
-
];
|
|
567
|
-
var ListProgramManagementAccountsResponse$ = [3, n0, _LPMARi,
|
|
568
|
-
0,
|
|
569
|
-
[_it, _nT],
|
|
570
|
-
[() => ProgramManagementAccountSummaries, 0]
|
|
571
|
-
];
|
|
572
|
-
var ListProgramManagementAccountsSortBase$ = [3, n0, _LPMASB,
|
|
573
|
-
0,
|
|
574
|
-
[_sO, _sB],
|
|
575
|
-
[0, 0], 2
|
|
576
|
-
];
|
|
577
|
-
var ListRelationshipsRequest$ = [3, n0, _LRR,
|
|
578
|
-
0,
|
|
579
|
-
[_c, _mR, _aAIs, _aTs, _dNi, _pMAIr, _so, _nT],
|
|
580
|
-
[0, 1, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => ListRelationshipsSortBase$, 0], 1
|
|
581
|
-
];
|
|
582
|
-
var ListRelationshipsResponse$ = [3, n0, _LRRi,
|
|
583
|
-
0,
|
|
584
|
-
[_it, _nT],
|
|
585
|
-
[() => RelationshipSummaries, 0]
|
|
586
|
-
];
|
|
587
|
-
var ListRelationshipsSortBase$ = [3, n0, _LRSB,
|
|
588
|
-
0,
|
|
589
|
-
[_sO, _sB],
|
|
590
|
-
[0, 0], 2
|
|
591
|
-
];
|
|
592
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
593
|
-
0,
|
|
594
|
-
[_rA],
|
|
595
|
-
[0], 1
|
|
596
|
-
];
|
|
597
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
598
|
-
0,
|
|
599
|
-
[_t],
|
|
600
|
-
[() => TagList]
|
|
601
|
-
];
|
|
602
|
-
var PartnerLedSupport$ = [3, n0, _PLS,
|
|
603
|
-
0,
|
|
604
|
-
[_co, _tL, _prov],
|
|
605
|
-
[0, 0, 0], 2
|
|
606
|
-
];
|
|
607
|
-
var ProgramManagementAccountHandshakeDetail$ = [3, n0, _PMAHD,
|
|
608
|
-
0,
|
|
609
|
-
[_pr],
|
|
610
|
-
[0]
|
|
611
|
-
];
|
|
612
|
-
var ProgramManagementAccountSummary$ = [3, n0, _PMAS,
|
|
613
|
-
0,
|
|
614
|
-
[_i, _re, _c, _pr, _dN, _aI, _a, _cA, _uA, _sD, _s],
|
|
615
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0]
|
|
616
|
-
];
|
|
617
|
-
var ProgramManagementAccountTypeFilters$ = [3, n0, _PMATF,
|
|
618
|
-
0,
|
|
619
|
-
[_pro],
|
|
620
|
-
[64 | 0]
|
|
621
|
-
];
|
|
622
|
-
var ProgramManagementAccountTypeSort$ = [3, n0, _PMATS,
|
|
623
|
-
0,
|
|
624
|
-
[_sO, _sB],
|
|
625
|
-
[0, 0], 2
|
|
626
|
-
];
|
|
627
|
-
var RejectChannelHandshakeDetail$ = [3, n0, _RCHD,
|
|
628
|
-
0,
|
|
629
|
-
[_i, _a, _s],
|
|
630
|
-
[0, 0, 0]
|
|
631
|
-
];
|
|
632
|
-
var RejectChannelHandshakeRequest$ = [3, n0, _RCHR,
|
|
633
|
-
0,
|
|
634
|
-
[_c, _id],
|
|
635
|
-
[0, 0], 2
|
|
636
|
-
];
|
|
637
|
-
var RejectChannelHandshakeResponse$ = [3, n0, _RCHRe,
|
|
638
|
-
0,
|
|
639
|
-
[_cHD],
|
|
640
|
-
[() => RejectChannelHandshakeDetail$]
|
|
641
|
-
];
|
|
642
|
-
var RelationshipDetail$ = [3, n0, _RD,
|
|
643
|
-
0,
|
|
644
|
-
[_a, _i, _re, _c, _aT, _pMAIro, _aAI, _dN, _rAM, _se, _cA, _uA, _sD],
|
|
645
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5]
|
|
646
|
-
];
|
|
647
|
-
var RelationshipSummary$ = [3, n0, _RS,
|
|
648
|
-
0,
|
|
649
|
-
[_a, _i, _re, _c, _aT, _pMAIro, _aAI, _dN, _se, _cA, _uA, _sD],
|
|
650
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5]
|
|
651
|
-
];
|
|
652
|
-
var ResoldBusiness$ = [3, n0, _RB,
|
|
653
|
-
0,
|
|
654
|
-
[_co],
|
|
655
|
-
[0], 1
|
|
656
|
-
];
|
|
657
|
-
var ResoldEnterprise$ = [3, n0, _RE,
|
|
658
|
-
0,
|
|
659
|
-
[_co, _tL, _cAI],
|
|
660
|
-
[0, 0, 0], 2
|
|
661
|
-
];
|
|
662
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
663
|
-
{ [_e]: _cl, [_hE]: 404 },
|
|
664
|
-
[_m, _rI, _rT],
|
|
665
|
-
[0, 0, 0], 1
|
|
666
|
-
];
|
|
667
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
668
|
-
var RevokeServicePeriodHandshakeDetail$ = [3, n0, _RSPHD,
|
|
669
|
-
0,
|
|
670
|
-
[_n, _sPT, _mND, _sD, _eD],
|
|
671
|
-
[0, 0, 0, 5, 5]
|
|
672
|
-
];
|
|
673
|
-
var RevokeServicePeriodPayload$ = [3, n0, _RSPP,
|
|
674
|
-
0,
|
|
675
|
-
[_pMAI, _n],
|
|
676
|
-
[0, 0], 1
|
|
677
|
-
];
|
|
678
|
-
var RevokeServicePeriodTypeFilters$ = [3, n0, _RSPTF,
|
|
679
|
-
0,
|
|
680
|
-
[_sPTe],
|
|
681
|
-
[64 | 0]
|
|
682
|
-
];
|
|
683
|
-
var RevokeServicePeriodTypeSort$ = [3, n0, _RSPTS,
|
|
684
|
-
0,
|
|
685
|
-
[_sO, _sB],
|
|
686
|
-
[0, 0], 2
|
|
687
|
-
];
|
|
688
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
689
|
-
{ [_e]: _cl, [_hE]: 402 },
|
|
690
|
-
[_m, _rI, _rT, _qC],
|
|
691
|
-
[0, 0, 0, 0], 4
|
|
692
|
-
];
|
|
693
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
694
|
-
var StartServicePeriodHandshakeDetail$ = [3, n0, _SSPHD,
|
|
695
|
-
0,
|
|
696
|
-
[_n, _sPT, _mND, _sD, _eD],
|
|
697
|
-
[0, 0, 0, 5, 5]
|
|
698
|
-
];
|
|
699
|
-
var StartServicePeriodPayload$ = [3, n0, _SSPP,
|
|
700
|
-
0,
|
|
701
|
-
[_pMAI, _sPT, _n, _mND, _eD],
|
|
702
|
-
[0, 0, 0, 0, 5], 2
|
|
703
|
-
];
|
|
704
|
-
var StartServicePeriodTypeFilters$ = [3, n0, _SSPTF,
|
|
705
|
-
0,
|
|
706
|
-
[_sPTe],
|
|
707
|
-
[64 | 0]
|
|
708
|
-
];
|
|
709
|
-
var StartServicePeriodTypeSort$ = [3, n0, _SSPTS,
|
|
710
|
-
0,
|
|
711
|
-
[_sO, _sB],
|
|
712
|
-
[0, 0], 2
|
|
713
|
-
];
|
|
714
|
-
var Tag$ = [3, n0, _T,
|
|
715
|
-
0,
|
|
716
|
-
[_k, _v],
|
|
717
|
-
[0, 0], 2
|
|
718
|
-
];
|
|
719
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
720
|
-
0,
|
|
721
|
-
[_rA, _t],
|
|
722
|
-
[0, () => TagList], 2
|
|
723
|
-
];
|
|
724
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
725
|
-
0,
|
|
726
|
-
[],
|
|
727
|
-
[]
|
|
728
|
-
];
|
|
729
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
730
|
-
{ [_e]: _cl, [_hE]: 429 },
|
|
731
|
-
[_m, _sC, _qC],
|
|
732
|
-
[0, 0, 0], 1
|
|
733
|
-
];
|
|
734
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
735
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
736
|
-
0,
|
|
737
|
-
[_rA, _tK],
|
|
738
|
-
[0, 64 | 0], 2
|
|
739
|
-
];
|
|
740
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
741
|
-
0,
|
|
742
|
-
[],
|
|
743
|
-
[]
|
|
744
|
-
];
|
|
745
|
-
var UpdateProgramManagementAccountDetail$ = [3, n0, _UPMAD,
|
|
746
|
-
0,
|
|
747
|
-
[_i, _a, _re, _dN],
|
|
748
|
-
[0, 0, 0, 0]
|
|
749
|
-
];
|
|
750
|
-
var UpdateProgramManagementAccountRequest$ = [3, n0, _UPMAR,
|
|
751
|
-
0,
|
|
752
|
-
[_c, _id, _re, _dN],
|
|
753
|
-
[0, 0, 0, 0], 2
|
|
754
|
-
];
|
|
755
|
-
var UpdateProgramManagementAccountResponse$ = [3, n0, _UPMARp,
|
|
756
|
-
0,
|
|
757
|
-
[_pMAD],
|
|
758
|
-
[() => UpdateProgramManagementAccountDetail$]
|
|
759
|
-
];
|
|
760
|
-
var UpdateRelationshipDetail$ = [3, n0, _URD,
|
|
761
|
-
0,
|
|
762
|
-
[_a, _i, _re, _dN],
|
|
763
|
-
[0, 0, 0, 0]
|
|
764
|
-
];
|
|
765
|
-
var UpdateRelationshipRequest$ = [3, n0, _URRp,
|
|
766
|
-
0,
|
|
767
|
-
[_c, _id, _pMAI, _re, _dN, _rSP],
|
|
768
|
-
[0, 0, 0, 0, 0, () => SupportPlan$], 3
|
|
769
|
-
];
|
|
770
|
-
var UpdateRelationshipResponse$ = [3, n0, _URRpd,
|
|
771
|
-
0,
|
|
772
|
-
[_rD],
|
|
773
|
-
[() => UpdateRelationshipDetail$]
|
|
774
|
-
];
|
|
775
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
776
|
-
{ [_e]: _cl, [_hE]: 400 },
|
|
777
|
-
[_m, _r, _fL],
|
|
778
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
779
|
-
];
|
|
780
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
781
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
782
|
-
0,
|
|
783
|
-
[_na, _cod, _m],
|
|
784
|
-
[0, 0, 0], 3
|
|
785
|
-
];
|
|
786
|
-
var PartnerCentralChannelServiceException$ = [-3, _sm, "PartnerCentralChannelServiceException", 0, [], []];
|
|
787
|
-
schema.TypeRegistry.for(_sm).registerError(PartnerCentralChannelServiceException$, PartnerCentralChannelServiceException);
|
|
788
|
-
var ChannelHandshakeSummaries = [1, n0, _CHSh,
|
|
789
|
-
0, () => ChannelHandshakeSummary$
|
|
790
|
-
];
|
|
791
|
-
var ProgramManagementAccountSummaries = [1, n0, _PMASr,
|
|
792
|
-
0, () => ProgramManagementAccountSummary$
|
|
793
|
-
];
|
|
794
|
-
var RelationshipSummaries = [1, n0, _RSe,
|
|
795
|
-
0, () => RelationshipSummary$
|
|
796
|
-
];
|
|
797
|
-
var TagList = [1, n0, _TL,
|
|
798
|
-
0, () => Tag$
|
|
799
|
-
];
|
|
800
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
801
|
-
0, () => ValidationExceptionField$
|
|
802
|
-
];
|
|
803
|
-
var ChannelHandshakePayload$ = [4, n0, _CHP,
|
|
804
|
-
0,
|
|
805
|
-
[_sSPP, _rSPP],
|
|
806
|
-
[() => StartServicePeriodPayload$, () => RevokeServicePeriodPayload$]
|
|
807
|
-
];
|
|
808
|
-
var HandshakeDetail$ = [4, n0, _HD,
|
|
809
|
-
0,
|
|
810
|
-
[_sSPHD, _rSPHD, _pMAHD],
|
|
811
|
-
[() => StartServicePeriodHandshakeDetail$, () => RevokeServicePeriodHandshakeDetail$, () => ProgramManagementAccountHandshakeDetail$]
|
|
812
|
-
];
|
|
813
|
-
var ListChannelHandshakesTypeFilters$ = [4, n0, _LCHTF,
|
|
814
|
-
0,
|
|
815
|
-
[_sSPTF, _rSPTF, _pMATF],
|
|
816
|
-
[() => StartServicePeriodTypeFilters$, () => RevokeServicePeriodTypeFilters$, () => ProgramManagementAccountTypeFilters$]
|
|
817
|
-
];
|
|
818
|
-
var ListChannelHandshakesTypeSort$ = [4, n0, _LCHTS,
|
|
819
|
-
0,
|
|
820
|
-
[_sSPTS, _rSPTS, _pMATS],
|
|
821
|
-
[() => StartServicePeriodTypeSort$, () => RevokeServicePeriodTypeSort$, () => ProgramManagementAccountTypeSort$]
|
|
822
|
-
];
|
|
823
|
-
var SupportPlan$ = [4, n0, _SP,
|
|
824
|
-
0,
|
|
825
|
-
[_rB, _rE, _pLS],
|
|
826
|
-
[() => ResoldBusiness$, () => ResoldEnterprise$, () => PartnerLedSupport$]
|
|
827
|
-
];
|
|
828
|
-
var AcceptChannelHandshake$ = [9, n0, _ACH,
|
|
829
|
-
{ [_h]: ["POST", "/AcceptChannelHandshake", 200] }, () => AcceptChannelHandshakeRequest$, () => AcceptChannelHandshakeResponse$
|
|
830
|
-
];
|
|
831
|
-
var CancelChannelHandshake$ = [9, n0, _CCH,
|
|
832
|
-
{ [_h]: ["POST", "/CancelChannelHandshake", 200] }, () => CancelChannelHandshakeRequest$, () => CancelChannelHandshakeResponse$
|
|
833
|
-
];
|
|
834
|
-
var CreateChannelHandshake$ = [9, n0, _CCHr,
|
|
835
|
-
{ [_h]: ["POST", "/CreateChannelHandshake", 200] }, () => CreateChannelHandshakeRequest$, () => CreateChannelHandshakeResponse$
|
|
836
|
-
];
|
|
837
|
-
var CreateProgramManagementAccount$ = [9, n0, _CPMA,
|
|
838
|
-
{ [_h]: ["POST", "/CreateProgramManagementAccount", 200] }, () => CreateProgramManagementAccountRequest$, () => CreateProgramManagementAccountResponse$
|
|
839
|
-
];
|
|
840
|
-
var CreateRelationship$ = [9, n0, _CR,
|
|
841
|
-
{ [_h]: ["POST", "/CreateRelationship", 200] }, () => CreateRelationshipRequest$, () => CreateRelationshipResponse$
|
|
842
|
-
];
|
|
843
|
-
var DeleteProgramManagementAccount$ = [9, n0, _DPMA,
|
|
844
|
-
{ [_h]: ["POST", "/DeleteProgramManagementAccount", 200] }, () => DeleteProgramManagementAccountRequest$, () => DeleteProgramManagementAccountResponse$
|
|
845
|
-
];
|
|
846
|
-
var DeleteRelationship$ = [9, n0, _DR,
|
|
847
|
-
{ [_h]: ["POST", "/DeleteRelationship", 200] }, () => DeleteRelationshipRequest$, () => DeleteRelationshipResponse$
|
|
848
|
-
];
|
|
849
|
-
var GetRelationship$ = [9, n0, _GR,
|
|
850
|
-
{ [_h]: ["POST", "/GetRelationship", 200] }, () => GetRelationshipRequest$, () => GetRelationshipResponse$
|
|
851
|
-
];
|
|
852
|
-
var ListChannelHandshakes$ = [9, n0, _LCH,
|
|
853
|
-
{ [_h]: ["POST", "/ListChannelHandshakes", 200] }, () => ListChannelHandshakesRequest$, () => ListChannelHandshakesResponse$
|
|
854
|
-
];
|
|
855
|
-
var ListProgramManagementAccounts$ = [9, n0, _LPMA,
|
|
856
|
-
{ [_h]: ["POST", "/ListProgramManagementAccounts", 200] }, () => ListProgramManagementAccountsRequest$, () => ListProgramManagementAccountsResponse$
|
|
857
|
-
];
|
|
858
|
-
var ListRelationships$ = [9, n0, _LR,
|
|
859
|
-
{ [_h]: ["POST", "/ListRelationships", 200] }, () => ListRelationshipsRequest$, () => ListRelationshipsResponse$
|
|
860
|
-
];
|
|
861
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
862
|
-
{ [_h]: ["POST", "/ListTagsForResource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
863
|
-
];
|
|
864
|
-
var RejectChannelHandshake$ = [9, n0, _RCH,
|
|
865
|
-
{ [_h]: ["POST", "/RejectChannelHandshake", 200] }, () => RejectChannelHandshakeRequest$, () => RejectChannelHandshakeResponse$
|
|
866
|
-
];
|
|
867
|
-
var TagResource$ = [9, n0, _TR,
|
|
868
|
-
{ [_h]: ["POST", "/TagResource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
869
|
-
];
|
|
870
|
-
var UntagResource$ = [9, n0, _UR,
|
|
871
|
-
{ [_h]: ["POST", "/UntagResource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
872
|
-
];
|
|
873
|
-
var UpdateProgramManagementAccount$ = [9, n0, _UPMA,
|
|
874
|
-
{ [_h]: ["POST", "/UpdateProgramManagementAccount", 200] }, () => UpdateProgramManagementAccountRequest$, () => UpdateProgramManagementAccountResponse$
|
|
875
|
-
];
|
|
876
|
-
var UpdateRelationship$ = [9, n0, _URp,
|
|
877
|
-
{ [_h]: ["POST", "/UpdateRelationship", 200] }, () => UpdateRelationshipRequest$, () => UpdateRelationshipResponse$
|
|
878
|
-
];
|
|
879
|
-
|
|
880
115
|
class AcceptChannelHandshakeCommand extends smithyClient.Command
|
|
881
116
|
.classBuilder()
|
|
882
117
|
.ep(commonParams)
|
|
@@ -885,7 +120,7 @@ class AcceptChannelHandshakeCommand extends smithyClient.Command
|
|
|
885
120
|
})
|
|
886
121
|
.s("PartnerCentralChannel", "AcceptChannelHandshake", {})
|
|
887
122
|
.n("PartnerCentralChannelClient", "AcceptChannelHandshakeCommand")
|
|
888
|
-
.sc(AcceptChannelHandshake$)
|
|
123
|
+
.sc(schemas_0.AcceptChannelHandshake$)
|
|
889
124
|
.build() {
|
|
890
125
|
}
|
|
891
126
|
|
|
@@ -897,7 +132,7 @@ class CancelChannelHandshakeCommand extends smithyClient.Command
|
|
|
897
132
|
})
|
|
898
133
|
.s("PartnerCentralChannel", "CancelChannelHandshake", {})
|
|
899
134
|
.n("PartnerCentralChannelClient", "CancelChannelHandshakeCommand")
|
|
900
|
-
.sc(CancelChannelHandshake$)
|
|
135
|
+
.sc(schemas_0.CancelChannelHandshake$)
|
|
901
136
|
.build() {
|
|
902
137
|
}
|
|
903
138
|
|
|
@@ -909,7 +144,7 @@ class CreateChannelHandshakeCommand extends smithyClient.Command
|
|
|
909
144
|
})
|
|
910
145
|
.s("PartnerCentralChannel", "CreateChannelHandshake", {})
|
|
911
146
|
.n("PartnerCentralChannelClient", "CreateChannelHandshakeCommand")
|
|
912
|
-
.sc(CreateChannelHandshake$)
|
|
147
|
+
.sc(schemas_0.CreateChannelHandshake$)
|
|
913
148
|
.build() {
|
|
914
149
|
}
|
|
915
150
|
|
|
@@ -921,7 +156,7 @@ class CreateProgramManagementAccountCommand extends smithyClient.Command
|
|
|
921
156
|
})
|
|
922
157
|
.s("PartnerCentralChannel", "CreateProgramManagementAccount", {})
|
|
923
158
|
.n("PartnerCentralChannelClient", "CreateProgramManagementAccountCommand")
|
|
924
|
-
.sc(CreateProgramManagementAccount$)
|
|
159
|
+
.sc(schemas_0.CreateProgramManagementAccount$)
|
|
925
160
|
.build() {
|
|
926
161
|
}
|
|
927
162
|
|
|
@@ -933,7 +168,7 @@ class CreateRelationshipCommand extends smithyClient.Command
|
|
|
933
168
|
})
|
|
934
169
|
.s("PartnerCentralChannel", "CreateRelationship", {})
|
|
935
170
|
.n("PartnerCentralChannelClient", "CreateRelationshipCommand")
|
|
936
|
-
.sc(CreateRelationship$)
|
|
171
|
+
.sc(schemas_0.CreateRelationship$)
|
|
937
172
|
.build() {
|
|
938
173
|
}
|
|
939
174
|
|
|
@@ -945,7 +180,7 @@ class DeleteProgramManagementAccountCommand extends smithyClient.Command
|
|
|
945
180
|
})
|
|
946
181
|
.s("PartnerCentralChannel", "DeleteProgramManagementAccount", {})
|
|
947
182
|
.n("PartnerCentralChannelClient", "DeleteProgramManagementAccountCommand")
|
|
948
|
-
.sc(DeleteProgramManagementAccount$)
|
|
183
|
+
.sc(schemas_0.DeleteProgramManagementAccount$)
|
|
949
184
|
.build() {
|
|
950
185
|
}
|
|
951
186
|
|
|
@@ -957,7 +192,7 @@ class DeleteRelationshipCommand extends smithyClient.Command
|
|
|
957
192
|
})
|
|
958
193
|
.s("PartnerCentralChannel", "DeleteRelationship", {})
|
|
959
194
|
.n("PartnerCentralChannelClient", "DeleteRelationshipCommand")
|
|
960
|
-
.sc(DeleteRelationship$)
|
|
195
|
+
.sc(schemas_0.DeleteRelationship$)
|
|
961
196
|
.build() {
|
|
962
197
|
}
|
|
963
198
|
|
|
@@ -969,7 +204,7 @@ class GetRelationshipCommand extends smithyClient.Command
|
|
|
969
204
|
})
|
|
970
205
|
.s("PartnerCentralChannel", "GetRelationship", {})
|
|
971
206
|
.n("PartnerCentralChannelClient", "GetRelationshipCommand")
|
|
972
|
-
.sc(GetRelationship$)
|
|
207
|
+
.sc(schemas_0.GetRelationship$)
|
|
973
208
|
.build() {
|
|
974
209
|
}
|
|
975
210
|
|
|
@@ -981,7 +216,7 @@ class ListChannelHandshakesCommand extends smithyClient.Command
|
|
|
981
216
|
})
|
|
982
217
|
.s("PartnerCentralChannel", "ListChannelHandshakes", {})
|
|
983
218
|
.n("PartnerCentralChannelClient", "ListChannelHandshakesCommand")
|
|
984
|
-
.sc(ListChannelHandshakes$)
|
|
219
|
+
.sc(schemas_0.ListChannelHandshakes$)
|
|
985
220
|
.build() {
|
|
986
221
|
}
|
|
987
222
|
|
|
@@ -993,7 +228,7 @@ class ListProgramManagementAccountsCommand extends smithyClient.Command
|
|
|
993
228
|
})
|
|
994
229
|
.s("PartnerCentralChannel", "ListProgramManagementAccounts", {})
|
|
995
230
|
.n("PartnerCentralChannelClient", "ListProgramManagementAccountsCommand")
|
|
996
|
-
.sc(ListProgramManagementAccounts$)
|
|
231
|
+
.sc(schemas_0.ListProgramManagementAccounts$)
|
|
997
232
|
.build() {
|
|
998
233
|
}
|
|
999
234
|
|
|
@@ -1005,7 +240,7 @@ class ListRelationshipsCommand extends smithyClient.Command
|
|
|
1005
240
|
})
|
|
1006
241
|
.s("PartnerCentralChannel", "ListRelationships", {})
|
|
1007
242
|
.n("PartnerCentralChannelClient", "ListRelationshipsCommand")
|
|
1008
|
-
.sc(ListRelationships$)
|
|
243
|
+
.sc(schemas_0.ListRelationships$)
|
|
1009
244
|
.build() {
|
|
1010
245
|
}
|
|
1011
246
|
|
|
@@ -1017,7 +252,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1017
252
|
})
|
|
1018
253
|
.s("PartnerCentralChannel", "ListTagsForResource", {})
|
|
1019
254
|
.n("PartnerCentralChannelClient", "ListTagsForResourceCommand")
|
|
1020
|
-
.sc(ListTagsForResource$)
|
|
255
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1021
256
|
.build() {
|
|
1022
257
|
}
|
|
1023
258
|
|
|
@@ -1029,7 +264,7 @@ class RejectChannelHandshakeCommand extends smithyClient.Command
|
|
|
1029
264
|
})
|
|
1030
265
|
.s("PartnerCentralChannel", "RejectChannelHandshake", {})
|
|
1031
266
|
.n("PartnerCentralChannelClient", "RejectChannelHandshakeCommand")
|
|
1032
|
-
.sc(RejectChannelHandshake$)
|
|
267
|
+
.sc(schemas_0.RejectChannelHandshake$)
|
|
1033
268
|
.build() {
|
|
1034
269
|
}
|
|
1035
270
|
|
|
@@ -1041,7 +276,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1041
276
|
})
|
|
1042
277
|
.s("PartnerCentralChannel", "TagResource", {})
|
|
1043
278
|
.n("PartnerCentralChannelClient", "TagResourceCommand")
|
|
1044
|
-
.sc(TagResource$)
|
|
279
|
+
.sc(schemas_0.TagResource$)
|
|
1045
280
|
.build() {
|
|
1046
281
|
}
|
|
1047
282
|
|
|
@@ -1053,7 +288,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1053
288
|
})
|
|
1054
289
|
.s("PartnerCentralChannel", "UntagResource", {})
|
|
1055
290
|
.n("PartnerCentralChannelClient", "UntagResourceCommand")
|
|
1056
|
-
.sc(UntagResource$)
|
|
291
|
+
.sc(schemas_0.UntagResource$)
|
|
1057
292
|
.build() {
|
|
1058
293
|
}
|
|
1059
294
|
|
|
@@ -1065,7 +300,7 @@ class UpdateProgramManagementAccountCommand extends smithyClient.Command
|
|
|
1065
300
|
})
|
|
1066
301
|
.s("PartnerCentralChannel", "UpdateProgramManagementAccount", {})
|
|
1067
302
|
.n("PartnerCentralChannelClient", "UpdateProgramManagementAccountCommand")
|
|
1068
|
-
.sc(UpdateProgramManagementAccount$)
|
|
303
|
+
.sc(schemas_0.UpdateProgramManagementAccount$)
|
|
1069
304
|
.build() {
|
|
1070
305
|
}
|
|
1071
306
|
|
|
@@ -1077,7 +312,7 @@ class UpdateRelationshipCommand extends smithyClient.Command
|
|
|
1077
312
|
})
|
|
1078
313
|
.s("PartnerCentralChannel", "UpdateRelationship", {})
|
|
1079
314
|
.n("PartnerCentralChannelClient", "UpdateRelationshipCommand")
|
|
1080
|
-
.sc(UpdateRelationship$)
|
|
315
|
+
.sc(schemas_0.UpdateRelationship$)
|
|
1081
316
|
.build() {
|
|
1082
317
|
}
|
|
1083
318
|
|
|
@@ -1200,145 +435,59 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1200
435
|
enumerable: true,
|
|
1201
436
|
get: function () { return smithyClient.Client; }
|
|
1202
437
|
});
|
|
1203
|
-
exports
|
|
438
|
+
Object.defineProperty(exports, "PartnerCentralChannelServiceException", {
|
|
439
|
+
enumerable: true,
|
|
440
|
+
get: function () { return PartnerCentralChannelServiceException.PartnerCentralChannelServiceException; }
|
|
441
|
+
});
|
|
1204
442
|
exports.AcceptChannelHandshakeCommand = AcceptChannelHandshakeCommand;
|
|
1205
|
-
exports.AcceptChannelHandshakeDetail$ = AcceptChannelHandshakeDetail$;
|
|
1206
|
-
exports.AcceptChannelHandshakeRequest$ = AcceptChannelHandshakeRequest$;
|
|
1207
|
-
exports.AcceptChannelHandshakeResponse$ = AcceptChannelHandshakeResponse$;
|
|
1208
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1209
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1210
443
|
exports.AssociationType = AssociationType;
|
|
1211
|
-
exports.CancelChannelHandshake$ = CancelChannelHandshake$;
|
|
1212
444
|
exports.CancelChannelHandshakeCommand = CancelChannelHandshakeCommand;
|
|
1213
|
-
exports.CancelChannelHandshakeDetail$ = CancelChannelHandshakeDetail$;
|
|
1214
|
-
exports.CancelChannelHandshakeRequest$ = CancelChannelHandshakeRequest$;
|
|
1215
|
-
exports.CancelChannelHandshakeResponse$ = CancelChannelHandshakeResponse$;
|
|
1216
|
-
exports.ChannelHandshakePayload$ = ChannelHandshakePayload$;
|
|
1217
|
-
exports.ChannelHandshakeSummary$ = ChannelHandshakeSummary$;
|
|
1218
|
-
exports.ConflictException = ConflictException;
|
|
1219
|
-
exports.ConflictException$ = ConflictException$;
|
|
1220
445
|
exports.Coverage = Coverage;
|
|
1221
|
-
exports.CreateChannelHandshake$ = CreateChannelHandshake$;
|
|
1222
446
|
exports.CreateChannelHandshakeCommand = CreateChannelHandshakeCommand;
|
|
1223
|
-
exports.CreateChannelHandshakeDetail$ = CreateChannelHandshakeDetail$;
|
|
1224
|
-
exports.CreateChannelHandshakeRequest$ = CreateChannelHandshakeRequest$;
|
|
1225
|
-
exports.CreateChannelHandshakeResponse$ = CreateChannelHandshakeResponse$;
|
|
1226
|
-
exports.CreateProgramManagementAccount$ = CreateProgramManagementAccount$;
|
|
1227
447
|
exports.CreateProgramManagementAccountCommand = CreateProgramManagementAccountCommand;
|
|
1228
|
-
exports.CreateProgramManagementAccountDetail$ = CreateProgramManagementAccountDetail$;
|
|
1229
|
-
exports.CreateProgramManagementAccountRequest$ = CreateProgramManagementAccountRequest$;
|
|
1230
|
-
exports.CreateProgramManagementAccountResponse$ = CreateProgramManagementAccountResponse$;
|
|
1231
|
-
exports.CreateRelationship$ = CreateRelationship$;
|
|
1232
448
|
exports.CreateRelationshipCommand = CreateRelationshipCommand;
|
|
1233
|
-
exports.CreateRelationshipDetail$ = CreateRelationshipDetail$;
|
|
1234
|
-
exports.CreateRelationshipRequest$ = CreateRelationshipRequest$;
|
|
1235
|
-
exports.CreateRelationshipResponse$ = CreateRelationshipResponse$;
|
|
1236
|
-
exports.DeleteProgramManagementAccount$ = DeleteProgramManagementAccount$;
|
|
1237
449
|
exports.DeleteProgramManagementAccountCommand = DeleteProgramManagementAccountCommand;
|
|
1238
|
-
exports.DeleteProgramManagementAccountRequest$ = DeleteProgramManagementAccountRequest$;
|
|
1239
|
-
exports.DeleteProgramManagementAccountResponse$ = DeleteProgramManagementAccountResponse$;
|
|
1240
|
-
exports.DeleteRelationship$ = DeleteRelationship$;
|
|
1241
450
|
exports.DeleteRelationshipCommand = DeleteRelationshipCommand;
|
|
1242
|
-
exports.DeleteRelationshipRequest$ = DeleteRelationshipRequest$;
|
|
1243
|
-
exports.DeleteRelationshipResponse$ = DeleteRelationshipResponse$;
|
|
1244
|
-
exports.GetRelationship$ = GetRelationship$;
|
|
1245
451
|
exports.GetRelationshipCommand = GetRelationshipCommand;
|
|
1246
|
-
exports.GetRelationshipRequest$ = GetRelationshipRequest$;
|
|
1247
|
-
exports.GetRelationshipResponse$ = GetRelationshipResponse$;
|
|
1248
|
-
exports.HandshakeDetail$ = HandshakeDetail$;
|
|
1249
452
|
exports.HandshakeStatus = HandshakeStatus;
|
|
1250
453
|
exports.HandshakeType = HandshakeType;
|
|
1251
|
-
exports.InternalServerException = InternalServerException;
|
|
1252
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1253
|
-
exports.ListChannelHandshakes$ = ListChannelHandshakes$;
|
|
1254
454
|
exports.ListChannelHandshakesCommand = ListChannelHandshakesCommand;
|
|
1255
|
-
exports.ListChannelHandshakesRequest$ = ListChannelHandshakesRequest$;
|
|
1256
|
-
exports.ListChannelHandshakesResponse$ = ListChannelHandshakesResponse$;
|
|
1257
|
-
exports.ListChannelHandshakesTypeFilters$ = ListChannelHandshakesTypeFilters$;
|
|
1258
|
-
exports.ListChannelHandshakesTypeSort$ = ListChannelHandshakesTypeSort$;
|
|
1259
|
-
exports.ListProgramManagementAccounts$ = ListProgramManagementAccounts$;
|
|
1260
455
|
exports.ListProgramManagementAccountsCommand = ListProgramManagementAccountsCommand;
|
|
1261
|
-
exports.ListProgramManagementAccountsRequest$ = ListProgramManagementAccountsRequest$;
|
|
1262
|
-
exports.ListProgramManagementAccountsResponse$ = ListProgramManagementAccountsResponse$;
|
|
1263
|
-
exports.ListProgramManagementAccountsSortBase$ = ListProgramManagementAccountsSortBase$;
|
|
1264
456
|
exports.ListProgramManagementAccountsSortName = ListProgramManagementAccountsSortName;
|
|
1265
|
-
exports.ListRelationships$ = ListRelationships$;
|
|
1266
457
|
exports.ListRelationshipsCommand = ListRelationshipsCommand;
|
|
1267
|
-
exports.ListRelationshipsRequest$ = ListRelationshipsRequest$;
|
|
1268
|
-
exports.ListRelationshipsResponse$ = ListRelationshipsResponse$;
|
|
1269
|
-
exports.ListRelationshipsSortBase$ = ListRelationshipsSortBase$;
|
|
1270
458
|
exports.ListRelationshipsSortName = ListRelationshipsSortName;
|
|
1271
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1272
459
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1273
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1274
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1275
460
|
exports.ParticipantType = ParticipantType;
|
|
1276
461
|
exports.PartnerCentralChannel = PartnerCentralChannel;
|
|
1277
462
|
exports.PartnerCentralChannelClient = PartnerCentralChannelClient;
|
|
1278
|
-
exports.PartnerCentralChannelServiceException = PartnerCentralChannelServiceException;
|
|
1279
|
-
exports.PartnerCentralChannelServiceException$ = PartnerCentralChannelServiceException$;
|
|
1280
|
-
exports.PartnerLedSupport$ = PartnerLedSupport$;
|
|
1281
463
|
exports.Program = Program;
|
|
1282
|
-
exports.ProgramManagementAccountHandshakeDetail$ = ProgramManagementAccountHandshakeDetail$;
|
|
1283
464
|
exports.ProgramManagementAccountStatus = ProgramManagementAccountStatus;
|
|
1284
|
-
exports.ProgramManagementAccountSummary$ = ProgramManagementAccountSummary$;
|
|
1285
|
-
exports.ProgramManagementAccountTypeFilters$ = ProgramManagementAccountTypeFilters$;
|
|
1286
|
-
exports.ProgramManagementAccountTypeSort$ = ProgramManagementAccountTypeSort$;
|
|
1287
465
|
exports.ProgramManagementAccountTypeSortName = ProgramManagementAccountTypeSortName;
|
|
1288
466
|
exports.Provider = Provider;
|
|
1289
|
-
exports.RejectChannelHandshake$ = RejectChannelHandshake$;
|
|
1290
467
|
exports.RejectChannelHandshakeCommand = RejectChannelHandshakeCommand;
|
|
1291
|
-
exports.RejectChannelHandshakeDetail$ = RejectChannelHandshakeDetail$;
|
|
1292
|
-
exports.RejectChannelHandshakeRequest$ = RejectChannelHandshakeRequest$;
|
|
1293
|
-
exports.RejectChannelHandshakeResponse$ = RejectChannelHandshakeResponse$;
|
|
1294
|
-
exports.RelationshipDetail$ = RelationshipDetail$;
|
|
1295
|
-
exports.RelationshipSummary$ = RelationshipSummary$;
|
|
1296
468
|
exports.ResaleAccountModel = ResaleAccountModel;
|
|
1297
|
-
exports.ResoldBusiness$ = ResoldBusiness$;
|
|
1298
|
-
exports.ResoldEnterprise$ = ResoldEnterprise$;
|
|
1299
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1300
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1301
|
-
exports.RevokeServicePeriodHandshakeDetail$ = RevokeServicePeriodHandshakeDetail$;
|
|
1302
|
-
exports.RevokeServicePeriodPayload$ = RevokeServicePeriodPayload$;
|
|
1303
|
-
exports.RevokeServicePeriodTypeFilters$ = RevokeServicePeriodTypeFilters$;
|
|
1304
|
-
exports.RevokeServicePeriodTypeSort$ = RevokeServicePeriodTypeSort$;
|
|
1305
469
|
exports.RevokeServicePeriodTypeSortName = RevokeServicePeriodTypeSortName;
|
|
1306
470
|
exports.Sector = Sector;
|
|
1307
471
|
exports.ServicePeriodType = ServicePeriodType;
|
|
1308
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1309
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1310
472
|
exports.SortOrder = SortOrder;
|
|
1311
|
-
exports.StartServicePeriodHandshakeDetail$ = StartServicePeriodHandshakeDetail$;
|
|
1312
|
-
exports.StartServicePeriodPayload$ = StartServicePeriodPayload$;
|
|
1313
|
-
exports.StartServicePeriodTypeFilters$ = StartServicePeriodTypeFilters$;
|
|
1314
|
-
exports.StartServicePeriodTypeSort$ = StartServicePeriodTypeSort$;
|
|
1315
473
|
exports.StartServicePeriodTypeSortName = StartServicePeriodTypeSortName;
|
|
1316
|
-
exports.SupportPlan$ = SupportPlan$;
|
|
1317
|
-
exports.Tag$ = Tag$;
|
|
1318
|
-
exports.TagResource$ = TagResource$;
|
|
1319
474
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1320
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1321
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1322
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1323
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1324
|
-
exports.UntagResource$ = UntagResource$;
|
|
1325
475
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1326
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1327
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1328
|
-
exports.UpdateProgramManagementAccount$ = UpdateProgramManagementAccount$;
|
|
1329
476
|
exports.UpdateProgramManagementAccountCommand = UpdateProgramManagementAccountCommand;
|
|
1330
|
-
exports.UpdateProgramManagementAccountDetail$ = UpdateProgramManagementAccountDetail$;
|
|
1331
|
-
exports.UpdateProgramManagementAccountRequest$ = UpdateProgramManagementAccountRequest$;
|
|
1332
|
-
exports.UpdateProgramManagementAccountResponse$ = UpdateProgramManagementAccountResponse$;
|
|
1333
|
-
exports.UpdateRelationship$ = UpdateRelationship$;
|
|
1334
477
|
exports.UpdateRelationshipCommand = UpdateRelationshipCommand;
|
|
1335
|
-
exports.UpdateRelationshipDetail$ = UpdateRelationshipDetail$;
|
|
1336
|
-
exports.UpdateRelationshipRequest$ = UpdateRelationshipRequest$;
|
|
1337
|
-
exports.UpdateRelationshipResponse$ = UpdateRelationshipResponse$;
|
|
1338
|
-
exports.ValidationException = ValidationException;
|
|
1339
|
-
exports.ValidationException$ = ValidationException$;
|
|
1340
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1341
478
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1342
479
|
exports.paginateListChannelHandshakes = paginateListChannelHandshakes;
|
|
1343
480
|
exports.paginateListProgramManagementAccounts = paginateListProgramManagementAccounts;
|
|
1344
481
|
exports.paginateListRelationships = paginateListRelationships;
|
|
482
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
483
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
484
|
+
enumerable: true,
|
|
485
|
+
get: function () { return schemas_0[k]; }
|
|
486
|
+
});
|
|
487
|
+
});
|
|
488
|
+
Object.keys(errors).forEach(function (k) {
|
|
489
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
490
|
+
enumerable: true,
|
|
491
|
+
get: function () { return errors[k]; }
|
|
492
|
+
});
|
|
493
|
+
});
|