@tellescope/types-models 1.186.0 → 1.188.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 +12 -3
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -3
- 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 +3 -3
- package/src/index.ts +11 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -199,6 +199,7 @@ export type OrganizationSettings = {
|
|
|
199
199
|
detailField?: string;
|
|
200
200
|
showDownloadCallRecordings?: boolean;
|
|
201
201
|
launchDosespotWebhookURL?: string;
|
|
202
|
+
reverseTimeline?: boolean;
|
|
202
203
|
};
|
|
203
204
|
tickets?: {
|
|
204
205
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -1558,6 +1559,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1558
1559
|
autoUploadFiles?: boolean;
|
|
1559
1560
|
chargebeeEnvironment?: string;
|
|
1560
1561
|
chargebeePlanId?: string;
|
|
1562
|
+
chargebeeItemId?: string;
|
|
1561
1563
|
relatedContactTypes?: string[];
|
|
1562
1564
|
};
|
|
1563
1565
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
@@ -3061,6 +3063,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
3061
3063
|
activeIconURL?: string;
|
|
3062
3064
|
showStripePortalLink?: boolean;
|
|
3063
3065
|
hideCancellatation?: boolean;
|
|
3066
|
+
hideReschedule?: boolean;
|
|
3064
3067
|
hiddenEventTitles?: string[];
|
|
3065
3068
|
hiddenFormIds?: string[];
|
|
3066
3069
|
}
|
|
@@ -3431,6 +3434,7 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3431
3434
|
closeReasons?: string[];
|
|
3432
3435
|
userTags?: ListOfStringsWithQualifier;
|
|
3433
3436
|
enduserFields?: AnalyticsEnduserFilterField[];
|
|
3437
|
+
closedAtRange?: DateRange;
|
|
3434
3438
|
};
|
|
3435
3439
|
"Phone Calls": {};
|
|
3436
3440
|
"Meetings": {};
|
|
@@ -3786,6 +3790,9 @@ export type AutomationTriggerEvents = {
|
|
|
3786
3790
|
field: string;
|
|
3787
3791
|
value: string;
|
|
3788
3792
|
}, {}>;
|
|
3793
|
+
'Tag Added': AutomationTriggerEventBuilder<"Tag Added", {
|
|
3794
|
+
tag: string;
|
|
3795
|
+
}, {}>;
|
|
3789
3796
|
'Contact Created': AutomationTriggerEventBuilder<"Contact Created", {}, {}>;
|
|
3790
3797
|
'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
|
|
3791
3798
|
titles?: string[];
|
|
@@ -3844,6 +3851,7 @@ export type AutomationTriggerEvents = {
|
|
|
3844
3851
|
}, {}>;
|
|
3845
3852
|
'Order Created': AutomationTriggerEventBuilder<"Order Created", {
|
|
3846
3853
|
titles?: string[];
|
|
3854
|
+
fills?: string[];
|
|
3847
3855
|
partialFrequency?: string;
|
|
3848
3856
|
}, {}>;
|
|
3849
3857
|
'Problem Created': AutomationTriggerEventBuilder<"Problem Created", {
|
|
@@ -4218,14 +4226,14 @@ export interface EnduserOrder_readonly extends ClientRecord {
|
|
|
4218
4226
|
export interface EnduserOrder_updatesDisabled {
|
|
4219
4227
|
}
|
|
4220
4228
|
export interface EnduserOrder_required {
|
|
4221
|
-
}
|
|
4222
|
-
export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_required, EnduserOrder_updatesDisabled {
|
|
4223
4229
|
externalId: string;
|
|
4224
4230
|
source: string;
|
|
4225
4231
|
title: string;
|
|
4226
|
-
description?: string;
|
|
4227
4232
|
status: string;
|
|
4228
4233
|
enduserId: string;
|
|
4234
|
+
}
|
|
4235
|
+
export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_required, EnduserOrder_updatesDisabled {
|
|
4236
|
+
description?: string;
|
|
4229
4237
|
userId?: string;
|
|
4230
4238
|
error?: string;
|
|
4231
4239
|
items?: {
|
|
@@ -4237,6 +4245,7 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
|
|
|
4237
4245
|
shippedDate?: string;
|
|
4238
4246
|
frequency?: string;
|
|
4239
4247
|
activateBy?: string;
|
|
4248
|
+
fill?: string;
|
|
4240
4249
|
}
|
|
4241
4250
|
export interface EnduserProblem_readonly extends ClientRecord {
|
|
4242
4251
|
}
|