@deliverart/sdk-js-company 0.0.2 → 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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @deliverart/sdk-js-company
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 36a941d: Upgrade types version
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - b4fc2d4: Upgrade types version
14
+
3
15
  ## 0.0.2
4
16
 
5
17
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -123,9 +123,9 @@ var getCompaniesQuerySchema = import_zod3.z.object({
123
123
  "billingAddress.postalCode": import_zod3.z.string().optional(),
124
124
  "operationalAddress.city": import_zod3.z.string().optional(),
125
125
  "operationalAddress.postalCode": import_zod3.z.string().optional(),
126
- "order[businessName]": import_zod3.z.enum(["asc", "desc"]).optional(),
127
- "order[createdAt]": import_zod3.z.enum(["asc", "desc"]).optional(),
128
- "order[updatedAt]": import_zod3.z.enum(["asc", "desc"]).optional(),
126
+ "order[businessName]": import_sdk_js_global_types2.sortDirSchema.optional(),
127
+ "order[createdAt]": import_sdk_js_global_types2.sortDirSchema.optional(),
128
+ "order[updatedAt]": import_sdk_js_global_types2.sortDirSchema.optional(),
129
129
  page: import_zod3.z.coerce.number().optional()
130
130
  });
131
131
  var getCompaniesResponseSchema = (0, import_sdk_js_global_types2.createPaginatedSchema)(companySchema);