@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
|
@@ -23,13 +23,13 @@ export declare const companyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
createdAt: string;
|
|
25
25
|
updatedAt: string;
|
|
26
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
27
26
|
organizationId: string;
|
|
28
|
-
isDefault: boolean;
|
|
29
|
-
label: string;
|
|
30
27
|
bankName: string;
|
|
31
28
|
accountNumber: string;
|
|
32
29
|
accountName: string;
|
|
30
|
+
isDefault: boolean;
|
|
31
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
32
|
+
label: string;
|
|
33
33
|
isActive: boolean;
|
|
34
34
|
providerAccountId: string | null;
|
|
35
35
|
dailyLimit: number | null;
|
|
@@ -40,13 +40,13 @@ export declare const companyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
40
40
|
}, {
|
|
41
41
|
createdAt: string;
|
|
42
42
|
updatedAt: string;
|
|
43
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
44
43
|
organizationId: string;
|
|
45
|
-
isDefault: boolean;
|
|
46
|
-
label: string;
|
|
47
44
|
bankName: string;
|
|
48
45
|
accountNumber: string;
|
|
49
46
|
accountName: string;
|
|
47
|
+
isDefault: boolean;
|
|
48
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
49
|
+
label: string;
|
|
50
50
|
isActive: boolean;
|
|
51
51
|
providerAccountId: string | null;
|
|
52
52
|
dailyLimit: number | null;
|
|
@@ -68,23 +68,23 @@ export declare const createCompanyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
68
68
|
dailyLimit: z.ZodOptional<z.ZodNumber>;
|
|
69
69
|
monthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
70
70
|
}, "strip", z.ZodTypeAny, {
|
|
71
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
72
|
-
isDefault: boolean;
|
|
73
|
-
label: string;
|
|
74
71
|
bankName: string;
|
|
75
72
|
accountNumber: string;
|
|
76
73
|
accountName: string;
|
|
74
|
+
isDefault: boolean;
|
|
75
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
76
|
+
label: string;
|
|
77
77
|
isActive: boolean;
|
|
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
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
84
|
-
label: string;
|
|
85
83
|
bankName: string;
|
|
86
84
|
accountNumber: string;
|
|
87
85
|
accountName: string;
|
|
86
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
87
|
+
label: string;
|
|
88
88
|
isDefault?: boolean | undefined;
|
|
89
89
|
isActive?: boolean | undefined;
|
|
90
90
|
providerAccountId?: string | undefined;
|
|
@@ -105,24 +105,24 @@ export declare const updateCompanyPaymentAccountAttributesSchema: z.ZodObject<{
|
|
|
105
105
|
dailyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
106
106
|
monthlyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
|
-
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
109
|
-
isDefault?: boolean | undefined;
|
|
110
|
-
label?: string | undefined;
|
|
111
108
|
bankName?: string | undefined;
|
|
112
109
|
accountNumber?: string | undefined;
|
|
113
110
|
accountName?: string | undefined;
|
|
111
|
+
isDefault?: boolean | undefined;
|
|
112
|
+
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
113
|
+
label?: string | undefined;
|
|
114
114
|
isActive?: boolean | 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
|
-
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
121
|
-
isDefault?: boolean | undefined;
|
|
122
|
-
label?: string | undefined;
|
|
123
120
|
bankName?: string | undefined;
|
|
124
121
|
accountNumber?: string | undefined;
|
|
125
122
|
accountName?: string | undefined;
|
|
123
|
+
isDefault?: boolean | undefined;
|
|
124
|
+
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
125
|
+
label?: string | undefined;
|
|
126
126
|
isActive?: boolean | undefined;
|
|
127
127
|
providerAccountId?: string | undefined;
|
|
128
128
|
dailyLimit?: number | undefined;
|
|
@@ -144,23 +144,23 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
144
144
|
dailyLimit: z.ZodOptional<z.ZodNumber>;
|
|
145
145
|
monthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
146
146
|
}, "strip", z.ZodTypeAny, {
|
|
147
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
148
|
-
isDefault: boolean;
|
|
149
|
-
label: string;
|
|
150
147
|
bankName: string;
|
|
151
148
|
accountNumber: string;
|
|
152
149
|
accountName: string;
|
|
150
|
+
isDefault: boolean;
|
|
151
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
152
|
+
label: string;
|
|
153
153
|
isActive: boolean;
|
|
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
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
160
|
-
label: string;
|
|
161
159
|
bankName: string;
|
|
162
160
|
accountNumber: string;
|
|
163
161
|
accountName: string;
|
|
162
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
163
|
+
label: string;
|
|
164
164
|
isDefault?: boolean | undefined;
|
|
165
165
|
isActive?: boolean | undefined;
|
|
166
166
|
providerAccountId?: string | undefined;
|
|
@@ -171,12 +171,12 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
171
171
|
}, "strip", z.ZodTypeAny, {
|
|
172
172
|
type: "company-payment-accounts";
|
|
173
173
|
attributes: {
|
|
174
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
175
|
-
isDefault: boolean;
|
|
176
|
-
label: string;
|
|
177
174
|
bankName: string;
|
|
178
175
|
accountNumber: string;
|
|
179
176
|
accountName: string;
|
|
177
|
+
isDefault: boolean;
|
|
178
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
179
|
+
label: string;
|
|
180
180
|
isActive: boolean;
|
|
181
181
|
providerAccountId?: string | undefined;
|
|
182
182
|
dailyLimit?: number | undefined;
|
|
@@ -186,11 +186,11 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
186
186
|
}, {
|
|
187
187
|
type: "company-payment-accounts";
|
|
188
188
|
attributes: {
|
|
189
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
190
|
-
label: string;
|
|
191
189
|
bankName: string;
|
|
192
190
|
accountNumber: string;
|
|
193
191
|
accountName: string;
|
|
192
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
193
|
+
label: string;
|
|
194
194
|
isDefault?: boolean | undefined;
|
|
195
195
|
isActive?: boolean | undefined;
|
|
196
196
|
providerAccountId?: string | undefined;
|
|
@@ -215,24 +215,24 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
215
215
|
dailyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
216
216
|
monthlyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
217
217
|
}, "strip", z.ZodTypeAny, {
|
|
218
|
-
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
219
|
-
isDefault?: boolean | undefined;
|
|
220
|
-
label?: string | undefined;
|
|
221
218
|
bankName?: string | undefined;
|
|
222
219
|
accountNumber?: string | undefined;
|
|
223
220
|
accountName?: string | undefined;
|
|
221
|
+
isDefault?: boolean | undefined;
|
|
222
|
+
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
223
|
+
label?: string | undefined;
|
|
224
224
|
isActive?: boolean | 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
|
-
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
231
|
-
isDefault?: boolean | undefined;
|
|
232
|
-
label?: string | undefined;
|
|
233
230
|
bankName?: string | undefined;
|
|
234
231
|
accountNumber?: string | undefined;
|
|
235
232
|
accountName?: string | undefined;
|
|
233
|
+
isDefault?: boolean | undefined;
|
|
234
|
+
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
235
|
+
label?: string | undefined;
|
|
236
236
|
isActive?: boolean | undefined;
|
|
237
237
|
providerAccountId?: string | undefined;
|
|
238
238
|
dailyLimit?: number | undefined;
|
|
@@ -243,12 +243,12 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
243
243
|
type: "company-payment-accounts";
|
|
244
244
|
id: string;
|
|
245
245
|
attributes: {
|
|
246
|
-
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
247
|
-
isDefault?: boolean | undefined;
|
|
248
|
-
label?: string | undefined;
|
|
249
246
|
bankName?: string | undefined;
|
|
250
247
|
accountNumber?: string | undefined;
|
|
251
248
|
accountName?: string | undefined;
|
|
249
|
+
isDefault?: boolean | undefined;
|
|
250
|
+
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
251
|
+
label?: string | undefined;
|
|
252
252
|
isActive?: boolean | undefined;
|
|
253
253
|
providerAccountId?: string | undefined;
|
|
254
254
|
dailyLimit?: number | undefined;
|
|
@@ -259,12 +259,12 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
|
|
|
259
259
|
type: "company-payment-accounts";
|
|
260
260
|
id: string;
|
|
261
261
|
attributes: {
|
|
262
|
-
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
263
|
-
isDefault?: boolean | undefined;
|
|
264
|
-
label?: string | undefined;
|
|
265
262
|
bankName?: string | undefined;
|
|
266
263
|
accountNumber?: string | undefined;
|
|
267
264
|
accountName?: string | undefined;
|
|
265
|
+
isDefault?: boolean | undefined;
|
|
266
|
+
provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
|
|
267
|
+
label?: string | undefined;
|
|
268
268
|
isActive?: boolean | undefined;
|
|
269
269
|
providerAccountId?: string | undefined;
|
|
270
270
|
dailyLimit?: number | undefined;
|
|
@@ -296,13 +296,13 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
297
|
createdAt: string;
|
|
298
298
|
updatedAt: string;
|
|
299
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
300
299
|
organizationId: string;
|
|
301
|
-
isDefault: boolean;
|
|
302
|
-
label: string;
|
|
303
300
|
bankName: string;
|
|
304
301
|
accountNumber: string;
|
|
305
302
|
accountName: string;
|
|
303
|
+
isDefault: boolean;
|
|
304
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
305
|
+
label: string;
|
|
306
306
|
isActive: boolean;
|
|
307
307
|
providerAccountId: string | null;
|
|
308
308
|
dailyLimit: number | null;
|
|
@@ -313,13 +313,13 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
313
313
|
}, {
|
|
314
314
|
createdAt: string;
|
|
315
315
|
updatedAt: string;
|
|
316
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
317
316
|
organizationId: string;
|
|
318
|
-
isDefault: boolean;
|
|
319
|
-
label: string;
|
|
320
317
|
bankName: string;
|
|
321
318
|
accountNumber: string;
|
|
322
319
|
accountName: string;
|
|
320
|
+
isDefault: boolean;
|
|
321
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
322
|
+
label: string;
|
|
323
323
|
isActive: boolean;
|
|
324
324
|
providerAccountId: string | null;
|
|
325
325
|
dailyLimit: number | null;
|
|
@@ -337,13 +337,13 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
337
337
|
attributes: {
|
|
338
338
|
createdAt: string;
|
|
339
339
|
updatedAt: string;
|
|
340
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
341
340
|
organizationId: string;
|
|
342
|
-
isDefault: boolean;
|
|
343
|
-
label: string;
|
|
344
341
|
bankName: string;
|
|
345
342
|
accountNumber: string;
|
|
346
343
|
accountName: string;
|
|
344
|
+
isDefault: boolean;
|
|
345
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
346
|
+
label: string;
|
|
347
347
|
isActive: boolean;
|
|
348
348
|
providerAccountId: string | null;
|
|
349
349
|
dailyLimit: number | null;
|
|
@@ -361,13 +361,13 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
|
|
|
361
361
|
attributes: {
|
|
362
362
|
createdAt: string;
|
|
363
363
|
updatedAt: string;
|
|
364
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
365
364
|
organizationId: string;
|
|
366
|
-
isDefault: boolean;
|
|
367
|
-
label: string;
|
|
368
365
|
bankName: string;
|
|
369
366
|
accountNumber: string;
|
|
370
367
|
accountName: string;
|
|
368
|
+
isDefault: boolean;
|
|
369
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
370
|
+
label: string;
|
|
371
371
|
isActive: boolean;
|
|
372
372
|
providerAccountId: string | null;
|
|
373
373
|
dailyLimit: number | null;
|
|
@@ -405,13 +405,13 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
405
405
|
}, "strip", z.ZodTypeAny, {
|
|
406
406
|
createdAt: string;
|
|
407
407
|
updatedAt: string;
|
|
408
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
409
408
|
organizationId: string;
|
|
410
|
-
isDefault: boolean;
|
|
411
|
-
label: string;
|
|
412
409
|
bankName: string;
|
|
413
410
|
accountNumber: string;
|
|
414
411
|
accountName: string;
|
|
412
|
+
isDefault: boolean;
|
|
413
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
414
|
+
label: string;
|
|
415
415
|
isActive: boolean;
|
|
416
416
|
providerAccountId: string | null;
|
|
417
417
|
dailyLimit: number | null;
|
|
@@ -422,13 +422,13 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
422
422
|
}, {
|
|
423
423
|
createdAt: string;
|
|
424
424
|
updatedAt: string;
|
|
425
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
426
425
|
organizationId: string;
|
|
427
|
-
isDefault: boolean;
|
|
428
|
-
label: string;
|
|
429
426
|
bankName: string;
|
|
430
427
|
accountNumber: string;
|
|
431
428
|
accountName: string;
|
|
429
|
+
isDefault: boolean;
|
|
430
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
431
|
+
label: string;
|
|
432
432
|
isActive: boolean;
|
|
433
433
|
providerAccountId: string | null;
|
|
434
434
|
dailyLimit: number | null;
|
|
@@ -446,13 +446,13 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
446
446
|
attributes: {
|
|
447
447
|
createdAt: string;
|
|
448
448
|
updatedAt: string;
|
|
449
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
450
449
|
organizationId: string;
|
|
451
|
-
isDefault: boolean;
|
|
452
|
-
label: string;
|
|
453
450
|
bankName: string;
|
|
454
451
|
accountNumber: string;
|
|
455
452
|
accountName: string;
|
|
453
|
+
isDefault: boolean;
|
|
454
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
455
|
+
label: string;
|
|
456
456
|
isActive: boolean;
|
|
457
457
|
providerAccountId: string | null;
|
|
458
458
|
dailyLimit: number | null;
|
|
@@ -470,13 +470,13 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
470
470
|
attributes: {
|
|
471
471
|
createdAt: string;
|
|
472
472
|
updatedAt: string;
|
|
473
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
474
473
|
organizationId: string;
|
|
475
|
-
isDefault: boolean;
|
|
476
|
-
label: string;
|
|
477
474
|
bankName: string;
|
|
478
475
|
accountNumber: string;
|
|
479
476
|
accountName: string;
|
|
477
|
+
isDefault: boolean;
|
|
478
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
479
|
+
label: string;
|
|
480
480
|
isActive: boolean;
|
|
481
481
|
providerAccountId: string | null;
|
|
482
482
|
dailyLimit: number | null;
|
|
@@ -520,13 +520,13 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
520
520
|
attributes: {
|
|
521
521
|
createdAt: string;
|
|
522
522
|
updatedAt: string;
|
|
523
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
524
523
|
organizationId: string;
|
|
525
|
-
isDefault: boolean;
|
|
526
|
-
label: string;
|
|
527
524
|
bankName: string;
|
|
528
525
|
accountNumber: string;
|
|
529
526
|
accountName: string;
|
|
527
|
+
isDefault: boolean;
|
|
528
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
529
|
+
label: string;
|
|
530
530
|
isActive: boolean;
|
|
531
531
|
providerAccountId: string | null;
|
|
532
532
|
dailyLimit: number | null;
|
|
@@ -556,13 +556,13 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
|
|
|
556
556
|
attributes: {
|
|
557
557
|
createdAt: string;
|
|
558
558
|
updatedAt: string;
|
|
559
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
560
559
|
organizationId: string;
|
|
561
|
-
isDefault: boolean;
|
|
562
|
-
label: string;
|
|
563
560
|
bankName: string;
|
|
564
561
|
accountNumber: string;
|
|
565
562
|
accountName: string;
|
|
563
|
+
isDefault: boolean;
|
|
564
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
565
|
+
label: string;
|
|
566
566
|
isActive: boolean;
|
|
567
567
|
providerAccountId: string | null;
|
|
568
568
|
dailyLimit: number | null;
|
|
@@ -611,13 +611,13 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
611
611
|
}, "strip", z.ZodTypeAny, {
|
|
612
612
|
createdAt: string;
|
|
613
613
|
updatedAt: string;
|
|
614
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
615
614
|
organizationId: string;
|
|
616
|
-
isDefault: boolean;
|
|
617
|
-
label: string;
|
|
618
615
|
bankName: string;
|
|
619
616
|
accountNumber: string;
|
|
620
617
|
accountName: string;
|
|
618
|
+
isDefault: boolean;
|
|
619
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
620
|
+
label: string;
|
|
621
621
|
isActive: boolean;
|
|
622
622
|
providerAccountId: string | null;
|
|
623
623
|
dailyLimit: number | null;
|
|
@@ -628,13 +628,13 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
628
628
|
}, {
|
|
629
629
|
createdAt: string;
|
|
630
630
|
updatedAt: string;
|
|
631
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
632
631
|
organizationId: string;
|
|
633
|
-
isDefault: boolean;
|
|
634
|
-
label: string;
|
|
635
632
|
bankName: string;
|
|
636
633
|
accountNumber: string;
|
|
637
634
|
accountName: string;
|
|
635
|
+
isDefault: boolean;
|
|
636
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
637
|
+
label: string;
|
|
638
638
|
isActive: boolean;
|
|
639
639
|
providerAccountId: string | null;
|
|
640
640
|
dailyLimit: number | null;
|
|
@@ -652,13 +652,13 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
652
652
|
attributes: {
|
|
653
653
|
createdAt: string;
|
|
654
654
|
updatedAt: string;
|
|
655
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
656
655
|
organizationId: string;
|
|
657
|
-
isDefault: boolean;
|
|
658
|
-
label: string;
|
|
659
656
|
bankName: string;
|
|
660
657
|
accountNumber: string;
|
|
661
658
|
accountName: string;
|
|
659
|
+
isDefault: boolean;
|
|
660
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
661
|
+
label: string;
|
|
662
662
|
isActive: boolean;
|
|
663
663
|
providerAccountId: string | null;
|
|
664
664
|
dailyLimit: number | null;
|
|
@@ -676,13 +676,13 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
676
676
|
attributes: {
|
|
677
677
|
createdAt: string;
|
|
678
678
|
updatedAt: string;
|
|
679
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
680
679
|
organizationId: string;
|
|
681
|
-
isDefault: boolean;
|
|
682
|
-
label: string;
|
|
683
680
|
bankName: string;
|
|
684
681
|
accountNumber: string;
|
|
685
682
|
accountName: string;
|
|
683
|
+
isDefault: boolean;
|
|
684
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
685
|
+
label: string;
|
|
686
686
|
isActive: boolean;
|
|
687
687
|
providerAccountId: string | null;
|
|
688
688
|
dailyLimit: number | null;
|
|
@@ -726,13 +726,13 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
726
726
|
attributes: {
|
|
727
727
|
createdAt: string;
|
|
728
728
|
updatedAt: string;
|
|
729
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
730
729
|
organizationId: string;
|
|
731
|
-
isDefault: boolean;
|
|
732
|
-
label: string;
|
|
733
730
|
bankName: string;
|
|
734
731
|
accountNumber: string;
|
|
735
732
|
accountName: string;
|
|
733
|
+
isDefault: boolean;
|
|
734
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
735
|
+
label: string;
|
|
736
736
|
isActive: boolean;
|
|
737
737
|
providerAccountId: string | null;
|
|
738
738
|
dailyLimit: number | null;
|
|
@@ -762,13 +762,13 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
|
|
|
762
762
|
attributes: {
|
|
763
763
|
createdAt: string;
|
|
764
764
|
updatedAt: string;
|
|
765
|
-
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
766
765
|
organizationId: string;
|
|
767
|
-
isDefault: boolean;
|
|
768
|
-
label: string;
|
|
769
766
|
bankName: string;
|
|
770
767
|
accountNumber: string;
|
|
771
768
|
accountName: string;
|
|
769
|
+
isDefault: boolean;
|
|
770
|
+
provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
|
|
771
|
+
label: string;
|
|
772
772
|
isActive: boolean;
|
|
773
773
|
providerAccountId: string | null;
|
|
774
774
|
dailyLimit: number | null;
|