@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
|
@@ -13,18 +13,18 @@ export declare const contract: {
|
|
|
13
13
|
id?: string | undefined;
|
|
14
14
|
accountNo?: string | undefined;
|
|
15
15
|
profileId?: string | undefined;
|
|
16
|
+
accountName?: string | undefined;
|
|
16
17
|
channel?: string | undefined;
|
|
17
18
|
countryCode?: string | undefined;
|
|
18
19
|
currencyCode?: string | undefined;
|
|
19
|
-
accountName?: string | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
id?: string | undefined;
|
|
22
22
|
accountNo?: string | undefined;
|
|
23
23
|
profileId?: string | undefined;
|
|
24
|
+
accountName?: string | undefined;
|
|
24
25
|
channel?: string | undefined;
|
|
25
26
|
countryCode?: string | undefined;
|
|
26
27
|
currencyCode?: string | undefined;
|
|
27
|
-
accountName?: string | undefined;
|
|
28
28
|
}>;
|
|
29
29
|
method: "GET";
|
|
30
30
|
path: "/";
|
|
@@ -42,21 +42,21 @@ export declare const contract: {
|
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
id: string;
|
|
44
44
|
accountNo: string;
|
|
45
|
-
createdAt: string;
|
|
46
45
|
profileId: string;
|
|
46
|
+
createdAt: string;
|
|
47
47
|
updatedAt: string;
|
|
48
|
+
accountName: string;
|
|
48
49
|
channel: string;
|
|
49
50
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
50
51
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
51
|
-
accountName: string;
|
|
52
52
|
}, {
|
|
53
53
|
id: string;
|
|
54
54
|
accountNo: string;
|
|
55
|
-
createdAt: string;
|
|
56
55
|
profileId: string;
|
|
56
|
+
createdAt: string;
|
|
57
57
|
updatedAt: string;
|
|
58
|
-
channel: string;
|
|
59
58
|
accountName: string;
|
|
59
|
+
channel: string;
|
|
60
60
|
countryCode?: string | undefined;
|
|
61
61
|
currencyCode?: string | undefined;
|
|
62
62
|
}>, "many">;
|
|
@@ -17,21 +17,21 @@ declare const walletSchema: z.ZodObject<{
|
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
18
|
id: string;
|
|
19
19
|
accountNo: string;
|
|
20
|
-
createdAt: string;
|
|
21
20
|
profileId: string;
|
|
21
|
+
createdAt: string;
|
|
22
22
|
updatedAt: string;
|
|
23
|
+
accountName: string;
|
|
23
24
|
channel: string;
|
|
24
25
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
25
26
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
26
|
-
accountName: string;
|
|
27
27
|
}, {
|
|
28
28
|
id: string;
|
|
29
29
|
accountNo: string;
|
|
30
|
-
createdAt: string;
|
|
31
30
|
profileId: string;
|
|
31
|
+
createdAt: string;
|
|
32
32
|
updatedAt: string;
|
|
33
|
-
channel: string;
|
|
34
33
|
accountName: string;
|
|
34
|
+
channel: string;
|
|
35
35
|
countryCode?: string | undefined;
|
|
36
36
|
currencyCode?: string | undefined;
|
|
37
37
|
}>;
|
|
@@ -52,18 +52,18 @@ declare const walletQuerySchema: z.ZodObject<{
|
|
|
52
52
|
id?: string | undefined;
|
|
53
53
|
accountNo?: string | undefined;
|
|
54
54
|
profileId?: string | undefined;
|
|
55
|
+
accountName?: string | undefined;
|
|
55
56
|
channel?: string | undefined;
|
|
56
57
|
countryCode?: string | undefined;
|
|
57
58
|
currencyCode?: string | undefined;
|
|
58
|
-
accountName?: string | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
id?: string | undefined;
|
|
61
61
|
accountNo?: string | undefined;
|
|
62
62
|
profileId?: string | undefined;
|
|
63
|
+
accountName?: string | undefined;
|
|
63
64
|
channel?: string | undefined;
|
|
64
65
|
countryCode?: string | undefined;
|
|
65
66
|
currencyCode?: string | undefined;
|
|
66
|
-
accountName?: string | undefined;
|
|
67
67
|
}>;
|
|
68
68
|
/**
|
|
69
69
|
* Schema definition for a statement entry.
|
|
@@ -120,21 +120,21 @@ export declare const WalletDTOSchemas: {
|
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
id: string;
|
|
122
122
|
accountNo: string;
|
|
123
|
-
createdAt: string;
|
|
124
123
|
profileId: string;
|
|
124
|
+
createdAt: string;
|
|
125
125
|
updatedAt: string;
|
|
126
|
+
accountName: string;
|
|
126
127
|
channel: string;
|
|
127
128
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
128
129
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
129
|
-
accountName: string;
|
|
130
130
|
}, {
|
|
131
131
|
id: string;
|
|
132
132
|
accountNo: string;
|
|
133
|
-
createdAt: string;
|
|
134
133
|
profileId: string;
|
|
134
|
+
createdAt: string;
|
|
135
135
|
updatedAt: string;
|
|
136
|
-
channel: string;
|
|
137
136
|
accountName: string;
|
|
137
|
+
channel: string;
|
|
138
138
|
countryCode?: string | undefined;
|
|
139
139
|
currencyCode?: string | undefined;
|
|
140
140
|
}>;
|
|
@@ -150,18 +150,18 @@ export declare const WalletDTOSchemas: {
|
|
|
150
150
|
id?: string | undefined;
|
|
151
151
|
accountNo?: string | undefined;
|
|
152
152
|
profileId?: string | undefined;
|
|
153
|
+
accountName?: string | undefined;
|
|
153
154
|
channel?: string | undefined;
|
|
154
155
|
countryCode?: string | undefined;
|
|
155
156
|
currencyCode?: string | undefined;
|
|
156
|
-
accountName?: string | undefined;
|
|
157
157
|
}, {
|
|
158
158
|
id?: string | undefined;
|
|
159
159
|
accountNo?: string | undefined;
|
|
160
160
|
profileId?: string | undefined;
|
|
161
|
+
accountName?: string | undefined;
|
|
161
162
|
channel?: string | undefined;
|
|
162
163
|
countryCode?: string | undefined;
|
|
163
164
|
currencyCode?: string | undefined;
|
|
164
|
-
accountName?: string | undefined;
|
|
165
165
|
}>;
|
|
166
166
|
statementEntry: z.ZodObject<{
|
|
167
167
|
accountNo: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|