@bizmap/sdk 0.0.3 → 0.0.4

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 CHANGED
@@ -127,6 +127,7 @@ declare const RegisterCompanyForm: z.ZodObject<{
127
127
  path: z.ZodString;
128
128
  extension: z.ZodString;
129
129
  description: z.ZodOptional<z.ZodString>;
130
+ mime: z.ZodString;
130
131
  alias: z.ZodEnum<{
131
132
  pdf: "pdf";
132
133
  word: "word";
@@ -145,6 +146,7 @@ declare const RegisterCompanyForm: z.ZodObject<{
145
146
  path: z.ZodString;
146
147
  extension: z.ZodString;
147
148
  description: z.ZodOptional<z.ZodString>;
149
+ mime: z.ZodString;
148
150
  alias: z.ZodEnum<{
149
151
  pdf: "pdf";
150
152
  word: "word";
package/dist/main.js CHANGED
@@ -33,7 +33,7 @@ var PriceTag = z2.object({
33
33
  // src/schemas/Company.ts
34
34
  import {
35
35
  Address,
36
- Currencies,
36
+ currencies,
37
37
  FileDetails,
38
38
  PhoneNumber,
39
39
  UserModel as UserModel2
@@ -114,11 +114,11 @@ var CompanyBillingModel = z4.object({
114
114
  trn: z4.string().nullish(),
115
115
  gctRegNo: z4.string().nullish(),
116
116
  billingProvider: companyUserRoles.extract(["doc", "physAsst"]),
117
- primaryCurrency: Currencies,
117
+ primaryCurrency: currencies,
118
118
  additionalFees: z4.array(PriceAdjustment).optional(),
119
119
  discounts: z4.array(PriceAdjustment).optional(),
120
120
  services: z4.array(PriceTag),
121
- acceptedCurrencies: z4.array(Currencies),
121
+ acceptedCurrencies: z4.array(currencies),
122
122
  ...TimeLog.shape
123
123
  });
124
124
  var RegisterCompanyForm = z4.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizmap/sdk",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "main": "./dist/main.js",
5
5
  "types": "./dist/main.d.ts",
6
6
  "type": "module",
@@ -17,7 +17,7 @@
17
17
  "license": "MIT",
18
18
  "description": "",
19
19
  "devDependencies": {
20
- "@wavy/util": "^0.0.4",
20
+ "@wavy/util": "^0.0.6",
21
21
  "tsup": "^8.5.0",
22
22
  "typescript": "^5.9.2",
23
23
  "zod": "^4.2.1"