@aws-sdk/client-connectcases 3.686.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.
|
@@ -203,12 +203,12 @@ export interface CreateCaseRequest {
|
|
|
203
203
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
clientToken?: string;
|
|
206
|
+
clientToken?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>Represents the identity of the person who performed the action.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
performedBy?: UserUnion;
|
|
211
|
+
performedBy?: UserUnion | undefined;
|
|
212
212
|
}
|
|
213
213
|
/**
|
|
214
214
|
* @public
|
|
@@ -238,7 +238,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
238
238
|
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
retryAfterSeconds?: number;
|
|
241
|
+
retryAfterSeconds?: number | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* @internal
|
|
244
244
|
*/
|
|
@@ -327,7 +327,7 @@ export interface GetCaseRequest {
|
|
|
327
327
|
* response in the next request to retrieve the next set of results.</p>
|
|
328
328
|
* @public
|
|
329
329
|
*/
|
|
330
|
-
nextToken?: string;
|
|
330
|
+
nextToken?: string | undefined;
|
|
331
331
|
}
|
|
332
332
|
/**
|
|
333
333
|
* @public
|
|
@@ -347,12 +347,12 @@ export interface GetCaseResponse {
|
|
|
347
347
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
nextToken?: string;
|
|
350
|
+
nextToken?: string | undefined;
|
|
351
351
|
/**
|
|
352
352
|
* <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>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
tags?: Record<string, string
|
|
355
|
+
tags?: Record<string, string> | undefined;
|
|
356
356
|
}
|
|
357
357
|
/**
|
|
358
358
|
* @public
|
|
@@ -373,13 +373,13 @@ export interface GetCaseAuditEventsRequest {
|
|
|
373
373
|
* This is also the default when no other value is provided.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
maxResults?: number;
|
|
376
|
+
maxResults?: number | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
379
379
|
* the next request to retrieve the next set of results.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
nextToken?: string;
|
|
382
|
+
nextToken?: string | undefined;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
385
|
* <p>Object to store union of Field values.</p>
|
|
@@ -489,7 +489,7 @@ export interface AuditEventField {
|
|
|
489
489
|
* <p>Union of potential field value types.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
oldValue?: AuditEventFieldValueUnion;
|
|
492
|
+
oldValue?: AuditEventFieldValueUnion | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>Union of potential field value types.</p>
|
|
495
495
|
* @public
|
|
@@ -505,7 +505,7 @@ export interface AuditEventPerformedBy {
|
|
|
505
505
|
* <p>Represents the identity of the person who performed the action.</p>
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
user?: UserUnion;
|
|
508
|
+
user?: UserUnion | undefined;
|
|
509
509
|
/**
|
|
510
510
|
* <p>Unique identifier of an IAM role.</p>
|
|
511
511
|
* @public
|
|
@@ -557,7 +557,7 @@ export interface AuditEvent {
|
|
|
557
557
|
* <p>The Type of the related item.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
relatedItemType?: RelatedItemType;
|
|
560
|
+
relatedItemType?: RelatedItemType | undefined;
|
|
561
561
|
/**
|
|
562
562
|
* <p>Time at which an Audit History event took place.</p>
|
|
563
563
|
* @public
|
|
@@ -572,7 +572,7 @@ export interface AuditEvent {
|
|
|
572
572
|
* <p>Information of the user which performed the audit.</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
performedBy?: AuditEventPerformedBy;
|
|
575
|
+
performedBy?: AuditEventPerformedBy | undefined;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
578
|
* @public
|
|
@@ -583,7 +583,7 @@ export interface GetCaseAuditEventsResponse {
|
|
|
583
583
|
* return.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
nextToken?: string;
|
|
586
|
+
nextToken?: string | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>A list of case audits where each represents a particular edit of the case.</p>
|
|
589
589
|
* @public
|
|
@@ -608,13 +608,13 @@ export interface ListCasesForContactRequest {
|
|
|
608
608
|
* <p>The maximum number of results to return per page.</p>
|
|
609
609
|
* @public
|
|
610
610
|
*/
|
|
611
|
-
maxResults?: number;
|
|
611
|
+
maxResults?: number | undefined;
|
|
612
612
|
/**
|
|
613
613
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
614
614
|
* response in the next request to retrieve the next set of results.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
nextToken?: string;
|
|
617
|
+
nextToken?: string | undefined;
|
|
618
618
|
}
|
|
619
619
|
/**
|
|
620
620
|
* <p>Case summary information.</p>
|
|
@@ -645,7 +645,7 @@ export interface ListCasesForContactResponse {
|
|
|
645
645
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
nextToken?: string;
|
|
648
|
+
nextToken?: string | undefined;
|
|
649
649
|
}
|
|
650
650
|
/**
|
|
651
651
|
* @public
|
|
@@ -780,7 +780,7 @@ export interface CreateRelatedItemRequest {
|
|
|
780
780
|
* <p>Represents the creator of the related item.</p>
|
|
781
781
|
* @public
|
|
782
782
|
*/
|
|
783
|
-
performedBy?: UserUnion;
|
|
783
|
+
performedBy?: UserUnion | undefined;
|
|
784
784
|
}
|
|
785
785
|
/**
|
|
786
786
|
* @public
|
|
@@ -825,12 +825,12 @@ export interface ContactFilter {
|
|
|
825
825
|
* <p>A list of channels to filter on for related items of type <code>Contact</code>.</p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
channel?: string[];
|
|
828
|
+
channel?: string[] | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* <p>A unique identifier of a contact in Amazon Connect.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
contactArn?: string;
|
|
833
|
+
contactArn?: string | undefined;
|
|
834
834
|
}
|
|
835
835
|
/**
|
|
836
836
|
* <p>A filter for related items of type <code>File</code>.</p>
|
|
@@ -841,7 +841,7 @@ export interface FileFilter {
|
|
|
841
841
|
* <p>The Amazon Resource Name (ARN) of the file.</p>
|
|
842
842
|
* @public
|
|
843
843
|
*/
|
|
844
|
-
fileArn?: string;
|
|
844
|
+
fileArn?: string | undefined;
|
|
845
845
|
}
|
|
846
846
|
/**
|
|
847
847
|
* <p>The list of types of related items and their parameters to use for filtering.</p>
|
|
@@ -917,18 +917,18 @@ export interface SearchRelatedItemsRequest {
|
|
|
917
917
|
* <p>The maximum number of results to return per page.</p>
|
|
918
918
|
* @public
|
|
919
919
|
*/
|
|
920
|
-
maxResults?: number;
|
|
920
|
+
maxResults?: number | undefined;
|
|
921
921
|
/**
|
|
922
922
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
923
923
|
* response in the next request to retrieve the next set of results.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
nextToken?: string;
|
|
926
|
+
nextToken?: string | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>The list of types of related items and their parameters to use for filtering.</p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
filters?: RelatedItemTypeFilter[];
|
|
931
|
+
filters?: RelatedItemTypeFilter[] | undefined;
|
|
932
932
|
}
|
|
933
933
|
/**
|
|
934
934
|
* <p>An object that represents a content of an Amazon Connect contact object.</p>
|
|
@@ -1037,12 +1037,12 @@ export interface SearchRelatedItemsResponseItem {
|
|
|
1037
1037
|
* <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>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
tags?: Record<string, string
|
|
1040
|
+
tags?: Record<string, string> | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>Represents the creator of the related item.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
performedBy?: UserUnion;
|
|
1045
|
+
performedBy?: UserUnion | undefined;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
1048
|
* @public
|
|
@@ -1052,7 +1052,7 @@ export interface SearchRelatedItemsResponse {
|
|
|
1052
1052
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
nextToken?: string;
|
|
1055
|
+
nextToken?: string | undefined;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>A list of items related to a case. </p>
|
|
1058
1058
|
* @public
|
|
@@ -1221,7 +1221,7 @@ export interface SearchCasesResponseItem {
|
|
|
1221
1221
|
* <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>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
tags?: Record<string, string
|
|
1224
|
+
tags?: Record<string, string> | undefined;
|
|
1225
1225
|
}
|
|
1226
1226
|
/**
|
|
1227
1227
|
* @public
|
|
@@ -1231,7 +1231,7 @@ export interface SearchCasesResponse {
|
|
|
1231
1231
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
1232
1232
|
* @public
|
|
1233
1233
|
*/
|
|
1234
|
-
nextToken?: string;
|
|
1234
|
+
nextToken?: string | undefined;
|
|
1235
1235
|
/**
|
|
1236
1236
|
* <p>A list of case documents where each case contains the properties <code>CaseId</code> and
|
|
1237
1237
|
* <code>Fields</code> where each field is a complex union structure. </p>
|
|
@@ -1263,7 +1263,7 @@ export interface UpdateCaseRequest {
|
|
|
1263
1263
|
* <p>Represents the identity of the person who performed the action.</p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
performedBy?: UserUnion;
|
|
1266
|
+
performedBy?: UserUnion | undefined;
|
|
1267
1267
|
}
|
|
1268
1268
|
/**
|
|
1269
1269
|
* @public
|
|
@@ -1371,12 +1371,12 @@ export interface EventIncludedData {
|
|
|
1371
1371
|
* <p>Details of what case data is published through the case event stream.</p>
|
|
1372
1372
|
* @public
|
|
1373
1373
|
*/
|
|
1374
|
-
caseData?: CaseEventIncludedData;
|
|
1374
|
+
caseData?: CaseEventIncludedData | undefined;
|
|
1375
1375
|
/**
|
|
1376
1376
|
* <p>Details of what related item data is published through the case event stream.</p>
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
relatedItemData?: RelatedItemEventIncludedData;
|
|
1379
|
+
relatedItemData?: RelatedItemEventIncludedData | undefined;
|
|
1380
1380
|
}
|
|
1381
1381
|
/**
|
|
1382
1382
|
* <p>Configuration to enable EventBridge case event delivery and determine what data is
|
|
@@ -1394,7 +1394,7 @@ export interface EventBridgeConfiguration {
|
|
|
1394
1394
|
* stream.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
includedData?: EventIncludedData;
|
|
1397
|
+
includedData?: EventIncludedData | undefined;
|
|
1398
1398
|
}
|
|
1399
1399
|
/**
|
|
1400
1400
|
* @public
|
|
@@ -1450,7 +1450,7 @@ export interface GetDomainResponse {
|
|
|
1450
1450
|
* <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>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
tags?: Record<string, string
|
|
1453
|
+
tags?: Record<string, string> | undefined;
|
|
1454
1454
|
}
|
|
1455
1455
|
/**
|
|
1456
1456
|
* @public
|
|
@@ -1460,13 +1460,13 @@ export interface ListDomainsRequest {
|
|
|
1460
1460
|
* <p>The maximum number of results to return per page.</p>
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
maxResults?: number;
|
|
1463
|
+
maxResults?: number | undefined;
|
|
1464
1464
|
/**
|
|
1465
1465
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
1466
1466
|
* response in the next request to retrieve the next set of results.</p>
|
|
1467
1467
|
* @public
|
|
1468
1468
|
*/
|
|
1469
|
-
nextToken?: string;
|
|
1469
|
+
nextToken?: string | undefined;
|
|
1470
1470
|
}
|
|
1471
1471
|
/**
|
|
1472
1472
|
* <p>Object for the summarized details of the domain.</p>
|
|
@@ -1502,7 +1502,7 @@ export interface ListDomainsResponse {
|
|
|
1502
1502
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
1503
1503
|
* @public
|
|
1504
1504
|
*/
|
|
1505
|
-
nextToken?: string;
|
|
1505
|
+
nextToken?: string | undefined;
|
|
1506
1506
|
}
|
|
1507
1507
|
/**
|
|
1508
1508
|
* @public
|
|
@@ -1559,7 +1559,7 @@ export interface FieldError {
|
|
|
1559
1559
|
* <p>The error message from getting a field.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
message?: string;
|
|
1562
|
+
message?: string | undefined;
|
|
1563
1563
|
}
|
|
1564
1564
|
/**
|
|
1565
1565
|
* @public
|
|
@@ -1614,7 +1614,7 @@ export interface GetFieldResponse {
|
|
|
1614
1614
|
* <p>Description of the field.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
description?: string;
|
|
1617
|
+
description?: string | undefined;
|
|
1618
1618
|
/**
|
|
1619
1619
|
* <p>Type of the field.</p>
|
|
1620
1620
|
* @public
|
|
@@ -1629,22 +1629,22 @@ export interface GetFieldResponse {
|
|
|
1629
1629
|
* <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>
|
|
1630
1630
|
* @public
|
|
1631
1631
|
*/
|
|
1632
|
-
tags?: Record<string, string
|
|
1632
|
+
tags?: Record<string, string> | undefined;
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>Denotes whether or not the resource has been deleted.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
deleted?: boolean;
|
|
1637
|
+
deleted?: boolean | undefined;
|
|
1638
1638
|
/**
|
|
1639
1639
|
* <p>Timestamp at which the resource was created.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
createdTime?: Date;
|
|
1642
|
+
createdTime?: Date | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>Timestamp at which the resource was created or last modified.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
lastModifiedTime?: Date;
|
|
1647
|
+
lastModifiedTime?: Date | undefined;
|
|
1648
1648
|
}
|
|
1649
1649
|
/**
|
|
1650
1650
|
* @public
|
|
@@ -1734,7 +1734,7 @@ export interface BatchPutFieldOptionsResponse {
|
|
|
1734
1734
|
* <p>A list of field errors. </p>
|
|
1735
1735
|
* @public
|
|
1736
1736
|
*/
|
|
1737
|
-
errors?: FieldOptionError[];
|
|
1737
|
+
errors?: FieldOptionError[] | undefined;
|
|
1738
1738
|
}
|
|
1739
1739
|
/**
|
|
1740
1740
|
* @public
|
|
@@ -1759,7 +1759,7 @@ export interface CreateFieldRequest {
|
|
|
1759
1759
|
* <p>The description of the field.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
description?: string;
|
|
1762
|
+
description?: string | undefined;
|
|
1763
1763
|
}
|
|
1764
1764
|
/**
|
|
1765
1765
|
* @public
|
|
@@ -1814,19 +1814,19 @@ export interface ListFieldOptionsRequest {
|
|
|
1814
1814
|
* <p>The maximum number of results to return per page.</p>
|
|
1815
1815
|
* @public
|
|
1816
1816
|
*/
|
|
1817
|
-
maxResults?: number;
|
|
1817
|
+
maxResults?: number | undefined;
|
|
1818
1818
|
/**
|
|
1819
1819
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
1820
1820
|
* response in the next request to retrieve the next set of results.</p>
|
|
1821
1821
|
* @public
|
|
1822
1822
|
*/
|
|
1823
|
-
nextToken?: string;
|
|
1823
|
+
nextToken?: string | undefined;
|
|
1824
1824
|
/**
|
|
1825
1825
|
* <p>A list of <code>FieldOption</code> values to filter on for
|
|
1826
1826
|
* <code>ListFieldOptions</code>.</p>
|
|
1827
1827
|
* @public
|
|
1828
1828
|
*/
|
|
1829
|
-
values?: string[];
|
|
1829
|
+
values?: string[] | undefined;
|
|
1830
1830
|
}
|
|
1831
1831
|
/**
|
|
1832
1832
|
* @public
|
|
@@ -1841,7 +1841,7 @@ export interface ListFieldOptionsResponse {
|
|
|
1841
1841
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
1842
1842
|
* @public
|
|
1843
1843
|
*/
|
|
1844
|
-
nextToken?: string;
|
|
1844
|
+
nextToken?: string | undefined;
|
|
1845
1845
|
}
|
|
1846
1846
|
/**
|
|
1847
1847
|
* @public
|
|
@@ -1856,13 +1856,13 @@ export interface ListFieldsRequest {
|
|
|
1856
1856
|
* <p>The maximum number of results to return per page.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
maxResults?: number;
|
|
1859
|
+
maxResults?: number | undefined;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
1862
1862
|
* response in the next request to retrieve the next set of results.</p>
|
|
1863
1863
|
* @public
|
|
1864
1864
|
*/
|
|
1865
|
-
nextToken?: string;
|
|
1865
|
+
nextToken?: string | undefined;
|
|
1866
1866
|
}
|
|
1867
1867
|
/**
|
|
1868
1868
|
* <p>Object for the summarized details of the field.</p>
|
|
@@ -1908,7 +1908,7 @@ export interface ListFieldsResponse {
|
|
|
1908
1908
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
nextToken?: string;
|
|
1911
|
+
nextToken?: string | undefined;
|
|
1912
1912
|
}
|
|
1913
1913
|
/**
|
|
1914
1914
|
* @public
|
|
@@ -1928,12 +1928,12 @@ export interface UpdateFieldRequest {
|
|
|
1928
1928
|
* <p>The name of the field.</p>
|
|
1929
1929
|
* @public
|
|
1930
1930
|
*/
|
|
1931
|
-
name?: string;
|
|
1931
|
+
name?: string | undefined;
|
|
1932
1932
|
/**
|
|
1933
1933
|
* <p>The description of a field.</p>
|
|
1934
1934
|
* @public
|
|
1935
1935
|
*/
|
|
1936
|
-
description?: string;
|
|
1936
|
+
description?: string | undefined;
|
|
1937
1937
|
}
|
|
1938
1938
|
/**
|
|
1939
1939
|
* @public
|
|
@@ -1960,7 +1960,7 @@ export interface FieldGroup {
|
|
|
1960
1960
|
* <p>Name of the field group.</p>
|
|
1961
1961
|
* @public
|
|
1962
1962
|
*/
|
|
1963
|
-
name?: string;
|
|
1963
|
+
name?: string | undefined;
|
|
1964
1964
|
/**
|
|
1965
1965
|
* <p>Represents an ordered list containing field related information.</p>
|
|
1966
1966
|
* @public
|
|
@@ -2007,7 +2007,7 @@ export interface LayoutSections {
|
|
|
2007
2007
|
* <p>Ordered list containing different kinds of sections that can be added.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
sections?: Section[];
|
|
2010
|
+
sections?: Section[] | undefined;
|
|
2011
2011
|
}
|
|
2012
2012
|
/**
|
|
2013
2013
|
* <p>Content specific to <code>BasicLayout</code> type. It configures fields in the top panel
|
|
@@ -2019,12 +2019,12 @@ export interface BasicLayout {
|
|
|
2019
2019
|
* <p>This represents sections in a panel of the page layout.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
topPanel?: LayoutSections;
|
|
2022
|
+
topPanel?: LayoutSections | undefined;
|
|
2023
2023
|
/**
|
|
2024
2024
|
* <p>This represents sections in a tab of the page layout.</p>
|
|
2025
2025
|
* @public
|
|
2026
2026
|
*/
|
|
2027
|
-
moreInfo?: LayoutSections;
|
|
2027
|
+
moreInfo?: LayoutSections | undefined;
|
|
2028
2028
|
}
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>Object to store union of different versions of layout content.</p>
|
|
@@ -2157,22 +2157,22 @@ export interface GetLayoutResponse {
|
|
|
2157
2157
|
* <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>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
tags?: Record<string, string
|
|
2160
|
+
tags?: Record<string, string> | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>Denotes whether or not the resource has been deleted.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
deleted?: boolean;
|
|
2165
|
+
deleted?: boolean | undefined;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* <p>Timestamp at which the resource was created.</p>
|
|
2168
2168
|
* @public
|
|
2169
2169
|
*/
|
|
2170
|
-
createdTime?: Date;
|
|
2170
|
+
createdTime?: Date | undefined;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* <p>Timestamp at which the resource was created or last modified.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
lastModifiedTime?: Date;
|
|
2175
|
+
lastModifiedTime?: Date | undefined;
|
|
2176
2176
|
}
|
|
2177
2177
|
/**
|
|
2178
2178
|
* @public
|
|
@@ -2187,13 +2187,13 @@ export interface ListLayoutsRequest {
|
|
|
2187
2187
|
* <p>The maximum number of results to return per page.</p>
|
|
2188
2188
|
* @public
|
|
2189
2189
|
*/
|
|
2190
|
-
maxResults?: number;
|
|
2190
|
+
maxResults?: number | undefined;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
2193
2193
|
* response in the next request to retrieve the next set of results.</p>
|
|
2194
2194
|
* @public
|
|
2195
2195
|
*/
|
|
2196
|
-
nextToken?: string;
|
|
2196
|
+
nextToken?: string | undefined;
|
|
2197
2197
|
}
|
|
2198
2198
|
/**
|
|
2199
2199
|
* <p>Object for the summarized details of the layout.</p>
|
|
@@ -2229,7 +2229,7 @@ export interface ListLayoutsResponse {
|
|
|
2229
2229
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
nextToken?: string;
|
|
2232
|
+
nextToken?: string | undefined;
|
|
2233
2233
|
}
|
|
2234
2234
|
/**
|
|
2235
2235
|
* @public
|
|
@@ -2249,13 +2249,13 @@ export interface UpdateLayoutRequest {
|
|
|
2249
2249
|
* <p>The name of the layout. It must be unique per domain.</p>
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
name?: string;
|
|
2252
|
+
name?: string | undefined;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* <p>Information about which fields will be present in the layout, the order of the
|
|
2255
2255
|
* fields.</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
content?: LayoutContent;
|
|
2258
|
+
content?: LayoutContent | undefined;
|
|
2259
2259
|
}
|
|
2260
2260
|
/**
|
|
2261
2261
|
* @public
|
|
@@ -2280,7 +2280,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2280
2280
|
* <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>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
tags?: Record<string, string
|
|
2283
|
+
tags?: Record<string, string> | undefined;
|
|
2284
2284
|
}
|
|
2285
2285
|
/**
|
|
2286
2286
|
* @public
|
|
@@ -2306,7 +2306,7 @@ export interface LayoutConfiguration {
|
|
|
2306
2306
|
* <p> Unique identifier of a layout. </p>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
defaultLayout?: string;
|
|
2309
|
+
defaultLayout?: string | undefined;
|
|
2310
2310
|
}
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>List of fields that must have a value provided to create a case.</p>
|
|
@@ -2349,23 +2349,23 @@ export interface CreateTemplateRequest {
|
|
|
2349
2349
|
* <p>A brief description of the template.</p>
|
|
2350
2350
|
* @public
|
|
2351
2351
|
*/
|
|
2352
|
-
description?: string;
|
|
2352
|
+
description?: string | undefined;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* <p>Configuration of layouts associated to the template.</p>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
layoutConfiguration?: LayoutConfiguration;
|
|
2357
|
+
layoutConfiguration?: LayoutConfiguration | undefined;
|
|
2358
2358
|
/**
|
|
2359
2359
|
* <p>A list of fields that must contain a value for a case to be successfully created with this
|
|
2360
2360
|
* template.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
requiredFields?: RequiredField[];
|
|
2363
|
+
requiredFields?: RequiredField[] | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p>The status of the template.</p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
status?: TemplateStatus;
|
|
2368
|
+
status?: TemplateStatus | undefined;
|
|
2369
2369
|
}
|
|
2370
2370
|
/**
|
|
2371
2371
|
* @public
|
|
@@ -2440,23 +2440,23 @@ export interface GetTemplateResponse {
|
|
|
2440
2440
|
* <p>A brief description of the template.</p>
|
|
2441
2441
|
* @public
|
|
2442
2442
|
*/
|
|
2443
|
-
description?: string;
|
|
2443
|
+
description?: string | undefined;
|
|
2444
2444
|
/**
|
|
2445
2445
|
* <p>Configuration of layouts associated to the template.</p>
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
layoutConfiguration?: LayoutConfiguration;
|
|
2448
|
+
layoutConfiguration?: LayoutConfiguration | undefined;
|
|
2449
2449
|
/**
|
|
2450
2450
|
* <p>A list of fields that must contain a value for a case to be successfully created with this
|
|
2451
2451
|
* template.</p>
|
|
2452
2452
|
* @public
|
|
2453
2453
|
*/
|
|
2454
|
-
requiredFields?: RequiredField[];
|
|
2454
|
+
requiredFields?: RequiredField[] | undefined;
|
|
2455
2455
|
/**
|
|
2456
2456
|
* <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>
|
|
2457
2457
|
* @public
|
|
2458
2458
|
*/
|
|
2459
|
-
tags?: Record<string, string
|
|
2459
|
+
tags?: Record<string, string> | undefined;
|
|
2460
2460
|
/**
|
|
2461
2461
|
* <p>The status of the template.</p>
|
|
2462
2462
|
* @public
|
|
@@ -2466,17 +2466,17 @@ export interface GetTemplateResponse {
|
|
|
2466
2466
|
* <p>Denotes whether or not the resource has been deleted.</p>
|
|
2467
2467
|
* @public
|
|
2468
2468
|
*/
|
|
2469
|
-
deleted?: boolean;
|
|
2469
|
+
deleted?: boolean | undefined;
|
|
2470
2470
|
/**
|
|
2471
2471
|
* <p>Timestamp at which the resource was created.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
createdTime?: Date;
|
|
2474
|
+
createdTime?: Date | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p>Timestamp at which the resource was created or last modified.</p>
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
lastModifiedTime?: Date;
|
|
2479
|
+
lastModifiedTime?: Date | undefined;
|
|
2480
2480
|
}
|
|
2481
2481
|
/**
|
|
2482
2482
|
* @public
|
|
@@ -2491,18 +2491,18 @@ export interface ListTemplatesRequest {
|
|
|
2491
2491
|
* <p>The maximum number of results to return per page.</p>
|
|
2492
2492
|
* @public
|
|
2493
2493
|
*/
|
|
2494
|
-
maxResults?: number;
|
|
2494
|
+
maxResults?: number | undefined;
|
|
2495
2495
|
/**
|
|
2496
2496
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
2497
2497
|
* response in the next request to retrieve the next set of results.</p>
|
|
2498
2498
|
* @public
|
|
2499
2499
|
*/
|
|
2500
|
-
nextToken?: string;
|
|
2500
|
+
nextToken?: string | undefined;
|
|
2501
2501
|
/**
|
|
2502
2502
|
* <p>A list of status values to filter on.</p>
|
|
2503
2503
|
* @public
|
|
2504
2504
|
*/
|
|
2505
|
-
status?: TemplateStatus[];
|
|
2505
|
+
status?: TemplateStatus[] | undefined;
|
|
2506
2506
|
}
|
|
2507
2507
|
/**
|
|
2508
2508
|
* <p>Template summary information.</p>
|
|
@@ -2543,7 +2543,7 @@ export interface ListTemplatesResponse {
|
|
|
2543
2543
|
* <p>The token for the next set of results. This is null if there are no more results to return.</p>
|
|
2544
2544
|
* @public
|
|
2545
2545
|
*/
|
|
2546
|
-
nextToken?: string;
|
|
2546
|
+
nextToken?: string | undefined;
|
|
2547
2547
|
}
|
|
2548
2548
|
/**
|
|
2549
2549
|
* @public
|
|
@@ -2563,28 +2563,28 @@ export interface UpdateTemplateRequest {
|
|
|
2563
2563
|
* <p>The name of the template. It must be unique per domain.</p>
|
|
2564
2564
|
* @public
|
|
2565
2565
|
*/
|
|
2566
|
-
name?: string;
|
|
2566
|
+
name?: string | undefined;
|
|
2567
2567
|
/**
|
|
2568
2568
|
* <p>A brief description of the template.</p>
|
|
2569
2569
|
* @public
|
|
2570
2570
|
*/
|
|
2571
|
-
description?: string;
|
|
2571
|
+
description?: string | undefined;
|
|
2572
2572
|
/**
|
|
2573
2573
|
* <p>Configuration of layouts associated to the template.</p>
|
|
2574
2574
|
* @public
|
|
2575
2575
|
*/
|
|
2576
|
-
layoutConfiguration?: LayoutConfiguration;
|
|
2576
|
+
layoutConfiguration?: LayoutConfiguration | undefined;
|
|
2577
2577
|
/**
|
|
2578
2578
|
* <p>A list of fields that must contain a value for a case to be successfully created with this
|
|
2579
2579
|
* template.</p>
|
|
2580
2580
|
* @public
|
|
2581
2581
|
*/
|
|
2582
|
-
requiredFields?: RequiredField[];
|
|
2582
|
+
requiredFields?: RequiredField[] | undefined;
|
|
2583
2583
|
/**
|
|
2584
2584
|
* <p>The status of the template.</p>
|
|
2585
2585
|
* @public
|
|
2586
2586
|
*/
|
|
2587
|
-
status?: TemplateStatus;
|
|
2587
|
+
status?: TemplateStatus | undefined;
|
|
2588
2588
|
}
|
|
2589
2589
|
/**
|
|
2590
2590
|
* @public
|
|
@@ -2692,32 +2692,32 @@ export interface SearchCasesRequest {
|
|
|
2692
2692
|
* also the default value when no other value is provided.</p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
maxResults?: number;
|
|
2695
|
+
maxResults?: number | undefined;
|
|
2696
2696
|
/**
|
|
2697
2697
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
2698
2698
|
* response in the next request to retrieve the next set of results.</p>
|
|
2699
2699
|
* @public
|
|
2700
2700
|
*/
|
|
2701
|
-
nextToken?: string;
|
|
2701
|
+
nextToken?: string | undefined;
|
|
2702
2702
|
/**
|
|
2703
2703
|
* <p>A word or phrase used to perform a quick search.</p>
|
|
2704
2704
|
* @public
|
|
2705
2705
|
*/
|
|
2706
|
-
searchTerm?: string;
|
|
2706
|
+
searchTerm?: string | undefined;
|
|
2707
2707
|
/**
|
|
2708
2708
|
* <p>A list of filter objects.</p>
|
|
2709
2709
|
* @public
|
|
2710
2710
|
*/
|
|
2711
|
-
filter?: CaseFilter;
|
|
2711
|
+
filter?: CaseFilter | undefined;
|
|
2712
2712
|
/**
|
|
2713
2713
|
* <p>A list of sorts where each sort specifies a field and their sort order to be applied to
|
|
2714
2714
|
* the results. </p>
|
|
2715
2715
|
* @public
|
|
2716
2716
|
*/
|
|
2717
|
-
sorts?: Sort[];
|
|
2717
|
+
sorts?: Sort[] | undefined;
|
|
2718
2718
|
/**
|
|
2719
2719
|
* <p>The list of field identifiers to be returned as part of the response.</p>
|
|
2720
2720
|
* @public
|
|
2721
2721
|
*/
|
|
2722
|
-
fields?: FieldIdentifier[];
|
|
2722
|
+
fields?: FieldIdentifier[] | undefined;
|
|
2723
2723
|
}
|
|
@@ -103,8 +103,8 @@ export interface CreateCaseRequest {
|
|
|
103
103
|
domainId: string | undefined;
|
|
104
104
|
templateId: string | undefined;
|
|
105
105
|
fields: FieldValue[] | undefined;
|
|
106
|
-
clientToken?: string;
|
|
107
|
-
performedBy?: UserUnion;
|
|
106
|
+
clientToken?: string | undefined;
|
|
107
|
+
performedBy?: UserUnion | undefined;
|
|
108
108
|
}
|
|
109
109
|
export interface CreateCaseResponse {
|
|
110
110
|
caseId: string | undefined;
|
|
@@ -114,7 +114,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
114
114
|
readonly name: "InternalServerException";
|
|
115
115
|
readonly $fault: "server";
|
|
116
116
|
$retryable: {};
|
|
117
|
-
retryAfterSeconds?: number;
|
|
117
|
+
retryAfterSeconds?: number | undefined;
|
|
118
118
|
constructor(
|
|
119
119
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
120
120
|
);
|
|
@@ -150,19 +150,19 @@ export interface GetCaseRequest {
|
|
|
150
150
|
caseId: string | undefined;
|
|
151
151
|
domainId: string | undefined;
|
|
152
152
|
fields: FieldIdentifier[] | undefined;
|
|
153
|
-
nextToken?: string;
|
|
153
|
+
nextToken?: string | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface GetCaseResponse {
|
|
156
156
|
fields: FieldValue[] | undefined;
|
|
157
157
|
templateId: string | undefined;
|
|
158
|
-
nextToken?: string;
|
|
159
|
-
tags?: Record<string, string
|
|
158
|
+
nextToken?: string | undefined;
|
|
159
|
+
tags?: Record<string, string> | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface GetCaseAuditEventsRequest {
|
|
162
162
|
caseId: string | undefined;
|
|
163
163
|
domainId: string | undefined;
|
|
164
|
-
maxResults?: number;
|
|
165
|
-
nextToken?: string;
|
|
164
|
+
maxResults?: number | undefined;
|
|
165
|
+
nextToken?: string | undefined;
|
|
166
166
|
}
|
|
167
167
|
export type AuditEventFieldValueUnion =
|
|
168
168
|
| AuditEventFieldValueUnion.BooleanValueMember
|
|
@@ -232,11 +232,11 @@ export declare namespace AuditEventFieldValueUnion {
|
|
|
232
232
|
}
|
|
233
233
|
export interface AuditEventField {
|
|
234
234
|
eventFieldId: string | undefined;
|
|
235
|
-
oldValue?: AuditEventFieldValueUnion;
|
|
235
|
+
oldValue?: AuditEventFieldValueUnion | undefined;
|
|
236
236
|
newValue: AuditEventFieldValueUnion | undefined;
|
|
237
237
|
}
|
|
238
238
|
export interface AuditEventPerformedBy {
|
|
239
|
-
user?: UserUnion;
|
|
239
|
+
user?: UserUnion | undefined;
|
|
240
240
|
iamPrincipalArn: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
export declare const RelatedItemType: {
|
|
@@ -256,20 +256,20 @@ export type AuditEventType =
|
|
|
256
256
|
export interface AuditEvent {
|
|
257
257
|
eventId: string | undefined;
|
|
258
258
|
type: AuditEventType | undefined;
|
|
259
|
-
relatedItemType?: RelatedItemType;
|
|
259
|
+
relatedItemType?: RelatedItemType | undefined;
|
|
260
260
|
performedTime: Date | undefined;
|
|
261
261
|
fields: AuditEventField[] | undefined;
|
|
262
|
-
performedBy?: AuditEventPerformedBy;
|
|
262
|
+
performedBy?: AuditEventPerformedBy | undefined;
|
|
263
263
|
}
|
|
264
264
|
export interface GetCaseAuditEventsResponse {
|
|
265
|
-
nextToken?: string;
|
|
265
|
+
nextToken?: string | undefined;
|
|
266
266
|
auditEvents: AuditEvent[] | undefined;
|
|
267
267
|
}
|
|
268
268
|
export interface ListCasesForContactRequest {
|
|
269
269
|
domainId: string | undefined;
|
|
270
270
|
contactArn: string | undefined;
|
|
271
|
-
maxResults?: number;
|
|
272
|
-
nextToken?: string;
|
|
271
|
+
maxResults?: number | undefined;
|
|
272
|
+
nextToken?: string | undefined;
|
|
273
273
|
}
|
|
274
274
|
export interface CaseSummary {
|
|
275
275
|
caseId: string | undefined;
|
|
@@ -277,7 +277,7 @@ export interface CaseSummary {
|
|
|
277
277
|
}
|
|
278
278
|
export interface ListCasesForContactResponse {
|
|
279
279
|
cases: CaseSummary[] | undefined;
|
|
280
|
-
nextToken?: string;
|
|
280
|
+
nextToken?: string | undefined;
|
|
281
281
|
}
|
|
282
282
|
export declare const CommentBodyTextType: {
|
|
283
283
|
readonly PLAINTEXT: "Text/Plain";
|
|
@@ -337,7 +337,7 @@ export interface CreateRelatedItemRequest {
|
|
|
337
337
|
caseId: string | undefined;
|
|
338
338
|
type: RelatedItemType | undefined;
|
|
339
339
|
content: RelatedItemInputContent | undefined;
|
|
340
|
-
performedBy?: UserUnion;
|
|
340
|
+
performedBy?: UserUnion | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface CreateRelatedItemResponse {
|
|
343
343
|
relatedItemId: string | undefined;
|
|
@@ -352,11 +352,11 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
352
352
|
}
|
|
353
353
|
export interface CommentFilter {}
|
|
354
354
|
export interface ContactFilter {
|
|
355
|
-
channel?: string[];
|
|
356
|
-
contactArn?: string;
|
|
355
|
+
channel?: string[] | undefined;
|
|
356
|
+
contactArn?: string | undefined;
|
|
357
357
|
}
|
|
358
358
|
export interface FileFilter {
|
|
359
|
-
fileArn?: string;
|
|
359
|
+
fileArn?: string | undefined;
|
|
360
360
|
}
|
|
361
361
|
export type RelatedItemTypeFilter =
|
|
362
362
|
| RelatedItemTypeFilter.CommentMember
|
|
@@ -399,9 +399,9 @@ export declare namespace RelatedItemTypeFilter {
|
|
|
399
399
|
export interface SearchRelatedItemsRequest {
|
|
400
400
|
domainId: string | undefined;
|
|
401
401
|
caseId: string | undefined;
|
|
402
|
-
maxResults?: number;
|
|
403
|
-
nextToken?: string;
|
|
404
|
-
filters?: RelatedItemTypeFilter[];
|
|
402
|
+
maxResults?: number | undefined;
|
|
403
|
+
nextToken?: string | undefined;
|
|
404
|
+
filters?: RelatedItemTypeFilter[] | undefined;
|
|
405
405
|
}
|
|
406
406
|
export interface ContactContent {
|
|
407
407
|
contactArn: string | undefined;
|
|
@@ -451,11 +451,11 @@ export interface SearchRelatedItemsResponseItem {
|
|
|
451
451
|
type: RelatedItemType | undefined;
|
|
452
452
|
associationTime: Date | undefined;
|
|
453
453
|
content: RelatedItemContent | undefined;
|
|
454
|
-
tags?: Record<string, string
|
|
455
|
-
performedBy?: UserUnion;
|
|
454
|
+
tags?: Record<string, string> | undefined;
|
|
455
|
+
performedBy?: UserUnion | undefined;
|
|
456
456
|
}
|
|
457
457
|
export interface SearchRelatedItemsResponse {
|
|
458
|
-
nextToken?: string;
|
|
458
|
+
nextToken?: string | undefined;
|
|
459
459
|
relatedItems: SearchRelatedItemsResponseItem[] | undefined;
|
|
460
460
|
}
|
|
461
461
|
export type FieldFilter =
|
|
@@ -554,17 +554,17 @@ export interface SearchCasesResponseItem {
|
|
|
554
554
|
caseId: string | undefined;
|
|
555
555
|
templateId: string | undefined;
|
|
556
556
|
fields: FieldValue[] | undefined;
|
|
557
|
-
tags?: Record<string, string
|
|
557
|
+
tags?: Record<string, string> | undefined;
|
|
558
558
|
}
|
|
559
559
|
export interface SearchCasesResponse {
|
|
560
|
-
nextToken?: string;
|
|
560
|
+
nextToken?: string | undefined;
|
|
561
561
|
cases: SearchCasesResponseItem[] | undefined;
|
|
562
562
|
}
|
|
563
563
|
export interface UpdateCaseRequest {
|
|
564
564
|
domainId: string | undefined;
|
|
565
565
|
caseId: string | undefined;
|
|
566
566
|
fields: FieldValue[] | undefined;
|
|
567
|
-
performedBy?: UserUnion;
|
|
567
|
+
performedBy?: UserUnion | undefined;
|
|
568
568
|
}
|
|
569
569
|
export interface UpdateCaseResponse {}
|
|
570
570
|
export interface CreateDomainRequest {
|
|
@@ -595,12 +595,12 @@ export interface RelatedItemEventIncludedData {
|
|
|
595
595
|
includeContent: boolean | undefined;
|
|
596
596
|
}
|
|
597
597
|
export interface EventIncludedData {
|
|
598
|
-
caseData?: CaseEventIncludedData;
|
|
599
|
-
relatedItemData?: RelatedItemEventIncludedData;
|
|
598
|
+
caseData?: CaseEventIncludedData | undefined;
|
|
599
|
+
relatedItemData?: RelatedItemEventIncludedData | undefined;
|
|
600
600
|
}
|
|
601
601
|
export interface EventBridgeConfiguration {
|
|
602
602
|
enabled: boolean | undefined;
|
|
603
|
-
includedData?: EventIncludedData;
|
|
603
|
+
includedData?: EventIncludedData | undefined;
|
|
604
604
|
}
|
|
605
605
|
export interface GetCaseEventConfigurationResponse {
|
|
606
606
|
eventBridge: EventBridgeConfiguration | undefined;
|
|
@@ -614,11 +614,11 @@ export interface GetDomainResponse {
|
|
|
614
614
|
name: string | undefined;
|
|
615
615
|
createdTime: Date | undefined;
|
|
616
616
|
domainStatus: DomainStatus | undefined;
|
|
617
|
-
tags?: Record<string, string
|
|
617
|
+
tags?: Record<string, string> | undefined;
|
|
618
618
|
}
|
|
619
619
|
export interface ListDomainsRequest {
|
|
620
|
-
maxResults?: number;
|
|
621
|
-
nextToken?: string;
|
|
620
|
+
maxResults?: number | undefined;
|
|
621
|
+
nextToken?: string | undefined;
|
|
622
622
|
}
|
|
623
623
|
export interface DomainSummary {
|
|
624
624
|
domainId: string | undefined;
|
|
@@ -627,7 +627,7 @@ export interface DomainSummary {
|
|
|
627
627
|
}
|
|
628
628
|
export interface ListDomainsResponse {
|
|
629
629
|
domains: DomainSummary[] | undefined;
|
|
630
|
-
nextToken?: string;
|
|
630
|
+
nextToken?: string | undefined;
|
|
631
631
|
}
|
|
632
632
|
export interface PutCaseEventConfigurationRequest {
|
|
633
633
|
domainId: string | undefined;
|
|
@@ -641,7 +641,7 @@ export interface BatchGetFieldRequest {
|
|
|
641
641
|
export interface FieldError {
|
|
642
642
|
id: string | undefined;
|
|
643
643
|
errorCode: string | undefined;
|
|
644
|
-
message?: string;
|
|
644
|
+
message?: string | undefined;
|
|
645
645
|
}
|
|
646
646
|
export declare const FieldNamespace: {
|
|
647
647
|
readonly CUSTOM: "Custom";
|
|
@@ -663,13 +663,13 @@ export interface GetFieldResponse {
|
|
|
663
663
|
fieldId: string | undefined;
|
|
664
664
|
name: string | undefined;
|
|
665
665
|
fieldArn: string | undefined;
|
|
666
|
-
description?: string;
|
|
666
|
+
description?: string | undefined;
|
|
667
667
|
type: FieldType | undefined;
|
|
668
668
|
namespace: FieldNamespace | undefined;
|
|
669
|
-
tags?: Record<string, string
|
|
670
|
-
deleted?: boolean;
|
|
671
|
-
createdTime?: Date;
|
|
672
|
-
lastModifiedTime?: Date;
|
|
669
|
+
tags?: Record<string, string> | undefined;
|
|
670
|
+
deleted?: boolean | undefined;
|
|
671
|
+
createdTime?: Date | undefined;
|
|
672
|
+
lastModifiedTime?: Date | undefined;
|
|
673
673
|
}
|
|
674
674
|
export interface BatchGetFieldResponse {
|
|
675
675
|
fields: GetFieldResponse[] | undefined;
|
|
@@ -691,13 +691,13 @@ export interface FieldOptionError {
|
|
|
691
691
|
value: string | undefined;
|
|
692
692
|
}
|
|
693
693
|
export interface BatchPutFieldOptionsResponse {
|
|
694
|
-
errors?: FieldOptionError[];
|
|
694
|
+
errors?: FieldOptionError[] | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface CreateFieldRequest {
|
|
697
697
|
domainId: string | undefined;
|
|
698
698
|
name: string | undefined;
|
|
699
699
|
type: FieldType | undefined;
|
|
700
|
-
description?: string;
|
|
700
|
+
description?: string | undefined;
|
|
701
701
|
}
|
|
702
702
|
export interface CreateFieldResponse {
|
|
703
703
|
fieldId: string | undefined;
|
|
@@ -711,18 +711,18 @@ export interface DeleteFieldResponse {}
|
|
|
711
711
|
export interface ListFieldOptionsRequest {
|
|
712
712
|
domainId: string | undefined;
|
|
713
713
|
fieldId: string | undefined;
|
|
714
|
-
maxResults?: number;
|
|
715
|
-
nextToken?: string;
|
|
716
|
-
values?: string[];
|
|
714
|
+
maxResults?: number | undefined;
|
|
715
|
+
nextToken?: string | undefined;
|
|
716
|
+
values?: string[] | undefined;
|
|
717
717
|
}
|
|
718
718
|
export interface ListFieldOptionsResponse {
|
|
719
719
|
options: FieldOption[] | undefined;
|
|
720
|
-
nextToken?: string;
|
|
720
|
+
nextToken?: string | undefined;
|
|
721
721
|
}
|
|
722
722
|
export interface ListFieldsRequest {
|
|
723
723
|
domainId: string | undefined;
|
|
724
|
-
maxResults?: number;
|
|
725
|
-
nextToken?: string;
|
|
724
|
+
maxResults?: number | undefined;
|
|
725
|
+
nextToken?: string | undefined;
|
|
726
726
|
}
|
|
727
727
|
export interface FieldSummary {
|
|
728
728
|
fieldId: string | undefined;
|
|
@@ -733,20 +733,20 @@ export interface FieldSummary {
|
|
|
733
733
|
}
|
|
734
734
|
export interface ListFieldsResponse {
|
|
735
735
|
fields: FieldSummary[] | undefined;
|
|
736
|
-
nextToken?: string;
|
|
736
|
+
nextToken?: string | undefined;
|
|
737
737
|
}
|
|
738
738
|
export interface UpdateFieldRequest {
|
|
739
739
|
domainId: string | undefined;
|
|
740
740
|
fieldId: string | undefined;
|
|
741
|
-
name?: string;
|
|
742
|
-
description?: string;
|
|
741
|
+
name?: string | undefined;
|
|
742
|
+
description?: string | undefined;
|
|
743
743
|
}
|
|
744
744
|
export interface UpdateFieldResponse {}
|
|
745
745
|
export interface FieldItem {
|
|
746
746
|
id: string | undefined;
|
|
747
747
|
}
|
|
748
748
|
export interface FieldGroup {
|
|
749
|
-
name?: string;
|
|
749
|
+
name?: string | undefined;
|
|
750
750
|
fields: FieldItem[] | undefined;
|
|
751
751
|
}
|
|
752
752
|
export type Section = Section.FieldGroupMember | Section.$UnknownMember;
|
|
@@ -766,11 +766,11 @@ export declare namespace Section {
|
|
|
766
766
|
const visit: <T>(value: Section, visitor: Visitor<T>) => T;
|
|
767
767
|
}
|
|
768
768
|
export interface LayoutSections {
|
|
769
|
-
sections?: Section[];
|
|
769
|
+
sections?: Section[] | undefined;
|
|
770
770
|
}
|
|
771
771
|
export interface BasicLayout {
|
|
772
|
-
topPanel?: LayoutSections;
|
|
773
|
-
moreInfo?: LayoutSections;
|
|
772
|
+
topPanel?: LayoutSections | undefined;
|
|
773
|
+
moreInfo?: LayoutSections | undefined;
|
|
774
774
|
}
|
|
775
775
|
export type LayoutContent =
|
|
776
776
|
| LayoutContent.BasicMember
|
|
@@ -813,15 +813,15 @@ export interface GetLayoutResponse {
|
|
|
813
813
|
layoutArn: string | undefined;
|
|
814
814
|
name: string | undefined;
|
|
815
815
|
content: LayoutContent | undefined;
|
|
816
|
-
tags?: Record<string, string
|
|
817
|
-
deleted?: boolean;
|
|
818
|
-
createdTime?: Date;
|
|
819
|
-
lastModifiedTime?: Date;
|
|
816
|
+
tags?: Record<string, string> | undefined;
|
|
817
|
+
deleted?: boolean | undefined;
|
|
818
|
+
createdTime?: Date | undefined;
|
|
819
|
+
lastModifiedTime?: Date | undefined;
|
|
820
820
|
}
|
|
821
821
|
export interface ListLayoutsRequest {
|
|
822
822
|
domainId: string | undefined;
|
|
823
|
-
maxResults?: number;
|
|
824
|
-
nextToken?: string;
|
|
823
|
+
maxResults?: number | undefined;
|
|
824
|
+
nextToken?: string | undefined;
|
|
825
825
|
}
|
|
826
826
|
export interface LayoutSummary {
|
|
827
827
|
layoutId: string | undefined;
|
|
@@ -830,27 +830,27 @@ export interface LayoutSummary {
|
|
|
830
830
|
}
|
|
831
831
|
export interface ListLayoutsResponse {
|
|
832
832
|
layouts: LayoutSummary[] | undefined;
|
|
833
|
-
nextToken?: string;
|
|
833
|
+
nextToken?: string | undefined;
|
|
834
834
|
}
|
|
835
835
|
export interface UpdateLayoutRequest {
|
|
836
836
|
domainId: string | undefined;
|
|
837
837
|
layoutId: string | undefined;
|
|
838
|
-
name?: string;
|
|
839
|
-
content?: LayoutContent;
|
|
838
|
+
name?: string | undefined;
|
|
839
|
+
content?: LayoutContent | undefined;
|
|
840
840
|
}
|
|
841
841
|
export interface UpdateLayoutResponse {}
|
|
842
842
|
export interface ListTagsForResourceRequest {
|
|
843
843
|
arn: string | undefined;
|
|
844
844
|
}
|
|
845
845
|
export interface ListTagsForResourceResponse {
|
|
846
|
-
tags?: Record<string, string
|
|
846
|
+
tags?: Record<string, string> | undefined;
|
|
847
847
|
}
|
|
848
848
|
export interface TagResourceRequest {
|
|
849
849
|
arn: string | undefined;
|
|
850
850
|
tags: Record<string, string> | undefined;
|
|
851
851
|
}
|
|
852
852
|
export interface LayoutConfiguration {
|
|
853
|
-
defaultLayout?: string;
|
|
853
|
+
defaultLayout?: string | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface RequiredField {
|
|
856
856
|
fieldId: string | undefined;
|
|
@@ -864,10 +864,10 @@ export type TemplateStatus =
|
|
|
864
864
|
export interface CreateTemplateRequest {
|
|
865
865
|
domainId: string | undefined;
|
|
866
866
|
name: string | undefined;
|
|
867
|
-
description?: string;
|
|
868
|
-
layoutConfiguration?: LayoutConfiguration;
|
|
869
|
-
requiredFields?: RequiredField[];
|
|
870
|
-
status?: TemplateStatus;
|
|
867
|
+
description?: string | undefined;
|
|
868
|
+
layoutConfiguration?: LayoutConfiguration | undefined;
|
|
869
|
+
requiredFields?: RequiredField[] | undefined;
|
|
870
|
+
status?: TemplateStatus | undefined;
|
|
871
871
|
}
|
|
872
872
|
export interface CreateTemplateResponse {
|
|
873
873
|
templateId: string | undefined;
|
|
@@ -886,20 +886,20 @@ export interface GetTemplateResponse {
|
|
|
886
886
|
templateId: string | undefined;
|
|
887
887
|
templateArn: string | undefined;
|
|
888
888
|
name: string | undefined;
|
|
889
|
-
description?: string;
|
|
890
|
-
layoutConfiguration?: LayoutConfiguration;
|
|
891
|
-
requiredFields?: RequiredField[];
|
|
892
|
-
tags?: Record<string, string
|
|
889
|
+
description?: string | undefined;
|
|
890
|
+
layoutConfiguration?: LayoutConfiguration | undefined;
|
|
891
|
+
requiredFields?: RequiredField[] | undefined;
|
|
892
|
+
tags?: Record<string, string> | undefined;
|
|
893
893
|
status: TemplateStatus | undefined;
|
|
894
|
-
deleted?: boolean;
|
|
895
|
-
createdTime?: Date;
|
|
896
|
-
lastModifiedTime?: Date;
|
|
894
|
+
deleted?: boolean | undefined;
|
|
895
|
+
createdTime?: Date | undefined;
|
|
896
|
+
lastModifiedTime?: Date | undefined;
|
|
897
897
|
}
|
|
898
898
|
export interface ListTemplatesRequest {
|
|
899
899
|
domainId: string | undefined;
|
|
900
|
-
maxResults?: number;
|
|
901
|
-
nextToken?: string;
|
|
902
|
-
status?: TemplateStatus[];
|
|
900
|
+
maxResults?: number | undefined;
|
|
901
|
+
nextToken?: string | undefined;
|
|
902
|
+
status?: TemplateStatus[] | undefined;
|
|
903
903
|
}
|
|
904
904
|
export interface TemplateSummary {
|
|
905
905
|
templateId: string | undefined;
|
|
@@ -909,16 +909,16 @@ export interface TemplateSummary {
|
|
|
909
909
|
}
|
|
910
910
|
export interface ListTemplatesResponse {
|
|
911
911
|
templates: TemplateSummary[] | undefined;
|
|
912
|
-
nextToken?: string;
|
|
912
|
+
nextToken?: string | undefined;
|
|
913
913
|
}
|
|
914
914
|
export interface UpdateTemplateRequest {
|
|
915
915
|
domainId: string | undefined;
|
|
916
916
|
templateId: string | undefined;
|
|
917
|
-
name?: string;
|
|
918
|
-
description?: string;
|
|
919
|
-
layoutConfiguration?: LayoutConfiguration;
|
|
920
|
-
requiredFields?: RequiredField[];
|
|
921
|
-
status?: TemplateStatus;
|
|
917
|
+
name?: string | undefined;
|
|
918
|
+
description?: string | undefined;
|
|
919
|
+
layoutConfiguration?: LayoutConfiguration | undefined;
|
|
920
|
+
requiredFields?: RequiredField[] | undefined;
|
|
921
|
+
status?: TemplateStatus | undefined;
|
|
922
922
|
}
|
|
923
923
|
export interface UpdateTemplateResponse {}
|
|
924
924
|
export interface UntagResourceRequest {
|
|
@@ -978,10 +978,10 @@ export declare namespace CaseFilter {
|
|
|
978
978
|
}
|
|
979
979
|
export interface SearchCasesRequest {
|
|
980
980
|
domainId: string | undefined;
|
|
981
|
-
maxResults?: number;
|
|
982
|
-
nextToken?: string;
|
|
983
|
-
searchTerm?: string;
|
|
984
|
-
filter?: CaseFilter;
|
|
985
|
-
sorts?: Sort[];
|
|
986
|
-
fields?: FieldIdentifier[];
|
|
981
|
+
maxResults?: number | undefined;
|
|
982
|
+
nextToken?: string | undefined;
|
|
983
|
+
searchTerm?: string | undefined;
|
|
984
|
+
filter?: CaseFilter | undefined;
|
|
985
|
+
sorts?: Sort[] | undefined;
|
|
986
|
+
fields?: FieldIdentifier[] | undefined;
|
|
987
987
|
}
|
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.
|
|
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-connectcases",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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.
|
|
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.
|
|
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",
|