@nokinc-flur/sdk 1.0.6 → 1.1.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 +7 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -152,6 +152,13 @@ var AccountActivityItemSchema = z.object({
|
|
|
152
152
|
timestamp: IsoDateSchema
|
|
153
153
|
});
|
|
154
154
|
var AccountSummaryResponseSchema = z.object({
|
|
155
|
+
/** Authenticated user's stable internal id. */
|
|
156
|
+
userId: UuidSchema,
|
|
157
|
+
/**
|
|
158
|
+
* 10-digit Nigeria Uniform Bank Account Number (NUBAN) allocated by the
|
|
159
|
+
* bank partner. `null` when the user has no partner-allocated account yet.
|
|
160
|
+
*/
|
|
161
|
+
nuban: z.string().regex(/^[0-9]{10}$/).nullable(),
|
|
155
162
|
balance: z.number().int(),
|
|
156
163
|
currency: CurrencySchema,
|
|
157
164
|
dailySendLimit: z.number().int().nonnegative(),
|