@tellescope/types-models 1.115.0 → 1.117.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 +4 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +4 -0
- 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/cjs/index.d.ts
CHANGED
|
@@ -1736,6 +1736,7 @@ export interface FormResponse_required {
|
|
|
1736
1736
|
responses: FormResponseValue[];
|
|
1737
1737
|
publicSubmit?: boolean;
|
|
1738
1738
|
submittedBy?: string;
|
|
1739
|
+
submittedByIsPlaceholder?: boolean;
|
|
1739
1740
|
submittedAt?: Date;
|
|
1740
1741
|
accessCode?: string;
|
|
1741
1742
|
userEmail?: string;
|
|
@@ -3368,6 +3369,7 @@ export type PhoneTreeEvents = {
|
|
|
3368
3369
|
'If True': PhoneTreeEventBuilder<'If True', {}>;
|
|
3369
3370
|
'If False': PhoneTreeEventBuilder<'If False', {}>;
|
|
3370
3371
|
'If No Users Match': PhoneTreeEventBuilder<'If No Users Match', {}>;
|
|
3372
|
+
'If No Users Answer': PhoneTreeEventBuilder<'If No Users Answer', {}>;
|
|
3371
3373
|
};
|
|
3372
3374
|
export type PhoneTreeEventType = keyof PhoneTreeEvents;
|
|
3373
3375
|
export type PhoneTreeEvent = PhoneTreeEvents[PhoneTreeEventType];
|
|
@@ -3409,6 +3411,7 @@ export type PhoneTreeActions = {
|
|
|
3409
3411
|
'Dial Users': PhoneTreeActionBuilder<"Dial Users", {
|
|
3410
3412
|
userIds: string[];
|
|
3411
3413
|
playback?: Partial<PhonePlayback>;
|
|
3414
|
+
duration?: number;
|
|
3412
3415
|
}>;
|
|
3413
3416
|
'Route Call': PhoneTreeActionBuilder<"Route Call", {
|
|
3414
3417
|
prePlayback?: Partial<PhonePlayback>;
|
|
@@ -3416,6 +3419,7 @@ export type PhoneTreeActions = {
|
|
|
3416
3419
|
byRole?: string;
|
|
3417
3420
|
byTags?: ListOfStringsWithQualifier;
|
|
3418
3421
|
playback?: Partial<PhonePlayback>;
|
|
3422
|
+
duration?: number;
|
|
3419
3423
|
}>;
|
|
3420
3424
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
3421
3425
|
to: string;
|