@aws-sdk/client-connectcases 3.496.0 → 3.497.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.
- package/README.md +8 -0
- package/dist-cjs/commands/GetCaseAuditEventsCommand.js +1 -0
- package/dist-cjs/index.js +240 -60
- package/dist-cjs/pagination/GetCaseAuditEventsPaginator.js +1 -0
- package/dist-es/ConnectCases.js +2 -0
- package/dist-es/commands/GetCaseAuditEventsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +36 -12
- package/dist-es/pagination/GetCaseAuditEventsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +123 -0
- package/dist-types/ConnectCases.d.ts +7 -0
- package/dist-types/ConnectCasesClient.d.ts +3 -2
- package/dist-types/commands/CreateCaseCommand.d.ts +13 -4
- package/dist-types/commands/CreateRelatedItemCommand.d.ts +6 -7
- package/dist-types/commands/GetCaseAuditEventsCommand.d.ts +111 -0
- package/dist-types/commands/GetCaseCommand.d.ts +1 -0
- package/dist-types/commands/PutCaseEventConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/SearchCasesCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCaseCommand.d.ts +9 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +305 -44
- package/dist-types/pagination/GetCaseAuditEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/ConnectCases.d.ts +17 -0
- package/dist-types/ts3.4/ConnectCasesClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetCaseAuditEventsCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +140 -22
- package/dist-types/ts3.4/pagination/GetCaseAuditEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -38,8 +38,12 @@ export interface EmptyFieldValue {
|
|
|
38
38
|
/**
|
|
39
39
|
* @public
|
|
40
40
|
* <p>Object to store union of Field values.</p>
|
|
41
|
+
* <note>
|
|
42
|
+
* <p>The <code>Summary</code> system field accepts 1500 characters while all other fields
|
|
43
|
+
* accept 500 characters.</p>
|
|
44
|
+
* </note>
|
|
41
45
|
*/
|
|
42
|
-
export type FieldValueUnion = FieldValueUnion.BooleanValueMember | FieldValueUnion.DoubleValueMember | FieldValueUnion.EmptyValueMember | FieldValueUnion.StringValueMember | FieldValueUnion.$UnknownMember;
|
|
46
|
+
export type FieldValueUnion = FieldValueUnion.BooleanValueMember | FieldValueUnion.DoubleValueMember | FieldValueUnion.EmptyValueMember | FieldValueUnion.StringValueMember | FieldValueUnion.UserArnValueMember | FieldValueUnion.$UnknownMember;
|
|
43
47
|
/**
|
|
44
48
|
* @public
|
|
45
49
|
*/
|
|
@@ -53,6 +57,7 @@ export declare namespace FieldValueUnion {
|
|
|
53
57
|
doubleValue?: never;
|
|
54
58
|
booleanValue?: never;
|
|
55
59
|
emptyValue?: never;
|
|
60
|
+
userArnValue?: never;
|
|
56
61
|
$unknown?: never;
|
|
57
62
|
}
|
|
58
63
|
/**
|
|
@@ -65,6 +70,7 @@ export declare namespace FieldValueUnion {
|
|
|
65
70
|
doubleValue: number;
|
|
66
71
|
booleanValue?: never;
|
|
67
72
|
emptyValue?: never;
|
|
73
|
+
userArnValue?: never;
|
|
68
74
|
$unknown?: never;
|
|
69
75
|
}
|
|
70
76
|
/**
|
|
@@ -76,6 +82,7 @@ export declare namespace FieldValueUnion {
|
|
|
76
82
|
doubleValue?: never;
|
|
77
83
|
booleanValue: boolean;
|
|
78
84
|
emptyValue?: never;
|
|
85
|
+
userArnValue?: never;
|
|
79
86
|
$unknown?: never;
|
|
80
87
|
}
|
|
81
88
|
/**
|
|
@@ -87,6 +94,19 @@ export declare namespace FieldValueUnion {
|
|
|
87
94
|
doubleValue?: never;
|
|
88
95
|
booleanValue?: never;
|
|
89
96
|
emptyValue: EmptyFieldValue;
|
|
97
|
+
userArnValue?: never;
|
|
98
|
+
$unknown?: never;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* <p>Represents the user that performed the audit.</p>
|
|
103
|
+
*/
|
|
104
|
+
interface UserArnValueMember {
|
|
105
|
+
stringValue?: never;
|
|
106
|
+
doubleValue?: never;
|
|
107
|
+
booleanValue?: never;
|
|
108
|
+
emptyValue?: never;
|
|
109
|
+
userArnValue: string;
|
|
90
110
|
$unknown?: never;
|
|
91
111
|
}
|
|
92
112
|
/**
|
|
@@ -97,6 +117,7 @@ export declare namespace FieldValueUnion {
|
|
|
97
117
|
doubleValue?: never;
|
|
98
118
|
booleanValue?: never;
|
|
99
119
|
emptyValue?: never;
|
|
120
|
+
userArnValue?: never;
|
|
100
121
|
$unknown: [string, any];
|
|
101
122
|
}
|
|
102
123
|
interface Visitor<T> {
|
|
@@ -104,6 +125,7 @@ export declare namespace FieldValueUnion {
|
|
|
104
125
|
doubleValue: (value: number) => T;
|
|
105
126
|
booleanValue: (value: boolean) => T;
|
|
106
127
|
emptyValue: (value: EmptyFieldValue) => T;
|
|
128
|
+
userArnValue: (value: string) => T;
|
|
107
129
|
_: (name: string, value: any) => T;
|
|
108
130
|
}
|
|
109
131
|
const visit: <T>(value: FieldValueUnion, visitor: Visitor<T>) => T;
|
|
@@ -124,6 +146,36 @@ export interface FieldValue {
|
|
|
124
146
|
*/
|
|
125
147
|
value: FieldValueUnion | undefined;
|
|
126
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
* <p>Represents the identity of the person who performed the action.</p>
|
|
152
|
+
*/
|
|
153
|
+
export type UserUnion = UserUnion.UserArnMember | UserUnion.$UnknownMember;
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
export declare namespace UserUnion {
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
* <p>Represents the Amazon Connect ARN of the user.</p>
|
|
161
|
+
*/
|
|
162
|
+
interface UserArnMember {
|
|
163
|
+
userArn: string;
|
|
164
|
+
$unknown?: never;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
interface $UnknownMember {
|
|
170
|
+
userArn?: never;
|
|
171
|
+
$unknown: [string, any];
|
|
172
|
+
}
|
|
173
|
+
interface Visitor<T> {
|
|
174
|
+
userArn: (value: string) => T;
|
|
175
|
+
_: (name: string, value: any) => T;
|
|
176
|
+
}
|
|
177
|
+
const visit: <T>(value: UserUnion, visitor: Visitor<T>) => T;
|
|
178
|
+
}
|
|
127
179
|
/**
|
|
128
180
|
* @public
|
|
129
181
|
*/
|
|
@@ -152,6 +204,11 @@ export interface CreateCaseRequest {
|
|
|
152
204
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
153
205
|
*/
|
|
154
206
|
clientToken?: string;
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
* <p>Represents the identity of the person who performed the action.</p>
|
|
210
|
+
*/
|
|
211
|
+
performedBy?: UserUnion;
|
|
155
212
|
}
|
|
156
213
|
/**
|
|
157
214
|
* @public
|
|
@@ -297,6 +354,245 @@ export interface GetCaseResponse {
|
|
|
297
354
|
*/
|
|
298
355
|
tags?: Record<string, string>;
|
|
299
356
|
}
|
|
357
|
+
/**
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
export interface GetCaseAuditEventsRequest {
|
|
361
|
+
/**
|
|
362
|
+
* @public
|
|
363
|
+
* <p>A unique identifier of the case.</p>
|
|
364
|
+
*/
|
|
365
|
+
caseId: string | undefined;
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
* <p>The unique identifier of the Cases domain.</p>
|
|
369
|
+
*/
|
|
370
|
+
domainId: string | undefined;
|
|
371
|
+
/**
|
|
372
|
+
* @public
|
|
373
|
+
* <p>The maximum number of audit events to return. The current maximum supported value is 25.
|
|
374
|
+
* This is also the default when no other value is provided.</p>
|
|
375
|
+
*/
|
|
376
|
+
maxResults?: number;
|
|
377
|
+
/**
|
|
378
|
+
* @public
|
|
379
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
380
|
+
* the next request to retrieve the next set of results.</p>
|
|
381
|
+
*/
|
|
382
|
+
nextToken?: string;
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
* <p>Object to store union of Field values.</p>
|
|
387
|
+
* <important>
|
|
388
|
+
* <p>This data type is a UNION, so only one of the following members can be specified when
|
|
389
|
+
* used or returned.</p>
|
|
390
|
+
* </important>
|
|
391
|
+
*/
|
|
392
|
+
export type AuditEventFieldValueUnion = AuditEventFieldValueUnion.BooleanValueMember | AuditEventFieldValueUnion.DoubleValueMember | AuditEventFieldValueUnion.EmptyValueMember | AuditEventFieldValueUnion.StringValueMember | AuditEventFieldValueUnion.UserArnValueMember | AuditEventFieldValueUnion.$UnknownMember;
|
|
393
|
+
/**
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
396
|
+
export declare namespace AuditEventFieldValueUnion {
|
|
397
|
+
/**
|
|
398
|
+
* @public
|
|
399
|
+
* <p>Can be either null, or have a String value type. Only one value can be provided.</p>
|
|
400
|
+
*/
|
|
401
|
+
interface StringValueMember {
|
|
402
|
+
stringValue: string;
|
|
403
|
+
doubleValue?: never;
|
|
404
|
+
booleanValue?: never;
|
|
405
|
+
emptyValue?: never;
|
|
406
|
+
userArnValue?: never;
|
|
407
|
+
$unknown?: never;
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
* @public
|
|
411
|
+
* <p>Can be either null, or have a Double value type. Only one value can be provided.</p>
|
|
412
|
+
*/
|
|
413
|
+
interface DoubleValueMember {
|
|
414
|
+
stringValue?: never;
|
|
415
|
+
doubleValue: number;
|
|
416
|
+
booleanValue?: never;
|
|
417
|
+
emptyValue?: never;
|
|
418
|
+
userArnValue?: never;
|
|
419
|
+
$unknown?: never;
|
|
420
|
+
}
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
* <p>Can be either null, or have a Boolean value type. Only one value can be provided.</p>
|
|
424
|
+
*/
|
|
425
|
+
interface BooleanValueMember {
|
|
426
|
+
stringValue?: never;
|
|
427
|
+
doubleValue?: never;
|
|
428
|
+
booleanValue: boolean;
|
|
429
|
+
emptyValue?: never;
|
|
430
|
+
userArnValue?: never;
|
|
431
|
+
$unknown?: never;
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
* <p>An empty value. You cannot set <code>EmptyFieldValue</code> on a field that is required on
|
|
436
|
+
* a case template.</p>
|
|
437
|
+
* <p>This structure will never have any data members. It signifies an empty value on a case
|
|
438
|
+
* field.</p>
|
|
439
|
+
*/
|
|
440
|
+
interface EmptyValueMember {
|
|
441
|
+
stringValue?: never;
|
|
442
|
+
doubleValue?: never;
|
|
443
|
+
booleanValue?: never;
|
|
444
|
+
emptyValue: EmptyFieldValue;
|
|
445
|
+
userArnValue?: never;
|
|
446
|
+
$unknown?: never;
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* @public
|
|
450
|
+
* <p>Can be either null, or have a String value type formatted as an ARN. Only one value can be
|
|
451
|
+
* provided.</p>
|
|
452
|
+
*/
|
|
453
|
+
interface UserArnValueMember {
|
|
454
|
+
stringValue?: never;
|
|
455
|
+
doubleValue?: never;
|
|
456
|
+
booleanValue?: never;
|
|
457
|
+
emptyValue?: never;
|
|
458
|
+
userArnValue: string;
|
|
459
|
+
$unknown?: never;
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
* @public
|
|
463
|
+
*/
|
|
464
|
+
interface $UnknownMember {
|
|
465
|
+
stringValue?: never;
|
|
466
|
+
doubleValue?: never;
|
|
467
|
+
booleanValue?: never;
|
|
468
|
+
emptyValue?: never;
|
|
469
|
+
userArnValue?: never;
|
|
470
|
+
$unknown: [string, any];
|
|
471
|
+
}
|
|
472
|
+
interface Visitor<T> {
|
|
473
|
+
stringValue: (value: string) => T;
|
|
474
|
+
doubleValue: (value: number) => T;
|
|
475
|
+
booleanValue: (value: boolean) => T;
|
|
476
|
+
emptyValue: (value: EmptyFieldValue) => T;
|
|
477
|
+
userArnValue: (value: string) => T;
|
|
478
|
+
_: (name: string, value: any) => T;
|
|
479
|
+
}
|
|
480
|
+
const visit: <T>(value: AuditEventFieldValueUnion, visitor: Visitor<T>) => T;
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* @public
|
|
484
|
+
* <p>Fields for audit event.</p>
|
|
485
|
+
*/
|
|
486
|
+
export interface AuditEventField {
|
|
487
|
+
/**
|
|
488
|
+
* @public
|
|
489
|
+
* <p>Unique identifier of field in an Audit History entry.</p>
|
|
490
|
+
*/
|
|
491
|
+
eventFieldId: string | undefined;
|
|
492
|
+
/**
|
|
493
|
+
* @public
|
|
494
|
+
* <p>Union of potential field value types.</p>
|
|
495
|
+
*/
|
|
496
|
+
oldValue?: AuditEventFieldValueUnion;
|
|
497
|
+
/**
|
|
498
|
+
* @public
|
|
499
|
+
* <p>Union of potential field value types.</p>
|
|
500
|
+
*/
|
|
501
|
+
newValue: AuditEventFieldValueUnion | undefined;
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* @public
|
|
505
|
+
* <p>Information of the user which performed the audit.</p>
|
|
506
|
+
*/
|
|
507
|
+
export interface AuditEventPerformedBy {
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* <p>Represents the identity of the person who performed the action.</p>
|
|
511
|
+
*/
|
|
512
|
+
user?: UserUnion;
|
|
513
|
+
/**
|
|
514
|
+
* @public
|
|
515
|
+
* <p>Unique identifier of an IAM role.</p>
|
|
516
|
+
*/
|
|
517
|
+
iamPrincipalArn: string | undefined;
|
|
518
|
+
}
|
|
519
|
+
/**
|
|
520
|
+
* @public
|
|
521
|
+
* @enum
|
|
522
|
+
*/
|
|
523
|
+
export declare const RelatedItemType: {
|
|
524
|
+
readonly COMMENT: "Comment";
|
|
525
|
+
readonly CONTACT: "Contact";
|
|
526
|
+
};
|
|
527
|
+
/**
|
|
528
|
+
* @public
|
|
529
|
+
*/
|
|
530
|
+
export type RelatedItemType = (typeof RelatedItemType)[keyof typeof RelatedItemType];
|
|
531
|
+
/**
|
|
532
|
+
* @public
|
|
533
|
+
* @enum
|
|
534
|
+
*/
|
|
535
|
+
export declare const AuditEventType: {
|
|
536
|
+
readonly CASE_CREATED: "Case.Created";
|
|
537
|
+
readonly CASE_UPDATED: "Case.Updated";
|
|
538
|
+
readonly RELATED_ITEM_CREATED: "RelatedItem.Created";
|
|
539
|
+
};
|
|
540
|
+
/**
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
export type AuditEventType = (typeof AuditEventType)[keyof typeof AuditEventType];
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
* <p>Represents the content of a particular audit event.</p>
|
|
547
|
+
*/
|
|
548
|
+
export interface AuditEvent {
|
|
549
|
+
/**
|
|
550
|
+
* @public
|
|
551
|
+
* <p>Unique identifier of a case audit history event.</p>
|
|
552
|
+
*/
|
|
553
|
+
eventId: string | undefined;
|
|
554
|
+
/**
|
|
555
|
+
* @public
|
|
556
|
+
* <p>The Type of an audit history event.</p>
|
|
557
|
+
*/
|
|
558
|
+
type: AuditEventType | undefined;
|
|
559
|
+
/**
|
|
560
|
+
* @public
|
|
561
|
+
* <p>The Type of the related item.</p>
|
|
562
|
+
*/
|
|
563
|
+
relatedItemType?: RelatedItemType;
|
|
564
|
+
/**
|
|
565
|
+
* @public
|
|
566
|
+
* <p>Time at which an Audit History event took place.</p>
|
|
567
|
+
*/
|
|
568
|
+
performedTime: Date | undefined;
|
|
569
|
+
/**
|
|
570
|
+
* @public
|
|
571
|
+
* <p>A list of Case Audit History event fields.</p>
|
|
572
|
+
*/
|
|
573
|
+
fields: AuditEventField[] | undefined;
|
|
574
|
+
/**
|
|
575
|
+
* @public
|
|
576
|
+
* <p>Information of the user which performed the audit.</p>
|
|
577
|
+
*/
|
|
578
|
+
performedBy?: AuditEventPerformedBy;
|
|
579
|
+
}
|
|
580
|
+
/**
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
export interface GetCaseAuditEventsResponse {
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
* <p>The token for the next set of results. This is null if there are no more results to
|
|
587
|
+
* return.</p>
|
|
588
|
+
*/
|
|
589
|
+
nextToken?: string;
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
* <p>A list of case audits where each represents a particular edit of the case.</p>
|
|
593
|
+
*/
|
|
594
|
+
auditEvents: AuditEvent[] | undefined;
|
|
595
|
+
}
|
|
300
596
|
/**
|
|
301
597
|
* @public
|
|
302
598
|
*/
|
|
@@ -434,48 +730,6 @@ export declare namespace RelatedItemInputContent {
|
|
|
434
730
|
}
|
|
435
731
|
const visit: <T>(value: RelatedItemInputContent, visitor: Visitor<T>) => T;
|
|
436
732
|
}
|
|
437
|
-
/**
|
|
438
|
-
* @public
|
|
439
|
-
* <p>Represents the identity of the person who performed the action.</p>
|
|
440
|
-
*/
|
|
441
|
-
export type UserUnion = UserUnion.UserArnMember | UserUnion.$UnknownMember;
|
|
442
|
-
/**
|
|
443
|
-
* @public
|
|
444
|
-
*/
|
|
445
|
-
export declare namespace UserUnion {
|
|
446
|
-
/**
|
|
447
|
-
* @public
|
|
448
|
-
* <p>Represents the Amazon Connect ARN of the user.</p>
|
|
449
|
-
*/
|
|
450
|
-
interface UserArnMember {
|
|
451
|
-
userArn: string;
|
|
452
|
-
$unknown?: never;
|
|
453
|
-
}
|
|
454
|
-
/**
|
|
455
|
-
* @public
|
|
456
|
-
*/
|
|
457
|
-
interface $UnknownMember {
|
|
458
|
-
userArn?: never;
|
|
459
|
-
$unknown: [string, any];
|
|
460
|
-
}
|
|
461
|
-
interface Visitor<T> {
|
|
462
|
-
userArn: (value: string) => T;
|
|
463
|
-
_: (name: string, value: any) => T;
|
|
464
|
-
}
|
|
465
|
-
const visit: <T>(value: UserUnion, visitor: Visitor<T>) => T;
|
|
466
|
-
}
|
|
467
|
-
/**
|
|
468
|
-
* @public
|
|
469
|
-
* @enum
|
|
470
|
-
*/
|
|
471
|
-
export declare const RelatedItemType: {
|
|
472
|
-
readonly COMMENT: "Comment";
|
|
473
|
-
readonly CONTACT: "Contact";
|
|
474
|
-
};
|
|
475
|
-
/**
|
|
476
|
-
* @public
|
|
477
|
-
*/
|
|
478
|
-
export type RelatedItemType = (typeof RelatedItemType)[keyof typeof RelatedItemType];
|
|
479
733
|
/**
|
|
480
734
|
* @public
|
|
481
735
|
*/
|
|
@@ -944,6 +1198,11 @@ export interface UpdateCaseRequest {
|
|
|
944
1198
|
* value union data, structured identical to <code>CreateCase</code>.</p>
|
|
945
1199
|
*/
|
|
946
1200
|
fields: FieldValue[] | undefined;
|
|
1201
|
+
/**
|
|
1202
|
+
* @public
|
|
1203
|
+
* <p>Represents the identity of the person who performed the action.</p>
|
|
1204
|
+
*/
|
|
1205
|
+
performedBy?: UserUnion;
|
|
947
1206
|
}
|
|
948
1207
|
/**
|
|
949
1208
|
* @public
|
|
@@ -1264,6 +1523,7 @@ export declare const FieldType: {
|
|
|
1264
1523
|
readonly SINGLE_SELECT: "SingleSelect";
|
|
1265
1524
|
readonly TEXT: "Text";
|
|
1266
1525
|
readonly URL: "Url";
|
|
1526
|
+
readonly USER: "User";
|
|
1267
1527
|
};
|
|
1268
1528
|
/**
|
|
1269
1529
|
* @public
|
|
@@ -1861,7 +2121,8 @@ export interface UpdateLayoutRequest {
|
|
|
1861
2121
|
name?: string;
|
|
1862
2122
|
/**
|
|
1863
2123
|
* @public
|
|
1864
|
-
* <p>Information about which fields will be present in the layout, the order of the
|
|
2124
|
+
* <p>Information about which fields will be present in the layout, the order of the
|
|
2125
|
+
* fields.</p>
|
|
1865
2126
|
*/
|
|
1866
2127
|
content?: LayoutContent;
|
|
1867
2128
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetCaseAuditEventsCommandInput, GetCaseAuditEventsCommandOutput } from "../commands/GetCaseAuditEventsCommand";
|
|
3
|
+
import { ConnectCasesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateGetCaseAuditEvents: (config: ConnectCasesPaginationConfiguration, input: GetCaseAuditEventsCommandInput, ...rest: any[]) => Paginator<GetCaseAuditEventsCommandOutput>;
|
|
@@ -9,6 +9,7 @@ import { CreateLayoutCommandInput, CreateLayoutCommandOutput } from "../commands
|
|
|
9
9
|
import { CreateRelatedItemCommandInput, CreateRelatedItemCommandOutput } from "../commands/CreateRelatedItemCommand";
|
|
10
10
|
import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../commands/CreateTemplateCommand";
|
|
11
11
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
12
|
+
import { GetCaseAuditEventsCommandInput, GetCaseAuditEventsCommandOutput } from "../commands/GetCaseAuditEventsCommand";
|
|
12
13
|
import { GetCaseCommandInput, GetCaseCommandOutput } from "../commands/GetCaseCommand";
|
|
13
14
|
import { GetCaseEventConfigurationCommandInput, GetCaseEventConfigurationCommandOutput } from "../commands/GetCaseEventConfigurationCommand";
|
|
14
15
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
|
|
@@ -70,6 +71,10 @@ export declare const se_DeleteDomainCommand: (input: DeleteDomainCommandInput, c
|
|
|
70
71
|
* serializeAws_restJson1GetCaseCommand
|
|
71
72
|
*/
|
|
72
73
|
export declare const se_GetCaseCommand: (input: GetCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_restJson1GetCaseAuditEventsCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_GetCaseAuditEventsCommand: (input: GetCaseAuditEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
78
|
/**
|
|
74
79
|
* serializeAws_restJson1GetCaseEventConfigurationCommand
|
|
75
80
|
*/
|
|
@@ -190,6 +195,10 @@ export declare const de_DeleteDomainCommand: (output: __HttpResponse, context: _
|
|
|
190
195
|
* deserializeAws_restJson1GetCaseCommand
|
|
191
196
|
*/
|
|
192
197
|
export declare const de_GetCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseCommandOutput>;
|
|
198
|
+
/**
|
|
199
|
+
* deserializeAws_restJson1GetCaseAuditEventsCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const de_GetCaseAuditEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseAuditEventsCommandOutput>;
|
|
193
202
|
/**
|
|
194
203
|
* deserializeAws_restJson1GetCaseEventConfigurationCommand
|
|
195
204
|
*/
|
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
DeleteDomainCommandInput,
|
|
36
36
|
DeleteDomainCommandOutput,
|
|
37
37
|
} from "./commands/DeleteDomainCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetCaseAuditEventsCommandInput,
|
|
40
|
+
GetCaseAuditEventsCommandOutput,
|
|
41
|
+
} from "./commands/GetCaseAuditEventsCommand";
|
|
38
42
|
import {
|
|
39
43
|
GetCaseCommandInput,
|
|
40
44
|
GetCaseCommandOutput,
|
|
@@ -251,6 +255,19 @@ export interface ConnectCases {
|
|
|
251
255
|
options: __HttpHandlerOptions,
|
|
252
256
|
cb: (err: any, data?: GetCaseCommandOutput) => void
|
|
253
257
|
): void;
|
|
258
|
+
getCaseAuditEvents(
|
|
259
|
+
args: GetCaseAuditEventsCommandInput,
|
|
260
|
+
options?: __HttpHandlerOptions
|
|
261
|
+
): Promise<GetCaseAuditEventsCommandOutput>;
|
|
262
|
+
getCaseAuditEvents(
|
|
263
|
+
args: GetCaseAuditEventsCommandInput,
|
|
264
|
+
cb: (err: any, data?: GetCaseAuditEventsCommandOutput) => void
|
|
265
|
+
): void;
|
|
266
|
+
getCaseAuditEvents(
|
|
267
|
+
args: GetCaseAuditEventsCommandInput,
|
|
268
|
+
options: __HttpHandlerOptions,
|
|
269
|
+
cb: (err: any, data?: GetCaseAuditEventsCommandOutput) => void
|
|
270
|
+
): void;
|
|
254
271
|
getCaseEventConfiguration(
|
|
255
272
|
args: GetCaseEventConfigurationCommandInput,
|
|
256
273
|
options?: __HttpHandlerOptions
|
|
@@ -81,6 +81,10 @@ import {
|
|
|
81
81
|
DeleteDomainCommandInput,
|
|
82
82
|
DeleteDomainCommandOutput,
|
|
83
83
|
} from "./commands/DeleteDomainCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetCaseAuditEventsCommandInput,
|
|
86
|
+
GetCaseAuditEventsCommandOutput,
|
|
87
|
+
} from "./commands/GetCaseAuditEventsCommand";
|
|
84
88
|
import {
|
|
85
89
|
GetCaseCommandInput,
|
|
86
90
|
GetCaseCommandOutput,
|
|
@@ -182,6 +186,7 @@ export type ServiceInputTypes =
|
|
|
182
186
|
| CreateRelatedItemCommandInput
|
|
183
187
|
| CreateTemplateCommandInput
|
|
184
188
|
| DeleteDomainCommandInput
|
|
189
|
+
| GetCaseAuditEventsCommandInput
|
|
185
190
|
| GetCaseCommandInput
|
|
186
191
|
| GetCaseEventConfigurationCommandInput
|
|
187
192
|
| GetDomainCommandInput
|
|
@@ -213,6 +218,7 @@ export type ServiceOutputTypes =
|
|
|
213
218
|
| CreateRelatedItemCommandOutput
|
|
214
219
|
| CreateTemplateCommandOutput
|
|
215
220
|
| DeleteDomainCommandOutput
|
|
221
|
+
| GetCaseAuditEventsCommandOutput
|
|
216
222
|
| GetCaseCommandOutput
|
|
217
223
|
| GetCaseEventConfigurationCommandOutput
|
|
218
224
|
| GetDomainCommandOutput
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectCasesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectCasesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetCaseAuditEventsRequest,
|
|
10
|
+
GetCaseAuditEventsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetCaseAuditEventsCommandInput
|
|
14
|
+
extends GetCaseAuditEventsRequest {}
|
|
15
|
+
export interface GetCaseAuditEventsCommandOutput
|
|
16
|
+
extends GetCaseAuditEventsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetCaseAuditEventsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetCaseAuditEventsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetCaseAuditEventsCommandInput,
|
|
23
|
+
GetCaseAuditEventsCommandOutput,
|
|
24
|
+
ConnectCasesClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetCaseAuditEventsCommand extends GetCaseAuditEventsCommand_base {}
|
|
@@ -7,6 +7,7 @@ export * from "./CreateLayoutCommand";
|
|
|
7
7
|
export * from "./CreateRelatedItemCommand";
|
|
8
8
|
export * from "./CreateTemplateCommand";
|
|
9
9
|
export * from "./DeleteDomainCommand";
|
|
10
|
+
export * from "./GetCaseAuditEventsCommand";
|
|
10
11
|
export * from "./GetCaseCommand";
|
|
11
12
|
export * from "./GetCaseEventConfigurationCommand";
|
|
12
13
|
export * from "./GetDomainCommand";
|