@tellescope/types-models 1.4.37 → 1.4.42
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 +169 -164
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +169 -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 +7 -2
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,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' | 'dateString' | '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,41 @@ 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 FormResponseAnswerDateString = FormResponseValueAnswerBuilder<'dateString', string>;
|
|
681
|
+
export type FormResponseAnswerRating = FormResponseValueAnswerBuilder<'rating', number>;
|
|
682
|
+
export type FormResponseAnswerSignatureValue = {
|
|
681
683
|
fullName: string;
|
|
682
684
|
signed: boolean;
|
|
683
685
|
pdfAttachment?: string;
|
|
684
686
|
signedPdfSecureName?: string;
|
|
685
687
|
};
|
|
686
|
-
export
|
|
687
|
-
export
|
|
688
|
-
export
|
|
689
|
-
export
|
|
690
|
-
export
|
|
688
|
+
export type FormResponseAnswerSignature = FormResponseValueAnswerBuilder<'signature', FormResponseAnswerSignatureValue>;
|
|
689
|
+
export type FormResponseAnswerMultipleChoiceValue = string[];
|
|
690
|
+
export type FormResponseAnswerMultipleChoice = FormResponseValueAnswerBuilder<'multiple_choice', FormResponseAnswerMultipleChoiceValue>;
|
|
691
|
+
export type FormResponseAnswerRanking = FormResponseValueAnswerBuilder<'ranking', FormResponseAnswerMultipleChoiceValue>;
|
|
692
|
+
export type FormResponseAnswerFileValue = {
|
|
691
693
|
secureName: string;
|
|
692
694
|
name: string;
|
|
693
695
|
};
|
|
694
|
-
export
|
|
695
|
-
export
|
|
696
|
-
export
|
|
696
|
+
export type FormResponseAnswerFile = FormResponseValueAnswerBuilder<'file', FormResponseAnswerFileValue>;
|
|
697
|
+
export type FormResponseValueAnswer = (FormResponseAnswerEmail | FormResponseAnswerNumber | FormResponseAnswerPhone | FormResponseAnswerString | FormResponseAnswerStringLong | FormResponseAnswerSignature | FormResponseAnswerMultipleChoice | FormResponseAnswerFile | FormResponseAnswerDate | FormResponseAnswerRating | FormResponseAnswerRanking | FormResponseAnswerDateString);
|
|
698
|
+
export type FormResponseValue = {
|
|
697
699
|
fieldId: string;
|
|
698
700
|
fieldTitle: string;
|
|
699
701
|
fieldDescription?: string;
|
|
700
702
|
answer: FormResponseValueAnswer;
|
|
701
703
|
};
|
|
702
|
-
export
|
|
704
|
+
export type AnswerForType = {
|
|
703
705
|
'email': FormResponseAnswerEmail['value'];
|
|
704
706
|
'number': FormResponseAnswerNumber['value'];
|
|
705
707
|
'phone': FormResponseAnswerPhone['value'];
|
|
@@ -711,6 +713,7 @@ export declare type AnswerForType = {
|
|
|
711
713
|
'date': FormResponseAnswerDate['value'];
|
|
712
714
|
'rating': FormResponseAnswerRating['value'];
|
|
713
715
|
'ranking': FormResponseAnswerRanking['value'];
|
|
716
|
+
'dateString': FormResponseAnswerDateString['value'];
|
|
714
717
|
};
|
|
715
718
|
export interface FormResponse_readonly extends ClientRecord {
|
|
716
719
|
openedAt?: Date;
|
|
@@ -744,22 +747,22 @@ export interface WebHook extends WebHook_readonly, WebHook_required, WebHook_upd
|
|
|
744
747
|
secret: string;
|
|
745
748
|
subscriptions: WebhookSubscriptionsType;
|
|
746
749
|
}
|
|
747
|
-
export
|
|
750
|
+
export type AvailabilityBlock = {
|
|
748
751
|
userId: string;
|
|
749
752
|
startTimeInMS: number;
|
|
750
753
|
durationInMinutes: number;
|
|
751
754
|
};
|
|
752
|
-
export
|
|
755
|
+
export type CalendarEventReminderNotificationInfo = {
|
|
753
756
|
templateId?: string;
|
|
754
757
|
channel?: 'Email' | 'SMS';
|
|
755
758
|
};
|
|
756
|
-
|
|
759
|
+
type BuildCalendarEventReminderInfo<T, I> = {
|
|
757
760
|
type: T;
|
|
758
761
|
info: I;
|
|
759
762
|
msBeforeStartTime: number;
|
|
760
763
|
didRemind?: boolean;
|
|
761
764
|
};
|
|
762
|
-
export
|
|
765
|
+
export type CalendarEventReminderInfoForType = {
|
|
763
766
|
"webhook": BuildCalendarEventReminderInfo<'webhook', {}>;
|
|
764
767
|
"add-to-journey": BuildCalendarEventReminderInfo<'add-to-journey', {
|
|
765
768
|
journeyId: string;
|
|
@@ -767,13 +770,13 @@ export declare type CalendarEventReminderInfoForType = {
|
|
|
767
770
|
"user-notification": BuildCalendarEventReminderInfo<'user-notification', CalendarEventReminderNotificationInfo>;
|
|
768
771
|
"enduser-notification": BuildCalendarEventReminderInfo<'enduser-notification', CalendarEventReminderNotificationInfo>;
|
|
769
772
|
};
|
|
770
|
-
export
|
|
771
|
-
export
|
|
772
|
-
export
|
|
773
|
+
export type CalendarEventReminderType = keyof CalendarEventReminderInfoForType;
|
|
774
|
+
export type CalendarEventReminder = CalendarEventReminderInfoForType[CalendarEventReminderType];
|
|
775
|
+
export type EnduserTaskForEvent = {
|
|
773
776
|
id: string;
|
|
774
777
|
enduserId: string;
|
|
775
778
|
};
|
|
776
|
-
export
|
|
779
|
+
export type EnduserFormResponseForEvent = {
|
|
777
780
|
formId: string;
|
|
778
781
|
enduserId: string;
|
|
779
782
|
accessCode: string;
|
|
@@ -845,11 +848,11 @@ export interface CalendarEventRSVP extends CalendarEventRSVP_readonly, CalendarE
|
|
|
845
848
|
avatar?: string;
|
|
846
849
|
status?: string;
|
|
847
850
|
}
|
|
848
|
-
export
|
|
851
|
+
export type WebhookRecord = {
|
|
849
852
|
id: string;
|
|
850
853
|
[index: string]: any;
|
|
851
854
|
};
|
|
852
|
-
export
|
|
855
|
+
export type WebhookUpdates = {
|
|
853
856
|
recordBeforeUpdate: WebhookRecord;
|
|
854
857
|
update: Partial<WebhookRecord>;
|
|
855
858
|
}[];
|
|
@@ -868,12 +871,12 @@ export interface WebhookCall {
|
|
|
868
871
|
timestamp: string;
|
|
869
872
|
integrity: string;
|
|
870
873
|
}
|
|
871
|
-
export
|
|
874
|
+
export type AutomationEventType = 'onJourneyStart' | 'afterAction' | "formResponse" | "formUnsubmitted" | "ticketCompleted";
|
|
872
875
|
interface AutomationEventBuilder<T extends AutomationEventType, V extends object> {
|
|
873
876
|
type: T;
|
|
874
877
|
info: V;
|
|
875
878
|
}
|
|
876
|
-
export
|
|
879
|
+
export type CommunicationsChannel = "Email" | "SMS" | "Chat";
|
|
877
880
|
export interface AutomationForJourney {
|
|
878
881
|
journeyId: string;
|
|
879
882
|
}
|
|
@@ -911,74 +914,74 @@ export interface AutomationForMessage extends AutomationForTemplate, AutomationF
|
|
|
911
914
|
export interface AutomationForWebhook {
|
|
912
915
|
message: string;
|
|
913
916
|
}
|
|
914
|
-
export
|
|
917
|
+
export type FormResponseAutomationEvent = AutomationEventBuilder<'formResponse', {
|
|
915
918
|
automationStepId: string;
|
|
916
919
|
}>;
|
|
917
|
-
export
|
|
918
|
-
export
|
|
920
|
+
export type UnitOfTime = "Seconds" | "Minutes" | "Hours" | "Days";
|
|
921
|
+
export type FormSubmitCancellationConditionInfo = {
|
|
919
922
|
automationStepId: string;
|
|
920
923
|
};
|
|
921
|
-
export
|
|
924
|
+
export type CancelCondition = {
|
|
922
925
|
type: 'formResponse';
|
|
923
926
|
info: FormSubmitCancellationConditionInfo;
|
|
924
927
|
};
|
|
925
|
-
export
|
|
928
|
+
export type AfterActionEventInfo = {
|
|
926
929
|
automationStepId: string;
|
|
927
930
|
delayInMS: number;
|
|
928
931
|
delay: number;
|
|
929
932
|
unit: UnitOfTime;
|
|
930
933
|
cancelConditions?: CancelCondition[];
|
|
931
934
|
};
|
|
932
|
-
export
|
|
935
|
+
export type TicketCompletedEventInfo = {
|
|
933
936
|
automationStepId: string;
|
|
934
937
|
closedForReason?: string;
|
|
935
938
|
};
|
|
936
939
|
export interface FormUnsubmittedEventInfo extends AfterActionEventInfo {
|
|
937
940
|
}
|
|
938
|
-
export
|
|
939
|
-
export
|
|
940
|
-
export
|
|
941
|
-
export
|
|
942
|
-
export
|
|
943
|
-
export
|
|
941
|
+
export type AfterActionAutomationEvent = AutomationEventBuilder<'afterAction', AfterActionEventInfo>;
|
|
942
|
+
export type FormUnsubmittedEvent = AutomationEventBuilder<'formUnsubmitted', FormUnsubmittedEventInfo>;
|
|
943
|
+
export type OnJourneyStartAutomationEvent = AutomationEventBuilder<'onJourneyStart', {}>;
|
|
944
|
+
export type TicketCompletedAutomationEvent = AutomationEventBuilder<'ticketCompleted', TicketCompletedEventInfo>;
|
|
945
|
+
export type AutomationEvent = FormResponseAutomationEvent | AfterActionAutomationEvent | OnJourneyStartAutomationEvent | FormUnsubmittedEvent | TicketCompletedAutomationEvent;
|
|
946
|
+
export type AutomationEventForType = {
|
|
944
947
|
'onJourneyStart': OnJourneyStartAutomationEvent;
|
|
945
948
|
'afterAction': AfterActionAutomationEvent;
|
|
946
949
|
"formResponse": FormResponseAutomationEvent;
|
|
947
950
|
'formUnsubmitted': FormUnsubmittedEvent;
|
|
948
951
|
'ticketCompleted': TicketCompletedAutomationEvent;
|
|
949
952
|
};
|
|
950
|
-
export
|
|
953
|
+
export type SetEnduserStatusInfo = {
|
|
951
954
|
status: string;
|
|
952
955
|
};
|
|
953
956
|
interface AutomationActionBuilder<T extends AutomationActionType, V extends object> {
|
|
954
957
|
type: T;
|
|
955
958
|
info: V;
|
|
956
959
|
}
|
|
957
|
-
export
|
|
958
|
-
export
|
|
960
|
+
export type CreateTicketAssignmentStrategyType = 'care-team-random';
|
|
961
|
+
export type CreateTicketAssignmentStrategy = {
|
|
959
962
|
type: CreateTicketAssignmentStrategyType;
|
|
960
963
|
info: object;
|
|
961
964
|
};
|
|
962
|
-
export
|
|
965
|
+
export type CreateTicketActionInfo = {
|
|
963
966
|
title: string;
|
|
964
967
|
assignmentStrategy: CreateTicketAssignmentStrategy;
|
|
965
968
|
defaultAssignee: string;
|
|
966
969
|
closeReasons?: string[];
|
|
967
970
|
};
|
|
968
|
-
export
|
|
969
|
-
export
|
|
970
|
-
export
|
|
971
|
-
export
|
|
972
|
-
export
|
|
973
|
-
export
|
|
974
|
-
export
|
|
975
|
-
export
|
|
971
|
+
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage>;
|
|
972
|
+
export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', AutomationForMessage>;
|
|
973
|
+
export type SendFormAutomationAction = AutomationActionBuilder<'sendForm', AutomationForFormRequest>;
|
|
974
|
+
export type SetEnduserStatusAutomationAction = AutomationActionBuilder<'setEnduserStatus', SetEnduserStatusInfo>;
|
|
975
|
+
export type CreateTicketAutomationAction = AutomationActionBuilder<'createTicket', CreateTicketActionInfo>;
|
|
976
|
+
export type SendWebhookAutomationAction = AutomationActionBuilder<'sendWebhook', AutomationForWebhook>;
|
|
977
|
+
export type AutomationConditionType = 'atJourneyState';
|
|
978
|
+
export type AutomationConditionBuilder<T extends AutomationConditionType, V extends object> = {
|
|
976
979
|
type: T;
|
|
977
980
|
info: V;
|
|
978
981
|
};
|
|
979
|
-
export
|
|
980
|
-
export
|
|
981
|
-
export
|
|
982
|
+
export type AtJourneyStateAutomationCondition = AutomationConditionBuilder<'atJourneyState', AutomationForJourneyAndState>;
|
|
983
|
+
export type AutomationCondition = AtJourneyStateAutomationCondition;
|
|
984
|
+
export type AutomationActionForType = {
|
|
982
985
|
"sendEmail": SendEmailAutomationAction;
|
|
983
986
|
"sendSMS": SendSMSAutomationAction;
|
|
984
987
|
"sendForm": SendFormAutomationAction;
|
|
@@ -986,8 +989,8 @@ export declare type AutomationActionForType = {
|
|
|
986
989
|
'sendWebhook': SendWebhookAutomationAction;
|
|
987
990
|
'setEnduserStatus': SetEnduserStatusAutomationAction;
|
|
988
991
|
};
|
|
989
|
-
export
|
|
990
|
-
export
|
|
992
|
+
export type AutomationActionType = keyof AutomationActionForType;
|
|
993
|
+
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
991
994
|
export interface AutomationStep_readonly extends ClientRecord {
|
|
992
995
|
}
|
|
993
996
|
export interface AutomationStep_required {
|
|
@@ -1001,7 +1004,7 @@ export interface AutomationStep extends AutomationStep_readonly, AutomationStep_
|
|
|
1001
1004
|
journeyId: string;
|
|
1002
1005
|
flowchartUI?: FlowchartUI;
|
|
1003
1006
|
}
|
|
1004
|
-
export
|
|
1007
|
+
export type RelatedRecord = {
|
|
1005
1008
|
type: string;
|
|
1006
1009
|
id: string;
|
|
1007
1010
|
creator?: string;
|
|
@@ -1019,12 +1022,12 @@ export interface UserNotification extends UserNotification_readonly, UserNotific
|
|
|
1019
1022
|
read?: boolean;
|
|
1020
1023
|
relatedRecords?: RelatedRecord[];
|
|
1021
1024
|
}
|
|
1022
|
-
export
|
|
1025
|
+
export type ObservationValue = {
|
|
1023
1026
|
value: number;
|
|
1024
1027
|
unit: string;
|
|
1025
1028
|
};
|
|
1026
|
-
export
|
|
1027
|
-
export
|
|
1029
|
+
export type ObservationStatusCode = ('registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown');
|
|
1030
|
+
export type ObservationCategory = 'vital-signs';
|
|
1028
1031
|
export interface EnduserObservation_readonly extends ClientRecord {
|
|
1029
1032
|
}
|
|
1030
1033
|
export interface EnduserObservation_required {
|
|
@@ -1042,32 +1045,34 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
1042
1045
|
source?: string;
|
|
1043
1046
|
notes?: string;
|
|
1044
1047
|
}
|
|
1045
|
-
export
|
|
1046
|
-
export
|
|
1048
|
+
export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe';
|
|
1049
|
+
export type ContentBlockBuilder<BLOCK extends BlockType, INFO extends object> = {
|
|
1047
1050
|
type: BLOCK;
|
|
1048
1051
|
info: INFO;
|
|
1049
1052
|
};
|
|
1050
|
-
export
|
|
1053
|
+
export type BlockContentText = {
|
|
1051
1054
|
text: string;
|
|
1052
1055
|
};
|
|
1053
|
-
export
|
|
1056
|
+
export type BlockContentMedia = {
|
|
1054
1057
|
link: string;
|
|
1055
1058
|
name?: string;
|
|
1056
1059
|
height?: number;
|
|
1060
|
+
maxHeight?: number;
|
|
1057
1061
|
width?: number;
|
|
1062
|
+
maxWidth?: number;
|
|
1058
1063
|
};
|
|
1059
|
-
export
|
|
1060
|
-
export
|
|
1061
|
-
export
|
|
1064
|
+
export type BlockContentH1 = ContentBlockBuilder<'h1', BlockContentText>;
|
|
1065
|
+
export type BlockContentH2 = ContentBlockBuilder<'h2', BlockContentText>;
|
|
1066
|
+
export type BlockContentHTML = ContentBlockBuilder<'html', {
|
|
1062
1067
|
html: string;
|
|
1063
1068
|
}>;
|
|
1064
|
-
export
|
|
1065
|
-
export
|
|
1066
|
-
export
|
|
1067
|
-
export
|
|
1068
|
-
export
|
|
1069
|
-
export
|
|
1070
|
-
export
|
|
1069
|
+
export type BlockContentImage = ContentBlockBuilder<'image', BlockContentMedia>;
|
|
1070
|
+
export type BlockContentPDF = ContentBlockBuilder<'pdf', BlockContentMedia>;
|
|
1071
|
+
export type BlockContentYoutube = ContentBlockBuilder<'youtube', BlockContentMedia>;
|
|
1072
|
+
export type BlockContentIFrame = ContentBlockBuilder<'iframe', BlockContentMedia>;
|
|
1073
|
+
export type Block = (BlockContentYoutube | BlockContentPDF | BlockContentImage | BlockContentHTML | BlockContentH1 | BlockContentH2 | BlockContentIFrame);
|
|
1074
|
+
export type ManagedContentRecordType = 'Article' | 'PDF' | 'Video';
|
|
1075
|
+
export type ManagedContentRecordAssignmentType = 'All' | "By Tags" | 'Manual' | 'Individual';
|
|
1071
1076
|
export interface ManagedContentRecord_readonly extends ClientRecord {
|
|
1072
1077
|
}
|
|
1073
1078
|
export interface ManagedContentRecord_required {
|
|
@@ -1103,16 +1108,16 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
1103
1108
|
}
|
|
1104
1109
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
1105
1110
|
}
|
|
1106
|
-
export
|
|
1107
|
-
|
|
1111
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "Community" | "Communications" | "Appointment Booking";
|
|
1112
|
+
type BuildPortalBlockInfo<T, I> = {
|
|
1108
1113
|
type: T;
|
|
1109
1114
|
info: I;
|
|
1110
1115
|
};
|
|
1111
|
-
export
|
|
1116
|
+
export type CareTeamMemberPortalCustomizationInfo = {
|
|
1112
1117
|
title: string;
|
|
1113
1118
|
role?: string;
|
|
1114
1119
|
};
|
|
1115
|
-
export
|
|
1120
|
+
export type PortalBlockForType = {
|
|
1116
1121
|
careTeam: BuildPortalBlockInfo<'careTeam', {
|
|
1117
1122
|
title: string;
|
|
1118
1123
|
}>;
|
|
@@ -1122,8 +1127,8 @@ export declare type PortalBlockForType = {
|
|
|
1122
1127
|
text: string;
|
|
1123
1128
|
}>;
|
|
1124
1129
|
};
|
|
1125
|
-
export
|
|
1126
|
-
export
|
|
1130
|
+
export type PortalBlockType = keyof PortalBlockForType;
|
|
1131
|
+
export type PortalBlock = PortalBlockForType[PortalBlockType];
|
|
1127
1132
|
export interface PortalCustomization_readonly extends ClientRecord {
|
|
1128
1133
|
}
|
|
1129
1134
|
export interface PortalCustomization_required {
|
|
@@ -1212,7 +1217,7 @@ export interface CommentLike_updatesDisabled {
|
|
|
1212
1217
|
}
|
|
1213
1218
|
export interface CommentLike extends CommentLike_readonly, CommentLike_required, CommentLike_updatesDisabled {
|
|
1214
1219
|
}
|
|
1215
|
-
export
|
|
1220
|
+
export type AutomatedActionStatus = 'active' | 'finished' | 'cancelled' | 'error';
|
|
1216
1221
|
export interface AutomatedAction_readonly extends ClientRecord {
|
|
1217
1222
|
}
|
|
1218
1223
|
export interface AutomatedAction_required {
|
|
@@ -1275,7 +1280,7 @@ export interface RoleBasedAccessPermission_updatesDisabled {
|
|
|
1275
1280
|
}
|
|
1276
1281
|
export interface RoleBasedAccessPermission extends RoleBasedAccessPermission_readonly, RoleBasedAccessPermission_required, RoleBasedAccessPermission_updatesDisabled {
|
|
1277
1282
|
}
|
|
1278
|
-
export
|
|
1283
|
+
export type ModelForName_required = {
|
|
1279
1284
|
endusers: Enduser_required;
|
|
1280
1285
|
engagement_events: EngagementEvent_required;
|
|
1281
1286
|
journeys: Journey_required;
|
|
@@ -1320,7 +1325,7 @@ export declare type ModelForName_required = {
|
|
|
1320
1325
|
care_plans: CarePlan_required;
|
|
1321
1326
|
role_based_access_permissions: RoleBasedAccessPermission_required;
|
|
1322
1327
|
};
|
|
1323
|
-
export
|
|
1328
|
+
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
1324
1329
|
export interface ModelForName_readonly {
|
|
1325
1330
|
endusers: Enduser_readonly;
|
|
1326
1331
|
engagement_events: EngagementEvent_readonly;
|
|
@@ -1366,7 +1371,7 @@ export interface ModelForName_readonly {
|
|
|
1366
1371
|
care_plans: CarePlan_readonly;
|
|
1367
1372
|
role_based_access_permissions: RoleBasedAccessPermission_readonly;
|
|
1368
1373
|
}
|
|
1369
|
-
export
|
|
1374
|
+
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
1370
1375
|
export interface ModelForName_updatesDisabled {
|
|
1371
1376
|
endusers: Enduser_updatesDisabled;
|
|
1372
1377
|
engagement_events: EngagementEvent_updatesDisabled;
|
|
@@ -1412,7 +1417,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
1412
1417
|
care_plans: CarePlan_updatesDisabled;
|
|
1413
1418
|
role_based_access_permissions: RoleBasedAccessPermission_updatesDisabled;
|
|
1414
1419
|
}
|
|
1415
|
-
export
|
|
1420
|
+
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
1416
1421
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
1417
1422
|
endusers: Enduser;
|
|
1418
1423
|
engagement_events: EngagementEvent;
|
|
@@ -1458,30 +1463,30 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
|
|
|
1458
1463
|
care_plans: CarePlan;
|
|
1459
1464
|
role_based_access_permissions: RoleBasedAccessPermission;
|
|
1460
1465
|
}
|
|
1461
|
-
export
|
|
1462
|
-
export
|
|
1463
|
-
export
|
|
1466
|
+
export type ModelName = keyof ModelForName;
|
|
1467
|
+
export type Model = ModelForName[keyof ModelForName];
|
|
1468
|
+
export type ConfiguredSessionInfo = {
|
|
1464
1469
|
username: string;
|
|
1465
1470
|
orgEmail: string;
|
|
1466
1471
|
fname: string;
|
|
1467
1472
|
lname: string;
|
|
1468
1473
|
};
|
|
1469
|
-
export
|
|
1474
|
+
export type ConfiguredSession = UserSession & ConfiguredSessionInfo;
|
|
1470
1475
|
export interface UserActivityInfo {
|
|
1471
1476
|
lastActive: string | Date;
|
|
1472
1477
|
lastLogout: string | Date;
|
|
1473
1478
|
}
|
|
1474
|
-
export
|
|
1479
|
+
export type UserActivityStatus = 'Active' | 'Away' | 'Unavailable';
|
|
1475
1480
|
export declare const modelNameChecker: {
|
|
1476
1481
|
[K in ModelName]: true;
|
|
1477
1482
|
};
|
|
1478
1483
|
declare const WEBHOOK_MODELS: Partial<typeof modelNameChecker>;
|
|
1479
1484
|
export { WEBHOOK_MODELS };
|
|
1480
|
-
export
|
|
1481
|
-
export
|
|
1485
|
+
export type WebhookSupportedModel = keyof typeof WEBHOOK_MODELS;
|
|
1486
|
+
export type CUDSubscription = {
|
|
1482
1487
|
[K in CUD]?: boolean;
|
|
1483
1488
|
};
|
|
1484
|
-
export
|
|
1489
|
+
export type WebhookSubscriptionsType = {
|
|
1485
1490
|
[K in WebhookSupportedModel]?: CUDSubscription;
|
|
1486
1491
|
};
|
|
1487
1492
|
export declare const is_webhook_supported_model: (m: ModelName) => m is keyof ModelForName;
|
|
@@ -2026,7 +2031,7 @@ export declare const TIMEZONE_MAP: {
|
|
|
2026
2031
|
readonly "W-SU": "+03:00";
|
|
2027
2032
|
readonly Zulu: "+00:00";
|
|
2028
2033
|
};
|
|
2029
|
-
export
|
|
2034
|
+
export type Timezone = keyof typeof TIMEZONE_MAP;
|
|
2030
2035
|
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
2036
|
export declare const TIMEZONES_USA: Timezone[];
|
|
2032
2037
|
//# sourceMappingURL=index.d.ts.map
|