@aws-sdk/client-connectcases 3.428.0 → 3.429.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.
@@ -377,7 +377,7 @@ export interface CommentContent {
377
377
  * @public
378
378
  * <p>Type of the text in the box of a <code>Comment</code> on a case.</p>
379
379
  */
380
- contentType: CommentBodyTextType | string | undefined;
380
+ contentType: CommentBodyTextType | undefined;
381
381
  }
382
382
  /**
383
383
  * @public
@@ -462,7 +462,7 @@ export interface CreateRelatedItemRequest {
462
462
  * @public
463
463
  * <p>The type of a related item.</p>
464
464
  */
465
- type: RelatedItemType | string | undefined;
465
+ type: RelatedItemType | undefined;
466
466
  /**
467
467
  * @public
468
468
  * <p>The content of a related item to be created.</p>
@@ -670,7 +670,7 @@ export interface SearchRelatedItemsResponseItem {
670
670
  * @public
671
671
  * <p>Type of a related item.</p>
672
672
  */
673
- type: RelatedItemType | string | undefined;
673
+ type: RelatedItemType | undefined;
674
674
  /**
675
675
  * @public
676
676
  * <p>Time at which a related item was associated with a case.</p>
@@ -838,7 +838,7 @@ export interface Sort {
838
838
  * @public
839
839
  * <p>A structured set of sort terms</p>
840
840
  */
841
- sortOrder: Order | string | undefined;
841
+ sortOrder: Order | undefined;
842
842
  }
843
843
  /**
844
844
  * @public
@@ -950,7 +950,7 @@ export interface CreateDomainResponse {
950
950
  * @public
951
951
  * <p>The status of the domain.</p>
952
952
  */
953
- domainStatus: DomainStatus | string | undefined;
953
+ domainStatus: DomainStatus | undefined;
954
954
  }
955
955
  /**
956
956
  * @public
@@ -1083,7 +1083,7 @@ export interface GetDomainResponse {
1083
1083
  * @public
1084
1084
  * <p>The status of the Cases domain.</p>
1085
1085
  */
1086
- domainStatus: DomainStatus | string | undefined;
1086
+ domainStatus: DomainStatus | undefined;
1087
1087
  /**
1088
1088
  * @public
1089
1089
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
@@ -1256,12 +1256,12 @@ export interface GetFieldResponse {
1256
1256
  * @public
1257
1257
  * <p>Type of the field.</p>
1258
1258
  */
1259
- type: FieldType | string | undefined;
1259
+ type: FieldType | undefined;
1260
1260
  /**
1261
1261
  * @public
1262
1262
  * <p>Namespace of the field.</p>
1263
1263
  */
1264
- namespace: FieldNamespace | string | undefined;
1264
+ namespace: FieldNamespace | undefined;
1265
1265
  /**
1266
1266
  * @public
1267
1267
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
@@ -1376,7 +1376,7 @@ export interface CreateFieldRequest {
1376
1376
  * @public
1377
1377
  * <p>Defines the data type, some system constraints, and default display of the field.</p>
1378
1378
  */
1379
- type: FieldType | string | undefined;
1379
+ type: FieldType | undefined;
1380
1380
  /**
1381
1381
  * @public
1382
1382
  * <p>The description of the field.</p>
@@ -1490,12 +1490,12 @@ export interface FieldSummary {
1490
1490
  * @public
1491
1491
  * <p>The type of a field.</p>
1492
1492
  */
1493
- type: FieldType | string | undefined;
1493
+ type: FieldType | undefined;
1494
1494
  /**
1495
1495
  * @public
1496
1496
  * <p>The namespace of a field.</p>
1497
1497
  */
1498
- namespace: FieldNamespace | string | undefined;
1498
+ namespace: FieldNamespace | undefined;
1499
1499
  }
1500
1500
  /**
1501
1501
  * @public
@@ -1932,7 +1932,7 @@ export interface CreateTemplateRequest {
1932
1932
  * @public
1933
1933
  * <p>The status of the template.</p>
1934
1934
  */
1935
- status?: TemplateStatus | string;
1935
+ status?: TemplateStatus;
1936
1936
  }
1937
1937
  /**
1938
1938
  * @public
@@ -2008,7 +2008,7 @@ export interface GetTemplateResponse {
2008
2008
  * @public
2009
2009
  * <p>The status of the template.</p>
2010
2010
  */
2011
- status: TemplateStatus | string | undefined;
2011
+ status: TemplateStatus | undefined;
2012
2012
  }
2013
2013
  /**
2014
2014
  * @public
@@ -2034,7 +2034,7 @@ export interface ListTemplatesRequest {
2034
2034
  * @public
2035
2035
  * <p>A list of status values to filter on.</p>
2036
2036
  */
2037
- status?: (TemplateStatus | string)[];
2037
+ status?: TemplateStatus[];
2038
2038
  }
2039
2039
  /**
2040
2040
  * @public
@@ -2060,7 +2060,7 @@ export interface TemplateSummary {
2060
2060
  * @public
2061
2061
  * <p>The status of the template.</p>
2062
2062
  */
2063
- status: TemplateStatus | string | undefined;
2063
+ status: TemplateStatus | undefined;
2064
2064
  }
2065
2065
  /**
2066
2066
  * @public
@@ -2116,7 +2116,7 @@ export interface UpdateTemplateRequest {
2116
2116
  * @public
2117
2117
  * <p>The status of the template.</p>
2118
2118
  */
2119
- status?: TemplateStatus | string;
2119
+ status?: TemplateStatus;
2120
2120
  }
2121
2121
  /**
2122
2122
  * @public
@@ -147,7 +147,7 @@ export type CommentBodyTextType =
147
147
  (typeof CommentBodyTextType)[keyof typeof CommentBodyTextType];
148
148
  export interface CommentContent {
149
149
  body: string | undefined;
150
- contentType: CommentBodyTextType | string | undefined;
150
+ contentType: CommentBodyTextType | undefined;
151
151
  }
152
152
  export interface Contact {
153
153
  contactArn: string | undefined;
@@ -188,7 +188,7 @@ export type RelatedItemType =
188
188
  export interface CreateRelatedItemRequest {
189
189
  domainId: string | undefined;
190
190
  caseId: string | undefined;
191
- type: RelatedItemType | string | undefined;
191
+ type: RelatedItemType | undefined;
192
192
  content: RelatedItemInputContent | undefined;
193
193
  }
194
194
  export interface CreateRelatedItemResponse {
@@ -275,7 +275,7 @@ export declare namespace RelatedItemContent {
275
275
  }
276
276
  export interface SearchRelatedItemsResponseItem {
277
277
  relatedItemId: string | undefined;
278
- type: RelatedItemType | string | undefined;
278
+ type: RelatedItemType | undefined;
279
279
  associationTime: Date | undefined;
280
280
  content: RelatedItemContent | undefined;
281
281
  tags?: Record<string, string>;
@@ -374,7 +374,7 @@ export declare const Order: {
374
374
  export type Order = (typeof Order)[keyof typeof Order];
375
375
  export interface Sort {
376
376
  fieldId: string | undefined;
377
- sortOrder: Order | string | undefined;
377
+ sortOrder: Order | undefined;
378
378
  }
379
379
  export interface SearchCasesResponseItem {
380
380
  caseId: string | undefined;
@@ -404,7 +404,7 @@ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
404
404
  export interface CreateDomainResponse {
405
405
  domainId: string | undefined;
406
406
  domainArn: string | undefined;
407
- domainStatus: DomainStatus | string | undefined;
407
+ domainStatus: DomainStatus | undefined;
408
408
  }
409
409
  export interface DeleteDomainRequest {
410
410
  domainId: string | undefined;
@@ -438,7 +438,7 @@ export interface GetDomainResponse {
438
438
  domainArn: string | undefined;
439
439
  name: string | undefined;
440
440
  createdTime: Date | undefined;
441
- domainStatus: DomainStatus | string | undefined;
441
+ domainStatus: DomainStatus | undefined;
442
442
  tags?: Record<string, string>;
443
443
  }
444
444
  export interface ListDomainsRequest {
@@ -488,8 +488,8 @@ export interface GetFieldResponse {
488
488
  name: string | undefined;
489
489
  fieldArn: string | undefined;
490
490
  description?: string;
491
- type: FieldType | string | undefined;
492
- namespace: FieldNamespace | string | undefined;
491
+ type: FieldType | undefined;
492
+ namespace: FieldNamespace | undefined;
493
493
  tags?: Record<string, string>;
494
494
  }
495
495
  export interface BatchGetFieldResponse {
@@ -517,7 +517,7 @@ export interface BatchPutFieldOptionsResponse {
517
517
  export interface CreateFieldRequest {
518
518
  domainId: string | undefined;
519
519
  name: string | undefined;
520
- type: FieldType | string | undefined;
520
+ type: FieldType | undefined;
521
521
  description?: string;
522
522
  }
523
523
  export interface CreateFieldResponse {
@@ -544,8 +544,8 @@ export interface FieldSummary {
544
544
  fieldId: string | undefined;
545
545
  fieldArn: string | undefined;
546
546
  name: string | undefined;
547
- type: FieldType | string | undefined;
548
- namespace: FieldNamespace | string | undefined;
547
+ type: FieldType | undefined;
548
+ namespace: FieldNamespace | undefined;
549
549
  }
550
550
  export interface ListFieldsResponse {
551
551
  fields: FieldSummary[] | undefined;
@@ -675,7 +675,7 @@ export interface CreateTemplateRequest {
675
675
  description?: string;
676
676
  layoutConfiguration?: LayoutConfiguration;
677
677
  requiredFields?: RequiredField[];
678
- status?: TemplateStatus | string;
678
+ status?: TemplateStatus;
679
679
  }
680
680
  export interface CreateTemplateResponse {
681
681
  templateId: string | undefined;
@@ -693,19 +693,19 @@ export interface GetTemplateResponse {
693
693
  layoutConfiguration?: LayoutConfiguration;
694
694
  requiredFields?: RequiredField[];
695
695
  tags?: Record<string, string>;
696
- status: TemplateStatus | string | undefined;
696
+ status: TemplateStatus | undefined;
697
697
  }
698
698
  export interface ListTemplatesRequest {
699
699
  domainId: string | undefined;
700
700
  maxResults?: number;
701
701
  nextToken?: string;
702
- status?: (TemplateStatus | string)[];
702
+ status?: TemplateStatus[];
703
703
  }
704
704
  export interface TemplateSummary {
705
705
  templateId: string | undefined;
706
706
  templateArn: string | undefined;
707
707
  name: string | undefined;
708
- status: TemplateStatus | string | undefined;
708
+ status: TemplateStatus | undefined;
709
709
  }
710
710
  export interface ListTemplatesResponse {
711
711
  templates: TemplateSummary[] | undefined;
@@ -718,7 +718,7 @@ export interface UpdateTemplateRequest {
718
718
  description?: string;
719
719
  layoutConfiguration?: LayoutConfiguration;
720
720
  requiredFields?: RequiredField[];
721
- status?: TemplateStatus | string;
721
+ status?: TemplateStatus;
722
722
  }
723
723
  export interface UpdateTemplateResponse {}
724
724
  export interface UntagResourceRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connectcases",
3
3
  "description": "AWS SDK for JavaScript Connectcases Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.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,9 +21,9 @@
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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",