@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.d.cts CHANGED
@@ -922,6 +922,8 @@ type AccountActivityItem = {
922
922
  timestamp: string;
923
923
  };
924
924
  type AccountSummaryResponse = {
925
+ userId: string;
926
+ nuban: string | null;
925
927
  balance: number;
926
928
  currency: string;
927
929
  dailySendLimit: number;
package/dist/index.d.ts CHANGED
@@ -922,6 +922,8 @@ type AccountActivityItem = {
922
922
  timestamp: string;
923
923
  };
924
924
  type AccountSummaryResponse = {
925
+ userId: string;
926
+ nuban: string | null;
925
927
  balance: number;
926
928
  currency: string;
927
929
  dailySendLimit: number;
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(),