@temboplus/afloat 0.1.75-0 → 0.1.77-beta.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/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +7 -6
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/api/index.d.ts +0 -1
- package/dist/lib/error/error.permission.d.ts +1 -1
- package/dist/lib/query/index.d.ts +2 -0
- package/dist/lib/query/pagination/pagination.d.ts +73 -0
- package/dist/lib/query/pagination/pagination.schemas.d.ts +83 -0
- package/dist/{features → modules}/auth/auth.contract.d.ts +2 -9
- package/dist/{features → modules}/auth/auth.manager.d.ts +2 -2
- package/dist/{features → modules}/auth/auth.repository.d.ts +18 -1
- package/dist/{features → modules}/auth/auth.store.d.ts +1 -1
- package/dist/modules/auth/company-membership.model.d.ts +58 -0
- package/dist/modules/auth/index.d.ts +4 -0
- package/dist/{features → modules}/auth/storage/client-store.d.ts +1 -1
- package/dist/{features → modules}/auth/storage/types.d.ts +1 -1
- package/dist/modules/auth/user.model.d.ts +140 -0
- package/dist/{models → modules/contact}/contact-info.model.d.ts +2 -2
- package/dist/{features → modules}/contact/contact-input-handler.d.ts +1 -1
- package/dist/{models → modules/contact}/contact.model.d.ts +1 -1
- package/dist/{features → modules}/contact/contact.repository.d.ts +2 -2
- package/dist/modules/contact/index.d.ts +4 -0
- package/dist/modules/login/index.d.ts +4 -0
- package/dist/modules/login/login.api-contract.d.ts +51 -0
- package/dist/modules/login/login.dtos.d.ts +85 -0
- package/dist/modules/login/login.model.d.ts +138 -0
- package/dist/{features/auth/identity/identity.repository.d.ts → modules/login/login.repository.d.ts} +1 -1
- package/dist/{models/permission.d.ts → modules/login/permission.type.d.ts} +8 -8
- package/dist/{features → modules}/payout/index.d.ts +2 -0
- package/dist/{features → modules}/payout/payout-channel-handler.d.ts +2 -2
- package/dist/{models → modules/payout}/payout.model.d.ts +2 -2
- package/dist/{features → modules}/payout/payout.repository.d.ts +28 -16
- package/dist/modules/profile/index.d.ts +3 -0
- package/dist/{models → modules/profile}/profile.model.d.ts +1 -1
- package/dist/{features/auth → modules}/profile/profile.repository.d.ts +1 -1
- package/dist/modules/team-member/index.d.ts +4 -0
- package/dist/{models → modules/team-member}/role.model.d.ts +2 -2
- package/dist/{features/admin/admin.contract.d.ts → modules/team-member/team-member.contract.d.ts} +230 -125
- package/dist/modules/team-member/team-member.dtos.d.ts +255 -0
- package/dist/modules/team-member/team-member.model.d.ts +137 -0
- package/dist/modules/team-member/team-member.repository.d.ts +179 -0
- package/dist/{features → modules}/wallet/index.d.ts +5 -2
- package/dist/{models → modules/wallet}/narration.model.d.ts +1 -1
- package/dist/{models → modules/wallet}/statement-entry.model.d.ts +1 -1
- package/dist/{features → modules}/wallet/wallet-manager.session.d.ts +2 -2
- package/dist/{models → modules/wallet}/wallet.model.d.ts +1 -1
- package/dist/{features → modules}/wallet/wallet.repository.d.ts +2 -2
- package/dist/{features → modules}/wallet/wallet.utils.d.ts +1 -1
- package/package.json +1 -1
- package/dist/features/admin/admin.dtos.d.ts +0 -145
- package/dist/features/admin/admin.repository.d.ts +0 -179
- package/dist/features/admin/index.d.ts +0 -2
- package/dist/features/auth/access/access.api-contract.d.ts +0 -13
- package/dist/features/auth/access/access.repository.d.ts +0 -55
- package/dist/features/auth/identity/identity.api-contract.d.ts +0 -22
- package/dist/features/auth/index.d.ts +0 -5
- package/dist/features/contact/index.d.ts +0 -2
- package/dist/lib/api/common-schemas.d.ts +0 -49
- package/dist/models/index.d.ts +0 -11
- package/dist/models/managed-user.model.d.ts +0 -108
- package/dist/models/user.model.d.ts +0 -65
- package/dist/{features → modules}/auth/storage/client-token-handler.d.ts +0 -0
- package/dist/{features → modules}/contact/contact.api-contract.d.ts +8 -8
- package/dist/{features → modules}/contact/contact.dtos.d.ts +2 -2
- package/dist/{features → modules}/payout/payout.api-contract.d.ts +53 -53
- package/dist/{features → modules}/payout/payout.dtos.d.ts +38 -38
- package/dist/{features → modules}/payout/payout.query.d.ts +0 -0
- package/dist/{features/auth → modules}/profile/profile.api-contract.d.ts +0 -0
- package/dist/{features/auth → modules}/profile/profile.dtos.d.ts +0 -0
- package/dist/{features → modules}/wallet/wallet.contract.d.ts +6 -6
- package/dist/{features → modules}/wallet/wallet.dtos.d.ts +12 -12
|
@@ -44,8 +44,8 @@ export declare const contract: {
|
|
|
44
44
|
id: string;
|
|
45
45
|
displayName: string;
|
|
46
46
|
accountNo: string;
|
|
47
|
-
createdAt: string;
|
|
48
47
|
profileId: string;
|
|
48
|
+
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
50
|
channel: string;
|
|
51
51
|
}, {
|
|
@@ -53,8 +53,8 @@ export declare const contract: {
|
|
|
53
53
|
id: string;
|
|
54
54
|
displayName: string;
|
|
55
55
|
accountNo: string;
|
|
56
|
-
createdAt: string;
|
|
57
56
|
profileId: string;
|
|
57
|
+
createdAt: string;
|
|
58
58
|
updatedAt: string;
|
|
59
59
|
channel: string;
|
|
60
60
|
}>;
|
|
@@ -95,8 +95,8 @@ export declare const contract: {
|
|
|
95
95
|
id: string;
|
|
96
96
|
displayName: string;
|
|
97
97
|
accountNo: string;
|
|
98
|
-
createdAt: string;
|
|
99
98
|
profileId: string;
|
|
99
|
+
createdAt: string;
|
|
100
100
|
updatedAt: string;
|
|
101
101
|
channel: string;
|
|
102
102
|
}, {
|
|
@@ -104,8 +104,8 @@ export declare const contract: {
|
|
|
104
104
|
id: string;
|
|
105
105
|
displayName: string;
|
|
106
106
|
accountNo: string;
|
|
107
|
-
createdAt: string;
|
|
108
107
|
profileId: string;
|
|
108
|
+
createdAt: string;
|
|
109
109
|
updatedAt: string;
|
|
110
110
|
channel: string;
|
|
111
111
|
}>;
|
|
@@ -137,8 +137,8 @@ export declare const contract: {
|
|
|
137
137
|
id: string;
|
|
138
138
|
displayName: string;
|
|
139
139
|
accountNo: string;
|
|
140
|
-
createdAt: string;
|
|
141
140
|
profileId: string;
|
|
141
|
+
createdAt: string;
|
|
142
142
|
updatedAt: string;
|
|
143
143
|
channel: string;
|
|
144
144
|
}, {
|
|
@@ -146,8 +146,8 @@ export declare const contract: {
|
|
|
146
146
|
id: string;
|
|
147
147
|
displayName: string;
|
|
148
148
|
accountNo: string;
|
|
149
|
-
createdAt: string;
|
|
150
149
|
profileId: string;
|
|
150
|
+
createdAt: string;
|
|
151
151
|
updatedAt: string;
|
|
152
152
|
channel: string;
|
|
153
153
|
}>, "many">;
|
|
@@ -172,8 +172,8 @@ export declare const contract: {
|
|
|
172
172
|
id: string;
|
|
173
173
|
displayName: string;
|
|
174
174
|
accountNo: string;
|
|
175
|
-
createdAt: string;
|
|
176
175
|
profileId: string;
|
|
176
|
+
createdAt: string;
|
|
177
177
|
updatedAt: string;
|
|
178
178
|
channel: string;
|
|
179
179
|
}, {
|
|
@@ -181,8 +181,8 @@ export declare const contract: {
|
|
|
181
181
|
id: string;
|
|
182
182
|
displayName: string;
|
|
183
183
|
accountNo: string;
|
|
184
|
-
createdAt: string;
|
|
185
184
|
profileId: string;
|
|
185
|
+
createdAt: string;
|
|
186
186
|
updatedAt: string;
|
|
187
187
|
channel: string;
|
|
188
188
|
}>;
|
|
@@ -48,8 +48,8 @@ export declare const ContactDTOSchemas: {
|
|
|
48
48
|
id: string;
|
|
49
49
|
displayName: string;
|
|
50
50
|
accountNo: string;
|
|
51
|
-
createdAt: string;
|
|
52
51
|
profileId: string;
|
|
52
|
+
createdAt: string;
|
|
53
53
|
updatedAt: string;
|
|
54
54
|
channel: string;
|
|
55
55
|
}, {
|
|
@@ -57,8 +57,8 @@ export declare const ContactDTOSchemas: {
|
|
|
57
57
|
id: string;
|
|
58
58
|
displayName: string;
|
|
59
59
|
accountNo: string;
|
|
60
|
-
createdAt: string;
|
|
61
60
|
profileId: string;
|
|
61
|
+
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
63
|
channel: string;
|
|
64
64
|
}>;
|
|
@@ -67,16 +67,16 @@ export declare const contract: {
|
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
68
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
69
69
|
id: string;
|
|
70
|
-
createdAt: Date;
|
|
71
70
|
profileId: string;
|
|
71
|
+
createdAt: Date;
|
|
72
72
|
updatedAt: Date;
|
|
73
|
+
description: string;
|
|
73
74
|
channel: string;
|
|
75
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
76
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
74
77
|
msisdn: string;
|
|
75
78
|
amount: number;
|
|
76
|
-
description: string;
|
|
77
79
|
payeeName: string;
|
|
78
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
79
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
80
80
|
statusMessage: string;
|
|
81
81
|
notes?: string | null | undefined;
|
|
82
82
|
partnerReference?: string | null | undefined;
|
|
@@ -95,18 +95,18 @@ export declare const contract: {
|
|
|
95
95
|
}, {
|
|
96
96
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
97
97
|
id: string;
|
|
98
|
-
createdAt: Date;
|
|
99
98
|
profileId: string;
|
|
99
|
+
createdAt: Date;
|
|
100
100
|
updatedAt: Date;
|
|
101
|
+
description: string;
|
|
101
102
|
channel: string;
|
|
102
103
|
msisdn: string;
|
|
103
104
|
amount: number;
|
|
104
|
-
description: string;
|
|
105
105
|
payeeName: string;
|
|
106
106
|
statusMessage: string;
|
|
107
|
-
notes?: string | null | undefined;
|
|
108
107
|
countryCode?: string | undefined;
|
|
109
108
|
currencyCode?: string | undefined;
|
|
109
|
+
notes?: string | null | undefined;
|
|
110
110
|
partnerReference?: string | null | undefined;
|
|
111
111
|
actionedAt?: Date | null | undefined;
|
|
112
112
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -127,16 +127,16 @@ export declare const contract: {
|
|
|
127
127
|
results: {
|
|
128
128
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
129
129
|
id: string;
|
|
130
|
-
createdAt: Date;
|
|
131
130
|
profileId: string;
|
|
131
|
+
createdAt: Date;
|
|
132
132
|
updatedAt: Date;
|
|
133
|
+
description: string;
|
|
133
134
|
channel: string;
|
|
135
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
136
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
134
137
|
msisdn: string;
|
|
135
138
|
amount: number;
|
|
136
|
-
description: string;
|
|
137
139
|
payeeName: string;
|
|
138
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
139
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
140
140
|
statusMessage: string;
|
|
141
141
|
notes?: string | null | undefined;
|
|
142
142
|
partnerReference?: string | null | undefined;
|
|
@@ -158,18 +158,18 @@ export declare const contract: {
|
|
|
158
158
|
results: {
|
|
159
159
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
160
160
|
id: string;
|
|
161
|
-
createdAt: Date;
|
|
162
161
|
profileId: string;
|
|
162
|
+
createdAt: Date;
|
|
163
163
|
updatedAt: Date;
|
|
164
|
+
description: string;
|
|
164
165
|
channel: string;
|
|
165
166
|
msisdn: string;
|
|
166
167
|
amount: number;
|
|
167
|
-
description: string;
|
|
168
168
|
payeeName: string;
|
|
169
169
|
statusMessage: string;
|
|
170
|
-
notes?: string | null | undefined;
|
|
171
170
|
countryCode?: string | undefined;
|
|
172
171
|
currencyCode?: string | undefined;
|
|
172
|
+
notes?: string | null | undefined;
|
|
173
173
|
partnerReference?: string | null | undefined;
|
|
174
174
|
actionedAt?: Date | null | undefined;
|
|
175
175
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -195,16 +195,16 @@ export declare const contract: {
|
|
|
195
195
|
approvalStatus: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>;
|
|
196
196
|
orderByDesc: z.ZodString;
|
|
197
197
|
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
eager: string;
|
|
198
199
|
rangeStart: number;
|
|
199
200
|
rangeEnd: number;
|
|
200
201
|
orderByDesc: string;
|
|
201
|
-
eager: string;
|
|
202
202
|
approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
|
|
203
203
|
}, {
|
|
204
|
+
eager: string;
|
|
204
205
|
rangeStart: number;
|
|
205
206
|
rangeEnd: number;
|
|
206
207
|
orderByDesc: string;
|
|
207
|
-
eager: string;
|
|
208
208
|
approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
|
|
209
209
|
}>;
|
|
210
210
|
method: "GET";
|
|
@@ -259,16 +259,16 @@ export declare const contract: {
|
|
|
259
259
|
}, "strip", z.ZodTypeAny, {
|
|
260
260
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
261
261
|
id: string;
|
|
262
|
-
createdAt: Date;
|
|
263
262
|
profileId: string;
|
|
263
|
+
createdAt: Date;
|
|
264
264
|
updatedAt: Date;
|
|
265
|
+
description: string;
|
|
265
266
|
channel: string;
|
|
267
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
268
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
266
269
|
msisdn: string;
|
|
267
270
|
amount: number;
|
|
268
|
-
description: string;
|
|
269
271
|
payeeName: string;
|
|
270
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
271
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
272
272
|
statusMessage: string;
|
|
273
273
|
notes?: string | null | undefined;
|
|
274
274
|
partnerReference?: string | null | undefined;
|
|
@@ -287,18 +287,18 @@ export declare const contract: {
|
|
|
287
287
|
}, {
|
|
288
288
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
289
289
|
id: string;
|
|
290
|
-
createdAt: Date;
|
|
291
290
|
profileId: string;
|
|
291
|
+
createdAt: Date;
|
|
292
292
|
updatedAt: Date;
|
|
293
|
+
description: string;
|
|
293
294
|
channel: string;
|
|
294
295
|
msisdn: string;
|
|
295
296
|
amount: number;
|
|
296
|
-
description: string;
|
|
297
297
|
payeeName: string;
|
|
298
298
|
statusMessage: string;
|
|
299
|
-
notes?: string | null | undefined;
|
|
300
299
|
countryCode?: string | undefined;
|
|
301
300
|
currencyCode?: string | undefined;
|
|
301
|
+
notes?: string | null | undefined;
|
|
302
302
|
partnerReference?: string | null | undefined;
|
|
303
303
|
actionedAt?: Date | null | undefined;
|
|
304
304
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -319,16 +319,16 @@ export declare const contract: {
|
|
|
319
319
|
results: {
|
|
320
320
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
321
321
|
id: string;
|
|
322
|
-
createdAt: Date;
|
|
323
322
|
profileId: string;
|
|
323
|
+
createdAt: Date;
|
|
324
324
|
updatedAt: Date;
|
|
325
|
+
description: string;
|
|
325
326
|
channel: string;
|
|
327
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
328
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
326
329
|
msisdn: string;
|
|
327
330
|
amount: number;
|
|
328
|
-
description: string;
|
|
329
331
|
payeeName: string;
|
|
330
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
331
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
332
332
|
statusMessage: string;
|
|
333
333
|
notes?: string | null | undefined;
|
|
334
334
|
partnerReference?: string | null | undefined;
|
|
@@ -350,18 +350,18 @@ export declare const contract: {
|
|
|
350
350
|
results: {
|
|
351
351
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
352
352
|
id: string;
|
|
353
|
-
createdAt: Date;
|
|
354
353
|
profileId: string;
|
|
354
|
+
createdAt: Date;
|
|
355
355
|
updatedAt: Date;
|
|
356
|
+
description: string;
|
|
356
357
|
channel: string;
|
|
357
358
|
msisdn: string;
|
|
358
359
|
amount: number;
|
|
359
|
-
description: string;
|
|
360
360
|
payeeName: string;
|
|
361
361
|
statusMessage: string;
|
|
362
|
-
notes?: string | null | undefined;
|
|
363
362
|
countryCode?: string | undefined;
|
|
364
363
|
currencyCode?: string | undefined;
|
|
364
|
+
notes?: string | null | undefined;
|
|
365
365
|
partnerReference?: string | null | undefined;
|
|
366
366
|
actionedAt?: Date | null | undefined;
|
|
367
367
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -390,17 +390,17 @@ export declare const contract: {
|
|
|
390
390
|
} & {
|
|
391
391
|
payeeName: z.ZodString;
|
|
392
392
|
}, "strip", z.ZodTypeAny, {
|
|
393
|
+
description: string;
|
|
393
394
|
channel: string;
|
|
394
395
|
msisdn: string;
|
|
395
396
|
amount: number;
|
|
396
|
-
description: string;
|
|
397
397
|
payeeName: string;
|
|
398
398
|
notes?: string | null | undefined;
|
|
399
399
|
}, {
|
|
400
|
+
description: string;
|
|
400
401
|
channel: string;
|
|
401
402
|
msisdn: string;
|
|
402
403
|
amount: number;
|
|
403
|
-
description: string;
|
|
404
404
|
payeeName: string;
|
|
405
405
|
notes?: string | null | undefined;
|
|
406
406
|
}>;
|
|
@@ -454,16 +454,16 @@ export declare const contract: {
|
|
|
454
454
|
}, "strip", z.ZodTypeAny, {
|
|
455
455
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
456
456
|
id: string;
|
|
457
|
-
createdAt: Date;
|
|
458
457
|
profileId: string;
|
|
458
|
+
createdAt: Date;
|
|
459
459
|
updatedAt: Date;
|
|
460
|
+
description: string;
|
|
460
461
|
channel: string;
|
|
462
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
463
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
461
464
|
msisdn: string;
|
|
462
465
|
amount: number;
|
|
463
|
-
description: string;
|
|
464
466
|
payeeName: string;
|
|
465
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
466
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
467
467
|
statusMessage: string;
|
|
468
468
|
notes?: string | null | undefined;
|
|
469
469
|
partnerReference?: string | null | undefined;
|
|
@@ -482,18 +482,18 @@ export declare const contract: {
|
|
|
482
482
|
}, {
|
|
483
483
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
484
484
|
id: string;
|
|
485
|
-
createdAt: Date;
|
|
486
485
|
profileId: string;
|
|
486
|
+
createdAt: Date;
|
|
487
487
|
updatedAt: Date;
|
|
488
|
+
description: string;
|
|
488
489
|
channel: string;
|
|
489
490
|
msisdn: string;
|
|
490
491
|
amount: number;
|
|
491
|
-
description: string;
|
|
492
492
|
payeeName: string;
|
|
493
493
|
statusMessage: string;
|
|
494
|
-
notes?: string | null | undefined;
|
|
495
494
|
countryCode?: string | undefined;
|
|
496
495
|
currencyCode?: string | undefined;
|
|
496
|
+
notes?: string | null | undefined;
|
|
497
497
|
partnerReference?: string | null | undefined;
|
|
498
498
|
actionedAt?: Date | null | undefined;
|
|
499
499
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -592,16 +592,16 @@ export declare const contract: {
|
|
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
|
593
593
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
594
594
|
id: string;
|
|
595
|
-
createdAt: Date;
|
|
596
595
|
profileId: string;
|
|
596
|
+
createdAt: Date;
|
|
597
597
|
updatedAt: Date;
|
|
598
|
+
description: string;
|
|
598
599
|
channel: string;
|
|
600
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
601
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
599
602
|
msisdn: string;
|
|
600
603
|
amount: number;
|
|
601
|
-
description: string;
|
|
602
604
|
payeeName: string;
|
|
603
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
604
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
605
605
|
statusMessage: string;
|
|
606
606
|
notes?: string | null | undefined;
|
|
607
607
|
partnerReference?: string | null | undefined;
|
|
@@ -620,18 +620,18 @@ export declare const contract: {
|
|
|
620
620
|
}, {
|
|
621
621
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
622
622
|
id: string;
|
|
623
|
-
createdAt: Date;
|
|
624
623
|
profileId: string;
|
|
624
|
+
createdAt: Date;
|
|
625
625
|
updatedAt: Date;
|
|
626
|
+
description: string;
|
|
626
627
|
channel: string;
|
|
627
628
|
msisdn: string;
|
|
628
629
|
amount: number;
|
|
629
|
-
description: string;
|
|
630
630
|
payeeName: string;
|
|
631
631
|
statusMessage: string;
|
|
632
|
-
notes?: string | null | undefined;
|
|
633
632
|
countryCode?: string | undefined;
|
|
634
633
|
currencyCode?: string | undefined;
|
|
634
|
+
notes?: string | null | undefined;
|
|
635
635
|
partnerReference?: string | null | undefined;
|
|
636
636
|
actionedAt?: Date | null | undefined;
|
|
637
637
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -702,16 +702,16 @@ export declare const contract: {
|
|
|
702
702
|
}, "strip", z.ZodTypeAny, {
|
|
703
703
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
704
704
|
id: string;
|
|
705
|
-
createdAt: Date;
|
|
706
705
|
profileId: string;
|
|
706
|
+
createdAt: Date;
|
|
707
707
|
updatedAt: Date;
|
|
708
|
+
description: string;
|
|
708
709
|
channel: string;
|
|
710
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
711
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
709
712
|
msisdn: string;
|
|
710
713
|
amount: number;
|
|
711
|
-
description: string;
|
|
712
714
|
payeeName: string;
|
|
713
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
714
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
715
715
|
statusMessage: string;
|
|
716
716
|
notes?: string | null | undefined;
|
|
717
717
|
partnerReference?: string | null | undefined;
|
|
@@ -730,18 +730,18 @@ export declare const contract: {
|
|
|
730
730
|
}, {
|
|
731
731
|
status: import("./payout.dtos.js").PayoutStatus;
|
|
732
732
|
id: string;
|
|
733
|
-
createdAt: Date;
|
|
734
733
|
profileId: string;
|
|
734
|
+
createdAt: Date;
|
|
735
735
|
updatedAt: Date;
|
|
736
|
+
description: string;
|
|
736
737
|
channel: string;
|
|
737
738
|
msisdn: string;
|
|
738
739
|
amount: number;
|
|
739
|
-
description: string;
|
|
740
740
|
payeeName: string;
|
|
741
741
|
statusMessage: string;
|
|
742
|
-
notes?: string | null | undefined;
|
|
743
742
|
countryCode?: string | undefined;
|
|
744
743
|
currencyCode?: string | undefined;
|
|
744
|
+
notes?: string | null | undefined;
|
|
745
745
|
partnerReference?: string | null | undefined;
|
|
746
746
|
actionedAt?: Date | null | undefined;
|
|
747
747
|
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
@@ -72,17 +72,17 @@ declare const PayoutInputDTOSchema: z.ZodObject<{
|
|
|
72
72
|
} & {
|
|
73
73
|
payeeName: z.ZodString;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
description: string;
|
|
75
76
|
channel: string;
|
|
76
77
|
msisdn: string;
|
|
77
78
|
amount: number;
|
|
78
|
-
description: string;
|
|
79
79
|
payeeName: string;
|
|
80
80
|
notes?: string | null | undefined;
|
|
81
81
|
}, {
|
|
82
|
+
description: string;
|
|
82
83
|
channel: string;
|
|
83
84
|
msisdn: string;
|
|
84
85
|
amount: number;
|
|
85
|
-
description: string;
|
|
86
86
|
payeeName: string;
|
|
87
87
|
notes?: string | null | undefined;
|
|
88
88
|
}>;
|
|
@@ -143,16 +143,16 @@ declare const PayoutDTOSchema: z.ZodObject<{
|
|
|
143
143
|
}, "strip", z.ZodTypeAny, {
|
|
144
144
|
status: PayoutStatus;
|
|
145
145
|
id: string;
|
|
146
|
-
createdAt: Date;
|
|
147
146
|
profileId: string;
|
|
147
|
+
createdAt: Date;
|
|
148
148
|
updatedAt: Date;
|
|
149
|
+
description: string;
|
|
149
150
|
channel: string;
|
|
151
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
152
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
150
153
|
msisdn: string;
|
|
151
154
|
amount: number;
|
|
152
|
-
description: string;
|
|
153
155
|
payeeName: string;
|
|
154
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
155
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
156
156
|
statusMessage: string;
|
|
157
157
|
notes?: string | null | undefined;
|
|
158
158
|
partnerReference?: string | null | undefined;
|
|
@@ -171,18 +171,18 @@ declare const PayoutDTOSchema: z.ZodObject<{
|
|
|
171
171
|
}, {
|
|
172
172
|
status: PayoutStatus;
|
|
173
173
|
id: string;
|
|
174
|
-
createdAt: Date;
|
|
175
174
|
profileId: string;
|
|
175
|
+
createdAt: Date;
|
|
176
176
|
updatedAt: Date;
|
|
177
|
+
description: string;
|
|
177
178
|
channel: string;
|
|
178
179
|
msisdn: string;
|
|
179
180
|
amount: number;
|
|
180
|
-
description: string;
|
|
181
181
|
payeeName: string;
|
|
182
182
|
statusMessage: string;
|
|
183
|
-
notes?: string | null | undefined;
|
|
184
183
|
countryCode?: string | undefined;
|
|
185
184
|
currencyCode?: string | undefined;
|
|
185
|
+
notes?: string | null | undefined;
|
|
186
186
|
partnerReference?: string | null | undefined;
|
|
187
187
|
actionedAt?: Date | null | undefined;
|
|
188
188
|
approvalStatus?: PayoutApprovalStatus | null | undefined;
|
|
@@ -225,10 +225,10 @@ declare const PayoutFiltersSchema: z.ZodObject<{
|
|
|
225
225
|
sortOrder: "asc" | "desc";
|
|
226
226
|
status?: PayoutStatus | null | undefined;
|
|
227
227
|
id?: string | null | undefined;
|
|
228
|
+
profileId?: string | null | undefined;
|
|
228
229
|
search?: string | null | undefined;
|
|
229
230
|
startDate?: string | null | undefined;
|
|
230
231
|
endDate?: string | null | undefined;
|
|
231
|
-
profileId?: string | null | undefined;
|
|
232
232
|
channel?: string | null | undefined;
|
|
233
233
|
msisdn?: string | null | undefined;
|
|
234
234
|
payeeName?: string | null | undefined;
|
|
@@ -238,13 +238,13 @@ declare const PayoutFiltersSchema: z.ZodObject<{
|
|
|
238
238
|
maxAmount?: number | null | undefined;
|
|
239
239
|
}, {
|
|
240
240
|
status?: PayoutStatus | null | undefined;
|
|
241
|
-
page?: number | undefined;
|
|
242
|
-
limit?: number | undefined;
|
|
243
241
|
id?: string | null | undefined;
|
|
242
|
+
profileId?: string | null | undefined;
|
|
244
243
|
search?: string | null | undefined;
|
|
245
244
|
startDate?: string | null | undefined;
|
|
246
245
|
endDate?: string | null | undefined;
|
|
247
|
-
|
|
246
|
+
page?: number | undefined;
|
|
247
|
+
limit?: number | undefined;
|
|
248
248
|
channel?: string | null | undefined;
|
|
249
249
|
msisdn?: string | null | undefined;
|
|
250
250
|
payeeName?: string | null | undefined;
|
|
@@ -280,13 +280,13 @@ declare const PayoutURLQueryParamsSchema: z.ZodObject<{
|
|
|
280
280
|
sortBy: string;
|
|
281
281
|
sortOrder: "asc" | "desc";
|
|
282
282
|
status?: PayoutStatus | undefined;
|
|
283
|
-
page?: number | undefined;
|
|
284
|
-
limit?: number | undefined;
|
|
285
283
|
id?: string | undefined;
|
|
284
|
+
profileId?: string | undefined;
|
|
286
285
|
search?: string | undefined;
|
|
287
286
|
startDate?: string | undefined;
|
|
288
287
|
endDate?: string | undefined;
|
|
289
|
-
|
|
288
|
+
page?: number | undefined;
|
|
289
|
+
limit?: number | undefined;
|
|
290
290
|
channel?: string | undefined;
|
|
291
291
|
msisdn?: string | undefined;
|
|
292
292
|
payeeName?: string | undefined;
|
|
@@ -296,13 +296,13 @@ declare const PayoutURLQueryParamsSchema: z.ZodObject<{
|
|
|
296
296
|
maxAmount?: number | undefined;
|
|
297
297
|
}, {
|
|
298
298
|
status?: string | undefined;
|
|
299
|
-
page?: string | undefined;
|
|
300
|
-
limit?: string | undefined;
|
|
301
299
|
id?: string | undefined;
|
|
300
|
+
profileId?: string | undefined;
|
|
302
301
|
search?: string | undefined;
|
|
303
302
|
startDate?: string | undefined;
|
|
304
303
|
endDate?: string | undefined;
|
|
305
|
-
|
|
304
|
+
page?: string | undefined;
|
|
305
|
+
limit?: string | undefined;
|
|
306
306
|
channel?: string | undefined;
|
|
307
307
|
msisdn?: string | undefined;
|
|
308
308
|
payeeName?: string | undefined;
|
|
@@ -389,16 +389,16 @@ export declare const PayoutDTOSchemas: {
|
|
|
389
389
|
}, "strip", z.ZodTypeAny, {
|
|
390
390
|
status: PayoutStatus;
|
|
391
391
|
id: string;
|
|
392
|
-
createdAt: Date;
|
|
393
392
|
profileId: string;
|
|
393
|
+
createdAt: Date;
|
|
394
394
|
updatedAt: Date;
|
|
395
|
+
description: string;
|
|
395
396
|
channel: string;
|
|
397
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
398
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
396
399
|
msisdn: string;
|
|
397
400
|
amount: number;
|
|
398
|
-
description: string;
|
|
399
401
|
payeeName: string;
|
|
400
|
-
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
401
|
-
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
402
402
|
statusMessage: string;
|
|
403
403
|
notes?: string | null | undefined;
|
|
404
404
|
partnerReference?: string | null | undefined;
|
|
@@ -417,18 +417,18 @@ export declare const PayoutDTOSchemas: {
|
|
|
417
417
|
}, {
|
|
418
418
|
status: PayoutStatus;
|
|
419
419
|
id: string;
|
|
420
|
-
createdAt: Date;
|
|
421
420
|
profileId: string;
|
|
421
|
+
createdAt: Date;
|
|
422
422
|
updatedAt: Date;
|
|
423
|
+
description: string;
|
|
423
424
|
channel: string;
|
|
424
425
|
msisdn: string;
|
|
425
426
|
amount: number;
|
|
426
|
-
description: string;
|
|
427
427
|
payeeName: string;
|
|
428
428
|
statusMessage: string;
|
|
429
|
-
notes?: string | null | undefined;
|
|
430
429
|
countryCode?: string | undefined;
|
|
431
430
|
currencyCode?: string | undefined;
|
|
431
|
+
notes?: string | null | undefined;
|
|
432
432
|
partnerReference?: string | null | undefined;
|
|
433
433
|
actionedAt?: Date | null | undefined;
|
|
434
434
|
approvalStatus?: PayoutApprovalStatus | null | undefined;
|
|
@@ -452,17 +452,17 @@ export declare const PayoutDTOSchemas: {
|
|
|
452
452
|
} & {
|
|
453
453
|
payeeName: z.ZodString;
|
|
454
454
|
}, "strip", z.ZodTypeAny, {
|
|
455
|
+
description: string;
|
|
455
456
|
channel: string;
|
|
456
457
|
msisdn: string;
|
|
457
458
|
amount: number;
|
|
458
|
-
description: string;
|
|
459
459
|
payeeName: string;
|
|
460
460
|
notes?: string | null | undefined;
|
|
461
461
|
}, {
|
|
462
|
+
description: string;
|
|
462
463
|
channel: string;
|
|
463
464
|
msisdn: string;
|
|
464
465
|
amount: number;
|
|
465
|
-
description: string;
|
|
466
466
|
payeeName: string;
|
|
467
467
|
notes?: string | null | undefined;
|
|
468
468
|
}>;
|
|
@@ -506,10 +506,10 @@ export declare const PayoutDTOSchemas: {
|
|
|
506
506
|
sortOrder: "asc" | "desc";
|
|
507
507
|
status?: PayoutStatus | null | undefined;
|
|
508
508
|
id?: string | null | undefined;
|
|
509
|
+
profileId?: string | null | undefined;
|
|
509
510
|
search?: string | null | undefined;
|
|
510
511
|
startDate?: string | null | undefined;
|
|
511
512
|
endDate?: string | null | undefined;
|
|
512
|
-
profileId?: string | null | undefined;
|
|
513
513
|
channel?: string | null | undefined;
|
|
514
514
|
msisdn?: string | null | undefined;
|
|
515
515
|
payeeName?: string | null | undefined;
|
|
@@ -519,13 +519,13 @@ export declare const PayoutDTOSchemas: {
|
|
|
519
519
|
maxAmount?: number | null | undefined;
|
|
520
520
|
}, {
|
|
521
521
|
status?: PayoutStatus | null | undefined;
|
|
522
|
-
page?: number | undefined;
|
|
523
|
-
limit?: number | undefined;
|
|
524
522
|
id?: string | null | undefined;
|
|
523
|
+
profileId?: string | null | undefined;
|
|
525
524
|
search?: string | null | undefined;
|
|
526
525
|
startDate?: string | null | undefined;
|
|
527
526
|
endDate?: string | null | undefined;
|
|
528
|
-
|
|
527
|
+
page?: number | undefined;
|
|
528
|
+
limit?: number | undefined;
|
|
529
529
|
channel?: string | null | undefined;
|
|
530
530
|
msisdn?: string | null | undefined;
|
|
531
531
|
payeeName?: string | null | undefined;
|
|
@@ -558,13 +558,13 @@ export declare const PayoutDTOSchemas: {
|
|
|
558
558
|
sortBy: string;
|
|
559
559
|
sortOrder: "asc" | "desc";
|
|
560
560
|
status?: PayoutStatus | undefined;
|
|
561
|
-
page?: number | undefined;
|
|
562
|
-
limit?: number | undefined;
|
|
563
561
|
id?: string | undefined;
|
|
562
|
+
profileId?: string | undefined;
|
|
564
563
|
search?: string | undefined;
|
|
565
564
|
startDate?: string | undefined;
|
|
566
565
|
endDate?: string | undefined;
|
|
567
|
-
|
|
566
|
+
page?: number | undefined;
|
|
567
|
+
limit?: number | undefined;
|
|
568
568
|
channel?: string | undefined;
|
|
569
569
|
msisdn?: string | undefined;
|
|
570
570
|
payeeName?: string | undefined;
|
|
@@ -574,13 +574,13 @@ export declare const PayoutDTOSchemas: {
|
|
|
574
574
|
maxAmount?: number | undefined;
|
|
575
575
|
}, {
|
|
576
576
|
status?: string | undefined;
|
|
577
|
-
page?: string | undefined;
|
|
578
|
-
limit?: string | undefined;
|
|
579
577
|
id?: string | undefined;
|
|
578
|
+
profileId?: string | undefined;
|
|
580
579
|
search?: string | undefined;
|
|
581
580
|
startDate?: string | undefined;
|
|
582
581
|
endDate?: string | undefined;
|
|
583
|
-
|
|
582
|
+
page?: string | undefined;
|
|
583
|
+
limit?: string | undefined;
|
|
584
584
|
channel?: string | undefined;
|
|
585
585
|
msisdn?: string | undefined;
|
|
586
586
|
payeeName?: string | undefined;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|