@bizmap/sdk 0.0.26 → 0.0.27
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/main.d.ts +2 -2
- package/dist/main.js +1 -1
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ declare const CompanyOpState: z.ZodObject<{
|
|
|
53
53
|
lastModified: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
54
54
|
uid: z.ZodReadonly<z.ZodString>;
|
|
55
55
|
availableBalance: z.ZodNumber;
|
|
56
|
-
invoiceNoRef: z.ZodString
|
|
56
|
+
invoiceNoRef: z.ZodNullable<z.ZodString>;
|
|
57
57
|
totalUploads: z.ZodNumber;
|
|
58
58
|
preferences: z.ZodObject<{
|
|
59
59
|
createdAt: z.ZodReadonly<z.ZodInt>;
|
|
@@ -330,8 +330,8 @@ declare const CompanyDetails: z.ZodObject<{
|
|
|
330
330
|
opState: z.ZodObject<{
|
|
331
331
|
createdAt: z.ZodReadonly<z.ZodInt>;
|
|
332
332
|
lastModified: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
333
|
-
invoiceNoRef: z.ZodString;
|
|
334
333
|
availableBalance: z.ZodNumber;
|
|
334
|
+
invoiceNoRef: z.ZodNullable<z.ZodString>;
|
|
335
335
|
totalUploads: z.ZodNumber;
|
|
336
336
|
preferences: z.ZodObject<{
|
|
337
337
|
createdAt: z.ZodReadonly<z.ZodInt>;
|
package/dist/main.js
CHANGED
|
@@ -95,7 +95,7 @@ var CompanyOpState = z4.object({
|
|
|
95
95
|
// This can only be changed by the server/app admin
|
|
96
96
|
availableBalance: z4.number(),
|
|
97
97
|
/** A counter for the company's invoice numbers. */
|
|
98
|
-
invoiceNoRef: InvoiceNo,
|
|
98
|
+
invoiceNoRef: InvoiceNo.nullable(),
|
|
99
99
|
/**
|
|
100
100
|
* The total amount of uploads made by an admin.
|
|
101
101
|
* @note - This should be refreshed daily.
|