@hostwebhook/node-types 1.84.0 → 1.85.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.
|
@@ -39,16 +39,21 @@ export declare function isCalendlyOperation(value: unknown): value is CalendlyOp
|
|
|
39
39
|
*/
|
|
40
40
|
export declare const CALENDLY_ITERABLE_OPERATIONS: ReadonlyArray<CalendlyOperation>;
|
|
41
41
|
/**
|
|
42
|
-
* Tipos de parámetro. Los seis primeros son los de Apify. Los
|
|
42
|
+
* Tipos de parámetro. Los seis primeros son los de Apify. Los tres nuevos:
|
|
43
43
|
*
|
|
44
|
-
* - `datetime`: una fecha con hora
|
|
45
|
-
*
|
|
46
|
-
*
|
|
44
|
+
* - `datetime`: una fecha con hora de PARED (`2026-09-20T10:00:00`, sin
|
|
45
|
+
* desfase), que el nodo sitúa en la zona del parámetro `timezone` de esa
|
|
46
|
+
* operación —o en la del workspace si no se eligió—, igual que hace el
|
|
47
|
+
* nodo de Google Calendar. Con desfase (`Z`, `+02:00`) manda el desfase.
|
|
48
|
+
* El dashboard la pinta con el mismo calendario que Calendar y admite
|
|
49
|
+
* plantilla (`{{payload.from}}`).
|
|
50
|
+
* - `timezone`: la zona en la que se leen las fechas de pared de la
|
|
51
|
+
* operación. Sin elegir, la del workspace.
|
|
47
52
|
* - `eventType`: un desplegable que lista los tipos de evento de la
|
|
48
53
|
* credencial (`GET /calendly-actions/event-types`); el valor es la URI del
|
|
49
54
|
* tipo. Admite plantilla para cuando viene del payload.
|
|
50
55
|
*/
|
|
51
|
-
export type CalendlyParamType = "template" | "textarea" | "json" | "select" | "number" | "booleanSelect" | "datetime" | "eventType";
|
|
56
|
+
export type CalendlyParamType = "template" | "textarea" | "json" | "select" | "number" | "booleanSelect" | "datetime" | "timezone" | "eventType";
|
|
52
57
|
export interface CalendlyParamSpec {
|
|
53
58
|
name: string;
|
|
54
59
|
label: string;
|
|
@@ -88,6 +88,16 @@ const eventType = () => ({
|
|
|
88
88
|
required: true,
|
|
89
89
|
description: "One of the event types on the connected account (e.g. “30 min intro call”).",
|
|
90
90
|
});
|
|
91
|
+
/* La zona en la que se leen las fechas de pared de la operación. Sin elegir,
|
|
92
|
+
la del workspace: el dashboard lo dice debajo del selector y el nodo la lee
|
|
93
|
+
al ejecutar, como Calendar. */
|
|
94
|
+
const timezone = () => ({
|
|
95
|
+
name: "timezone",
|
|
96
|
+
label: "Time zone",
|
|
97
|
+
type: "timezone",
|
|
98
|
+
advanced: true,
|
|
99
|
+
description: "The zone the dates above are read in when they carry no offset. Empty = the workspace's time zone.",
|
|
100
|
+
});
|
|
91
101
|
const pageLimit = (max, fallback) => ({
|
|
92
102
|
name: "limit",
|
|
93
103
|
label: "Max results",
|
|
@@ -131,6 +141,7 @@ exports.CALENDLY_OPERATION_SPECS = {
|
|
|
131
141
|
placeholder: "{{payload.to}}",
|
|
132
142
|
description: "Only events that start before this moment. Empty = no upper bound.",
|
|
133
143
|
},
|
|
144
|
+
timezone(),
|
|
134
145
|
{
|
|
135
146
|
name: "inviteeEmail",
|
|
136
147
|
label: "Invitee email",
|
|
@@ -278,6 +289,7 @@ exports.CALENDLY_OPERATION_SPECS = {
|
|
|
278
289
|
placeholder: "{{payload.to}}",
|
|
279
290
|
description: "End of the window — at most 7 days after From. A longer window is cut to 7 days.",
|
|
280
291
|
},
|
|
292
|
+
timezone(),
|
|
281
293
|
],
|
|
282
294
|
},
|
|
283
295
|
createSchedulingLink: {
|
|
@@ -39,16 +39,21 @@ export declare function isCalendlyOperation(value: unknown): value is CalendlyOp
|
|
|
39
39
|
*/
|
|
40
40
|
export declare const CALENDLY_ITERABLE_OPERATIONS: ReadonlyArray<CalendlyOperation>;
|
|
41
41
|
/**
|
|
42
|
-
* Tipos de parámetro. Los seis primeros son los de Apify. Los
|
|
42
|
+
* Tipos de parámetro. Los seis primeros son los de Apify. Los tres nuevos:
|
|
43
43
|
*
|
|
44
|
-
* - `datetime`: una fecha con hora
|
|
45
|
-
*
|
|
46
|
-
*
|
|
44
|
+
* - `datetime`: una fecha con hora de PARED (`2026-09-20T10:00:00`, sin
|
|
45
|
+
* desfase), que el nodo sitúa en la zona del parámetro `timezone` de esa
|
|
46
|
+
* operación —o en la del workspace si no se eligió—, igual que hace el
|
|
47
|
+
* nodo de Google Calendar. Con desfase (`Z`, `+02:00`) manda el desfase.
|
|
48
|
+
* El dashboard la pinta con el mismo calendario que Calendar y admite
|
|
49
|
+
* plantilla (`{{payload.from}}`).
|
|
50
|
+
* - `timezone`: la zona en la que se leen las fechas de pared de la
|
|
51
|
+
* operación. Sin elegir, la del workspace.
|
|
47
52
|
* - `eventType`: un desplegable que lista los tipos de evento de la
|
|
48
53
|
* credencial (`GET /calendly-actions/event-types`); el valor es la URI del
|
|
49
54
|
* tipo. Admite plantilla para cuando viene del payload.
|
|
50
55
|
*/
|
|
51
|
-
export type CalendlyParamType = "template" | "textarea" | "json" | "select" | "number" | "booleanSelect" | "datetime" | "eventType";
|
|
56
|
+
export type CalendlyParamType = "template" | "textarea" | "json" | "select" | "number" | "booleanSelect" | "datetime" | "timezone" | "eventType";
|
|
52
57
|
export interface CalendlyParamSpec {
|
|
53
58
|
name: string;
|
|
54
59
|
label: string;
|
|
@@ -84,6 +84,16 @@ const eventType = () => ({
|
|
|
84
84
|
required: true,
|
|
85
85
|
description: "One of the event types on the connected account (e.g. “30 min intro call”).",
|
|
86
86
|
});
|
|
87
|
+
/* La zona en la que se leen las fechas de pared de la operación. Sin elegir,
|
|
88
|
+
la del workspace: el dashboard lo dice debajo del selector y el nodo la lee
|
|
89
|
+
al ejecutar, como Calendar. */
|
|
90
|
+
const timezone = () => ({
|
|
91
|
+
name: "timezone",
|
|
92
|
+
label: "Time zone",
|
|
93
|
+
type: "timezone",
|
|
94
|
+
advanced: true,
|
|
95
|
+
description: "The zone the dates above are read in when they carry no offset. Empty = the workspace's time zone.",
|
|
96
|
+
});
|
|
87
97
|
const pageLimit = (max, fallback) => ({
|
|
88
98
|
name: "limit",
|
|
89
99
|
label: "Max results",
|
|
@@ -127,6 +137,7 @@ export const CALENDLY_OPERATION_SPECS = {
|
|
|
127
137
|
placeholder: "{{payload.to}}",
|
|
128
138
|
description: "Only events that start before this moment. Empty = no upper bound.",
|
|
129
139
|
},
|
|
140
|
+
timezone(),
|
|
130
141
|
{
|
|
131
142
|
name: "inviteeEmail",
|
|
132
143
|
label: "Invitee email",
|
|
@@ -274,6 +285,7 @@ export const CALENDLY_OPERATION_SPECS = {
|
|
|
274
285
|
placeholder: "{{payload.to}}",
|
|
275
286
|
description: "End of the window — at most 7 days after From. A longer window is cut to 7 days.",
|
|
276
287
|
},
|
|
288
|
+
timezone(),
|
|
277
289
|
],
|
|
278
290
|
},
|
|
279
291
|
createSchedulingLink: {
|
package/package.json
CHANGED