@tellescope/types-models 1.4.36 → 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 +168 -164
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +168 -164
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +4 -1
package/lib/esm/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,9 +134,10 @@ 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";
|
|
140
|
+
passwordIsUnset?: boolean;
|
|
139
141
|
}
|
|
140
142
|
export interface UserSession extends Session, User, OrganizationLimits {
|
|
141
143
|
type: "user";
|
|
@@ -148,19 +150,19 @@ export interface UserSession extends Session, User, OrganizationLimits {
|
|
|
148
150
|
enduserDisplayName?: string;
|
|
149
151
|
limits?: OrganizationLimits;
|
|
150
152
|
}
|
|
151
|
-
export
|
|
153
|
+
export type StateCredentialInfo = {
|
|
152
154
|
state: string;
|
|
153
155
|
expiresAt?: Date;
|
|
154
156
|
};
|
|
155
|
-
export
|
|
157
|
+
export type WeeklyAvailability = {
|
|
156
158
|
dayOfWeekStartingSundayIndexedByZero: number;
|
|
157
159
|
startTimeInMinutes: number;
|
|
158
160
|
endTimeInMinutes: number;
|
|
159
161
|
};
|
|
160
|
-
export
|
|
162
|
+
export type NotificationPreference = {
|
|
161
163
|
email?: boolean;
|
|
162
164
|
};
|
|
163
|
-
export
|
|
165
|
+
export type AccountType = string;
|
|
164
166
|
export interface User_readonly extends ClientRecord {
|
|
165
167
|
organization?: string;
|
|
166
168
|
username?: string;
|
|
@@ -193,14 +195,14 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
193
195
|
timezone?: Timezone;
|
|
194
196
|
weeklyAvailabilities?: WeeklyAvailability[];
|
|
195
197
|
}
|
|
196
|
-
export
|
|
197
|
-
export
|
|
198
|
+
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
199
|
+
export type CustomField = string | number | object | {
|
|
198
200
|
value: string | object;
|
|
199
201
|
title?: string;
|
|
200
202
|
description?: string;
|
|
201
203
|
};
|
|
202
|
-
export
|
|
203
|
-
export
|
|
204
|
+
export type CustomFields = Indexable<boolean | null | string | CustomField>;
|
|
205
|
+
export type GenericQuantityWithUnit = {
|
|
204
206
|
value: string;
|
|
205
207
|
unit: string;
|
|
206
208
|
};
|
|
@@ -274,7 +276,7 @@ export interface EngagementEvent extends EngagementEvent_readonly, EngagementEve
|
|
|
274
276
|
timestamp: Date;
|
|
275
277
|
fields?: CustomFields;
|
|
276
278
|
}
|
|
277
|
-
export
|
|
279
|
+
export type JourneyStatePriority = "Disengaged" | "N/A" | "Engaged";
|
|
278
280
|
export interface JourneyState {
|
|
279
281
|
name: string;
|
|
280
282
|
priority: JourneyStatePriority;
|
|
@@ -313,7 +315,7 @@ export interface TextCommunication extends WithLinkOpenTrackingIds {
|
|
|
313
315
|
automationStepId?: string;
|
|
314
316
|
templateId?: string;
|
|
315
317
|
}
|
|
316
|
-
export
|
|
318
|
+
export type EmailEncoding = '' | 'base64';
|
|
317
319
|
export interface Email_readonly extends ClientRecord {
|
|
318
320
|
delivered: boolean;
|
|
319
321
|
threadId: string;
|
|
@@ -368,14 +370,14 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
368
370
|
[index: string]: Date;
|
|
369
371
|
};
|
|
370
372
|
}
|
|
371
|
-
export
|
|
373
|
+
export type ChatRoomType = 'internal' | 'external';
|
|
372
374
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
373
375
|
recentMessage?: string;
|
|
374
376
|
recentSender?: string;
|
|
375
377
|
recentMessageSentAt?: number;
|
|
376
378
|
numMessages: number;
|
|
377
379
|
}
|
|
378
|
-
export
|
|
380
|
+
export type ChatRoomUserInfo = {
|
|
379
381
|
unreadCount: number;
|
|
380
382
|
};
|
|
381
383
|
export interface ChatRoom_required {
|
|
@@ -397,12 +399,12 @@ export interface ChatRoom extends ChatRoom_readonly, ChatRoom_required, ChatRoom
|
|
|
397
399
|
[index: string]: ChatRoomUserInfo;
|
|
398
400
|
};
|
|
399
401
|
}
|
|
400
|
-
export
|
|
401
|
-
export
|
|
402
|
+
export type ChatAttachmentType = 'image' | 'video' | 'file';
|
|
403
|
+
export type ChatAttachment = {
|
|
402
404
|
type: ChatAttachmentType;
|
|
403
405
|
secureName: string;
|
|
404
406
|
};
|
|
405
|
-
export
|
|
407
|
+
export type GenericAttachment = {
|
|
406
408
|
type: string;
|
|
407
409
|
fileId: string;
|
|
408
410
|
displayName: string;
|
|
@@ -429,8 +431,8 @@ export interface ChatMessage extends ChatMessage_readonly, ChatMessage_required,
|
|
|
429
431
|
};
|
|
430
432
|
attachments?: ChatAttachment[];
|
|
431
433
|
}
|
|
432
|
-
export
|
|
433
|
-
export
|
|
434
|
+
export type MessageTemplateType = 'enduser' | 'team';
|
|
435
|
+
export type MessageTemplateMode = 'html' | 'richtext';
|
|
434
436
|
export interface MessageTemplate_readonly extends ClientRecord {
|
|
435
437
|
}
|
|
436
438
|
export interface MessageTemplate_required {
|
|
@@ -480,16 +482,16 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
480
482
|
skillsRequired?: string[];
|
|
481
483
|
chatRoomId?: string;
|
|
482
484
|
}
|
|
483
|
-
export
|
|
485
|
+
export type AttendeeInfo = {
|
|
484
486
|
ExternalUserId: string;
|
|
485
487
|
AttendeeId: string;
|
|
486
488
|
JoinToken: string;
|
|
487
489
|
};
|
|
488
|
-
export
|
|
490
|
+
export type Attendee = UserIdentity & {
|
|
489
491
|
info: AttendeeInfo;
|
|
490
492
|
};
|
|
491
|
-
export
|
|
492
|
-
export
|
|
493
|
+
export type MeetingStatus = 'scheduled' | 'live' | 'ended';
|
|
494
|
+
export type MeetingInfo = {
|
|
493
495
|
MeetingId: string;
|
|
494
496
|
ExternalMeetingId: string;
|
|
495
497
|
MediaPlacement: object;
|
|
@@ -524,10 +526,10 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
|
|
|
524
526
|
ticketId?: string;
|
|
525
527
|
fields?: Indexable<string | CustomField>;
|
|
526
528
|
}
|
|
527
|
-
export
|
|
528
|
-
export
|
|
529
|
-
export
|
|
530
|
-
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 = {
|
|
531
533
|
choices?: string[];
|
|
532
534
|
from?: number;
|
|
533
535
|
to?: number;
|
|
@@ -535,23 +537,23 @@ export declare type FormFieldOptions = {
|
|
|
535
537
|
other?: boolean;
|
|
536
538
|
pdfAttachment?: string;
|
|
537
539
|
};
|
|
538
|
-
export
|
|
539
|
-
export
|
|
540
|
-
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> = {
|
|
541
543
|
type: T;
|
|
542
544
|
info: V;
|
|
543
545
|
};
|
|
544
|
-
export
|
|
546
|
+
export type PreviousFormFieldAfterInfo = {
|
|
545
547
|
fieldId: string;
|
|
546
548
|
};
|
|
547
|
-
export
|
|
549
|
+
export type PreviousFormFieldEqualsInfo = {
|
|
548
550
|
fieldId: string;
|
|
549
551
|
equals: string;
|
|
550
552
|
};
|
|
551
|
-
export
|
|
552
|
-
export
|
|
553
|
-
export
|
|
554
|
-
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);
|
|
555
557
|
export interface FormField_readonly extends ClientRecord {
|
|
556
558
|
}
|
|
557
559
|
export interface FormField_required {
|
|
@@ -570,7 +572,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
570
572
|
intakeField?: string | null;
|
|
571
573
|
flowchartUI?: FlowchartUI;
|
|
572
574
|
}
|
|
573
|
-
export
|
|
575
|
+
export type FormType = 'note' | 'enduserFacing';
|
|
574
576
|
export interface Form_readonly extends ClientRecord {
|
|
575
577
|
numFields: number;
|
|
576
578
|
}
|
|
@@ -580,6 +582,7 @@ export interface Form_required {
|
|
|
580
582
|
export interface Form_updatesDisabled {
|
|
581
583
|
}
|
|
582
584
|
export interface Form extends Form_readonly, Form_required, Form_updatesDisabled {
|
|
585
|
+
description?: string;
|
|
583
586
|
customSubject?: string;
|
|
584
587
|
customGreeting?: string;
|
|
585
588
|
customSignature?: string;
|
|
@@ -588,7 +591,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
588
591
|
thanksMessage?: string;
|
|
589
592
|
type?: FormType;
|
|
590
593
|
}
|
|
591
|
-
export
|
|
594
|
+
export type OAuth2AuthenticationFields = {
|
|
592
595
|
access_token: string;
|
|
593
596
|
refresh_token: string;
|
|
594
597
|
scope: string;
|
|
@@ -597,7 +600,7 @@ export declare type OAuth2AuthenticationFields = {
|
|
|
597
600
|
state?: string;
|
|
598
601
|
email?: string;
|
|
599
602
|
};
|
|
600
|
-
export
|
|
603
|
+
export type IntegrationAuthentication = ({
|
|
601
604
|
type: 'oauth2';
|
|
602
605
|
info: OAuth2AuthenticationFields;
|
|
603
606
|
});
|
|
@@ -613,31 +616,31 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
613
616
|
title: string;
|
|
614
617
|
authentication: IntegrationAuthentication;
|
|
615
618
|
}
|
|
616
|
-
export
|
|
619
|
+
export type BuildDatabaseRecordField<K extends string, V> = {
|
|
617
620
|
type: K;
|
|
618
621
|
value: V;
|
|
619
622
|
};
|
|
620
|
-
export
|
|
623
|
+
export type DatabaseRecordFieldsInfo = {
|
|
621
624
|
string: BuildDatabaseRecordField<'string', string>;
|
|
622
625
|
'string-long': BuildDatabaseRecordField<'string-long', string>;
|
|
623
626
|
'number': BuildDatabaseRecordField<'number', number>;
|
|
624
627
|
};
|
|
625
|
-
export
|
|
626
|
-
export
|
|
628
|
+
export type DatabaseRecordFieldType = keyof DatabaseRecordFieldsInfo;
|
|
629
|
+
export type DatabaseRecordValues = {
|
|
627
630
|
[K in DatabaseRecordFieldType]: {
|
|
628
631
|
type: K;
|
|
629
632
|
value: DatabaseRecordFieldsInfo[K]['value'];
|
|
630
633
|
};
|
|
631
634
|
};
|
|
632
|
-
export
|
|
633
|
-
export
|
|
635
|
+
export type DatabaseRecordValue = DatabaseRecordValues[DatabaseRecordFieldType];
|
|
636
|
+
export type DatabaseRecordFields = {
|
|
634
637
|
[K in DatabaseRecordFieldType]: {
|
|
635
638
|
type: K;
|
|
636
639
|
label: string;
|
|
637
640
|
};
|
|
638
641
|
};
|
|
639
|
-
export
|
|
640
|
-
export
|
|
642
|
+
export type DatabaseRecordField = DatabaseRecordFields[DatabaseRecordFieldType];
|
|
643
|
+
export type OrganizationAccess = {
|
|
641
644
|
create: boolean;
|
|
642
645
|
read: boolean;
|
|
643
646
|
update: boolean;
|
|
@@ -664,40 +667,40 @@ export interface DatabaseRecord_updatesDisabled {
|
|
|
664
667
|
}
|
|
665
668
|
export interface DatabaseRecord extends DatabaseRecord_readonly, DatabaseRecord_required, DatabaseRecord_updatesDisabled {
|
|
666
669
|
}
|
|
667
|
-
export
|
|
670
|
+
export type FormResponseValueAnswerBuilder<TYPE extends FormFieldType, VALUE extends number | object | string> = {
|
|
668
671
|
type: TYPE;
|
|
669
672
|
value?: VALUE;
|
|
670
673
|
};
|
|
671
|
-
export
|
|
672
|
-
export
|
|
673
|
-
export
|
|
674
|
-
export
|
|
675
|
-
export
|
|
676
|
-
export
|
|
677
|
-
export
|
|
678
|
-
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 = {
|
|
679
682
|
fullName: string;
|
|
680
683
|
signed: boolean;
|
|
681
684
|
pdfAttachment?: string;
|
|
682
685
|
signedPdfSecureName?: string;
|
|
683
686
|
};
|
|
684
|
-
export
|
|
685
|
-
export
|
|
686
|
-
export
|
|
687
|
-
export
|
|
688
|
-
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 = {
|
|
689
692
|
secureName: string;
|
|
690
693
|
name: string;
|
|
691
694
|
};
|
|
692
|
-
export
|
|
693
|
-
export
|
|
694
|
-
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 = {
|
|
695
698
|
fieldId: string;
|
|
696
699
|
fieldTitle: string;
|
|
697
700
|
fieldDescription?: string;
|
|
698
701
|
answer: FormResponseValueAnswer;
|
|
699
702
|
};
|
|
700
|
-
export
|
|
703
|
+
export type AnswerForType = {
|
|
701
704
|
'email': FormResponseAnswerEmail['value'];
|
|
702
705
|
'number': FormResponseAnswerNumber['value'];
|
|
703
706
|
'phone': FormResponseAnswerPhone['value'];
|
|
@@ -742,22 +745,22 @@ export interface WebHook extends WebHook_readonly, WebHook_required, WebHook_upd
|
|
|
742
745
|
secret: string;
|
|
743
746
|
subscriptions: WebhookSubscriptionsType;
|
|
744
747
|
}
|
|
745
|
-
export
|
|
748
|
+
export type AvailabilityBlock = {
|
|
746
749
|
userId: string;
|
|
747
750
|
startTimeInMS: number;
|
|
748
751
|
durationInMinutes: number;
|
|
749
752
|
};
|
|
750
|
-
export
|
|
753
|
+
export type CalendarEventReminderNotificationInfo = {
|
|
751
754
|
templateId?: string;
|
|
752
755
|
channel?: 'Email' | 'SMS';
|
|
753
756
|
};
|
|
754
|
-
|
|
757
|
+
type BuildCalendarEventReminderInfo<T, I> = {
|
|
755
758
|
type: T;
|
|
756
759
|
info: I;
|
|
757
760
|
msBeforeStartTime: number;
|
|
758
761
|
didRemind?: boolean;
|
|
759
762
|
};
|
|
760
|
-
export
|
|
763
|
+
export type CalendarEventReminderInfoForType = {
|
|
761
764
|
"webhook": BuildCalendarEventReminderInfo<'webhook', {}>;
|
|
762
765
|
"add-to-journey": BuildCalendarEventReminderInfo<'add-to-journey', {
|
|
763
766
|
journeyId: string;
|
|
@@ -765,13 +768,13 @@ export declare type CalendarEventReminderInfoForType = {
|
|
|
765
768
|
"user-notification": BuildCalendarEventReminderInfo<'user-notification', CalendarEventReminderNotificationInfo>;
|
|
766
769
|
"enduser-notification": BuildCalendarEventReminderInfo<'enduser-notification', CalendarEventReminderNotificationInfo>;
|
|
767
770
|
};
|
|
768
|
-
export
|
|
769
|
-
export
|
|
770
|
-
export
|
|
771
|
+
export type CalendarEventReminderType = keyof CalendarEventReminderInfoForType;
|
|
772
|
+
export type CalendarEventReminder = CalendarEventReminderInfoForType[CalendarEventReminderType];
|
|
773
|
+
export type EnduserTaskForEvent = {
|
|
771
774
|
id: string;
|
|
772
775
|
enduserId: string;
|
|
773
776
|
};
|
|
774
|
-
export
|
|
777
|
+
export type EnduserFormResponseForEvent = {
|
|
775
778
|
formId: string;
|
|
776
779
|
enduserId: string;
|
|
777
780
|
accessCode: string;
|
|
@@ -843,11 +846,11 @@ export interface CalendarEventRSVP extends CalendarEventRSVP_readonly, CalendarE
|
|
|
843
846
|
avatar?: string;
|
|
844
847
|
status?: string;
|
|
845
848
|
}
|
|
846
|
-
export
|
|
849
|
+
export type WebhookRecord = {
|
|
847
850
|
id: string;
|
|
848
851
|
[index: string]: any;
|
|
849
852
|
};
|
|
850
|
-
export
|
|
853
|
+
export type WebhookUpdates = {
|
|
851
854
|
recordBeforeUpdate: WebhookRecord;
|
|
852
855
|
update: Partial<WebhookRecord>;
|
|
853
856
|
}[];
|
|
@@ -866,12 +869,12 @@ export interface WebhookCall {
|
|
|
866
869
|
timestamp: string;
|
|
867
870
|
integrity: string;
|
|
868
871
|
}
|
|
869
|
-
export
|
|
872
|
+
export type AutomationEventType = 'onJourneyStart' | 'afterAction' | "formResponse" | "formUnsubmitted" | "ticketCompleted";
|
|
870
873
|
interface AutomationEventBuilder<T extends AutomationEventType, V extends object> {
|
|
871
874
|
type: T;
|
|
872
875
|
info: V;
|
|
873
876
|
}
|
|
874
|
-
export
|
|
877
|
+
export type CommunicationsChannel = "Email" | "SMS" | "Chat";
|
|
875
878
|
export interface AutomationForJourney {
|
|
876
879
|
journeyId: string;
|
|
877
880
|
}
|
|
@@ -909,74 +912,74 @@ export interface AutomationForMessage extends AutomationForTemplate, AutomationF
|
|
|
909
912
|
export interface AutomationForWebhook {
|
|
910
913
|
message: string;
|
|
911
914
|
}
|
|
912
|
-
export
|
|
915
|
+
export type FormResponseAutomationEvent = AutomationEventBuilder<'formResponse', {
|
|
913
916
|
automationStepId: string;
|
|
914
917
|
}>;
|
|
915
|
-
export
|
|
916
|
-
export
|
|
918
|
+
export type UnitOfTime = "Seconds" | "Minutes" | "Hours" | "Days";
|
|
919
|
+
export type FormSubmitCancellationConditionInfo = {
|
|
917
920
|
automationStepId: string;
|
|
918
921
|
};
|
|
919
|
-
export
|
|
922
|
+
export type CancelCondition = {
|
|
920
923
|
type: 'formResponse';
|
|
921
924
|
info: FormSubmitCancellationConditionInfo;
|
|
922
925
|
};
|
|
923
|
-
export
|
|
926
|
+
export type AfterActionEventInfo = {
|
|
924
927
|
automationStepId: string;
|
|
925
928
|
delayInMS: number;
|
|
926
929
|
delay: number;
|
|
927
930
|
unit: UnitOfTime;
|
|
928
931
|
cancelConditions?: CancelCondition[];
|
|
929
932
|
};
|
|
930
|
-
export
|
|
933
|
+
export type TicketCompletedEventInfo = {
|
|
931
934
|
automationStepId: string;
|
|
932
935
|
closedForReason?: string;
|
|
933
936
|
};
|
|
934
937
|
export interface FormUnsubmittedEventInfo extends AfterActionEventInfo {
|
|
935
938
|
}
|
|
936
|
-
export
|
|
937
|
-
export
|
|
938
|
-
export
|
|
939
|
-
export
|
|
940
|
-
export
|
|
941
|
-
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 = {
|
|
942
945
|
'onJourneyStart': OnJourneyStartAutomationEvent;
|
|
943
946
|
'afterAction': AfterActionAutomationEvent;
|
|
944
947
|
"formResponse": FormResponseAutomationEvent;
|
|
945
948
|
'formUnsubmitted': FormUnsubmittedEvent;
|
|
946
949
|
'ticketCompleted': TicketCompletedAutomationEvent;
|
|
947
950
|
};
|
|
948
|
-
export
|
|
951
|
+
export type SetEnduserStatusInfo = {
|
|
949
952
|
status: string;
|
|
950
953
|
};
|
|
951
954
|
interface AutomationActionBuilder<T extends AutomationActionType, V extends object> {
|
|
952
955
|
type: T;
|
|
953
956
|
info: V;
|
|
954
957
|
}
|
|
955
|
-
export
|
|
956
|
-
export
|
|
958
|
+
export type CreateTicketAssignmentStrategyType = 'care-team-random';
|
|
959
|
+
export type CreateTicketAssignmentStrategy = {
|
|
957
960
|
type: CreateTicketAssignmentStrategyType;
|
|
958
961
|
info: object;
|
|
959
962
|
};
|
|
960
|
-
export
|
|
963
|
+
export type CreateTicketActionInfo = {
|
|
961
964
|
title: string;
|
|
962
965
|
assignmentStrategy: CreateTicketAssignmentStrategy;
|
|
963
966
|
defaultAssignee: string;
|
|
964
967
|
closeReasons?: string[];
|
|
965
968
|
};
|
|
966
|
-
export
|
|
967
|
-
export
|
|
968
|
-
export
|
|
969
|
-
export
|
|
970
|
-
export
|
|
971
|
-
export
|
|
972
|
-
export
|
|
973
|
-
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> = {
|
|
974
977
|
type: T;
|
|
975
978
|
info: V;
|
|
976
979
|
};
|
|
977
|
-
export
|
|
978
|
-
export
|
|
979
|
-
export
|
|
980
|
+
export type AtJourneyStateAutomationCondition = AutomationConditionBuilder<'atJourneyState', AutomationForJourneyAndState>;
|
|
981
|
+
export type AutomationCondition = AtJourneyStateAutomationCondition;
|
|
982
|
+
export type AutomationActionForType = {
|
|
980
983
|
"sendEmail": SendEmailAutomationAction;
|
|
981
984
|
"sendSMS": SendSMSAutomationAction;
|
|
982
985
|
"sendForm": SendFormAutomationAction;
|
|
@@ -984,8 +987,8 @@ export declare type AutomationActionForType = {
|
|
|
984
987
|
'sendWebhook': SendWebhookAutomationAction;
|
|
985
988
|
'setEnduserStatus': SetEnduserStatusAutomationAction;
|
|
986
989
|
};
|
|
987
|
-
export
|
|
988
|
-
export
|
|
990
|
+
export type AutomationActionType = keyof AutomationActionForType;
|
|
991
|
+
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
989
992
|
export interface AutomationStep_readonly extends ClientRecord {
|
|
990
993
|
}
|
|
991
994
|
export interface AutomationStep_required {
|
|
@@ -999,7 +1002,7 @@ export interface AutomationStep extends AutomationStep_readonly, AutomationStep_
|
|
|
999
1002
|
journeyId: string;
|
|
1000
1003
|
flowchartUI?: FlowchartUI;
|
|
1001
1004
|
}
|
|
1002
|
-
export
|
|
1005
|
+
export type RelatedRecord = {
|
|
1003
1006
|
type: string;
|
|
1004
1007
|
id: string;
|
|
1005
1008
|
creator?: string;
|
|
@@ -1017,12 +1020,12 @@ export interface UserNotification extends UserNotification_readonly, UserNotific
|
|
|
1017
1020
|
read?: boolean;
|
|
1018
1021
|
relatedRecords?: RelatedRecord[];
|
|
1019
1022
|
}
|
|
1020
|
-
export
|
|
1023
|
+
export type ObservationValue = {
|
|
1021
1024
|
value: number;
|
|
1022
1025
|
unit: string;
|
|
1023
1026
|
};
|
|
1024
|
-
export
|
|
1025
|
-
export
|
|
1027
|
+
export type ObservationStatusCode = ('registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown');
|
|
1028
|
+
export type ObservationCategory = 'vital-signs';
|
|
1026
1029
|
export interface EnduserObservation_readonly extends ClientRecord {
|
|
1027
1030
|
}
|
|
1028
1031
|
export interface EnduserObservation_required {
|
|
@@ -1040,32 +1043,32 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
1040
1043
|
source?: string;
|
|
1041
1044
|
notes?: string;
|
|
1042
1045
|
}
|
|
1043
|
-
export
|
|
1044
|
-
export
|
|
1046
|
+
export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe';
|
|
1047
|
+
export type ContentBlockBuilder<BLOCK extends BlockType, INFO extends object> = {
|
|
1045
1048
|
type: BLOCK;
|
|
1046
1049
|
info: INFO;
|
|
1047
1050
|
};
|
|
1048
|
-
export
|
|
1051
|
+
export type BlockContentText = {
|
|
1049
1052
|
text: string;
|
|
1050
1053
|
};
|
|
1051
|
-
export
|
|
1054
|
+
export type BlockContentMedia = {
|
|
1052
1055
|
link: string;
|
|
1053
1056
|
name?: string;
|
|
1054
1057
|
height?: number;
|
|
1055
1058
|
width?: number;
|
|
1056
1059
|
};
|
|
1057
|
-
export
|
|
1058
|
-
export
|
|
1059
|
-
export
|
|
1060
|
+
export type BlockContentH1 = ContentBlockBuilder<'h1', BlockContentText>;
|
|
1061
|
+
export type BlockContentH2 = ContentBlockBuilder<'h2', BlockContentText>;
|
|
1062
|
+
export type BlockContentHTML = ContentBlockBuilder<'html', {
|
|
1060
1063
|
html: string;
|
|
1061
1064
|
}>;
|
|
1062
|
-
export
|
|
1063
|
-
export
|
|
1064
|
-
export
|
|
1065
|
-
export
|
|
1066
|
-
export
|
|
1067
|
-
export
|
|
1068
|
-
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';
|
|
1069
1072
|
export interface ManagedContentRecord_readonly extends ClientRecord {
|
|
1070
1073
|
}
|
|
1071
1074
|
export interface ManagedContentRecord_required {
|
|
@@ -1101,16 +1104,16 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
1101
1104
|
}
|
|
1102
1105
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
1103
1106
|
}
|
|
1104
|
-
export
|
|
1105
|
-
|
|
1107
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "Community" | "Communications" | "Appointment Booking";
|
|
1108
|
+
type BuildPortalBlockInfo<T, I> = {
|
|
1106
1109
|
type: T;
|
|
1107
1110
|
info: I;
|
|
1108
1111
|
};
|
|
1109
|
-
export
|
|
1112
|
+
export type CareTeamMemberPortalCustomizationInfo = {
|
|
1110
1113
|
title: string;
|
|
1111
1114
|
role?: string;
|
|
1112
1115
|
};
|
|
1113
|
-
export
|
|
1116
|
+
export type PortalBlockForType = {
|
|
1114
1117
|
careTeam: BuildPortalBlockInfo<'careTeam', {
|
|
1115
1118
|
title: string;
|
|
1116
1119
|
}>;
|
|
@@ -1120,8 +1123,8 @@ export declare type PortalBlockForType = {
|
|
|
1120
1123
|
text: string;
|
|
1121
1124
|
}>;
|
|
1122
1125
|
};
|
|
1123
|
-
export
|
|
1124
|
-
export
|
|
1126
|
+
export type PortalBlockType = keyof PortalBlockForType;
|
|
1127
|
+
export type PortalBlock = PortalBlockForType[PortalBlockType];
|
|
1125
1128
|
export interface PortalCustomization_readonly extends ClientRecord {
|
|
1126
1129
|
}
|
|
1127
1130
|
export interface PortalCustomization_required {
|
|
@@ -1134,6 +1137,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
1134
1137
|
title?: string;
|
|
1135
1138
|
disabled?: boolean;
|
|
1136
1139
|
mobileBottomNavigationPosition?: number;
|
|
1140
|
+
headerImageURL?: string;
|
|
1137
1141
|
}
|
|
1138
1142
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
1139
1143
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|
|
@@ -1209,7 +1213,7 @@ export interface CommentLike_updatesDisabled {
|
|
|
1209
1213
|
}
|
|
1210
1214
|
export interface CommentLike extends CommentLike_readonly, CommentLike_required, CommentLike_updatesDisabled {
|
|
1211
1215
|
}
|
|
1212
|
-
export
|
|
1216
|
+
export type AutomatedActionStatus = 'active' | 'finished' | 'cancelled' | 'error';
|
|
1213
1217
|
export interface AutomatedAction_readonly extends ClientRecord {
|
|
1214
1218
|
}
|
|
1215
1219
|
export interface AutomatedAction_required {
|
|
@@ -1272,7 +1276,7 @@ export interface RoleBasedAccessPermission_updatesDisabled {
|
|
|
1272
1276
|
}
|
|
1273
1277
|
export interface RoleBasedAccessPermission extends RoleBasedAccessPermission_readonly, RoleBasedAccessPermission_required, RoleBasedAccessPermission_updatesDisabled {
|
|
1274
1278
|
}
|
|
1275
|
-
export
|
|
1279
|
+
export type ModelForName_required = {
|
|
1276
1280
|
endusers: Enduser_required;
|
|
1277
1281
|
engagement_events: EngagementEvent_required;
|
|
1278
1282
|
journeys: Journey_required;
|
|
@@ -1317,7 +1321,7 @@ export declare type ModelForName_required = {
|
|
|
1317
1321
|
care_plans: CarePlan_required;
|
|
1318
1322
|
role_based_access_permissions: RoleBasedAccessPermission_required;
|
|
1319
1323
|
};
|
|
1320
|
-
export
|
|
1324
|
+
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
1321
1325
|
export interface ModelForName_readonly {
|
|
1322
1326
|
endusers: Enduser_readonly;
|
|
1323
1327
|
engagement_events: EngagementEvent_readonly;
|
|
@@ -1363,7 +1367,7 @@ export interface ModelForName_readonly {
|
|
|
1363
1367
|
care_plans: CarePlan_readonly;
|
|
1364
1368
|
role_based_access_permissions: RoleBasedAccessPermission_readonly;
|
|
1365
1369
|
}
|
|
1366
|
-
export
|
|
1370
|
+
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
1367
1371
|
export interface ModelForName_updatesDisabled {
|
|
1368
1372
|
endusers: Enduser_updatesDisabled;
|
|
1369
1373
|
engagement_events: EngagementEvent_updatesDisabled;
|
|
@@ -1409,7 +1413,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
1409
1413
|
care_plans: CarePlan_updatesDisabled;
|
|
1410
1414
|
role_based_access_permissions: RoleBasedAccessPermission_updatesDisabled;
|
|
1411
1415
|
}
|
|
1412
|
-
export
|
|
1416
|
+
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
1413
1417
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
1414
1418
|
endusers: Enduser;
|
|
1415
1419
|
engagement_events: EngagementEvent;
|
|
@@ -1455,30 +1459,30 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
|
|
|
1455
1459
|
care_plans: CarePlan;
|
|
1456
1460
|
role_based_access_permissions: RoleBasedAccessPermission;
|
|
1457
1461
|
}
|
|
1458
|
-
export
|
|
1459
|
-
export
|
|
1460
|
-
export
|
|
1462
|
+
export type ModelName = keyof ModelForName;
|
|
1463
|
+
export type Model = ModelForName[keyof ModelForName];
|
|
1464
|
+
export type ConfiguredSessionInfo = {
|
|
1461
1465
|
username: string;
|
|
1462
1466
|
orgEmail: string;
|
|
1463
1467
|
fname: string;
|
|
1464
1468
|
lname: string;
|
|
1465
1469
|
};
|
|
1466
|
-
export
|
|
1470
|
+
export type ConfiguredSession = UserSession & ConfiguredSessionInfo;
|
|
1467
1471
|
export interface UserActivityInfo {
|
|
1468
1472
|
lastActive: string | Date;
|
|
1469
1473
|
lastLogout: string | Date;
|
|
1470
1474
|
}
|
|
1471
|
-
export
|
|
1475
|
+
export type UserActivityStatus = 'Active' | 'Away' | 'Unavailable';
|
|
1472
1476
|
export declare const modelNameChecker: {
|
|
1473
1477
|
[K in ModelName]: true;
|
|
1474
1478
|
};
|
|
1475
1479
|
declare const WEBHOOK_MODELS: Partial<typeof modelNameChecker>;
|
|
1476
1480
|
export { WEBHOOK_MODELS };
|
|
1477
|
-
export
|
|
1478
|
-
export
|
|
1481
|
+
export type WebhookSupportedModel = keyof typeof WEBHOOK_MODELS;
|
|
1482
|
+
export type CUDSubscription = {
|
|
1479
1483
|
[K in CUD]?: boolean;
|
|
1480
1484
|
};
|
|
1481
|
-
export
|
|
1485
|
+
export type WebhookSubscriptionsType = {
|
|
1482
1486
|
[K in WebhookSupportedModel]?: CUDSubscription;
|
|
1483
1487
|
};
|
|
1484
1488
|
export declare const is_webhook_supported_model: (m: ModelName) => m is keyof ModelForName;
|
|
@@ -2023,7 +2027,7 @@ export declare const TIMEZONE_MAP: {
|
|
|
2023
2027
|
readonly "W-SU": "+03:00";
|
|
2024
2028
|
readonly Zulu: "+00:00";
|
|
2025
2029
|
};
|
|
2026
|
-
export
|
|
2030
|
+
export type Timezone = keyof typeof TIMEZONE_MAP;
|
|
2027
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")[];
|
|
2028
2032
|
export declare const TIMEZONES_USA: Timezone[];
|
|
2029
2033
|
//# sourceMappingURL=index.d.ts.map
|