@aws-sdk/client-connectcases 3.1024.0 → 3.1026.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.
@@ -288,7 +288,7 @@ export interface GetCaseResponse {
288
288
  * <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>
289
289
  * @public
290
290
  */
291
- tags?: Record<string, string> | undefined;
291
+ tags?: Record<string, string | null> | undefined;
292
292
  }
293
293
  /**
294
294
  * @public
@@ -474,7 +474,7 @@ export interface AuditEvent {
474
474
  * <p>A list of Case Audit History event fields.</p>
475
475
  * @public
476
476
  */
477
- fields: AuditEventField[] | undefined;
477
+ fields: (AuditEventField | null)[] | undefined;
478
478
  /**
479
479
  * <p>Information of the user which performed the audit.</p>
480
480
  * @public
@@ -494,7 +494,7 @@ export interface GetCaseAuditEventsResponse {
494
494
  * <p>A list of case audits where each represents a particular edit of the case.</p>
495
495
  * @public
496
496
  */
497
- auditEvents: AuditEvent[] | undefined;
497
+ auditEvents: (AuditEvent | null)[] | undefined;
498
498
  }
499
499
  /**
500
500
  * @public
@@ -1269,7 +1269,7 @@ export interface SearchRelatedItemsResponseItem {
1269
1269
  * <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>
1270
1270
  * @public
1271
1271
  */
1272
- tags?: Record<string, string> | undefined;
1272
+ tags?: Record<string, string | null> | undefined;
1273
1273
  /**
1274
1274
  * <p>Represents the creator of the related item.</p>
1275
1275
  * @public
@@ -1289,7 +1289,7 @@ export interface SearchRelatedItemsResponse {
1289
1289
  * <p>A list of items related to a case. </p>
1290
1290
  * @public
1291
1291
  */
1292
- relatedItems: SearchRelatedItemsResponseItem[] | undefined;
1292
+ relatedItems: (SearchRelatedItemsResponseItem | null)[] | undefined;
1293
1293
  }
1294
1294
  /**
1295
1295
  * <p>Represents the updated content of a <code>Comment</code> related item.</p>
@@ -1426,7 +1426,7 @@ export interface UpdateRelatedItemResponse {
1426
1426
  * <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>
1427
1427
  * @public
1428
1428
  */
1429
- tags?: Record<string, string> | undefined;
1429
+ tags?: Record<string, string | null> | undefined;
1430
1430
  /**
1431
1431
  * <p>Represents the last user that updated the related item.</p>
1432
1432
  * @public
@@ -1527,7 +1527,7 @@ export interface SearchCasesResponseItem {
1527
1527
  * <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>
1528
1528
  * @public
1529
1529
  */
1530
- tags?: Record<string, string> | undefined;
1530
+ tags?: Record<string, string | null> | undefined;
1531
1531
  }
1532
1532
  /**
1533
1533
  * @public
@@ -1542,7 +1542,7 @@ export interface SearchCasesResponse {
1542
1542
  * <p>A list of case documents where each case contains the properties <code>CaseId</code> and <code>Fields</code> where each field is a complex union structure. </p>
1543
1543
  * @public
1544
1544
  */
1545
- cases: SearchCasesResponseItem[] | undefined;
1545
+ cases: (SearchCasesResponseItem | null)[] | undefined;
1546
1546
  /**
1547
1547
  * <p>The total number of cases that matched the search criteria.</p>
1548
1548
  * @public
@@ -2066,7 +2066,7 @@ export interface GetDomainResponse {
2066
2066
  * <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>
2067
2067
  * @public
2068
2068
  */
2069
- tags?: Record<string, string> | undefined;
2069
+ tags?: Record<string, string | null> | undefined;
2070
2070
  }
2071
2071
  /**
2072
2072
  * @public
@@ -2194,7 +2194,7 @@ export interface SearchAllRelatedItemsResponseItem {
2194
2194
  * <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>
2195
2195
  * @public
2196
2196
  */
2197
- tags?: Record<string, string> | undefined;
2197
+ tags?: Record<string, string | null> | undefined;
2198
2198
  }
2199
2199
  /**
2200
2200
  * @public
@@ -2209,7 +2209,7 @@ export interface SearchAllRelatedItemsResponse {
2209
2209
  * <p>A list of items related to a case.</p>
2210
2210
  * @public
2211
2211
  */
2212
- relatedItems: SearchAllRelatedItemsResponseItem[] | undefined;
2212
+ relatedItems: (SearchAllRelatedItemsResponseItem | null)[] | undefined;
2213
2213
  }
2214
2214
  /**
2215
2215
  * @public
@@ -2330,7 +2330,7 @@ export interface GetFieldResponse {
2330
2330
  * <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>
2331
2331
  * @public
2332
2332
  */
2333
- tags?: Record<string, string> | undefined;
2333
+ tags?: Record<string, string | null> | undefined;
2334
2334
  /**
2335
2335
  * <p>Denotes whether or not the resource has been deleted.</p>
2336
2336
  * @public
@@ -2873,7 +2873,7 @@ export interface GetLayoutResponse {
2873
2873
  * <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>
2874
2874
  * @public
2875
2875
  */
2876
- tags?: Record<string, string> | undefined;
2876
+ tags?: Record<string, string | null> | undefined;
2877
2877
  /**
2878
2878
  * <p>Denotes whether or not the resource has been deleted.</p>
2879
2879
  * @public
@@ -2994,7 +2994,7 @@ export interface ListTagsForResourceResponse {
2994
2994
  * <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>
2995
2995
  * @public
2996
2996
  */
2997
- tags?: Record<string, string> | undefined;
2997
+ tags?: Record<string, string | null> | undefined;
2998
2998
  }
2999
2999
  /**
3000
3000
  * @public
@@ -3009,7 +3009,7 @@ export interface TagResourceRequest {
3009
3009
  * <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>
3010
3010
  * @public
3011
3011
  */
3012
- tags: Record<string, string> | undefined;
3012
+ tags: Record<string, string | null> | undefined;
3013
3013
  }
3014
3014
  /**
3015
3015
  * <p>Object to store configuration of layouts associated to the template.</p>
@@ -3198,7 +3198,7 @@ export interface GetTemplateResponse {
3198
3198
  * <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>
3199
3199
  * @public
3200
3200
  */
3201
- tags?: Record<string, string> | undefined;
3201
+ tags?: Record<string, string | null> | undefined;
3202
3202
  /**
3203
3203
  * <p>The status of the template.</p>
3204
3204
  * @public
@@ -4014,7 +4014,7 @@ export interface GetCaseRuleResponse {
4014
4014
  * <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>
4015
4015
  * @public
4016
4016
  */
4017
- tags?: Record<string, string> | undefined;
4017
+ tags?: Record<string, string | null> | undefined;
4018
4018
  }
4019
4019
  /**
4020
4020
  * @public
@@ -139,7 +139,7 @@ export interface GetCaseResponse {
139
139
  fields: FieldValue[] | undefined;
140
140
  templateId: string | undefined;
141
141
  nextToken?: string | undefined;
142
- tags?: Record<string, string> | undefined;
142
+ tags?: Record<string, string | null> | undefined;
143
143
  }
144
144
  export interface GetCaseAuditEventsRequest {
145
145
  caseId: string | undefined;
@@ -226,12 +226,12 @@ export interface AuditEvent {
226
226
  type: AuditEventType | undefined;
227
227
  relatedItemType?: RelatedItemType | undefined;
228
228
  performedTime: Date | undefined;
229
- fields: AuditEventField[] | undefined;
229
+ fields: (AuditEventField | null)[] | undefined;
230
230
  performedBy?: AuditEventPerformedBy | undefined;
231
231
  }
232
232
  export interface GetCaseAuditEventsResponse {
233
233
  nextToken?: string | undefined;
234
- auditEvents: AuditEvent[] | undefined;
234
+ auditEvents: (AuditEvent | null)[] | undefined;
235
235
  }
236
236
  export interface ListCasesForContactRequest {
237
237
  domainId: string | undefined;
@@ -593,12 +593,12 @@ export interface SearchRelatedItemsResponseItem {
593
593
  type: RelatedItemType | undefined;
594
594
  associationTime: Date | undefined;
595
595
  content: RelatedItemContent | undefined;
596
- tags?: Record<string, string> | undefined;
596
+ tags?: Record<string, string | null> | undefined;
597
597
  performedBy?: UserUnion | undefined;
598
598
  }
599
599
  export interface SearchRelatedItemsResponse {
600
600
  nextToken?: string | undefined;
601
- relatedItems: SearchRelatedItemsResponseItem[] | undefined;
601
+ relatedItems: (SearchRelatedItemsResponseItem | null)[] | undefined;
602
602
  }
603
603
  export interface CommentUpdateContent {
604
604
  body: string | undefined;
@@ -646,7 +646,7 @@ export interface UpdateRelatedItemResponse {
646
646
  type: RelatedItemType | undefined;
647
647
  content: RelatedItemContent | undefined;
648
648
  associationTime: Date | undefined;
649
- tags?: Record<string, string> | undefined;
649
+ tags?: Record<string, string | null> | undefined;
650
650
  lastUpdatedUser?: UserUnion | undefined;
651
651
  createdBy?: UserUnion | undefined;
652
652
  }
@@ -677,11 +677,11 @@ export interface SearchCasesResponseItem {
677
677
  caseId: string | undefined;
678
678
  templateId: string | undefined;
679
679
  fields: FieldValue[] | undefined;
680
- tags?: Record<string, string> | undefined;
680
+ tags?: Record<string, string | null> | undefined;
681
681
  }
682
682
  export interface SearchCasesResponse {
683
683
  nextToken?: string | undefined;
684
- cases: SearchCasesResponseItem[] | undefined;
684
+ cases: (SearchCasesResponseItem | null)[] | undefined;
685
685
  totalCount?: number | undefined;
686
686
  }
687
687
  export interface UpdateCaseRequest {
@@ -850,7 +850,7 @@ export interface GetDomainResponse {
850
850
  name: string | undefined;
851
851
  createdTime: Date | undefined;
852
852
  domainStatus: DomainStatus | undefined;
853
- tags?: Record<string, string> | undefined;
853
+ tags?: Record<string, string | null> | undefined;
854
854
  }
855
855
  export interface ListDomainsRequest {
856
856
  maxResults?: number | undefined;
@@ -881,11 +881,11 @@ export interface SearchAllRelatedItemsResponseItem {
881
881
  associationTime: Date | undefined;
882
882
  content: RelatedItemContent | undefined;
883
883
  performedBy?: UserUnion | undefined;
884
- tags?: Record<string, string> | undefined;
884
+ tags?: Record<string, string | null> | undefined;
885
885
  }
886
886
  export interface SearchAllRelatedItemsResponse {
887
887
  nextToken?: string | undefined;
888
- relatedItems: SearchAllRelatedItemsResponseItem[] | undefined;
888
+ relatedItems: (SearchAllRelatedItemsResponseItem | null)[] | undefined;
889
889
  }
890
890
  export interface BatchGetFieldRequest {
891
891
  domainId: string | undefined;
@@ -923,7 +923,7 @@ export interface GetFieldResponse {
923
923
  description?: string | undefined;
924
924
  type: FieldType | undefined;
925
925
  namespace: FieldNamespace | undefined;
926
- tags?: Record<string, string> | undefined;
926
+ tags?: Record<string, string | null> | undefined;
927
927
  deleted?: boolean | undefined;
928
928
  createdTime?: Date | undefined;
929
929
  lastModifiedTime?: Date | undefined;
@@ -1072,7 +1072,7 @@ export interface GetLayoutResponse {
1072
1072
  layoutArn: string | undefined;
1073
1073
  name: string | undefined;
1074
1074
  content: LayoutContent | undefined;
1075
- tags?: Record<string, string> | undefined;
1075
+ tags?: Record<string, string | null> | undefined;
1076
1076
  deleted?: boolean | undefined;
1077
1077
  createdTime?: Date | undefined;
1078
1078
  lastModifiedTime?: Date | undefined;
@@ -1102,11 +1102,11 @@ export interface ListTagsForResourceRequest {
1102
1102
  arn: string | undefined;
1103
1103
  }
1104
1104
  export interface ListTagsForResourceResponse {
1105
- tags?: Record<string, string> | undefined;
1105
+ tags?: Record<string, string | null> | undefined;
1106
1106
  }
1107
1107
  export interface TagResourceRequest {
1108
1108
  arn: string | undefined;
1109
- tags: Record<string, string> | undefined;
1109
+ tags: Record<string, string | null> | undefined;
1110
1110
  }
1111
1111
  export interface LayoutConfiguration {
1112
1112
  defaultLayout?: string | undefined;
@@ -1152,7 +1152,7 @@ export interface GetTemplateResponse {
1152
1152
  description?: string | undefined;
1153
1153
  layoutConfiguration?: LayoutConfiguration | undefined;
1154
1154
  requiredFields?: RequiredField[] | undefined;
1155
- tags?: Record<string, string> | undefined;
1155
+ tags?: Record<string, string | null> | undefined;
1156
1156
  status: TemplateStatus | undefined;
1157
1157
  deleted?: boolean | undefined;
1158
1158
  createdTime?: Date | undefined;
@@ -1529,7 +1529,7 @@ export interface GetCaseRuleResponse {
1529
1529
  deleted?: boolean | undefined;
1530
1530
  createdTime?: Date | undefined;
1531
1531
  lastModifiedTime?: Date | undefined;
1532
- tags?: Record<string, string> | undefined;
1532
+ tags?: Record<string, string | null> | undefined;
1533
1533
  }
1534
1534
  export interface UpdateCaseRuleRequest {
1535
1535
  domainId: string | undefined;
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.1024.0",
4
+ "version": "3.1026.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connectcases",
@@ -21,41 +21,41 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.26",
25
- "@aws-sdk/credential-provider-node": "^3.972.29",
26
- "@aws-sdk/middleware-host-header": "^3.972.8",
27
- "@aws-sdk/middleware-logger": "^3.972.8",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.9",
29
- "@aws-sdk/middleware-user-agent": "^3.972.28",
30
- "@aws-sdk/region-config-resolver": "^3.972.10",
31
- "@aws-sdk/types": "^3.973.6",
32
- "@aws-sdk/util-endpoints": "^3.996.5",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.8",
34
- "@aws-sdk/util-user-agent-node": "^3.973.14",
35
- "@smithy/config-resolver": "^4.4.13",
36
- "@smithy/core": "^3.23.13",
37
- "@smithy/fetch-http-handler": "^5.3.15",
38
- "@smithy/hash-node": "^4.2.12",
39
- "@smithy/invalid-dependency": "^4.2.12",
40
- "@smithy/middleware-content-length": "^4.2.12",
41
- "@smithy/middleware-endpoint": "^4.4.28",
42
- "@smithy/middleware-retry": "^4.4.46",
43
- "@smithy/middleware-serde": "^4.2.16",
44
- "@smithy/middleware-stack": "^4.2.12",
45
- "@smithy/node-config-provider": "^4.3.12",
46
- "@smithy/node-http-handler": "^4.5.1",
47
- "@smithy/protocol-http": "^5.3.12",
48
- "@smithy/smithy-client": "^4.12.8",
49
- "@smithy/types": "^4.13.1",
50
- "@smithy/url-parser": "^4.2.12",
24
+ "@aws-sdk/core": "^3.973.27",
25
+ "@aws-sdk/credential-provider-node": "^3.972.30",
26
+ "@aws-sdk/middleware-host-header": "^3.972.9",
27
+ "@aws-sdk/middleware-logger": "^3.972.9",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.10",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.29",
30
+ "@aws-sdk/region-config-resolver": "^3.972.11",
31
+ "@aws-sdk/types": "^3.973.7",
32
+ "@aws-sdk/util-endpoints": "^3.996.6",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.9",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.15",
35
+ "@smithy/config-resolver": "^4.4.14",
36
+ "@smithy/core": "^3.23.14",
37
+ "@smithy/fetch-http-handler": "^5.3.16",
38
+ "@smithy/hash-node": "^4.2.13",
39
+ "@smithy/invalid-dependency": "^4.2.13",
40
+ "@smithy/middleware-content-length": "^4.2.13",
41
+ "@smithy/middleware-endpoint": "^4.4.29",
42
+ "@smithy/middleware-retry": "^4.5.0",
43
+ "@smithy/middleware-serde": "^4.2.17",
44
+ "@smithy/middleware-stack": "^4.2.13",
45
+ "@smithy/node-config-provider": "^4.3.13",
46
+ "@smithy/node-http-handler": "^4.5.2",
47
+ "@smithy/protocol-http": "^5.3.13",
48
+ "@smithy/smithy-client": "^4.12.9",
49
+ "@smithy/types": "^4.14.0",
50
+ "@smithy/url-parser": "^4.2.13",
51
51
  "@smithy/util-base64": "^4.3.2",
52
52
  "@smithy/util-body-length-browser": "^4.2.2",
53
53
  "@smithy/util-body-length-node": "^4.2.3",
54
- "@smithy/util-defaults-mode-browser": "^4.3.44",
55
- "@smithy/util-defaults-mode-node": "^4.2.48",
56
- "@smithy/util-endpoints": "^3.3.3",
57
- "@smithy/util-middleware": "^4.2.12",
58
- "@smithy/util-retry": "^4.2.13",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.45",
55
+ "@smithy/util-defaults-mode-node": "^4.2.49",
56
+ "@smithy/util-endpoints": "^3.3.4",
57
+ "@smithy/util-middleware": "^4.2.13",
58
+ "@smithy/util-retry": "^4.3.0",
59
59
  "@smithy/util-utf8": "^4.2.2",
60
60
  "tslib": "^2.6.2"
61
61
  },