@aws-sdk/client-partnercentral-account 3.1018.0 → 3.1020.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/index.js +7 -4
- package/dist-cjs/models/errors.js +18 -18
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +2 -2
- package/dist-es/PartnerCentralAccount.js +2 -2
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/models/enums.js +7 -4
- package/dist-es/models/errors.js +16 -16
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/PartnerCentralAccount.d.ts +29 -29
- package/dist-types/PartnerCentralAccountClient.d.ts +32 -32
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +3 -0
- package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +3 -0
- package/dist-types/commands/GetVerificationCommand.d.ts +2 -0
- package/dist-types/commands/StartVerificationCommand.d.ts +2 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +15 -12
- package/dist-types/models/errors.d.ts +20 -20
- package/dist-types/models/models_0.d.ts +11 -1
- package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPartnersPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +9 -6
- package/dist-types/ts3.4/models/errors.d.ts +9 -9
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +13 -13
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultPartnerCentralAccountHttpAuthSchemeProvider = exports.defaultPartnerCentralAccountHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultPartnerCentralAccountHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultPartnerCentralAccountHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultPartnerCentralAccountHttpAuthSchemeProvider = defaultPartnerCentralAccountHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
package/dist-cjs/index.js
CHANGED
|
@@ -542,6 +542,13 @@ const ResourceNotFoundExceptionReason = {
|
|
|
542
542
|
SENDER_PROFILE_NOT_FOUND: "SENDER_PROFILE_NOT_FOUND",
|
|
543
543
|
VERIFICATION_NOT_FOUND: "VERIFICATION_NOT_FOUND",
|
|
544
544
|
};
|
|
545
|
+
const ServiceQuotaExceededExceptionReason = {
|
|
546
|
+
LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION: "LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION",
|
|
547
|
+
LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY: "LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY",
|
|
548
|
+
LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN",
|
|
549
|
+
LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL",
|
|
550
|
+
LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION: "LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION",
|
|
551
|
+
};
|
|
545
552
|
const BusinessValidationCode = {
|
|
546
553
|
INCOMPATIBLE_CONNECTION_INVITATION_REQUEST: "INCOMPATIBLE_CONNECTION_INVITATION_REQUEST",
|
|
547
554
|
INCOMPATIBLE_DOMAIN: "INCOMPATIBLE_DOMAIN",
|
|
@@ -569,10 +576,6 @@ const AccessType = {
|
|
|
569
576
|
ALLOW_BY_DEFAULT_DENY_SOME: "ALLOW_BY_DEFAULT_DENY_SOME",
|
|
570
577
|
DENY_ALL: "DENY_ALL",
|
|
571
578
|
};
|
|
572
|
-
const ServiceQuotaExceededExceptionReason = {
|
|
573
|
-
LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN",
|
|
574
|
-
LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL",
|
|
575
|
-
};
|
|
576
579
|
const ParticipantType = {
|
|
577
580
|
RECEIVER: "RECEIVER",
|
|
578
581
|
SENDER: "SENDER",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
|
|
4
4
|
const PartnerCentralAccountServiceException_1 = require("./PartnerCentralAccountServiceException");
|
|
5
5
|
class AccessDeniedException extends PartnerCentralAccountServiceException_1.PartnerCentralAccountServiceException {
|
|
6
6
|
name = "AccessDeniedException";
|
|
@@ -69,6 +69,23 @@ class ResourceNotFoundException extends PartnerCentralAccountServiceException_1.
|
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
72
|
+
class ServiceQuotaExceededException extends PartnerCentralAccountServiceException_1.PartnerCentralAccountServiceException {
|
|
73
|
+
name = "ServiceQuotaExceededException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
Message;
|
|
76
|
+
Reason;
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ServiceQuotaExceededException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
84
|
+
this.Message = opts.Message;
|
|
85
|
+
this.Reason = opts.Reason;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
72
89
|
class ThrottlingException extends PartnerCentralAccountServiceException_1.PartnerCentralAccountServiceException {
|
|
73
90
|
name = "ThrottlingException";
|
|
74
91
|
$fault = "client";
|
|
@@ -108,20 +125,3 @@ class ValidationException extends PartnerCentralAccountServiceException_1.Partne
|
|
|
108
125
|
}
|
|
109
126
|
}
|
|
110
127
|
exports.ValidationException = ValidationException;
|
|
111
|
-
class ServiceQuotaExceededException extends PartnerCentralAccountServiceException_1.PartnerCentralAccountServiceException {
|
|
112
|
-
name = "ServiceQuotaExceededException";
|
|
113
|
-
$fault = "client";
|
|
114
|
-
Message;
|
|
115
|
-
Reason;
|
|
116
|
-
constructor(opts) {
|
|
117
|
-
super({
|
|
118
|
-
name: "ServiceQuotaExceededException",
|
|
119
|
-
$fault: "client",
|
|
120
|
-
...opts,
|
|
121
|
-
});
|
|
122
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
123
|
-
this.Message = opts.Message;
|
|
124
|
-
this.Reason = opts.Reason;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -317,8 +317,8 @@ exports.BusinessVerificationDetails$ = [3, n0, _BVD,
|
|
|
317
317
|
];
|
|
318
318
|
exports.BusinessVerificationResponse$ = [3, n0, _BVR,
|
|
319
319
|
0,
|
|
320
|
-
[_BVD],
|
|
321
|
-
[[() => exports.BusinessVerificationDetails$, 0]], 1
|
|
320
|
+
[_BVD, _CU, _CUEA],
|
|
321
|
+
[[() => exports.BusinessVerificationDetails$, 0], 0, 5], 1
|
|
322
322
|
];
|
|
323
323
|
exports.CancelConnectionInvitationRequest$ = [3, n0, _CCIR,
|
|
324
324
|
0,
|
|
@@ -11,7 +11,7 @@ import { GetAllianceLeadContactCommand, } from "./commands/GetAllianceLeadContac
|
|
|
11
11
|
import { GetConnectionCommand, } from "./commands/GetConnectionCommand";
|
|
12
12
|
import { GetConnectionInvitationCommand, } from "./commands/GetConnectionInvitationCommand";
|
|
13
13
|
import { GetConnectionPreferencesCommand, } from "./commands/GetConnectionPreferencesCommand";
|
|
14
|
-
import { GetPartnerCommand } from "./commands/GetPartnerCommand";
|
|
14
|
+
import { GetPartnerCommand, } from "./commands/GetPartnerCommand";
|
|
15
15
|
import { GetProfileUpdateTaskCommand, } from "./commands/GetProfileUpdateTaskCommand";
|
|
16
16
|
import { GetProfileVisibilityCommand, } from "./commands/GetProfileVisibilityCommand";
|
|
17
17
|
import { GetVerificationCommand, } from "./commands/GetVerificationCommand";
|
|
@@ -25,7 +25,7 @@ import { RejectConnectionInvitationCommand, } from "./commands/RejectConnectionI
|
|
|
25
25
|
import { SendEmailVerificationCodeCommand, } from "./commands/SendEmailVerificationCodeCommand";
|
|
26
26
|
import { StartProfileUpdateTaskCommand, } from "./commands/StartProfileUpdateTaskCommand";
|
|
27
27
|
import { StartVerificationCommand, } from "./commands/StartVerificationCommand";
|
|
28
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
28
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
29
29
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
30
30
|
import { UpdateConnectionPreferencesCommand, } from "./commands/UpdateConnectionPreferencesCommand";
|
|
31
31
|
import { paginateListConnectionInvitations } from "./pagination/ListConnectionInvitationsPaginator";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultPartnerCentralAccountHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/models/enums.js
CHANGED
|
@@ -35,6 +35,13 @@ export const ResourceNotFoundExceptionReason = {
|
|
|
35
35
|
SENDER_PROFILE_NOT_FOUND: "SENDER_PROFILE_NOT_FOUND",
|
|
36
36
|
VERIFICATION_NOT_FOUND: "VERIFICATION_NOT_FOUND",
|
|
37
37
|
};
|
|
38
|
+
export const ServiceQuotaExceededExceptionReason = {
|
|
39
|
+
LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION: "LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION",
|
|
40
|
+
LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY: "LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY",
|
|
41
|
+
LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN",
|
|
42
|
+
LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL",
|
|
43
|
+
LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION: "LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION",
|
|
44
|
+
};
|
|
38
45
|
export const BusinessValidationCode = {
|
|
39
46
|
INCOMPATIBLE_CONNECTION_INVITATION_REQUEST: "INCOMPATIBLE_CONNECTION_INVITATION_REQUEST",
|
|
40
47
|
INCOMPATIBLE_DOMAIN: "INCOMPATIBLE_DOMAIN",
|
|
@@ -62,10 +69,6 @@ export const AccessType = {
|
|
|
62
69
|
ALLOW_BY_DEFAULT_DENY_SOME: "ALLOW_BY_DEFAULT_DENY_SOME",
|
|
63
70
|
DENY_ALL: "DENY_ALL",
|
|
64
71
|
};
|
|
65
|
-
export const ServiceQuotaExceededExceptionReason = {
|
|
66
|
-
LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN",
|
|
67
|
-
LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL",
|
|
68
|
-
};
|
|
69
72
|
export const ParticipantType = {
|
|
70
73
|
RECEIVER: "RECEIVER",
|
|
71
74
|
SENDER: "SENDER",
|
package/dist-es/models/errors.js
CHANGED
|
@@ -62,6 +62,22 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
62
62
|
this.Reason = opts.Reason;
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
66
|
+
name = "ServiceQuotaExceededException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
Message;
|
|
69
|
+
Reason;
|
|
70
|
+
constructor(opts) {
|
|
71
|
+
super({
|
|
72
|
+
name: "ServiceQuotaExceededException",
|
|
73
|
+
$fault: "client",
|
|
74
|
+
...opts,
|
|
75
|
+
});
|
|
76
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
77
|
+
this.Message = opts.Message;
|
|
78
|
+
this.Reason = opts.Reason;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
65
81
|
export class ThrottlingException extends __BaseException {
|
|
66
82
|
name = "ThrottlingException";
|
|
67
83
|
$fault = "client";
|
|
@@ -99,19 +115,3 @@ export class ValidationException extends __BaseException {
|
|
|
99
115
|
this.ErrorDetails = opts.ErrorDetails;
|
|
100
116
|
}
|
|
101
117
|
}
|
|
102
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
103
|
-
name = "ServiceQuotaExceededException";
|
|
104
|
-
$fault = "client";
|
|
105
|
-
Message;
|
|
106
|
-
Reason;
|
|
107
|
-
constructor(opts) {
|
|
108
|
-
super({
|
|
109
|
-
name: "ServiceQuotaExceededException",
|
|
110
|
-
$fault: "client",
|
|
111
|
-
...opts,
|
|
112
|
-
});
|
|
113
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
114
|
-
this.Message = opts.Message;
|
|
115
|
-
this.Reason = opts.Reason;
|
|
116
|
-
}
|
|
117
|
-
}
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -312,8 +312,8 @@ export var BusinessVerificationDetails$ = [3, n0, _BVD,
|
|
|
312
312
|
];
|
|
313
313
|
export var BusinessVerificationResponse$ = [3, n0, _BVR,
|
|
314
314
|
0,
|
|
315
|
-
[_BVD],
|
|
316
|
-
[[() => BusinessVerificationDetails$, 0]], 1
|
|
315
|
+
[_BVD, _CU, _CUEA],
|
|
316
|
+
[[() => BusinessVerificationDetails$, 0], 0, 5], 1
|
|
317
317
|
];
|
|
318
318
|
export var CancelConnectionInvitationRequest$ = [3, n0, _CCIR,
|
|
319
319
|
0,
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { AcceptConnectionInvitationCommandInput, AcceptConnectionInvitationCommandOutput } from "./commands/AcceptConnectionInvitationCommand";
|
|
3
|
-
import { AssociateAwsTrainingCertificationEmailDomainCommandInput, AssociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/AssociateAwsTrainingCertificationEmailDomainCommand";
|
|
4
|
-
import { CancelConnectionCommandInput, CancelConnectionCommandOutput } from "./commands/CancelConnectionCommand";
|
|
5
|
-
import { CancelConnectionInvitationCommandInput, CancelConnectionInvitationCommandOutput } from "./commands/CancelConnectionInvitationCommand";
|
|
6
|
-
import { CancelProfileUpdateTaskCommandInput, CancelProfileUpdateTaskCommandOutput } from "./commands/CancelProfileUpdateTaskCommand";
|
|
7
|
-
import { CreateConnectionInvitationCommandInput, CreateConnectionInvitationCommandOutput } from "./commands/CreateConnectionInvitationCommand";
|
|
8
|
-
import { CreatePartnerCommandInput, CreatePartnerCommandOutput } from "./commands/CreatePartnerCommand";
|
|
9
|
-
import { DisassociateAwsTrainingCertificationEmailDomainCommandInput, DisassociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/DisassociateAwsTrainingCertificationEmailDomainCommand";
|
|
10
|
-
import { GetAllianceLeadContactCommandInput, GetAllianceLeadContactCommandOutput } from "./commands/GetAllianceLeadContactCommand";
|
|
11
|
-
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
12
|
-
import { GetConnectionInvitationCommandInput, GetConnectionInvitationCommandOutput } from "./commands/GetConnectionInvitationCommand";
|
|
13
|
-
import { GetConnectionPreferencesCommandInput, GetConnectionPreferencesCommandOutput } from "./commands/GetConnectionPreferencesCommand";
|
|
14
|
-
import { GetPartnerCommandInput, GetPartnerCommandOutput } from "./commands/GetPartnerCommand";
|
|
15
|
-
import { GetProfileUpdateTaskCommandInput, GetProfileUpdateTaskCommandOutput } from "./commands/GetProfileUpdateTaskCommand";
|
|
16
|
-
import { GetProfileVisibilityCommandInput, GetProfileVisibilityCommandOutput } from "./commands/GetProfileVisibilityCommand";
|
|
17
|
-
import { GetVerificationCommandInput, GetVerificationCommandOutput } from "./commands/GetVerificationCommand";
|
|
18
|
-
import { ListConnectionInvitationsCommandInput, ListConnectionInvitationsCommandOutput } from "./commands/ListConnectionInvitationsCommand";
|
|
19
|
-
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
20
|
-
import { ListPartnersCommandInput, ListPartnersCommandOutput } from "./commands/ListPartnersCommand";
|
|
21
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
-
import { PutAllianceLeadContactCommandInput, PutAllianceLeadContactCommandOutput } from "./commands/PutAllianceLeadContactCommand";
|
|
23
|
-
import { PutProfileVisibilityCommandInput, PutProfileVisibilityCommandOutput } from "./commands/PutProfileVisibilityCommand";
|
|
24
|
-
import { RejectConnectionInvitationCommandInput, RejectConnectionInvitationCommandOutput } from "./commands/RejectConnectionInvitationCommand";
|
|
25
|
-
import { SendEmailVerificationCodeCommandInput, SendEmailVerificationCodeCommandOutput } from "./commands/SendEmailVerificationCodeCommand";
|
|
26
|
-
import { StartProfileUpdateTaskCommandInput, StartProfileUpdateTaskCommandOutput } from "./commands/StartProfileUpdateTaskCommand";
|
|
27
|
-
import { StartVerificationCommandInput, StartVerificationCommandOutput } from "./commands/StartVerificationCommand";
|
|
28
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
29
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
30
|
-
import { UpdateConnectionPreferencesCommandInput, UpdateConnectionPreferencesCommandOutput } from "./commands/UpdateConnectionPreferencesCommand";
|
|
2
|
+
import { type AcceptConnectionInvitationCommandInput, type AcceptConnectionInvitationCommandOutput } from "./commands/AcceptConnectionInvitationCommand";
|
|
3
|
+
import { type AssociateAwsTrainingCertificationEmailDomainCommandInput, type AssociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/AssociateAwsTrainingCertificationEmailDomainCommand";
|
|
4
|
+
import { type CancelConnectionCommandInput, type CancelConnectionCommandOutput } from "./commands/CancelConnectionCommand";
|
|
5
|
+
import { type CancelConnectionInvitationCommandInput, type CancelConnectionInvitationCommandOutput } from "./commands/CancelConnectionInvitationCommand";
|
|
6
|
+
import { type CancelProfileUpdateTaskCommandInput, type CancelProfileUpdateTaskCommandOutput } from "./commands/CancelProfileUpdateTaskCommand";
|
|
7
|
+
import { type CreateConnectionInvitationCommandInput, type CreateConnectionInvitationCommandOutput } from "./commands/CreateConnectionInvitationCommand";
|
|
8
|
+
import { type CreatePartnerCommandInput, type CreatePartnerCommandOutput } from "./commands/CreatePartnerCommand";
|
|
9
|
+
import { type DisassociateAwsTrainingCertificationEmailDomainCommandInput, type DisassociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/DisassociateAwsTrainingCertificationEmailDomainCommand";
|
|
10
|
+
import { type GetAllianceLeadContactCommandInput, type GetAllianceLeadContactCommandOutput } from "./commands/GetAllianceLeadContactCommand";
|
|
11
|
+
import { type GetConnectionCommandInput, type GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
12
|
+
import { type GetConnectionInvitationCommandInput, type GetConnectionInvitationCommandOutput } from "./commands/GetConnectionInvitationCommand";
|
|
13
|
+
import { type GetConnectionPreferencesCommandInput, type GetConnectionPreferencesCommandOutput } from "./commands/GetConnectionPreferencesCommand";
|
|
14
|
+
import { type GetPartnerCommandInput, type GetPartnerCommandOutput } from "./commands/GetPartnerCommand";
|
|
15
|
+
import { type GetProfileUpdateTaskCommandInput, type GetProfileUpdateTaskCommandOutput } from "./commands/GetProfileUpdateTaskCommand";
|
|
16
|
+
import { type GetProfileVisibilityCommandInput, type GetProfileVisibilityCommandOutput } from "./commands/GetProfileVisibilityCommand";
|
|
17
|
+
import { type GetVerificationCommandInput, type GetVerificationCommandOutput } from "./commands/GetVerificationCommand";
|
|
18
|
+
import { type ListConnectionInvitationsCommandInput, type ListConnectionInvitationsCommandOutput } from "./commands/ListConnectionInvitationsCommand";
|
|
19
|
+
import { type ListConnectionsCommandInput, type ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
20
|
+
import { type ListPartnersCommandInput, type ListPartnersCommandOutput } from "./commands/ListPartnersCommand";
|
|
21
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
+
import { type PutAllianceLeadContactCommandInput, type PutAllianceLeadContactCommandOutput } from "./commands/PutAllianceLeadContactCommand";
|
|
23
|
+
import { type PutProfileVisibilityCommandInput, type PutProfileVisibilityCommandOutput } from "./commands/PutProfileVisibilityCommand";
|
|
24
|
+
import { type RejectConnectionInvitationCommandInput, type RejectConnectionInvitationCommandOutput } from "./commands/RejectConnectionInvitationCommand";
|
|
25
|
+
import { type SendEmailVerificationCodeCommandInput, type SendEmailVerificationCodeCommandOutput } from "./commands/SendEmailVerificationCodeCommand";
|
|
26
|
+
import { type StartProfileUpdateTaskCommandInput, type StartProfileUpdateTaskCommandOutput } from "./commands/StartProfileUpdateTaskCommand";
|
|
27
|
+
import { type StartVerificationCommandInput, type StartVerificationCommandOutput } from "./commands/StartVerificationCommand";
|
|
28
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
29
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
30
|
+
import { type UpdateConnectionPreferencesCommandInput, type UpdateConnectionPreferencesCommandOutput } from "./commands/UpdateConnectionPreferencesCommand";
|
|
31
31
|
import { PartnerCentralAccountClient } from "./PartnerCentralAccountClient";
|
|
32
32
|
export interface PartnerCentralAccount {
|
|
33
33
|
/**
|
|
@@ -5,38 +5,38 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AcceptConnectionInvitationCommandInput, AcceptConnectionInvitationCommandOutput } from "./commands/AcceptConnectionInvitationCommand";
|
|
11
|
-
import { AssociateAwsTrainingCertificationEmailDomainCommandInput, AssociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/AssociateAwsTrainingCertificationEmailDomainCommand";
|
|
12
|
-
import { CancelConnectionCommandInput, CancelConnectionCommandOutput } from "./commands/CancelConnectionCommand";
|
|
13
|
-
import { CancelConnectionInvitationCommandInput, CancelConnectionInvitationCommandOutput } from "./commands/CancelConnectionInvitationCommand";
|
|
14
|
-
import { CancelProfileUpdateTaskCommandInput, CancelProfileUpdateTaskCommandOutput } from "./commands/CancelProfileUpdateTaskCommand";
|
|
15
|
-
import { CreateConnectionInvitationCommandInput, CreateConnectionInvitationCommandOutput } from "./commands/CreateConnectionInvitationCommand";
|
|
16
|
-
import { CreatePartnerCommandInput, CreatePartnerCommandOutput } from "./commands/CreatePartnerCommand";
|
|
17
|
-
import { DisassociateAwsTrainingCertificationEmailDomainCommandInput, DisassociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/DisassociateAwsTrainingCertificationEmailDomainCommand";
|
|
18
|
-
import { GetAllianceLeadContactCommandInput, GetAllianceLeadContactCommandOutput } from "./commands/GetAllianceLeadContactCommand";
|
|
19
|
-
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
20
|
-
import { GetConnectionInvitationCommandInput, GetConnectionInvitationCommandOutput } from "./commands/GetConnectionInvitationCommand";
|
|
21
|
-
import { GetConnectionPreferencesCommandInput, GetConnectionPreferencesCommandOutput } from "./commands/GetConnectionPreferencesCommand";
|
|
22
|
-
import { GetPartnerCommandInput, GetPartnerCommandOutput } from "./commands/GetPartnerCommand";
|
|
23
|
-
import { GetProfileUpdateTaskCommandInput, GetProfileUpdateTaskCommandOutput } from "./commands/GetProfileUpdateTaskCommand";
|
|
24
|
-
import { GetProfileVisibilityCommandInput, GetProfileVisibilityCommandOutput } from "./commands/GetProfileVisibilityCommand";
|
|
25
|
-
import { GetVerificationCommandInput, GetVerificationCommandOutput } from "./commands/GetVerificationCommand";
|
|
26
|
-
import { ListConnectionInvitationsCommandInput, ListConnectionInvitationsCommandOutput } from "./commands/ListConnectionInvitationsCommand";
|
|
27
|
-
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
28
|
-
import { ListPartnersCommandInput, ListPartnersCommandOutput } from "./commands/ListPartnersCommand";
|
|
29
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
30
|
-
import { PutAllianceLeadContactCommandInput, PutAllianceLeadContactCommandOutput } from "./commands/PutAllianceLeadContactCommand";
|
|
31
|
-
import { PutProfileVisibilityCommandInput, PutProfileVisibilityCommandOutput } from "./commands/PutProfileVisibilityCommand";
|
|
32
|
-
import { RejectConnectionInvitationCommandInput, RejectConnectionInvitationCommandOutput } from "./commands/RejectConnectionInvitationCommand";
|
|
33
|
-
import { SendEmailVerificationCodeCommandInput, SendEmailVerificationCodeCommandOutput } from "./commands/SendEmailVerificationCodeCommand";
|
|
34
|
-
import { StartProfileUpdateTaskCommandInput, StartProfileUpdateTaskCommandOutput } from "./commands/StartProfileUpdateTaskCommand";
|
|
35
|
-
import { StartVerificationCommandInput, StartVerificationCommandOutput } from "./commands/StartVerificationCommand";
|
|
36
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
37
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
38
|
-
import { UpdateConnectionPreferencesCommandInput, UpdateConnectionPreferencesCommandOutput } from "./commands/UpdateConnectionPreferencesCommand";
|
|
39
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AcceptConnectionInvitationCommandInput, AcceptConnectionInvitationCommandOutput } from "./commands/AcceptConnectionInvitationCommand";
|
|
11
|
+
import type { AssociateAwsTrainingCertificationEmailDomainCommandInput, AssociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/AssociateAwsTrainingCertificationEmailDomainCommand";
|
|
12
|
+
import type { CancelConnectionCommandInput, CancelConnectionCommandOutput } from "./commands/CancelConnectionCommand";
|
|
13
|
+
import type { CancelConnectionInvitationCommandInput, CancelConnectionInvitationCommandOutput } from "./commands/CancelConnectionInvitationCommand";
|
|
14
|
+
import type { CancelProfileUpdateTaskCommandInput, CancelProfileUpdateTaskCommandOutput } from "./commands/CancelProfileUpdateTaskCommand";
|
|
15
|
+
import type { CreateConnectionInvitationCommandInput, CreateConnectionInvitationCommandOutput } from "./commands/CreateConnectionInvitationCommand";
|
|
16
|
+
import type { CreatePartnerCommandInput, CreatePartnerCommandOutput } from "./commands/CreatePartnerCommand";
|
|
17
|
+
import type { DisassociateAwsTrainingCertificationEmailDomainCommandInput, DisassociateAwsTrainingCertificationEmailDomainCommandOutput } from "./commands/DisassociateAwsTrainingCertificationEmailDomainCommand";
|
|
18
|
+
import type { GetAllianceLeadContactCommandInput, GetAllianceLeadContactCommandOutput } from "./commands/GetAllianceLeadContactCommand";
|
|
19
|
+
import type { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
20
|
+
import type { GetConnectionInvitationCommandInput, GetConnectionInvitationCommandOutput } from "./commands/GetConnectionInvitationCommand";
|
|
21
|
+
import type { GetConnectionPreferencesCommandInput, GetConnectionPreferencesCommandOutput } from "./commands/GetConnectionPreferencesCommand";
|
|
22
|
+
import type { GetPartnerCommandInput, GetPartnerCommandOutput } from "./commands/GetPartnerCommand";
|
|
23
|
+
import type { GetProfileUpdateTaskCommandInput, GetProfileUpdateTaskCommandOutput } from "./commands/GetProfileUpdateTaskCommand";
|
|
24
|
+
import type { GetProfileVisibilityCommandInput, GetProfileVisibilityCommandOutput } from "./commands/GetProfileVisibilityCommand";
|
|
25
|
+
import type { GetVerificationCommandInput, GetVerificationCommandOutput } from "./commands/GetVerificationCommand";
|
|
26
|
+
import type { ListConnectionInvitationsCommandInput, ListConnectionInvitationsCommandOutput } from "./commands/ListConnectionInvitationsCommand";
|
|
27
|
+
import type { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
28
|
+
import type { ListPartnersCommandInput, ListPartnersCommandOutput } from "./commands/ListPartnersCommand";
|
|
29
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
30
|
+
import type { PutAllianceLeadContactCommandInput, PutAllianceLeadContactCommandOutput } from "./commands/PutAllianceLeadContactCommand";
|
|
31
|
+
import type { PutProfileVisibilityCommandInput, PutProfileVisibilityCommandOutput } from "./commands/PutProfileVisibilityCommand";
|
|
32
|
+
import type { RejectConnectionInvitationCommandInput, RejectConnectionInvitationCommandOutput } from "./commands/RejectConnectionInvitationCommand";
|
|
33
|
+
import type { SendEmailVerificationCodeCommandInput, SendEmailVerificationCodeCommandOutput } from "./commands/SendEmailVerificationCodeCommand";
|
|
34
|
+
import type { StartProfileUpdateTaskCommandInput, StartProfileUpdateTaskCommandOutput } from "./commands/StartProfileUpdateTaskCommand";
|
|
35
|
+
import type { StartVerificationCommandInput, StartVerificationCommandOutput } from "./commands/StartVerificationCommand";
|
|
36
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
37
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
38
|
+
import type { UpdateConnectionPreferencesCommandInput, UpdateConnectionPreferencesCommandOutput } from "./commands/UpdateConnectionPreferencesCommand";
|
|
39
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
40
40
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
41
41
|
export { __Client };
|
|
42
42
|
/**
|
|
@@ -145,7 +145,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
145
145
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
146
146
|
* @internal
|
|
147
147
|
*/
|
|
148
|
-
defaultUserAgentProvider?:
|
|
148
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
149
149
|
/**
|
|
150
150
|
* Default credentials provider; Not available in browser runtime.
|
|
151
151
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { PartnerCentralAccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type PartnerCentralAccountClientResolvedConfig } from "../PartnerCentralAccountClient";
|
|
4
4
|
/**
|
|
@@ -96,6 +96,9 @@ declare const AcceptConnectionInvitationCommand_base: {
|
|
|
96
96
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
97
|
* <p>The specified resource could not be found. This may occur when referencing a resource that does not exist or has been deleted.</p>
|
|
98
98
|
*
|
|
99
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
100
|
+
* <p>The request was rejected because it would exceed a service quota or limit. This may occur when trying to create more resources than allowed by the service limits.</p>
|
|
101
|
+
*
|
|
99
102
|
* @throws {@link ThrottlingException} (client fault)
|
|
100
103
|
* <p>The request was throttled due to too many requests being sent in a short period of time. The client should implement exponential backoff and retry the request.</p>
|
|
101
104
|
*
|
|
@@ -84,6 +84,9 @@ declare const CreateConnectionInvitationCommand_base: {
|
|
|
84
84
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
85
|
* <p>The specified resource could not be found. This may occur when referencing a resource that does not exist or has been deleted.</p>
|
|
86
86
|
*
|
|
87
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
88
|
+
* <p>The request was rejected because it would exceed a service quota or limit. This may occur when trying to create more resources than allowed by the service limits.</p>
|
|
89
|
+
*
|
|
87
90
|
* @throws {@link ThrottlingException} (client fault)
|
|
88
91
|
* <p>The request was throttled due to too many requests being sent in a short period of time. The client should implement exponential backoff and retry the request.</p>
|
|
89
92
|
*
|
|
@@ -53,6 +53,8 @@ declare const GetVerificationCommand_base: {
|
|
|
53
53
|
* // CountryCode: "STRING_VALUE", // required
|
|
54
54
|
* // JurisdictionOfIncorporation: "STRING_VALUE",
|
|
55
55
|
* // },
|
|
56
|
+
* // CompletionUrl: "STRING_VALUE",
|
|
57
|
+
* // CompletionUrlExpiresAt: new Date("TIMESTAMP"),
|
|
56
58
|
* // },
|
|
57
59
|
* // RegistrantVerificationResponse: { // RegistrantVerificationResponse
|
|
58
60
|
* // CompletionUrl: "STRING_VALUE", // required
|
|
@@ -62,6 +62,8 @@ declare const StartVerificationCommand_base: {
|
|
|
62
62
|
* // CountryCode: "STRING_VALUE", // required
|
|
63
63
|
* // JurisdictionOfIncorporation: "STRING_VALUE",
|
|
64
64
|
* // },
|
|
65
|
+
* // CompletionUrl: "STRING_VALUE",
|
|
66
|
+
* // CompletionUrlExpiresAt: new Date("TIMESTAMP"),
|
|
65
67
|
* // },
|
|
66
68
|
* // RegistrantVerificationResponse: { // RegistrantVerificationResponse
|
|
67
69
|
* // CompletionUrl: "STRING_VALUE", // required
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./PartnerCentralAccountClient";
|
|
7
7
|
export * from "./PartnerCentralAccount";
|
|
8
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { PartnerCentralAccountExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
@@ -75,6 +75,21 @@ export declare const ResourceNotFoundExceptionReason: {
|
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
export type ResourceNotFoundExceptionReason = (typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
* @enum
|
|
81
|
+
*/
|
|
82
|
+
export declare const ServiceQuotaExceededExceptionReason: {
|
|
83
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION: "LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION";
|
|
84
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY: "LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY";
|
|
85
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN";
|
|
86
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL";
|
|
87
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION: "LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export type ServiceQuotaExceededExceptionReason = (typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
|
|
78
93
|
/**
|
|
79
94
|
* @public
|
|
80
95
|
* @enum
|
|
@@ -134,18 +149,6 @@ export declare const AccessType: {
|
|
|
134
149
|
* @public
|
|
135
150
|
*/
|
|
136
151
|
export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
137
|
-
/**
|
|
138
|
-
* @public
|
|
139
|
-
* @enum
|
|
140
|
-
*/
|
|
141
|
-
export declare const ServiceQuotaExceededExceptionReason: {
|
|
142
|
-
readonly LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN";
|
|
143
|
-
readonly LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL";
|
|
144
|
-
};
|
|
145
|
-
/**
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
export type ServiceQuotaExceededExceptionReason = (typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
|
|
149
152
|
/**
|
|
150
153
|
* @public
|
|
151
154
|
* @enum
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceNotFoundExceptionReason, ServiceQuotaExceededExceptionReason, ValidationExceptionReason } from "./enums";
|
|
3
|
-
import { ValidationError } from "./models_0";
|
|
2
|
+
import type { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceNotFoundExceptionReason, ServiceQuotaExceededExceptionReason, ValidationExceptionReason } from "./enums";
|
|
3
|
+
import type { ValidationError } from "./models_0";
|
|
4
4
|
import { PartnerCentralAccountServiceException as __BaseException } from "./PartnerCentralAccountServiceException";
|
|
5
5
|
/**
|
|
6
6
|
* <p>The request was denied due to insufficient permissions. The caller does not have the required permissions to perform this operation.</p>
|
|
@@ -70,6 +70,24 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
70
70
|
*/
|
|
71
71
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
72
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* <p>The request was rejected because it would exceed a service quota or limit. This may occur when trying to create more resources than allowed by the service limits.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
78
|
+
readonly name: "ServiceQuotaExceededException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
Message: string | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The specific reason for the service quota being exceeded.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
Reason: ServiceQuotaExceededExceptionReason | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
90
|
+
}
|
|
73
91
|
/**
|
|
74
92
|
* <p>The request was throttled due to too many requests being sent in a short period of time. The client should implement exponential backoff and retry the request.</p>
|
|
75
93
|
* @public
|
|
@@ -117,21 +135,3 @@ export declare class ValidationException extends __BaseException {
|
|
|
117
135
|
*/
|
|
118
136
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
119
137
|
}
|
|
120
|
-
/**
|
|
121
|
-
* <p>The request was rejected because it would exceed a service quota or limit. This may occur when trying to create more resources than allowed by the service limits.</p>
|
|
122
|
-
* @public
|
|
123
|
-
*/
|
|
124
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
125
|
-
readonly name: "ServiceQuotaExceededException";
|
|
126
|
-
readonly $fault: "client";
|
|
127
|
-
Message: string | undefined;
|
|
128
|
-
/**
|
|
129
|
-
* <p>The specific reason for the service quota being exceeded.</p>
|
|
130
|
-
* @public
|
|
131
|
-
*/
|
|
132
|
-
Reason: ServiceQuotaExceededExceptionReason | undefined;
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
137
|
-
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessType, BusinessValidationCode, ConnectionType, ConnectionTypeStatus, FieldValidationCode, IndustrySegment, InvitationStatus, ParticipantType, PrimarySolutionType, ProfileTaskStatus, ProfileValidationErrorReason, ProfileVisibility, VerificationStatus, VerificationType } from "./enums";
|
|
1
|
+
import type { AccessType, BusinessValidationCode, ConnectionType, ConnectionTypeStatus, FieldValidationCode, IndustrySegment, InvitationStatus, ParticipantType, PrimarySolutionType, ProfileTaskStatus, ProfileValidationErrorReason, ProfileVisibility, VerificationStatus, VerificationType } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -387,6 +387,16 @@ export interface BusinessVerificationResponse {
|
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
389
|
BusinessVerificationDetails: BusinessVerificationDetails | undefined;
|
|
390
|
+
/**
|
|
391
|
+
* <p>A secure URL where the registrant can complete additional verification steps, such as document upload or identity confirmation through a third-party verification service.</p>
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
CompletionUrl?: string | undefined;
|
|
395
|
+
/**
|
|
396
|
+
* <p>The timestamp when the completion URL expires and is no longer valid for accessing the verification workflow.</p>
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
CompletionUrlExpiresAt?: Date | undefined;
|
|
390
400
|
}
|
|
391
401
|
/**
|
|
392
402
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListConnectionInvitationsCommandInput, ListConnectionInvitationsCommandOutput } from "../commands/ListConnectionInvitationsCommand";
|
|
3
|
-
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
|
|
3
|
-
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListPartnersCommandInput, ListPartnersCommandOutput } from "../commands/ListPartnersCommand";
|
|
3
|
-
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfi
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfi
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfi
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -246,7 +245,7 @@ export interface ClientDefaults
|
|
|
246
245
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
247
246
|
region?: string | __Provider<string>;
|
|
248
247
|
profile?: string;
|
|
249
|
-
defaultUserAgentProvider?:
|
|
248
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
250
249
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
251
250
|
maxAttempts?: number | __Provider<number>;
|
|
252
251
|
retryMode?: string | __Provider<string>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
-
HttpAuthScheme,
|
|
3
2
|
AwsCredentialIdentity,
|
|
4
3
|
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
5
|
} from "@smithy/types";
|
|
6
6
|
import { PartnerCentralAccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
@@ -45,6 +45,15 @@ export declare const ResourceNotFoundExceptionReason: {
|
|
|
45
45
|
};
|
|
46
46
|
export type ResourceNotFoundExceptionReason =
|
|
47
47
|
(typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
|
|
48
|
+
export declare const ServiceQuotaExceededExceptionReason: {
|
|
49
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION: "LIMIT_EXCEEDED_NUMBER_OF_ACTIVE_CONNECTION";
|
|
50
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY: "LIMIT_EXCEEDED_NUMBER_OF_CONNECTION_INVITATION_PER_DAY";
|
|
51
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN";
|
|
52
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL";
|
|
53
|
+
readonly LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION: "LIMIT_EXCEEDED_NUMBER_OF_OPEN_CONNECTION_INVITATION";
|
|
54
|
+
};
|
|
55
|
+
export type ServiceQuotaExceededExceptionReason =
|
|
56
|
+
(typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
|
|
48
57
|
export declare const BusinessValidationCode: {
|
|
49
58
|
readonly INCOMPATIBLE_CONNECTION_INVITATION_REQUEST: "INCOMPATIBLE_CONNECTION_INVITATION_REQUEST";
|
|
50
59
|
readonly INCOMPATIBLE_DOMAIN: "INCOMPATIBLE_DOMAIN";
|
|
@@ -79,12 +88,6 @@ export declare const AccessType: {
|
|
|
79
88
|
readonly DENY_ALL: "DENY_ALL";
|
|
80
89
|
};
|
|
81
90
|
export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
82
|
-
export declare const ServiceQuotaExceededExceptionReason: {
|
|
83
|
-
readonly LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN";
|
|
84
|
-
readonly LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL";
|
|
85
|
-
};
|
|
86
|
-
export type ServiceQuotaExceededExceptionReason =
|
|
87
|
-
(typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
|
|
88
91
|
export declare const ParticipantType: {
|
|
89
92
|
readonly RECEIVER: "RECEIVER";
|
|
90
93
|
readonly SENDER: "SENDER";
|
|
@@ -42,6 +42,15 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
42
42
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
43
43
|
);
|
|
44
44
|
}
|
|
45
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
46
|
+
readonly name: "ServiceQuotaExceededException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
Message: string | undefined;
|
|
49
|
+
Reason: ServiceQuotaExceededExceptionReason | undefined;
|
|
50
|
+
constructor(
|
|
51
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
45
54
|
export declare class ThrottlingException extends __BaseException {
|
|
46
55
|
readonly name: "ThrottlingException";
|
|
47
56
|
readonly $fault: "client";
|
|
@@ -63,12 +72,3 @@ export declare class ValidationException extends __BaseException {
|
|
|
63
72
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
64
73
|
);
|
|
65
74
|
}
|
|
66
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
67
|
-
readonly name: "ServiceQuotaExceededException";
|
|
68
|
-
readonly $fault: "client";
|
|
69
|
-
Message: string | undefined;
|
|
70
|
-
Reason: ServiceQuotaExceededExceptionReason | undefined;
|
|
71
|
-
constructor(
|
|
72
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
73
|
-
);
|
|
74
|
-
}
|
|
@@ -146,6 +146,8 @@ export interface BusinessVerificationDetails {
|
|
|
146
146
|
}
|
|
147
147
|
export interface BusinessVerificationResponse {
|
|
148
148
|
BusinessVerificationDetails: BusinessVerificationDetails | undefined;
|
|
149
|
+
CompletionUrl?: string | undefined;
|
|
150
|
+
CompletionUrlExpiresAt?: Date | undefined;
|
|
149
151
|
}
|
|
150
152
|
export interface CancelConnectionRequest {
|
|
151
153
|
Catalog: string | undefined;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (
|
|
|
32
32
|
protocol:
|
|
33
33
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
34
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
-
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
35
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
36
36
|
protocolSettings: {
|
|
37
37
|
defaultNamespace?: string;
|
|
38
38
|
[setting: string]: unknown;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (
|
|
|
32
32
|
protocol:
|
|
33
33
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
34
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
-
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
35
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
36
36
|
protocolSettings: {
|
|
37
37
|
defaultNamespace?: string;
|
|
38
38
|
[setting: string]: unknown;
|
|
@@ -14,7 +14,7 @@ export declare const getRuntimeConfig: (
|
|
|
14
14
|
protocol:
|
|
15
15
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
16
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
-
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
17
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
18
18
|
protocolSettings: {
|
|
19
19
|
defaultNamespace?: string;
|
|
20
20
|
[setting: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-partnercentral-account",
|
|
3
3
|
"description": "AWS SDK for JavaScript Partnercentral Account Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1020.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-partnercentral-account",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|