@tellescope/types-models 1.4.37 → 1.4.38
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/lib/cjs/index.d.ts +165 -164
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/index.d.ts +165 -164
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5,18 +5,18 @@ export interface EnduserPortalVisibility {
|
|
|
5
5
|
export interface SearchOptions {
|
|
6
6
|
query: string;
|
|
7
7
|
}
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
8
|
+
export type AccessType = "All" | "Default" | "Assigned" | null;
|
|
9
|
+
export type AccessAction = "create" | "read" | "update" | "delete";
|
|
10
|
+
export type AccessResources = ModelName | 'apiKeys';
|
|
11
|
+
export type AccessForResource = {
|
|
12
12
|
[K in AccessAction]: AccessType;
|
|
13
13
|
} & {
|
|
14
14
|
showInSidebar?: boolean;
|
|
15
15
|
};
|
|
16
|
-
export
|
|
16
|
+
export type AccessPermissions = {
|
|
17
17
|
[K in AccessResources]: AccessForResource;
|
|
18
18
|
};
|
|
19
|
-
export
|
|
19
|
+
export type Filters = {
|
|
20
20
|
_exists: boolean;
|
|
21
21
|
_gt: number;
|
|
22
22
|
_gte: number;
|
|
@@ -24,22 +24,22 @@ export declare type Filters = {
|
|
|
24
24
|
_lte: number;
|
|
25
25
|
_all: any[];
|
|
26
26
|
};
|
|
27
|
-
export
|
|
27
|
+
export type ExistsFilter = {
|
|
28
28
|
_exists: boolean;
|
|
29
29
|
};
|
|
30
|
-
export
|
|
31
|
-
export
|
|
30
|
+
export type FilterType = Filters;
|
|
31
|
+
export type FilterKey = keyof Filters;
|
|
32
32
|
export declare const FilterKeys: readonly ["_exists", "_gt", "_gte", "_lt", "_lte", "_all"];
|
|
33
|
-
export
|
|
33
|
+
export type ReadFilter<T> = {
|
|
34
34
|
[K in keyof T]?: T[K] | Partial<FilterType>;
|
|
35
35
|
};
|
|
36
|
-
export
|
|
36
|
+
export type FlowchartUI = {
|
|
37
37
|
x: number;
|
|
38
38
|
y: number;
|
|
39
39
|
};
|
|
40
40
|
/** @deprecated */
|
|
41
|
-
export
|
|
42
|
-
export
|
|
41
|
+
export type OrganizationLimit = 'endusersLimit' | 'smsLimit' | 'emailsLimit' | 'tasksLimit' | 'formsLimit' | 'orgUsersLimit' | 'automationsLimit' | 'automationStepsLimit' | 'journeysLimit' | 'journeyStatesLimit' | 'templatesLimit' | 'apiKeysLimit';
|
|
42
|
+
export type PortalSettings = {
|
|
43
43
|
authentication: {
|
|
44
44
|
landingTitle?: string;
|
|
45
45
|
landingLogo?: string;
|
|
@@ -52,29 +52,29 @@ export declare type PortalSettings = {
|
|
|
52
52
|
registerGraphic?: string;
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
-
export
|
|
55
|
+
export type WithLinkOpenTrackingIds = {
|
|
56
56
|
linkOpenTrackingIds: string[];
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
type BuildCustomEnduserField<T, I> = {
|
|
59
59
|
type: T;
|
|
60
60
|
info: I;
|
|
61
61
|
field: string;
|
|
62
62
|
required?: boolean;
|
|
63
63
|
};
|
|
64
|
-
export
|
|
64
|
+
export type CustomEnduserFields = {
|
|
65
65
|
"Select": BuildCustomEnduserField<'Select', {
|
|
66
66
|
options: string[];
|
|
67
67
|
}>;
|
|
68
68
|
};
|
|
69
|
-
export
|
|
70
|
-
export
|
|
71
|
-
export
|
|
69
|
+
export type CustomEnduserFieldType = keyof CustomEnduserFields;
|
|
70
|
+
export type CustomEnduserField = CustomEnduserFields[CustomEnduserFieldType];
|
|
71
|
+
export type OrganizationSettings = {
|
|
72
72
|
endusers: {
|
|
73
73
|
disableMultipleChatRooms?: boolean;
|
|
74
74
|
customFields?: CustomEnduserField[];
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
|
-
export
|
|
77
|
+
export type OrganizationLimits = {
|
|
78
78
|
[K in ModelName]?: number;
|
|
79
79
|
};
|
|
80
80
|
export interface Organization_readonly extends ClientRecord {
|
|
@@ -102,7 +102,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
102
102
|
enduserDisplayName?: string;
|
|
103
103
|
parentOrganizationId?: string;
|
|
104
104
|
}
|
|
105
|
-
export
|
|
105
|
+
export type OrganizationTheme = {
|
|
106
106
|
name: string;
|
|
107
107
|
businessId: string;
|
|
108
108
|
organizationIds?: string[];
|
|
@@ -119,6 +119,7 @@ export interface RecordInfo {
|
|
|
119
119
|
updatedAt: Date;
|
|
120
120
|
creator: string;
|
|
121
121
|
organizationIds?: string[];
|
|
122
|
+
sharedWithOrganizations?: string[][];
|
|
122
123
|
}
|
|
123
124
|
export interface ClientRecord extends RecordInfo {
|
|
124
125
|
id: string;
|
|
@@ -133,7 +134,7 @@ export interface Session {
|
|
|
133
134
|
exp: number;
|
|
134
135
|
allowedPaths?: string[];
|
|
135
136
|
}
|
|
136
|
-
export
|
|
137
|
+
export type SessionType = "user" | "enduser";
|
|
137
138
|
export interface EnduserSession extends Session, Enduser {
|
|
138
139
|
type: "enduser";
|
|
139
140
|
passwordIsUnset?: boolean;
|
|
@@ -149,19 +150,19 @@ export interface UserSession extends Session, User, OrganizationLimits {
|
|
|
149
150
|
enduserDisplayName?: string;
|
|
150
151
|
limits?: OrganizationLimits;
|
|
151
152
|
}
|
|
152
|
-
export
|
|
153
|
+
export type StateCredentialInfo = {
|
|
153
154
|
state: string;
|
|
154
155
|
expiresAt?: Date;
|
|
155
156
|
};
|
|
156
|
-
export
|
|
157
|
+
export type WeeklyAvailability = {
|
|
157
158
|
dayOfWeekStartingSundayIndexedByZero: number;
|
|
158
159
|
startTimeInMinutes: number;
|
|
159
160
|
endTimeInMinutes: number;
|
|
160
161
|
};
|
|
161
|
-
export
|
|
162
|
+
export type NotificationPreference = {
|
|
162
163
|
email?: boolean;
|
|
163
164
|
};
|
|
164
|
-
export
|
|
165
|
+
export type AccountType = string;
|
|
165
166
|
export interface User_readonly extends ClientRecord {
|
|
166
167
|
organization?: string;
|
|
167
168
|
username?: string;
|
|
@@ -194,14 +195,14 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
194
195
|
timezone?: Timezone;
|
|
195
196
|
weeklyAvailabilities?: WeeklyAvailability[];
|
|
196
197
|
}
|
|
197
|
-
export
|
|
198
|
-
export
|
|
198
|
+
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
199
|
+
export type CustomField = string | number | object | {
|
|
199
200
|
value: string | object;
|
|
200
201
|
title?: string;
|
|
201
202
|
description?: string;
|
|
202
203
|
};
|
|
203
|
-
export
|
|
204
|
-
export
|
|
204
|
+
export type CustomFields = Indexable<boolean | null | string | CustomField>;
|
|
205
|
+
export type GenericQuantityWithUnit = {
|
|
205
206
|
value: string;
|
|
206
207
|
unit: string;
|
|
207
208
|
};
|
|
@@ -275,7 +276,7 @@ export interface EngagementEvent extends EngagementEvent_readonly, EngagementEve
|
|
|
275
276
|
timestamp: Date;
|
|
276
277
|
fields?: CustomFields;
|
|
277
278
|
}
|
|
278
|
-
export
|
|
279
|
+
export type JourneyStatePriority = "Disengaged" | "N/A" | "Engaged";
|
|
279
280
|
export interface JourneyState {
|
|
280
281
|
name: string;
|
|
281
282
|
priority: JourneyStatePriority;
|
|
@@ -314,7 +315,7 @@ export interface TextCommunication extends WithLinkOpenTrackingIds {
|
|
|
314
315
|
automationStepId?: string;
|
|
315
316
|
templateId?: string;
|
|
316
317
|
}
|
|
317
|
-
export
|
|
318
|
+
export type EmailEncoding = '' | 'base64';
|
|
318
319
|
export interface Email_readonly extends ClientRecord {
|
|
319
320
|
delivered: boolean;
|
|
320
321
|
threadId: string;
|
|
@@ -369,14 +370,14 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
369
370
|
[index: string]: Date;
|
|
370
371
|
};
|
|
371
372
|
}
|
|
372
|
-
export
|
|
373
|
+
export type ChatRoomType = 'internal' | 'external';
|
|
373
374
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
374
375
|
recentMessage?: string;
|
|
375
376
|
recentSender?: string;
|
|
376
377
|
recentMessageSentAt?: number;
|
|
377
378
|
numMessages: number;
|
|
378
379
|
}
|
|
379
|
-
export
|
|
380
|
+
export type ChatRoomUserInfo = {
|
|
380
381
|
unreadCount: number;
|
|
381
382
|
};
|
|
382
383
|
export interface ChatRoom_required {
|
|
@@ -398,12 +399,12 @@ export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom
|
|
|
398
399
|
[index: string]: ChatRoomUserInfo;
|
|
399
400
|
};
|
|
400
401
|
}
|
|
401
|
-
export
|
|
402
|
-
export
|
|
402
|
+
export type ChatAttachmentType = 'image' | 'video' | 'file';
|
|
403
|
+
export type ChatAttachment = {
|
|
403
404
|
type: ChatAttachmentType;
|
|
404
405
|
secureName: string;
|
|
405
406
|
};
|
|
406
|
-
export
|
|
407
|
+
export type GenericAttachment = {
|
|
407
408
|
type: string;
|
|
408
409
|
fileId: string;
|
|
409
410
|
displayName: string;
|
|
@@ -430,8 +431,8 @@ export interface ChatMessage extends ChatMessage_readonly, ChatMessage_required,
|
|
|
430
431
|
};
|
|
431
432
|
attachments?: ChatAttachment[];
|
|
432
433
|
}
|
|
433
|
-
export
|
|
434
|
-
export
|
|
434
|
+
export type MessageTemplateType = 'enduser' | 'team';
|
|
435
|
+
export type MessageTemplateMode = 'html' | 'richtext';
|
|
435
436
|
export interface MessageTemplate_readonly extends ClientRecord {
|
|
436
437
|
}
|
|
437
438
|
export interface MessageTemplate_required {
|
|
@@ -481,16 +482,16 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
481
482
|
skillsRequired?: string[];
|
|
482
483
|
chatRoomId?: string;
|
|
483
484
|
}
|
|
484
|
-
export
|
|
485
|
+
export type AttendeeInfo = {
|
|
485
486
|
ExternalUserId: string;
|
|
486
487
|
AttendeeId: string;
|
|
487
488
|
JoinToken: string;
|
|
488
489
|
};
|
|
489
|
-
export
|
|
490
|
+
export type Attendee = UserIdentity & {
|
|
490
491
|
info: AttendeeInfo;
|
|
491
492
|
};
|
|
492
|
-
export
|
|
493
|
-
export
|
|
493
|
+
export type MeetingStatus = 'scheduled' | 'live' | 'ended';
|
|
494
|
+
export type MeetingInfo = {
|
|
494
495
|
MeetingId: string;
|
|
495
496
|
ExternalMeetingId: string;
|
|
496
497
|
MediaPlacement: object;
|
|
@@ -525,10 +526,10 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
|
|
|
525
526
|
ticketId?: string;
|
|
526
527
|
fields?: Indexable<string | CustomField>;
|
|
527
528
|
}
|
|
528
|
-
export
|
|
529
|
-
export
|
|
530
|
-
export
|
|
531
|
-
export
|
|
529
|
+
export type FormFieldLiteralType = 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'rating';
|
|
530
|
+
export type FormFieldComplexType = "multiple_choice" | "file" | "signature" | 'ranking';
|
|
531
|
+
export type FormFieldType = FormFieldLiteralType | FormFieldComplexType;
|
|
532
|
+
export type FormFieldOptions = {
|
|
532
533
|
choices?: string[];
|
|
533
534
|
from?: number;
|
|
534
535
|
to?: number;
|
|
@@ -536,23 +537,23 @@ export declare type FormFieldOptions = {
|
|
|
536
537
|
other?: boolean;
|
|
537
538
|
pdfAttachment?: string;
|
|
538
539
|
};
|
|
539
|
-
export
|
|
540
|
-
export
|
|
541
|
-
export
|
|
540
|
+
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
541
|
+
export type PreviousFormFieldType = 'root' | 'after' | 'previousEquals';
|
|
542
|
+
export type PreviousFormFieldBuilder<T extends PreviousFormFieldType, V> = {
|
|
542
543
|
type: T;
|
|
543
544
|
info: V;
|
|
544
545
|
};
|
|
545
|
-
export
|
|
546
|
+
export type PreviousFormFieldAfterInfo = {
|
|
546
547
|
fieldId: string;
|
|
547
548
|
};
|
|
548
|
-
export
|
|
549
|
+
export type PreviousFormFieldEqualsInfo = {
|
|
549
550
|
fieldId: string;
|
|
550
551
|
equals: string;
|
|
551
552
|
};
|
|
552
|
-
export
|
|
553
|
-
export
|
|
554
|
-
export
|
|
555
|
-
export
|
|
553
|
+
export type PreviousFormFieldAfter = PreviousFormFieldBuilder<'after', PreviousFormFieldAfterInfo>;
|
|
554
|
+
export type PreviousFormFieldEquals = PreviousFormFieldBuilder<'previousEquals', PreviousFormFieldEqualsInfo>;
|
|
555
|
+
export type PreviousFormFieldRoot = PreviousFormFieldBuilder<'root', {}>;
|
|
556
|
+
export type PreviousFormField = (PreviousFormFieldRoot | PreviousFormFieldAfter | PreviousFormFieldEquals);
|
|
556
557
|
export interface FormField_readonly extends ClientRecord {
|
|
557
558
|
}
|
|
558
559
|
export interface FormField_required {
|
|
@@ -571,7 +572,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
571
572
|
intakeField?: string | null;
|
|
572
573
|
flowchartUI?: FlowchartUI;
|
|
573
574
|
}
|
|
574
|
-
export
|
|
575
|
+
export type FormType = 'note' | 'enduserFacing';
|
|
575
576
|
export interface Form_readonly extends ClientRecord {
|
|
576
577
|
numFields: number;
|
|
577
578
|
}
|
|
@@ -590,7 +591,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
590
591
|
thanksMessage?: string;
|
|
591
592
|
type?: FormType;
|
|
592
593
|
}
|
|
593
|
-
export
|
|
594
|
+
export type OAuth2AuthenticationFields = {
|
|
594
595
|
access_token: string;
|
|
595
596
|
refresh_token: string;
|
|
596
597
|
scope: string;
|
|
@@ -599,7 +600,7 @@ export declare type OAuth2AuthenticationFields = {
|
|
|
599
600
|
state?: string;
|
|
600
601
|
email?: string;
|
|
601
602
|
};
|
|
602
|
-
export
|
|
603
|
+
export type IntegrationAuthentication = ({
|
|
603
604
|
type: 'oauth2';
|
|
604
605
|
info: OAuth2AuthenticationFields;
|
|
605
606
|
});
|
|
@@ -615,31 +616,31 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
615
616
|
title: string;
|
|
616
617
|
authentication: IntegrationAuthentication;
|
|
617
618
|
}
|
|
618
|
-
export
|
|
619
|
+
export type BuildDatabaseRecordField<K extends string, V> = {
|
|
619
620
|
type: K;
|
|
620
621
|
value: V;
|
|
621
622
|
};
|
|
622
|
-
export
|
|
623
|
+
export type DatabaseRecordFieldsInfo = {
|
|
623
624
|
string: BuildDatabaseRecordField<'string', string>;
|
|
624
625
|
'string-long': BuildDatabaseRecordField<'string-long', string>;
|
|
625
626
|
'number': BuildDatabaseRecordField<'number', number>;
|
|
626
627
|
};
|
|
627
|
-
export
|
|
628
|
-
export
|
|
628
|
+
export type DatabaseRecordFieldType = keyof DatabaseRecordFieldsInfo;
|
|
629
|
+
export type DatabaseRecordValues = {
|
|
629
630
|
[K in DatabaseRecordFieldType]: {
|
|
630
631
|
type: K;
|
|
631
632
|
value: DatabaseRecordFieldsInfo[K]['value'];
|
|
632
633
|
};
|
|
633
634
|
};
|
|
634
|
-
export
|
|
635
|
-
export
|
|
635
|
+
export type DatabaseRecordValue = DatabaseRecordValues[DatabaseRecordFieldType];
|
|
636
|
+
export type DatabaseRecordFields = {
|
|
636
637
|
[K in DatabaseRecordFieldType]: {
|
|
637
638
|
type: K;
|
|
638
639
|
label: string;
|
|
639
640
|
};
|
|
640
641
|
};
|
|
641
|
-
export
|
|
642
|
-
export
|
|
642
|
+
export type DatabaseRecordField = DatabaseRecordFields[DatabaseRecordFieldType];
|
|
643
|
+
export type OrganizationAccess = {
|
|
643
644
|
create: boolean;
|
|
644
645
|
read: boolean;
|
|
645
646
|
update: boolean;
|
|
@@ -666,40 +667,40 @@ export interface DatabaseRecord_updatesDisabled {
|
|
|
666
667
|
}
|
|
667
668
|
export interface DatabaseRecord extends DatabaseRecord_readonly, DatabaseRecord_required, DatabaseRecord_updatesDisabled {
|
|
668
669
|
}
|
|
669
|
-
export
|
|
670
|
+
export type FormResponseValueAnswerBuilder<TYPE extends FormFieldType, VALUE extends number | object | string> = {
|
|
670
671
|
type: TYPE;
|
|
671
672
|
value?: VALUE;
|
|
672
673
|
};
|
|
673
|
-
export
|
|
674
|
-
export
|
|
675
|
-
export
|
|
676
|
-
export
|
|
677
|
-
export
|
|
678
|
-
export
|
|
679
|
-
export
|
|
680
|
-
export
|
|
674
|
+
export type FormResponseAnswerEmail = FormResponseValueAnswerBuilder<'email', string>;
|
|
675
|
+
export type FormResponseAnswerNumber = FormResponseValueAnswerBuilder<'number', number>;
|
|
676
|
+
export type FormResponseAnswerPhone = FormResponseValueAnswerBuilder<'phone', string>;
|
|
677
|
+
export type FormResponseAnswerString = FormResponseValueAnswerBuilder<'string', string>;
|
|
678
|
+
export type FormResponseAnswerStringLong = FormResponseValueAnswerBuilder<'stringLong', string>;
|
|
679
|
+
export type FormResponseAnswerDate = FormResponseValueAnswerBuilder<'date', Date>;
|
|
680
|
+
export type FormResponseAnswerRating = FormResponseValueAnswerBuilder<'rating', number>;
|
|
681
|
+
export type FormResponseAnswerSignatureValue = {
|
|
681
682
|
fullName: string;
|
|
682
683
|
signed: boolean;
|
|
683
684
|
pdfAttachment?: string;
|
|
684
685
|
signedPdfSecureName?: string;
|
|
685
686
|
};
|
|
686
|
-
export
|
|
687
|
-
export
|
|
688
|
-
export
|
|
689
|
-
export
|
|
690
|
-
export
|
|
687
|
+
export type FormResponseAnswerSignature = FormResponseValueAnswerBuilder<'signature', FormResponseAnswerSignatureValue>;
|
|
688
|
+
export type FormResponseAnswerMultipleChoiceValue = string[];
|
|
689
|
+
export type FormResponseAnswerMultipleChoice = FormResponseValueAnswerBuilder<'multiple_choice', FormResponseAnswerMultipleChoiceValue>;
|
|
690
|
+
export type FormResponseAnswerRanking = FormResponseValueAnswerBuilder<'ranking', FormResponseAnswerMultipleChoiceValue>;
|
|
691
|
+
export type FormResponseAnswerFileValue = {
|
|
691
692
|
secureName: string;
|
|
692
693
|
name: string;
|
|
693
694
|
};
|
|
694
|
-
export
|
|
695
|
-
export
|
|
696
|
-
export
|
|
695
|
+
export type FormResponseAnswerFile = FormResponseValueAnswerBuilder<'file', FormResponseAnswerFileValue>;
|
|
696
|
+
export type FormResponseValueAnswer = (FormResponseAnswerEmail | FormResponseAnswerNumber | FormResponseAnswerPhone | FormResponseAnswerString | FormResponseAnswerStringLong | FormResponseAnswerSignature | FormResponseAnswerMultipleChoice | FormResponseAnswerFile | FormResponseAnswerDate | FormResponseAnswerRating | FormResponseAnswerRanking);
|
|
697
|
+
export type FormResponseValue = {
|
|
697
698
|
fieldId: string;
|
|
698
699
|
fieldTitle: string;
|
|
699
700
|
fieldDescription?: string;
|
|
700
701
|
answer: FormResponseValueAnswer;
|
|
701
702
|
};
|
|
702
|
-
export
|
|
703
|
+
export type AnswerForType = {
|
|
703
704
|
'email': FormResponseAnswerEmail['value'];
|
|
704
705
|
'number': FormResponseAnswerNumber['value'];
|
|
705
706
|
'phone': FormResponseAnswerPhone['value'];
|
|
@@ -744,22 +745,22 @@ export interface WebHook extends WebHook_readonly, WebHook_required, WebHook_upd
|
|
|
744
745
|
secret: string;
|
|
745
746
|
subscriptions: WebhookSubscriptionsType;
|
|
746
747
|
}
|
|
747
|
-
export
|
|
748
|
+
export type AvailabilityBlock = {
|
|
748
749
|
userId: string;
|
|
749
750
|
startTimeInMS: number;
|
|
750
751
|
durationInMinutes: number;
|
|
751
752
|
};
|
|
752
|
-
export
|
|
753
|
+
export type CalendarEventReminderNotificationInfo = {
|
|
753
754
|
templateId?: string;
|
|
754
755
|
channel?: 'Email' | 'SMS';
|
|
755
756
|
};
|
|
756
|
-
|
|
757
|
+
type BuildCalendarEventReminderInfo<T, I> = {
|
|
757
758
|
type: T;
|
|
758
759
|
info: I;
|
|
759
760
|
msBeforeStartTime: number;
|
|
760
761
|
didRemind?: boolean;
|
|
761
762
|
};
|
|
762
|
-
export
|
|
763
|
+
export type CalendarEventReminderInfoForType = {
|
|
763
764
|
"webhook": BuildCalendarEventReminderInfo<'webhook', {}>;
|
|
764
765
|
"add-to-journey": BuildCalendarEventReminderInfo<'add-to-journey', {
|
|
765
766
|
journeyId: string;
|
|
@@ -767,13 +768,13 @@ export declare type CalendarEventReminderInfoForType = {
|
|
|
767
768
|
"user-notification": BuildCalendarEventReminderInfo<'user-notification', CalendarEventReminderNotificationInfo>;
|
|
768
769
|
"enduser-notification": BuildCalendarEventReminderInfo<'enduser-notification', CalendarEventReminderNotificationInfo>;
|
|
769
770
|
};
|
|
770
|
-
export
|
|
771
|
-
export
|
|
772
|
-
export
|
|
771
|
+
export type CalendarEventReminderType = keyof CalendarEventReminderInfoForType;
|
|
772
|
+
export type CalendarEventReminder = CalendarEventReminderInfoForType[CalendarEventReminderType];
|
|
773
|
+
export type EnduserTaskForEvent = {
|
|
773
774
|
id: string;
|
|
774
775
|
enduserId: string;
|
|
775
776
|
};
|
|
776
|
-
export
|
|
777
|
+
export type EnduserFormResponseForEvent = {
|
|
777
778
|
formId: string;
|
|
778
779
|
enduserId: string;
|
|
779
780
|
accessCode: string;
|
|
@@ -845,11 +846,11 @@ export interface CalendarEventRSVP extends CalendarEventRSVP_readonly, CalendarE
|
|
|
845
846
|
avatar?: string;
|
|
846
847
|
status?: string;
|
|
847
848
|
}
|
|
848
|
-
export
|
|
849
|
+
export type WebhookRecord = {
|
|
849
850
|
id: string;
|
|
850
851
|
[index: string]: any;
|
|
851
852
|
};
|
|
852
|
-
export
|
|
853
|
+
export type WebhookUpdates = {
|
|
853
854
|
recordBeforeUpdate: WebhookRecord;
|
|
854
855
|
update: Partial<WebhookRecord>;
|
|
855
856
|
}[];
|
|
@@ -868,12 +869,12 @@ export interface WebhookCall {
|
|
|
868
869
|
timestamp: string;
|
|
869
870
|
integrity: string;
|
|
870
871
|
}
|
|
871
|
-
export
|
|
872
|
+
export type AutomationEventType = 'onJourneyStart' | 'afterAction' | "formResponse" | "formUnsubmitted" | "ticketCompleted";
|
|
872
873
|
interface AutomationEventBuilder<T extends AutomationEventType, V extends object> {
|
|
873
874
|
type: T;
|
|
874
875
|
info: V;
|
|
875
876
|
}
|
|
876
|
-
export
|
|
877
|
+
export type CommunicationsChannel = "Email" | "SMS" | "Chat";
|
|
877
878
|
export interface AutomationForJourney {
|
|
878
879
|
journeyId: string;
|
|
879
880
|
}
|
|
@@ -911,74 +912,74 @@ export interface AutomationForMessage extends AutomationForTemplate, AutomationF
|
|
|
911
912
|
export interface AutomationForWebhook {
|
|
912
913
|
message: string;
|
|
913
914
|
}
|
|
914
|
-
export
|
|
915
|
+
export type FormResponseAutomationEvent = AutomationEventBuilder<'formResponse', {
|
|
915
916
|
automationStepId: string;
|
|
916
917
|
}>;
|
|
917
|
-
export
|
|
918
|
-
export
|
|
918
|
+
export type UnitOfTime = "Seconds" | "Minutes" | "Hours" | "Days";
|
|
919
|
+
export type FormSubmitCancellationConditionInfo = {
|
|
919
920
|
automationStepId: string;
|
|
920
921
|
};
|
|
921
|
-
export
|
|
922
|
+
export type CancelCondition = {
|
|
922
923
|
type: 'formResponse';
|
|
923
924
|
info: FormSubmitCancellationConditionInfo;
|
|
924
925
|
};
|
|
925
|
-
export
|
|
926
|
+
export type AfterActionEventInfo = {
|
|
926
927
|
automationStepId: string;
|
|
927
928
|
delayInMS: number;
|
|
928
929
|
delay: number;
|
|
929
930
|
unit: UnitOfTime;
|
|
930
931
|
cancelConditions?: CancelCondition[];
|
|
931
932
|
};
|
|
932
|
-
export
|
|
933
|
+
export type TicketCompletedEventInfo = {
|
|
933
934
|
automationStepId: string;
|
|
934
935
|
closedForReason?: string;
|
|
935
936
|
};
|
|
936
937
|
export interface FormUnsubmittedEventInfo extends AfterActionEventInfo {
|
|
937
938
|
}
|
|
938
|
-
export
|
|
939
|
-
export
|
|
940
|
-
export
|
|
941
|
-
export
|
|
942
|
-
export
|
|
943
|
-
export
|
|
939
|
+
export type AfterActionAutomationEvent = AutomationEventBuilder<'afterAction', AfterActionEventInfo>;
|
|
940
|
+
export type FormUnsubmittedEvent = AutomationEventBuilder<'formUnsubmitted', FormUnsubmittedEventInfo>;
|
|
941
|
+
export type OnJourneyStartAutomationEvent = AutomationEventBuilder<'onJourneyStart', {}>;
|
|
942
|
+
export type TicketCompletedAutomationEvent = AutomationEventBuilder<'ticketCompleted', TicketCompletedEventInfo>;
|
|
943
|
+
export type AutomationEvent = FormResponseAutomationEvent | AfterActionAutomationEvent | OnJourneyStartAutomationEvent | FormUnsubmittedEvent | TicketCompletedAutomationEvent;
|
|
944
|
+
export type AutomationEventForType = {
|
|
944
945
|
'onJourneyStart': OnJourneyStartAutomationEvent;
|
|
945
946
|
'afterAction': AfterActionAutomationEvent;
|
|
946
947
|
"formResponse": FormResponseAutomationEvent;
|
|
947
948
|
'formUnsubmitted': FormUnsubmittedEvent;
|
|
948
949
|
'ticketCompleted': TicketCompletedAutomationEvent;
|
|
949
950
|
};
|
|
950
|
-
export
|
|
951
|
+
export type SetEnduserStatusInfo = {
|
|
951
952
|
status: string;
|
|
952
953
|
};
|
|
953
954
|
interface AutomationActionBuilder<T extends AutomationActionType, V extends object> {
|
|
954
955
|
type: T;
|
|
955
956
|
info: V;
|
|
956
957
|
}
|
|
957
|
-
export
|
|
958
|
-
export
|
|
958
|
+
export type CreateTicketAssignmentStrategyType = 'care-team-random';
|
|
959
|
+
export type CreateTicketAssignmentStrategy = {
|
|
959
960
|
type: CreateTicketAssignmentStrategyType;
|
|
960
961
|
info: object;
|
|
961
962
|
};
|
|
962
|
-
export
|
|
963
|
+
export type CreateTicketActionInfo = {
|
|
963
964
|
title: string;
|
|
964
965
|
assignmentStrategy: CreateTicketAssignmentStrategy;
|
|
965
966
|
defaultAssignee: string;
|
|
966
967
|
closeReasons?: string[];
|
|
967
968
|
};
|
|
968
|
-
export
|
|
969
|
-
export
|
|
970
|
-
export
|
|
971
|
-
export
|
|
972
|
-
export
|
|
973
|
-
export
|
|
974
|
-
export
|
|
975
|
-
export
|
|
969
|
+
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage>;
|
|
970
|
+
export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', AutomationForMessage>;
|
|
971
|
+
export type SendFormAutomationAction = AutomationActionBuilder<'sendForm', AutomationForFormRequest>;
|
|
972
|
+
export type SetEnduserStatusAutomationAction = AutomationActionBuilder<'setEnduserStatus', SetEnduserStatusInfo>;
|
|
973
|
+
export type CreateTicketAutomationAction = AutomationActionBuilder<'createTicket', CreateTicketActionInfo>;
|
|
974
|
+
export type SendWebhookAutomationAction = AutomationActionBuilder<'sendWebhook', AutomationForWebhook>;
|
|
975
|
+
export type AutomationConditionType = 'atJourneyState';
|
|
976
|
+
export type AutomationConditionBuilder<T extends AutomationConditionType, V extends object> = {
|
|
976
977
|
type: T;
|
|
977
978
|
info: V;
|
|
978
979
|
};
|
|
979
|
-
export
|
|
980
|
-
export
|
|
981
|
-
export
|
|
980
|
+
export type AtJourneyStateAutomationCondition = AutomationConditionBuilder<'atJourneyState', AutomationForJourneyAndState>;
|
|
981
|
+
export type AutomationCondition = AtJourneyStateAutomationCondition;
|
|
982
|
+
export type AutomationActionForType = {
|
|
982
983
|
"sendEmail": SendEmailAutomationAction;
|
|
983
984
|
"sendSMS": SendSMSAutomationAction;
|
|
984
985
|
"sendForm": SendFormAutomationAction;
|
|
@@ -986,8 +987,8 @@ export declare type AutomationActionForType = {
|
|
|
986
987
|
'sendWebhook': SendWebhookAutomationAction;
|
|
987
988
|
'setEnduserStatus': SetEnduserStatusAutomationAction;
|
|
988
989
|
};
|
|
989
|
-
export
|
|
990
|
-
export
|
|
990
|
+
export type AutomationActionType = keyof AutomationActionForType;
|
|
991
|
+
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
991
992
|
export interface AutomationStep_readonly extends ClientRecord {
|
|
992
993
|
}
|
|
993
994
|
export interface AutomationStep_required {
|
|
@@ -1001,7 +1002,7 @@ export interface AutomationStep extends AutomationStep_readonly, AutomationStep_
|
|
|
1001
1002
|
journeyId: string;
|
|
1002
1003
|
flowchartUI?: FlowchartUI;
|
|
1003
1004
|
}
|
|
1004
|
-
export
|
|
1005
|
+
export type RelatedRecord = {
|
|
1005
1006
|
type: string;
|
|
1006
1007
|
id: string;
|
|
1007
1008
|
creator?: string;
|
|
@@ -1019,12 +1020,12 @@ export interface UserNotification extends UserNotification_readonly, UserNotific
|
|
|
1019
1020
|
read?: boolean;
|
|
1020
1021
|
relatedRecords?: RelatedRecord[];
|
|
1021
1022
|
}
|
|
1022
|
-
export
|
|
1023
|
+
export type ObservationValue = {
|
|
1023
1024
|
value: number;
|
|
1024
1025
|
unit: string;
|
|
1025
1026
|
};
|
|
1026
|
-
export
|
|
1027
|
-
export
|
|
1027
|
+
export type ObservationStatusCode = ('registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown');
|
|
1028
|
+
export type ObservationCategory = 'vital-signs';
|
|
1028
1029
|
export interface EnduserObservation_readonly extends ClientRecord {
|
|
1029
1030
|
}
|
|
1030
1031
|
export interface EnduserObservation_required {
|
|
@@ -1042,32 +1043,32 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
1042
1043
|
source?: string;
|
|
1043
1044
|
notes?: string;
|
|
1044
1045
|
}
|
|
1045
|
-
export
|
|
1046
|
-
export
|
|
1046
|
+
export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe';
|
|
1047
|
+
export type ContentBlockBuilder<BLOCK extends BlockType, INFO extends object> = {
|
|
1047
1048
|
type: BLOCK;
|
|
1048
1049
|
info: INFO;
|
|
1049
1050
|
};
|
|
1050
|
-
export
|
|
1051
|
+
export type BlockContentText = {
|
|
1051
1052
|
text: string;
|
|
1052
1053
|
};
|
|
1053
|
-
export
|
|
1054
|
+
export type BlockContentMedia = {
|
|
1054
1055
|
link: string;
|
|
1055
1056
|
name?: string;
|
|
1056
1057
|
height?: number;
|
|
1057
1058
|
width?: number;
|
|
1058
1059
|
};
|
|
1059
|
-
export
|
|
1060
|
-
export
|
|
1061
|
-
export
|
|
1060
|
+
export type BlockContentH1 = ContentBlockBuilder<'h1', BlockContentText>;
|
|
1061
|
+
export type BlockContentH2 = ContentBlockBuilder<'h2', BlockContentText>;
|
|
1062
|
+
export type BlockContentHTML = ContentBlockBuilder<'html', {
|
|
1062
1063
|
html: string;
|
|
1063
1064
|
}>;
|
|
1064
|
-
export
|
|
1065
|
-
export
|
|
1066
|
-
export
|
|
1067
|
-
export
|
|
1068
|
-
export
|
|
1069
|
-
export
|
|
1070
|
-
export
|
|
1065
|
+
export type BlockContentImage = ContentBlockBuilder<'image', BlockContentMedia>;
|
|
1066
|
+
export type BlockContentPDF = ContentBlockBuilder<'pdf', BlockContentMedia>;
|
|
1067
|
+
export type BlockContentYoutube = ContentBlockBuilder<'youtube', BlockContentMedia>;
|
|
1068
|
+
export type BlockContentIFrame = ContentBlockBuilder<'iframe', BlockContentMedia>;
|
|
1069
|
+
export type Block = (BlockContentYoutube | BlockContentPDF | BlockContentImage | BlockContentHTML | BlockContentH1 | BlockContentH2 | BlockContentIFrame);
|
|
1070
|
+
export type ManagedContentRecordType = 'Article' | 'PDF' | 'Video';
|
|
1071
|
+
export type ManagedContentRecordAssignmentType = 'All' | "By Tags" | 'Manual' | 'Individual';
|
|
1071
1072
|
export interface ManagedContentRecord_readonly extends ClientRecord {
|
|
1072
1073
|
}
|
|
1073
1074
|
export interface ManagedContentRecord_required {
|
|
@@ -1103,16 +1104,16 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
1103
1104
|
}
|
|
1104
1105
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
1105
1106
|
}
|
|
1106
|
-
export
|
|
1107
|
-
|
|
1107
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "Community" | "Communications" | "Appointment Booking";
|
|
1108
|
+
type BuildPortalBlockInfo<T, I> = {
|
|
1108
1109
|
type: T;
|
|
1109
1110
|
info: I;
|
|
1110
1111
|
};
|
|
1111
|
-
export
|
|
1112
|
+
export type CareTeamMemberPortalCustomizationInfo = {
|
|
1112
1113
|
title: string;
|
|
1113
1114
|
role?: string;
|
|
1114
1115
|
};
|
|
1115
|
-
export
|
|
1116
|
+
export type PortalBlockForType = {
|
|
1116
1117
|
careTeam: BuildPortalBlockInfo<'careTeam', {
|
|
1117
1118
|
title: string;
|
|
1118
1119
|
}>;
|
|
@@ -1122,8 +1123,8 @@ export declare type PortalBlockForType = {
|
|
|
1122
1123
|
text: string;
|
|
1123
1124
|
}>;
|
|
1124
1125
|
};
|
|
1125
|
-
export
|
|
1126
|
-
export
|
|
1126
|
+
export type PortalBlockType = keyof PortalBlockForType;
|
|
1127
|
+
export type PortalBlock = PortalBlockForType[PortalBlockType];
|
|
1127
1128
|
export interface PortalCustomization_readonly extends ClientRecord {
|
|
1128
1129
|
}
|
|
1129
1130
|
export interface PortalCustomization_required {
|
|
@@ -1212,7 +1213,7 @@ export interface CommentLike_updatesDisabled {
|
|
|
1212
1213
|
}
|
|
1213
1214
|
export interface CommentLike extends CommentLike_readonly, CommentLike_required, CommentLike_updatesDisabled {
|
|
1214
1215
|
}
|
|
1215
|
-
export
|
|
1216
|
+
export type AutomatedActionStatus = 'active' | 'finished' | 'cancelled' | 'error';
|
|
1216
1217
|
export interface AutomatedAction_readonly extends ClientRecord {
|
|
1217
1218
|
}
|
|
1218
1219
|
export interface AutomatedAction_required {
|
|
@@ -1275,7 +1276,7 @@ export interface RoleBasedAccessPermission_updatesDisabled {
|
|
|
1275
1276
|
}
|
|
1276
1277
|
export interface RoleBasedAccessPermission extends RoleBasedAccessPermission_readonly, RoleBasedAccessPermission_required, RoleBasedAccessPermission_updatesDisabled {
|
|
1277
1278
|
}
|
|
1278
|
-
export
|
|
1279
|
+
export type ModelForName_required = {
|
|
1279
1280
|
endusers: Enduser_required;
|
|
1280
1281
|
engagement_events: EngagementEvent_required;
|
|
1281
1282
|
journeys: Journey_required;
|
|
@@ -1320,7 +1321,7 @@ export declare type ModelForName_required = {
|
|
|
1320
1321
|
care_plans: CarePlan_required;
|
|
1321
1322
|
role_based_access_permissions: RoleBasedAccessPermission_required;
|
|
1322
1323
|
};
|
|
1323
|
-
export
|
|
1324
|
+
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
1324
1325
|
export interface ModelForName_readonly {
|
|
1325
1326
|
endusers: Enduser_readonly;
|
|
1326
1327
|
engagement_events: EngagementEvent_readonly;
|
|
@@ -1366,7 +1367,7 @@ export interface ModelForName_readonly {
|
|
|
1366
1367
|
care_plans: CarePlan_readonly;
|
|
1367
1368
|
role_based_access_permissions: RoleBasedAccessPermission_readonly;
|
|
1368
1369
|
}
|
|
1369
|
-
export
|
|
1370
|
+
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
1370
1371
|
export interface ModelForName_updatesDisabled {
|
|
1371
1372
|
endusers: Enduser_updatesDisabled;
|
|
1372
1373
|
engagement_events: EngagementEvent_updatesDisabled;
|
|
@@ -1412,7 +1413,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
1412
1413
|
care_plans: CarePlan_updatesDisabled;
|
|
1413
1414
|
role_based_access_permissions: RoleBasedAccessPermission_updatesDisabled;
|
|
1414
1415
|
}
|
|
1415
|
-
export
|
|
1416
|
+
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
1416
1417
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
1417
1418
|
endusers: Enduser;
|
|
1418
1419
|
engagement_events: EngagementEvent;
|
|
@@ -1458,30 +1459,30 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
|
|
|
1458
1459
|
care_plans: CarePlan;
|
|
1459
1460
|
role_based_access_permissions: RoleBasedAccessPermission;
|
|
1460
1461
|
}
|
|
1461
|
-
export
|
|
1462
|
-
export
|
|
1463
|
-
export
|
|
1462
|
+
export type ModelName = keyof ModelForName;
|
|
1463
|
+
export type Model = ModelForName[keyof ModelForName];
|
|
1464
|
+
export type ConfiguredSessionInfo = {
|
|
1464
1465
|
username: string;
|
|
1465
1466
|
orgEmail: string;
|
|
1466
1467
|
fname: string;
|
|
1467
1468
|
lname: string;
|
|
1468
1469
|
};
|
|
1469
|
-
export
|
|
1470
|
+
export type ConfiguredSession = UserSession & ConfiguredSessionInfo;
|
|
1470
1471
|
export interface UserActivityInfo {
|
|
1471
1472
|
lastActive: string | Date;
|
|
1472
1473
|
lastLogout: string | Date;
|
|
1473
1474
|
}
|
|
1474
|
-
export
|
|
1475
|
+
export type UserActivityStatus = 'Active' | 'Away' | 'Unavailable';
|
|
1475
1476
|
export declare const modelNameChecker: {
|
|
1476
1477
|
[K in ModelName]: true;
|
|
1477
1478
|
};
|
|
1478
1479
|
declare const WEBHOOK_MODELS: Partial<typeof modelNameChecker>;
|
|
1479
1480
|
export { WEBHOOK_MODELS };
|
|
1480
|
-
export
|
|
1481
|
-
export
|
|
1481
|
+
export type WebhookSupportedModel = keyof typeof WEBHOOK_MODELS;
|
|
1482
|
+
export type CUDSubscription = {
|
|
1482
1483
|
[K in CUD]?: boolean;
|
|
1483
1484
|
};
|
|
1484
|
-
export
|
|
1485
|
+
export type WebhookSubscriptionsType = {
|
|
1485
1486
|
[K in WebhookSupportedModel]?: CUDSubscription;
|
|
1486
1487
|
};
|
|
1487
1488
|
export declare const is_webhook_supported_model: (m: ModelName) => m is keyof ModelForName;
|
|
@@ -2026,7 +2027,7 @@ export declare const TIMEZONE_MAP: {
|
|
|
2026
2027
|
readonly "W-SU": "+03:00";
|
|
2027
2028
|
readonly Zulu: "+00:00";
|
|
2028
2029
|
};
|
|
2029
|
-
export
|
|
2030
|
+
export type Timezone = keyof typeof TIMEZONE_MAP;
|
|
2030
2031
|
export declare const TIMEZONES: ("Africa/Abidjan" | "Africa/Accra" | "Africa/Addis_Ababa" | "Africa/Algiers" | "Africa/Asmara" | "Africa/Asmera" | "Africa/Bamako" | "Africa/Bangui" | "Africa/Banjul" | "Africa/Blantyre" | "Africa/Brazzaville" | "Africa/Bujumbura" | "Africa/Cairo" | "Africa/Casablanca" | "Africa/Ceuta" | "Africa/Conakry" | "Africa/Dakar" | "Africa/Dar_es_Salaam" | "Africa/Djibouti" | "Africa/Douala" | "Africa/El_Aaiun" | "Africa/Freetown" | "Africa/Gaborone" | "Africa/Harare" | "Africa/Johannesburg" | "Africa/Juba" | "Africa/Kampala" | "Africa/Khartoum" | "Africa/Kigali" | "Africa/Kinshasa" | "Africa/Lagos" | "Africa/Libreville" | "Africa/Lome" | "Africa/Luanda" | "Africa/Lubumbashi" | "Africa/Lusaka" | "Africa/Malabo" | "Africa/Maputo" | "Africa/Maseru" | "Africa/Mbabane" | "Africa/Mogadishu" | "Africa/Monrovia" | "Africa/Nairobi" | "Africa/Ndjamena" | "Africa/Niamey" | "Africa/Nouakchott" | "Africa/Ouagadougou" | "Africa/Porto-Novo" | "Africa/Sao_Tome" | "Africa/Timbuktu" | "Africa/Tripoli" | "Africa/Tunis" | "Africa/Windhoek" | "America/Adak" | "America/Anchorage" | "America/Anguilla" | "America/Antigua" | "America/Araguaina" | "America/Argentina/Buenos_Aires" | "America/Argentina/Catamarca" | "America/Argentina/ComodRivadavia" | "America/Argentina/Cordoba" | "America/Argentina/Jujuy" | "America/Argentina/La_Rioja" | "America/Argentina/Mendoza" | "America/Argentina/Rio_Gallegos" | "America/Argentina/Salta" | "America/Argentina/San_Juan" | "America/Argentina/San_Luis" | "America/Argentina/Tucuman" | "America/Argentina/Ushuaia" | "America/Aruba" | "America/Asuncion" | "America/Atikokan" | "America/Atka" | "America/Bahia" | "America/Bahia_Banderas" | "America/Barbados" | "America/Belem" | "America/Belize" | "America/Blanc-Sablon" | "America/Boa_Vista" | "America/Bogota" | "America/Boise" | "America/Buenos_Aires" | "America/Cambridge_Bay" | "America/Campo_Grande" | "America/Cancun" | "America/Caracas" | "America/Catamarca" | "America/Cayenne" | "America/Cayman" | "America/Chicago" | "America/Chihuahua" | "America/Coral_Harbour" | "America/Cordoba" | "America/Costa_Rica" | "America/Creston" | "America/Cuiaba" | "America/Curacao" | "America/Danmarkshavn" | "America/Dawson" | "America/Dawson_Creek" | "America/Denver" | "America/Detroit" | "America/Dominica" | "America/Edmonton" | "America/Eirunepe" | "America/El_Salvador" | "America/Ensenada" | "America/Fort_Wayne" | "America/Fortaleza" | "America/Glace_Bay" | "America/Godthab" | "America/Goose_Bay" | "America/Grand_Turk" | "America/Grenada" | "America/Guadeloupe" | "America/Guatemala" | "America/Guayaquil" | "America/Guyana" | "America/Halifax" | "America/Havana" | "America/Hermosillo" | "America/Indiana/Indianapolis" | "America/Indiana/Knox" | "America/Indiana/Marengo" | "America/Indiana/Petersburg" | "America/Indiana/Tell_City" | "America/Indiana/Valparaiso" | "America/Indiana/Vevay" | "America/Indiana/Vincennes" | "America/Indiana/Winamac" | "America/Indianapolis" | "America/Inuvik" | "America/Iqaluit" | "America/Jamaica" | "America/Jujuy" | "America/Juneau" | "America/Kentucky/Louisville" | "America/Kentucky/Monticello" | "America/Knox_IN" | "America/Kralendijk" | "America/La_Paz" | "America/Lima" | "America/Los_Angeles" | "America/Louisville" | "America/Lower_Princes" | "America/Maceio" | "America/Managua" | "America/Manaus" | "America/Marigot" | "America/Martinique" | "America/Matamoros" | "America/Mazatlan" | "America/Mendoza" | "America/Menominee" | "America/Merida" | "America/Metlakatla" | "America/Mexico_City" | "America/Miquelon" | "America/Moncton" | "America/Monterrey" | "America/Montevideo" | "America/Montreal" | "America/Montserrat" | "America/Nassau" | "America/New_York" | "America/Nipigon" | "America/Nome" | "America/Noronha" | "America/North_Dakota/Beulah" | "America/North_Dakota/Center" | "America/North_Dakota/New_Salem" | "America/Ojinaga" | "America/Panama" | "America/Pangnirtung" | "America/Paramaribo" | "America/Phoenix" | "America/Port_of_Spain" | "America/Port-au-Prince" | "America/Porto_Acre" | "America/Porto_Velho" | "America/Puerto_Rico" | "America/Rainy_River" | "America/Rankin_Inlet" | "America/Recife" | "America/Regina" | "America/Resolute" | "America/Rio_Branco" | "America/Rosario" | "America/Santa_Isabel" | "America/Santarem" | "America/Santiago" | "America/Santo_Domingo" | "America/Sao_Paulo" | "America/Scoresbysund" | "America/Shiprock" | "America/Sitka" | "America/St_Barthelemy" | "America/St_Johns" | "America/St_Kitts" | "America/St_Lucia" | "America/St_Thomas" | "America/St_Vincent" | "America/Swift_Current" | "America/Tegucigalpa" | "America/Thule" | "America/Thunder_Bay" | "America/Tijuana" | "America/Toronto" | "America/Tortola" | "America/Vancouver" | "America/Virgin" | "America/Whitehorse" | "America/Winnipeg" | "America/Yakutat" | "America/Yellowknife" | "Antarctica/Casey" | "Antarctica/Davis" | "Antarctica/DumontDUrville" | "Antarctica/Macquarie" | "Antarctica/Mawson" | "Antarctica/McMurdo" | "Antarctica/Palmer" | "Antarctica/Rothera" | "Antarctica/South_Pole" | "Antarctica/Syowa" | "Antarctica/Troll" | "Antarctica/Vostok" | "Arctic/Longyearbyen" | "Asia/Aden" | "Asia/Almaty" | "Asia/Amman" | "Asia/Anadyr" | "Asia/Aqtau" | "Asia/Aqtobe" | "Asia/Ashgabat" | "Asia/Ashkhabad" | "Asia/Baghdad" | "Asia/Bahrain" | "Asia/Baku" | "Asia/Bangkok" | "Asia/Beirut" | "Asia/Bishkek" | "Asia/Brunei" | "Asia/Calcutta" | "Asia/Choibalsan" | "Asia/Chongqing" | "Asia/Chungking" | "Asia/Colombo" | "Asia/Dacca" | "Asia/Damascus" | "Asia/Dhaka" | "Asia/Dili" | "Asia/Dubai" | "Asia/Dushanbe" | "Asia/Gaza" | "Asia/Harbin" | "Asia/Hebron" | "Asia/Ho_Chi_Minh" | "Asia/Hong_Kong" | "Asia/Hovd" | "Asia/Irkutsk" | "Asia/Istanbul" | "Asia/Jakarta" | "Asia/Jayapura" | "Asia/Jerusalem" | "Asia/Kabul" | "Asia/Kamchatka" | "Asia/Karachi" | "Asia/Kashgar" | "Asia/Kathmandu" | "Asia/Katmandu" | "Asia/Khandyga" | "Asia/Kolkata" | "Asia/Krasnoyarsk" | "Asia/Kuala_Lumpur" | "Asia/Kuching" | "Asia/Kuwait" | "Asia/Macao" | "Asia/Macau" | "Asia/Magadan" | "Asia/Makassar" | "Asia/Manila" | "Asia/Muscat" | "Asia/Nicosia" | "Asia/Novokuznetsk" | "Asia/Novosibirsk" | "Asia/Omsk" | "Asia/Oral" | "Asia/Phnom_Penh" | "Asia/Pontianak" | "Asia/Pyongyang" | "Asia/Qatar" | "Asia/Qyzylorda" | "Asia/Rangoon" | "Asia/Riyadh" | "Asia/Saigon" | "Asia/Sakhalin" | "Asia/Samarkand" | "Asia/Seoul" | "Asia/Shanghai" | "Asia/Singapore" | "Asia/Taipei" | "Asia/Tashkent" | "Asia/Tbilisi" | "Asia/Tehran" | "Asia/Tel_Aviv" | "Asia/Thimbu" | "Asia/Thimphu" | "Asia/Tokyo" | "Asia/Ujung_Pandang" | "Asia/Ulaanbaatar" | "Asia/Ulan_Bator" | "Asia/Urumqi" | "Asia/Ust-Nera" | "Asia/Vientiane" | "Asia/Vladivostok" | "Asia/Yakutsk" | "Asia/Yekaterinburg" | "Asia/Yerevan" | "Atlantic/Azores" | "Atlantic/Bermuda" | "Atlantic/Canary" | "Atlantic/Cape_Verde" | "Atlantic/Faeroe" | "Atlantic/Faroe" | "Atlantic/Jan_Mayen" | "Atlantic/Madeira" | "Atlantic/Reykjavik" | "Atlantic/South_Georgia" | "Atlantic/St_Helena" | "Atlantic/Stanley" | "Australia/ACT" | "Australia/Adelaide" | "Australia/Brisbane" | "Australia/Broken_Hill" | "Australia/Canberra" | "Australia/Currie" | "Australia/Darwin" | "Australia/Eucla" | "Australia/Hobart" | "Australia/LHI" | "Australia/Lindeman" | "Australia/Lord_Howe" | "Australia/Melbourne" | "Australia/North" | "Australia/NSW" | "Australia/Perth" | "Australia/Queensland" | "Australia/South" | "Australia/Sydney" | "Australia/Tasmania" | "Australia/Victoria" | "Australia/West" | "Australia/Yancowinna" | "Brazil/Acre" | "Brazil/DeNoronha" | "Brazil/East" | "Brazil/West" | "Canada/Atlantic" | "Canada/Central" | "Canada/Eastern" | "Canada/East-Saskatchewan" | "Canada/Mountain" | "Canada/Newfoundland" | "Canada/Pacific" | "Canada/Saskatchewan" | "Canada/Yukon" | "Chile/Continental" | "Chile/EasterIsland" | "Cuba" | "Egypt" | "Eire" | "Etc/GMT" | "Etc/GMT+0" | "Etc/UCT" | "Etc/Universal" | "Etc/UTC" | "Etc/Zulu" | "Europe/Amsterdam" | "Europe/Andorra" | "Europe/Athens" | "Europe/Belfast" | "Europe/Belgrade" | "Europe/Berlin" | "Europe/Bratislava" | "Europe/Brussels" | "Europe/Bucharest" | "Europe/Budapest" | "Europe/Busingen" | "Europe/Chisinau" | "Europe/Copenhagen" | "Europe/Dublin" | "Europe/Gibraltar" | "Europe/Guernsey" | "Europe/Helsinki" | "Europe/Isle_of_Man" | "Europe/Istanbul" | "Europe/Jersey" | "Europe/Kaliningrad" | "Europe/Kiev" | "Europe/Lisbon" | "Europe/Ljubljana" | "Europe/London" | "Europe/Luxembourg" | "Europe/Madrid" | "Europe/Malta" | "Europe/Mariehamn" | "Europe/Minsk" | "Europe/Monaco" | "Europe/Moscow" | "Europe/Nicosia" | "Europe/Oslo" | "Europe/Paris" | "Europe/Podgorica" | "Europe/Prague" | "Europe/Riga" | "Europe/Rome" | "Europe/Samara" | "Europe/San_Marino" | "Europe/Sarajevo" | "Europe/Simferopol" | "Europe/Skopje" | "Europe/Sofia" | "Europe/Stockholm" | "Europe/Tallinn" | "Europe/Tirane" | "Europe/Tiraspol" | "Europe/Uzhgorod" | "Europe/Vaduz" | "Europe/Vatican" | "Europe/Vienna" | "Europe/Vilnius" | "Europe/Volgograd" | "Europe/Warsaw" | "Europe/Zagreb" | "Europe/Zaporozhye" | "Europe/Zurich" | "GB" | "GB-Eire" | "GMT" | "GMT+0" | "GMT0" | "GMT-0" | "Greenwich" | "Hongkong" | "Iceland" | "Indian/Antananarivo" | "Indian/Chagos" | "Indian/Christmas" | "Indian/Cocos" | "Indian/Comoro" | "Indian/Kerguelen" | "Indian/Mahe" | "Indian/Maldives" | "Indian/Mauritius" | "Indian/Mayotte" | "Indian/Reunion" | "Iran" | "Israel" | "Jamaica" | "Japan" | "Kwajalein" | "Libya" | "Mexico/BajaNorte" | "Mexico/BajaSur" | "Mexico/General" | "Navajo" | "NZ" | "NZ-CHAT" | "Pacific/Apia" | "Pacific/Auckland" | "Pacific/Chatham" | "Pacific/Chuuk" | "Pacific/Easter" | "Pacific/Efate" | "Pacific/Enderbury" | "Pacific/Fakaofo" | "Pacific/Fiji" | "Pacific/Funafuti" | "Pacific/Galapagos" | "Pacific/Gambier" | "Pacific/Guadalcanal" | "Pacific/Guam" | "Pacific/Honolulu" | "Pacific/Johnston" | "Pacific/Kiritimati" | "Pacific/Kosrae" | "Pacific/Kwajalein" | "Pacific/Majuro" | "Pacific/Marquesas" | "Pacific/Midway" | "Pacific/Nauru" | "Pacific/Niue" | "Pacific/Norfolk" | "Pacific/Noumea" | "Pacific/Pago_Pago" | "Pacific/Palau" | "Pacific/Pitcairn" | "Pacific/Pohnpei" | "Pacific/Ponape" | "Pacific/Port_Moresby" | "Pacific/Rarotonga" | "Pacific/Saipan" | "Pacific/Samoa" | "Pacific/Tahiti" | "Pacific/Tarawa" | "Pacific/Tongatapu" | "Pacific/Truk" | "Pacific/Wake" | "Pacific/Wallis" | "Pacific/Yap" | "Poland" | "Portugal" | "PRC" | "ROC" | "ROK" | "Singapore" | "Turkey" | "UCT" | "Universal" | "US/Alaska" | "US/Aleutian" | "US/Arizona" | "US/Central" | "US/Eastern" | "US/East-Indiana" | "US/Hawaii" | "US/Indiana-Starke" | "US/Michigan" | "US/Mountain" | "US/Pacific" | "US/Samoa" | "UTC" | "W-SU" | "Zulu")[];
|
|
2031
2032
|
export declare const TIMEZONES_USA: Timezone[];
|
|
2032
2033
|
//# sourceMappingURL=index.d.ts.map
|