@coopenomics/notifications 2026.3.24-7 → 2026.4.27-2
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/CLAUDE.md +10 -0
- package/dist/index.cjs +265 -176
- package/dist/index.d.cts +360 -249
- package/dist/index.d.mts +360 -249
- package/dist/index.d.ts +360 -249
- package/dist/index.mjs +265 -176
- package/package.json +2 -2
- package/src/workflows/chatcoop-calendar-event-created/index.ts +52 -0
- package/src/workflows/chatcoop-calendar-event-updated/index.ts +52 -0
- package/src/workflows/index.ts +6 -0
- package/src/workflows/meet-initial/index.ts +3 -2
- package/src/workflows/meet-reminder-start/index.ts +3 -2
- package/src/workflows/meet-started/index.ts +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -77,21 +77,21 @@ interface WorkflowTriggerData<T extends BaseWorkflowPayload> {
|
|
|
77
77
|
type WorkflowStepType = WorkflowStep['type'];
|
|
78
78
|
type ChannelType = keyof ChannelsConfig;
|
|
79
79
|
|
|
80
|
-
type index$
|
|
81
|
-
type index$
|
|
82
|
-
type index$
|
|
83
|
-
type index$
|
|
84
|
-
type index$
|
|
85
|
-
type index$
|
|
86
|
-
type index$
|
|
87
|
-
type index$
|
|
88
|
-
type index$
|
|
89
|
-
type index$
|
|
90
|
-
type index$
|
|
91
|
-
type index$
|
|
92
|
-
type index$
|
|
93
|
-
declare namespace index$
|
|
94
|
-
export type { index$
|
|
80
|
+
type index$o_BaseWorkflowPayload = BaseWorkflowPayload;
|
|
81
|
+
type index$o_ChannelConfig = ChannelConfig;
|
|
82
|
+
type index$o_ChannelType = ChannelType;
|
|
83
|
+
type index$o_ChannelsConfig = ChannelsConfig;
|
|
84
|
+
type index$o_NovuOrigin = NovuOrigin;
|
|
85
|
+
type index$o_NovuWorkflowData = NovuWorkflowData;
|
|
86
|
+
type index$o_PayloadSchema = PayloadSchema;
|
|
87
|
+
type index$o_PreferencesConfig = PreferencesConfig;
|
|
88
|
+
type index$o_StepControlValues = StepControlValues;
|
|
89
|
+
type index$o_WorkflowDefinition<T extends BaseWorkflowPayload = BaseWorkflowPayload> = WorkflowDefinition<T>;
|
|
90
|
+
type index$o_WorkflowStep = WorkflowStep;
|
|
91
|
+
type index$o_WorkflowStepType = WorkflowStepType;
|
|
92
|
+
type index$o_WorkflowTriggerData<T extends BaseWorkflowPayload> = WorkflowTriggerData<T>;
|
|
93
|
+
declare namespace index$o {
|
|
94
|
+
export type { index$o_BaseWorkflowPayload as BaseWorkflowPayload, index$o_ChannelConfig as ChannelConfig, index$o_ChannelType as ChannelType, index$o_ChannelsConfig as ChannelsConfig, index$o_NovuOrigin as NovuOrigin, index$o_NovuWorkflowData as NovuWorkflowData, index$o_PayloadSchema as PayloadSchema, index$o_PreferencesConfig as PreferencesConfig, index$o_StepControlValues as StepControlValues, index$o_WorkflowDefinition as WorkflowDefinition, index$o_WorkflowStep as WorkflowStep, index$o_WorkflowStepType as WorkflowStepType, index$o_WorkflowTriggerData as WorkflowTriggerData };
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
declare const createChannelConfig: (enabled: boolean, readOnly?: boolean) => ChannelConfig;
|
|
@@ -159,17 +159,17 @@ declare const welcomePayloadSchema: z.ZodObject<{
|
|
|
159
159
|
}, {
|
|
160
160
|
userName: string;
|
|
161
161
|
}>;
|
|
162
|
-
type IPayload$
|
|
163
|
-
interface IWorkflow$
|
|
162
|
+
type IPayload$m = z.infer<typeof welcomePayloadSchema>;
|
|
163
|
+
interface IWorkflow$m extends BaseWorkflowPayload, IPayload$m {
|
|
164
164
|
}
|
|
165
|
-
declare const name$
|
|
166
|
-
declare const id$
|
|
167
|
-
declare const workflow$
|
|
165
|
+
declare const name$m = "\u0414\u043E\u0431\u0440\u043E \u043F\u043E\u0436\u0430\u043B\u043E\u0432\u0430\u0442\u044C";
|
|
166
|
+
declare const id$m: string;
|
|
167
|
+
declare const workflow$m: WorkflowDefinition<IWorkflow$m>;
|
|
168
168
|
|
|
169
|
-
declare const index$
|
|
170
|
-
declare namespace index$
|
|
171
|
-
export { id$
|
|
172
|
-
export type { IPayload$
|
|
169
|
+
declare const index$n_welcomePayloadSchema: typeof welcomePayloadSchema;
|
|
170
|
+
declare namespace index$n {
|
|
171
|
+
export { id$m as id, name$m as name, index$n_welcomePayloadSchema as welcomePayloadSchema, workflow$m as workflow };
|
|
172
|
+
export type { IPayload$m as IPayload, IWorkflow$m as IWorkflow };
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
declare const newAgendaItemPayloadSchema: z.ZodObject<{
|
|
@@ -181,33 +181,33 @@ declare const newAgendaItemPayloadSchema: z.ZodObject<{
|
|
|
181
181
|
decision_id: z.ZodString;
|
|
182
182
|
agendaUrl: z.ZodOptional<z.ZodString>;
|
|
183
183
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
authorName: string;
|
|
185
184
|
coopname: string;
|
|
186
185
|
coopShortName: string;
|
|
187
186
|
itemTitle: string;
|
|
188
187
|
itemDescription: string;
|
|
188
|
+
authorName: string;
|
|
189
189
|
decision_id: string;
|
|
190
190
|
agendaUrl?: string | undefined;
|
|
191
191
|
}, {
|
|
192
|
-
authorName: string;
|
|
193
192
|
coopname: string;
|
|
194
193
|
coopShortName: string;
|
|
195
194
|
itemTitle: string;
|
|
196
195
|
itemDescription: string;
|
|
196
|
+
authorName: string;
|
|
197
197
|
decision_id: string;
|
|
198
198
|
agendaUrl?: string | undefined;
|
|
199
199
|
}>;
|
|
200
|
-
type IPayload$
|
|
201
|
-
interface IWorkflow$
|
|
200
|
+
type IPayload$l = z.infer<typeof newAgendaItemPayloadSchema>;
|
|
201
|
+
interface IWorkflow$l extends BaseWorkflowPayload, IPayload$l {
|
|
202
202
|
}
|
|
203
|
-
declare const name$
|
|
204
|
-
declare const id$
|
|
205
|
-
declare const workflow$
|
|
203
|
+
declare const name$l = "\u041D\u043E\u0432\u044B\u0439 \u0432\u043E\u043F\u0440\u043E\u0441 \u043D\u0430 \u043F\u043E\u0432\u0435\u0441\u0442\u043A\u0435 \u0441\u043E\u0432\u0435\u0442\u0430";
|
|
204
|
+
declare const id$l: string;
|
|
205
|
+
declare const workflow$l: WorkflowDefinition<IWorkflow$l>;
|
|
206
206
|
|
|
207
|
-
declare const index$
|
|
208
|
-
declare namespace index$
|
|
209
|
-
export { id$
|
|
210
|
-
export type { IPayload$
|
|
207
|
+
declare const index$m_newAgendaItemPayloadSchema: typeof newAgendaItemPayloadSchema;
|
|
208
|
+
declare namespace index$m {
|
|
209
|
+
export { id$l as id, name$l as name, index$m_newAgendaItemPayloadSchema as newAgendaItemPayloadSchema, workflow$l as workflow };
|
|
210
|
+
export type { IPayload$l as IPayload, IWorkflow$l as IWorkflow };
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
declare const incomingTransferPayloadSchema: z.ZodObject<{
|
|
@@ -217,17 +217,17 @@ declare const incomingTransferPayloadSchema: z.ZodObject<{
|
|
|
217
217
|
}, {
|
|
218
218
|
quantity: string;
|
|
219
219
|
}>;
|
|
220
|
-
type IPayload$
|
|
221
|
-
interface IWorkflow$
|
|
220
|
+
type IPayload$k = z.infer<typeof incomingTransferPayloadSchema>;
|
|
221
|
+
interface IWorkflow$k extends BaseWorkflowPayload, IPayload$k {
|
|
222
222
|
}
|
|
223
|
-
declare const name$
|
|
224
|
-
declare const id$
|
|
225
|
-
declare const workflow$
|
|
223
|
+
declare const name$k = "\u0412\u0445\u043E\u0434\u044F\u0449\u0438\u0439 \u043F\u0435\u0440\u0435\u0432\u043E\u0434";
|
|
224
|
+
declare const id$k: string;
|
|
225
|
+
declare const workflow$k: WorkflowDefinition<IWorkflow$k>;
|
|
226
226
|
|
|
227
|
-
declare const index$
|
|
228
|
-
declare namespace index$
|
|
229
|
-
export { id$
|
|
230
|
-
export type { IPayload$
|
|
227
|
+
declare const index$l_incomingTransferPayloadSchema: typeof incomingTransferPayloadSchema;
|
|
228
|
+
declare namespace index$l {
|
|
229
|
+
export { id$k as id, index$l_incomingTransferPayloadSchema as incomingTransferPayloadSchema, name$k as name, workflow$k as workflow };
|
|
230
|
+
export type { IPayload$k as IPayload, IWorkflow$k as IWorkflow };
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
declare const approvalRequestPayloadSchema: z.ZodObject<{
|
|
@@ -239,33 +239,33 @@ declare const approvalRequestPayloadSchema: z.ZodObject<{
|
|
|
239
239
|
approval_hash: z.ZodString;
|
|
240
240
|
approvalUrl: z.ZodOptional<z.ZodString>;
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
|
+
coopname: string;
|
|
243
|
+
authorName: string;
|
|
242
244
|
chairmanName: string;
|
|
243
245
|
requestTitle: string;
|
|
244
246
|
requestDescription: string;
|
|
245
|
-
authorName: string;
|
|
246
|
-
coopname: string;
|
|
247
247
|
approval_hash: string;
|
|
248
248
|
approvalUrl?: string | undefined;
|
|
249
249
|
}, {
|
|
250
|
+
coopname: string;
|
|
251
|
+
authorName: string;
|
|
250
252
|
chairmanName: string;
|
|
251
253
|
requestTitle: string;
|
|
252
254
|
requestDescription: string;
|
|
253
|
-
authorName: string;
|
|
254
|
-
coopname: string;
|
|
255
255
|
approval_hash: string;
|
|
256
256
|
approvalUrl?: string | undefined;
|
|
257
257
|
}>;
|
|
258
|
-
type IPayload$
|
|
259
|
-
interface IWorkflow$
|
|
258
|
+
type IPayload$j = z.infer<typeof approvalRequestPayloadSchema>;
|
|
259
|
+
interface IWorkflow$j extends BaseWorkflowPayload, IPayload$j {
|
|
260
260
|
}
|
|
261
|
-
declare const name$
|
|
262
|
-
declare const id$
|
|
263
|
-
declare const workflow$
|
|
261
|
+
declare const name$j = "\u0417\u0430\u043F\u0440\u043E\u0441 \u043D\u0430 \u043E\u0434\u043E\u0431\u0440\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u0441\u0435\u0434\u0430\u0442\u0435\u043B\u044F";
|
|
262
|
+
declare const id$j: string;
|
|
263
|
+
declare const workflow$j: WorkflowDefinition<IWorkflow$j>;
|
|
264
264
|
|
|
265
|
-
declare const index$
|
|
266
|
-
declare namespace index$
|
|
267
|
-
export { index$
|
|
268
|
-
export type { IPayload$
|
|
265
|
+
declare const index$k_approvalRequestPayloadSchema: typeof approvalRequestPayloadSchema;
|
|
266
|
+
declare namespace index$k {
|
|
267
|
+
export { index$k_approvalRequestPayloadSchema as approvalRequestPayloadSchema, id$j as id, name$j as name, workflow$j as workflow };
|
|
268
|
+
export type { IPayload$j as IPayload, IWorkflow$j as IWorkflow };
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
declare const decisionApprovedPayloadSchema: z.ZodObject<{
|
|
@@ -275,29 +275,29 @@ declare const decisionApprovedPayloadSchema: z.ZodObject<{
|
|
|
275
275
|
decision_id: z.ZodString;
|
|
276
276
|
decisionUrl: z.ZodOptional<z.ZodString>;
|
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
|
278
|
-
userName: string;
|
|
279
278
|
coopname: string;
|
|
280
279
|
decision_id: string;
|
|
280
|
+
userName: string;
|
|
281
281
|
decisionTitle: string;
|
|
282
282
|
decisionUrl?: string | undefined;
|
|
283
283
|
}, {
|
|
284
|
-
userName: string;
|
|
285
284
|
coopname: string;
|
|
286
285
|
decision_id: string;
|
|
286
|
+
userName: string;
|
|
287
287
|
decisionTitle: string;
|
|
288
288
|
decisionUrl?: string | undefined;
|
|
289
289
|
}>;
|
|
290
|
-
type IPayload$
|
|
291
|
-
interface IWorkflow$
|
|
290
|
+
type IPayload$i = z.infer<typeof decisionApprovedPayloadSchema>;
|
|
291
|
+
interface IWorkflow$i extends BaseWorkflowPayload, IPayload$i {
|
|
292
292
|
}
|
|
293
|
-
declare const name$
|
|
294
|
-
declare const id$
|
|
295
|
-
declare const workflow$
|
|
293
|
+
declare const name$i = "\u0420\u0435\u0448\u0435\u043D\u0438\u0435 \u0441\u043E\u0432\u0435\u0442\u0430 \u043F\u0440\u0438\u043D\u044F\u0442\u043E";
|
|
294
|
+
declare const id$i: string;
|
|
295
|
+
declare const workflow$i: WorkflowDefinition<IWorkflow$i>;
|
|
296
296
|
|
|
297
|
-
declare const index$
|
|
298
|
-
declare namespace index$
|
|
299
|
-
export { index$
|
|
300
|
-
export type { IPayload$
|
|
297
|
+
declare const index$j_decisionApprovedPayloadSchema: typeof decisionApprovedPayloadSchema;
|
|
298
|
+
declare namespace index$j {
|
|
299
|
+
export { index$j_decisionApprovedPayloadSchema as decisionApprovedPayloadSchema, id$i as id, name$i as name, workflow$i as workflow };
|
|
300
|
+
export type { IPayload$i as IPayload, IWorkflow$i as IWorkflow };
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
declare const paymentCompletedPayloadSchema: z.ZodObject<{
|
|
@@ -319,17 +319,17 @@ declare const paymentCompletedPayloadSchema: z.ZodObject<{
|
|
|
319
319
|
paymentDate: string;
|
|
320
320
|
paymentUrl?: string | undefined;
|
|
321
321
|
}>;
|
|
322
|
-
type IPayload$
|
|
323
|
-
interface IWorkflow$
|
|
322
|
+
type IPayload$h = z.infer<typeof paymentCompletedPayloadSchema>;
|
|
323
|
+
interface IWorkflow$h extends BaseWorkflowPayload, IPayload$h {
|
|
324
324
|
}
|
|
325
|
-
declare const name$
|
|
326
|
-
declare const id$
|
|
327
|
-
declare const workflow$
|
|
325
|
+
declare const name$h = "\u041F\u043B\u0430\u0442\u0435\u0436 \u043F\u0440\u0438\u043D\u044F\u0442";
|
|
326
|
+
declare const id$h: string;
|
|
327
|
+
declare const workflow$h: WorkflowDefinition<IWorkflow$h>;
|
|
328
328
|
|
|
329
|
-
declare const index$
|
|
330
|
-
declare namespace index$
|
|
331
|
-
export { id$
|
|
332
|
-
export type { IPayload$
|
|
329
|
+
declare const index$i_paymentCompletedPayloadSchema: typeof paymentCompletedPayloadSchema;
|
|
330
|
+
declare namespace index$i {
|
|
331
|
+
export { id$h as id, name$h as name, index$i_paymentCompletedPayloadSchema as paymentCompletedPayloadSchema, workflow$h as workflow };
|
|
332
|
+
export type { IPayload$h as IPayload, IWorkflow$h as IWorkflow };
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
declare const paymentCancelledPayloadSchema: z.ZodObject<{
|
|
@@ -343,28 +343,28 @@ declare const paymentCancelledPayloadSchema: z.ZodObject<{
|
|
|
343
343
|
userName: string;
|
|
344
344
|
paymentAmount: string;
|
|
345
345
|
paymentCurrency: string;
|
|
346
|
-
paymentId: string;
|
|
347
346
|
paymentDate: string;
|
|
347
|
+
paymentId: string;
|
|
348
348
|
paymentUrl?: string | undefined;
|
|
349
349
|
}, {
|
|
350
350
|
userName: string;
|
|
351
351
|
paymentAmount: string;
|
|
352
352
|
paymentCurrency: string;
|
|
353
|
-
paymentId: string;
|
|
354
353
|
paymentDate: string;
|
|
354
|
+
paymentId: string;
|
|
355
355
|
paymentUrl?: string | undefined;
|
|
356
356
|
}>;
|
|
357
|
-
type IPayload$
|
|
358
|
-
interface IWorkflow$
|
|
357
|
+
type IPayload$g = z.infer<typeof paymentCancelledPayloadSchema>;
|
|
358
|
+
interface IWorkflow$g extends BaseWorkflowPayload, IPayload$g {
|
|
359
359
|
}
|
|
360
|
-
declare const name$
|
|
361
|
-
declare const id$
|
|
362
|
-
declare const workflow$
|
|
360
|
+
declare const name$g = "\u041F\u043B\u0430\u0442\u0435\u0436 \u043E\u0442\u043C\u0435\u043D\u0435\u043D";
|
|
361
|
+
declare const id$g: string;
|
|
362
|
+
declare const workflow$g: WorkflowDefinition<IWorkflow$g>;
|
|
363
363
|
|
|
364
|
-
declare const index$
|
|
365
|
-
declare namespace index$
|
|
366
|
-
export { id$
|
|
367
|
-
export type { IPayload$
|
|
364
|
+
declare const index$h_paymentCancelledPayloadSchema: typeof paymentCancelledPayloadSchema;
|
|
365
|
+
declare namespace index$h {
|
|
366
|
+
export { id$g as id, name$g as name, index$h_paymentCancelledPayloadSchema as paymentCancelledPayloadSchema, workflow$g as workflow };
|
|
367
|
+
export type { IPayload$g as IPayload, IWorkflow$g as IWorkflow };
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
declare const meetInitialPayloadSchema: z.ZodObject<{
|
|
@@ -376,36 +376,39 @@ declare const meetInitialPayloadSchema: z.ZodObject<{
|
|
|
376
376
|
meetEndTime: z.ZodString;
|
|
377
377
|
timezone: z.ZodString;
|
|
378
378
|
meetUrl: z.ZodString;
|
|
379
|
+
details: z.ZodOptional<z.ZodString>;
|
|
379
380
|
}, "strip", z.ZodTypeAny, {
|
|
380
381
|
coopShortName: string;
|
|
381
382
|
meetId: number;
|
|
383
|
+
meetDate: string;
|
|
384
|
+
meetTime: string;
|
|
382
385
|
meetEndDate: string;
|
|
383
386
|
meetEndTime: string;
|
|
384
387
|
timezone: string;
|
|
385
388
|
meetUrl: string;
|
|
386
|
-
|
|
387
|
-
meetTime: string;
|
|
389
|
+
details?: string | undefined;
|
|
388
390
|
}, {
|
|
389
391
|
coopShortName: string;
|
|
390
392
|
meetId: number;
|
|
393
|
+
meetDate: string;
|
|
394
|
+
meetTime: string;
|
|
391
395
|
meetEndDate: string;
|
|
392
396
|
meetEndTime: string;
|
|
393
397
|
timezone: string;
|
|
394
398
|
meetUrl: string;
|
|
395
|
-
|
|
396
|
-
meetTime: string;
|
|
399
|
+
details?: string | undefined;
|
|
397
400
|
}>;
|
|
398
|
-
type IPayload$
|
|
399
|
-
interface IWorkflow$
|
|
401
|
+
type IPayload$f = z.infer<typeof meetInitialPayloadSchema>;
|
|
402
|
+
interface IWorkflow$f extends BaseWorkflowPayload, IPayload$f {
|
|
400
403
|
}
|
|
401
|
-
declare const name$
|
|
402
|
-
declare const id$
|
|
403
|
-
declare const workflow$
|
|
404
|
+
declare const name$f = "\u0423\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u0435 \u043E \u043D\u043E\u0432\u043E\u043C \u043E\u0431\u0449\u0435\u043C \u0441\u043E\u0431\u0440\u0430\u043D\u0438\u0438";
|
|
405
|
+
declare const id$f: string;
|
|
406
|
+
declare const workflow$f: WorkflowDefinition<IWorkflow$f>;
|
|
404
407
|
|
|
405
|
-
declare const index$
|
|
406
|
-
declare namespace index$
|
|
407
|
-
export { id$
|
|
408
|
-
export type { IPayload$
|
|
408
|
+
declare const index$g_meetInitialPayloadSchema: typeof meetInitialPayloadSchema;
|
|
409
|
+
declare namespace index$g {
|
|
410
|
+
export { id$f as id, index$g_meetInitialPayloadSchema as meetInitialPayloadSchema, name$f as name, workflow$f as workflow };
|
|
411
|
+
export type { IPayload$f as IPayload, IWorkflow$f as IWorkflow };
|
|
409
412
|
}
|
|
410
413
|
|
|
411
414
|
declare const meetReminderStartPayloadSchema: z.ZodObject<{
|
|
@@ -415,32 +418,35 @@ declare const meetReminderStartPayloadSchema: z.ZodObject<{
|
|
|
415
418
|
meetTime: z.ZodString;
|
|
416
419
|
timeDescription: z.ZodString;
|
|
417
420
|
meetUrl: z.ZodString;
|
|
421
|
+
details: z.ZodOptional<z.ZodString>;
|
|
418
422
|
}, "strip", z.ZodTypeAny, {
|
|
419
423
|
coopShortName: string;
|
|
420
424
|
meetId: number;
|
|
421
|
-
meetUrl: string;
|
|
422
425
|
meetDate: string;
|
|
423
426
|
meetTime: string;
|
|
427
|
+
meetUrl: string;
|
|
424
428
|
timeDescription: string;
|
|
429
|
+
details?: string | undefined;
|
|
425
430
|
}, {
|
|
426
431
|
coopShortName: string;
|
|
427
432
|
meetId: number;
|
|
428
|
-
meetUrl: string;
|
|
429
433
|
meetDate: string;
|
|
430
434
|
meetTime: string;
|
|
435
|
+
meetUrl: string;
|
|
431
436
|
timeDescription: string;
|
|
437
|
+
details?: string | undefined;
|
|
432
438
|
}>;
|
|
433
|
-
type IPayload$
|
|
434
|
-
interface IWorkflow$
|
|
439
|
+
type IPayload$e = z.infer<typeof meetReminderStartPayloadSchema>;
|
|
440
|
+
interface IWorkflow$e extends BaseWorkflowPayload, IPayload$e {
|
|
435
441
|
}
|
|
436
|
-
declare const name$
|
|
437
|
-
declare const id$
|
|
438
|
-
declare const workflow$
|
|
442
|
+
declare const name$e = "\u041D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u043D\u0438\u0435 \u043E \u043F\u0440\u0435\u0434\u0441\u0442\u043E\u044F\u0449\u0435\u043C \u0441\u043E\u0431\u0440\u0430\u043D\u0438\u0438";
|
|
443
|
+
declare const id$e: string;
|
|
444
|
+
declare const workflow$e: WorkflowDefinition<IWorkflow$e>;
|
|
439
445
|
|
|
440
|
-
declare const index$
|
|
441
|
-
declare namespace index$
|
|
442
|
-
export { id$
|
|
443
|
-
export type { IPayload$
|
|
446
|
+
declare const index$f_meetReminderStartPayloadSchema: typeof meetReminderStartPayloadSchema;
|
|
447
|
+
declare namespace index$f {
|
|
448
|
+
export { id$e as id, index$f_meetReminderStartPayloadSchema as meetReminderStartPayloadSchema, name$e as name, workflow$e as workflow };
|
|
449
|
+
export type { IPayload$e as IPayload, IWorkflow$e as IWorkflow };
|
|
444
450
|
}
|
|
445
451
|
|
|
446
452
|
declare const meetStartedPayloadSchema: z.ZodObject<{
|
|
@@ -450,6 +456,7 @@ declare const meetStartedPayloadSchema: z.ZodObject<{
|
|
|
450
456
|
meetEndTime: z.ZodString;
|
|
451
457
|
timezone: z.ZodString;
|
|
452
458
|
meetUrl: z.ZodString;
|
|
459
|
+
details: z.ZodOptional<z.ZodString>;
|
|
453
460
|
}, "strip", z.ZodTypeAny, {
|
|
454
461
|
coopShortName: string;
|
|
455
462
|
meetId: number;
|
|
@@ -457,6 +464,7 @@ declare const meetStartedPayloadSchema: z.ZodObject<{
|
|
|
457
464
|
meetEndTime: string;
|
|
458
465
|
timezone: string;
|
|
459
466
|
meetUrl: string;
|
|
467
|
+
details?: string | undefined;
|
|
460
468
|
}, {
|
|
461
469
|
coopShortName: string;
|
|
462
470
|
meetId: number;
|
|
@@ -464,18 +472,19 @@ declare const meetStartedPayloadSchema: z.ZodObject<{
|
|
|
464
472
|
meetEndTime: string;
|
|
465
473
|
timezone: string;
|
|
466
474
|
meetUrl: string;
|
|
475
|
+
details?: string | undefined;
|
|
467
476
|
}>;
|
|
468
|
-
type IPayload$
|
|
469
|
-
interface IWorkflow$
|
|
477
|
+
type IPayload$d = z.infer<typeof meetStartedPayloadSchema>;
|
|
478
|
+
interface IWorkflow$d extends BaseWorkflowPayload, IPayload$d {
|
|
470
479
|
}
|
|
471
|
-
declare const name$
|
|
472
|
-
declare const id$
|
|
473
|
-
declare const workflow$
|
|
480
|
+
declare const name$d = "\u0421\u043E\u0431\u0440\u0430\u043D\u0438\u0435 \u043D\u0430\u0447\u0430\u043B\u043E\u0441\u044C";
|
|
481
|
+
declare const id$d: string;
|
|
482
|
+
declare const workflow$d: WorkflowDefinition<IWorkflow$d>;
|
|
474
483
|
|
|
475
|
-
declare const index$
|
|
476
|
-
declare namespace index$
|
|
477
|
-
export { id$
|
|
478
|
-
export type { IPayload$
|
|
484
|
+
declare const index$e_meetStartedPayloadSchema: typeof meetStartedPayloadSchema;
|
|
485
|
+
declare namespace index$e {
|
|
486
|
+
export { id$d as id, index$e_meetStartedPayloadSchema as meetStartedPayloadSchema, name$d as name, workflow$d as workflow };
|
|
487
|
+
export type { IPayload$d as IPayload, IWorkflow$d as IWorkflow };
|
|
479
488
|
}
|
|
480
489
|
|
|
481
490
|
declare const meetReminderEndPayloadSchema: z.ZodObject<{
|
|
@@ -503,17 +512,17 @@ declare const meetReminderEndPayloadSchema: z.ZodObject<{
|
|
|
503
512
|
meetUrl: string;
|
|
504
513
|
timeDescription: string;
|
|
505
514
|
}>;
|
|
506
|
-
type IPayload$
|
|
507
|
-
interface IWorkflow$
|
|
515
|
+
type IPayload$c = z.infer<typeof meetReminderEndPayloadSchema>;
|
|
516
|
+
interface IWorkflow$c extends BaseWorkflowPayload, IPayload$c {
|
|
508
517
|
}
|
|
509
|
-
declare const name$
|
|
510
|
-
declare const id$
|
|
511
|
-
declare const workflow$
|
|
518
|
+
declare const name$c = "\u041D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u043D\u0438\u0435 \u043E \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u0438 \u0441\u043E\u0431\u0440\u0430\u043D\u0438\u044F";
|
|
519
|
+
declare const id$c: string;
|
|
520
|
+
declare const workflow$c: WorkflowDefinition<IWorkflow$c>;
|
|
512
521
|
|
|
513
|
-
declare const index$
|
|
514
|
-
declare namespace index$
|
|
515
|
-
export { id$
|
|
516
|
-
export type { IPayload$
|
|
522
|
+
declare const index$d_meetReminderEndPayloadSchema: typeof meetReminderEndPayloadSchema;
|
|
523
|
+
declare namespace index$d {
|
|
524
|
+
export { id$c as id, index$d_meetReminderEndPayloadSchema as meetReminderEndPayloadSchema, name$c as name, workflow$c as workflow };
|
|
525
|
+
export type { IPayload$c as IPayload, IWorkflow$c as IWorkflow };
|
|
517
526
|
}
|
|
518
527
|
|
|
519
528
|
declare const meetRestartPayloadSchema: z.ZodObject<{
|
|
@@ -528,33 +537,33 @@ declare const meetRestartPayloadSchema: z.ZodObject<{
|
|
|
528
537
|
}, "strip", z.ZodTypeAny, {
|
|
529
538
|
coopShortName: string;
|
|
530
539
|
meetId: number;
|
|
540
|
+
meetDate: string;
|
|
541
|
+
meetTime: string;
|
|
531
542
|
meetEndDate: string;
|
|
532
543
|
meetEndTime: string;
|
|
533
544
|
timezone: string;
|
|
534
545
|
meetUrl: string;
|
|
535
|
-
meetDate: string;
|
|
536
|
-
meetTime: string;
|
|
537
546
|
}, {
|
|
538
547
|
coopShortName: string;
|
|
539
548
|
meetId: number;
|
|
549
|
+
meetDate: string;
|
|
550
|
+
meetTime: string;
|
|
540
551
|
meetEndDate: string;
|
|
541
552
|
meetEndTime: string;
|
|
542
553
|
timezone: string;
|
|
543
554
|
meetUrl: string;
|
|
544
|
-
meetDate: string;
|
|
545
|
-
meetTime: string;
|
|
546
555
|
}>;
|
|
547
|
-
type IPayload$
|
|
548
|
-
interface IWorkflow$
|
|
556
|
+
type IPayload$b = z.infer<typeof meetRestartPayloadSchema>;
|
|
557
|
+
interface IWorkflow$b extends BaseWorkflowPayload, IPayload$b {
|
|
549
558
|
}
|
|
550
|
-
declare const name$
|
|
551
|
-
declare const id$
|
|
552
|
-
declare const workflow$
|
|
559
|
+
declare const name$b = "\u041D\u0430\u0437\u043D\u0430\u0447\u0435\u043D\u0430 \u043D\u043E\u0432\u0430\u044F \u0434\u0430\u0442\u0430 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E\u0433\u043E \u0441\u043E\u0431\u0440\u0430\u043D\u0438\u044F";
|
|
560
|
+
declare const id$b: string;
|
|
561
|
+
declare const workflow$b: WorkflowDefinition<IWorkflow$b>;
|
|
553
562
|
|
|
554
|
-
declare const index$
|
|
555
|
-
declare namespace index$
|
|
556
|
-
export { id$
|
|
557
|
-
export type { IPayload$
|
|
563
|
+
declare const index$c_meetRestartPayloadSchema: typeof meetRestartPayloadSchema;
|
|
564
|
+
declare namespace index$c {
|
|
565
|
+
export { id$b as id, index$c_meetRestartPayloadSchema as meetRestartPayloadSchema, name$b as name, workflow$b as workflow };
|
|
566
|
+
export type { IPayload$b as IPayload, IWorkflow$b as IWorkflow };
|
|
558
567
|
}
|
|
559
568
|
|
|
560
569
|
declare const meetEndedPayloadSchema: z.ZodObject<{
|
|
@@ -579,17 +588,17 @@ declare const meetEndedPayloadSchema: z.ZodObject<{
|
|
|
579
588
|
endTitle: string;
|
|
580
589
|
endMessage: string;
|
|
581
590
|
}>;
|
|
582
|
-
type IPayload$
|
|
583
|
-
interface IWorkflow$
|
|
591
|
+
type IPayload$a = z.infer<typeof meetEndedPayloadSchema>;
|
|
592
|
+
interface IWorkflow$a extends BaseWorkflowPayload, IPayload$a {
|
|
584
593
|
}
|
|
585
|
-
declare const name$
|
|
586
|
-
declare const id$
|
|
587
|
-
declare const workflow$
|
|
594
|
+
declare const name$a = "\u0421\u043E\u0431\u0440\u0430\u043D\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043E";
|
|
595
|
+
declare const id$a: string;
|
|
596
|
+
declare const workflow$a: WorkflowDefinition<IWorkflow$a>;
|
|
588
597
|
|
|
589
|
-
declare const index$
|
|
590
|
-
declare namespace index$
|
|
591
|
-
export { id$
|
|
592
|
-
export type { IPayload$
|
|
598
|
+
declare const index$b_meetEndedPayloadSchema: typeof meetEndedPayloadSchema;
|
|
599
|
+
declare namespace index$b {
|
|
600
|
+
export { id$a as id, index$b_meetEndedPayloadSchema as meetEndedPayloadSchema, name$a as name, workflow$a as workflow };
|
|
601
|
+
export type { IPayload$a as IPayload, IWorkflow$a as IWorkflow };
|
|
593
602
|
}
|
|
594
603
|
|
|
595
604
|
declare const approvalResponsePayloadSchema: z.ZodObject<{
|
|
@@ -601,33 +610,33 @@ declare const approvalResponsePayloadSchema: z.ZodObject<{
|
|
|
601
610
|
coopShortName: z.ZodString;
|
|
602
611
|
approvalUrl: z.ZodOptional<z.ZodString>;
|
|
603
612
|
}, "strip", z.ZodTypeAny, {
|
|
604
|
-
userName: string;
|
|
605
613
|
coopname: string;
|
|
606
614
|
coopShortName: string;
|
|
615
|
+
userName: string;
|
|
607
616
|
approvalStatus: "approved" | "declined";
|
|
608
617
|
approvalStatusText: string;
|
|
609
618
|
approvalId: string;
|
|
610
619
|
approvalUrl?: string | undefined;
|
|
611
620
|
}, {
|
|
612
|
-
userName: string;
|
|
613
621
|
coopname: string;
|
|
614
622
|
coopShortName: string;
|
|
623
|
+
userName: string;
|
|
615
624
|
approvalStatus: "approved" | "declined";
|
|
616
625
|
approvalStatusText: string;
|
|
617
626
|
approvalId: string;
|
|
618
627
|
approvalUrl?: string | undefined;
|
|
619
628
|
}>;
|
|
620
|
-
type IPayload$
|
|
621
|
-
interface IWorkflow$
|
|
629
|
+
type IPayload$9 = z.infer<typeof approvalResponsePayloadSchema>;
|
|
630
|
+
interface IWorkflow$9 extends BaseWorkflowPayload, IPayload$9 {
|
|
622
631
|
}
|
|
623
|
-
declare const name$
|
|
624
|
-
declare const id$
|
|
625
|
-
declare const workflow$
|
|
632
|
+
declare const name$9 = "\u041E\u0442\u0432\u0435\u0442 \u043D\u0430 \u0437\u0430\u043F\u0440\u043E\u0441 \u043E\u0434\u043E\u0431\u0440\u0435\u043D\u0438\u044F";
|
|
633
|
+
declare const id$9: string;
|
|
634
|
+
declare const workflow$9: WorkflowDefinition<IWorkflow$9>;
|
|
626
635
|
|
|
627
|
-
declare const index$
|
|
628
|
-
declare namespace index$
|
|
629
|
-
export { index$
|
|
630
|
-
export type { IPayload$
|
|
636
|
+
declare const index$a_approvalResponsePayloadSchema: typeof approvalResponsePayloadSchema;
|
|
637
|
+
declare namespace index$a {
|
|
638
|
+
export { index$a_approvalResponsePayloadSchema as approvalResponsePayloadSchema, id$9 as id, name$9 as name, workflow$9 as workflow };
|
|
639
|
+
export type { IPayload$9 as IPayload, IWorkflow$9 as IWorkflow };
|
|
631
640
|
}
|
|
632
641
|
|
|
633
642
|
declare const newInitialPaymentRequestPayloadSchema: z.ZodObject<{
|
|
@@ -639,33 +648,33 @@ declare const newInitialPaymentRequestPayloadSchema: z.ZodObject<{
|
|
|
639
648
|
coopname: z.ZodString;
|
|
640
649
|
paymentUrl: z.ZodOptional<z.ZodString>;
|
|
641
650
|
}, "strip", z.ZodTypeAny, {
|
|
642
|
-
chairmanName: string;
|
|
643
651
|
coopname: string;
|
|
652
|
+
chairmanName: string;
|
|
644
653
|
participantName: string;
|
|
645
654
|
paymentAmount: string;
|
|
646
655
|
paymentCurrency: string;
|
|
647
656
|
paymentType: string;
|
|
648
657
|
paymentUrl?: string | undefined;
|
|
649
658
|
}, {
|
|
650
|
-
chairmanName: string;
|
|
651
659
|
coopname: string;
|
|
660
|
+
chairmanName: string;
|
|
652
661
|
participantName: string;
|
|
653
662
|
paymentAmount: string;
|
|
654
663
|
paymentCurrency: string;
|
|
655
664
|
paymentType: string;
|
|
656
665
|
paymentUrl?: string | undefined;
|
|
657
666
|
}>;
|
|
658
|
-
type IPayload$
|
|
659
|
-
interface IWorkflow$
|
|
667
|
+
type IPayload$8 = z.infer<typeof newInitialPaymentRequestPayloadSchema>;
|
|
668
|
+
interface IWorkflow$8 extends BaseWorkflowPayload, IPayload$8 {
|
|
660
669
|
}
|
|
661
|
-
declare const name$
|
|
662
|
-
declare const id$
|
|
663
|
-
declare const workflow$
|
|
670
|
+
declare const name$8 = "\u041D\u043E\u0432\u0430\u044F \u0437\u0430\u044F\u0432\u043A\u0430 \u043D\u0430 \u0432\u0441\u0442\u0443\u043F\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0432\u0437\u043D\u043E\u0441";
|
|
671
|
+
declare const id$8: string;
|
|
672
|
+
declare const workflow$8: WorkflowDefinition<IWorkflow$8>;
|
|
664
673
|
|
|
665
|
-
declare const index$
|
|
666
|
-
declare namespace index$
|
|
667
|
-
export { id$
|
|
668
|
-
export type { IPayload$
|
|
674
|
+
declare const index$9_newInitialPaymentRequestPayloadSchema: typeof newInitialPaymentRequestPayloadSchema;
|
|
675
|
+
declare namespace index$9 {
|
|
676
|
+
export { id$8 as id, name$8 as name, index$9_newInitialPaymentRequestPayloadSchema as newInitialPaymentRequestPayloadSchema, workflow$8 as workflow };
|
|
677
|
+
export type { IPayload$8 as IPayload, IWorkflow$8 as IWorkflow };
|
|
669
678
|
}
|
|
670
679
|
|
|
671
680
|
declare const newDepositPaymentRequestPayloadSchema: z.ZodObject<{
|
|
@@ -677,33 +686,33 @@ declare const newDepositPaymentRequestPayloadSchema: z.ZodObject<{
|
|
|
677
686
|
coopname: z.ZodString;
|
|
678
687
|
paymentUrl: z.ZodOptional<z.ZodString>;
|
|
679
688
|
}, "strip", z.ZodTypeAny, {
|
|
680
|
-
chairmanName: string;
|
|
681
689
|
coopname: string;
|
|
690
|
+
chairmanName: string;
|
|
682
691
|
participantName: string;
|
|
683
692
|
paymentAmount: string;
|
|
684
693
|
paymentCurrency: string;
|
|
685
694
|
paymentType: string;
|
|
686
695
|
paymentUrl?: string | undefined;
|
|
687
696
|
}, {
|
|
688
|
-
chairmanName: string;
|
|
689
697
|
coopname: string;
|
|
698
|
+
chairmanName: string;
|
|
690
699
|
participantName: string;
|
|
691
700
|
paymentAmount: string;
|
|
692
701
|
paymentCurrency: string;
|
|
693
702
|
paymentType: string;
|
|
694
703
|
paymentUrl?: string | undefined;
|
|
695
704
|
}>;
|
|
696
|
-
type IPayload$
|
|
697
|
-
interface IWorkflow$
|
|
705
|
+
type IPayload$7 = z.infer<typeof newDepositPaymentRequestPayloadSchema>;
|
|
706
|
+
interface IWorkflow$7 extends BaseWorkflowPayload, IPayload$7 {
|
|
698
707
|
}
|
|
699
|
-
declare const name$
|
|
700
|
-
declare const id$
|
|
701
|
-
declare const workflow$
|
|
708
|
+
declare const name$7 = "\u041D\u043E\u0432\u0430\u044F \u043D\u043E\u0432\u0430\u044F \u0437\u0430\u044F\u0432\u043A\u0430 \u043D\u0430 \u043F\u0430\u0435\u0432\u043E\u0439 \u0432\u0437\u043D\u043E\u0441";
|
|
709
|
+
declare const id$7: string;
|
|
710
|
+
declare const workflow$7: WorkflowDefinition<IWorkflow$7>;
|
|
702
711
|
|
|
703
|
-
declare const index$
|
|
704
|
-
declare namespace index$
|
|
705
|
-
export { id$
|
|
706
|
-
export type { IPayload$
|
|
712
|
+
declare const index$8_newDepositPaymentRequestPayloadSchema: typeof newDepositPaymentRequestPayloadSchema;
|
|
713
|
+
declare namespace index$8 {
|
|
714
|
+
export { id$7 as id, name$7 as name, index$8_newDepositPaymentRequestPayloadSchema as newDepositPaymentRequestPayloadSchema, workflow$7 as workflow };
|
|
715
|
+
export type { IPayload$7 as IPayload, IWorkflow$7 as IWorkflow };
|
|
707
716
|
}
|
|
708
717
|
|
|
709
718
|
declare const resetKeyPayloadSchema: z.ZodObject<{
|
|
@@ -713,17 +722,17 @@ declare const resetKeyPayloadSchema: z.ZodObject<{
|
|
|
713
722
|
}, {
|
|
714
723
|
resetUrl: string;
|
|
715
724
|
}>;
|
|
716
|
-
type IPayload$
|
|
717
|
-
interface IWorkflow$
|
|
725
|
+
type IPayload$6 = z.infer<typeof resetKeyPayloadSchema>;
|
|
726
|
+
interface IWorkflow$6 extends BaseWorkflowPayload, IPayload$6 {
|
|
718
727
|
}
|
|
719
|
-
declare const name$
|
|
720
|
-
declare const id$
|
|
721
|
-
declare const workflow$
|
|
728
|
+
declare const name$6 = "\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u0430";
|
|
729
|
+
declare const id$6: string;
|
|
730
|
+
declare const workflow$6: WorkflowDefinition<IWorkflow$6>;
|
|
722
731
|
|
|
723
|
-
declare const index$
|
|
724
|
-
declare namespace index$
|
|
725
|
-
export { id$
|
|
726
|
-
export type { IPayload$
|
|
732
|
+
declare const index$7_resetKeyPayloadSchema: typeof resetKeyPayloadSchema;
|
|
733
|
+
declare namespace index$7 {
|
|
734
|
+
export { id$6 as id, name$6 as name, index$7_resetKeyPayloadSchema as resetKeyPayloadSchema, workflow$6 as workflow };
|
|
735
|
+
export type { IPayload$6 as IPayload, IWorkflow$6 as IWorkflow };
|
|
727
736
|
}
|
|
728
737
|
|
|
729
738
|
declare const invitePayloadSchema: z.ZodObject<{
|
|
@@ -733,17 +742,17 @@ declare const invitePayloadSchema: z.ZodObject<{
|
|
|
733
742
|
}, {
|
|
734
743
|
inviteUrl: string;
|
|
735
744
|
}>;
|
|
736
|
-
type IPayload$
|
|
737
|
-
interface IWorkflow$
|
|
745
|
+
type IPayload$5 = z.infer<typeof invitePayloadSchema>;
|
|
746
|
+
interface IWorkflow$5 extends BaseWorkflowPayload, IPayload$5 {
|
|
738
747
|
}
|
|
739
|
-
declare const name$
|
|
740
|
-
declare const id$
|
|
741
|
-
declare const workflow$
|
|
748
|
+
declare const name$5 = "\u041F\u0440\u0438\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u0435 \u0432 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
749
|
+
declare const id$5: string;
|
|
750
|
+
declare const workflow$5: WorkflowDefinition<IWorkflow$5>;
|
|
742
751
|
|
|
743
|
-
declare const index$
|
|
744
|
-
declare namespace index$
|
|
745
|
-
export { id$
|
|
746
|
-
export type { IPayload$
|
|
752
|
+
declare const index$6_invitePayloadSchema: typeof invitePayloadSchema;
|
|
753
|
+
declare namespace index$6 {
|
|
754
|
+
export { id$5 as id, index$6_invitePayloadSchema as invitePayloadSchema, name$5 as name, workflow$5 as workflow };
|
|
755
|
+
export type { IPayload$5 as IPayload, IWorkflow$5 as IWorkflow };
|
|
747
756
|
}
|
|
748
757
|
|
|
749
758
|
declare const emailVerificationPayloadSchema: z.ZodObject<{
|
|
@@ -753,17 +762,17 @@ declare const emailVerificationPayloadSchema: z.ZodObject<{
|
|
|
753
762
|
}, {
|
|
754
763
|
verificationUrl: string;
|
|
755
764
|
}>;
|
|
756
|
-
type IPayload$
|
|
757
|
-
interface IWorkflow$
|
|
765
|
+
type IPayload$4 = z.infer<typeof emailVerificationPayloadSchema>;
|
|
766
|
+
interface IWorkflow$4 extends BaseWorkflowPayload, IPayload$4 {
|
|
758
767
|
}
|
|
759
|
-
declare const name$
|
|
760
|
-
declare const id$
|
|
761
|
-
declare const workflow$
|
|
768
|
+
declare const name$4 = "\u0412\u0435\u0440\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F Email";
|
|
769
|
+
declare const id$4: string;
|
|
770
|
+
declare const workflow$4: WorkflowDefinition<IWorkflow$4>;
|
|
762
771
|
|
|
763
|
-
declare const index$
|
|
764
|
-
declare namespace index$
|
|
765
|
-
export { index$
|
|
766
|
-
export type { IPayload$
|
|
772
|
+
declare const index$5_emailVerificationPayloadSchema: typeof emailVerificationPayloadSchema;
|
|
773
|
+
declare namespace index$5 {
|
|
774
|
+
export { index$5_emailVerificationPayloadSchema as emailVerificationPayloadSchema, id$4 as id, name$4 as name, workflow$4 as workflow };
|
|
775
|
+
export type { IPayload$4 as IPayload, IWorkflow$4 as IWorkflow };
|
|
767
776
|
}
|
|
768
777
|
|
|
769
778
|
declare const serviceProvisionedPayloadSchema: z.ZodObject<{
|
|
@@ -779,17 +788,17 @@ declare const serviceProvisionedPayloadSchema: z.ZodObject<{
|
|
|
779
788
|
domain: string;
|
|
780
789
|
provisionedAt: string;
|
|
781
790
|
}>;
|
|
782
|
-
type IPayload$
|
|
783
|
-
interface IWorkflow$
|
|
791
|
+
type IPayload$3 = z.infer<typeof serviceProvisionedPayloadSchema>;
|
|
792
|
+
interface IWorkflow$3 extends BaseWorkflowPayload, IPayload$3 {
|
|
784
793
|
}
|
|
785
|
-
declare const name$
|
|
786
|
-
declare const id$
|
|
787
|
-
declare const workflow$
|
|
794
|
+
declare const name$3 = "\u0426\u0438\u0444\u0440\u043E\u0432\u043E\u0439 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432 \u0440\u0430\u0437\u0432\u0435\u0440\u043D\u0443\u0442";
|
|
795
|
+
declare const id$3: string;
|
|
796
|
+
declare const workflow$3: WorkflowDefinition<IWorkflow$3>;
|
|
788
797
|
|
|
789
|
-
declare const index$
|
|
790
|
-
declare namespace index$
|
|
791
|
-
export { id$
|
|
792
|
-
export type { IPayload$
|
|
798
|
+
declare const index$4_serviceProvisionedPayloadSchema: typeof serviceProvisionedPayloadSchema;
|
|
799
|
+
declare namespace index$4 {
|
|
800
|
+
export { id$3 as id, name$3 as name, index$4_serviceProvisionedPayloadSchema as serviceProvisionedPayloadSchema, workflow$3 as workflow };
|
|
801
|
+
export type { IPayload$3 as IPayload, IWorkflow$3 as IWorkflow };
|
|
793
802
|
}
|
|
794
803
|
|
|
795
804
|
declare const decisionExpiredPayloadSchema: z.ZodObject<{
|
|
@@ -800,35 +809,135 @@ declare const decisionExpiredPayloadSchema: z.ZodObject<{
|
|
|
800
809
|
short_abbr: z.ZodString;
|
|
801
810
|
name: z.ZodString;
|
|
802
811
|
}, "strip", z.ZodTypeAny, {
|
|
803
|
-
userName: string;
|
|
804
812
|
coopname: string;
|
|
805
813
|
decision_id: string;
|
|
814
|
+
userName: string;
|
|
806
815
|
decisionTitle: string;
|
|
807
816
|
short_abbr: string;
|
|
808
817
|
name: string;
|
|
809
818
|
}, {
|
|
810
|
-
userName: string;
|
|
811
819
|
coopname: string;
|
|
812
820
|
decision_id: string;
|
|
821
|
+
userName: string;
|
|
813
822
|
decisionTitle: string;
|
|
814
823
|
short_abbr: string;
|
|
815
824
|
name: string;
|
|
816
825
|
}>;
|
|
817
|
-
type IPayload = z.infer<typeof decisionExpiredPayloadSchema>;
|
|
826
|
+
type IPayload$2 = z.infer<typeof decisionExpiredPayloadSchema>;
|
|
827
|
+
interface IWorkflow$2 extends BaseWorkflowPayload, IPayload$2 {
|
|
828
|
+
}
|
|
829
|
+
declare const name$2 = "\u0420\u0435\u0448\u0435\u043D\u0438\u0435 \u0441\u043E\u0432\u0435\u0442\u0430 \u043D\u0435 \u043F\u0440\u0438\u043D\u044F\u0442\u043E \u043F\u043E \u0438\u0441\u0442\u0435\u0447\u0435\u043D\u0438\u044E \u0441\u0440\u043E\u043A\u0430";
|
|
830
|
+
declare const id$2: string;
|
|
831
|
+
declare const workflow$2: WorkflowDefinition<IWorkflow$2>;
|
|
832
|
+
|
|
833
|
+
declare const index$3_decisionExpiredPayloadSchema: typeof decisionExpiredPayloadSchema;
|
|
834
|
+
declare namespace index$3 {
|
|
835
|
+
export { index$3_decisionExpiredPayloadSchema as decisionExpiredPayloadSchema, id$2 as id, name$2 as name, workflow$2 as workflow };
|
|
836
|
+
export type { IPayload$2 as IPayload, IWorkflow$2 as IWorkflow };
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
declare const chatcoopCalendarEventCreatedPayloadSchema: z.ZodObject<{
|
|
840
|
+
coopShortName: z.ZodString;
|
|
841
|
+
title: z.ZodString;
|
|
842
|
+
description: z.ZodOptional<z.ZodString>;
|
|
843
|
+
startDate: z.ZodString;
|
|
844
|
+
startTime: z.ZodString;
|
|
845
|
+
endDate: z.ZodString;
|
|
846
|
+
endTime: z.ZodString;
|
|
847
|
+
timezone: z.ZodString;
|
|
848
|
+
roomLabel: z.ZodString;
|
|
849
|
+
eventUrl: z.ZodString;
|
|
850
|
+
actorUsername: z.ZodString;
|
|
851
|
+
}, "strip", z.ZodTypeAny, {
|
|
852
|
+
coopShortName: string;
|
|
853
|
+
timezone: string;
|
|
854
|
+
title: string;
|
|
855
|
+
startDate: string;
|
|
856
|
+
startTime: string;
|
|
857
|
+
endDate: string;
|
|
858
|
+
endTime: string;
|
|
859
|
+
roomLabel: string;
|
|
860
|
+
eventUrl: string;
|
|
861
|
+
actorUsername: string;
|
|
862
|
+
description?: string | undefined;
|
|
863
|
+
}, {
|
|
864
|
+
coopShortName: string;
|
|
865
|
+
timezone: string;
|
|
866
|
+
title: string;
|
|
867
|
+
startDate: string;
|
|
868
|
+
startTime: string;
|
|
869
|
+
endDate: string;
|
|
870
|
+
endTime: string;
|
|
871
|
+
roomLabel: string;
|
|
872
|
+
eventUrl: string;
|
|
873
|
+
actorUsername: string;
|
|
874
|
+
description?: string | undefined;
|
|
875
|
+
}>;
|
|
876
|
+
type IPayload$1 = z.infer<typeof chatcoopCalendarEventCreatedPayloadSchema>;
|
|
877
|
+
interface IWorkflow$1 extends BaseWorkflowPayload, IPayload$1 {
|
|
878
|
+
}
|
|
879
|
+
declare const name$1 = "\u0423\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u0435 \u043E \u043D\u043E\u0432\u043E\u043C \u0441\u043E\u0431\u044B\u0442\u0438\u0438 \u043A\u0430\u043B\u0435\u043D\u0434\u0430\u0440\u044F \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u0430";
|
|
880
|
+
declare const id$1: string;
|
|
881
|
+
declare const workflow$1: WorkflowDefinition<IWorkflow$1>;
|
|
882
|
+
|
|
883
|
+
declare const index$2_chatcoopCalendarEventCreatedPayloadSchema: typeof chatcoopCalendarEventCreatedPayloadSchema;
|
|
884
|
+
declare namespace index$2 {
|
|
885
|
+
export { index$2_chatcoopCalendarEventCreatedPayloadSchema as chatcoopCalendarEventCreatedPayloadSchema, id$1 as id, name$1 as name, workflow$1 as workflow };
|
|
886
|
+
export type { IPayload$1 as IPayload, IWorkflow$1 as IWorkflow };
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
declare const chatcoopCalendarEventUpdatedPayloadSchema: z.ZodObject<{
|
|
890
|
+
coopShortName: z.ZodString;
|
|
891
|
+
title: z.ZodString;
|
|
892
|
+
description: z.ZodOptional<z.ZodString>;
|
|
893
|
+
startDate: z.ZodString;
|
|
894
|
+
startTime: z.ZodString;
|
|
895
|
+
endDate: z.ZodString;
|
|
896
|
+
endTime: z.ZodString;
|
|
897
|
+
timezone: z.ZodString;
|
|
898
|
+
roomLabel: z.ZodString;
|
|
899
|
+
eventUrl: z.ZodString;
|
|
900
|
+
actorUsername: z.ZodString;
|
|
901
|
+
}, "strip", z.ZodTypeAny, {
|
|
902
|
+
coopShortName: string;
|
|
903
|
+
timezone: string;
|
|
904
|
+
title: string;
|
|
905
|
+
startDate: string;
|
|
906
|
+
startTime: string;
|
|
907
|
+
endDate: string;
|
|
908
|
+
endTime: string;
|
|
909
|
+
roomLabel: string;
|
|
910
|
+
eventUrl: string;
|
|
911
|
+
actorUsername: string;
|
|
912
|
+
description?: string | undefined;
|
|
913
|
+
}, {
|
|
914
|
+
coopShortName: string;
|
|
915
|
+
timezone: string;
|
|
916
|
+
title: string;
|
|
917
|
+
startDate: string;
|
|
918
|
+
startTime: string;
|
|
919
|
+
endDate: string;
|
|
920
|
+
endTime: string;
|
|
921
|
+
roomLabel: string;
|
|
922
|
+
eventUrl: string;
|
|
923
|
+
actorUsername: string;
|
|
924
|
+
description?: string | undefined;
|
|
925
|
+
}>;
|
|
926
|
+
type IPayload = z.infer<typeof chatcoopCalendarEventUpdatedPayloadSchema>;
|
|
818
927
|
interface IWorkflow extends BaseWorkflowPayload, IPayload {
|
|
819
928
|
}
|
|
820
|
-
declare const name = "\
|
|
929
|
+
declare const name = "\u0423\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u0435 \u043E\u0431 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0438 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043A\u0430\u043B\u0435\u043D\u0434\u0430\u0440\u044F \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u0430";
|
|
821
930
|
declare const id: string;
|
|
822
931
|
declare const workflow: WorkflowDefinition<IWorkflow>;
|
|
823
932
|
|
|
824
933
|
type index$1_IPayload = IPayload;
|
|
825
934
|
type index$1_IWorkflow = IWorkflow;
|
|
826
|
-
declare const index$
|
|
935
|
+
declare const index$1_chatcoopCalendarEventUpdatedPayloadSchema: typeof chatcoopCalendarEventUpdatedPayloadSchema;
|
|
827
936
|
declare const index$1_id: typeof id;
|
|
828
937
|
declare const index$1_name: typeof name;
|
|
829
938
|
declare const index$1_workflow: typeof workflow;
|
|
830
939
|
declare namespace index$1 {
|
|
831
|
-
export { index$
|
|
940
|
+
export { index$1_chatcoopCalendarEventUpdatedPayloadSchema as chatcoopCalendarEventUpdatedPayloadSchema, index$1_id as id, index$1_name as name, index$1_workflow as workflow };
|
|
832
941
|
export type { index$1_IPayload as IPayload, index$1_IWorkflow as IWorkflow };
|
|
833
942
|
}
|
|
834
943
|
|
|
@@ -839,30 +948,32 @@ declare const index_allWorkflows: typeof allWorkflows;
|
|
|
839
948
|
declare const index_workflowsById: typeof workflowsById;
|
|
840
949
|
declare namespace index {
|
|
841
950
|
export {
|
|
842
|
-
index$
|
|
843
|
-
index$
|
|
844
|
-
index$
|
|
845
|
-
index$1 as
|
|
846
|
-
index$
|
|
847
|
-
index$
|
|
848
|
-
index$
|
|
849
|
-
index$
|
|
850
|
-
index$b as
|
|
851
|
-
index$
|
|
852
|
-
index$
|
|
853
|
-
index$
|
|
854
|
-
index$
|
|
855
|
-
index$
|
|
856
|
-
index$
|
|
857
|
-
index$
|
|
858
|
-
index$
|
|
859
|
-
index$
|
|
860
|
-
index$
|
|
861
|
-
index$
|
|
862
|
-
index$
|
|
951
|
+
index$k as ApprovalRequest,
|
|
952
|
+
index$a as ApprovalResponse,
|
|
953
|
+
index$2 as ChatCoopCalendarEventCreated,
|
|
954
|
+
index$1 as ChatCoopCalendarEventUpdated,
|
|
955
|
+
index$j as DecisionApproved,
|
|
956
|
+
index$3 as DecisionExpired,
|
|
957
|
+
index$5 as EmailVerification,
|
|
958
|
+
index$6 as Invite,
|
|
959
|
+
index$b as MeetEnded,
|
|
960
|
+
index$g as MeetInitial,
|
|
961
|
+
index$d as MeetReminderEnd,
|
|
962
|
+
index$f as MeetReminderStart,
|
|
963
|
+
index$c as MeetRestart,
|
|
964
|
+
index$e as MeetStarted,
|
|
965
|
+
index$m as NewAgenda,
|
|
966
|
+
index$8 as NewDepositPaymentRequest,
|
|
967
|
+
index$9 as NewInitialPaymentRequest,
|
|
968
|
+
index$l as NewTransfer,
|
|
969
|
+
index$h as PaymentCancelled,
|
|
970
|
+
index$i as PaymentPaid,
|
|
971
|
+
index$7 as ResetKey,
|
|
972
|
+
index$4 as ServerProvisioned,
|
|
973
|
+
index$n as Welcome,
|
|
863
974
|
index_allWorkflows as allWorkflows,
|
|
864
975
|
index_workflowsById as workflowsById,
|
|
865
976
|
};
|
|
866
977
|
}
|
|
867
978
|
|
|
868
|
-
export { index$
|
|
979
|
+
export { index$o as Types, WorkflowBuilder, index as Workflows, createChannelConfig, createDefaultChannelsConfig, createDefaultPreferences, createEmailStep, createInAppStep, createPushStep, createSmsStep };
|