@temboplus/afloat 0.1.74-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.
Files changed (66) hide show
  1. package/dist/index.cjs.js +1 -1
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.d.ts +9 -6
  4. package/dist/index.esm.js +1 -1
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/lib/api/index.d.ts +0 -1
  7. package/dist/lib/error/error.permission.d.ts +1 -1
  8. package/dist/lib/query/index.d.ts +2 -0
  9. package/dist/lib/query/pagination/pagination.d.ts +73 -0
  10. package/dist/lib/query/pagination/pagination.schemas.d.ts +83 -0
  11. package/dist/{features → modules}/auth/auth.contract.d.ts +2 -9
  12. package/dist/{features → modules}/auth/auth.manager.d.ts +2 -2
  13. package/dist/{features → modules}/auth/auth.repository.d.ts +18 -1
  14. package/dist/{features → modules}/auth/auth.store.d.ts +1 -1
  15. package/dist/modules/auth/index.d.ts +4 -0
  16. package/dist/{features → modules}/auth/storage/client-store.d.ts +1 -1
  17. package/dist/{features → modules}/auth/storage/types.d.ts +1 -1
  18. package/dist/{models → modules/auth}/user.model.d.ts +4 -3
  19. package/dist/{models → modules/contact}/contact-info.model.d.ts +2 -2
  20. package/dist/{features → modules}/contact/contact-input-handler.d.ts +1 -1
  21. package/dist/{models → modules/contact}/contact.model.d.ts +1 -1
  22. package/dist/{features → modules}/contact/contact.repository.d.ts +2 -2
  23. package/dist/modules/contact/index.d.ts +4 -0
  24. package/dist/modules/login/index.d.ts +2 -0
  25. package/dist/modules/login/login.model.d.ts +1 -0
  26. package/dist/{features/auth/identity/identity.repository.d.ts → modules/login/login.repository.d.ts} +1 -1
  27. package/dist/{features → modules}/payout/index.d.ts +2 -0
  28. package/dist/{features → modules}/payout/payout-channel-handler.d.ts +2 -2
  29. package/dist/{models → modules/payout}/payout.model.d.ts +2 -2
  30. package/dist/{features → modules}/payout/payout.repository.d.ts +28 -16
  31. package/dist/modules/profile/index.d.ts +3 -0
  32. package/dist/{models → modules/profile}/profile.model.d.ts +1 -1
  33. package/dist/{features/auth → modules}/profile/profile.repository.d.ts +1 -1
  34. package/dist/modules/user/index.d.ts +4 -0
  35. package/dist/{models → modules/user}/role.model.d.ts +1 -1
  36. package/dist/{features/admin/admin.contract.d.ts → modules/user/user.contract.d.ts} +73 -73
  37. package/dist/{models/managed-user.model.d.ts → modules/user/user.model.d.ts} +1 -1
  38. package/dist/{features/admin/admin.repository.d.ts → modules/user/user.repository.d.ts} +4 -4
  39. package/dist/{features → modules}/wallet/index.d.ts +5 -2
  40. package/dist/{models → modules/wallet}/narration.model.d.ts +1 -1
  41. package/dist/{models → modules/wallet}/statement-entry.model.d.ts +1 -1
  42. package/dist/{features → modules}/wallet/wallet-manager.session.d.ts +2 -2
  43. package/dist/{models → modules/wallet}/wallet.model.d.ts +1 -1
  44. package/dist/{features → modules}/wallet/wallet.repository.d.ts +2 -2
  45. package/dist/{features → modules}/wallet/wallet.utils.d.ts +1 -1
  46. package/package.json +1 -1
  47. package/dist/features/admin/index.d.ts +0 -2
  48. package/dist/features/auth/access/access.api-contract.d.ts +0 -13
  49. package/dist/features/auth/access/access.repository.d.ts +0 -55
  50. package/dist/features/auth/index.d.ts +0 -5
  51. package/dist/features/contact/index.d.ts +0 -2
  52. package/dist/lib/api/common-schemas.d.ts +0 -49
  53. package/dist/models/index.d.ts +0 -11
  54. package/dist/{models/permission.d.ts → modules/auth/permission.type.d.ts} +0 -0
  55. package/dist/{features → modules}/auth/storage/client-token-handler.d.ts +0 -0
  56. package/dist/{features → modules}/contact/contact.api-contract.d.ts +24 -24
  57. package/dist/{features → modules}/contact/contact.dtos.d.ts +6 -6
  58. package/dist/{features/auth/identity/identity.api-contract.d.ts → modules/login/login.api-contract.d.ts} +0 -0
  59. package/dist/{features → modules}/payout/payout.api-contract.d.ts +55 -55
  60. package/dist/{features → modules}/payout/payout.dtos.d.ts +50 -50
  61. package/dist/{features → modules}/payout/payout.query.d.ts +0 -0
  62. package/dist/{features/auth → modules}/profile/profile.api-contract.d.ts +0 -0
  63. package/dist/{features/auth → modules}/profile/profile.dtos.d.ts +0 -0
  64. package/dist/{features/admin/admin.dtos.d.ts → modules/user/user.dtos.d.ts} +0 -0
  65. package/dist/{features → modules}/wallet/wallet.contract.d.ts +12 -12
  66. package/dist/{features → modules}/wallet/wallet.dtos.d.ts +24 -24
@@ -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 {};
@@ -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";
@@ -42,21 +42,21 @@ export declare const contract: {
42
42
  }, "strip", z.ZodTypeAny, {
43
43
  type: import("./contact.dtos.js").ContactType;
44
44
  id: string;
45
- profileId: string;
46
- createdAt: string;
47
- updatedAt: string;
48
45
  displayName: string;
49
46
  accountNo: string;
47
+ createdAt: string;
48
+ profileId: string;
50
49
  channel: string;
50
+ updatedAt: string;
51
51
  }, {
52
52
  type: import("./contact.dtos.js").ContactType;
53
53
  id: string;
54
- profileId: string;
55
- createdAt: string;
56
- updatedAt: string;
57
54
  displayName: string;
58
55
  accountNo: string;
56
+ createdAt: string;
57
+ profileId: string;
59
58
  channel: string;
59
+ updatedAt: string;
60
60
  }>;
61
61
  };
62
62
  };
@@ -93,21 +93,21 @@ export declare const contract: {
93
93
  }, "strip", z.ZodTypeAny, {
94
94
  type: import("./contact.dtos.js").ContactType;
95
95
  id: string;
96
- profileId: string;
97
- createdAt: string;
98
- updatedAt: string;
99
96
  displayName: string;
100
97
  accountNo: string;
98
+ createdAt: string;
99
+ profileId: string;
101
100
  channel: string;
101
+ updatedAt: string;
102
102
  }, {
103
103
  type: import("./contact.dtos.js").ContactType;
104
104
  id: string;
105
- profileId: string;
106
- createdAt: string;
107
- updatedAt: string;
108
105
  displayName: string;
109
106
  accountNo: string;
107
+ createdAt: string;
108
+ profileId: string;
110
109
  channel: string;
110
+ updatedAt: string;
111
111
  }>;
112
112
  };
113
113
  };
@@ -135,21 +135,21 @@ export declare const contract: {
135
135
  }, "strip", z.ZodTypeAny, {
136
136
  type: import("./contact.dtos.js").ContactType;
137
137
  id: string;
138
- profileId: string;
139
- createdAt: string;
140
- updatedAt: string;
141
138
  displayName: string;
142
139
  accountNo: string;
140
+ createdAt: string;
141
+ profileId: string;
143
142
  channel: string;
143
+ updatedAt: string;
144
144
  }, {
145
145
  type: import("./contact.dtos.js").ContactType;
146
146
  id: string;
147
- profileId: string;
148
- createdAt: string;
149
- updatedAt: string;
150
147
  displayName: string;
151
148
  accountNo: string;
149
+ createdAt: string;
150
+ profileId: string;
152
151
  channel: string;
152
+ updatedAt: string;
153
153
  }>, "many">;
154
154
  };
155
155
  };
@@ -170,21 +170,21 @@ export declare const contract: {
170
170
  }, "strip", z.ZodTypeAny, {
171
171
  type: import("./contact.dtos.js").ContactType;
172
172
  id: string;
173
- profileId: string;
174
- createdAt: string;
175
- updatedAt: string;
176
173
  displayName: string;
177
174
  accountNo: string;
175
+ createdAt: string;
176
+ profileId: string;
178
177
  channel: string;
178
+ updatedAt: string;
179
179
  }, {
180
180
  type: import("./contact.dtos.js").ContactType;
181
181
  id: string;
182
- profileId: string;
183
- createdAt: string;
184
- updatedAt: string;
185
182
  displayName: string;
186
183
  accountNo: string;
184
+ createdAt: string;
185
+ profileId: string;
187
186
  channel: string;
187
+ updatedAt: string;
188
188
  }>;
189
189
  };
190
190
  };
@@ -46,21 +46,21 @@ export declare const ContactDTOSchemas: {
46
46
  }, "strip", z.ZodTypeAny, {
47
47
  type: ContactType;
48
48
  id: string;
49
- profileId: string;
50
- createdAt: string;
51
- updatedAt: string;
52
49
  displayName: string;
53
50
  accountNo: string;
51
+ createdAt: string;
52
+ profileId: string;
54
53
  channel: string;
54
+ updatedAt: string;
55
55
  }, {
56
56
  type: ContactType;
57
57
  id: string;
58
- profileId: string;
59
- createdAt: string;
60
- updatedAt: string;
61
58
  displayName: string;
62
59
  accountNo: string;
60
+ createdAt: string;
61
+ profileId: string;
63
62
  channel: string;
63
+ updatedAt: string;
64
64
  }>;
65
65
  /** Schema for contact input validation */
66
66
  contactInputDTO: z.ZodObject<{
@@ -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
- profileId: string;
71
70
  createdAt: Date;
72
- updatedAt: Date;
71
+ profileId: string;
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;
@@ -95,18 +95,18 @@ export declare const contract: {
95
95
  }, {
96
96
  status: import("./payout.dtos.js").PayoutStatus;
97
97
  id: string;
98
- profileId: string;
99
98
  createdAt: Date;
100
- updatedAt: Date;
99
+ profileId: string;
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;
@@ -127,16 +127,16 @@ export declare const contract: {
127
127
  results: {
128
128
  status: import("./payout.dtos.js").PayoutStatus;
129
129
  id: string;
130
- profileId: string;
131
130
  createdAt: Date;
132
- updatedAt: Date;
131
+ profileId: string;
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;
@@ -158,18 +158,18 @@ export declare const contract: {
158
158
  results: {
159
159
  status: import("./payout.dtos.js").PayoutStatus;
160
160
  id: string;
161
- profileId: string;
162
161
  createdAt: Date;
163
- updatedAt: Date;
162
+ profileId: string;
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;
@@ -195,17 +195,17 @@ 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
- approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
199
- eager: string;
200
- orderByDesc: string;
201
198
  rangeStart: number;
202
199
  rangeEnd: number;
203
- }, {
204
- approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
205
- eager: string;
206
200
  orderByDesc: string;
201
+ eager: string;
202
+ approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
203
+ }, {
207
204
  rangeStart: number;
208
205
  rangeEnd: number;
206
+ orderByDesc: string;
207
+ eager: string;
208
+ approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
209
209
  }>;
210
210
  method: "GET";
211
211
  path: "";
@@ -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
- profileId: string;
263
262
  createdAt: Date;
264
- updatedAt: Date;
263
+ profileId: string;
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;
@@ -287,18 +287,18 @@ export declare const contract: {
287
287
  }, {
288
288
  status: import("./payout.dtos.js").PayoutStatus;
289
289
  id: string;
290
- profileId: string;
291
290
  createdAt: Date;
292
- updatedAt: Date;
291
+ profileId: string;
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;
@@ -319,16 +319,16 @@ export declare const contract: {
319
319
  results: {
320
320
  status: import("./payout.dtos.js").PayoutStatus;
321
321
  id: string;
322
- profileId: string;
323
322
  createdAt: Date;
324
- updatedAt: Date;
323
+ profileId: string;
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;
@@ -350,18 +350,18 @@ export declare const contract: {
350
350
  results: {
351
351
  status: import("./payout.dtos.js").PayoutStatus;
352
352
  id: string;
353
- profileId: string;
354
353
  createdAt: Date;
355
- updatedAt: Date;
354
+ profileId: string;
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;
@@ -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
- profileId: string;
458
457
  createdAt: Date;
459
- updatedAt: Date;
458
+ profileId: string;
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;
@@ -482,18 +482,18 @@ export declare const contract: {
482
482
  }, {
483
483
  status: import("./payout.dtos.js").PayoutStatus;
484
484
  id: string;
485
- profileId: string;
486
485
  createdAt: Date;
487
- updatedAt: Date;
486
+ profileId: string;
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;
@@ -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
- profileId: string;
596
595
  createdAt: Date;
597
- updatedAt: Date;
596
+ profileId: string;
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;
@@ -620,18 +620,18 @@ export declare const contract: {
620
620
  }, {
621
621
  status: import("./payout.dtos.js").PayoutStatus;
622
622
  id: string;
623
- profileId: string;
624
623
  createdAt: Date;
625
- updatedAt: Date;
624
+ profileId: string;
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;
@@ -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
- profileId: string;
706
705
  createdAt: Date;
707
- updatedAt: Date;
706
+ profileId: string;
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;
@@ -730,18 +730,18 @@ export declare const contract: {
730
730
  }, {
731
731
  status: import("./payout.dtos.js").PayoutStatus;
732
732
  id: string;
733
- profileId: string;
734
733
  createdAt: Date;
735
- updatedAt: Date;
734
+ profileId: string;
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;