@contractspec/example.pocket-family-office 1.46.2 → 1.47.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.
- package/dist/example.d.ts +1 -2
- package/dist/example.d.ts.map +1 -1
- package/dist/index.js +404 -72
- package/dist/operations/index.d.ts +238 -13
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/pocket-family-office.capability.d.ts +2 -0
- package/dist/pocket-family-office.capability.d.ts.map +1 -0
- package/dist/pocket-family-office.feature.d.ts +1 -7
- package/dist/pocket-family-office.feature.d.ts.map +1 -1
- package/dist/workflows/generate-financial-summary.d.ts +1 -2
- package/dist/workflows/generate-financial-summary.d.ts.map +1 -1
- package/dist/workflows/generate-openbanking-overview.d.ts +1 -2
- package/dist/workflows/generate-openbanking-overview.d.ts.map +1 -1
- package/dist/workflows/ingest-email-threads.d.ts +1 -2
- package/dist/workflows/ingest-email-threads.d.ts.map +1 -1
- package/dist/workflows/process-uploaded-document.d.ts +1 -2
- package/dist/workflows/process-uploaded-document.d.ts.map +1 -1
- package/dist/workflows/refresh-openbanking-balances.d.ts +1 -2
- package/dist/workflows/refresh-openbanking-balances.d.ts.map +1 -1
- package/dist/workflows/sync-openbanking-accounts.d.ts +1 -2
- package/dist/workflows/sync-openbanking-accounts.d.ts.map +1 -1
- package/dist/workflows/sync-openbanking-transactions.d.ts +1 -2
- package/dist/workflows/sync-openbanking-transactions.d.ts.map +1 -1
- package/dist/workflows/upcoming-payments-reminder.d.ts +1 -2
- package/dist/workflows/upcoming-payments-reminder.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ZodSchemaModel } from '@contractspec/lib.schema';
|
|
2
|
-
import type
|
|
2
|
+
import { type OperationSpec } from '@contractspec/lib.contracts';
|
|
3
3
|
declare const UploadDocumentInputModel: import("@contractspec/lib.schema").SchemaModel<{
|
|
4
4
|
bucket: {
|
|
5
5
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -43,7 +43,46 @@ declare const UploadDocumentOutputModel: import("@contractspec/lib.schema").Sche
|
|
|
43
43
|
}>;
|
|
44
44
|
export type UploadDocumentInput = ZodSchemaModel<typeof UploadDocumentInputModel>;
|
|
45
45
|
export type UploadDocumentOutput = ZodSchemaModel<typeof UploadDocumentOutputModel>;
|
|
46
|
-
export declare const uploadDocumentContract: OperationSpec<
|
|
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>;
|
|
47
86
|
declare const PaymentReminderInputModel: import("@contractspec/lib.schema").SchemaModel<{
|
|
48
87
|
billId: {
|
|
49
88
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -90,7 +129,49 @@ declare const PaymentReminderOutputModel: import("@contractspec/lib.schema").Sch
|
|
|
90
129
|
}>;
|
|
91
130
|
export type PaymentReminderInput = ZodSchemaModel<typeof PaymentReminderInputModel>;
|
|
92
131
|
export type PaymentReminderOutput = ZodSchemaModel<typeof PaymentReminderOutputModel>;
|
|
93
|
-
export declare const schedulePaymentReminderContract: OperationSpec<
|
|
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>;
|
|
94
175
|
declare const FinancialSummaryInputModel: import("@contractspec/lib.schema").SchemaModel<{
|
|
95
176
|
period: {
|
|
96
177
|
type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
|
|
@@ -135,7 +216,47 @@ declare const FinancialSummaryOutputModel: import("@contractspec/lib.schema").Sc
|
|
|
135
216
|
}>;
|
|
136
217
|
export type FinancialSummaryInput = ZodSchemaModel<typeof FinancialSummaryInputModel>;
|
|
137
218
|
export type FinancialSummaryOutput = ZodSchemaModel<typeof FinancialSummaryOutputModel>;
|
|
138
|
-
export declare const generateFinancialSummaryContract: OperationSpec<
|
|
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>;
|
|
139
260
|
declare const SyncEmailThreadsInputModel: import("@contractspec/lib.schema").SchemaModel<{
|
|
140
261
|
labelIds: {
|
|
141
262
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -163,7 +284,30 @@ declare const SyncEmailThreadsOutputModel: import("@contractspec/lib.schema").Sc
|
|
|
163
284
|
}>;
|
|
164
285
|
export type SyncEmailThreadsInput = ZodSchemaModel<typeof SyncEmailThreadsInputModel>;
|
|
165
286
|
export type SyncEmailThreadsOutput = ZodSchemaModel<typeof SyncEmailThreadsOutputModel>;
|
|
166
|
-
export declare const syncEmailThreadsContract: OperationSpec<
|
|
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>;
|
|
167
311
|
declare const SummaryDispatchInputModel: import("@contractspec/lib.schema").SchemaModel<{
|
|
168
312
|
summaryId: {
|
|
169
313
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -202,7 +346,41 @@ declare const SummaryDispatchOutputModel: import("@contractspec/lib.schema").Sch
|
|
|
202
346
|
}>;
|
|
203
347
|
export type SummaryDispatchInput = ZodSchemaModel<typeof SummaryDispatchInputModel>;
|
|
204
348
|
export type SummaryDispatchOutput = ZodSchemaModel<typeof SummaryDispatchOutputModel>;
|
|
205
|
-
export declare const dispatchFinancialSummaryContract: OperationSpec<
|
|
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>;
|
|
206
384
|
declare const OpenBankingOverviewInputModel: import("@contractspec/lib.schema").SchemaModel<{
|
|
207
385
|
tenantId: {
|
|
208
386
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -254,7 +432,54 @@ declare const OpenBankingOverviewOutputModel: import("@contractspec/lib.schema")
|
|
|
254
432
|
}>;
|
|
255
433
|
export type OpenBankingOverviewInput = ZodSchemaModel<typeof OpenBankingOverviewInputModel>;
|
|
256
434
|
export type OpenBankingOverviewOutput = ZodSchemaModel<typeof OpenBankingOverviewOutputModel>;
|
|
257
|
-
export declare const generateOpenBankingOverviewContract: OperationSpec<
|
|
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>;
|
|
258
483
|
export declare const pocketFamilyOfficeContracts: {
|
|
259
484
|
'pfo.documents.upload': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
260
485
|
bucket: {
|
|
@@ -295,7 +520,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
295
520
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
296
521
|
isOptional: false;
|
|
297
522
|
};
|
|
298
|
-
}>,
|
|
523
|
+
}>, undefined>;
|
|
299
524
|
'pfo.reminders.schedule-payment': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
300
525
|
billId: {
|
|
301
526
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -338,7 +563,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
338
563
|
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
339
564
|
isOptional: false;
|
|
340
565
|
};
|
|
341
|
-
}>,
|
|
566
|
+
}>, undefined>;
|
|
342
567
|
'pfo.summary.generate': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
343
568
|
period: {
|
|
344
569
|
type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
|
|
@@ -379,7 +604,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
379
604
|
type: import("@contractspec/lib.schema").FieldType<number, number>;
|
|
380
605
|
isOptional: false;
|
|
381
606
|
};
|
|
382
|
-
}>,
|
|
607
|
+
}>, undefined>;
|
|
383
608
|
'pfo.summary.dispatch': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
384
609
|
summaryId: {
|
|
385
610
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -414,7 +639,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
414
639
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
415
640
|
isOptional: true;
|
|
416
641
|
};
|
|
417
|
-
}>,
|
|
642
|
+
}>, undefined>;
|
|
418
643
|
'pfo.email.sync-threads': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
419
644
|
labelIds: {
|
|
420
645
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -438,7 +663,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
438
663
|
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
439
664
|
isOptional: true;
|
|
440
665
|
};
|
|
441
|
-
}>,
|
|
666
|
+
}>, undefined>;
|
|
442
667
|
'pfo.openbanking.generate-overview': OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
443
668
|
tenantId: {
|
|
444
669
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
@@ -486,7 +711,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
486
711
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
487
712
|
isOptional: true;
|
|
488
713
|
};
|
|
489
|
-
}>,
|
|
714
|
+
}>, undefined>;
|
|
490
715
|
};
|
|
491
716
|
export {};
|
|
492
717
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,cAAc,EACpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pocket-family-office.capability.d.ts","sourceRoot":"","sources":["../src/pocket-family-office.capability.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,4BAA4B,sDAUvC,CAAC"}
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Pocket Family Office Feature Module Specification
|
|
3
|
-
*
|
|
4
|
-
* Defines the feature module for personal finance automation.
|
|
5
|
-
*/
|
|
6
|
-
import type { FeatureModuleSpec } from '@contractspec/lib.contracts';
|
|
7
1
|
/**
|
|
8
2
|
* Pocket Family Office feature module that bundles financial document
|
|
9
3
|
* management, open banking integration, and automated summaries.
|
|
10
4
|
*/
|
|
11
|
-
export declare const PocketFamilyOfficeFeature: FeatureModuleSpec;
|
|
5
|
+
export declare const PocketFamilyOfficeFeature: import("@contractspec/lib.contracts").FeatureModuleSpec;
|
|
12
6
|
//# sourceMappingURL=pocket-family-office.feature.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pocket-family-office.feature.d.ts","sourceRoot":"","sources":["../src/pocket-family-office.feature.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"pocket-family-office.feature.d.ts","sourceRoot":"","sources":["../src/pocket-family-office.feature.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,yBAAyB,yDA6CpC,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const generateFinancialSummaryWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const generateFinancialSummaryWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=generate-financial-summary.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate-financial-summary.d.ts","sourceRoot":"","sources":["../../src/workflows/generate-financial-summary.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"generate-financial-summary.d.ts","sourceRoot":"","sources":["../../src/workflows/generate-financial-summary.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,gCAAgC,oDAkD3C,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const generateOpenBankingOverviewWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const generateOpenBankingOverviewWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=generate-openbanking-overview.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate-openbanking-overview.d.ts","sourceRoot":"","sources":["../../src/workflows/generate-openbanking-overview.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"generate-openbanking-overview.d.ts","sourceRoot":"","sources":["../../src/workflows/generate-openbanking-overview.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,mCAAmC,oDAsC9C,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const ingestEmailThreadsWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const ingestEmailThreadsWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=ingest-email-threads.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ingest-email-threads.d.ts","sourceRoot":"","sources":["../../src/workflows/ingest-email-threads.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ingest-email-threads.d.ts","sourceRoot":"","sources":["../../src/workflows/ingest-email-threads.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,0BAA0B,oDAgDrC,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const processUploadedDocumentWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const processUploadedDocumentWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=process-uploaded-document.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"process-uploaded-document.d.ts","sourceRoot":"","sources":["../../src/workflows/process-uploaded-document.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"process-uploaded-document.d.ts","sourceRoot":"","sources":["../../src/workflows/process-uploaded-document.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,+BAA+B,oDA8C1C,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const refreshOpenBankingBalancesWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const refreshOpenBankingBalancesWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=refresh-openbanking-balances.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"refresh-openbanking-balances.d.ts","sourceRoot":"","sources":["../../src/workflows/refresh-openbanking-balances.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"refresh-openbanking-balances.d.ts","sourceRoot":"","sources":["../../src/workflows/refresh-openbanking-balances.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,kCAAkC,oDAoD7C,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const syncOpenBankingAccountsWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const syncOpenBankingAccountsWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=sync-openbanking-accounts.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync-openbanking-accounts.d.ts","sourceRoot":"","sources":["../../src/workflows/sync-openbanking-accounts.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sync-openbanking-accounts.d.ts","sourceRoot":"","sources":["../../src/workflows/sync-openbanking-accounts.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,+BAA+B,oDAoD1C,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const syncOpenBankingTransactionsWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const syncOpenBankingTransactionsWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=sync-openbanking-transactions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync-openbanking-transactions.d.ts","sourceRoot":"","sources":["../../src/workflows/sync-openbanking-transactions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sync-openbanking-transactions.d.ts","sourceRoot":"","sources":["../../src/workflows/sync-openbanking-transactions.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,mCAAmC,oDAoD9C,CAAC"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const upcomingPaymentsReminderWorkflow: WorkflowSpec;
|
|
1
|
+
export declare const upcomingPaymentsReminderWorkflow: import("@contractspec/lib.contracts").WorkflowSpec;
|
|
3
2
|
//# sourceMappingURL=upcoming-payments-reminder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upcoming-payments-reminder.d.ts","sourceRoot":"","sources":["../../src/workflows/upcoming-payments-reminder.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"upcoming-payments-reminder.d.ts","sourceRoot":"","sources":["../../src/workflows/upcoming-payments-reminder.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,gCAAgC,oDAqD3C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.pocket-family-office",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.0",
|
|
4
4
|
"description": "Pocket Family Office example - personal finance automation with open banking",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"lint:check": "eslint src"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@contractspec/lib.knowledge": "1.
|
|
30
|
-
"@contractspec/lib.contracts": "1.
|
|
31
|
-
"@contractspec/lib.schema": "1.
|
|
29
|
+
"@contractspec/lib.knowledge": "1.47.0",
|
|
30
|
+
"@contractspec/lib.contracts": "1.47.0",
|
|
31
|
+
"@contractspec/lib.schema": "1.47.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@contractspec/tool.typescript": "1.
|
|
35
|
-
"@contractspec/tool.tsdown": "1.
|
|
34
|
+
"@contractspec/tool.typescript": "1.47.0",
|
|
35
|
+
"@contractspec/tool.tsdown": "1.47.0",
|
|
36
36
|
"typescript": "^5.9.3"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|