@aws-sdk/client-partnercentral-channel 3.935.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.
Files changed (137) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +341 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +127 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1379 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +57 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +48 -0
  11. package/dist-es/PartnerCentralChannel.js +41 -0
  12. package/dist-es/PartnerCentralChannelClient.js +51 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +123 -0
  15. package/dist-es/commands/AcceptChannelHandshakeCommand.js +16 -0
  16. package/dist-es/commands/CancelChannelHandshakeCommand.js +16 -0
  17. package/dist-es/commands/CreateChannelHandshakeCommand.js +16 -0
  18. package/dist-es/commands/CreateProgramManagementAccountCommand.js +16 -0
  19. package/dist-es/commands/CreateRelationshipCommand.js +16 -0
  20. package/dist-es/commands/DeleteProgramManagementAccountCommand.js +16 -0
  21. package/dist-es/commands/DeleteRelationshipCommand.js +16 -0
  22. package/dist-es/commands/GetRelationshipCommand.js +16 -0
  23. package/dist-es/commands/ListChannelHandshakesCommand.js +16 -0
  24. package/dist-es/commands/ListProgramManagementAccountsCommand.js +16 -0
  25. package/dist-es/commands/ListRelationshipsCommand.js +16 -0
  26. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  27. package/dist-es/commands/RejectChannelHandshakeCommand.js +16 -0
  28. package/dist-es/commands/TagResourceCommand.js +16 -0
  29. package/dist-es/commands/UntagResourceCommand.js +16 -0
  30. package/dist-es/commands/UpdateProgramManagementAccountCommand.js +16 -0
  31. package/dist-es/commands/UpdateRelationshipCommand.js +16 -0
  32. package/dist-es/commands/index.js +17 -0
  33. package/dist-es/endpoint/EndpointParameters.js +11 -0
  34. package/dist-es/endpoint/endpointResolver.js +14 -0
  35. package/dist-es/endpoint/ruleset.js +4 -0
  36. package/dist-es/extensionConfiguration.js +1 -0
  37. package/dist-es/index.js +7 -0
  38. package/dist-es/models/PartnerCentralChannelServiceException.js +8 -0
  39. package/dist-es/models/enums.js +76 -0
  40. package/dist-es/models/errors.js +114 -0
  41. package/dist-es/models/models_0.js +1 -0
  42. package/dist-es/pagination/Interfaces.js +1 -0
  43. package/dist-es/pagination/ListChannelHandshakesPaginator.js +4 -0
  44. package/dist-es/pagination/ListProgramManagementAccountsPaginator.js +4 -0
  45. package/dist-es/pagination/ListRelationshipsPaginator.js +4 -0
  46. package/dist-es/pagination/index.js +4 -0
  47. package/dist-es/runtimeConfig.browser.js +34 -0
  48. package/dist-es/runtimeConfig.js +52 -0
  49. package/dist-es/runtimeConfig.native.js +11 -0
  50. package/dist-es/runtimeConfig.shared.js +44 -0
  51. package/dist-es/runtimeExtensions.js +9 -0
  52. package/dist-es/schemas/schemas_0.js +795 -0
  53. package/dist-types/PartnerCentralChannel.d.ts +129 -0
  54. package/dist-types/PartnerCentralChannelClient.d.ts +213 -0
  55. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  56. package/dist-types/auth/httpAuthSchemeProvider.d.ts +83 -0
  57. package/dist-types/commands/AcceptChannelHandshakeCommand.d.ts +114 -0
  58. package/dist-types/commands/CancelChannelHandshakeCommand.d.ts +114 -0
  59. package/dist-types/commands/CreateChannelHandshakeCommand.d.ts +226 -0
  60. package/dist-types/commands/CreateProgramManagementAccountCommand.d.ts +130 -0
  61. package/dist-types/commands/CreateRelationshipCommand.d.ts +151 -0
  62. package/dist-types/commands/DeleteProgramManagementAccountCommand.d.ts +107 -0
  63. package/dist-types/commands/DeleteRelationshipCommand.d.ts +109 -0
  64. package/dist-types/commands/GetRelationshipCommand.d.ts +134 -0
  65. package/dist-types/commands/ListChannelHandshakesCommand.d.ts +360 -0
  66. package/dist-types/commands/ListProgramManagementAccountsCommand.d.ts +168 -0
  67. package/dist-types/commands/ListRelationshipsCommand.d.ts +169 -0
  68. package/dist-types/commands/ListTagsForResourceCommand.d.ts +114 -0
  69. package/dist-types/commands/RejectChannelHandshakeCommand.d.ts +114 -0
  70. package/dist-types/commands/TagResourceCommand.d.ts +115 -0
  71. package/dist-types/commands/UntagResourceCommand.d.ts +109 -0
  72. package/dist-types/commands/UpdateProgramManagementAccountCommand.d.ts +123 -0
  73. package/dist-types/commands/UpdateRelationshipCommand.d.ts +140 -0
  74. package/dist-types/commands/index.d.ts +17 -0
  75. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  76. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  77. package/dist-types/endpoint/ruleset.d.ts +2 -0
  78. package/dist-types/extensionConfiguration.d.ts +9 -0
  79. package/dist-types/index.d.ts +16 -0
  80. package/dist-types/models/PartnerCentralChannelServiceException.d.ts +14 -0
  81. package/dist-types/models/enums.d.ts +220 -0
  82. package/dist-types/models/errors.d.ts +153 -0
  83. package/dist-types/models/models_0.d.ts +1677 -0
  84. package/dist-types/pagination/Interfaces.d.ts +8 -0
  85. package/dist-types/pagination/ListChannelHandshakesPaginator.d.ts +7 -0
  86. package/dist-types/pagination/ListProgramManagementAccountsPaginator.d.ts +7 -0
  87. package/dist-types/pagination/ListRelationshipsPaginator.d.ts +7 -0
  88. package/dist-types/pagination/index.d.ts +4 -0
  89. package/dist-types/runtimeConfig.browser.d.ts +52 -0
  90. package/dist-types/runtimeConfig.d.ts +52 -0
  91. package/dist-types/runtimeConfig.native.d.ts +51 -0
  92. package/dist-types/runtimeConfig.shared.d.ts +24 -0
  93. package/dist-types/runtimeExtensions.d.ts +17 -0
  94. package/dist-types/schemas/schemas_0.d.ts +112 -0
  95. package/dist-types/ts3.4/PartnerCentralChannel.d.ts +296 -0
  96. package/dist-types/ts3.4/PartnerCentralChannelClient.d.ts +228 -0
  97. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  98. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +59 -0
  99. package/dist-types/ts3.4/commands/AcceptChannelHandshakeCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/CancelChannelHandshakeCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/CreateChannelHandshakeCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/CreateProgramManagementAccountCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/CreateRelationshipCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/DeleteProgramManagementAccountCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/DeleteRelationshipCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/GetRelationshipCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/ListChannelHandshakesCommand.d.ts +51 -0
  108. package/dist-types/ts3.4/commands/ListProgramManagementAccountsCommand.d.ts +51 -0
  109. package/dist-types/ts3.4/commands/ListRelationshipsCommand.d.ts +51 -0
  110. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  111. package/dist-types/ts3.4/commands/RejectChannelHandshakeCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  113. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  114. package/dist-types/ts3.4/commands/UpdateProgramManagementAccountCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/UpdateRelationshipCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/index.d.ts +17 -0
  117. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  118. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  119. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  120. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  121. package/dist-types/ts3.4/index.d.ts +11 -0
  122. package/dist-types/ts3.4/models/PartnerCentralChannelServiceException.d.ts +9 -0
  123. package/dist-types/ts3.4/models/enums.d.ts +106 -0
  124. package/dist-types/ts3.4/models/errors.d.ts +68 -0
  125. package/dist-types/ts3.4/models/models_0.d.ts +542 -0
  126. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  127. package/dist-types/ts3.4/pagination/ListChannelHandshakesPaginator.d.ts +11 -0
  128. package/dist-types/ts3.4/pagination/ListProgramManagementAccountsPaginator.d.ts +11 -0
  129. package/dist-types/ts3.4/pagination/ListRelationshipsPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  131. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +103 -0
  132. package/dist-types/ts3.4/runtimeConfig.d.ts +98 -0
  133. package/dist-types/ts3.4/runtimeConfig.native.d.ts +107 -0
  134. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +34 -0
  135. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  136. package/dist-types/ts3.4/schemas/schemas_0.d.ts +117 -0
  137. package/package.json +100 -0
@@ -0,0 +1,98 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: PartnerCentralChannelClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ credentialDefaultProvider:
13
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
14
+ | ((
15
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
16
+ ) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
17
+ defaultUserAgentProvider: (
18
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ ) => Promise<import("@smithy/types").UserAgent>;
20
+ maxAttempts: number | import("@smithy/types").Provider<number>;
21
+ region: string | import("@smithy/types").Provider<string>;
22
+ requestHandler:
23
+ | RequestHandler
24
+ | import("@smithy/protocol-http").HttpHandler<any>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ sigv4aSigningRegionSet:
28
+ | string[]
29
+ | import("@smithy/types").Provider<string[] | undefined>;
30
+ streamCollector: import("@smithy/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
33
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
34
+ apiVersion: string;
35
+ cacheMiddleware?: boolean | undefined;
36
+ urlParser: import("@smithy/types").UrlParser;
37
+ base64Decoder: import("@smithy/types").Decoder;
38
+ base64Encoder: (_input: Uint8Array | string) => string;
39
+ utf8Decoder: import("@smithy/types").Decoder;
40
+ utf8Encoder: (input: Uint8Array | string) => string;
41
+ disableHostPrefix: boolean;
42
+ serviceId: string;
43
+ profile?: string;
44
+ logger: import("@smithy/types").Logger;
45
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
46
+ protocol: import("@smithy/types").ClientProtocol<
47
+ import("@smithy/types").HttpRequest,
48
+ import("@smithy/types").HttpResponse
49
+ >;
50
+ customUserAgent?: string | import("@smithy/types").UserAgent;
51
+ retryStrategy?:
52
+ | import("@smithy/types").RetryStrategy
53
+ | import("@smithy/types").RetryStrategyV2;
54
+ endpoint?:
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
70
+ | undefined;
71
+ endpointProvider: (
72
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
73
+ context?: {
74
+ logger?: import("@smithy/types").Logger;
75
+ }
76
+ ) => import("@smithy/types").EndpointV2;
77
+ tls?: boolean;
78
+ serviceConfiguredEndpoint?: never;
79
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
80
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
81
+ credentials?:
82
+ | import("@smithy/types").AwsCredentialIdentity
83
+ | import("@smithy/types").AwsCredentialIdentityProvider;
84
+ signer?:
85
+ | import("@smithy/types").RequestSigner
86
+ | ((
87
+ authScheme?: import("@smithy/types").AuthScheme
88
+ ) => Promise<import("@smithy/types").RequestSigner>);
89
+ signingEscapePath?: boolean;
90
+ systemClockOffset?: number;
91
+ signingRegion?: string;
92
+ signerConstructor:
93
+ | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
94
+ | (new (
95
+ options: import("@smithy/signature-v4").SignatureV4Init &
96
+ import("@smithy/signature-v4").SignatureV4CryptoInit
97
+ ) => import("@smithy/types").RequestSigner);
98
+ };
@@ -0,0 +1,107 @@
1
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: PartnerCentralChannelClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@smithy/types").HashConstructor;
7
+ requestHandler:
8
+ | import("@smithy/types").NodeHttpHandlerOptions
9
+ | import("@smithy/types").FetchHttpHandlerOptions
10
+ | Record<string, unknown>
11
+ | import("@smithy/protocol-http").HttpHandler<any>
12
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ cacheMiddleware?: boolean;
15
+ urlParser: import("@smithy/types").UrlParser;
16
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ base64Decoder: import("@smithy/types").Decoder;
19
+ base64Encoder: (_input: Uint8Array | string) => string;
20
+ utf8Decoder: import("@smithy/types").Decoder;
21
+ utf8Encoder: (input: Uint8Array | string) => string;
22
+ disableHostPrefix: boolean;
23
+ serviceId: string;
24
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ region: string | import("@smithy/types").Provider<any>;
28
+ profile?: string;
29
+ defaultUserAgentProvider: (
30
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
31
+ ) => Promise<import("@smithy/types").UserAgent>;
32
+ credentialDefaultProvider:
33
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
34
+ | ((
35
+ _: unknown
36
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
37
+ maxAttempts: number | import("@smithy/types").Provider<number>;
38
+ retryMode: string | import("@smithy/types").Provider<string>;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
45
+ defaultsMode:
46
+ | import("@smithy/smithy-client").DefaultsMode
47
+ | import("@smithy/types").Provider<
48
+ import("@smithy/smithy-client").DefaultsMode
49
+ >;
50
+ customUserAgent?: string | import("@smithy/types").UserAgent;
51
+ userAgentAppId?:
52
+ | string
53
+ | undefined
54
+ | import("@smithy/types").Provider<string | undefined>;
55
+ retryStrategy?:
56
+ | import("@smithy/types").RetryStrategy
57
+ | import("@smithy/types").RetryStrategyV2;
58
+ endpoint?:
59
+ | ((
60
+ | string
61
+ | import("@smithy/types").Endpoint
62
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
+ | import("@smithy/types").EndpointV2
64
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
+ ) &
66
+ (
67
+ | string
68
+ | import("@smithy/types").Provider<string>
69
+ | import("@smithy/types").Endpoint
70
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
71
+ | import("@smithy/types").EndpointV2
72
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
73
+ ))
74
+ | undefined;
75
+ endpointProvider: (
76
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
77
+ context?: {
78
+ logger?: import("@smithy/types").Logger;
79
+ }
80
+ ) => import("@smithy/types").EndpointV2;
81
+ tls?: boolean;
82
+ serviceConfiguredEndpoint?: never;
83
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
84
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
85
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
86
+ credentials?:
87
+ | import("@smithy/types").AwsCredentialIdentity
88
+ | import("@smithy/types").AwsCredentialIdentityProvider;
89
+ signer?:
90
+ | import("@smithy/types").RequestSigner
91
+ | ((
92
+ authScheme?: import("@smithy/types").AuthScheme
93
+ ) => Promise<import("@smithy/types").RequestSigner>);
94
+ signingEscapePath?: boolean;
95
+ systemClockOffset?: number;
96
+ signingRegion?: string;
97
+ signerConstructor:
98
+ | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
99
+ | (new (
100
+ options: import("@smithy/signature-v4").SignatureV4Init &
101
+ import("@smithy/signature-v4").SignatureV4CryptoInit
102
+ ) => import("@smithy/types").RequestSigner);
103
+ sigv4aSigningRegionSet?:
104
+ | string[]
105
+ | undefined
106
+ | import("@smithy/types").Provider<string[] | undefined>;
107
+ };
@@ -0,0 +1,34 @@
1
+ import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region";
2
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: PartnerCentralChannelClientConfig
5
+ ) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (
11
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
12
+ context?: {
13
+ logger?: import("@smithy/types").Logger;
14
+ }
15
+ ) => import("@smithy/types").EndpointV2;
16
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
17
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
18
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
19
+ logger: import("@smithy/types").Logger;
20
+ protocol: import("@smithy/types").ClientProtocol<
21
+ import("@smithy/types").HttpRequest,
22
+ import("@smithy/types").HttpResponse
23
+ >;
24
+ serviceId: string;
25
+ signerConstructor:
26
+ | typeof SignatureV4MultiRegion
27
+ | (new (
28
+ options: import("@smithy/signature-v4").SignatureV4Init &
29
+ import("@smithy/signature-v4").SignatureV4CryptoInit
30
+ ) => import("@smithy/types").RequestSigner);
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ utf8Decoder: import("@smithy/types").Decoder;
33
+ utf8Encoder: (input: Uint8Array | string) => string;
34
+ };
@@ -0,0 +1,13 @@
1
+ import { PartnerCentralChannelExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(
4
+ extensionConfiguration: PartnerCentralChannelExtensionConfiguration
5
+ ): void;
6
+ }
7
+ export interface RuntimeExtensionsConfig {
8
+ extensions: RuntimeExtension[];
9
+ }
10
+ export declare const resolveRuntimeExtensions: (
11
+ runtimeConfig: any,
12
+ extensions: RuntimeExtension[]
13
+ ) => any;
@@ -0,0 +1,117 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var AcceptChannelHandshakeDetail: StaticStructureSchema;
8
+ export declare var AcceptChannelHandshakeRequest: StaticStructureSchema;
9
+ export declare var AcceptChannelHandshakeResponse: StaticStructureSchema;
10
+ export declare var AccessDeniedException: StaticErrorSchema;
11
+ export declare var CancelChannelHandshakeDetail: StaticStructureSchema;
12
+ export declare var CancelChannelHandshakeRequest: StaticStructureSchema;
13
+ export declare var CancelChannelHandshakeResponse: StaticStructureSchema;
14
+ export declare var ChannelHandshakeSummary: StaticStructureSchema;
15
+ export declare var ConflictException: StaticErrorSchema;
16
+ export declare var CreateChannelHandshakeDetail: StaticStructureSchema;
17
+ export declare var CreateChannelHandshakeRequest: StaticStructureSchema;
18
+ export declare var CreateChannelHandshakeResponse: StaticStructureSchema;
19
+ export declare var CreateProgramManagementAccountDetail: StaticStructureSchema;
20
+ export declare var CreateProgramManagementAccountRequest: StaticStructureSchema;
21
+ export declare var CreateProgramManagementAccountResponse: StaticStructureSchema;
22
+ export declare var CreateRelationshipDetail: StaticStructureSchema;
23
+ export declare var CreateRelationshipRequest: StaticStructureSchema;
24
+ export declare var CreateRelationshipResponse: StaticStructureSchema;
25
+ export declare var DeleteProgramManagementAccountRequest: StaticStructureSchema;
26
+ export declare var DeleteProgramManagementAccountResponse: StaticStructureSchema;
27
+ export declare var DeleteRelationshipRequest: StaticStructureSchema;
28
+ export declare var DeleteRelationshipResponse: StaticStructureSchema;
29
+ export declare var GetRelationshipRequest: StaticStructureSchema;
30
+ export declare var GetRelationshipResponse: StaticStructureSchema;
31
+ export declare var InternalServerException: StaticErrorSchema;
32
+ export declare var ListChannelHandshakesRequest: StaticStructureSchema;
33
+ export declare var ListChannelHandshakesResponse: StaticStructureSchema;
34
+ export declare var ListProgramManagementAccountsRequest: StaticStructureSchema;
35
+ export declare var ListProgramManagementAccountsResponse: StaticStructureSchema;
36
+ export declare var ListProgramManagementAccountsSortBase: StaticStructureSchema;
37
+ export declare var ListRelationshipsRequest: StaticStructureSchema;
38
+ export declare var ListRelationshipsResponse: StaticStructureSchema;
39
+ export declare var ListRelationshipsSortBase: StaticStructureSchema;
40
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
41
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
42
+ export declare var PartnerLedSupport: StaticStructureSchema;
43
+ export declare var ProgramManagementAccountHandshakeDetail: StaticStructureSchema;
44
+ export declare var ProgramManagementAccountSummary: StaticStructureSchema;
45
+ export declare var ProgramManagementAccountTypeFilters: StaticStructureSchema;
46
+ export declare var ProgramManagementAccountTypeSort: StaticStructureSchema;
47
+ export declare var RejectChannelHandshakeDetail: StaticStructureSchema;
48
+ export declare var RejectChannelHandshakeRequest: StaticStructureSchema;
49
+ export declare var RejectChannelHandshakeResponse: StaticStructureSchema;
50
+ export declare var RelationshipDetail: StaticStructureSchema;
51
+ export declare var RelationshipSummary: StaticStructureSchema;
52
+ export declare var ResoldBusiness: StaticStructureSchema;
53
+ export declare var ResoldEnterprise: StaticStructureSchema;
54
+ export declare var ResourceNotFoundException: StaticErrorSchema;
55
+ export declare var RevokeServicePeriodHandshakeDetail: StaticStructureSchema;
56
+ export declare var RevokeServicePeriodPayload: StaticStructureSchema;
57
+ export declare var RevokeServicePeriodTypeFilters: StaticStructureSchema;
58
+ export declare var RevokeServicePeriodTypeSort: StaticStructureSchema;
59
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
60
+ export declare var StartServicePeriodHandshakeDetail: StaticStructureSchema;
61
+ export declare var StartServicePeriodPayload: StaticStructureSchema;
62
+ export declare var StartServicePeriodTypeFilters: StaticStructureSchema;
63
+ export declare var StartServicePeriodTypeSort: StaticStructureSchema;
64
+ export declare var Tag: StaticStructureSchema;
65
+ export declare var TagResourceRequest: StaticStructureSchema;
66
+ export declare var TagResourceResponse: StaticStructureSchema;
67
+ export declare var ThrottlingException: StaticErrorSchema;
68
+ export declare var UntagResourceRequest: StaticStructureSchema;
69
+ export declare var UntagResourceResponse: StaticStructureSchema;
70
+ export declare var UpdateProgramManagementAccountDetail: StaticStructureSchema;
71
+ export declare var UpdateProgramManagementAccountRequest: StaticStructureSchema;
72
+ export declare var UpdateProgramManagementAccountResponse: StaticStructureSchema;
73
+ export declare var UpdateRelationshipDetail: StaticStructureSchema;
74
+ export declare var UpdateRelationshipRequest: StaticStructureSchema;
75
+ export declare var UpdateRelationshipResponse: StaticStructureSchema;
76
+ export declare var ValidationException: StaticErrorSchema;
77
+ export declare var ValidationExceptionField: StaticStructureSchema;
78
+ export declare var __Unit: "unit";
79
+ export declare var PartnerCentralChannelServiceException: StaticErrorSchema;
80
+ export declare var AccountIdList: number;
81
+ export declare var AssociatedResourceIdentifierList: number;
82
+ export declare var AssociationTypeList: number;
83
+ export declare var ChannelHandshakeSummaries: StaticListSchema;
84
+ export declare var HandshakeStatusList: number;
85
+ export declare var ProgramList: number;
86
+ export declare var ProgramManagementAccountDisplayNameList: number;
87
+ export declare var ProgramManagementAccountIdentifierList: number;
88
+ export declare var ProgramManagementAccountStatusList: number;
89
+ export declare var ProgramManagementAccountSummaries: StaticListSchema;
90
+ export declare var RelationshipDisplayNameList: number;
91
+ export declare var RelationshipSummaries: StaticListSchema;
92
+ export declare var ServicePeriodTypeList: number;
93
+ export declare var TagKeyList: number;
94
+ export declare var TagList: StaticListSchema;
95
+ export declare var ValidationExceptionFieldList: StaticListSchema;
96
+ export declare var ChannelHandshakePayload: StaticStructureSchema;
97
+ export declare var HandshakeDetail: StaticStructureSchema;
98
+ export declare var ListChannelHandshakesTypeFilters: StaticStructureSchema;
99
+ export declare var ListChannelHandshakesTypeSort: StaticStructureSchema;
100
+ export declare var SupportPlan: StaticStructureSchema;
101
+ export declare var AcceptChannelHandshake: StaticOperationSchema;
102
+ export declare var CancelChannelHandshake: StaticOperationSchema;
103
+ export declare var CreateChannelHandshake: StaticOperationSchema;
104
+ export declare var CreateProgramManagementAccount: StaticOperationSchema;
105
+ export declare var CreateRelationship: StaticOperationSchema;
106
+ export declare var DeleteProgramManagementAccount: StaticOperationSchema;
107
+ export declare var DeleteRelationship: StaticOperationSchema;
108
+ export declare var GetRelationship: StaticOperationSchema;
109
+ export declare var ListChannelHandshakes: StaticOperationSchema;
110
+ export declare var ListProgramManagementAccounts: StaticOperationSchema;
111
+ export declare var ListRelationships: StaticOperationSchema;
112
+ export declare var ListTagsForResource: StaticOperationSchema;
113
+ export declare var RejectChannelHandshake: StaticOperationSchema;
114
+ export declare var TagResource: StaticOperationSchema;
115
+ export declare var UntagResource: StaticOperationSchema;
116
+ export declare var UpdateProgramManagementAccount: StaticOperationSchema;
117
+ export declare var UpdateRelationship: StaticOperationSchema;
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "@aws-sdk/client-partnercentral-channel",
3
+ "description": "AWS SDK for JavaScript Partnercentral Channel Client for Node.js, Browser and React Native",
4
+ "version": "3.935.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "node ../../scripts/compilation/inline client-partnercentral-channel",
8
+ "build:es": "tsc -p tsconfig.es.json",
9
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
13
+ "extract:docs": "api-extractor run --local",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo partnercentral-channel"
15
+ },
16
+ "main": "./dist-cjs/index.js",
17
+ "types": "./dist-types/index.d.ts",
18
+ "module": "./dist-es/index.js",
19
+ "sideEffects": false,
20
+ "dependencies": {
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/signature-v4-multi-region": "3.935.0",
31
+ "@aws-sdk/types": "3.930.0",
32
+ "@aws-sdk/util-endpoints": "3.930.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
34
+ "@aws-sdk/util-user-agent-node": "3.935.0",
35
+ "@smithy/config-resolver": "^4.4.3",
36
+ "@smithy/core": "^3.18.5",
37
+ "@smithy/fetch-http-handler": "^5.3.6",
38
+ "@smithy/hash-node": "^4.2.5",
39
+ "@smithy/invalid-dependency": "^4.2.5",
40
+ "@smithy/middleware-content-length": "^4.2.5",
41
+ "@smithy/middleware-endpoint": "^4.3.12",
42
+ "@smithy/middleware-retry": "^4.4.12",
43
+ "@smithy/middleware-serde": "^4.2.6",
44
+ "@smithy/middleware-stack": "^4.2.5",
45
+ "@smithy/node-config-provider": "^4.3.5",
46
+ "@smithy/node-http-handler": "^4.4.5",
47
+ "@smithy/protocol-http": "^5.3.5",
48
+ "@smithy/smithy-client": "^4.9.8",
49
+ "@smithy/types": "^4.9.0",
50
+ "@smithy/url-parser": "^4.2.5",
51
+ "@smithy/util-base64": "^4.3.0",
52
+ "@smithy/util-body-length-browser": "^4.2.0",
53
+ "@smithy/util-body-length-node": "^4.2.1",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
55
+ "@smithy/util-defaults-mode-node": "^4.2.14",
56
+ "@smithy/util-endpoints": "^3.2.5",
57
+ "@smithy/util-middleware": "^4.2.5",
58
+ "@smithy/util-retry": "^4.2.5",
59
+ "@smithy/util-utf8": "^4.2.0",
60
+ "tslib": "^2.6.2"
61
+ },
62
+ "devDependencies": {
63
+ "@tsconfig/node18": "18.2.4",
64
+ "@types/node": "^18.19.69",
65
+ "concurrently": "7.0.0",
66
+ "downlevel-dts": "0.10.1",
67
+ "rimraf": "3.0.2",
68
+ "typescript": "~5.8.3"
69
+ },
70
+ "engines": {
71
+ "node": ">=18.0.0"
72
+ },
73
+ "typesVersions": {
74
+ "<4.0": {
75
+ "dist-types/*": [
76
+ "dist-types/ts3.4/*"
77
+ ]
78
+ }
79
+ },
80
+ "files": [
81
+ "dist-*/**"
82
+ ],
83
+ "author": {
84
+ "name": "AWS SDK for JavaScript Team",
85
+ "url": "https://aws.amazon.com/javascript/"
86
+ },
87
+ "license": "Apache-2.0",
88
+ "browser": {
89
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
90
+ },
91
+ "react-native": {
92
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
93
+ },
94
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-partnercentral-channel",
95
+ "repository": {
96
+ "type": "git",
97
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
98
+ "directory": "clients/client-partnercentral-channel"
99
+ }
100
+ }