@tellescope/types-models 1.137.0 → 1.139.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.d.ts +11 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -2
- 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 +11 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export type StripeCheckoutInfo = {
|
|
|
13
13
|
stripeAccount: string;
|
|
14
14
|
businessName: string;
|
|
15
15
|
};
|
|
16
|
-
export type SortBy = 'updatedAt' | 'dueDateInMS';
|
|
16
|
+
export type SortBy = 'updatedAt' | 'dueDateInMS' | 'closedAt';
|
|
17
17
|
export type AccessType = "All" | "Default" | "Assigned" | null;
|
|
18
18
|
export type AccessAction = "create" | "read" | "update" | "delete";
|
|
19
19
|
export type AccessResources = ModelName | 'apiKeys';
|
|
@@ -131,7 +131,7 @@ export type EnduserBuiltInField = {
|
|
|
131
131
|
requireConfirmation?: boolean;
|
|
132
132
|
hidden?: boolean;
|
|
133
133
|
};
|
|
134
|
-
export type CustomDashboardViewBlockType = "Inbox" | "Tickets" | "Upcoming Events" | "Team Chats";
|
|
134
|
+
export type CustomDashboardViewBlockType = "Inbox" | "Tickets" | "Upcoming Events" | "Team Chats" | "To-Dos";
|
|
135
135
|
export type CustomDashboardViewBlock = {
|
|
136
136
|
type: CustomDashboardViewBlockType;
|
|
137
137
|
};
|
|
@@ -1275,6 +1275,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1275
1275
|
archiveReason?: string;
|
|
1276
1276
|
contextFormIds?: string[];
|
|
1277
1277
|
contextEnduserFields?: string[];
|
|
1278
|
+
isTodo?: boolean;
|
|
1278
1279
|
}
|
|
1279
1280
|
export type AttendeeInfo = {
|
|
1280
1281
|
ExternalUserId: string;
|
|
@@ -1541,6 +1542,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1541
1542
|
score: string;
|
|
1542
1543
|
externalId: string;
|
|
1543
1544
|
}[];
|
|
1545
|
+
hideAfterUnsubmittedInMS?: number;
|
|
1544
1546
|
}
|
|
1545
1547
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1546
1548
|
}
|
|
@@ -1831,6 +1833,7 @@ export interface FormResponse_updatesDisabled {
|
|
|
1831
1833
|
}
|
|
1832
1834
|
export interface FormResponse extends FormResponse_readonly, FormResponse_required, FormResponse_updatesDisabled, EnduserPortalVisibility {
|
|
1833
1835
|
draftSavedAt?: Date;
|
|
1836
|
+
draftSavedBy?: string;
|
|
1834
1837
|
sharedVia?: CommunicationsChannel;
|
|
1835
1838
|
isInternalNote?: boolean;
|
|
1836
1839
|
scores?: {
|
|
@@ -1870,6 +1873,8 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
1870
1873
|
};
|
|
1871
1874
|
}[];
|
|
1872
1875
|
discussionRoomId?: string;
|
|
1876
|
+
formsort?: string;
|
|
1877
|
+
hideAfterUnsubmittedInMS?: number;
|
|
1873
1878
|
}
|
|
1874
1879
|
export interface WebHook_readonly extends ClientRecord {
|
|
1875
1880
|
}
|
|
@@ -2662,6 +2667,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
2662
2667
|
}[];
|
|
2663
2668
|
beforeMeal?: boolean;
|
|
2664
2669
|
dontTrigger?: boolean;
|
|
2670
|
+
showWithPlotsByUnit?: string[];
|
|
2665
2671
|
}
|
|
2666
2672
|
export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
|
|
2667
2673
|
export type ContentBlockBuilder<BLOCK extends BlockType, INFO extends object> = {
|
|
@@ -3026,6 +3032,8 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
3026
3032
|
recordingCancelledAt?: Date;
|
|
3027
3033
|
assignedTo?: string[];
|
|
3028
3034
|
timestamp?: Date;
|
|
3035
|
+
dialedUserIds?: string[][];
|
|
3036
|
+
ignoredUserIds?: string[][];
|
|
3029
3037
|
}
|
|
3030
3038
|
export type AnalyticsQueryResultValue = {
|
|
3031
3039
|
key?: string;
|
|
@@ -3119,6 +3127,7 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3119
3127
|
starts?: DateRange;
|
|
3120
3128
|
wasSelfScheduled?: boolean;
|
|
3121
3129
|
wasCancelled?: boolean;
|
|
3130
|
+
wasCompleted?: boolean;
|
|
3122
3131
|
wasRescheduled?: boolean;
|
|
3123
3132
|
wasNoShowed?: boolean;
|
|
3124
3133
|
scheduledBy?: string;
|