@aws-sdk/client-proton 3.301.0 → 3.303.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.
@@ -3,11 +3,13 @@ import { ProtonServiceException as __BaseException } from "./ProtonServiceExcept
3
3
  export interface AcceptEnvironmentAccountConnectionInput {
4
4
  id: string | undefined;
5
5
  }
6
- export declare enum EnvironmentAccountConnectionStatus {
7
- CONNECTED = "CONNECTED",
8
- PENDING = "PENDING",
9
- REJECTED = "REJECTED",
10
- }
6
+ export declare const EnvironmentAccountConnectionStatus: {
7
+ readonly CONNECTED: "CONNECTED";
8
+ readonly PENDING: "PENDING";
9
+ readonly REJECTED: "REJECTED";
10
+ };
11
+ export type EnvironmentAccountConnectionStatus =
12
+ (typeof EnvironmentAccountConnectionStatus)[keyof typeof EnvironmentAccountConnectionStatus];
11
13
  export interface EnvironmentAccountConnection {
12
14
  id: string | undefined;
13
15
  arn: string | undefined;
@@ -68,11 +70,13 @@ export declare class ValidationException extends __BaseException {
68
70
  opts: __ExceptionOptionType<ValidationException, __BaseException>
69
71
  );
70
72
  }
71
- export declare enum RepositoryProvider {
72
- BITBUCKET = "BITBUCKET",
73
- GITHUB = "GITHUB",
74
- GITHUB_ENTERPRISE = "GITHUB_ENTERPRISE",
75
- }
73
+ export declare const RepositoryProvider: {
74
+ readonly BITBUCKET: "BITBUCKET";
75
+ readonly GITHUB: "GITHUB";
76
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
77
+ };
78
+ export type RepositoryProvider =
79
+ (typeof RepositoryProvider)[keyof typeof RepositoryProvider];
76
80
  export interface RepositoryBranch {
77
81
  arn: string | undefined;
78
82
  provider: RepositoryProvider | string | undefined;
@@ -105,16 +109,18 @@ export interface UpdateAccountSettingsOutput {
105
109
  export interface CancelComponentDeploymentInput {
106
110
  componentName: string | undefined;
107
111
  }
108
- export declare enum DeploymentStatus {
109
- CANCELLED = "CANCELLED",
110
- CANCELLING = "CANCELLING",
111
- DELETE_COMPLETE = "DELETE_COMPLETE",
112
- DELETE_FAILED = "DELETE_FAILED",
113
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
114
- FAILED = "FAILED",
115
- IN_PROGRESS = "IN_PROGRESS",
116
- SUCCEEDED = "SUCCEEDED",
117
- }
112
+ export declare const DeploymentStatus: {
113
+ readonly CANCELLED: "CANCELLED";
114
+ readonly CANCELLING: "CANCELLING";
115
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
116
+ readonly DELETE_FAILED: "DELETE_FAILED";
117
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
118
+ readonly FAILED: "FAILED";
119
+ readonly IN_PROGRESS: "IN_PROGRESS";
120
+ readonly SUCCEEDED: "SUCCEEDED";
121
+ };
122
+ export type DeploymentStatus =
123
+ (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
118
124
  export interface Component {
119
125
  name: string | undefined;
120
126
  description?: string;
@@ -136,9 +142,10 @@ export interface CancelComponentDeploymentOutput {
136
142
  export interface CancelEnvironmentDeploymentInput {
137
143
  environmentName: string | undefined;
138
144
  }
139
- export declare enum Provisioning {
140
- CUSTOMER_MANAGED = "CUSTOMER_MANAGED",
141
- }
145
+ export declare const Provisioning: {
146
+ readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
147
+ };
148
+ export type Provisioning = (typeof Provisioning)[keyof typeof Provisioning];
142
149
  export interface Environment {
143
150
  name: string | undefined;
144
151
  description?: string;
@@ -219,10 +226,12 @@ export interface ListComponentProvisionedResourcesInput {
219
226
  componentName: string | undefined;
220
227
  nextToken?: string;
221
228
  }
222
- export declare enum ProvisionedResourceEngine {
223
- CLOUDFORMATION = "CLOUDFORMATION",
224
- TERRAFORM = "TERRAFORM",
225
- }
229
+ export declare const ProvisionedResourceEngine: {
230
+ readonly CLOUDFORMATION: "CLOUDFORMATION";
231
+ readonly TERRAFORM: "TERRAFORM";
232
+ };
233
+ export type ProvisionedResourceEngine =
234
+ (typeof ProvisionedResourceEngine)[keyof typeof ProvisionedResourceEngine];
226
235
  export interface ProvisionedResource {
227
236
  name?: string;
228
237
  identifier?: string;
@@ -293,10 +302,12 @@ export interface ListComponentsOutput {
293
302
  nextToken?: string;
294
303
  components: ComponentSummary[] | undefined;
295
304
  }
296
- export declare enum ComponentDeploymentUpdateType {
297
- CURRENT_VERSION = "CURRENT_VERSION",
298
- NONE = "NONE",
299
- }
305
+ export declare const ComponentDeploymentUpdateType: {
306
+ readonly CURRENT_VERSION: "CURRENT_VERSION";
307
+ readonly NONE: "NONE";
308
+ };
309
+ export type ComponentDeploymentUpdateType =
310
+ (typeof ComponentDeploymentUpdateType)[keyof typeof ComponentDeploymentUpdateType];
300
311
  export interface UpdateComponentInput {
301
312
  name: string | undefined;
302
313
  deploymentType: ComponentDeploymentUpdateType | string | undefined;
@@ -333,10 +344,12 @@ export interface GetEnvironmentAccountConnectionInput {
333
344
  export interface GetEnvironmentAccountConnectionOutput {
334
345
  environmentAccountConnection: EnvironmentAccountConnection | undefined;
335
346
  }
336
- export declare enum EnvironmentAccountConnectionRequesterAccountType {
337
- ENVIRONMENT_ACCOUNT = "ENVIRONMENT_ACCOUNT",
338
- MANAGEMENT_ACCOUNT = "MANAGEMENT_ACCOUNT",
339
- }
347
+ export declare const EnvironmentAccountConnectionRequesterAccountType: {
348
+ readonly ENVIRONMENT_ACCOUNT: "ENVIRONMENT_ACCOUNT";
349
+ readonly MANAGEMENT_ACCOUNT: "MANAGEMENT_ACCOUNT";
350
+ };
351
+ export type EnvironmentAccountConnectionRequesterAccountType =
352
+ (typeof EnvironmentAccountConnectionRequesterAccountType)[keyof typeof EnvironmentAccountConnectionRequesterAccountType];
340
353
  export interface ListEnvironmentAccountConnectionsInput {
341
354
  requestedBy:
342
355
  | EnvironmentAccountConnectionRequesterAccountType
@@ -456,12 +469,14 @@ export interface ListEnvironmentsOutput {
456
469
  nextToken?: string;
457
470
  environments: EnvironmentSummary[] | undefined;
458
471
  }
459
- export declare enum DeploymentUpdateType {
460
- CURRENT_VERSION = "CURRENT_VERSION",
461
- MAJOR_VERSION = "MAJOR_VERSION",
462
- MINOR_VERSION = "MINOR_VERSION",
463
- NONE = "NONE",
464
- }
472
+ export declare const DeploymentUpdateType: {
473
+ readonly CURRENT_VERSION: "CURRENT_VERSION";
474
+ readonly MAJOR_VERSION: "MAJOR_VERSION";
475
+ readonly MINOR_VERSION: "MINOR_VERSION";
476
+ readonly NONE: "NONE";
477
+ };
478
+ export type DeploymentUpdateType =
479
+ (typeof DeploymentUpdateType)[keyof typeof DeploymentUpdateType];
465
480
  export interface UpdateEnvironmentInput {
466
481
  name: string | undefined;
467
482
  description?: string;
@@ -568,12 +583,14 @@ export interface CreateEnvironmentTemplateVersionInput {
568
583
  source: TemplateVersionSourceInput | undefined;
569
584
  tags?: Tag[];
570
585
  }
571
- export declare enum TemplateVersionStatus {
572
- DRAFT = "DRAFT",
573
- PUBLISHED = "PUBLISHED",
574
- REGISTRATION_FAILED = "REGISTRATION_FAILED",
575
- REGISTRATION_IN_PROGRESS = "REGISTRATION_IN_PROGRESS",
576
- }
586
+ export declare const TemplateVersionStatus: {
587
+ readonly DRAFT: "DRAFT";
588
+ readonly PUBLISHED: "PUBLISHED";
589
+ readonly REGISTRATION_FAILED: "REGISTRATION_FAILED";
590
+ readonly REGISTRATION_IN_PROGRESS: "REGISTRATION_IN_PROGRESS";
591
+ };
592
+ export type TemplateVersionStatus =
593
+ (typeof TemplateVersionStatus)[keyof typeof TemplateVersionStatus];
577
594
  export interface EnvironmentTemplateVersion {
578
595
  templateName: string | undefined;
579
596
  majorVersion: string | undefined;
@@ -638,9 +655,10 @@ export interface UpdateEnvironmentTemplateVersionInput {
638
655
  export interface UpdateEnvironmentTemplateVersionOutput {
639
656
  environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
640
657
  }
641
- export declare enum SyncType {
642
- TEMPLATE_SYNC = "TEMPLATE_SYNC",
643
- }
658
+ export declare const SyncType: {
659
+ readonly TEMPLATE_SYNC: "TEMPLATE_SYNC";
660
+ };
661
+ export type SyncType = (typeof SyncType)[keyof typeof SyncType];
644
662
  export interface GetRepositorySyncStatusInput {
645
663
  repositoryName: string | undefined;
646
664
  repositoryProvider: RepositoryProvider | string | undefined;
@@ -653,13 +671,15 @@ export interface RepositorySyncEvent {
653
671
  time: Date | undefined;
654
672
  event: string | undefined;
655
673
  }
656
- export declare enum RepositorySyncStatus {
657
- FAILED = "FAILED",
658
- INITIATED = "INITIATED",
659
- IN_PROGRESS = "IN_PROGRESS",
660
- QUEUED = "QUEUED",
661
- SUCCEEDED = "SUCCEEDED",
662
- }
674
+ export declare const RepositorySyncStatus: {
675
+ readonly FAILED: "FAILED";
676
+ readonly INITIATED: "INITIATED";
677
+ readonly IN_PROGRESS: "IN_PROGRESS";
678
+ readonly QUEUED: "QUEUED";
679
+ readonly SUCCEEDED: "SUCCEEDED";
680
+ };
681
+ export type RepositorySyncStatus =
682
+ (typeof RepositorySyncStatus)[keyof typeof RepositorySyncStatus];
663
683
  export interface RepositorySyncAttempt {
664
684
  startedAt: Date | undefined;
665
685
  status: RepositorySyncStatus | string | undefined;
@@ -688,10 +708,11 @@ export interface CountsSummary {
688
708
  export interface GetResourcesSummaryOutput {
689
709
  counts: CountsSummary | undefined;
690
710
  }
691
- export declare enum TemplateType {
692
- ENVIRONMENT = "ENVIRONMENT",
693
- SERVICE = "SERVICE",
694
- }
711
+ export declare const TemplateType: {
712
+ readonly ENVIRONMENT: "ENVIRONMENT";
713
+ readonly SERVICE: "SERVICE";
714
+ };
715
+ export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
695
716
  export interface GetTemplateSyncStatusInput {
696
717
  templateName: string | undefined;
697
718
  templateType: TemplateType | string | undefined;
@@ -710,12 +731,14 @@ export interface ResourceSyncEvent {
710
731
  time: Date | undefined;
711
732
  event: string | undefined;
712
733
  }
713
- export declare enum ResourceSyncStatus {
714
- FAILED = "FAILED",
715
- INITIATED = "INITIATED",
716
- IN_PROGRESS = "IN_PROGRESS",
717
- SUCCEEDED = "SUCCEEDED",
718
- }
734
+ export declare const ResourceSyncStatus: {
735
+ readonly FAILED: "FAILED";
736
+ readonly INITIATED: "INITIATED";
737
+ readonly IN_PROGRESS: "IN_PROGRESS";
738
+ readonly SUCCEEDED: "SUCCEEDED";
739
+ };
740
+ export type ResourceSyncStatus =
741
+ (typeof ResourceSyncStatus)[keyof typeof ResourceSyncStatus];
719
742
  export interface ResourceSyncAttempt {
720
743
  initialRevision: Revision | undefined;
721
744
  targetRevision: Revision | undefined;
@@ -754,11 +777,13 @@ export interface ListTagsForResourceOutput {
754
777
  tags: Tag[] | undefined;
755
778
  nextToken?: string;
756
779
  }
757
- export declare enum ResourceDeploymentStatus {
758
- FAILED = "FAILED",
759
- IN_PROGRESS = "IN_PROGRESS",
760
- SUCCEEDED = "SUCCEEDED",
761
- }
780
+ export declare const ResourceDeploymentStatus: {
781
+ readonly FAILED: "FAILED";
782
+ readonly IN_PROGRESS: "IN_PROGRESS";
783
+ readonly SUCCEEDED: "SUCCEEDED";
784
+ };
785
+ export type ResourceDeploymentStatus =
786
+ (typeof ResourceDeploymentStatus)[keyof typeof ResourceDeploymentStatus];
762
787
  export interface NotifyResourceDeploymentStatusChangeInput {
763
788
  resourceArn: string | undefined;
764
789
  status?: ResourceDeploymentStatus | string;
@@ -836,35 +861,40 @@ export interface GetServiceInstanceInput {
836
861
  export interface GetServiceInstanceOutput {
837
862
  serviceInstance: ServiceInstance | undefined;
838
863
  }
839
- export declare enum ListServiceInstancesFilterBy {
840
- CREATED_AT_AFTER = "createdAtAfter",
841
- CREATED_AT_BEFORE = "createdAtBefore",
842
- DEPLOYED_TEMPLATE_VERSION_STATUS = "deployedTemplateVersionStatus",
843
- DEPLOYMENT_STATUS = "deploymentStatus",
844
- ENVIRONMENT_NAME = "environmentName",
845
- LAST_DEPLOYMENT_ATTEMPTED_AT_AFTER = "lastDeploymentAttemptedAtAfter",
846
- LAST_DEPLOYMENT_ATTEMPTED_AT_BEFORE = "lastDeploymentAttemptedAtBefore",
847
- NAME = "name",
848
- SERVICE_NAME = "serviceName",
849
- TEMPLATE_NAME = "templateName",
850
- }
864
+ export declare const ListServiceInstancesFilterBy: {
865
+ readonly CREATED_AT_AFTER: "createdAtAfter";
866
+ readonly CREATED_AT_BEFORE: "createdAtBefore";
867
+ readonly DEPLOYED_TEMPLATE_VERSION_STATUS: "deployedTemplateVersionStatus";
868
+ readonly DEPLOYMENT_STATUS: "deploymentStatus";
869
+ readonly ENVIRONMENT_NAME: "environmentName";
870
+ readonly LAST_DEPLOYMENT_ATTEMPTED_AT_AFTER: "lastDeploymentAttemptedAtAfter";
871
+ readonly LAST_DEPLOYMENT_ATTEMPTED_AT_BEFORE: "lastDeploymentAttemptedAtBefore";
872
+ readonly NAME: "name";
873
+ readonly SERVICE_NAME: "serviceName";
874
+ readonly TEMPLATE_NAME: "templateName";
875
+ };
876
+ export type ListServiceInstancesFilterBy =
877
+ (typeof ListServiceInstancesFilterBy)[keyof typeof ListServiceInstancesFilterBy];
851
878
  export interface ListServiceInstancesFilter {
852
879
  key?: ListServiceInstancesFilterBy | string;
853
880
  value?: string;
854
881
  }
855
- export declare enum ListServiceInstancesSortBy {
856
- CREATED_AT = "createdAt",
857
- DEPLOYMENT_STATUS = "deploymentStatus",
858
- ENVIRONMENT_NAME = "environmentName",
859
- LAST_DEPLOYMENT_ATTEMPTED_AT = "lastDeploymentAttemptedAt",
860
- NAME = "name",
861
- SERVICE_NAME = "serviceName",
862
- TEMPLATE_NAME = "templateName",
863
- }
864
- export declare enum SortOrder {
865
- ASCENDING = "ASCENDING",
866
- DESCENDING = "DESCENDING",
867
- }
882
+ export declare const ListServiceInstancesSortBy: {
883
+ readonly CREATED_AT: "createdAt";
884
+ readonly DEPLOYMENT_STATUS: "deploymentStatus";
885
+ readonly ENVIRONMENT_NAME: "environmentName";
886
+ readonly LAST_DEPLOYMENT_ATTEMPTED_AT: "lastDeploymentAttemptedAt";
887
+ readonly NAME: "name";
888
+ readonly SERVICE_NAME: "serviceName";
889
+ readonly TEMPLATE_NAME: "templateName";
890
+ };
891
+ export type ListServiceInstancesSortBy =
892
+ (typeof ListServiceInstancesSortBy)[keyof typeof ListServiceInstancesSortBy];
893
+ export declare const SortOrder: {
894
+ readonly ASCENDING: "ASCENDING";
895
+ readonly DESCENDING: "DESCENDING";
896
+ };
897
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
868
898
  export interface ListServiceInstancesInput {
869
899
  serviceName?: string;
870
900
  nextToken?: string;
@@ -940,22 +970,23 @@ export interface CreateServiceInput {
940
970
  branchName?: string;
941
971
  tags?: Tag[];
942
972
  }
943
- export declare enum ServiceStatus {
944
- ACTIVE = "ACTIVE",
945
- CREATE_FAILED = "CREATE_FAILED",
946
- CREATE_FAILED_CLEANUP_COMPLETE = "CREATE_FAILED_CLEANUP_COMPLETE",
947
- CREATE_FAILED_CLEANUP_FAILED = "CREATE_FAILED_CLEANUP_FAILED",
948
- CREATE_FAILED_CLEANUP_IN_PROGRESS = "CREATE_FAILED_CLEANUP_IN_PROGRESS",
949
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
950
- DELETE_FAILED = "DELETE_FAILED",
951
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
952
- UPDATE_COMPLETE_CLEANUP_FAILED = "UPDATE_COMPLETE_CLEANUP_FAILED",
953
- UPDATE_FAILED = "UPDATE_FAILED",
954
- UPDATE_FAILED_CLEANUP_COMPLETE = "UPDATE_FAILED_CLEANUP_COMPLETE",
955
- UPDATE_FAILED_CLEANUP_FAILED = "UPDATE_FAILED_CLEANUP_FAILED",
956
- UPDATE_FAILED_CLEANUP_IN_PROGRESS = "UPDATE_FAILED_CLEANUP_IN_PROGRESS",
957
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
958
- }
973
+ export declare const ServiceStatus: {
974
+ readonly ACTIVE: "ACTIVE";
975
+ readonly CREATE_FAILED: "CREATE_FAILED";
976
+ readonly CREATE_FAILED_CLEANUP_COMPLETE: "CREATE_FAILED_CLEANUP_COMPLETE";
977
+ readonly CREATE_FAILED_CLEANUP_FAILED: "CREATE_FAILED_CLEANUP_FAILED";
978
+ readonly CREATE_FAILED_CLEANUP_IN_PROGRESS: "CREATE_FAILED_CLEANUP_IN_PROGRESS";
979
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
980
+ readonly DELETE_FAILED: "DELETE_FAILED";
981
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
982
+ readonly UPDATE_COMPLETE_CLEANUP_FAILED: "UPDATE_COMPLETE_CLEANUP_FAILED";
983
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
984
+ readonly UPDATE_FAILED_CLEANUP_COMPLETE: "UPDATE_FAILED_CLEANUP_COMPLETE";
985
+ readonly UPDATE_FAILED_CLEANUP_FAILED: "UPDATE_FAILED_CLEANUP_FAILED";
986
+ readonly UPDATE_FAILED_CLEANUP_IN_PROGRESS: "UPDATE_FAILED_CLEANUP_IN_PROGRESS";
987
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
988
+ };
989
+ export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
959
990
  export interface Service {
960
991
  name: string | undefined;
961
992
  description?: string;
@@ -1076,9 +1107,11 @@ export interface CompatibleEnvironmentTemplateInput {
1076
1107
  templateName: string | undefined;
1077
1108
  majorVersion: string | undefined;
1078
1109
  }
1079
- export declare enum ServiceTemplateSupportedComponentSourceType {
1080
- DIRECTLY_DEFINED = "DIRECTLY_DEFINED",
1081
- }
1110
+ export declare const ServiceTemplateSupportedComponentSourceType: {
1111
+ readonly DIRECTLY_DEFINED: "DIRECTLY_DEFINED";
1112
+ };
1113
+ export type ServiceTemplateSupportedComponentSourceType =
1114
+ (typeof ServiceTemplateSupportedComponentSourceType)[keyof typeof ServiceTemplateSupportedComponentSourceType];
1082
1115
  export interface CreateServiceTemplateVersionInput {
1083
1116
  clientToken?: string;
1084
1117
  templateName: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-proton",
3
3
  "description": "AWS SDK for JavaScript Proton Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,44 +21,44 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
56
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
+ "@aws-sdk/util-waiter": "3.303.0",
57
57
  "tslib": "^2.5.0",
58
58
  "uuid": "^8.3.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
61
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
62
62
  "@tsconfig/node14": "1.0.3",
63
63
  "@types/node": "^14.14.31",
64
64
  "@types/uuid": "^8.3.0",