@temboplus/afloat 0.1.75-0 → 0.1.76-beta.0
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/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/{models → modules/auth}/user.model.d.ts +4 -3
- 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 +2 -0
- package/dist/modules/login/login.model.d.ts +1 -0
- package/dist/{features/auth/identity/identity.repository.d.ts → modules/login/login.repository.d.ts} +1 -1
- 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/user/index.d.ts +4 -0
- package/dist/{models → modules/user}/role.model.d.ts +1 -1
- package/dist/{features/admin/admin.contract.d.ts → modules/user/user.contract.d.ts} +9 -9
- package/dist/{models/managed-user.model.d.ts → modules/user/user.model.d.ts} +1 -1
- package/dist/{features/admin/admin.repository.d.ts → modules/user/user.repository.d.ts} +4 -4
- 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/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/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/permission.d.ts → modules/auth/permission.type.d.ts} +0 -0
- 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/auth/identity/identity.api-contract.d.ts → modules/login/login.api-contract.d.ts} +0 -0
- package/dist/{features → modules}/payout/payout.api-contract.d.ts +35 -35
- package/dist/{features → modules}/payout/payout.dtos.d.ts +22 -22
- 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/admin/admin.dtos.d.ts → modules/user/user.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
package/package.json
CHANGED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { BaseRepository } from "@/lib/api/base-repository.js";
|
|
2
|
-
import { accessContract } from "./access.api-contract.js";
|
|
3
|
-
/**
|
|
4
|
-
* Repository class for managing access-related operations.
|
|
5
|
-
* Handles retrieving user access lists and permissions from the API.
|
|
6
|
-
*
|
|
7
|
-
* This repository handles pure API communication without permission checking.
|
|
8
|
-
* Permission validation should be handled at the service layer or route handlers.
|
|
9
|
-
*
|
|
10
|
-
* @extends {BaseRepository<typeof accessContract>}
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```typescript
|
|
14
|
-
* const repo = new AccessRepository({ token: userToken });
|
|
15
|
-
* const accessList = await repo.getAccessList();
|
|
16
|
-
* ```
|
|
17
|
-
*/
|
|
18
|
-
export declare class AccessRepository extends BaseRepository<typeof accessContract> {
|
|
19
|
-
/**
|
|
20
|
-
* Creates an instance of AccessRepository.
|
|
21
|
-
*
|
|
22
|
-
* @param options - Optional configuration
|
|
23
|
-
* @param options.token - Authentication token for API calls
|
|
24
|
-
* @param options.root - Custom API root URL
|
|
25
|
-
*
|
|
26
|
-
* @example
|
|
27
|
-
* ```typescript
|
|
28
|
-
* const repo = new AccessRepository({
|
|
29
|
-
* token: "user-auth-token",
|
|
30
|
-
* root: "base-api-url"
|
|
31
|
-
* });
|
|
32
|
-
* ```
|
|
33
|
-
*/
|
|
34
|
-
constructor(options?: {
|
|
35
|
-
token?: string;
|
|
36
|
-
root?: string;
|
|
37
|
-
});
|
|
38
|
-
/**
|
|
39
|
-
* Retrieves the current user's access list.
|
|
40
|
-
*
|
|
41
|
-
* @returns Promise that resolves to an array of access permissions/roles
|
|
42
|
-
* @throws {APIError} If the request fails or returns an unexpected status
|
|
43
|
-
*
|
|
44
|
-
* @example
|
|
45
|
-
* ```typescript
|
|
46
|
-
* try {
|
|
47
|
-
* const accessList = await repo.getAccessList();
|
|
48
|
-
* console.log("User has access to:", accessList);
|
|
49
|
-
* } catch (error) {
|
|
50
|
-
* console.error("Failed to get access list:", error.message);
|
|
51
|
-
* }
|
|
52
|
-
* ```
|
|
53
|
-
*/
|
|
54
|
-
getAccessList(): Promise<string[]>;
|
|
55
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import z from "zod";
|
|
2
|
-
declare const paginationSchema: z.ZodObject<{
|
|
3
|
-
page: z.ZodNumber;
|
|
4
|
-
limit: z.ZodNumber;
|
|
5
|
-
total: z.ZodNumber;
|
|
6
|
-
totalPages: z.ZodNumber;
|
|
7
|
-
hasNext: z.ZodBoolean;
|
|
8
|
-
hasPrev: z.ZodBoolean;
|
|
9
|
-
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
page: number;
|
|
11
|
-
limit: number;
|
|
12
|
-
total: number;
|
|
13
|
-
totalPages: number;
|
|
14
|
-
hasNext: boolean;
|
|
15
|
-
hasPrev: boolean;
|
|
16
|
-
}, {
|
|
17
|
-
page: number;
|
|
18
|
-
limit: number;
|
|
19
|
-
total: number;
|
|
20
|
-
totalPages: number;
|
|
21
|
-
hasNext: boolean;
|
|
22
|
-
hasPrev: boolean;
|
|
23
|
-
}>;
|
|
24
|
-
export declare const CommonSchemas: {
|
|
25
|
-
pagination: z.ZodObject<{
|
|
26
|
-
page: z.ZodNumber;
|
|
27
|
-
limit: z.ZodNumber;
|
|
28
|
-
total: z.ZodNumber;
|
|
29
|
-
totalPages: z.ZodNumber;
|
|
30
|
-
hasNext: z.ZodBoolean;
|
|
31
|
-
hasPrev: z.ZodBoolean;
|
|
32
|
-
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
page: number;
|
|
34
|
-
limit: number;
|
|
35
|
-
total: number;
|
|
36
|
-
totalPages: number;
|
|
37
|
-
hasNext: boolean;
|
|
38
|
-
hasPrev: boolean;
|
|
39
|
-
}, {
|
|
40
|
-
page: number;
|
|
41
|
-
limit: number;
|
|
42
|
-
total: number;
|
|
43
|
-
totalPages: number;
|
|
44
|
-
hasNext: boolean;
|
|
45
|
-
hasPrev: boolean;
|
|
46
|
-
}>;
|
|
47
|
-
};
|
|
48
|
-
export type PaginationDTO = z.infer<typeof paginationSchema>;
|
|
49
|
-
export {};
|
package/dist/models/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from "./contact-info.model.js";
|
|
2
|
-
export * from "./contact.model.js";
|
|
3
|
-
export * from "./payout.model.js";
|
|
4
|
-
export * from "./profile.model.js";
|
|
5
|
-
export * from "./user.model.js";
|
|
6
|
-
export * from "./wallet.model.js";
|
|
7
|
-
export * from "./statement-entry.model.js";
|
|
8
|
-
export * from "./permission.js";
|
|
9
|
-
export * from "./managed-user.model.js";
|
|
10
|
-
export * from "./role.model.js";
|
|
11
|
-
export * from "./narration.model.js";
|
|
File without changes
|
|
File without changes
|
|
@@ -46,8 +46,8 @@ export declare const contract: {
|
|
|
46
46
|
accountNo: string;
|
|
47
47
|
createdAt: string;
|
|
48
48
|
profileId: string;
|
|
49
|
-
updatedAt: string;
|
|
50
49
|
channel: string;
|
|
50
|
+
updatedAt: string;
|
|
51
51
|
}, {
|
|
52
52
|
type: import("./contact.dtos.js").ContactType;
|
|
53
53
|
id: string;
|
|
@@ -55,8 +55,8 @@ export declare const contract: {
|
|
|
55
55
|
accountNo: string;
|
|
56
56
|
createdAt: string;
|
|
57
57
|
profileId: string;
|
|
58
|
-
updatedAt: string;
|
|
59
58
|
channel: string;
|
|
59
|
+
updatedAt: string;
|
|
60
60
|
}>;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
@@ -97,8 +97,8 @@ export declare const contract: {
|
|
|
97
97
|
accountNo: string;
|
|
98
98
|
createdAt: string;
|
|
99
99
|
profileId: string;
|
|
100
|
-
updatedAt: string;
|
|
101
100
|
channel: string;
|
|
101
|
+
updatedAt: string;
|
|
102
102
|
}, {
|
|
103
103
|
type: import("./contact.dtos.js").ContactType;
|
|
104
104
|
id: string;
|
|
@@ -106,8 +106,8 @@ export declare const contract: {
|
|
|
106
106
|
accountNo: string;
|
|
107
107
|
createdAt: string;
|
|
108
108
|
profileId: string;
|
|
109
|
-
updatedAt: string;
|
|
110
109
|
channel: string;
|
|
110
|
+
updatedAt: string;
|
|
111
111
|
}>;
|
|
112
112
|
};
|
|
113
113
|
};
|
|
@@ -139,8 +139,8 @@ export declare const contract: {
|
|
|
139
139
|
accountNo: string;
|
|
140
140
|
createdAt: string;
|
|
141
141
|
profileId: string;
|
|
142
|
-
updatedAt: string;
|
|
143
142
|
channel: string;
|
|
143
|
+
updatedAt: string;
|
|
144
144
|
}, {
|
|
145
145
|
type: import("./contact.dtos.js").ContactType;
|
|
146
146
|
id: string;
|
|
@@ -148,8 +148,8 @@ export declare const contract: {
|
|
|
148
148
|
accountNo: string;
|
|
149
149
|
createdAt: string;
|
|
150
150
|
profileId: string;
|
|
151
|
-
updatedAt: string;
|
|
152
151
|
channel: string;
|
|
152
|
+
updatedAt: string;
|
|
153
153
|
}>, "many">;
|
|
154
154
|
};
|
|
155
155
|
};
|
|
@@ -174,8 +174,8 @@ export declare const contract: {
|
|
|
174
174
|
accountNo: string;
|
|
175
175
|
createdAt: string;
|
|
176
176
|
profileId: string;
|
|
177
|
-
updatedAt: string;
|
|
178
177
|
channel: string;
|
|
178
|
+
updatedAt: string;
|
|
179
179
|
}, {
|
|
180
180
|
type: import("./contact.dtos.js").ContactType;
|
|
181
181
|
id: string;
|
|
@@ -183,8 +183,8 @@ export declare const contract: {
|
|
|
183
183
|
accountNo: string;
|
|
184
184
|
createdAt: string;
|
|
185
185
|
profileId: string;
|
|
186
|
-
updatedAt: string;
|
|
187
186
|
channel: string;
|
|
187
|
+
updatedAt: string;
|
|
188
188
|
}>;
|
|
189
189
|
};
|
|
190
190
|
};
|
|
@@ -50,8 +50,8 @@ export declare const ContactDTOSchemas: {
|
|
|
50
50
|
accountNo: string;
|
|
51
51
|
createdAt: string;
|
|
52
52
|
profileId: string;
|
|
53
|
-
updatedAt: string;
|
|
54
53
|
channel: string;
|
|
54
|
+
updatedAt: string;
|
|
55
55
|
}, {
|
|
56
56
|
type: ContactType;
|
|
57
57
|
id: string;
|
|
@@ -59,8 +59,8 @@ export declare const ContactDTOSchemas: {
|
|
|
59
59
|
accountNo: string;
|
|
60
60
|
createdAt: string;
|
|
61
61
|
profileId: string;
|
|
62
|
-
updatedAt: string;
|
|
63
62
|
channel: string;
|
|
63
|
+
updatedAt: string;
|
|
64
64
|
}>;
|
|
65
65
|
/** Schema for contact input validation */
|
|
66
66
|
contactInputDTO: z.ZodObject<{
|
|
File without changes
|
|
@@ -69,14 +69,14 @@ export declare const contract: {
|
|
|
69
69
|
id: string;
|
|
70
70
|
createdAt: Date;
|
|
71
71
|
profileId: string;
|
|
72
|
-
updatedAt: Date;
|
|
73
72
|
channel: string;
|
|
73
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
74
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
75
|
+
updatedAt: Date;
|
|
74
76
|
msisdn: string;
|
|
75
77
|
amount: number;
|
|
76
78
|
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;
|
|
@@ -97,16 +97,16 @@ export declare const contract: {
|
|
|
97
97
|
id: string;
|
|
98
98
|
createdAt: Date;
|
|
99
99
|
profileId: string;
|
|
100
|
-
updatedAt: Date;
|
|
101
100
|
channel: string;
|
|
101
|
+
updatedAt: Date;
|
|
102
102
|
msisdn: string;
|
|
103
103
|
amount: number;
|
|
104
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;
|
|
@@ -129,14 +129,14 @@ export declare const contract: {
|
|
|
129
129
|
id: string;
|
|
130
130
|
createdAt: Date;
|
|
131
131
|
profileId: string;
|
|
132
|
-
updatedAt: Date;
|
|
133
132
|
channel: string;
|
|
133
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
134
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
135
|
+
updatedAt: Date;
|
|
134
136
|
msisdn: string;
|
|
135
137
|
amount: number;
|
|
136
138
|
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;
|
|
@@ -160,16 +160,16 @@ export declare const contract: {
|
|
|
160
160
|
id: string;
|
|
161
161
|
createdAt: Date;
|
|
162
162
|
profileId: string;
|
|
163
|
-
updatedAt: Date;
|
|
164
163
|
channel: string;
|
|
164
|
+
updatedAt: Date;
|
|
165
165
|
msisdn: string;
|
|
166
166
|
amount: number;
|
|
167
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;
|
|
@@ -261,14 +261,14 @@ export declare const contract: {
|
|
|
261
261
|
id: string;
|
|
262
262
|
createdAt: Date;
|
|
263
263
|
profileId: string;
|
|
264
|
-
updatedAt: Date;
|
|
265
264
|
channel: string;
|
|
265
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
266
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
267
|
+
updatedAt: Date;
|
|
266
268
|
msisdn: string;
|
|
267
269
|
amount: number;
|
|
268
270
|
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;
|
|
@@ -289,16 +289,16 @@ export declare const contract: {
|
|
|
289
289
|
id: string;
|
|
290
290
|
createdAt: Date;
|
|
291
291
|
profileId: string;
|
|
292
|
-
updatedAt: Date;
|
|
293
292
|
channel: string;
|
|
293
|
+
updatedAt: Date;
|
|
294
294
|
msisdn: string;
|
|
295
295
|
amount: number;
|
|
296
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;
|
|
@@ -321,14 +321,14 @@ export declare const contract: {
|
|
|
321
321
|
id: string;
|
|
322
322
|
createdAt: Date;
|
|
323
323
|
profileId: string;
|
|
324
|
-
updatedAt: Date;
|
|
325
324
|
channel: string;
|
|
325
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
326
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
327
|
+
updatedAt: Date;
|
|
326
328
|
msisdn: string;
|
|
327
329
|
amount: number;
|
|
328
330
|
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;
|
|
@@ -352,16 +352,16 @@ export declare const contract: {
|
|
|
352
352
|
id: string;
|
|
353
353
|
createdAt: Date;
|
|
354
354
|
profileId: string;
|
|
355
|
-
updatedAt: Date;
|
|
356
355
|
channel: string;
|
|
356
|
+
updatedAt: Date;
|
|
357
357
|
msisdn: string;
|
|
358
358
|
amount: number;
|
|
359
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;
|
|
@@ -456,14 +456,14 @@ export declare const contract: {
|
|
|
456
456
|
id: string;
|
|
457
457
|
createdAt: Date;
|
|
458
458
|
profileId: string;
|
|
459
|
-
updatedAt: Date;
|
|
460
459
|
channel: string;
|
|
460
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
461
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
462
|
+
updatedAt: Date;
|
|
461
463
|
msisdn: string;
|
|
462
464
|
amount: number;
|
|
463
465
|
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;
|
|
@@ -484,16 +484,16 @@ export declare const contract: {
|
|
|
484
484
|
id: string;
|
|
485
485
|
createdAt: Date;
|
|
486
486
|
profileId: string;
|
|
487
|
-
updatedAt: Date;
|
|
488
487
|
channel: string;
|
|
488
|
+
updatedAt: Date;
|
|
489
489
|
msisdn: string;
|
|
490
490
|
amount: number;
|
|
491
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;
|
|
@@ -594,14 +594,14 @@ export declare const contract: {
|
|
|
594
594
|
id: string;
|
|
595
595
|
createdAt: Date;
|
|
596
596
|
profileId: string;
|
|
597
|
-
updatedAt: Date;
|
|
598
597
|
channel: string;
|
|
598
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
599
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
600
|
+
updatedAt: Date;
|
|
599
601
|
msisdn: string;
|
|
600
602
|
amount: number;
|
|
601
603
|
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;
|
|
@@ -622,16 +622,16 @@ export declare const contract: {
|
|
|
622
622
|
id: string;
|
|
623
623
|
createdAt: Date;
|
|
624
624
|
profileId: string;
|
|
625
|
-
updatedAt: Date;
|
|
626
625
|
channel: string;
|
|
626
|
+
updatedAt: Date;
|
|
627
627
|
msisdn: string;
|
|
628
628
|
amount: number;
|
|
629
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;
|
|
@@ -704,14 +704,14 @@ export declare const contract: {
|
|
|
704
704
|
id: string;
|
|
705
705
|
createdAt: Date;
|
|
706
706
|
profileId: string;
|
|
707
|
-
updatedAt: Date;
|
|
708
707
|
channel: string;
|
|
708
|
+
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
709
|
+
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
710
|
+
updatedAt: Date;
|
|
709
711
|
msisdn: string;
|
|
710
712
|
amount: number;
|
|
711
713
|
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;
|
|
@@ -732,16 +732,16 @@ export declare const contract: {
|
|
|
732
732
|
id: string;
|
|
733
733
|
createdAt: Date;
|
|
734
734
|
profileId: string;
|
|
735
|
-
updatedAt: Date;
|
|
736
735
|
channel: string;
|
|
736
|
+
updatedAt: Date;
|
|
737
737
|
msisdn: string;
|
|
738
738
|
amount: number;
|
|
739
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;
|