@contractspec/example.pocket-family-office 0.0.0-canary-20260113162409

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.
Files changed (48) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +43 -0
  3. package/dist/blueprint.d.ts +4 -0
  4. package/dist/blueprint.d.ts.map +1 -0
  5. package/dist/connections/samples.d.ts +4 -0
  6. package/dist/connections/samples.d.ts.map +1 -0
  7. package/dist/docs/index.d.ts +2 -0
  8. package/dist/docs/index.d.ts.map +1 -0
  9. package/dist/docs/pocket-family-office.docblock.d.ts +2 -0
  10. package/dist/docs/pocket-family-office.docblock.d.ts.map +1 -0
  11. package/dist/example.d.ts +3 -0
  12. package/dist/example.d.ts.map +1 -0
  13. package/dist/index.d.ts +11 -0
  14. package/dist/index.d.ts.map +1 -0
  15. package/dist/index.js +2020 -0
  16. package/dist/knowledge/sources.sample.d.ts +3 -0
  17. package/dist/knowledge/sources.sample.d.ts.map +1 -0
  18. package/dist/operations/index.d.ts +717 -0
  19. package/dist/operations/index.d.ts.map +1 -0
  20. package/dist/pocket-family-office.capability.d.ts +2 -0
  21. package/dist/pocket-family-office.capability.d.ts.map +1 -0
  22. package/dist/pocket-family-office.feature.d.ts +6 -0
  23. package/dist/pocket-family-office.feature.d.ts.map +1 -0
  24. package/dist/telemetry.d.ts +4 -0
  25. package/dist/telemetry.d.ts.map +1 -0
  26. package/dist/tenant.sample.d.ts +3 -0
  27. package/dist/tenant.sample.d.ts.map +1 -0
  28. package/dist/tests/pocket-family-office.test.d.ts +2 -0
  29. package/dist/tests/pocket-family-office.test.d.ts.map +1 -0
  30. package/dist/workflows/generate-financial-summary.d.ts +2 -0
  31. package/dist/workflows/generate-financial-summary.d.ts.map +1 -0
  32. package/dist/workflows/generate-openbanking-overview.d.ts +2 -0
  33. package/dist/workflows/generate-openbanking-overview.d.ts.map +1 -0
  34. package/dist/workflows/index.d.ts +9 -0
  35. package/dist/workflows/index.d.ts.map +1 -0
  36. package/dist/workflows/ingest-email-threads.d.ts +2 -0
  37. package/dist/workflows/ingest-email-threads.d.ts.map +1 -0
  38. package/dist/workflows/process-uploaded-document.d.ts +2 -0
  39. package/dist/workflows/process-uploaded-document.d.ts.map +1 -0
  40. package/dist/workflows/refresh-openbanking-balances.d.ts +2 -0
  41. package/dist/workflows/refresh-openbanking-balances.d.ts.map +1 -0
  42. package/dist/workflows/sync-openbanking-accounts.d.ts +2 -0
  43. package/dist/workflows/sync-openbanking-accounts.d.ts.map +1 -0
  44. package/dist/workflows/sync-openbanking-transactions.d.ts +2 -0
  45. package/dist/workflows/sync-openbanking-transactions.d.ts.map +1 -0
  46. package/dist/workflows/upcoming-payments-reminder.d.ts +2 -0
  47. package/dist/workflows/upcoming-payments-reminder.d.ts.map +1 -0
  48. package/package.json +98 -0
@@ -0,0 +1,717 @@
1
+ import { type ZodSchemaModel } from '@contractspec/lib.schema';
2
+ import { type OperationSpec } from '@contractspec/lib.contracts';
3
+ declare const UploadDocumentInputModel: import("@contractspec/lib.schema").SchemaModel<{
4
+ bucket: {
5
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
6
+ isOptional: false;
7
+ };
8
+ objectKey: {
9
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
10
+ isOptional: false;
11
+ };
12
+ mimeType: {
13
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
14
+ isOptional: false;
15
+ };
16
+ bytes: {
17
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
18
+ isOptional: false;
19
+ };
20
+ tags: {
21
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
22
+ isOptional: false;
23
+ isArray: true;
24
+ };
25
+ uploadedAt: {
26
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
27
+ isOptional: false;
28
+ };
29
+ source: {
30
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
31
+ isOptional: false;
32
+ };
33
+ }>;
34
+ declare const UploadDocumentOutputModel: import("@contractspec/lib.schema").SchemaModel<{
35
+ documentId: {
36
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
37
+ isOptional: false;
38
+ };
39
+ ingestionJobId: {
40
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
41
+ isOptional: false;
42
+ };
43
+ }>;
44
+ export type UploadDocumentInput = ZodSchemaModel<typeof UploadDocumentInputModel>;
45
+ export type UploadDocumentOutput = ZodSchemaModel<typeof UploadDocumentOutputModel>;
46
+ export declare const uploadDocumentContract: OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
47
+ bucket: {
48
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
49
+ isOptional: false;
50
+ };
51
+ objectKey: {
52
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
53
+ isOptional: false;
54
+ };
55
+ mimeType: {
56
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
57
+ isOptional: false;
58
+ };
59
+ bytes: {
60
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
61
+ isOptional: false;
62
+ };
63
+ tags: {
64
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
65
+ isOptional: false;
66
+ isArray: true;
67
+ };
68
+ uploadedAt: {
69
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
70
+ isOptional: false;
71
+ };
72
+ source: {
73
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
74
+ isOptional: false;
75
+ };
76
+ }>, import("@contractspec/lib.schema").SchemaModel<{
77
+ documentId: {
78
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
79
+ isOptional: false;
80
+ };
81
+ ingestionJobId: {
82
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
83
+ isOptional: false;
84
+ };
85
+ }>, undefined>;
86
+ declare const PaymentReminderInputModel: import("@contractspec/lib.schema").SchemaModel<{
87
+ billId: {
88
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
89
+ isOptional: false;
90
+ };
91
+ recipientEmail: {
92
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
93
+ isOptional: false;
94
+ };
95
+ recipientPhone: {
96
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
97
+ isOptional: true;
98
+ };
99
+ dueDate: {
100
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
101
+ isOptional: false;
102
+ };
103
+ amountCents: {
104
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
105
+ isOptional: false;
106
+ };
107
+ currency: {
108
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
109
+ isOptional: false;
110
+ };
111
+ channel: {
112
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
113
+ isOptional: false;
114
+ };
115
+ memo: {
116
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
117
+ isOptional: true;
118
+ };
119
+ }>;
120
+ declare const PaymentReminderOutputModel: import("@contractspec/lib.schema").SchemaModel<{
121
+ reminderId: {
122
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
123
+ isOptional: false;
124
+ };
125
+ scheduledAt: {
126
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
127
+ isOptional: false;
128
+ };
129
+ }>;
130
+ export type PaymentReminderInput = ZodSchemaModel<typeof PaymentReminderInputModel>;
131
+ export type PaymentReminderOutput = ZodSchemaModel<typeof PaymentReminderOutputModel>;
132
+ export declare const schedulePaymentReminderContract: OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
133
+ billId: {
134
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
135
+ isOptional: false;
136
+ };
137
+ recipientEmail: {
138
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
139
+ isOptional: false;
140
+ };
141
+ recipientPhone: {
142
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
143
+ isOptional: true;
144
+ };
145
+ dueDate: {
146
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
147
+ isOptional: false;
148
+ };
149
+ amountCents: {
150
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
151
+ isOptional: false;
152
+ };
153
+ currency: {
154
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
155
+ isOptional: false;
156
+ };
157
+ channel: {
158
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
159
+ isOptional: false;
160
+ };
161
+ memo: {
162
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
163
+ isOptional: true;
164
+ };
165
+ }>, import("@contractspec/lib.schema").SchemaModel<{
166
+ reminderId: {
167
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
168
+ isOptional: false;
169
+ };
170
+ scheduledAt: {
171
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
172
+ isOptional: false;
173
+ };
174
+ }>, undefined>;
175
+ declare const FinancialSummaryInputModel: import("@contractspec/lib.schema").SchemaModel<{
176
+ period: {
177
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
178
+ isOptional: false;
179
+ };
180
+ includeVoiceSummary: {
181
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
182
+ isOptional: false;
183
+ };
184
+ }>;
185
+ declare const FinancialSummaryOutputModel: import("@contractspec/lib.schema").SchemaModel<{
186
+ summaryId: {
187
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
188
+ isOptional: false;
189
+ };
190
+ generatedAt: {
191
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
192
+ isOptional: false;
193
+ };
194
+ markdown: {
195
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
196
+ isOptional: false;
197
+ };
198
+ highlights: {
199
+ type: import("@contractspec/lib.schema").SchemaModel<{
200
+ label: {
201
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
202
+ isOptional: false;
203
+ };
204
+ value: {
205
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
206
+ isOptional: false;
207
+ };
208
+ }>;
209
+ isOptional: false;
210
+ isArray: true;
211
+ };
212
+ cashflowDelta: {
213
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
214
+ isOptional: false;
215
+ };
216
+ }>;
217
+ export type FinancialSummaryInput = ZodSchemaModel<typeof FinancialSummaryInputModel>;
218
+ export type FinancialSummaryOutput = ZodSchemaModel<typeof FinancialSummaryOutputModel>;
219
+ export declare const generateFinancialSummaryContract: OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
220
+ period: {
221
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
222
+ isOptional: false;
223
+ };
224
+ includeVoiceSummary: {
225
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
226
+ isOptional: false;
227
+ };
228
+ }>, import("@contractspec/lib.schema").SchemaModel<{
229
+ summaryId: {
230
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
231
+ isOptional: false;
232
+ };
233
+ generatedAt: {
234
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
235
+ isOptional: false;
236
+ };
237
+ markdown: {
238
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
239
+ isOptional: false;
240
+ };
241
+ highlights: {
242
+ type: import("@contractspec/lib.schema").SchemaModel<{
243
+ label: {
244
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
245
+ isOptional: false;
246
+ };
247
+ value: {
248
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
249
+ isOptional: false;
250
+ };
251
+ }>;
252
+ isOptional: false;
253
+ isArray: true;
254
+ };
255
+ cashflowDelta: {
256
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
257
+ isOptional: false;
258
+ };
259
+ }>, undefined>;
260
+ declare const SyncEmailThreadsInputModel: import("@contractspec/lib.schema").SchemaModel<{
261
+ labelIds: {
262
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
263
+ isOptional: false;
264
+ isArray: true;
265
+ };
266
+ maxThreads: {
267
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
268
+ isOptional: false;
269
+ };
270
+ syncSinceMinutes: {
271
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
272
+ isOptional: false;
273
+ };
274
+ }>;
275
+ declare const SyncEmailThreadsOutputModel: import("@contractspec/lib.schema").SchemaModel<{
276
+ syncedThreads: {
277
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
278
+ isOptional: false;
279
+ };
280
+ lastMessageAt: {
281
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
282
+ isOptional: true;
283
+ };
284
+ }>;
285
+ export type SyncEmailThreadsInput = ZodSchemaModel<typeof SyncEmailThreadsInputModel>;
286
+ export type SyncEmailThreadsOutput = ZodSchemaModel<typeof SyncEmailThreadsOutputModel>;
287
+ export declare const syncEmailThreadsContract: OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
288
+ labelIds: {
289
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
290
+ isOptional: false;
291
+ isArray: true;
292
+ };
293
+ maxThreads: {
294
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
295
+ isOptional: false;
296
+ };
297
+ syncSinceMinutes: {
298
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
299
+ isOptional: false;
300
+ };
301
+ }>, import("@contractspec/lib.schema").SchemaModel<{
302
+ syncedThreads: {
303
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
304
+ isOptional: false;
305
+ };
306
+ lastMessageAt: {
307
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
308
+ isOptional: true;
309
+ };
310
+ }>, undefined>;
311
+ declare const SummaryDispatchInputModel: import("@contractspec/lib.schema").SchemaModel<{
312
+ summaryId: {
313
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
314
+ isOptional: false;
315
+ };
316
+ recipientEmail: {
317
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
318
+ isOptional: false;
319
+ };
320
+ recipientName: {
321
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
322
+ isOptional: true;
323
+ };
324
+ includeVoice: {
325
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
326
+ isOptional: false;
327
+ };
328
+ voiceRecipient: {
329
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
330
+ isOptional: true;
331
+ };
332
+ }>;
333
+ declare const SummaryDispatchOutputModel: import("@contractspec/lib.schema").SchemaModel<{
334
+ dispatchId: {
335
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
336
+ isOptional: false;
337
+ };
338
+ emailSent: {
339
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
340
+ isOptional: false;
341
+ };
342
+ voiceUrl: {
343
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
344
+ isOptional: true;
345
+ };
346
+ }>;
347
+ export type SummaryDispatchInput = ZodSchemaModel<typeof SummaryDispatchInputModel>;
348
+ export type SummaryDispatchOutput = ZodSchemaModel<typeof SummaryDispatchOutputModel>;
349
+ export declare const dispatchFinancialSummaryContract: OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
350
+ summaryId: {
351
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
352
+ isOptional: false;
353
+ };
354
+ recipientEmail: {
355
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
356
+ isOptional: false;
357
+ };
358
+ recipientName: {
359
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
360
+ isOptional: true;
361
+ };
362
+ includeVoice: {
363
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
364
+ isOptional: false;
365
+ };
366
+ voiceRecipient: {
367
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
368
+ isOptional: true;
369
+ };
370
+ }>, import("@contractspec/lib.schema").SchemaModel<{
371
+ dispatchId: {
372
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
373
+ isOptional: false;
374
+ };
375
+ emailSent: {
376
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
377
+ isOptional: false;
378
+ };
379
+ voiceUrl: {
380
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
381
+ isOptional: true;
382
+ };
383
+ }>, undefined>;
384
+ declare const OpenBankingOverviewInputModel: import("@contractspec/lib.schema").SchemaModel<{
385
+ tenantId: {
386
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
387
+ isOptional: false;
388
+ };
389
+ accountIds: {
390
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
391
+ isOptional: true;
392
+ isArray: true;
393
+ };
394
+ period: {
395
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
396
+ isOptional: false;
397
+ };
398
+ asOf: {
399
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
400
+ isOptional: true;
401
+ };
402
+ includeCategories: {
403
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
404
+ isOptional: false;
405
+ };
406
+ includeCashflowTrend: {
407
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
408
+ isOptional: false;
409
+ };
410
+ }>;
411
+ declare const OpenBankingOverviewOutputModel: import("@contractspec/lib.schema").SchemaModel<{
412
+ knowledgeEntryId: {
413
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
414
+ isOptional: false;
415
+ };
416
+ periodStart: {
417
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
418
+ isOptional: false;
419
+ };
420
+ periodEnd: {
421
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
422
+ isOptional: false;
423
+ };
424
+ generatedAt: {
425
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
426
+ isOptional: false;
427
+ };
428
+ summaryPath: {
429
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
430
+ isOptional: true;
431
+ };
432
+ }>;
433
+ export type OpenBankingOverviewInput = ZodSchemaModel<typeof OpenBankingOverviewInputModel>;
434
+ export type OpenBankingOverviewOutput = ZodSchemaModel<typeof OpenBankingOverviewOutputModel>;
435
+ export declare const generateOpenBankingOverviewContract: OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
436
+ tenantId: {
437
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
438
+ isOptional: false;
439
+ };
440
+ accountIds: {
441
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
442
+ isOptional: true;
443
+ isArray: true;
444
+ };
445
+ period: {
446
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
447
+ isOptional: false;
448
+ };
449
+ asOf: {
450
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
451
+ isOptional: true;
452
+ };
453
+ includeCategories: {
454
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
455
+ isOptional: false;
456
+ };
457
+ includeCashflowTrend: {
458
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
459
+ isOptional: false;
460
+ };
461
+ }>, import("@contractspec/lib.schema").SchemaModel<{
462
+ knowledgeEntryId: {
463
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
464
+ isOptional: false;
465
+ };
466
+ periodStart: {
467
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
468
+ isOptional: false;
469
+ };
470
+ periodEnd: {
471
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
472
+ isOptional: false;
473
+ };
474
+ generatedAt: {
475
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
476
+ isOptional: false;
477
+ };
478
+ summaryPath: {
479
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
480
+ isOptional: true;
481
+ };
482
+ }>, undefined>;
483
+ export declare const pocketFamilyOfficeContracts: {
484
+ 'pfo.documents.upload': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
485
+ bucket: {
486
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
487
+ isOptional: false;
488
+ };
489
+ objectKey: {
490
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
491
+ isOptional: false;
492
+ };
493
+ mimeType: {
494
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
495
+ isOptional: false;
496
+ };
497
+ bytes: {
498
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
499
+ isOptional: false;
500
+ };
501
+ tags: {
502
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
503
+ isOptional: false;
504
+ isArray: true;
505
+ };
506
+ uploadedAt: {
507
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
508
+ isOptional: false;
509
+ };
510
+ source: {
511
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
512
+ isOptional: false;
513
+ };
514
+ }>, import("@contractspec/lib.schema").SchemaModel<{
515
+ documentId: {
516
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
517
+ isOptional: false;
518
+ };
519
+ ingestionJobId: {
520
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
521
+ isOptional: false;
522
+ };
523
+ }>, undefined>;
524
+ 'pfo.reminders.schedule-payment': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
525
+ billId: {
526
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
527
+ isOptional: false;
528
+ };
529
+ recipientEmail: {
530
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
531
+ isOptional: false;
532
+ };
533
+ recipientPhone: {
534
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
535
+ isOptional: true;
536
+ };
537
+ dueDate: {
538
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
539
+ isOptional: false;
540
+ };
541
+ amountCents: {
542
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
543
+ isOptional: false;
544
+ };
545
+ currency: {
546
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
547
+ isOptional: false;
548
+ };
549
+ channel: {
550
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
551
+ isOptional: false;
552
+ };
553
+ memo: {
554
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
555
+ isOptional: true;
556
+ };
557
+ }>, import("@contractspec/lib.schema").SchemaModel<{
558
+ reminderId: {
559
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
560
+ isOptional: false;
561
+ };
562
+ scheduledAt: {
563
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
564
+ isOptional: false;
565
+ };
566
+ }>, undefined>;
567
+ 'pfo.summary.generate': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
568
+ period: {
569
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
570
+ isOptional: false;
571
+ };
572
+ includeVoiceSummary: {
573
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
574
+ isOptional: false;
575
+ };
576
+ }>, import("@contractspec/lib.schema").SchemaModel<{
577
+ summaryId: {
578
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
579
+ isOptional: false;
580
+ };
581
+ generatedAt: {
582
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
583
+ isOptional: false;
584
+ };
585
+ markdown: {
586
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
587
+ isOptional: false;
588
+ };
589
+ highlights: {
590
+ type: import("@contractspec/lib.schema").SchemaModel<{
591
+ label: {
592
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
593
+ isOptional: false;
594
+ };
595
+ value: {
596
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
597
+ isOptional: false;
598
+ };
599
+ }>;
600
+ isOptional: false;
601
+ isArray: true;
602
+ };
603
+ cashflowDelta: {
604
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
605
+ isOptional: false;
606
+ };
607
+ }>, undefined>;
608
+ 'pfo.summary.dispatch': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
609
+ summaryId: {
610
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
611
+ isOptional: false;
612
+ };
613
+ recipientEmail: {
614
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
615
+ isOptional: false;
616
+ };
617
+ recipientName: {
618
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
619
+ isOptional: true;
620
+ };
621
+ includeVoice: {
622
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
623
+ isOptional: false;
624
+ };
625
+ voiceRecipient: {
626
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
627
+ isOptional: true;
628
+ };
629
+ }>, import("@contractspec/lib.schema").SchemaModel<{
630
+ dispatchId: {
631
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
632
+ isOptional: false;
633
+ };
634
+ emailSent: {
635
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
636
+ isOptional: false;
637
+ };
638
+ voiceUrl: {
639
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
640
+ isOptional: true;
641
+ };
642
+ }>, undefined>;
643
+ 'pfo.email.sync-threads': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
644
+ labelIds: {
645
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
646
+ isOptional: false;
647
+ isArray: true;
648
+ };
649
+ maxThreads: {
650
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
651
+ isOptional: false;
652
+ };
653
+ syncSinceMinutes: {
654
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
655
+ isOptional: false;
656
+ };
657
+ }>, import("@contractspec/lib.schema").SchemaModel<{
658
+ syncedThreads: {
659
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
660
+ isOptional: false;
661
+ };
662
+ lastMessageAt: {
663
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
664
+ isOptional: true;
665
+ };
666
+ }>, undefined>;
667
+ 'pfo.openbanking.generate-overview': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
668
+ tenantId: {
669
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
670
+ isOptional: false;
671
+ };
672
+ accountIds: {
673
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
674
+ isOptional: true;
675
+ isArray: true;
676
+ };
677
+ period: {
678
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
679
+ isOptional: false;
680
+ };
681
+ asOf: {
682
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
683
+ isOptional: true;
684
+ };
685
+ includeCategories: {
686
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
687
+ isOptional: false;
688
+ };
689
+ includeCashflowTrend: {
690
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
691
+ isOptional: false;
692
+ };
693
+ }>, import("@contractspec/lib.schema").SchemaModel<{
694
+ knowledgeEntryId: {
695
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
696
+ isOptional: false;
697
+ };
698
+ periodStart: {
699
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
700
+ isOptional: false;
701
+ };
702
+ periodEnd: {
703
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
704
+ isOptional: false;
705
+ };
706
+ generatedAt: {
707
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
708
+ isOptional: false;
709
+ };
710
+ summaryPath: {
711
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
712
+ isOptional: true;
713
+ };
714
+ }>, undefined>;
715
+ };
716
+ export {};
717
+ //# sourceMappingURL=index.d.ts.map