@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 CHANGED
@@ -344,6 +344,13 @@ var AccountActivityItemSchema = import_zod.z.object({
344
344
  timestamp: IsoDateSchema
345
345
  });
346
346
  var AccountSummaryResponseSchema = import_zod.z.object({
347
+ /** Authenticated user's stable internal id. */
348
+ userId: UuidSchema,
349
+ /**
350
+ * 10-digit Nigeria Uniform Bank Account Number (NUBAN) allocated by the
351
+ * bank partner. `null` when the user has no partner-allocated account yet.
352
+ */
353
+ nuban: import_zod.z.string().regex(/^[0-9]{10}$/).nullable(),
347
354
  balance: import_zod.z.number().int(),
348
355
  currency: CurrencySchema,
349
356
  dailySendLimit: import_zod.z.number().int().nonnegative(),