@lssm/example.pocket-family-office 0.0.0-canary-20251220041653 → 0.0.0-canary-20251221132705
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ZodSchemaModel } from '@lssm/lib.schema';
|
|
2
|
-
import type {
|
|
2
|
+
import type { OperationSpec } from '@lssm/lib.contracts/operation';
|
|
3
3
|
declare const UploadDocumentInputModel: import("@lssm/lib.schema").SchemaModel<{
|
|
4
4
|
bucket: {
|
|
5
5
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
@@ -43,7 +43,7 @@ declare const UploadDocumentOutputModel: import("@lssm/lib.schema").SchemaModel<
|
|
|
43
43
|
}>;
|
|
44
44
|
export type UploadDocumentInput = ZodSchemaModel<typeof UploadDocumentInputModel>;
|
|
45
45
|
export type UploadDocumentOutput = ZodSchemaModel<typeof UploadDocumentOutputModel>;
|
|
46
|
-
export declare const uploadDocumentContract:
|
|
46
|
+
export declare const uploadDocumentContract: OperationSpec<typeof UploadDocumentInputModel, typeof UploadDocumentOutputModel>;
|
|
47
47
|
declare const PaymentReminderInputModel: import("@lssm/lib.schema").SchemaModel<{
|
|
48
48
|
billId: {
|
|
49
49
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
@@ -90,7 +90,7 @@ declare const PaymentReminderOutputModel: import("@lssm/lib.schema").SchemaModel
|
|
|
90
90
|
}>;
|
|
91
91
|
export type PaymentReminderInput = ZodSchemaModel<typeof PaymentReminderInputModel>;
|
|
92
92
|
export type PaymentReminderOutput = ZodSchemaModel<typeof PaymentReminderOutputModel>;
|
|
93
|
-
export declare const schedulePaymentReminderContract:
|
|
93
|
+
export declare const schedulePaymentReminderContract: OperationSpec<typeof PaymentReminderInputModel, typeof PaymentReminderOutputModel>;
|
|
94
94
|
declare const FinancialSummaryInputModel: import("@lssm/lib.schema").SchemaModel<{
|
|
95
95
|
period: {
|
|
96
96
|
type: import("@lssm/lib.schema").EnumType<[string, string, string]>;
|
|
@@ -135,7 +135,7 @@ declare const FinancialSummaryOutputModel: import("@lssm/lib.schema").SchemaMode
|
|
|
135
135
|
}>;
|
|
136
136
|
export type FinancialSummaryInput = ZodSchemaModel<typeof FinancialSummaryInputModel>;
|
|
137
137
|
export type FinancialSummaryOutput = ZodSchemaModel<typeof FinancialSummaryOutputModel>;
|
|
138
|
-
export declare const generateFinancialSummaryContract:
|
|
138
|
+
export declare const generateFinancialSummaryContract: OperationSpec<typeof FinancialSummaryInputModel, typeof FinancialSummaryOutputModel>;
|
|
139
139
|
declare const SyncEmailThreadsInputModel: import("@lssm/lib.schema").SchemaModel<{
|
|
140
140
|
labelIds: {
|
|
141
141
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
@@ -163,7 +163,7 @@ declare const SyncEmailThreadsOutputModel: import("@lssm/lib.schema").SchemaMode
|
|
|
163
163
|
}>;
|
|
164
164
|
export type SyncEmailThreadsInput = ZodSchemaModel<typeof SyncEmailThreadsInputModel>;
|
|
165
165
|
export type SyncEmailThreadsOutput = ZodSchemaModel<typeof SyncEmailThreadsOutputModel>;
|
|
166
|
-
export declare const syncEmailThreadsContract:
|
|
166
|
+
export declare const syncEmailThreadsContract: OperationSpec<typeof SyncEmailThreadsInputModel, typeof SyncEmailThreadsOutputModel>;
|
|
167
167
|
declare const SummaryDispatchInputModel: import("@lssm/lib.schema").SchemaModel<{
|
|
168
168
|
summaryId: {
|
|
169
169
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
@@ -202,7 +202,7 @@ declare const SummaryDispatchOutputModel: import("@lssm/lib.schema").SchemaModel
|
|
|
202
202
|
}>;
|
|
203
203
|
export type SummaryDispatchInput = ZodSchemaModel<typeof SummaryDispatchInputModel>;
|
|
204
204
|
export type SummaryDispatchOutput = ZodSchemaModel<typeof SummaryDispatchOutputModel>;
|
|
205
|
-
export declare const dispatchFinancialSummaryContract:
|
|
205
|
+
export declare const dispatchFinancialSummaryContract: OperationSpec<typeof SummaryDispatchInputModel, typeof SummaryDispatchOutputModel>;
|
|
206
206
|
declare const OpenBankingOverviewInputModel: import("@lssm/lib.schema").SchemaModel<{
|
|
207
207
|
tenantId: {
|
|
208
208
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
@@ -254,9 +254,9 @@ declare const OpenBankingOverviewOutputModel: import("@lssm/lib.schema").SchemaM
|
|
|
254
254
|
}>;
|
|
255
255
|
export type OpenBankingOverviewInput = ZodSchemaModel<typeof OpenBankingOverviewInputModel>;
|
|
256
256
|
export type OpenBankingOverviewOutput = ZodSchemaModel<typeof OpenBankingOverviewOutputModel>;
|
|
257
|
-
export declare const generateOpenBankingOverviewContract:
|
|
257
|
+
export declare const generateOpenBankingOverviewContract: OperationSpec<typeof OpenBankingOverviewInputModel, typeof OpenBankingOverviewOutputModel>;
|
|
258
258
|
export declare const pocketFamilyOfficeContracts: {
|
|
259
|
-
'pfo.documents.upload':
|
|
259
|
+
'pfo.documents.upload': OperationSpec<import("@lssm/lib.schema").SchemaModel<{
|
|
260
260
|
bucket: {
|
|
261
261
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
262
262
|
isOptional: false;
|
|
@@ -296,7 +296,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
296
296
|
isOptional: false;
|
|
297
297
|
};
|
|
298
298
|
}>, readonly import("@lssm/lib.contracts").EmitDecl[] | undefined>;
|
|
299
|
-
'pfo.reminders.schedule-payment':
|
|
299
|
+
'pfo.reminders.schedule-payment': OperationSpec<import("@lssm/lib.schema").SchemaModel<{
|
|
300
300
|
billId: {
|
|
301
301
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
302
302
|
isOptional: false;
|
|
@@ -339,7 +339,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
339
339
|
isOptional: false;
|
|
340
340
|
};
|
|
341
341
|
}>, readonly import("@lssm/lib.contracts").EmitDecl[] | undefined>;
|
|
342
|
-
'pfo.summary.generate':
|
|
342
|
+
'pfo.summary.generate': OperationSpec<import("@lssm/lib.schema").SchemaModel<{
|
|
343
343
|
period: {
|
|
344
344
|
type: import("@lssm/lib.schema").EnumType<[string, string, string]>;
|
|
345
345
|
isOptional: false;
|
|
@@ -380,7 +380,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
380
380
|
isOptional: false;
|
|
381
381
|
};
|
|
382
382
|
}>, readonly import("@lssm/lib.contracts").EmitDecl[] | undefined>;
|
|
383
|
-
'pfo.summary.dispatch':
|
|
383
|
+
'pfo.summary.dispatch': OperationSpec<import("@lssm/lib.schema").SchemaModel<{
|
|
384
384
|
summaryId: {
|
|
385
385
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
386
386
|
isOptional: false;
|
|
@@ -415,7 +415,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
415
415
|
isOptional: true;
|
|
416
416
|
};
|
|
417
417
|
}>, readonly import("@lssm/lib.contracts").EmitDecl[] | undefined>;
|
|
418
|
-
'pfo.email.sync-threads':
|
|
418
|
+
'pfo.email.sync-threads': OperationSpec<import("@lssm/lib.schema").SchemaModel<{
|
|
419
419
|
labelIds: {
|
|
420
420
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
421
421
|
isOptional: false;
|
|
@@ -439,7 +439,7 @@ export declare const pocketFamilyOfficeContracts: {
|
|
|
439
439
|
isOptional: true;
|
|
440
440
|
};
|
|
441
441
|
}>, readonly import("@lssm/lib.contracts").EmitDecl[] | undefined>;
|
|
442
|
-
'pfo.openbanking.generate-overview':
|
|
442
|
+
'pfo.openbanking.generate-overview': OperationSpec<import("@lssm/lib.schema").SchemaModel<{
|
|
443
443
|
tenantId: {
|
|
444
444
|
type: import("@lssm/lib.schema").FieldType<string, string>;
|
|
445
445
|
isOptional: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,cAAc,EACpB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.pocket-family-office",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251221132705",
|
|
4
4
|
"description": "Pocket Family Office example - personal finance automation with open banking",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"lint:check": "eslint src"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@lssm/lib.knowledge": "0.0.0-canary-
|
|
22
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
23
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
21
|
+
"@lssm/lib.knowledge": "0.0.0-canary-20251221132705",
|
|
22
|
+
"@lssm/lib.schema": "0.0.0-canary-20251221132705",
|
|
23
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251221132705",
|
|
24
24
|
"zod": "^4.1.13"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
28
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
27
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251221132705",
|
|
28
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251221132705",
|
|
29
29
|
"typescript": "^5.9.3"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|