@deepintel-ltd/farmpro-contracts 1.23.0 → 1.23.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/dist/routes/categories.routes.d.ts +26 -26
- package/dist/routes/commodity-deals.routes.d.ts +42 -42
- package/dist/routes/crop-profile.routes.d.ts +8 -8
- package/dist/routes/farm-enterprises.routes.d.ts +395 -0
- package/dist/routes/farm-enterprises.routes.d.ts.map +1 -1
- package/dist/routes/farm-enterprises.routes.js +14 -1
- package/dist/routes/farms.routes.d.ts +73 -20
- package/dist/routes/farms.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +96 -96
- package/dist/routes/field-monitoring.routes.d.ts +2 -2
- package/dist/routes/finance.routes.d.ts +8 -8
- package/dist/routes/invoices.routes.d.ts +63 -60
- package/dist/routes/invoices.routes.d.ts.map +1 -1
- package/dist/routes/invoices.routes.js +4 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +2 -2
- package/dist/routes/notifications.routes.d.ts +12 -12
- package/dist/routes/organizations.routes.d.ts +90 -47
- package/dist/routes/organizations.routes.d.ts.map +1 -1
- package/dist/routes/purchase-orders.routes.d.ts +9 -9
- package/dist/routes/suppliers.routes.d.ts +96 -96
- package/dist/routes/team-payments.routes.d.ts +105 -105
- package/dist/routes/team.routes.d.ts +125 -25
- package/dist/routes/team.routes.d.ts.map +1 -1
- package/dist/routes/trade-cash-events.routes.d.ts +46 -46
- package/dist/routes/waybills.routes.d.ts +61 -57
- package/dist/routes/waybills.routes.d.ts.map +1 -1
- package/dist/routes/waybills.routes.js +4 -1
- package/dist/schemas/categories.schemas.d.ts +21 -21
- package/dist/schemas/commodity-deals.schemas.d.ts +18 -18
- package/dist/schemas/crop-profile.schemas.d.ts +12 -12
- package/dist/schemas/farm-enterprises.schemas.d.ts +185 -0
- package/dist/schemas/farm-enterprises.schemas.d.ts.map +1 -1
- package/dist/schemas/farm-enterprises.schemas.js +21 -0
- package/dist/schemas/farms.schemas.d.ts +121 -19
- package/dist/schemas/farms.schemas.d.ts.map +1 -1
- package/dist/schemas/farms.schemas.js +15 -1
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/field-monitoring.schemas.d.ts +2 -2
- package/dist/schemas/finance.schemas.d.ts +8 -8
- package/dist/schemas/invoices.schemas.d.ts +39 -39
- package/dist/schemas/notifications.schemas.d.ts +18 -18
- package/dist/schemas/organizations.schemas.d.ts +105 -46
- package/dist/schemas/organizations.schemas.d.ts.map +1 -1
- package/dist/schemas/organizations.schemas.js +8 -1
- package/dist/schemas/purchase-orders.schemas.d.ts +9 -9
- package/dist/schemas/suppliers.schemas.d.ts +96 -96
- package/dist/schemas/team-payments.schemas.d.ts +87 -87
- package/dist/schemas/team.schemas.d.ts +137 -20
- package/dist/schemas/team.schemas.d.ts.map +1 -1
- package/dist/schemas/team.schemas.js +29 -1
- package/dist/schemas/trade-cash-events.schemas.d.ts +60 -60
- package/dist/schemas/waybills.schemas.d.ts +39 -39
- package/package.json +1 -1
|
@@ -22,11 +22,11 @@ export declare const tradeCashEventAttributesSchema: z.ZodObject<{
|
|
|
22
22
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
23
23
|
createdAt: string;
|
|
24
24
|
updatedAt: string;
|
|
25
|
+
organizationId: string;
|
|
25
26
|
currency: string;
|
|
26
27
|
occurredAt: string;
|
|
27
28
|
amount: number;
|
|
28
|
-
|
|
29
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
29
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
30
30
|
partyId: string;
|
|
31
31
|
method?: string | null | undefined;
|
|
32
32
|
notes?: string | null | undefined;
|
|
@@ -38,10 +38,10 @@ export declare const tradeCashEventAttributesSchema: z.ZodObject<{
|
|
|
38
38
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
39
39
|
createdAt: string;
|
|
40
40
|
updatedAt: string;
|
|
41
|
+
organizationId: string;
|
|
41
42
|
occurredAt: string;
|
|
42
43
|
amount: number;
|
|
43
|
-
|
|
44
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
44
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
45
45
|
partyId: string;
|
|
46
46
|
method?: string | null | undefined;
|
|
47
47
|
currency?: string | undefined;
|
|
@@ -69,7 +69,7 @@ export declare const createTradeCashEventAttributesSchema: z.ZodObject<{
|
|
|
69
69
|
currency: string;
|
|
70
70
|
occurredAt: string;
|
|
71
71
|
amount: number;
|
|
72
|
-
partyType: "
|
|
72
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
73
73
|
partyId: string;
|
|
74
74
|
method?: string | null | undefined;
|
|
75
75
|
notes?: string | null | undefined;
|
|
@@ -81,7 +81,7 @@ export declare const createTradeCashEventAttributesSchema: z.ZodObject<{
|
|
|
81
81
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
82
82
|
occurredAt: string;
|
|
83
83
|
amount: number;
|
|
84
|
-
partyType: "
|
|
84
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
85
85
|
partyId: string;
|
|
86
86
|
method?: string | null | undefined;
|
|
87
87
|
currency?: string | undefined;
|
|
@@ -115,11 +115,11 @@ export declare const tradeCashEventResourceSchema: z.ZodObject<{
|
|
|
115
115
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
116
116
|
createdAt: string;
|
|
117
117
|
updatedAt: string;
|
|
118
|
+
organizationId: string;
|
|
118
119
|
currency: string;
|
|
119
120
|
occurredAt: string;
|
|
120
121
|
amount: number;
|
|
121
|
-
|
|
122
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
122
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
123
123
|
partyId: string;
|
|
124
124
|
method?: string | null | undefined;
|
|
125
125
|
notes?: string | null | undefined;
|
|
@@ -131,10 +131,10 @@ export declare const tradeCashEventResourceSchema: z.ZodObject<{
|
|
|
131
131
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
132
132
|
createdAt: string;
|
|
133
133
|
updatedAt: string;
|
|
134
|
+
organizationId: string;
|
|
134
135
|
occurredAt: string;
|
|
135
136
|
amount: number;
|
|
136
|
-
|
|
137
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
137
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
138
138
|
partyId: string;
|
|
139
139
|
method?: string | null | undefined;
|
|
140
140
|
currency?: string | undefined;
|
|
@@ -154,11 +154,11 @@ export declare const tradeCashEventResourceSchema: z.ZodObject<{
|
|
|
154
154
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
155
155
|
createdAt: string;
|
|
156
156
|
updatedAt: string;
|
|
157
|
+
organizationId: string;
|
|
157
158
|
currency: string;
|
|
158
159
|
occurredAt: string;
|
|
159
160
|
amount: number;
|
|
160
|
-
|
|
161
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
161
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
162
162
|
partyId: string;
|
|
163
163
|
method?: string | null | undefined;
|
|
164
164
|
notes?: string | null | undefined;
|
|
@@ -177,10 +177,10 @@ export declare const tradeCashEventResourceSchema: z.ZodObject<{
|
|
|
177
177
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
178
178
|
createdAt: string;
|
|
179
179
|
updatedAt: string;
|
|
180
|
+
organizationId: string;
|
|
180
181
|
occurredAt: string;
|
|
181
182
|
amount: number;
|
|
182
|
-
|
|
183
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
183
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
184
184
|
partyId: string;
|
|
185
185
|
method?: string | null | undefined;
|
|
186
186
|
currency?: string | undefined;
|
|
@@ -219,11 +219,11 @@ export declare const tradeCashEventResponseSchema: z.ZodObject<{
|
|
|
219
219
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
220
220
|
createdAt: string;
|
|
221
221
|
updatedAt: string;
|
|
222
|
+
organizationId: string;
|
|
222
223
|
currency: string;
|
|
223
224
|
occurredAt: string;
|
|
224
225
|
amount: number;
|
|
225
|
-
|
|
226
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
226
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
227
227
|
partyId: string;
|
|
228
228
|
method?: string | null | undefined;
|
|
229
229
|
notes?: string | null | undefined;
|
|
@@ -235,10 +235,10 @@ export declare const tradeCashEventResponseSchema: z.ZodObject<{
|
|
|
235
235
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
236
236
|
createdAt: string;
|
|
237
237
|
updatedAt: string;
|
|
238
|
+
organizationId: string;
|
|
238
239
|
occurredAt: string;
|
|
239
240
|
amount: number;
|
|
240
|
-
|
|
241
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
241
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
242
242
|
partyId: string;
|
|
243
243
|
method?: string | null | undefined;
|
|
244
244
|
currency?: string | undefined;
|
|
@@ -258,11 +258,11 @@ export declare const tradeCashEventResponseSchema: z.ZodObject<{
|
|
|
258
258
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
259
259
|
createdAt: string;
|
|
260
260
|
updatedAt: string;
|
|
261
|
+
organizationId: string;
|
|
261
262
|
currency: string;
|
|
262
263
|
occurredAt: string;
|
|
263
264
|
amount: number;
|
|
264
|
-
|
|
265
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
265
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
266
266
|
partyId: string;
|
|
267
267
|
method?: string | null | undefined;
|
|
268
268
|
notes?: string | null | undefined;
|
|
@@ -281,10 +281,10 @@ export declare const tradeCashEventResponseSchema: z.ZodObject<{
|
|
|
281
281
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
282
282
|
createdAt: string;
|
|
283
283
|
updatedAt: string;
|
|
284
|
+
organizationId: string;
|
|
284
285
|
occurredAt: string;
|
|
285
286
|
amount: number;
|
|
286
|
-
|
|
287
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
287
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
288
288
|
partyId: string;
|
|
289
289
|
method?: string | null | undefined;
|
|
290
290
|
currency?: string | undefined;
|
|
@@ -330,11 +330,11 @@ export declare const tradeCashEventResponseSchema: z.ZodObject<{
|
|
|
330
330
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
331
331
|
createdAt: string;
|
|
332
332
|
updatedAt: string;
|
|
333
|
+
organizationId: string;
|
|
333
334
|
currency: string;
|
|
334
335
|
occurredAt: string;
|
|
335
336
|
amount: number;
|
|
336
|
-
|
|
337
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
337
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
338
338
|
partyId: string;
|
|
339
339
|
method?: string | null | undefined;
|
|
340
340
|
notes?: string | null | undefined;
|
|
@@ -365,10 +365,10 @@ export declare const tradeCashEventResponseSchema: z.ZodObject<{
|
|
|
365
365
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
366
366
|
createdAt: string;
|
|
367
367
|
updatedAt: string;
|
|
368
|
+
organizationId: string;
|
|
368
369
|
occurredAt: string;
|
|
369
370
|
amount: number;
|
|
370
|
-
|
|
371
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
371
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
372
372
|
partyId: string;
|
|
373
373
|
method?: string | null | undefined;
|
|
374
374
|
currency?: string | undefined;
|
|
@@ -418,11 +418,11 @@ export declare const tradeCashEventListResponseSchema: z.ZodObject<{
|
|
|
418
418
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
419
419
|
createdAt: string;
|
|
420
420
|
updatedAt: string;
|
|
421
|
+
organizationId: string;
|
|
421
422
|
currency: string;
|
|
422
423
|
occurredAt: string;
|
|
423
424
|
amount: number;
|
|
424
|
-
|
|
425
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
425
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
426
426
|
partyId: string;
|
|
427
427
|
method?: string | null | undefined;
|
|
428
428
|
notes?: string | null | undefined;
|
|
@@ -434,10 +434,10 @@ export declare const tradeCashEventListResponseSchema: z.ZodObject<{
|
|
|
434
434
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
435
435
|
createdAt: string;
|
|
436
436
|
updatedAt: string;
|
|
437
|
+
organizationId: string;
|
|
437
438
|
occurredAt: string;
|
|
438
439
|
amount: number;
|
|
439
|
-
|
|
440
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
440
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
441
441
|
partyId: string;
|
|
442
442
|
method?: string | null | undefined;
|
|
443
443
|
currency?: string | undefined;
|
|
@@ -457,11 +457,11 @@ export declare const tradeCashEventListResponseSchema: z.ZodObject<{
|
|
|
457
457
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
458
458
|
createdAt: string;
|
|
459
459
|
updatedAt: string;
|
|
460
|
+
organizationId: string;
|
|
460
461
|
currency: string;
|
|
461
462
|
occurredAt: string;
|
|
462
463
|
amount: number;
|
|
463
|
-
|
|
464
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
464
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
465
465
|
partyId: string;
|
|
466
466
|
method?: string | null | undefined;
|
|
467
467
|
notes?: string | null | undefined;
|
|
@@ -480,10 +480,10 @@ export declare const tradeCashEventListResponseSchema: z.ZodObject<{
|
|
|
480
480
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
481
481
|
createdAt: string;
|
|
482
482
|
updatedAt: string;
|
|
483
|
+
organizationId: string;
|
|
483
484
|
occurredAt: string;
|
|
484
485
|
amount: number;
|
|
485
|
-
|
|
486
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
486
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
487
487
|
partyId: string;
|
|
488
488
|
method?: string | null | undefined;
|
|
489
489
|
currency?: string | undefined;
|
|
@@ -529,11 +529,11 @@ export declare const tradeCashEventListResponseSchema: z.ZodObject<{
|
|
|
529
529
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
530
530
|
createdAt: string;
|
|
531
531
|
updatedAt: string;
|
|
532
|
+
organizationId: string;
|
|
532
533
|
currency: string;
|
|
533
534
|
occurredAt: string;
|
|
534
535
|
amount: number;
|
|
535
|
-
|
|
536
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
536
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
537
537
|
partyId: string;
|
|
538
538
|
method?: string | null | undefined;
|
|
539
539
|
notes?: string | null | undefined;
|
|
@@ -564,10 +564,10 @@ export declare const tradeCashEventListResponseSchema: z.ZodObject<{
|
|
|
564
564
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
565
565
|
createdAt: string;
|
|
566
566
|
updatedAt: string;
|
|
567
|
+
organizationId: string;
|
|
567
568
|
occurredAt: string;
|
|
568
569
|
amount: number;
|
|
569
|
-
|
|
570
|
-
partyType: "other" | "supplier" | "buyer" | "investor" | "staff" | "broker";
|
|
570
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
571
571
|
partyId: string;
|
|
572
572
|
method?: string | null | undefined;
|
|
573
573
|
currency?: string | undefined;
|
|
@@ -612,7 +612,7 @@ export declare const createTradeCashEventSchema: z.ZodObject<{
|
|
|
612
612
|
currency: string;
|
|
613
613
|
occurredAt: string;
|
|
614
614
|
amount: number;
|
|
615
|
-
partyType: "
|
|
615
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
616
616
|
partyId: string;
|
|
617
617
|
method?: string | null | undefined;
|
|
618
618
|
notes?: string | null | undefined;
|
|
@@ -624,7 +624,7 @@ export declare const createTradeCashEventSchema: z.ZodObject<{
|
|
|
624
624
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
625
625
|
occurredAt: string;
|
|
626
626
|
amount: number;
|
|
627
|
-
partyType: "
|
|
627
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
628
628
|
partyId: string;
|
|
629
629
|
method?: string | null | undefined;
|
|
630
630
|
currency?: string | undefined;
|
|
@@ -641,7 +641,7 @@ export declare const createTradeCashEventSchema: z.ZodObject<{
|
|
|
641
641
|
currency: string;
|
|
642
642
|
occurredAt: string;
|
|
643
643
|
amount: number;
|
|
644
|
-
partyType: "
|
|
644
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
645
645
|
partyId: string;
|
|
646
646
|
method?: string | null | undefined;
|
|
647
647
|
notes?: string | null | undefined;
|
|
@@ -656,7 +656,7 @@ export declare const createTradeCashEventSchema: z.ZodObject<{
|
|
|
656
656
|
type: "capital_in" | "capital_out" | "commission_payout" | "supplier_payment" | "buyer_receipt";
|
|
657
657
|
occurredAt: string;
|
|
658
658
|
amount: number;
|
|
659
|
-
partyType: "
|
|
659
|
+
partyType: "investor" | "other" | "supplier" | "buyer" | "staff" | "broker";
|
|
660
660
|
partyId: string;
|
|
661
661
|
method?: string | null | undefined;
|
|
662
662
|
currency?: string | undefined;
|
|
@@ -1026,21 +1026,21 @@ export declare const invoicePaymentAttributesSchema: z.ZodObject<{
|
|
|
1026
1026
|
}, "strip", z.ZodTypeAny, {
|
|
1027
1027
|
createdAt: string;
|
|
1028
1028
|
updatedAt: string;
|
|
1029
|
+
organizationId: string;
|
|
1029
1030
|
currency: string;
|
|
1030
1031
|
occurredAt: string;
|
|
1031
1032
|
amount: number;
|
|
1032
1033
|
invoiceId: string;
|
|
1033
|
-
organizationId: string;
|
|
1034
1034
|
method?: string | null | undefined;
|
|
1035
1035
|
notes?: string | null | undefined;
|
|
1036
1036
|
reference?: string | null | undefined;
|
|
1037
1037
|
}, {
|
|
1038
1038
|
createdAt: string;
|
|
1039
1039
|
updatedAt: string;
|
|
1040
|
+
organizationId: string;
|
|
1040
1041
|
occurredAt: string;
|
|
1041
1042
|
amount: number;
|
|
1042
1043
|
invoiceId: string;
|
|
1043
|
-
organizationId: string;
|
|
1044
1044
|
method?: string | null | undefined;
|
|
1045
1045
|
currency?: string | undefined;
|
|
1046
1046
|
notes?: string | null | undefined;
|
|
@@ -1086,21 +1086,21 @@ export declare const invoicePaymentResourceSchema: z.ZodObject<{
|
|
|
1086
1086
|
}, "strip", z.ZodTypeAny, {
|
|
1087
1087
|
createdAt: string;
|
|
1088
1088
|
updatedAt: string;
|
|
1089
|
+
organizationId: string;
|
|
1089
1090
|
currency: string;
|
|
1090
1091
|
occurredAt: string;
|
|
1091
1092
|
amount: number;
|
|
1092
1093
|
invoiceId: string;
|
|
1093
|
-
organizationId: string;
|
|
1094
1094
|
method?: string | null | undefined;
|
|
1095
1095
|
notes?: string | null | undefined;
|
|
1096
1096
|
reference?: string | null | undefined;
|
|
1097
1097
|
}, {
|
|
1098
1098
|
createdAt: string;
|
|
1099
1099
|
updatedAt: string;
|
|
1100
|
+
organizationId: string;
|
|
1100
1101
|
occurredAt: string;
|
|
1101
1102
|
amount: number;
|
|
1102
1103
|
invoiceId: string;
|
|
1103
|
-
organizationId: string;
|
|
1104
1104
|
method?: string | null | undefined;
|
|
1105
1105
|
currency?: string | undefined;
|
|
1106
1106
|
notes?: string | null | undefined;
|
|
@@ -1115,11 +1115,11 @@ export declare const invoicePaymentResourceSchema: z.ZodObject<{
|
|
|
1115
1115
|
attributes: {
|
|
1116
1116
|
createdAt: string;
|
|
1117
1117
|
updatedAt: string;
|
|
1118
|
+
organizationId: string;
|
|
1118
1119
|
currency: string;
|
|
1119
1120
|
occurredAt: string;
|
|
1120
1121
|
amount: number;
|
|
1121
1122
|
invoiceId: string;
|
|
1122
|
-
organizationId: string;
|
|
1123
1123
|
method?: string | null | undefined;
|
|
1124
1124
|
notes?: string | null | undefined;
|
|
1125
1125
|
reference?: string | null | undefined;
|
|
@@ -1133,10 +1133,10 @@ export declare const invoicePaymentResourceSchema: z.ZodObject<{
|
|
|
1133
1133
|
attributes: {
|
|
1134
1134
|
createdAt: string;
|
|
1135
1135
|
updatedAt: string;
|
|
1136
|
+
organizationId: string;
|
|
1136
1137
|
occurredAt: string;
|
|
1137
1138
|
amount: number;
|
|
1138
1139
|
invoiceId: string;
|
|
1139
|
-
organizationId: string;
|
|
1140
1140
|
method?: string | null | undefined;
|
|
1141
1141
|
currency?: string | undefined;
|
|
1142
1142
|
notes?: string | null | undefined;
|
|
@@ -1165,21 +1165,21 @@ export declare const invoicePaymentResponseSchema: z.ZodObject<{
|
|
|
1165
1165
|
}, "strip", z.ZodTypeAny, {
|
|
1166
1166
|
createdAt: string;
|
|
1167
1167
|
updatedAt: string;
|
|
1168
|
+
organizationId: string;
|
|
1168
1169
|
currency: string;
|
|
1169
1170
|
occurredAt: string;
|
|
1170
1171
|
amount: number;
|
|
1171
1172
|
invoiceId: string;
|
|
1172
|
-
organizationId: string;
|
|
1173
1173
|
method?: string | null | undefined;
|
|
1174
1174
|
notes?: string | null | undefined;
|
|
1175
1175
|
reference?: string | null | undefined;
|
|
1176
1176
|
}, {
|
|
1177
1177
|
createdAt: string;
|
|
1178
1178
|
updatedAt: string;
|
|
1179
|
+
organizationId: string;
|
|
1179
1180
|
occurredAt: string;
|
|
1180
1181
|
amount: number;
|
|
1181
1182
|
invoiceId: string;
|
|
1182
|
-
organizationId: string;
|
|
1183
1183
|
method?: string | null | undefined;
|
|
1184
1184
|
currency?: string | undefined;
|
|
1185
1185
|
notes?: string | null | undefined;
|
|
@@ -1194,11 +1194,11 @@ export declare const invoicePaymentResponseSchema: z.ZodObject<{
|
|
|
1194
1194
|
attributes: {
|
|
1195
1195
|
createdAt: string;
|
|
1196
1196
|
updatedAt: string;
|
|
1197
|
+
organizationId: string;
|
|
1197
1198
|
currency: string;
|
|
1198
1199
|
occurredAt: string;
|
|
1199
1200
|
amount: number;
|
|
1200
1201
|
invoiceId: string;
|
|
1201
|
-
organizationId: string;
|
|
1202
1202
|
method?: string | null | undefined;
|
|
1203
1203
|
notes?: string | null | undefined;
|
|
1204
1204
|
reference?: string | null | undefined;
|
|
@@ -1212,10 +1212,10 @@ export declare const invoicePaymentResponseSchema: z.ZodObject<{
|
|
|
1212
1212
|
attributes: {
|
|
1213
1213
|
createdAt: string;
|
|
1214
1214
|
updatedAt: string;
|
|
1215
|
+
organizationId: string;
|
|
1215
1216
|
occurredAt: string;
|
|
1216
1217
|
amount: number;
|
|
1217
1218
|
invoiceId: string;
|
|
1218
|
-
organizationId: string;
|
|
1219
1219
|
method?: string | null | undefined;
|
|
1220
1220
|
currency?: string | undefined;
|
|
1221
1221
|
notes?: string | null | undefined;
|
|
@@ -1256,11 +1256,11 @@ export declare const invoicePaymentResponseSchema: z.ZodObject<{
|
|
|
1256
1256
|
attributes: {
|
|
1257
1257
|
createdAt: string;
|
|
1258
1258
|
updatedAt: string;
|
|
1259
|
+
organizationId: string;
|
|
1259
1260
|
currency: string;
|
|
1260
1261
|
occurredAt: string;
|
|
1261
1262
|
amount: number;
|
|
1262
1263
|
invoiceId: string;
|
|
1263
|
-
organizationId: string;
|
|
1264
1264
|
method?: string | null | undefined;
|
|
1265
1265
|
notes?: string | null | undefined;
|
|
1266
1266
|
reference?: string | null | undefined;
|
|
@@ -1286,10 +1286,10 @@ export declare const invoicePaymentResponseSchema: z.ZodObject<{
|
|
|
1286
1286
|
attributes: {
|
|
1287
1287
|
createdAt: string;
|
|
1288
1288
|
updatedAt: string;
|
|
1289
|
+
organizationId: string;
|
|
1289
1290
|
occurredAt: string;
|
|
1290
1291
|
amount: number;
|
|
1291
1292
|
invoiceId: string;
|
|
1292
|
-
organizationId: string;
|
|
1293
1293
|
method?: string | null | undefined;
|
|
1294
1294
|
currency?: string | undefined;
|
|
1295
1295
|
notes?: string | null | undefined;
|
|
@@ -1329,21 +1329,21 @@ export declare const invoicePaymentListResponseSchema: z.ZodObject<{
|
|
|
1329
1329
|
}, "strip", z.ZodTypeAny, {
|
|
1330
1330
|
createdAt: string;
|
|
1331
1331
|
updatedAt: string;
|
|
1332
|
+
organizationId: string;
|
|
1332
1333
|
currency: string;
|
|
1333
1334
|
occurredAt: string;
|
|
1334
1335
|
amount: number;
|
|
1335
1336
|
invoiceId: string;
|
|
1336
|
-
organizationId: string;
|
|
1337
1337
|
method?: string | null | undefined;
|
|
1338
1338
|
notes?: string | null | undefined;
|
|
1339
1339
|
reference?: string | null | undefined;
|
|
1340
1340
|
}, {
|
|
1341
1341
|
createdAt: string;
|
|
1342
1342
|
updatedAt: string;
|
|
1343
|
+
organizationId: string;
|
|
1343
1344
|
occurredAt: string;
|
|
1344
1345
|
amount: number;
|
|
1345
1346
|
invoiceId: string;
|
|
1346
|
-
organizationId: string;
|
|
1347
1347
|
method?: string | null | undefined;
|
|
1348
1348
|
currency?: string | undefined;
|
|
1349
1349
|
notes?: string | null | undefined;
|
|
@@ -1358,11 +1358,11 @@ export declare const invoicePaymentListResponseSchema: z.ZodObject<{
|
|
|
1358
1358
|
attributes: {
|
|
1359
1359
|
createdAt: string;
|
|
1360
1360
|
updatedAt: string;
|
|
1361
|
+
organizationId: string;
|
|
1361
1362
|
currency: string;
|
|
1362
1363
|
occurredAt: string;
|
|
1363
1364
|
amount: number;
|
|
1364
1365
|
invoiceId: string;
|
|
1365
|
-
organizationId: string;
|
|
1366
1366
|
method?: string | null | undefined;
|
|
1367
1367
|
notes?: string | null | undefined;
|
|
1368
1368
|
reference?: string | null | undefined;
|
|
@@ -1376,10 +1376,10 @@ export declare const invoicePaymentListResponseSchema: z.ZodObject<{
|
|
|
1376
1376
|
attributes: {
|
|
1377
1377
|
createdAt: string;
|
|
1378
1378
|
updatedAt: string;
|
|
1379
|
+
organizationId: string;
|
|
1379
1380
|
occurredAt: string;
|
|
1380
1381
|
amount: number;
|
|
1381
1382
|
invoiceId: string;
|
|
1382
|
-
organizationId: string;
|
|
1383
1383
|
method?: string | null | undefined;
|
|
1384
1384
|
currency?: string | undefined;
|
|
1385
1385
|
notes?: string | null | undefined;
|
|
@@ -1420,11 +1420,11 @@ export declare const invoicePaymentListResponseSchema: z.ZodObject<{
|
|
|
1420
1420
|
attributes: {
|
|
1421
1421
|
createdAt: string;
|
|
1422
1422
|
updatedAt: string;
|
|
1423
|
+
organizationId: string;
|
|
1423
1424
|
currency: string;
|
|
1424
1425
|
occurredAt: string;
|
|
1425
1426
|
amount: number;
|
|
1426
1427
|
invoiceId: string;
|
|
1427
|
-
organizationId: string;
|
|
1428
1428
|
method?: string | null | undefined;
|
|
1429
1429
|
notes?: string | null | undefined;
|
|
1430
1430
|
reference?: string | null | undefined;
|
|
@@ -1450,10 +1450,10 @@ export declare const invoicePaymentListResponseSchema: z.ZodObject<{
|
|
|
1450
1450
|
attributes: {
|
|
1451
1451
|
createdAt: string;
|
|
1452
1452
|
updatedAt: string;
|
|
1453
|
+
organizationId: string;
|
|
1453
1454
|
occurredAt: string;
|
|
1454
1455
|
amount: number;
|
|
1455
1456
|
invoiceId: string;
|
|
1456
|
-
organizationId: string;
|
|
1457
1457
|
method?: string | null | undefined;
|
|
1458
1458
|
currency?: string | undefined;
|
|
1459
1459
|
notes?: string | null | undefined;
|