@deepintel-ltd/farmpro-contracts 1.15.6 → 1.16.1
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/farm-updates.routes.d.ts +456 -16
- package/dist/routes/farm-updates.routes.d.ts.map +1 -1
- package/dist/routes/farm-updates.routes.js +27 -11
- package/dist/routes/live-monitor.routes.d.ts +29 -9
- package/dist/routes/live-monitor.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +169 -41
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.js +4 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +22 -22
- package/dist/routes/team-payments.routes.d.ts +36 -36
- package/dist/schemas/agents.schemas.d.ts +144 -0
- package/dist/schemas/agents.schemas.d.ts.map +1 -1
- package/dist/schemas/agents.schemas.js +35 -0
- package/dist/schemas/farm-updates.schemas.d.ts +249 -0
- package/dist/schemas/farm-updates.schemas.d.ts.map +1 -1
- package/dist/schemas/farm-updates.schemas.js +18 -0
- package/dist/schemas/live-monitor.schemas.d.ts +44 -12
- package/dist/schemas/live-monitor.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.d.ts +323 -40
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +30 -0
- package/dist/schemas/pest-disease-risk.schemas.d.ts +20 -20
- package/dist/schemas/team-payments.schemas.d.ts +30 -30
- package/package.json +1 -1
|
@@ -25,12 +25,12 @@ export declare const companyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
25
25
|
updatedAt: string;
|
|
26
26
|
organizationId: string;
|
|
27
27
|
isDefault: boolean;
|
|
28
|
+
label: string;
|
|
28
29
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
29
30
|
bankName: string;
|
|
30
31
|
accountNumber: string;
|
|
31
32
|
accountName: string;
|
|
32
33
|
isActive: boolean;
|
|
33
|
-
label: string;
|
|
34
34
|
providerAccountId: string | null;
|
|
35
35
|
dailyLimit: number | null;
|
|
36
36
|
monthlyLimit: number | null;
|
|
@@ -42,12 +42,12 @@ export declare const companyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
42
42
|
updatedAt: string;
|
|
43
43
|
organizationId: string;
|
|
44
44
|
isDefault: boolean;
|
|
45
|
+
label: string;
|
|
45
46
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
46
47
|
bankName: string;
|
|
47
48
|
accountNumber: string;
|
|
48
49
|
accountName: string;
|
|
49
50
|
isActive: boolean;
|
|
50
|
-
label: string;
|
|
51
51
|
providerAccountId: string | null;
|
|
52
52
|
dailyLimit: number | null;
|
|
53
53
|
monthlyLimit: number | null;
|
|
@@ -69,22 +69,22 @@ export declare const createCompanyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
69
69
|
monthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
70
70
|
}, "strip", z.ZodTypeAny, {
|
|
71
71
|
isDefault: boolean;
|
|
72
|
+
label: string;
|
|
72
73
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
73
74
|
bankName: string;
|
|
74
75
|
accountNumber: string;
|
|
75
76
|
accountName: string;
|
|
76
77
|
isActive: boolean;
|
|
77
|
-
label: string;
|
|
78
78
|
providerAccountId?: string | undefined;
|
|
79
79
|
dailyLimit?: number | undefined;
|
|
80
80
|
monthlyLimit?: number | undefined;
|
|
81
81
|
providerCredentials?: Record<string, unknown> | undefined;
|
|
82
82
|
}, {
|
|
83
|
+
label: string;
|
|
83
84
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
84
85
|
bankName: string;
|
|
85
86
|
accountNumber: string;
|
|
86
87
|
accountName: string;
|
|
87
|
-
label: string;
|
|
88
88
|
isDefault?: boolean | undefined;
|
|
89
89
|
isActive?: boolean | undefined;
|
|
90
90
|
providerAccountId?: string | undefined;
|
|
@@ -106,24 +106,24 @@ export declare const updateCompanyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
106
106
|
monthlyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
108
|
isDefault?: boolean | undefined;
|
|
109
|
+
label?: string | undefined;
|
|
109
110
|
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
110
111
|
bankName?: string | undefined;
|
|
111
112
|
accountNumber?: string | undefined;
|
|
112
113
|
accountName?: string | undefined;
|
|
113
114
|
isActive?: boolean | undefined;
|
|
114
|
-
label?: string | undefined;
|
|
115
115
|
providerAccountId?: string | undefined;
|
|
116
116
|
dailyLimit?: number | undefined;
|
|
117
117
|
monthlyLimit?: number | undefined;
|
|
118
118
|
providerCredentials?: Record<string, unknown> | undefined;
|
|
119
119
|
}, {
|
|
120
120
|
isDefault?: boolean | undefined;
|
|
121
|
+
label?: string | undefined;
|
|
121
122
|
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
122
123
|
bankName?: string | undefined;
|
|
123
124
|
accountNumber?: string | undefined;
|
|
124
125
|
accountName?: string | undefined;
|
|
125
126
|
isActive?: boolean | undefined;
|
|
126
|
-
label?: string | undefined;
|
|
127
127
|
providerAccountId?: string | undefined;
|
|
128
128
|
dailyLimit?: number | undefined;
|
|
129
129
|
monthlyLimit?: number | undefined;
|
|
@@ -145,22 +145,22 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
145
145
|
monthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
146
146
|
}, "strip", z.ZodTypeAny, {
|
|
147
147
|
isDefault: boolean;
|
|
148
|
+
label: string;
|
|
148
149
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
149
150
|
bankName: string;
|
|
150
151
|
accountNumber: string;
|
|
151
152
|
accountName: string;
|
|
152
153
|
isActive: boolean;
|
|
153
|
-
label: string;
|
|
154
154
|
providerAccountId?: string | undefined;
|
|
155
155
|
dailyLimit?: number | undefined;
|
|
156
156
|
monthlyLimit?: number | undefined;
|
|
157
157
|
providerCredentials?: Record<string, unknown> | undefined;
|
|
158
158
|
}, {
|
|
159
|
+
label: string;
|
|
159
160
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
160
161
|
bankName: string;
|
|
161
162
|
accountNumber: string;
|
|
162
163
|
accountName: string;
|
|
163
|
-
label: string;
|
|
164
164
|
isDefault?: boolean | undefined;
|
|
165
165
|
isActive?: boolean | undefined;
|
|
166
166
|
providerAccountId?: string | undefined;
|
|
@@ -172,12 +172,12 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
172
172
|
type: "company-payment-accounts";
|
|
173
173
|
attributes: {
|
|
174
174
|
isDefault: boolean;
|
|
175
|
+
label: string;
|
|
175
176
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
176
177
|
bankName: string;
|
|
177
178
|
accountNumber: string;
|
|
178
179
|
accountName: string;
|
|
179
180
|
isActive: boolean;
|
|
180
|
-
label: string;
|
|
181
181
|
providerAccountId?: string | undefined;
|
|
182
182
|
dailyLimit?: number | undefined;
|
|
183
183
|
monthlyLimit?: number | undefined;
|
|
@@ -186,11 +186,11 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
186
186
|
}, {
|
|
187
187
|
type: "company-payment-accounts";
|
|
188
188
|
attributes: {
|
|
189
|
+
label: string;
|
|
189
190
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
190
191
|
bankName: string;
|
|
191
192
|
accountNumber: string;
|
|
192
193
|
accountName: string;
|
|
193
|
-
label: string;
|
|
194
194
|
isDefault?: boolean | undefined;
|
|
195
195
|
isActive?: boolean | undefined;
|
|
196
196
|
providerAccountId?: string | undefined;
|
|
@@ -216,24 +216,24 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
216
216
|
monthlyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
217
217
|
}, "strip", z.ZodTypeAny, {
|
|
218
218
|
isDefault?: boolean | undefined;
|
|
219
|
+
label?: string | undefined;
|
|
219
220
|
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
220
221
|
bankName?: string | undefined;
|
|
221
222
|
accountNumber?: string | undefined;
|
|
222
223
|
accountName?: string | undefined;
|
|
223
224
|
isActive?: boolean | undefined;
|
|
224
|
-
label?: string | undefined;
|
|
225
225
|
providerAccountId?: string | undefined;
|
|
226
226
|
dailyLimit?: number | undefined;
|
|
227
227
|
monthlyLimit?: number | undefined;
|
|
228
228
|
providerCredentials?: Record<string, unknown> | undefined;
|
|
229
229
|
}, {
|
|
230
230
|
isDefault?: boolean | undefined;
|
|
231
|
+
label?: string | undefined;
|
|
231
232
|
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
232
233
|
bankName?: string | undefined;
|
|
233
234
|
accountNumber?: string | undefined;
|
|
234
235
|
accountName?: string | undefined;
|
|
235
236
|
isActive?: boolean | undefined;
|
|
236
|
-
label?: string | undefined;
|
|
237
237
|
providerAccountId?: string | undefined;
|
|
238
238
|
dailyLimit?: number | undefined;
|
|
239
239
|
monthlyLimit?: number | undefined;
|
|
@@ -244,12 +244,12 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
244
244
|
id: string;
|
|
245
245
|
attributes: {
|
|
246
246
|
isDefault?: boolean | undefined;
|
|
247
|
+
label?: string | undefined;
|
|
247
248
|
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
248
249
|
bankName?: string | undefined;
|
|
249
250
|
accountNumber?: string | undefined;
|
|
250
251
|
accountName?: string | undefined;
|
|
251
252
|
isActive?: boolean | undefined;
|
|
252
|
-
label?: string | undefined;
|
|
253
253
|
providerAccountId?: string | undefined;
|
|
254
254
|
dailyLimit?: number | undefined;
|
|
255
255
|
monthlyLimit?: number | undefined;
|
|
@@ -260,12 +260,12 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
260
260
|
id: string;
|
|
261
261
|
attributes: {
|
|
262
262
|
isDefault?: boolean | undefined;
|
|
263
|
+
label?: string | undefined;
|
|
263
264
|
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
264
265
|
bankName?: string | undefined;
|
|
265
266
|
accountNumber?: string | undefined;
|
|
266
267
|
accountName?: string | undefined;
|
|
267
268
|
isActive?: boolean | undefined;
|
|
268
|
-
label?: string | undefined;
|
|
269
269
|
providerAccountId?: string | undefined;
|
|
270
270
|
dailyLimit?: number | undefined;
|
|
271
271
|
monthlyLimit?: number | undefined;
|
|
@@ -298,12 +298,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
298
298
|
updatedAt: string;
|
|
299
299
|
organizationId: string;
|
|
300
300
|
isDefault: boolean;
|
|
301
|
+
label: string;
|
|
301
302
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
302
303
|
bankName: string;
|
|
303
304
|
accountNumber: string;
|
|
304
305
|
accountName: string;
|
|
305
306
|
isActive: boolean;
|
|
306
|
-
label: string;
|
|
307
307
|
providerAccountId: string | null;
|
|
308
308
|
dailyLimit: number | null;
|
|
309
309
|
monthlyLimit: number | null;
|
|
@@ -315,12 +315,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
315
315
|
updatedAt: string;
|
|
316
316
|
organizationId: string;
|
|
317
317
|
isDefault: boolean;
|
|
318
|
+
label: string;
|
|
318
319
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
319
320
|
bankName: string;
|
|
320
321
|
accountNumber: string;
|
|
321
322
|
accountName: string;
|
|
322
323
|
isActive: boolean;
|
|
323
|
-
label: string;
|
|
324
324
|
providerAccountId: string | null;
|
|
325
325
|
dailyLimit: number | null;
|
|
326
326
|
monthlyLimit: number | null;
|
|
@@ -339,12 +339,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
339
339
|
updatedAt: string;
|
|
340
340
|
organizationId: string;
|
|
341
341
|
isDefault: boolean;
|
|
342
|
+
label: string;
|
|
342
343
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
343
344
|
bankName: string;
|
|
344
345
|
accountNumber: string;
|
|
345
346
|
accountName: string;
|
|
346
347
|
isActive: boolean;
|
|
347
|
-
label: string;
|
|
348
348
|
providerAccountId: string | null;
|
|
349
349
|
dailyLimit: number | null;
|
|
350
350
|
monthlyLimit: number | null;
|
|
@@ -363,12 +363,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
363
363
|
updatedAt: string;
|
|
364
364
|
organizationId: string;
|
|
365
365
|
isDefault: boolean;
|
|
366
|
+
label: string;
|
|
366
367
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
367
368
|
bankName: string;
|
|
368
369
|
accountNumber: string;
|
|
369
370
|
accountName: string;
|
|
370
371
|
isActive: boolean;
|
|
371
|
-
label: string;
|
|
372
372
|
providerAccountId: string | null;
|
|
373
373
|
dailyLimit: number | null;
|
|
374
374
|
monthlyLimit: number | null;
|
|
@@ -407,12 +407,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
407
407
|
updatedAt: string;
|
|
408
408
|
organizationId: string;
|
|
409
409
|
isDefault: boolean;
|
|
410
|
+
label: string;
|
|
410
411
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
411
412
|
bankName: string;
|
|
412
413
|
accountNumber: string;
|
|
413
414
|
accountName: string;
|
|
414
415
|
isActive: boolean;
|
|
415
|
-
label: string;
|
|
416
416
|
providerAccountId: string | null;
|
|
417
417
|
dailyLimit: number | null;
|
|
418
418
|
monthlyLimit: number | null;
|
|
@@ -424,12 +424,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
424
424
|
updatedAt: string;
|
|
425
425
|
organizationId: string;
|
|
426
426
|
isDefault: boolean;
|
|
427
|
+
label: string;
|
|
427
428
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
428
429
|
bankName: string;
|
|
429
430
|
accountNumber: string;
|
|
430
431
|
accountName: string;
|
|
431
432
|
isActive: boolean;
|
|
432
|
-
label: string;
|
|
433
433
|
providerAccountId: string | null;
|
|
434
434
|
dailyLimit: number | null;
|
|
435
435
|
monthlyLimit: number | null;
|
|
@@ -448,12 +448,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
448
448
|
updatedAt: string;
|
|
449
449
|
organizationId: string;
|
|
450
450
|
isDefault: boolean;
|
|
451
|
+
label: string;
|
|
451
452
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
452
453
|
bankName: string;
|
|
453
454
|
accountNumber: string;
|
|
454
455
|
accountName: string;
|
|
455
456
|
isActive: boolean;
|
|
456
|
-
label: string;
|
|
457
457
|
providerAccountId: string | null;
|
|
458
458
|
dailyLimit: number | null;
|
|
459
459
|
monthlyLimit: number | null;
|
|
@@ -472,12 +472,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
472
472
|
updatedAt: string;
|
|
473
473
|
organizationId: string;
|
|
474
474
|
isDefault: boolean;
|
|
475
|
+
label: string;
|
|
475
476
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
476
477
|
bankName: string;
|
|
477
478
|
accountNumber: string;
|
|
478
479
|
accountName: string;
|
|
479
480
|
isActive: boolean;
|
|
480
|
-
label: string;
|
|
481
481
|
providerAccountId: string | null;
|
|
482
482
|
dailyLimit: number | null;
|
|
483
483
|
monthlyLimit: number | null;
|
|
@@ -522,12 +522,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
522
522
|
updatedAt: string;
|
|
523
523
|
organizationId: string;
|
|
524
524
|
isDefault: boolean;
|
|
525
|
+
label: string;
|
|
525
526
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
526
527
|
bankName: string;
|
|
527
528
|
accountNumber: string;
|
|
528
529
|
accountName: string;
|
|
529
530
|
isActive: boolean;
|
|
530
|
-
label: string;
|
|
531
531
|
providerAccountId: string | null;
|
|
532
532
|
dailyLimit: number | null;
|
|
533
533
|
monthlyLimit: number | null;
|
|
@@ -558,12 +558,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
558
558
|
updatedAt: string;
|
|
559
559
|
organizationId: string;
|
|
560
560
|
isDefault: boolean;
|
|
561
|
+
label: string;
|
|
561
562
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
562
563
|
bankName: string;
|
|
563
564
|
accountNumber: string;
|
|
564
565
|
accountName: string;
|
|
565
566
|
isActive: boolean;
|
|
566
|
-
label: string;
|
|
567
567
|
providerAccountId: string | null;
|
|
568
568
|
dailyLimit: number | null;
|
|
569
569
|
monthlyLimit: number | null;
|
|
@@ -613,12 +613,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
613
613
|
updatedAt: string;
|
|
614
614
|
organizationId: string;
|
|
615
615
|
isDefault: boolean;
|
|
616
|
+
label: string;
|
|
616
617
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
617
618
|
bankName: string;
|
|
618
619
|
accountNumber: string;
|
|
619
620
|
accountName: string;
|
|
620
621
|
isActive: boolean;
|
|
621
|
-
label: string;
|
|
622
622
|
providerAccountId: string | null;
|
|
623
623
|
dailyLimit: number | null;
|
|
624
624
|
monthlyLimit: number | null;
|
|
@@ -630,12 +630,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
630
630
|
updatedAt: string;
|
|
631
631
|
organizationId: string;
|
|
632
632
|
isDefault: boolean;
|
|
633
|
+
label: string;
|
|
633
634
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
634
635
|
bankName: string;
|
|
635
636
|
accountNumber: string;
|
|
636
637
|
accountName: string;
|
|
637
638
|
isActive: boolean;
|
|
638
|
-
label: string;
|
|
639
639
|
providerAccountId: string | null;
|
|
640
640
|
dailyLimit: number | null;
|
|
641
641
|
monthlyLimit: number | null;
|
|
@@ -654,12 +654,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
654
654
|
updatedAt: string;
|
|
655
655
|
organizationId: string;
|
|
656
656
|
isDefault: boolean;
|
|
657
|
+
label: string;
|
|
657
658
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
658
659
|
bankName: string;
|
|
659
660
|
accountNumber: string;
|
|
660
661
|
accountName: string;
|
|
661
662
|
isActive: boolean;
|
|
662
|
-
label: string;
|
|
663
663
|
providerAccountId: string | null;
|
|
664
664
|
dailyLimit: number | null;
|
|
665
665
|
monthlyLimit: number | null;
|
|
@@ -678,12 +678,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
678
678
|
updatedAt: string;
|
|
679
679
|
organizationId: string;
|
|
680
680
|
isDefault: boolean;
|
|
681
|
+
label: string;
|
|
681
682
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
682
683
|
bankName: string;
|
|
683
684
|
accountNumber: string;
|
|
684
685
|
accountName: string;
|
|
685
686
|
isActive: boolean;
|
|
686
|
-
label: string;
|
|
687
687
|
providerAccountId: string | null;
|
|
688
688
|
dailyLimit: number | null;
|
|
689
689
|
monthlyLimit: number | null;
|
|
@@ -728,12 +728,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
728
728
|
updatedAt: string;
|
|
729
729
|
organizationId: string;
|
|
730
730
|
isDefault: boolean;
|
|
731
|
+
label: string;
|
|
731
732
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
732
733
|
bankName: string;
|
|
733
734
|
accountNumber: string;
|
|
734
735
|
accountName: string;
|
|
735
736
|
isActive: boolean;
|
|
736
|
-
label: string;
|
|
737
737
|
providerAccountId: string | null;
|
|
738
738
|
dailyLimit: number | null;
|
|
739
739
|
monthlyLimit: number | null;
|
|
@@ -764,12 +764,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
764
764
|
updatedAt: string;
|
|
765
765
|
organizationId: string;
|
|
766
766
|
isDefault: boolean;
|
|
767
|
+
label: string;
|
|
767
768
|
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
768
769
|
bankName: string;
|
|
769
770
|
accountNumber: string;
|
|
770
771
|
accountName: string;
|
|
771
772
|
isActive: boolean;
|
|
772
|
-
label: string;
|
|
773
773
|
providerAccountId: string | null;
|
|
774
774
|
dailyLimit: number | null;
|
|
775
775
|
monthlyLimit: number | null;
|