@aws-sdk/client-license-manager-linux-subscriptions 3.933.0 → 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.
- package/dist-cjs/index.js +0 -33
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +49 -0
- package/dist-es/models/models_0.js +0 -49
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +50 -0
- package/dist-types/models/models_0.d.ts +0 -50
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -30
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -165,33 +165,6 @@ let ValidationException$1 = class ValidationException extends LicenseManagerLinu
|
|
|
165
165
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
166
166
|
}
|
|
167
167
|
};
|
|
168
|
-
const Operator = {
|
|
169
|
-
CONTAINS: "Contains",
|
|
170
|
-
EQUAL: "Equal",
|
|
171
|
-
NOT_EQUAL: "NotEqual",
|
|
172
|
-
};
|
|
173
|
-
const SubscriptionProviderSource = {
|
|
174
|
-
RedHat: "RedHat",
|
|
175
|
-
};
|
|
176
|
-
const SubscriptionProviderStatus = {
|
|
177
|
-
ACTIVE: "ACTIVE",
|
|
178
|
-
INVALID: "INVALID",
|
|
179
|
-
PENDING: "PENDING",
|
|
180
|
-
};
|
|
181
|
-
const LinuxSubscriptionsDiscovery = {
|
|
182
|
-
Disabled: "Disabled",
|
|
183
|
-
Enabled: "Enabled",
|
|
184
|
-
};
|
|
185
|
-
const OrganizationIntegration = {
|
|
186
|
-
Disabled: "Disabled",
|
|
187
|
-
Enabled: "Enabled",
|
|
188
|
-
};
|
|
189
|
-
const Status = {
|
|
190
|
-
Completed: "Completed",
|
|
191
|
-
Failed: "Failed",
|
|
192
|
-
InProgress: "InProgress",
|
|
193
|
-
Successful: "Successful",
|
|
194
|
-
};
|
|
195
168
|
|
|
196
169
|
const _AI = "AmiId";
|
|
197
170
|
const _AID = "AccountID";
|
|
@@ -787,18 +760,12 @@ exports.InternalServerException = InternalServerException$1;
|
|
|
787
760
|
exports.LicenseManagerLinuxSubscriptions = LicenseManagerLinuxSubscriptions;
|
|
788
761
|
exports.LicenseManagerLinuxSubscriptionsClient = LicenseManagerLinuxSubscriptionsClient;
|
|
789
762
|
exports.LicenseManagerLinuxSubscriptionsServiceException = LicenseManagerLinuxSubscriptionsServiceException$1;
|
|
790
|
-
exports.LinuxSubscriptionsDiscovery = LinuxSubscriptionsDiscovery;
|
|
791
763
|
exports.ListLinuxSubscriptionInstancesCommand = ListLinuxSubscriptionInstancesCommand;
|
|
792
764
|
exports.ListLinuxSubscriptionsCommand = ListLinuxSubscriptionsCommand;
|
|
793
765
|
exports.ListRegisteredSubscriptionProvidersCommand = ListRegisteredSubscriptionProvidersCommand;
|
|
794
766
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
795
|
-
exports.Operator = Operator;
|
|
796
|
-
exports.OrganizationIntegration = OrganizationIntegration;
|
|
797
767
|
exports.RegisterSubscriptionProviderCommand = RegisterSubscriptionProviderCommand;
|
|
798
768
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
799
|
-
exports.Status = Status;
|
|
800
|
-
exports.SubscriptionProviderSource = SubscriptionProviderSource;
|
|
801
|
-
exports.SubscriptionProviderStatus = SubscriptionProviderStatus;
|
|
802
769
|
exports.TagResourceCommand = TagResourceCommand;
|
|
803
770
|
exports.ThrottlingException = ThrottlingException$1;
|
|
804
771
|
exports.UntagResourceCommand = UntagResourceCommand;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export * from "./LicenseManagerLinuxSubscriptionsClient";
|
|
|
2
2
|
export * from "./LicenseManagerLinuxSubscriptions";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/errors";
|
|
6
6
|
export { LicenseManagerLinuxSubscriptionsServiceException } from "./models/LicenseManagerLinuxSubscriptionsServiceException";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
|
|
2
|
+
export class InternalServerException extends __BaseException {
|
|
3
|
+
name = "InternalServerException";
|
|
4
|
+
$fault = "server";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "InternalServerException",
|
|
8
|
+
$fault: "server",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
15
|
+
name = "ResourceNotFoundException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ResourceNotFoundException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ThrottlingException extends __BaseException {
|
|
27
|
+
name = "ThrottlingException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ThrottlingException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ValidationException extends __BaseException {
|
|
39
|
+
name = "ValidationException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ValidationException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -1,52 +1,3 @@
|
|
|
1
|
-
import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
|
|
2
|
-
export class InternalServerException extends __BaseException {
|
|
3
|
-
name = "InternalServerException";
|
|
4
|
-
$fault = "server";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "InternalServerException",
|
|
8
|
-
$fault: "server",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
15
|
-
name = "ResourceNotFoundException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "ResourceNotFoundException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class ThrottlingException extends __BaseException {
|
|
27
|
-
name = "ThrottlingException";
|
|
28
|
-
$fault = "client";
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "ThrottlingException",
|
|
32
|
-
$fault: "client",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
export class ValidationException extends __BaseException {
|
|
39
|
-
name = "ValidationException";
|
|
40
|
-
$fault = "client";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "ValidationException",
|
|
44
|
-
$fault: "client",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
1
|
export const Operator = {
|
|
51
2
|
CONTAINS: "Contains",
|
|
52
3
|
EQUAL: "Equal",
|
|
@@ -97,7 +97,7 @@ const _t = "tags";
|
|
|
97
97
|
const _tK = "tagKeys";
|
|
98
98
|
const n0 = "com.amazonaws.licensemanagerlinuxsubscriptions";
|
|
99
99
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
100
|
-
import { InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
100
|
+
import { InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
101
101
|
import { LicenseManagerLinuxSubscriptionsServiceException as __LicenseManagerLinuxSubscriptionsServiceException } from "../models/LicenseManagerLinuxSubscriptionsServiceException";
|
|
102
102
|
export var DeregisterSubscriptionProviderRequest = [3, n0, _DSPR, 0, [_SPA], [0]];
|
|
103
103
|
export var DeregisterSubscriptionProviderResponse = [3, n0, _DSPRe, 0, [], []];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
11
11
|
export type { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
|
|
12
12
|
export * from "./commands";
|
|
13
13
|
export * from "./pagination";
|
|
14
|
-
export * from "./models";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
15
16
|
export { LicenseManagerLinuxSubscriptionsServiceException } from "./models/LicenseManagerLinuxSubscriptionsServiceException";
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>An exception occurred with the service.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class InternalServerException extends __BaseException {
|
|
8
|
+
readonly name: "InternalServerException";
|
|
9
|
+
readonly $fault: "server";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>Unable to find the requested Amazon Web Services resource.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
20
|
+
readonly name: "ResourceNotFoundException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The request was denied due to request throttling.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ThrottlingException extends __BaseException {
|
|
32
|
+
readonly name: "ThrottlingException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The provided input is not valid. Try your request again.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class ValidationException extends __BaseException {
|
|
44
|
+
readonly name: "ValidationException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
50
|
+
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
|
|
3
1
|
/**
|
|
4
2
|
* @public
|
|
5
3
|
*/
|
|
@@ -15,54 +13,6 @@ export interface DeregisterSubscriptionProviderRequest {
|
|
|
15
13
|
*/
|
|
16
14
|
export interface DeregisterSubscriptionProviderResponse {
|
|
17
15
|
}
|
|
18
|
-
/**
|
|
19
|
-
* <p>An exception occurred with the service.</p>
|
|
20
|
-
* @public
|
|
21
|
-
*/
|
|
22
|
-
export declare class InternalServerException extends __BaseException {
|
|
23
|
-
readonly name: "InternalServerException";
|
|
24
|
-
readonly $fault: "server";
|
|
25
|
-
/**
|
|
26
|
-
* @internal
|
|
27
|
-
*/
|
|
28
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* <p>Unable to find the requested Amazon Web Services resource.</p>
|
|
32
|
-
* @public
|
|
33
|
-
*/
|
|
34
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
35
|
-
readonly name: "ResourceNotFoundException";
|
|
36
|
-
readonly $fault: "client";
|
|
37
|
-
/**
|
|
38
|
-
* @internal
|
|
39
|
-
*/
|
|
40
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* <p>The request was denied due to request throttling.</p>
|
|
44
|
-
* @public
|
|
45
|
-
*/
|
|
46
|
-
export declare class ThrottlingException extends __BaseException {
|
|
47
|
-
readonly name: "ThrottlingException";
|
|
48
|
-
readonly $fault: "client";
|
|
49
|
-
/**
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* <p>The provided input is not valid. Try your request again.</p>
|
|
56
|
-
* @public
|
|
57
|
-
*/
|
|
58
|
-
export declare class ValidationException extends __BaseException {
|
|
59
|
-
readonly name: "ValidationException";
|
|
60
|
-
readonly $fault: "client";
|
|
61
|
-
/**
|
|
62
|
-
* @internal
|
|
63
|
-
*/
|
|
64
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
65
|
-
}
|
|
66
16
|
/**
|
|
67
17
|
* @public
|
|
68
18
|
* @enum
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
9
10
|
export { LicenseManagerLinuxSubscriptionsServiceException } from "./models/LicenseManagerLinuxSubscriptionsServiceException";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
|
|
3
|
+
export declare class InternalServerException extends __BaseException {
|
|
4
|
+
readonly name: "InternalServerException";
|
|
5
|
+
readonly $fault: "server";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
11
|
+
readonly name: "ResourceNotFoundException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ThrottlingException extends __BaseException {
|
|
18
|
+
readonly name: "ThrottlingException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ValidationException extends __BaseException {
|
|
25
|
+
readonly name: "ValidationException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
@@ -1,37 +1,7 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
|
|
3
1
|
export interface DeregisterSubscriptionProviderRequest {
|
|
4
2
|
SubscriptionProviderArn: string | undefined;
|
|
5
3
|
}
|
|
6
4
|
export interface DeregisterSubscriptionProviderResponse {}
|
|
7
|
-
export declare class InternalServerException extends __BaseException {
|
|
8
|
-
readonly name: "InternalServerException";
|
|
9
|
-
readonly $fault: "server";
|
|
10
|
-
constructor(
|
|
11
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
12
|
-
);
|
|
13
|
-
}
|
|
14
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
15
|
-
readonly name: "ResourceNotFoundException";
|
|
16
|
-
readonly $fault: "client";
|
|
17
|
-
constructor(
|
|
18
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
19
|
-
);
|
|
20
|
-
}
|
|
21
|
-
export declare class ThrottlingException extends __BaseException {
|
|
22
|
-
readonly name: "ThrottlingException";
|
|
23
|
-
readonly $fault: "client";
|
|
24
|
-
constructor(
|
|
25
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
26
|
-
);
|
|
27
|
-
}
|
|
28
|
-
export declare class ValidationException extends __BaseException {
|
|
29
|
-
readonly name: "ValidationException";
|
|
30
|
-
readonly $fault: "client";
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
5
|
export declare const Operator: {
|
|
36
6
|
readonly CONTAINS: "Contains";
|
|
37
7
|
readonly EQUAL: "Equal";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager-linux-subscriptions",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager Linux Subscriptions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-license-manager-linux-subscriptions",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|