@awell-health/awell-extensions 2.0.65 → 2.0.67
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/extensions/bland/actions/index.d.ts +52 -0
- package/dist/extensions/bland/actions/index.js +10 -0
- package/dist/extensions/bland/actions/index.js.map +1 -0
- package/dist/extensions/bland/actions/sendCall/config/dataPoints.d.ts +10 -0
- package/dist/extensions/bland/actions/sendCall/config/dataPoints.js +14 -0
- package/dist/extensions/bland/actions/sendCall/config/dataPoints.js.map +1 -0
- package/dist/extensions/bland/actions/sendCall/config/fields.d.ts +29 -0
- package/dist/extensions/bland/actions/sendCall/config/fields.js +30 -0
- package/dist/extensions/bland/actions/sendCall/config/fields.js.map +1 -0
- package/dist/extensions/bland/actions/sendCall/config/index.d.ts +2 -0
- package/dist/extensions/bland/actions/sendCall/config/index.js +9 -0
- package/dist/extensions/bland/actions/sendCall/config/index.js.map +1 -0
- package/dist/extensions/bland/actions/sendCall/index.d.ts +1 -0
- package/dist/extensions/bland/actions/sendCall/index.js +18 -0
- package/dist/extensions/bland/actions/sendCall/index.js.map +1 -0
- package/dist/extensions/bland/actions/sendCall/sendCall.d.ts +4 -0
- package/dist/extensions/bland/actions/sendCall/sendCall.js +38 -0
- package/dist/extensions/bland/actions/sendCall/sendCall.js.map +1 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/dataPoints.d.ts +10 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/dataPoints.js +14 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/dataPoints.js.map +1 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/fields.d.ts +29 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/fields.js +30 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/fields.js.map +1 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/index.d.ts +2 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/index.js +9 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/config/index.js.map +1 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/index.d.ts +1 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/index.js +18 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/index.js.map +1 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/sendCallWithPathway.d.ts +4 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/sendCallWithPathway.js +39 -0
- package/dist/extensions/bland/actions/sendCallWithPathway/sendCallWithPathway.js.map +1 -0
- package/dist/extensions/bland/api/client.d.ts +10 -0
- package/dist/extensions/bland/api/client.js +24 -0
- package/dist/extensions/bland/api/client.js.map +1 -0
- package/dist/extensions/bland/api/schema/SendCall.schema.d.ts +132 -0
- package/dist/extensions/bland/api/schema/SendCall.schema.js +50 -0
- package/dist/extensions/bland/api/schema/SendCall.schema.js.map +1 -0
- package/dist/extensions/bland/api/schema/index.d.ts +1 -0
- package/dist/extensions/bland/api/schema/index.js +18 -0
- package/dist/extensions/bland/api/schema/index.js.map +1 -0
- package/dist/extensions/bland/index.d.ts +2 -0
- package/dist/extensions/bland/index.js +19 -0
- package/dist/extensions/bland/index.js.map +1 -0
- package/dist/extensions/bland/lib/validatePayloadAndCreateSdk.d.ts +18 -0
- package/dist/extensions/bland/lib/validatePayloadAndCreateSdk.js +34 -0
- package/dist/extensions/bland/lib/validatePayloadAndCreateSdk.js.map +1 -0
- package/dist/extensions/bland/settings.d.ts +17 -0
- package/dist/extensions/bland/settings.js +17 -0
- package/dist/extensions/bland/settings.js.map +1 -0
- package/dist/extensions/calDotCom/actions/createBooking/config/fields.d.ts +2 -2
- package/dist/extensions/calDotCom/schema.d.ts +18 -18
- package/dist/extensions/calendly/schema.d.ts +46 -46
- package/dist/extensions/elation/validation/appointment.zod.d.ts +2 -2
- package/dist/extensions/gridspace/actions/callWithGrace/config.d.ts +2 -2
- package/dist/extensions/healthie/actions/createAppointment/config/fields.d.ts +1 -1
- package/dist/extensions/healthie/actions/index.d.ts +1 -1
- package/dist/extensions/hubspot/actions/sendEmailWithSmtp/config/fields.d.ts +2 -2
- package/dist/extensions/hubspot/lib/smtpApi/smtp.schema.d.ts +2 -2
- package/dist/extensions/index.js +2 -0
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/markdown.json +4 -0
- package/dist/extensions/textline/client/schema.d.ts +10 -10
- package/dist/extensions/twilio/v2/actions/getMessages/config/fields.d.ts +2 -2
- package/package.json +1 -1
@@ -59,9 +59,9 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
60
60
|
status: "active" | "canceled";
|
61
61
|
name: string;
|
62
|
+
start_time: string;
|
62
63
|
created_at: string;
|
63
64
|
updated_at: string;
|
64
|
-
start_time: string;
|
65
65
|
end_time: string;
|
66
66
|
uri: string;
|
67
67
|
event_type: string;
|
@@ -83,9 +83,9 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
83
83
|
}, {
|
84
84
|
status: "active" | "canceled";
|
85
85
|
name: string;
|
86
|
+
start_time: string;
|
86
87
|
created_at: string;
|
87
88
|
updated_at: string;
|
88
|
-
start_time: string;
|
89
89
|
end_time: string;
|
90
90
|
uri: string;
|
91
91
|
event_type: string;
|
@@ -180,6 +180,7 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
180
180
|
status: "active" | "canceled";
|
181
181
|
email: string;
|
182
182
|
name: string;
|
183
|
+
timezone: string;
|
183
184
|
created_at: string;
|
184
185
|
event: string;
|
185
186
|
updated_at: string;
|
@@ -187,9 +188,9 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
187
188
|
scheduled_event: {
|
188
189
|
status: "active" | "canceled";
|
189
190
|
name: string;
|
191
|
+
start_time: string;
|
190
192
|
created_at: string;
|
191
193
|
updated_at: string;
|
192
|
-
start_time: string;
|
193
194
|
end_time: string;
|
194
195
|
uri: string;
|
195
196
|
event_type: string;
|
@@ -210,7 +211,6 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
210
211
|
location?: any;
|
211
212
|
};
|
212
213
|
uri: string;
|
213
|
-
timezone: string;
|
214
214
|
rescheduled: boolean;
|
215
215
|
cancel_url: string;
|
216
216
|
reschedule_url: string;
|
@@ -247,6 +247,7 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
247
247
|
status: "active" | "canceled";
|
248
248
|
email: string;
|
249
249
|
name: string;
|
250
|
+
timezone: string;
|
250
251
|
created_at: string;
|
251
252
|
event: string;
|
252
253
|
updated_at: string;
|
@@ -254,9 +255,9 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
254
255
|
scheduled_event: {
|
255
256
|
status: "active" | "canceled";
|
256
257
|
name: string;
|
258
|
+
start_time: string;
|
257
259
|
created_at: string;
|
258
260
|
updated_at: string;
|
259
|
-
start_time: string;
|
260
261
|
end_time: string;
|
261
262
|
uri: string;
|
262
263
|
event_type: string;
|
@@ -277,7 +278,6 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
277
278
|
location?: any;
|
278
279
|
};
|
279
280
|
uri: string;
|
280
|
-
timezone: string;
|
281
281
|
rescheduled: boolean;
|
282
282
|
cancel_url: string;
|
283
283
|
reschedule_url: string;
|
@@ -316,6 +316,7 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
316
316
|
status: "active" | "canceled";
|
317
317
|
email: string;
|
318
318
|
name: string;
|
319
|
+
timezone: string;
|
319
320
|
created_at: string;
|
320
321
|
event: string;
|
321
322
|
updated_at: string;
|
@@ -323,9 +324,9 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
323
324
|
scheduled_event: {
|
324
325
|
status: "active" | "canceled";
|
325
326
|
name: string;
|
327
|
+
start_time: string;
|
326
328
|
created_at: string;
|
327
329
|
updated_at: string;
|
328
|
-
start_time: string;
|
329
330
|
end_time: string;
|
330
331
|
uri: string;
|
331
332
|
event_type: string;
|
@@ -346,7 +347,6 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
346
347
|
location?: any;
|
347
348
|
};
|
348
349
|
uri: string;
|
349
|
-
timezone: string;
|
350
350
|
rescheduled: boolean;
|
351
351
|
cancel_url: string;
|
352
352
|
reschedule_url: string;
|
@@ -388,6 +388,7 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
388
388
|
status: "active" | "canceled";
|
389
389
|
email: string;
|
390
390
|
name: string;
|
391
|
+
timezone: string;
|
391
392
|
created_at: string;
|
392
393
|
event: string;
|
393
394
|
updated_at: string;
|
@@ -395,9 +396,9 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
395
396
|
scheduled_event: {
|
396
397
|
status: "active" | "canceled";
|
397
398
|
name: string;
|
399
|
+
start_time: string;
|
398
400
|
created_at: string;
|
399
401
|
updated_at: string;
|
400
|
-
start_time: string;
|
401
402
|
end_time: string;
|
402
403
|
uri: string;
|
403
404
|
event_type: string;
|
@@ -418,7 +419,6 @@ export declare const baseWebhookPayloadSchema: z.ZodObject<{
|
|
418
419
|
location?: any;
|
419
420
|
};
|
420
421
|
uri: string;
|
421
|
-
timezone: string;
|
422
422
|
rescheduled: boolean;
|
423
423
|
cancel_url: string;
|
424
424
|
reschedule_url: string;
|
@@ -514,9 +514,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
514
514
|
}, "strip", z.ZodTypeAny, {
|
515
515
|
status: "active" | "canceled";
|
516
516
|
name: string;
|
517
|
+
start_time: string;
|
517
518
|
created_at: string;
|
518
519
|
updated_at: string;
|
519
|
-
start_time: string;
|
520
520
|
end_time: string;
|
521
521
|
uri: string;
|
522
522
|
event_type: string;
|
@@ -538,9 +538,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
538
538
|
}, {
|
539
539
|
status: "active" | "canceled";
|
540
540
|
name: string;
|
541
|
+
start_time: string;
|
541
542
|
created_at: string;
|
542
543
|
updated_at: string;
|
543
|
-
start_time: string;
|
544
544
|
end_time: string;
|
545
545
|
uri: string;
|
546
546
|
event_type: string;
|
@@ -635,6 +635,7 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
635
635
|
status: "active" | "canceled";
|
636
636
|
email: string;
|
637
637
|
name: string;
|
638
|
+
timezone: string;
|
638
639
|
created_at: string;
|
639
640
|
event: string;
|
640
641
|
updated_at: string;
|
@@ -642,9 +643,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
642
643
|
scheduled_event: {
|
643
644
|
status: "active" | "canceled";
|
644
645
|
name: string;
|
646
|
+
start_time: string;
|
645
647
|
created_at: string;
|
646
648
|
updated_at: string;
|
647
|
-
start_time: string;
|
648
649
|
end_time: string;
|
649
650
|
uri: string;
|
650
651
|
event_type: string;
|
@@ -665,7 +666,6 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
665
666
|
location?: any;
|
666
667
|
};
|
667
668
|
uri: string;
|
668
|
-
timezone: string;
|
669
669
|
rescheduled: boolean;
|
670
670
|
cancel_url: string;
|
671
671
|
reschedule_url: string;
|
@@ -702,6 +702,7 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
702
702
|
status: "active" | "canceled";
|
703
703
|
email: string;
|
704
704
|
name: string;
|
705
|
+
timezone: string;
|
705
706
|
created_at: string;
|
706
707
|
event: string;
|
707
708
|
updated_at: string;
|
@@ -709,9 +710,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
709
710
|
scheduled_event: {
|
710
711
|
status: "active" | "canceled";
|
711
712
|
name: string;
|
713
|
+
start_time: string;
|
712
714
|
created_at: string;
|
713
715
|
updated_at: string;
|
714
|
-
start_time: string;
|
715
716
|
end_time: string;
|
716
717
|
uri: string;
|
717
718
|
event_type: string;
|
@@ -732,7 +733,6 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
732
733
|
location?: any;
|
733
734
|
};
|
734
735
|
uri: string;
|
735
|
-
timezone: string;
|
736
736
|
rescheduled: boolean;
|
737
737
|
cancel_url: string;
|
738
738
|
reschedule_url: string;
|
@@ -821,9 +821,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
821
821
|
}, "strip", z.ZodTypeAny, {
|
822
822
|
status: "active" | "canceled";
|
823
823
|
name: string;
|
824
|
+
start_time: string;
|
824
825
|
created_at: string;
|
825
826
|
updated_at: string;
|
826
|
-
start_time: string;
|
827
827
|
end_time: string;
|
828
828
|
uri: string;
|
829
829
|
event_type: string;
|
@@ -845,9 +845,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
845
845
|
}, {
|
846
846
|
status: "active" | "canceled";
|
847
847
|
name: string;
|
848
|
+
start_time: string;
|
848
849
|
created_at: string;
|
849
850
|
updated_at: string;
|
850
|
-
start_time: string;
|
851
851
|
end_time: string;
|
852
852
|
uri: string;
|
853
853
|
event_type: string;
|
@@ -991,9 +991,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
991
991
|
}>, "strip", z.ZodTypeAny, {
|
992
992
|
status: "canceled";
|
993
993
|
name: string;
|
994
|
+
start_time: string;
|
994
995
|
created_at: string;
|
995
996
|
updated_at: string;
|
996
|
-
start_time: string;
|
997
997
|
end_time: string;
|
998
998
|
uri: string;
|
999
999
|
event_type: string;
|
@@ -1015,9 +1015,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1015
1015
|
}, {
|
1016
1016
|
status: "canceled";
|
1017
1017
|
name: string;
|
1018
|
+
start_time: string;
|
1018
1019
|
created_at: string;
|
1019
1020
|
updated_at: string;
|
1020
|
-
start_time: string;
|
1021
1021
|
end_time: string;
|
1022
1022
|
uri: string;
|
1023
1023
|
event_type: string;
|
@@ -1057,6 +1057,7 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1057
1057
|
status: "canceled";
|
1058
1058
|
email: string;
|
1059
1059
|
name: string;
|
1060
|
+
timezone: string;
|
1060
1061
|
created_at: string;
|
1061
1062
|
event: string;
|
1062
1063
|
updated_at: string;
|
@@ -1064,9 +1065,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1064
1065
|
scheduled_event: {
|
1065
1066
|
status: "canceled";
|
1066
1067
|
name: string;
|
1068
|
+
start_time: string;
|
1067
1069
|
created_at: string;
|
1068
1070
|
updated_at: string;
|
1069
|
-
start_time: string;
|
1070
1071
|
end_time: string;
|
1071
1072
|
uri: string;
|
1072
1073
|
event_type: string;
|
@@ -1087,7 +1088,6 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1087
1088
|
location?: any;
|
1088
1089
|
};
|
1089
1090
|
uri: string;
|
1090
|
-
timezone: string;
|
1091
1091
|
rescheduled: boolean;
|
1092
1092
|
cancel_url: string;
|
1093
1093
|
reschedule_url: string;
|
@@ -1130,6 +1130,7 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1130
1130
|
status: "canceled";
|
1131
1131
|
email: string;
|
1132
1132
|
name: string;
|
1133
|
+
timezone: string;
|
1133
1134
|
created_at: string;
|
1134
1135
|
event: string;
|
1135
1136
|
updated_at: string;
|
@@ -1137,9 +1138,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1137
1138
|
scheduled_event: {
|
1138
1139
|
status: "canceled";
|
1139
1140
|
name: string;
|
1141
|
+
start_time: string;
|
1140
1142
|
created_at: string;
|
1141
1143
|
updated_at: string;
|
1142
|
-
start_time: string;
|
1143
1144
|
end_time: string;
|
1144
1145
|
uri: string;
|
1145
1146
|
event_type: string;
|
@@ -1160,7 +1161,6 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1160
1161
|
location?: any;
|
1161
1162
|
};
|
1162
1163
|
uri: string;
|
1163
|
-
timezone: string;
|
1164
1164
|
rescheduled: boolean;
|
1165
1165
|
cancel_url: string;
|
1166
1166
|
reschedule_url: string;
|
@@ -1205,6 +1205,7 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1205
1205
|
status: "canceled";
|
1206
1206
|
email: string;
|
1207
1207
|
name: string;
|
1208
|
+
timezone: string;
|
1208
1209
|
created_at: string;
|
1209
1210
|
event: string;
|
1210
1211
|
updated_at: string;
|
@@ -1212,9 +1213,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1212
1213
|
scheduled_event: {
|
1213
1214
|
status: "canceled";
|
1214
1215
|
name: string;
|
1216
|
+
start_time: string;
|
1215
1217
|
created_at: string;
|
1216
1218
|
updated_at: string;
|
1217
|
-
start_time: string;
|
1218
1219
|
end_time: string;
|
1219
1220
|
uri: string;
|
1220
1221
|
event_type: string;
|
@@ -1235,7 +1236,6 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1235
1236
|
location?: any;
|
1236
1237
|
};
|
1237
1238
|
uri: string;
|
1238
|
-
timezone: string;
|
1239
1239
|
rescheduled: boolean;
|
1240
1240
|
cancel_url: string;
|
1241
1241
|
reschedule_url: string;
|
@@ -1283,6 +1283,7 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1283
1283
|
status: "canceled";
|
1284
1284
|
email: string;
|
1285
1285
|
name: string;
|
1286
|
+
timezone: string;
|
1286
1287
|
created_at: string;
|
1287
1288
|
event: string;
|
1288
1289
|
updated_at: string;
|
@@ -1290,9 +1291,9 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1290
1291
|
scheduled_event: {
|
1291
1292
|
status: "canceled";
|
1292
1293
|
name: string;
|
1294
|
+
start_time: string;
|
1293
1295
|
created_at: string;
|
1294
1296
|
updated_at: string;
|
1295
|
-
start_time: string;
|
1296
1297
|
end_time: string;
|
1297
1298
|
uri: string;
|
1298
1299
|
event_type: string;
|
@@ -1313,7 +1314,6 @@ export declare const canceledSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1313
1314
|
location?: any;
|
1314
1315
|
};
|
1315
1316
|
uri: string;
|
1316
|
-
timezone: string;
|
1317
1317
|
rescheduled: boolean;
|
1318
1318
|
cancel_url: string;
|
1319
1319
|
reschedule_url: string;
|
@@ -1415,9 +1415,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1415
1415
|
}, "strip", z.ZodTypeAny, {
|
1416
1416
|
status: "active" | "canceled";
|
1417
1417
|
name: string;
|
1418
|
+
start_time: string;
|
1418
1419
|
created_at: string;
|
1419
1420
|
updated_at: string;
|
1420
|
-
start_time: string;
|
1421
1421
|
end_time: string;
|
1422
1422
|
uri: string;
|
1423
1423
|
event_type: string;
|
@@ -1439,9 +1439,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1439
1439
|
}, {
|
1440
1440
|
status: "active" | "canceled";
|
1441
1441
|
name: string;
|
1442
|
+
start_time: string;
|
1442
1443
|
created_at: string;
|
1443
1444
|
updated_at: string;
|
1444
|
-
start_time: string;
|
1445
1445
|
end_time: string;
|
1446
1446
|
uri: string;
|
1447
1447
|
event_type: string;
|
@@ -1536,6 +1536,7 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1536
1536
|
status: "active" | "canceled";
|
1537
1537
|
email: string;
|
1538
1538
|
name: string;
|
1539
|
+
timezone: string;
|
1539
1540
|
created_at: string;
|
1540
1541
|
event: string;
|
1541
1542
|
updated_at: string;
|
@@ -1543,9 +1544,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1543
1544
|
scheduled_event: {
|
1544
1545
|
status: "active" | "canceled";
|
1545
1546
|
name: string;
|
1547
|
+
start_time: string;
|
1546
1548
|
created_at: string;
|
1547
1549
|
updated_at: string;
|
1548
|
-
start_time: string;
|
1549
1550
|
end_time: string;
|
1550
1551
|
uri: string;
|
1551
1552
|
event_type: string;
|
@@ -1566,7 +1567,6 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1566
1567
|
location?: any;
|
1567
1568
|
};
|
1568
1569
|
uri: string;
|
1569
|
-
timezone: string;
|
1570
1570
|
rescheduled: boolean;
|
1571
1571
|
cancel_url: string;
|
1572
1572
|
reschedule_url: string;
|
@@ -1603,6 +1603,7 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1603
1603
|
status: "active" | "canceled";
|
1604
1604
|
email: string;
|
1605
1605
|
name: string;
|
1606
|
+
timezone: string;
|
1606
1607
|
created_at: string;
|
1607
1608
|
event: string;
|
1608
1609
|
updated_at: string;
|
@@ -1610,9 +1611,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1610
1611
|
scheduled_event: {
|
1611
1612
|
status: "active" | "canceled";
|
1612
1613
|
name: string;
|
1614
|
+
start_time: string;
|
1613
1615
|
created_at: string;
|
1614
1616
|
updated_at: string;
|
1615
|
-
start_time: string;
|
1616
1617
|
end_time: string;
|
1617
1618
|
uri: string;
|
1618
1619
|
event_type: string;
|
@@ -1633,7 +1634,6 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1633
1634
|
location?: any;
|
1634
1635
|
};
|
1635
1636
|
uri: string;
|
1636
|
-
timezone: string;
|
1637
1637
|
rescheduled: boolean;
|
1638
1638
|
cancel_url: string;
|
1639
1639
|
reschedule_url: string;
|
@@ -1722,9 +1722,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1722
1722
|
}, "strip", z.ZodTypeAny, {
|
1723
1723
|
status: "active" | "canceled";
|
1724
1724
|
name: string;
|
1725
|
+
start_time: string;
|
1725
1726
|
created_at: string;
|
1726
1727
|
updated_at: string;
|
1727
|
-
start_time: string;
|
1728
1728
|
end_time: string;
|
1729
1729
|
uri: string;
|
1730
1730
|
event_type: string;
|
@@ -1746,9 +1746,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1746
1746
|
}, {
|
1747
1747
|
status: "active" | "canceled";
|
1748
1748
|
name: string;
|
1749
|
+
start_time: string;
|
1749
1750
|
created_at: string;
|
1750
1751
|
updated_at: string;
|
1751
|
-
start_time: string;
|
1752
1752
|
end_time: string;
|
1753
1753
|
uri: string;
|
1754
1754
|
event_type: string;
|
@@ -1892,9 +1892,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1892
1892
|
}>, "strip", z.ZodTypeAny, {
|
1893
1893
|
status: "active";
|
1894
1894
|
name: string;
|
1895
|
+
start_time: string;
|
1895
1896
|
created_at: string;
|
1896
1897
|
updated_at: string;
|
1897
|
-
start_time: string;
|
1898
1898
|
end_time: string;
|
1899
1899
|
uri: string;
|
1900
1900
|
event_type: string;
|
@@ -1916,9 +1916,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1916
1916
|
}, {
|
1917
1917
|
status: "active";
|
1918
1918
|
name: string;
|
1919
|
+
start_time: string;
|
1919
1920
|
created_at: string;
|
1920
1921
|
updated_at: string;
|
1921
|
-
start_time: string;
|
1922
1922
|
end_time: string;
|
1923
1923
|
uri: string;
|
1924
1924
|
event_type: string;
|
@@ -1942,6 +1942,7 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1942
1942
|
status: "active";
|
1943
1943
|
email: string;
|
1944
1944
|
name: string;
|
1945
|
+
timezone: string;
|
1945
1946
|
created_at: string;
|
1946
1947
|
event: string;
|
1947
1948
|
updated_at: string;
|
@@ -1949,9 +1950,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1949
1950
|
scheduled_event: {
|
1950
1951
|
status: "active";
|
1951
1952
|
name: string;
|
1953
|
+
start_time: string;
|
1952
1954
|
created_at: string;
|
1953
1955
|
updated_at: string;
|
1954
|
-
start_time: string;
|
1955
1956
|
end_time: string;
|
1956
1957
|
uri: string;
|
1957
1958
|
event_type: string;
|
@@ -1972,7 +1973,6 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1972
1973
|
location?: any;
|
1973
1974
|
};
|
1974
1975
|
uri: string;
|
1975
|
-
timezone: string;
|
1976
1976
|
rescheduled: boolean;
|
1977
1977
|
cancel_url: string;
|
1978
1978
|
reschedule_url: string;
|
@@ -2009,6 +2009,7 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2009
2009
|
status: "active";
|
2010
2010
|
email: string;
|
2011
2011
|
name: string;
|
2012
|
+
timezone: string;
|
2012
2013
|
created_at: string;
|
2013
2014
|
event: string;
|
2014
2015
|
updated_at: string;
|
@@ -2016,9 +2017,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2016
2017
|
scheduled_event: {
|
2017
2018
|
status: "active";
|
2018
2019
|
name: string;
|
2020
|
+
start_time: string;
|
2019
2021
|
created_at: string;
|
2020
2022
|
updated_at: string;
|
2021
|
-
start_time: string;
|
2022
2023
|
end_time: string;
|
2023
2024
|
uri: string;
|
2024
2025
|
event_type: string;
|
@@ -2039,7 +2040,6 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2039
2040
|
location?: any;
|
2040
2041
|
};
|
2041
2042
|
uri: string;
|
2042
|
-
timezone: string;
|
2043
2043
|
rescheduled: boolean;
|
2044
2044
|
cancel_url: string;
|
2045
2045
|
reschedule_url: string;
|
@@ -2078,6 +2078,7 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2078
2078
|
status: "active";
|
2079
2079
|
email: string;
|
2080
2080
|
name: string;
|
2081
|
+
timezone: string;
|
2081
2082
|
created_at: string;
|
2082
2083
|
event: string;
|
2083
2084
|
updated_at: string;
|
@@ -2085,9 +2086,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2085
2086
|
scheduled_event: {
|
2086
2087
|
status: "active";
|
2087
2088
|
name: string;
|
2089
|
+
start_time: string;
|
2088
2090
|
created_at: string;
|
2089
2091
|
updated_at: string;
|
2090
|
-
start_time: string;
|
2091
2092
|
end_time: string;
|
2092
2093
|
uri: string;
|
2093
2094
|
event_type: string;
|
@@ -2108,7 +2109,6 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2108
2109
|
location?: any;
|
2109
2110
|
};
|
2110
2111
|
uri: string;
|
2111
|
-
timezone: string;
|
2112
2112
|
rescheduled: boolean;
|
2113
2113
|
cancel_url: string;
|
2114
2114
|
reschedule_url: string;
|
@@ -2150,6 +2150,7 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2150
2150
|
status: "active";
|
2151
2151
|
email: string;
|
2152
2152
|
name: string;
|
2153
|
+
timezone: string;
|
2153
2154
|
created_at: string;
|
2154
2155
|
event: string;
|
2155
2156
|
updated_at: string;
|
@@ -2157,9 +2158,9 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2157
2158
|
scheduled_event: {
|
2158
2159
|
status: "active";
|
2159
2160
|
name: string;
|
2161
|
+
start_time: string;
|
2160
2162
|
created_at: string;
|
2161
2163
|
updated_at: string;
|
2162
|
-
start_time: string;
|
2163
2164
|
end_time: string;
|
2164
2165
|
uri: string;
|
2165
2166
|
event_type: string;
|
@@ -2180,7 +2181,6 @@ export declare const activeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2180
2181
|
location?: any;
|
2181
2182
|
};
|
2182
2183
|
uri: string;
|
2183
|
-
timezone: string;
|
2184
2184
|
rescheduled: boolean;
|
2185
2185
|
cancel_url: string;
|
2186
2186
|
reschedule_url: string;
|
@@ -62,8 +62,8 @@ export declare const appointmentSchema: z.ZodObject<{
|
|
62
62
|
room?: string | undefined;
|
63
63
|
} | undefined;
|
64
64
|
duration?: number | undefined;
|
65
|
-
description?: string | undefined;
|
66
65
|
metadata?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
66
|
+
description?: string | undefined;
|
67
67
|
service_location?: number | undefined;
|
68
68
|
telehealth_details?: string | undefined;
|
69
69
|
}, {
|
@@ -82,8 +82,8 @@ export declare const appointmentSchema: z.ZodObject<{
|
|
82
82
|
room?: string | undefined;
|
83
83
|
} | undefined;
|
84
84
|
duration?: number | undefined;
|
85
|
-
description?: string | undefined;
|
86
85
|
metadata?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
86
|
+
description?: string | undefined;
|
87
87
|
service_location?: number | undefined;
|
88
88
|
telehealth_details?: string | undefined;
|
89
89
|
}>;
|
@@ -31,11 +31,11 @@ export declare const FieldsSchema: z.ZodObject<{
|
|
31
31
|
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
33
33
|
data: Record<string, any>;
|
34
|
-
flowId: string;
|
35
34
|
phoneNumber: string;
|
35
|
+
flowId: string;
|
36
36
|
}, {
|
37
37
|
data: Record<string, any>;
|
38
|
-
flowId: string;
|
39
38
|
phoneNumber: string;
|
39
|
+
flowId: string;
|
40
40
|
}>;
|
41
41
|
export type ActionFields = z.infer<typeof FieldsSchema>;
|
@@ -69,8 +69,8 @@ export declare const FieldsValidationSchema: z.ZodObject<{
|
|
69
69
|
}, "strip", z.ZodTypeAny, {
|
70
70
|
patientId: string;
|
71
71
|
appointmentTypeId: string;
|
72
|
-
metadata: Record<string, any>;
|
73
72
|
datetime: string;
|
73
|
+
metadata: Record<string, any>;
|
74
74
|
contactTypeId: string;
|
75
75
|
notes?: string | undefined;
|
76
76
|
otherPartyId?: string | undefined;
|
@@ -238,7 +238,7 @@ export declare const actions: {
|
|
238
238
|
required: true;
|
239
239
|
description: string;
|
240
240
|
};
|
241
|
-
}, "firstName" | "lastName" | "email" | "dob" | "
|
241
|
+
}, "firstName" | "lastName" | "email" | "dob" | "phoneNumber" | "gender" | "isoSex" | "primaryProviderId" | "groupName">;
|
242
242
|
sendChatMessage: import("@awell-health/extensions-core").Action<{
|
243
243
|
healthie_patient_id: {
|
244
244
|
id: string;
|
@@ -37,12 +37,12 @@ export declare const FieldsValidationSchema: z.ZodObject<{
|
|
37
37
|
message: z.ZodString;
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
39
39
|
message: string;
|
40
|
-
subject: string;
|
41
40
|
from: string;
|
41
|
+
subject: string;
|
42
42
|
to: string;
|
43
43
|
}, {
|
44
44
|
message: string;
|
45
|
-
subject: string;
|
46
45
|
from: string;
|
46
|
+
subject: string;
|
47
47
|
to: string;
|
48
48
|
}>;
|
@@ -6,13 +6,13 @@ export declare const SendEmailSchema: z.ZodObject<{
|
|
6
6
|
message: z.ZodString;
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
8
8
|
message: string;
|
9
|
-
subject: string;
|
10
9
|
from: string;
|
10
|
+
subject: string;
|
11
11
|
to: string;
|
12
12
|
}, {
|
13
13
|
message: string;
|
14
|
-
subject: string;
|
15
14
|
from: string;
|
15
|
+
subject: string;
|
16
16
|
to: string;
|
17
17
|
}>;
|
18
18
|
export type SendEmailType = z.infer<typeof SendEmailSchema>;
|
package/dist/extensions/index.js
CHANGED
@@ -26,6 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.extensions = exports.markdown = void 0;
|
27
27
|
const athenahealth_1 = require("./athenahealth");
|
28
28
|
const awell_1 = require("./awell");
|
29
|
+
const bland_1 = require("./bland");
|
29
30
|
const calDotCom_1 = require("./calDotCom");
|
30
31
|
const calendly_1 = require("./calendly");
|
31
32
|
const canvasMedical_1 = require("./canvasMedical");
|
@@ -69,6 +70,7 @@ const zendesk_1 = require("./zendesk");
|
|
69
70
|
const json = __importStar(require("./markdown.json"));
|
70
71
|
exports.markdown = json;
|
71
72
|
exports.extensions = [
|
73
|
+
bland_1.bland,
|
72
74
|
athenahealth_1.athenahealth,
|
73
75
|
awell_1.Awell,
|
74
76
|
calDotCom_1.CalDotCom,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../extensions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iDAA6C;AAC7C,mCAA+B;AAC/B,2CAAuC;AACvC,yCAAqC;AACrC,mDAA+C;AAC/C,6CAAyC;AACzC,yCAAqC;AACrC,+CAA2C;AAC3C,6CAAyC;AACzC,yCAAqC;AACrC,+CAA2C;AAC3C,uCAAmC;AACnC,iDAA6C;AAC7C,uDAAkD;AAClD,yCAAqC;AACrC,2CAAuC;AACvC,yCAAqC;AACrC,+CAA0C;AAC1C,uCAAmC;AACnC,iEAA6D;AAC7D,uCAAmC;AACnC,yCAAqC;AACrC,2CAAuC;AACvC,uCAAmC;AACnC,iCAAsC;AACtC,uCAAmC;AACnC,+CAA2C;AAC3C,2CAAuC;AACvC,+CAA2C;AAC3C,iCAA6B;AAC7B,yCAAqC;AACrC,6DAA+C;AAC/C,iCAA6B;AAC7B,qCAAiC;AACjC,qCAAiC;AACjC,yCAAqC;AACrC,yCAAqC;AACrC,2CAAuC;AACvC,qCAAiC;AACjC,uCAAmC;AACnC,yCAAqC;AACrC,uCAAmC;AAEnC,sDAAuC;AAG1B,QAAA,QAAQ,GAAa,IAAI,CAAA;AAEzB,QAAA,UAAU,GAAG;IACxB,2BAAY;IACZ,aAAK;IACL,qBAAS;IACT,mBAAQ;IACR,6BAAa;IACb,uBAAU;IACV,mBAAQ;IACR,yBAAW;IACX,uBAAU;IACV,mBAAQ;IACR,yBAAW;IACX,iBAAO;IACP,2BAAY;IACZ,gCAAc;IACd,mBAAQ;IACR,qBAAS;IACT,mBAAQ;IACR,wBAAU;IACV,iBAAO;IACP,2CAAoB;IACpB,iBAAO;IACP,mBAAQ;IACR,qBAAS;IACT,iBAAO;IACP,oBAAa;IACb,yBAAW;IACX,iBAAO;IACP,qBAAS;IACT,yBAAW;IACX,WAAI;IACJ,mBAAQ;IACR,6BAAQ;IACR,WAAI;IACJ,eAAM;IACN,eAAM;IACN,mBAAQ;IACR,mBAAQ;IACR,qBAAS;IACT,eAAM;IACN,iBAAO;IACP,mBAAQ;IACR,iBAAO;CACR,CAAA"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../extensions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iDAA6C;AAC7C,mCAA+B;AAC/B,mCAA+B;AAC/B,2CAAuC;AACvC,yCAAqC;AACrC,mDAA+C;AAC/C,6CAAyC;AACzC,yCAAqC;AACrC,+CAA2C;AAC3C,6CAAyC;AACzC,yCAAqC;AACrC,+CAA2C;AAC3C,uCAAmC;AACnC,iDAA6C;AAC7C,uDAAkD;AAClD,yCAAqC;AACrC,2CAAuC;AACvC,yCAAqC;AACrC,+CAA0C;AAC1C,uCAAmC;AACnC,iEAA6D;AAC7D,uCAAmC;AACnC,yCAAqC;AACrC,2CAAuC;AACvC,uCAAmC;AACnC,iCAAsC;AACtC,uCAAmC;AACnC,+CAA2C;AAC3C,2CAAuC;AACvC,+CAA2C;AAC3C,iCAA6B;AAC7B,yCAAqC;AACrC,6DAA+C;AAC/C,iCAA6B;AAC7B,qCAAiC;AACjC,qCAAiC;AACjC,yCAAqC;AACrC,yCAAqC;AACrC,2CAAuC;AACvC,qCAAiC;AACjC,uCAAmC;AACnC,yCAAqC;AACrC,uCAAmC;AAEnC,sDAAuC;AAG1B,QAAA,QAAQ,GAAa,IAAI,CAAA;AAEzB,QAAA,UAAU,GAAG;IACxB,aAAK;IACL,2BAAY;IACZ,aAAK;IACL,qBAAS;IACT,mBAAQ;IACR,6BAAa;IACb,uBAAU;IACV,mBAAQ;IACR,yBAAW;IACX,uBAAU;IACV,mBAAQ;IACR,yBAAW;IACX,iBAAO;IACP,2BAAY;IACZ,gCAAc;IACd,mBAAQ;IACR,qBAAS;IACT,mBAAQ;IACR,wBAAU;IACV,iBAAO;IACP,2CAAoB;IACpB,iBAAO;IACP,mBAAQ;IACR,qBAAS;IACT,iBAAO;IACP,oBAAa;IACb,yBAAW;IACX,iBAAO;IACP,qBAAS;IACT,yBAAW;IACX,WAAI;IACJ,mBAAQ;IACR,6BAAQ;IACR,WAAI;IACJ,eAAM;IACN,eAAM;IACN,mBAAQ;IACR,mBAAQ;IACR,qBAAS;IACT,eAAM;IACN,iBAAO;IACP,mBAAQ;IACR,iBAAO;CACR,CAAA"}
|