@great-detail/support-sdk 0.3.1 → 0.3.3
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/dist/{chunk-NVKVNSH6.js → chunk-BVAU2D3F.js} +1 -1
- package/dist/chunk-TF4VTYVZ.js +1 -0
- package/dist/cli/index.cjs +1 -1
- package/dist/cli/index.d.cts +1 -1
- package/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/{index-BZ58JQ7A.d.cts → index-yIZZNsRM.d.cts} +85 -47
- package/dist/{index-BZ58JQ7A.d.ts → index-yIZZNsRM.d.ts} +85 -47
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +3 -24
- package/dist/index.d.ts +3 -24
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/Client/index.ts +3 -2
- package/src/Conversation/UpdateConversation.ts +9 -1
- package/dist/chunk-HFYCS3BA.js +0 -1
|
@@ -28,21 +28,21 @@ interface RequestFilterable {
|
|
|
28
28
|
* @see https://greatdetail.com
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
|
-
interface Options$
|
|
31
|
+
interface Options$H {
|
|
32
32
|
requestFilterables: RequestFilterable[];
|
|
33
33
|
}
|
|
34
34
|
interface Transport {
|
|
35
35
|
getURL(url: string): string;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
interface InputOptions extends Options$
|
|
38
|
+
interface InputOptions extends Options$H {
|
|
39
39
|
baseURL: string;
|
|
40
40
|
}
|
|
41
|
-
interface Options$
|
|
41
|
+
interface Options$G extends Options$H {
|
|
42
42
|
baseURL: string;
|
|
43
43
|
}
|
|
44
44
|
declare class FetchTransport implements Transport {
|
|
45
|
-
options: Options$
|
|
45
|
+
options: Options$G;
|
|
46
46
|
constructor({ baseURL, ...options }: InputOptions);
|
|
47
47
|
getURL(url: string): string;
|
|
48
48
|
getRequest(url: string, request: RequestInit): Request;
|
|
@@ -58,13 +58,13 @@ declare class FetchTransport implements Transport {
|
|
|
58
58
|
* @see https://greatdetail.com
|
|
59
59
|
*/
|
|
60
60
|
|
|
61
|
-
interface Options$
|
|
61
|
+
interface Options$F {
|
|
62
62
|
request?: RequestInit;
|
|
63
63
|
}
|
|
64
64
|
declare class ListActions {
|
|
65
65
|
protected _transport: FetchTransport;
|
|
66
66
|
constructor(_transport: FetchTransport);
|
|
67
|
-
send({ request }?: Options$
|
|
67
|
+
send({ request }?: Options$F): Promise<ListActionsResponse>;
|
|
68
68
|
}
|
|
69
69
|
type ListActionsResponsePayload = {
|
|
70
70
|
actions: {
|
|
@@ -106,7 +106,7 @@ type Authentication = RequestFilterable;
|
|
|
106
106
|
* @see https://greatdetail.com
|
|
107
107
|
*/
|
|
108
108
|
|
|
109
|
-
interface Options$
|
|
109
|
+
interface Options$E {
|
|
110
110
|
id: string;
|
|
111
111
|
body: z.infer<typeof CreateBoilerplateCategoryBoilerplate.SCHEMA>;
|
|
112
112
|
request?: RequestInit;
|
|
@@ -127,7 +127,7 @@ declare class CreateBoilerplateCategoryBoilerplate {
|
|
|
127
127
|
account: string;
|
|
128
128
|
}>;
|
|
129
129
|
constructor(_transport: FetchTransport);
|
|
130
|
-
send({ id, body, request }: Options$
|
|
130
|
+
send({ id, body, request }: Options$E): Promise<CreateBoilerplateCategoryBoilerplateResponse>;
|
|
131
131
|
}
|
|
132
132
|
type CreateBoilerplateCategoryBoilerplateResponsePayload = {
|
|
133
133
|
boilerplate: {
|
|
@@ -154,14 +154,14 @@ declare class CreateBoilerplateCategoryBoilerplateResponse {
|
|
|
154
154
|
* @see https://greatdetail.com
|
|
155
155
|
*/
|
|
156
156
|
|
|
157
|
-
interface Options$
|
|
157
|
+
interface Options$D {
|
|
158
158
|
id: string;
|
|
159
159
|
request?: RequestInit;
|
|
160
160
|
}
|
|
161
161
|
declare class GetBoilerplate {
|
|
162
162
|
protected _transport: FetchTransport;
|
|
163
163
|
constructor(_transport: FetchTransport);
|
|
164
|
-
send({ id, request }: Options$
|
|
164
|
+
send({ id, request }: Options$D): Promise<GetBoilerplateResponse>;
|
|
165
165
|
}
|
|
166
166
|
type GetBoilerplateResponsePayload = {
|
|
167
167
|
boilerplate: {
|
|
@@ -189,14 +189,14 @@ declare class GetBoilerplateResponse {
|
|
|
189
189
|
* @see https://greatdetail.com
|
|
190
190
|
*/
|
|
191
191
|
|
|
192
|
-
interface Options$
|
|
192
|
+
interface Options$C {
|
|
193
193
|
id: string;
|
|
194
194
|
request?: RequestInit;
|
|
195
195
|
}
|
|
196
196
|
declare class ListBoilerplateCategoryBoilerplates {
|
|
197
197
|
protected _transport: FetchTransport;
|
|
198
198
|
constructor(_transport: FetchTransport);
|
|
199
|
-
send({ id, request }: Options$
|
|
199
|
+
send({ id, request }: Options$C): Promise<ListBoilerplateCategoryBoilerplatesResponse>;
|
|
200
200
|
}
|
|
201
201
|
type ListBoilerplateCategoryBoilerplatesResponsePayload = {
|
|
202
202
|
boilerplates: {
|
|
@@ -224,13 +224,13 @@ declare class ListBoilerplateCategoryBoilerplatesResponse {
|
|
|
224
224
|
* @see https://greatdetail.com
|
|
225
225
|
*/
|
|
226
226
|
|
|
227
|
-
interface Options$
|
|
227
|
+
interface Options$B {
|
|
228
228
|
request?: RequestInit;
|
|
229
229
|
}
|
|
230
230
|
declare class ListBoilerplates {
|
|
231
231
|
protected _transport: FetchTransport;
|
|
232
232
|
constructor(_transport: FetchTransport);
|
|
233
|
-
send({ request }?: Options$
|
|
233
|
+
send({ request }?: Options$B): Promise<ListBoilerplatesResponse>;
|
|
234
234
|
}
|
|
235
235
|
type ListBoilerplatesResponsePayload = {
|
|
236
236
|
boilerplates: {
|
|
@@ -258,7 +258,7 @@ declare class ListBoilerplatesResponse {
|
|
|
258
258
|
* @see https://greatdetail.com
|
|
259
259
|
*/
|
|
260
260
|
|
|
261
|
-
interface Options$
|
|
261
|
+
interface Options$A {
|
|
262
262
|
id: string;
|
|
263
263
|
body: z.infer<typeof UpdateBoilerplate.SCHEMA>;
|
|
264
264
|
request?: RequestInit;
|
|
@@ -276,7 +276,7 @@ declare class UpdateBoilerplate {
|
|
|
276
276
|
content?: string | undefined;
|
|
277
277
|
}>;
|
|
278
278
|
constructor(_transport: FetchTransport);
|
|
279
|
-
send({ id, body, request }: Options$
|
|
279
|
+
send({ id, body, request }: Options$A): Promise<UpdateBoilerplateResponse>;
|
|
280
280
|
}
|
|
281
281
|
type UpdateBoilerplateResponsePayload = {
|
|
282
282
|
boilerplate: {
|
|
@@ -304,7 +304,7 @@ declare class UpdateBoilerplateResponse {
|
|
|
304
304
|
* @see https://greatdetail.com
|
|
305
305
|
*/
|
|
306
306
|
|
|
307
|
-
interface Options$
|
|
307
|
+
interface Options$z {
|
|
308
308
|
body: z.infer<typeof CreateBoilerplateCategory.SCHEMA>;
|
|
309
309
|
request?: RequestInit;
|
|
310
310
|
}
|
|
@@ -324,7 +324,7 @@ declare class CreateBoilerplateCategory {
|
|
|
324
324
|
description?: string | undefined;
|
|
325
325
|
}>;
|
|
326
326
|
constructor(_transport: FetchTransport);
|
|
327
|
-
send({ body, request }: Options$
|
|
327
|
+
send({ body, request }: Options$z): Promise<CreateBoilerplateCategoryResponse>;
|
|
328
328
|
}
|
|
329
329
|
type CreateBoilerplateCategoryResponsePayload = {
|
|
330
330
|
boilerplateCategory: {
|
|
@@ -351,14 +351,14 @@ declare class CreateBoilerplateCategoryResponse {
|
|
|
351
351
|
* @see https://greatdetail.com
|
|
352
352
|
*/
|
|
353
353
|
|
|
354
|
-
interface Options$
|
|
354
|
+
interface Options$y {
|
|
355
355
|
id: string;
|
|
356
356
|
request?: RequestInit;
|
|
357
357
|
}
|
|
358
358
|
declare class GetBoilerplateCategory {
|
|
359
359
|
protected _transport: FetchTransport;
|
|
360
360
|
constructor(_transport: FetchTransport);
|
|
361
|
-
send({ id, request }: Options$
|
|
361
|
+
send({ id, request }: Options$y): Promise<GetBoilerplateCategoryResponse>;
|
|
362
362
|
}
|
|
363
363
|
type GetBoilerplateCategoryResponsePayload = {
|
|
364
364
|
boilerplateCategory: {
|
|
@@ -385,13 +385,13 @@ declare class GetBoilerplateCategoryResponse {
|
|
|
385
385
|
* @see https://greatdetail.com
|
|
386
386
|
*/
|
|
387
387
|
|
|
388
|
-
interface Options$
|
|
388
|
+
interface Options$x {
|
|
389
389
|
request?: RequestInit;
|
|
390
390
|
}
|
|
391
391
|
declare class ListBoilerplateCategories {
|
|
392
392
|
protected _transport: FetchTransport;
|
|
393
393
|
constructor(_transport: FetchTransport);
|
|
394
|
-
send({ request }?: Options$
|
|
394
|
+
send({ request }?: Options$x): Promise<ListBoilerplateCategoriesResponse>;
|
|
395
395
|
}
|
|
396
396
|
type ListBoilerplateCategoriesResponsePayload = {
|
|
397
397
|
boilerplateCategories: {
|
|
@@ -418,7 +418,7 @@ declare class ListBoilerplateCategoriesResponse {
|
|
|
418
418
|
* @see https://greatdetail.com
|
|
419
419
|
*/
|
|
420
420
|
|
|
421
|
-
interface Options$
|
|
421
|
+
interface Options$w {
|
|
422
422
|
id: string;
|
|
423
423
|
body: z.infer<typeof UpdateBoilerplateCategory.SCHEMA>;
|
|
424
424
|
request?: RequestInit;
|
|
@@ -436,7 +436,7 @@ declare class UpdateBoilerplateCategory {
|
|
|
436
436
|
description?: string | undefined;
|
|
437
437
|
}>;
|
|
438
438
|
constructor(_transport: FetchTransport);
|
|
439
|
-
send({ id, body, request }: Options$
|
|
439
|
+
send({ id, body, request }: Options$w): Promise<UpdateBoilerplateCategoryResponse>;
|
|
440
440
|
}
|
|
441
441
|
type UpdateBoilerplateCategoryResponsePayload = {
|
|
442
442
|
boilerplateCategory: {
|
|
@@ -463,13 +463,13 @@ declare class UpdateBoilerplateCategoryResponse {
|
|
|
463
463
|
* @see https://greatdetail.com
|
|
464
464
|
*/
|
|
465
465
|
|
|
466
|
-
interface Options$
|
|
466
|
+
interface Options$v {
|
|
467
467
|
request?: RequestInit;
|
|
468
468
|
}
|
|
469
469
|
declare class ListChannels {
|
|
470
470
|
protected _transport: FetchTransport;
|
|
471
471
|
constructor(_transport: FetchTransport);
|
|
472
|
-
send({ request }?: Options$
|
|
472
|
+
send({ request }?: Options$v): Promise<ListChannelsResponse>;
|
|
473
473
|
}
|
|
474
474
|
type ListChannelsResponsePayload = {
|
|
475
475
|
channels: ({
|
|
@@ -510,7 +510,7 @@ declare class ListChannelsResponse {
|
|
|
510
510
|
* @see https://greatdetail.com
|
|
511
511
|
*/
|
|
512
512
|
|
|
513
|
-
interface Options$
|
|
513
|
+
interface Options$u {
|
|
514
514
|
id: string;
|
|
515
515
|
vcf?: {
|
|
516
516
|
variant?: "vcard";
|
|
@@ -523,8 +523,8 @@ interface Options$t {
|
|
|
523
523
|
declare class GetContactVCFURL {
|
|
524
524
|
protected _transport: FetchTransport;
|
|
525
525
|
constructor(_transport: FetchTransport);
|
|
526
|
-
getRelativeURL({ id, vcf }: Options$
|
|
527
|
-
getURL(options: Options$
|
|
526
|
+
getRelativeURL({ id, vcf }: Options$u): string;
|
|
527
|
+
getURL(options: Options$u): string;
|
|
528
528
|
}
|
|
529
529
|
|
|
530
530
|
/**
|
|
@@ -536,7 +536,7 @@ declare class GetContactVCFURL {
|
|
|
536
536
|
* @see https://greatdetail.com
|
|
537
537
|
*/
|
|
538
538
|
|
|
539
|
-
interface Options$
|
|
539
|
+
interface Options$t {
|
|
540
540
|
body: z.infer<typeof CreateContact.SCHEMA>;
|
|
541
541
|
request?: RequestInit;
|
|
542
542
|
}
|
|
@@ -559,7 +559,7 @@ declare class CreateContact {
|
|
|
559
559
|
telephoneNumber?: string | undefined;
|
|
560
560
|
}>;
|
|
561
561
|
constructor(_transport: FetchTransport);
|
|
562
|
-
send({ body, request }: Options$
|
|
562
|
+
send({ body, request }: Options$t): Promise<CreateContactResponse>;
|
|
563
563
|
}
|
|
564
564
|
type CreateContactResponsePayload = {
|
|
565
565
|
contact: {
|
|
@@ -587,14 +587,14 @@ declare class CreateContactResponse {
|
|
|
587
587
|
* @see https://greatdetail.com
|
|
588
588
|
*/
|
|
589
589
|
|
|
590
|
-
interface Options$
|
|
590
|
+
interface Options$s {
|
|
591
591
|
id: string;
|
|
592
592
|
request?: RequestInit;
|
|
593
593
|
}
|
|
594
594
|
declare class GetContact {
|
|
595
595
|
protected _transport: FetchTransport;
|
|
596
596
|
constructor(_transport: FetchTransport);
|
|
597
|
-
send({ id, request }: Options$
|
|
597
|
+
send({ id, request }: Options$s): Promise<GetContactResponse>;
|
|
598
598
|
}
|
|
599
599
|
type GetContactResponsePayload = {
|
|
600
600
|
contact: {
|
|
@@ -622,13 +622,13 @@ declare class GetContactResponse {
|
|
|
622
622
|
* @see https://greatdetail.com
|
|
623
623
|
*/
|
|
624
624
|
|
|
625
|
-
interface Options$
|
|
625
|
+
interface Options$r {
|
|
626
626
|
request?: RequestInit;
|
|
627
627
|
}
|
|
628
628
|
declare class ListContacts {
|
|
629
629
|
protected _transport: FetchTransport;
|
|
630
630
|
constructor(_transport: FetchTransport);
|
|
631
|
-
send({ request }?: Options$
|
|
631
|
+
send({ request }?: Options$r): Promise<ListContactsResponse>;
|
|
632
632
|
}
|
|
633
633
|
type ListContactsResponsePayload = {
|
|
634
634
|
contacts: {
|
|
@@ -656,14 +656,14 @@ declare class ListContactsResponse {
|
|
|
656
656
|
* @see https://greatdetail.com
|
|
657
657
|
*/
|
|
658
658
|
|
|
659
|
-
interface Options$
|
|
659
|
+
interface Options$q {
|
|
660
660
|
id: string;
|
|
661
661
|
request?: RequestInit;
|
|
662
662
|
}
|
|
663
663
|
declare class ListLabelContacts {
|
|
664
664
|
protected _transport: FetchTransport;
|
|
665
665
|
constructor(_transport: FetchTransport);
|
|
666
|
-
send({ id, request }: Options$
|
|
666
|
+
send({ id, request }: Options$q): Promise<ListLabelContactsResponse>;
|
|
667
667
|
}
|
|
668
668
|
type ListLabelContactsResponsePayload = {
|
|
669
669
|
contacts: {
|
|
@@ -691,7 +691,7 @@ declare class ListLabelContactsResponse {
|
|
|
691
691
|
* @see https://greatdetail.com
|
|
692
692
|
*/
|
|
693
693
|
|
|
694
|
-
interface Options$
|
|
694
|
+
interface Options$p {
|
|
695
695
|
id: string;
|
|
696
696
|
body: z.infer<typeof UpdateContact.SCHEMA>;
|
|
697
697
|
request?: RequestInit;
|
|
@@ -712,7 +712,7 @@ declare class UpdateContact {
|
|
|
712
712
|
telephoneNumber?: string | undefined;
|
|
713
713
|
}>;
|
|
714
714
|
constructor(_transport: FetchTransport);
|
|
715
|
-
send({ id, body, request }: Options$
|
|
715
|
+
send({ id, body, request }: Options$p): Promise<UpdateContactResponse>;
|
|
716
716
|
}
|
|
717
717
|
type UpdateContactResponsePayload = {
|
|
718
718
|
contact: {
|
|
@@ -740,14 +740,14 @@ declare class UpdateContactResponse {
|
|
|
740
740
|
* @see https://greatdetail.com
|
|
741
741
|
*/
|
|
742
742
|
|
|
743
|
-
interface Options$
|
|
743
|
+
interface Options$o {
|
|
744
744
|
id: string;
|
|
745
745
|
request?: RequestInit;
|
|
746
746
|
}
|
|
747
747
|
declare class GetConversation {
|
|
748
748
|
protected _transport: FetchTransport;
|
|
749
749
|
constructor(_transport: FetchTransport);
|
|
750
|
-
send({ id, request }: Options$
|
|
750
|
+
send({ id, request }: Options$o): Promise<GetConversationResponse>;
|
|
751
751
|
}
|
|
752
752
|
type GetConversationResponsePayload = {
|
|
753
753
|
conversation: {
|
|
@@ -766,6 +766,41 @@ declare class GetConversationResponse {
|
|
|
766
766
|
result(): Promise<GetConversationResponsePayload>;
|
|
767
767
|
}
|
|
768
768
|
|
|
769
|
+
/**
|
|
770
|
+
* Great Detail Support System.
|
|
771
|
+
*
|
|
772
|
+
* @copyright 2024 Great Detail Ltd
|
|
773
|
+
* @author Great Detail Ltd <info@greatdetail.com>
|
|
774
|
+
* @author Dom Webber <dom.webber@greatdetail.com>
|
|
775
|
+
* @see https://greatdetail.com
|
|
776
|
+
*/
|
|
777
|
+
|
|
778
|
+
interface Options$n {
|
|
779
|
+
id: string;
|
|
780
|
+
request?: RequestInit;
|
|
781
|
+
}
|
|
782
|
+
declare class ListContactConversations {
|
|
783
|
+
protected _transport: FetchTransport;
|
|
784
|
+
constructor(_transport: FetchTransport);
|
|
785
|
+
send({ id, request }: Options$n): Promise<ListContactConversationsResponse>;
|
|
786
|
+
}
|
|
787
|
+
type ListContactConversationsResponsePayload = {
|
|
788
|
+
conversations: {
|
|
789
|
+
id: string;
|
|
790
|
+
name?: string;
|
|
791
|
+
hasEnded: boolean;
|
|
792
|
+
conversationStatus: "AwaitingContactConversationStatus" | "AwaitingAgentConversationStatus" | "ResolvedConversationStatus" | "ClosedConversationStatus";
|
|
793
|
+
accountChannel: string;
|
|
794
|
+
createdAt: string;
|
|
795
|
+
updatedAt: string;
|
|
796
|
+
}[];
|
|
797
|
+
};
|
|
798
|
+
declare class ListContactConversationsResponse {
|
|
799
|
+
response: Response;
|
|
800
|
+
constructor(response: Response);
|
|
801
|
+
result(): Promise<ListContactConversationsResponsePayload>;
|
|
802
|
+
}
|
|
803
|
+
|
|
769
804
|
/**
|
|
770
805
|
* Great Detail Support System.
|
|
771
806
|
*
|
|
@@ -852,11 +887,14 @@ interface Options$k {
|
|
|
852
887
|
declare class UpdateConversation {
|
|
853
888
|
protected _transport: FetchTransport;
|
|
854
889
|
static SCHEMA: z.ZodObject<{
|
|
855
|
-
|
|
890
|
+
conversationStatus: z.ZodOptional<z.ZodEnum<["AwaitingContactConversationStatus", "AwaitingAgentConversationStatus", "ResolvedConversationStatus", "ClosedConversationStatus"]>>;
|
|
891
|
+
hasEnded: z.ZodOptional<z.ZodBoolean>;
|
|
856
892
|
}, "strip", z.ZodTypeAny, {
|
|
857
|
-
|
|
893
|
+
conversationStatus?: "AwaitingContactConversationStatus" | "AwaitingAgentConversationStatus" | "ResolvedConversationStatus" | "ClosedConversationStatus" | undefined;
|
|
894
|
+
hasEnded?: boolean | undefined;
|
|
858
895
|
}, {
|
|
859
|
-
|
|
896
|
+
conversationStatus?: "AwaitingContactConversationStatus" | "AwaitingAgentConversationStatus" | "ResolvedConversationStatus" | "ClosedConversationStatus" | undefined;
|
|
897
|
+
hasEnded?: boolean | undefined;
|
|
860
898
|
}>;
|
|
861
899
|
constructor(_transport: FetchTransport);
|
|
862
900
|
send({ id, body, request }: Options$k): Promise<UpdateConversationResponse>;
|
|
@@ -1619,8 +1657,8 @@ declare class Client {
|
|
|
1619
1657
|
list: ListContacts;
|
|
1620
1658
|
update: UpdateContact;
|
|
1621
1659
|
create: CreateContact;
|
|
1622
|
-
|
|
1623
|
-
list:
|
|
1660
|
+
conversation: {
|
|
1661
|
+
list: ListContactConversations;
|
|
1624
1662
|
};
|
|
1625
1663
|
note: {
|
|
1626
1664
|
list: ListContactNotes;
|
|
@@ -1678,4 +1716,4 @@ declare class Client {
|
|
|
1678
1716
|
};
|
|
1679
1717
|
}
|
|
1680
1718
|
|
|
1681
|
-
export { type Authentication as A, type
|
|
1719
|
+
export { type Authentication as A, type ListModelsResponsePayload as B, Client as C, type DeleteLabelResponsePayload as D, type CreateCorrectionResponsePayload as E, type CreateResponseResponsePayload as F, type GetBoilerplateResponsePayload as G, type CreateContactNoteResponsePayload as H, type CreateConversationNoteResponsePayload as I, type GetNoteResponsePayload as J, type ListContactNotesResponsePayload as K, type ListActionsResponsePayload as L, type ListConversationNotesResponsePayload as M, type UpdateNoteResponsePayload as N, type Options as O, type GetSourceResponsePayload as P, type ListSourcesResponsePayload as Q, type RequestFilterable as R, type UpdateBoilerplateResponsePayload as U, type Options$H as a, type CreateBoilerplateCategoryBoilerplateResponsePayload as b, type ListBoilerplateCategoryBoilerplatesResponsePayload as c, type ListBoilerplatesResponsePayload as d, type CreateBoilerplateCategoryResponsePayload as e, type GetBoilerplateCategoryResponsePayload as f, type ListBoilerplateCategoriesResponsePayload as g, type UpdateBoilerplateCategoryResponsePayload as h, type ListChannelsResponsePayload as i, type CreateContactResponsePayload as j, type GetContactResponsePayload as k, type ListContactsResponsePayload as l, type ListLabelContactsResponsePayload as m, type UpdateContactResponsePayload as n, type GetConversationResponsePayload as o, type ListConversationsResponsePayload as p, type ListLabelConversationsResponsePayload as q, type UpdateConversationResponsePayload as r, type ListContactConversationsResponsePayload as s, type CreateLabelResponsePayload as t, type GetLabelResponsePayload as u, type ListLabelsResponsePayload as v, type UpdateLabelResponsePayload as w, type ListConversationMessagesResponsePayload as x, type ListMessagesResponsePayload as y, type GetModelResponsePayload as z };
|