@aws-sdk/client-ssm-contacts 3.687.0 → 3.691.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.
@@ -13,11 +13,11 @@ export declare const AcceptType: {
13
13
  export type AcceptType = (typeof AcceptType)[keyof typeof AcceptType];
14
14
  export interface AcceptPageRequest {
15
15
  PageId: string | undefined;
16
- ContactChannelId?: string;
16
+ ContactChannelId?: string | undefined;
17
17
  AcceptType: AcceptType | undefined;
18
- Note?: string;
18
+ Note?: string | undefined;
19
19
  AcceptCode: string | undefined;
20
- AcceptCodeValidation?: AcceptCodeValidation;
20
+ AcceptCodeValidation?: AcceptCodeValidation | undefined;
21
21
  }
22
22
  export interface AcceptPageResult {}
23
23
  export declare class AccessDeniedException extends __BaseException {
@@ -32,7 +32,7 @@ export declare class InternalServerException extends __BaseException {
32
32
  readonly name: "InternalServerException";
33
33
  readonly $fault: "server";
34
34
  Message: string | undefined;
35
- RetryAfterSeconds?: number;
35
+ RetryAfterSeconds?: number | undefined;
36
36
  constructor(
37
37
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
38
38
  );
@@ -51,9 +51,9 @@ export declare class ThrottlingException extends __BaseException {
51
51
  readonly name: "ThrottlingException";
52
52
  readonly $fault: "client";
53
53
  Message: string | undefined;
54
- QuotaCode?: string;
55
- ServiceCode?: string;
56
- RetryAfterSeconds?: number;
54
+ QuotaCode?: string | undefined;
55
+ ServiceCode?: string | undefined;
56
+ RetryAfterSeconds?: number | undefined;
57
57
  constructor(
58
58
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
59
59
  );
@@ -74,8 +74,8 @@ export declare class ValidationException extends __BaseException {
74
74
  readonly name: "ValidationException";
75
75
  readonly $fault: "client";
76
76
  Message: string | undefined;
77
- Reason?: ValidationExceptionReason;
78
- Fields?: ValidationExceptionField[];
77
+ Reason?: ValidationExceptionReason | undefined;
78
+ Fields?: ValidationExceptionField[] | undefined;
79
79
  constructor(
80
80
  opts: __ExceptionOptionType<ValidationException, __BaseException>
81
81
  );
@@ -93,7 +93,7 @@ export type ActivationStatus =
93
93
  (typeof ActivationStatus)[keyof typeof ActivationStatus];
94
94
  export interface ChannelTargetInfo {
95
95
  ContactChannelId: string | undefined;
96
- RetryIntervalInMinutes?: number;
96
+ RetryIntervalInMinutes?: number | undefined;
97
97
  }
98
98
  export declare const ChannelType: {
99
99
  readonly EMAIL: "EMAIL";
@@ -111,7 +111,7 @@ export declare class ConflictException extends __BaseException {
111
111
  Message: string | undefined;
112
112
  ResourceId: string | undefined;
113
113
  ResourceType: string | undefined;
114
- DependentEntities?: DependentEntity[];
114
+ DependentEntities?: DependentEntity[] | undefined;
115
115
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
116
116
  }
117
117
  export declare const ContactType: {
@@ -123,22 +123,22 @@ export type ContactType = (typeof ContactType)[keyof typeof ContactType];
123
123
  export interface Contact {
124
124
  ContactArn: string | undefined;
125
125
  Alias: string | undefined;
126
- DisplayName?: string;
126
+ DisplayName?: string | undefined;
127
127
  Type: ContactType | undefined;
128
128
  }
129
129
  export interface ContactChannelAddress {
130
- SimpleAddress?: string;
130
+ SimpleAddress?: string | undefined;
131
131
  }
132
132
  export interface ContactChannel {
133
133
  ContactChannelArn: string | undefined;
134
134
  ContactArn: string | undefined;
135
135
  Name: string | undefined;
136
- Type?: ChannelType;
136
+ Type?: ChannelType | undefined;
137
137
  DeliveryAddress: ContactChannelAddress | undefined;
138
138
  ActivationStatus: ActivationStatus | undefined;
139
139
  }
140
140
  export interface ContactTargetInfo {
141
- ContactId?: string;
141
+ ContactId?: string | undefined;
142
142
  IsEssential: boolean | undefined;
143
143
  }
144
144
  export interface HandOffTime {
@@ -146,32 +146,32 @@ export interface HandOffTime {
146
146
  MinuteOfHour: number | undefined;
147
147
  }
148
148
  export interface CoverageTime {
149
- Start?: HandOffTime;
150
- End?: HandOffTime;
149
+ Start?: HandOffTime | undefined;
150
+ End?: HandOffTime | undefined;
151
151
  }
152
152
  export interface Target {
153
- ChannelTargetInfo?: ChannelTargetInfo;
154
- ContactTargetInfo?: ContactTargetInfo;
153
+ ChannelTargetInfo?: ChannelTargetInfo | undefined;
154
+ ContactTargetInfo?: ContactTargetInfo | undefined;
155
155
  }
156
156
  export interface Stage {
157
157
  DurationInMinutes: number | undefined;
158
158
  Targets: Target[] | undefined;
159
159
  }
160
160
  export interface Plan {
161
- Stages?: Stage[];
162
- RotationIds?: string[];
161
+ Stages?: Stage[] | undefined;
162
+ RotationIds?: string[] | undefined;
163
163
  }
164
164
  export interface Tag {
165
- Key?: string;
166
- Value?: string;
165
+ Key?: string | undefined;
166
+ Value?: string | undefined;
167
167
  }
168
168
  export interface CreateContactRequest {
169
169
  Alias: string | undefined;
170
- DisplayName?: string;
170
+ DisplayName?: string | undefined;
171
171
  Type: ContactType | undefined;
172
172
  Plan: Plan | undefined;
173
- Tags?: Tag[];
174
- IdempotencyToken?: string;
173
+ Tags?: Tag[] | undefined;
174
+ IdempotencyToken?: string | undefined;
175
175
  }
176
176
  export interface CreateContactResult {
177
177
  ContactArn: string | undefined;
@@ -188,8 +188,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
188
188
  readonly name: "ServiceQuotaExceededException";
189
189
  readonly $fault: "client";
190
190
  Message: string | undefined;
191
- ResourceId?: string;
192
- ResourceType?: string;
191
+ ResourceId?: string | undefined;
192
+ ResourceType?: string | undefined;
193
193
  QuotaCode: string | undefined;
194
194
  ServiceCode: string | undefined;
195
195
  constructor(
@@ -201,8 +201,8 @@ export interface CreateContactChannelRequest {
201
201
  Name: string | undefined;
202
202
  Type: ChannelType | undefined;
203
203
  DeliveryAddress: ContactChannelAddress | undefined;
204
- DeferActivation?: boolean;
205
- IdempotencyToken?: string;
204
+ DeferActivation?: boolean | undefined;
205
+ IdempotencyToken?: string | undefined;
206
206
  }
207
207
  export interface CreateContactChannelResult {
208
208
  ContactChannelArn: string | undefined;
@@ -226,21 +226,21 @@ export interface WeeklySetting {
226
226
  HandOffTime: HandOffTime | undefined;
227
227
  }
228
228
  export interface RecurrenceSettings {
229
- MonthlySettings?: MonthlySetting[];
230
- WeeklySettings?: WeeklySetting[];
231
- DailySettings?: HandOffTime[];
229
+ MonthlySettings?: MonthlySetting[] | undefined;
230
+ WeeklySettings?: WeeklySetting[] | undefined;
231
+ DailySettings?: HandOffTime[] | undefined;
232
232
  NumberOfOnCalls: number | undefined;
233
- ShiftCoverages?: Partial<Record<DayOfWeek, CoverageTime[]>>;
233
+ ShiftCoverages?: Partial<Record<DayOfWeek, CoverageTime[]>> | undefined;
234
234
  RecurrenceMultiplier: number | undefined;
235
235
  }
236
236
  export interface CreateRotationRequest {
237
237
  Name: string | undefined;
238
238
  ContactIds: string[] | undefined;
239
- StartTime?: Date;
239
+ StartTime?: Date | undefined;
240
240
  TimeZoneId: string | undefined;
241
241
  Recurrence: RecurrenceSettings | undefined;
242
- Tags?: Tag[];
243
- IdempotencyToken?: string;
242
+ Tags?: Tag[] | undefined;
243
+ IdempotencyToken?: string | undefined;
244
244
  }
245
245
  export interface CreateRotationResult {
246
246
  RotationArn: string | undefined;
@@ -250,7 +250,7 @@ export interface CreateRotationOverrideRequest {
250
250
  NewContactIds: string[] | undefined;
251
251
  StartTime: Date | undefined;
252
252
  EndTime: Date | undefined;
253
- IdempotencyToken?: string;
253
+ IdempotencyToken?: string | undefined;
254
254
  }
255
255
  export interface CreateRotationOverrideResult {
256
256
  RotationOverrideId: string | undefined;
@@ -285,11 +285,11 @@ export interface DescribeEngagementResult {
285
285
  Sender: string | undefined;
286
286
  Subject: string | undefined;
287
287
  Content: string | undefined;
288
- PublicSubject?: string;
289
- PublicContent?: string;
290
- IncidentId?: string;
291
- StartTime?: Date;
292
- StopTime?: Date;
288
+ PublicSubject?: string | undefined;
289
+ PublicContent?: string | undefined;
290
+ IncidentId?: string | undefined;
291
+ StartTime?: Date | undefined;
292
+ StopTime?: Date | undefined;
293
293
  }
294
294
  export interface DescribePageRequest {
295
295
  PageId: string | undefined;
@@ -301,20 +301,20 @@ export interface DescribePageResult {
301
301
  Sender: string | undefined;
302
302
  Subject: string | undefined;
303
303
  Content: string | undefined;
304
- PublicSubject?: string;
305
- PublicContent?: string;
306
- IncidentId?: string;
307
- SentTime?: Date;
308
- ReadTime?: Date;
309
- DeliveryTime?: Date;
304
+ PublicSubject?: string | undefined;
305
+ PublicContent?: string | undefined;
306
+ IncidentId?: string | undefined;
307
+ SentTime?: Date | undefined;
308
+ ReadTime?: Date | undefined;
309
+ DeliveryTime?: Date | undefined;
310
310
  }
311
311
  export interface Engagement {
312
312
  EngagementArn: string | undefined;
313
313
  ContactArn: string | undefined;
314
314
  Sender: string | undefined;
315
- IncidentId?: string;
316
- StartTime?: Date;
317
- StopTime?: Date;
315
+ IncidentId?: string | undefined;
316
+ StartTime?: Date | undefined;
317
+ StopTime?: Date | undefined;
318
318
  }
319
319
  export interface GetContactRequest {
320
320
  ContactId: string | undefined;
@@ -322,7 +322,7 @@ export interface GetContactRequest {
322
322
  export interface GetContactResult {
323
323
  ContactArn: string | undefined;
324
324
  Alias: string | undefined;
325
- DisplayName?: string;
325
+ DisplayName?: string | undefined;
326
326
  Type: ContactType | undefined;
327
327
  Plan: Plan | undefined;
328
328
  }
@@ -335,14 +335,14 @@ export interface GetContactChannelResult {
335
335
  Name: string | undefined;
336
336
  Type: ChannelType | undefined;
337
337
  DeliveryAddress: ContactChannelAddress | undefined;
338
- ActivationStatus?: ActivationStatus;
338
+ ActivationStatus?: ActivationStatus | undefined;
339
339
  }
340
340
  export interface GetContactPolicyRequest {
341
341
  ContactArn: string | undefined;
342
342
  }
343
343
  export interface GetContactPolicyResult {
344
- ContactArn?: string;
345
- Policy?: string;
344
+ ContactArn?: string | undefined;
345
+ Policy?: string | undefined;
346
346
  }
347
347
  export interface GetRotationRequest {
348
348
  RotationId: string | undefined;
@@ -360,50 +360,50 @@ export interface GetRotationOverrideRequest {
360
360
  RotationOverrideId: string | undefined;
361
361
  }
362
362
  export interface GetRotationOverrideResult {
363
- RotationOverrideId?: string;
364
- RotationArn?: string;
365
- NewContactIds?: string[];
366
- StartTime?: Date;
367
- EndTime?: Date;
368
- CreateTime?: Date;
363
+ RotationOverrideId?: string | undefined;
364
+ RotationArn?: string | undefined;
365
+ NewContactIds?: string[] | undefined;
366
+ StartTime?: Date | undefined;
367
+ EndTime?: Date | undefined;
368
+ CreateTime?: Date | undefined;
369
369
  }
370
370
  export interface ListContactChannelsRequest {
371
371
  ContactId: string | undefined;
372
- NextToken?: string;
373
- MaxResults?: number;
372
+ NextToken?: string | undefined;
373
+ MaxResults?: number | undefined;
374
374
  }
375
375
  export interface ListContactChannelsResult {
376
- NextToken?: string;
376
+ NextToken?: string | undefined;
377
377
  ContactChannels: ContactChannel[] | undefined;
378
378
  }
379
379
  export interface ListContactsRequest {
380
- NextToken?: string;
381
- MaxResults?: number;
382
- AliasPrefix?: string;
383
- Type?: ContactType;
380
+ NextToken?: string | undefined;
381
+ MaxResults?: number | undefined;
382
+ AliasPrefix?: string | undefined;
383
+ Type?: ContactType | undefined;
384
384
  }
385
385
  export interface ListContactsResult {
386
- NextToken?: string;
387
- Contacts?: Contact[];
386
+ NextToken?: string | undefined;
387
+ Contacts?: Contact[] | undefined;
388
388
  }
389
389
  export interface TimeRange {
390
- StartTime?: Date;
391
- EndTime?: Date;
390
+ StartTime?: Date | undefined;
391
+ EndTime?: Date | undefined;
392
392
  }
393
393
  export interface ListEngagementsRequest {
394
- NextToken?: string;
395
- MaxResults?: number;
396
- IncidentId?: string;
397
- TimeRangeValue?: TimeRange;
394
+ NextToken?: string | undefined;
395
+ MaxResults?: number | undefined;
396
+ IncidentId?: string | undefined;
397
+ TimeRangeValue?: TimeRange | undefined;
398
398
  }
399
399
  export interface ListEngagementsResult {
400
- NextToken?: string;
400
+ NextToken?: string | undefined;
401
401
  Engagements: Engagement[] | undefined;
402
402
  }
403
403
  export interface ListPageReceiptsRequest {
404
404
  PageId: string | undefined;
405
- NextToken?: string;
406
- MaxResults?: number;
405
+ NextToken?: string | undefined;
406
+ MaxResults?: number | undefined;
407
407
  }
408
408
  export declare const ReceiptType: {
409
409
  readonly DELIVERED: "DELIVERED";
@@ -414,71 +414,71 @@ export declare const ReceiptType: {
414
414
  };
415
415
  export type ReceiptType = (typeof ReceiptType)[keyof typeof ReceiptType];
416
416
  export interface Receipt {
417
- ContactChannelArn?: string;
417
+ ContactChannelArn?: string | undefined;
418
418
  ReceiptType: ReceiptType | undefined;
419
- ReceiptInfo?: string;
419
+ ReceiptInfo?: string | undefined;
420
420
  ReceiptTime: Date | undefined;
421
421
  }
422
422
  export interface ListPageReceiptsResult {
423
- NextToken?: string;
424
- Receipts?: Receipt[];
423
+ NextToken?: string | undefined;
424
+ Receipts?: Receipt[] | undefined;
425
425
  }
426
426
  export interface ListPageResolutionsRequest {
427
- NextToken?: string;
427
+ NextToken?: string | undefined;
428
428
  PageId: string | undefined;
429
429
  }
430
430
  export interface ResolutionContact {
431
431
  ContactArn: string | undefined;
432
432
  Type: ContactType | undefined;
433
- StageIndex?: number;
433
+ StageIndex?: number | undefined;
434
434
  }
435
435
  export interface ListPageResolutionsResult {
436
- NextToken?: string;
436
+ NextToken?: string | undefined;
437
437
  PageResolutions: ResolutionContact[] | undefined;
438
438
  }
439
439
  export interface ListPagesByContactRequest {
440
440
  ContactId: string | undefined;
441
- NextToken?: string;
442
- MaxResults?: number;
441
+ NextToken?: string | undefined;
442
+ MaxResults?: number | undefined;
443
443
  }
444
444
  export interface Page {
445
445
  PageArn: string | undefined;
446
446
  EngagementArn: string | undefined;
447
447
  ContactArn: string | undefined;
448
448
  Sender: string | undefined;
449
- IncidentId?: string;
450
- SentTime?: Date;
451
- DeliveryTime?: Date;
452
- ReadTime?: Date;
449
+ IncidentId?: string | undefined;
450
+ SentTime?: Date | undefined;
451
+ DeliveryTime?: Date | undefined;
452
+ ReadTime?: Date | undefined;
453
453
  }
454
454
  export interface ListPagesByContactResult {
455
- NextToken?: string;
455
+ NextToken?: string | undefined;
456
456
  Pages: Page[] | undefined;
457
457
  }
458
458
  export interface ListPagesByEngagementRequest {
459
459
  EngagementId: string | undefined;
460
- NextToken?: string;
461
- MaxResults?: number;
460
+ NextToken?: string | undefined;
461
+ MaxResults?: number | undefined;
462
462
  }
463
463
  export interface ListPagesByEngagementResult {
464
- NextToken?: string;
464
+ NextToken?: string | undefined;
465
465
  Pages: Page[] | undefined;
466
466
  }
467
467
  export interface PreviewOverride {
468
- NewMembers?: string[];
469
- StartTime?: Date;
470
- EndTime?: Date;
468
+ NewMembers?: string[] | undefined;
469
+ StartTime?: Date | undefined;
470
+ EndTime?: Date | undefined;
471
471
  }
472
472
  export interface ListPreviewRotationShiftsRequest {
473
- RotationStartTime?: Date;
474
- StartTime?: Date;
473
+ RotationStartTime?: Date | undefined;
474
+ StartTime?: Date | undefined;
475
475
  EndTime: Date | undefined;
476
476
  Members: string[] | undefined;
477
477
  TimeZoneId: string | undefined;
478
478
  Recurrence: RecurrenceSettings | undefined;
479
- Overrides?: PreviewOverride[];
480
- NextToken?: string;
481
- MaxResults?: number;
479
+ Overrides?: PreviewOverride[] | undefined;
480
+ NextToken?: string | undefined;
481
+ MaxResults?: number | undefined;
482
482
  }
483
483
  export interface ShiftDetails {
484
484
  OverriddenContactIds: string[] | undefined;
@@ -489,22 +489,22 @@ export declare const ShiftType: {
489
489
  };
490
490
  export type ShiftType = (typeof ShiftType)[keyof typeof ShiftType];
491
491
  export interface RotationShift {
492
- ContactIds?: string[];
492
+ ContactIds?: string[] | undefined;
493
493
  StartTime: Date | undefined;
494
494
  EndTime: Date | undefined;
495
- Type?: ShiftType;
496
- ShiftDetails?: ShiftDetails;
495
+ Type?: ShiftType | undefined;
496
+ ShiftDetails?: ShiftDetails | undefined;
497
497
  }
498
498
  export interface ListPreviewRotationShiftsResult {
499
- RotationShifts?: RotationShift[];
500
- NextToken?: string;
499
+ RotationShifts?: RotationShift[] | undefined;
500
+ NextToken?: string | undefined;
501
501
  }
502
502
  export interface ListRotationOverridesRequest {
503
503
  RotationId: string | undefined;
504
504
  StartTime: Date | undefined;
505
505
  EndTime: Date | undefined;
506
- NextToken?: string;
507
- MaxResults?: number;
506
+ NextToken?: string | undefined;
507
+ MaxResults?: number | undefined;
508
508
  }
509
509
  export interface RotationOverride {
510
510
  RotationOverrideId: string | undefined;
@@ -514,42 +514,42 @@ export interface RotationOverride {
514
514
  CreateTime: Date | undefined;
515
515
  }
516
516
  export interface ListRotationOverridesResult {
517
- RotationOverrides?: RotationOverride[];
518
- NextToken?: string;
517
+ RotationOverrides?: RotationOverride[] | undefined;
518
+ NextToken?: string | undefined;
519
519
  }
520
520
  export interface ListRotationsRequest {
521
- RotationNamePrefix?: string;
522
- NextToken?: string;
523
- MaxResults?: number;
521
+ RotationNamePrefix?: string | undefined;
522
+ NextToken?: string | undefined;
523
+ MaxResults?: number | undefined;
524
524
  }
525
525
  export interface Rotation {
526
526
  RotationArn: string | undefined;
527
527
  Name: string | undefined;
528
- ContactIds?: string[];
529
- StartTime?: Date;
530
- TimeZoneId?: string;
531
- Recurrence?: RecurrenceSettings;
528
+ ContactIds?: string[] | undefined;
529
+ StartTime?: Date | undefined;
530
+ TimeZoneId?: string | undefined;
531
+ Recurrence?: RecurrenceSettings | undefined;
532
532
  }
533
533
  export interface ListRotationsResult {
534
- NextToken?: string;
534
+ NextToken?: string | undefined;
535
535
  Rotations: Rotation[] | undefined;
536
536
  }
537
537
  export interface ListRotationShiftsRequest {
538
538
  RotationId: string | undefined;
539
- StartTime?: Date;
539
+ StartTime?: Date | undefined;
540
540
  EndTime: Date | undefined;
541
- NextToken?: string;
542
- MaxResults?: number;
541
+ NextToken?: string | undefined;
542
+ MaxResults?: number | undefined;
543
543
  }
544
544
  export interface ListRotationShiftsResult {
545
- RotationShifts?: RotationShift[];
546
- NextToken?: string;
545
+ RotationShifts?: RotationShift[] | undefined;
546
+ NextToken?: string | undefined;
547
547
  }
548
548
  export interface ListTagsForResourceRequest {
549
549
  ResourceARN: string | undefined;
550
550
  }
551
551
  export interface ListTagsForResourceResult {
552
- Tags?: Tag[];
552
+ Tags?: Tag[] | undefined;
553
553
  }
554
554
  export interface PutContactPolicyRequest {
555
555
  ContactArn: string | undefined;
@@ -565,17 +565,17 @@ export interface StartEngagementRequest {
565
565
  Sender: string | undefined;
566
566
  Subject: string | undefined;
567
567
  Content: string | undefined;
568
- PublicSubject?: string;
569
- PublicContent?: string;
570
- IncidentId?: string;
571
- IdempotencyToken?: string;
568
+ PublicSubject?: string | undefined;
569
+ PublicContent?: string | undefined;
570
+ IncidentId?: string | undefined;
571
+ IdempotencyToken?: string | undefined;
572
572
  }
573
573
  export interface StartEngagementResult {
574
574
  EngagementArn: string | undefined;
575
575
  }
576
576
  export interface StopEngagementRequest {
577
577
  EngagementId: string | undefined;
578
- Reason?: string;
578
+ Reason?: string | undefined;
579
579
  }
580
580
  export interface StopEngagementResult {}
581
581
  export interface TagResourceRequest {
@@ -590,21 +590,21 @@ export interface UntagResourceRequest {
590
590
  export interface UntagResourceResult {}
591
591
  export interface UpdateContactRequest {
592
592
  ContactId: string | undefined;
593
- DisplayName?: string;
594
- Plan?: Plan;
593
+ DisplayName?: string | undefined;
594
+ Plan?: Plan | undefined;
595
595
  }
596
596
  export interface UpdateContactResult {}
597
597
  export interface UpdateContactChannelRequest {
598
598
  ContactChannelId: string | undefined;
599
- Name?: string;
600
- DeliveryAddress?: ContactChannelAddress;
599
+ Name?: string | undefined;
600
+ DeliveryAddress?: ContactChannelAddress | undefined;
601
601
  }
602
602
  export interface UpdateContactChannelResult {}
603
603
  export interface UpdateRotationRequest {
604
604
  RotationId: string | undefined;
605
- ContactIds?: string[];
606
- StartTime?: Date;
607
- TimeZoneId?: string;
605
+ ContactIds?: string[] | undefined;
606
+ StartTime?: Date | undefined;
607
+ TimeZoneId?: string | undefined;
608
608
  Recurrence: RecurrenceSettings | undefined;
609
609
  }
610
610
  export interface UpdateRotationResult {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm-contacts",
3
3
  "description": "AWS SDK for JavaScript Ssm Contacts Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.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-ssm-contacts",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",