@keystrokehq/scheduleonce 0.1.4 → 0.1.5
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/dist/actions/book-time-slot.d.cts +13 -1
- package/dist/actions/book-time-slot.d.mts +13 -1
- package/dist/actions/cancel-booking.d.cts +13 -1
- package/dist/actions/cancel-booking.d.mts +13 -1
- package/dist/actions/create-contact.d.cts +13 -1
- package/dist/actions/create-contact.d.mts +13 -1
- package/dist/actions/create-one-time-link-for-booking-calendar.d.cts +13 -1
- package/dist/actions/create-one-time-link-for-booking-calendar.d.mts +13 -1
- package/dist/actions/create-user.d.cts +13 -1
- package/dist/actions/create-user.d.mts +13 -1
- package/dist/actions/delete-contact.d.cts +13 -1
- package/dist/actions/delete-contact.d.mts +13 -1
- package/dist/actions/delete-user.d.cts +13 -1
- package/dist/actions/delete-user.d.mts +13 -1
- package/dist/actions/get-available-time-slots.d.cts +13 -1
- package/dist/actions/get-available-time-slots.d.mts +13 -1
- package/dist/actions/get-single-booking-calendar.d.cts +13 -1
- package/dist/actions/get-single-booking-calendar.d.mts +13 -1
- package/dist/actions/get-single-booking.d.cts +13 -1
- package/dist/actions/get-single-booking.d.mts +13 -1
- package/dist/actions/get-single-contact.d.cts +13 -1
- package/dist/actions/get-single-contact.d.mts +13 -1
- package/dist/actions/get-single-master-page.d.cts +13 -1
- package/dist/actions/get-single-master-page.d.mts +13 -1
- package/dist/actions/get-single-user.d.cts +13 -1
- package/dist/actions/get-single-user.d.mts +13 -1
- package/dist/actions/get-user-scheduling-availability.d.cts +13 -1
- package/dist/actions/get-user-scheduling-availability.d.mts +13 -1
- package/dist/actions/list-all-booking-calendars.d.cts +13 -1
- package/dist/actions/list-all-booking-calendars.d.mts +13 -1
- package/dist/actions/list-all-booking-pages.d.cts +13 -1
- package/dist/actions/list-all-booking-pages.d.mts +13 -1
- package/dist/actions/list-all-bookings.d.cts +13 -1
- package/dist/actions/list-all-bookings.d.mts +13 -1
- package/dist/actions/list-all-contacts.d.cts +13 -1
- package/dist/actions/list-all-contacts.d.mts +13 -1
- package/dist/actions/list-all-event-types.d.cts +13 -1
- package/dist/actions/list-all-event-types.d.mts +13 -1
- package/dist/actions/list-all-master-pages.d.cts +13 -1
- package/dist/actions/list-all-master-pages.d.mts +13 -1
- package/dist/actions/list-all-teams.d.cts +13 -1
- package/dist/actions/list-all-teams.d.mts +13 -1
- package/dist/actions/list-all-users.d.cts +13 -1
- package/dist/actions/list-all-users.d.mts +13 -1
- package/dist/actions/mark-booking-as-no-show.d.cts +13 -1
- package/dist/actions/mark-booking-as-no-show.d.mts +13 -1
- package/dist/actions/test-api-key.d.cts +13 -1
- package/dist/actions/test-api-key.d.cts.map +1 -1
- package/dist/actions/test-api-key.d.mts +13 -1
- package/dist/actions/test-api-key.d.mts.map +1 -1
- package/dist/actions/update-contact.d.cts +13 -1
- package/dist/actions/update-contact.d.mts +13 -1
- package/dist/actions/update-user-scheduling-availability.d.cts +13 -1
- package/dist/actions/update-user-scheduling-availability.d.mts +13 -1
- package/dist/actions/update-user.d.cts +13 -1
- package/dist/actions/update-user.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,19 @@ declare const scheduleonceListAllBookingCalendars: import("@keystrokehq/action")
|
|
|
22
22
|
after?: string | undefined;
|
|
23
23
|
limit?: number | undefined;
|
|
24
24
|
before?: string | undefined;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
generic_api_key: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
generic_api_key: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { scheduleonceListAllBookingCalendars };
|
|
28
40
|
//# sourceMappingURL=list-all-booking-calendars.d.cts.map
|
|
@@ -22,7 +22,19 @@ declare const scheduleonceListAllBookingCalendars: import("@keystrokehq/action")
|
|
|
22
22
|
after?: string | undefined;
|
|
23
23
|
limit?: number | undefined;
|
|
24
24
|
before?: string | undefined;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
generic_api_key: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
generic_api_key: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { scheduleonceListAllBookingCalendars };
|
|
28
40
|
//# sourceMappingURL=list-all-booking-calendars.d.mts.map
|
|
@@ -21,7 +21,19 @@ declare const scheduleonceListAllBookingPages: import("@keystrokehq/action").Wor
|
|
|
21
21
|
after?: string | undefined;
|
|
22
22
|
limit?: number | undefined;
|
|
23
23
|
before?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { scheduleonceListAllBookingPages };
|
|
27
39
|
//# sourceMappingURL=list-all-booking-pages.d.cts.map
|
|
@@ -21,7 +21,19 @@ declare const scheduleonceListAllBookingPages: import("@keystrokehq/action").Wor
|
|
|
21
21
|
after?: string | undefined;
|
|
22
22
|
limit?: number | undefined;
|
|
23
23
|
before?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { scheduleonceListAllBookingPages };
|
|
27
39
|
//# sourceMappingURL=list-all-booking-pages.d.mts.map
|
|
@@ -60,7 +60,19 @@ declare const scheduleonceListAllBookings: import("@keystrokehq/action").Workflo
|
|
|
60
60
|
"starting_time.gt"?: string | undefined;
|
|
61
61
|
"starting_time.lt"?: string | undefined;
|
|
62
62
|
"last_updated_time.gt"?: string | undefined;
|
|
63
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
63
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
64
|
+
connectionId: z.ZodString;
|
|
65
|
+
entityId: z.ZodString;
|
|
66
|
+
instanceId: z.ZodString;
|
|
67
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
68
|
+
generic_api_key: z.ZodString;
|
|
69
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
70
|
+
connectionId: z.ZodString;
|
|
71
|
+
entityId: z.ZodString;
|
|
72
|
+
instanceId: z.ZodString;
|
|
73
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
74
|
+
generic_api_key: z.ZodString;
|
|
75
|
+
}, z.core.$strip>>]>;
|
|
64
76
|
//#endregion
|
|
65
77
|
export { scheduleonceListAllBookings };
|
|
66
78
|
//# sourceMappingURL=list-all-bookings.d.cts.map
|
|
@@ -60,7 +60,19 @@ declare const scheduleonceListAllBookings: import("@keystrokehq/action").Workflo
|
|
|
60
60
|
"starting_time.gt"?: string | undefined;
|
|
61
61
|
"starting_time.lt"?: string | undefined;
|
|
62
62
|
"last_updated_time.gt"?: string | undefined;
|
|
63
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
63
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
64
|
+
connectionId: z.ZodString;
|
|
65
|
+
entityId: z.ZodString;
|
|
66
|
+
instanceId: z.ZodString;
|
|
67
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
68
|
+
generic_api_key: z.ZodString;
|
|
69
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
70
|
+
connectionId: z.ZodString;
|
|
71
|
+
entityId: z.ZodString;
|
|
72
|
+
instanceId: z.ZodString;
|
|
73
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
74
|
+
generic_api_key: z.ZodString;
|
|
75
|
+
}, z.core.$strip>>]>;
|
|
64
76
|
//#endregion
|
|
65
77
|
export { scheduleonceListAllBookings };
|
|
66
78
|
//# sourceMappingURL=list-all-bookings.d.mts.map
|
|
@@ -52,7 +52,19 @@ declare const scheduleonceListAllContacts: import("@keystrokehq/action").Workflo
|
|
|
52
52
|
"creation_time.lt"?: string | undefined;
|
|
53
53
|
"last_updated_time.gt"?: string | undefined;
|
|
54
54
|
"last_updated_time.lt"?: string | undefined;
|
|
55
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
55
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
56
|
+
connectionId: z.ZodString;
|
|
57
|
+
entityId: z.ZodString;
|
|
58
|
+
instanceId: z.ZodString;
|
|
59
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
60
|
+
generic_api_key: z.ZodString;
|
|
61
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
62
|
+
connectionId: z.ZodString;
|
|
63
|
+
entityId: z.ZodString;
|
|
64
|
+
instanceId: z.ZodString;
|
|
65
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
66
|
+
generic_api_key: z.ZodString;
|
|
67
|
+
}, z.core.$strip>>]>;
|
|
56
68
|
//#endregion
|
|
57
69
|
export { scheduleonceListAllContacts };
|
|
58
70
|
//# sourceMappingURL=list-all-contacts.d.cts.map
|
|
@@ -52,7 +52,19 @@ declare const scheduleonceListAllContacts: import("@keystrokehq/action").Workflo
|
|
|
52
52
|
"creation_time.lt"?: string | undefined;
|
|
53
53
|
"last_updated_time.gt"?: string | undefined;
|
|
54
54
|
"last_updated_time.lt"?: string | undefined;
|
|
55
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
55
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
56
|
+
connectionId: z.ZodString;
|
|
57
|
+
entityId: z.ZodString;
|
|
58
|
+
instanceId: z.ZodString;
|
|
59
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
60
|
+
generic_api_key: z.ZodString;
|
|
61
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
62
|
+
connectionId: z.ZodString;
|
|
63
|
+
entityId: z.ZodString;
|
|
64
|
+
instanceId: z.ZodString;
|
|
65
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
66
|
+
generic_api_key: z.ZodString;
|
|
67
|
+
}, z.core.$strip>>]>;
|
|
56
68
|
//#endregion
|
|
57
69
|
export { scheduleonceListAllContacts };
|
|
58
70
|
//# sourceMappingURL=list-all-contacts.d.mts.map
|
|
@@ -18,7 +18,19 @@ declare const scheduleonceListAllEventTypes: import("@keystrokehq/action").Workf
|
|
|
18
18
|
after?: string | undefined;
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
before?: string | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { scheduleonceListAllEventTypes };
|
|
24
36
|
//# sourceMappingURL=list-all-event-types.d.cts.map
|
|
@@ -18,7 +18,19 @@ declare const scheduleonceListAllEventTypes: import("@keystrokehq/action").Workf
|
|
|
18
18
|
after?: string | undefined;
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
before?: string | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { scheduleonceListAllEventTypes };
|
|
24
36
|
//# sourceMappingURL=list-all-event-types.d.mts.map
|
|
@@ -20,7 +20,19 @@ declare const scheduleonceListAllMasterPages: import("@keystrokehq/action").Work
|
|
|
20
20
|
after?: string | undefined;
|
|
21
21
|
limit?: number | undefined;
|
|
22
22
|
before?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
24
36
|
//#endregion
|
|
25
37
|
export { scheduleonceListAllMasterPages };
|
|
26
38
|
//# sourceMappingURL=list-all-master-pages.d.cts.map
|
|
@@ -20,7 +20,19 @@ declare const scheduleonceListAllMasterPages: import("@keystrokehq/action").Work
|
|
|
20
20
|
after?: string | undefined;
|
|
21
21
|
limit?: number | undefined;
|
|
22
22
|
before?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
24
36
|
//#endregion
|
|
25
37
|
export { scheduleonceListAllMasterPages };
|
|
26
38
|
//# sourceMappingURL=list-all-master-pages.d.mts.map
|
|
@@ -21,7 +21,19 @@ declare const scheduleonceListAllTeams: import("@keystrokehq/action").WorkflowAc
|
|
|
21
21
|
after?: string | undefined;
|
|
22
22
|
limit?: number | undefined;
|
|
23
23
|
before?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { scheduleonceListAllTeams };
|
|
27
39
|
//# sourceMappingURL=list-all-teams.d.cts.map
|
|
@@ -21,7 +21,19 @@ declare const scheduleonceListAllTeams: import("@keystrokehq/action").WorkflowAc
|
|
|
21
21
|
after?: string | undefined;
|
|
22
22
|
limit?: number | undefined;
|
|
23
23
|
before?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { scheduleonceListAllTeams };
|
|
27
39
|
//# sourceMappingURL=list-all-teams.d.mts.map
|
|
@@ -23,7 +23,19 @@ declare const scheduleonceListAllUsers: import("@keystrokehq/action").WorkflowAc
|
|
|
23
23
|
after?: string | undefined;
|
|
24
24
|
limit?: number | undefined;
|
|
25
25
|
before?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { scheduleonceListAllUsers };
|
|
29
41
|
//# sourceMappingURL=list-all-users.d.cts.map
|
|
@@ -23,7 +23,19 @@ declare const scheduleonceListAllUsers: import("@keystrokehq/action").WorkflowAc
|
|
|
23
23
|
after?: string | undefined;
|
|
24
24
|
limit?: number | undefined;
|
|
25
25
|
before?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { scheduleonceListAllUsers };
|
|
29
41
|
//# sourceMappingURL=list-all-users.d.mts.map
|
|
@@ -56,7 +56,19 @@ declare const ScheduleonceMarkBookingAsNoShowOutput: z.ZodObject<{
|
|
|
56
56
|
}, z.core.$loose>;
|
|
57
57
|
declare const scheduleonceMarkBookingAsNoShow: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
58
58
|
id: string;
|
|
59
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
59
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
66
|
+
connectionId: z.ZodString;
|
|
67
|
+
entityId: z.ZodString;
|
|
68
|
+
instanceId: z.ZodString;
|
|
69
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
70
|
+
generic_api_key: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>;
|
|
60
72
|
//#endregion
|
|
61
73
|
export { scheduleonceMarkBookingAsNoShow };
|
|
62
74
|
//# sourceMappingURL=mark-booking-as-no-show.d.cts.map
|
|
@@ -56,7 +56,19 @@ declare const ScheduleonceMarkBookingAsNoShowOutput: z.ZodObject<{
|
|
|
56
56
|
}, z.core.$loose>;
|
|
57
57
|
declare const scheduleonceMarkBookingAsNoShow: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
58
58
|
id: string;
|
|
59
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
59
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
66
|
+
connectionId: z.ZodString;
|
|
67
|
+
entityId: z.ZodString;
|
|
68
|
+
instanceId: z.ZodString;
|
|
69
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
70
|
+
generic_api_key: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>;
|
|
60
72
|
//#endregion
|
|
61
73
|
export { scheduleonceMarkBookingAsNoShow };
|
|
62
74
|
//# sourceMappingURL=mark-booking-as-no-show.d.mts.map
|
|
@@ -6,7 +6,19 @@ declare const ScheduleonceTestApiKeyOutput: z.ZodObject<{
|
|
|
6
6
|
uid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
7
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
8
|
}, z.core.$loose>;
|
|
9
|
-
declare const scheduleonceTestApiKey: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
9
|
+
declare const scheduleonceTestApiKey: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
10
|
+
connectionId: z.ZodString;
|
|
11
|
+
entityId: z.ZodString;
|
|
12
|
+
instanceId: z.ZodString;
|
|
13
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14
|
+
generic_api_key: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>;
|
|
10
22
|
//#endregion
|
|
11
23
|
export { scheduleonceTestApiKey };
|
|
12
24
|
//# sourceMappingURL=test-api-key.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-api-key.d.cts","names":[],"sources":["../../src/actions/test-api-key.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"test-api-key.d.cts","names":[],"sources":["../../src/actions/test-api-key.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,iBAAA,CAAA,CAAA,SAAA"}
|
|
@@ -6,7 +6,19 @@ declare const ScheduleonceTestApiKeyOutput: z.ZodObject<{
|
|
|
6
6
|
uid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
7
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
8
|
}, z.core.$loose>;
|
|
9
|
-
declare const scheduleonceTestApiKey: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
9
|
+
declare const scheduleonceTestApiKey: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
10
|
+
connectionId: z.ZodString;
|
|
11
|
+
entityId: z.ZodString;
|
|
12
|
+
instanceId: z.ZodString;
|
|
13
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14
|
+
generic_api_key: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>;
|
|
10
22
|
//#endregion
|
|
11
23
|
export { scheduleonceTestApiKey };
|
|
12
24
|
//# sourceMappingURL=test-api-key.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-api-key.d.mts","names":[],"sources":["../../src/actions/test-api-key.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"test-api-key.d.mts","names":[],"sources":["../../src/actions/test-api-key.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,iBAAA,CAAA,CAAA,SAAA"}
|
|
@@ -26,7 +26,19 @@ declare const scheduleonceUpdateContact: import("@keystrokehq/action").WorkflowA
|
|
|
26
26
|
company?: string | undefined;
|
|
27
27
|
last_name?: string | undefined;
|
|
28
28
|
first_name?: string | undefined;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
generic_api_key: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { scheduleonceUpdateContact };
|
|
32
44
|
//# sourceMappingURL=update-contact.d.cts.map
|
|
@@ -26,7 +26,19 @@ declare const scheduleonceUpdateContact: import("@keystrokehq/action").WorkflowA
|
|
|
26
26
|
company?: string | undefined;
|
|
27
27
|
last_name?: string | undefined;
|
|
28
28
|
first_name?: string | undefined;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
generic_api_key: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { scheduleonceUpdateContact };
|
|
32
44
|
//# sourceMappingURL=update-contact.d.mts.map
|
|
@@ -94,7 +94,19 @@ declare const scheduleonceUpdateUserSchedulingAvailability: import("@keystrokehq
|
|
|
94
94
|
}[] | undefined;
|
|
95
95
|
}[] | undefined;
|
|
96
96
|
}[] | undefined;
|
|
97
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
97
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
98
|
+
connectionId: z.ZodString;
|
|
99
|
+
entityId: z.ZodString;
|
|
100
|
+
instanceId: z.ZodString;
|
|
101
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
102
|
+
generic_api_key: z.ZodString;
|
|
103
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
104
|
+
connectionId: z.ZodString;
|
|
105
|
+
entityId: z.ZodString;
|
|
106
|
+
instanceId: z.ZodString;
|
|
107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
108
|
+
generic_api_key: z.ZodString;
|
|
109
|
+
}, z.core.$strip>>]>;
|
|
98
110
|
//#endregion
|
|
99
111
|
export { scheduleonceUpdateUserSchedulingAvailability };
|
|
100
112
|
//# sourceMappingURL=update-user-scheduling-availability.d.cts.map
|
|
@@ -94,7 +94,19 @@ declare const scheduleonceUpdateUserSchedulingAvailability: import("@keystrokehq
|
|
|
94
94
|
}[] | undefined;
|
|
95
95
|
}[] | undefined;
|
|
96
96
|
}[] | undefined;
|
|
97
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
97
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
98
|
+
connectionId: z.ZodString;
|
|
99
|
+
entityId: z.ZodString;
|
|
100
|
+
instanceId: z.ZodString;
|
|
101
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
102
|
+
generic_api_key: z.ZodString;
|
|
103
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
104
|
+
connectionId: z.ZodString;
|
|
105
|
+
entityId: z.ZodString;
|
|
106
|
+
instanceId: z.ZodString;
|
|
107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
108
|
+
generic_api_key: z.ZodString;
|
|
109
|
+
}, z.core.$strip>>]>;
|
|
98
110
|
//#endregion
|
|
99
111
|
export { scheduleonceUpdateUserSchedulingAvailability };
|
|
100
112
|
//# sourceMappingURL=update-user-scheduling-availability.d.mts.map
|
|
@@ -27,7 +27,19 @@ declare const scheduleonceUpdateUser: import("@keystrokehq/action").WorkflowActi
|
|
|
27
27
|
last_name?: string | undefined;
|
|
28
28
|
role_name?: string | undefined;
|
|
29
29
|
first_name?: string | undefined;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
31
43
|
//#endregion
|
|
32
44
|
export { scheduleonceUpdateUser };
|
|
33
45
|
//# sourceMappingURL=update-user.d.cts.map
|
|
@@ -27,7 +27,19 @@ declare const scheduleonceUpdateUser: import("@keystrokehq/action").WorkflowActi
|
|
|
27
27
|
last_name?: string | undefined;
|
|
28
28
|
role_name?: string | undefined;
|
|
29
29
|
first_name?: string | undefined;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
31
43
|
//#endregion
|
|
32
44
|
export { scheduleonceUpdateUser };
|
|
33
45
|
//# sourceMappingURL=update-user.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const scheduleonce = (0,
|
|
4
|
+
const scheduleonce = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "scheduleonce",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.scheduleonce = scheduleonce;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const scheduleonce = defineApp({\n slug: \"scheduleonce\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const scheduleonce = defineApp({\n slug: \"scheduleonce\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,gBAAA,GAAA,2BAAA,UAAA,CAAyB;CACpC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiBA,IAAAA,EAAE,OAAO,EAC5B;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const scheduleonce: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const scheduleonce: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"scheduleonce", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { scheduleonce };
|
|
5
13
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,YAAA,6BAAY,GAAA,+BAAA,UAAA,iBAAA,CAAA,CAAA,SAAA"}
|