arky-sdk 0.3.90 → 0.3.91

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/types.d.cts CHANGED
@@ -710,6 +710,7 @@ interface UpdateOrderParams {
710
710
  statuses: any[];
711
711
  blocks: any[];
712
712
  items: any[];
713
+ address?: any | null;
713
714
  email?: string | null;
714
715
  phone?: string | null;
715
716
  }
package/dist/types.d.ts CHANGED
@@ -710,6 +710,7 @@ interface UpdateOrderParams {
710
710
  statuses: any[];
711
711
  blocks: any[];
712
712
  items: any[];
713
+ address?: any | null;
713
714
  email?: string | null;
714
715
  phone?: string | null;
715
716
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arky-sdk",
3
- "version": "0.3.90",
3
+ "version": "0.3.91",
4
4
  "description": "Official TypeScript SDK for Arky - All-in-one business platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -27,11 +27,6 @@
27
27
  "dist",
28
28
  "README.md"
29
29
  ],
30
- "scripts": {
31
- "build": "tsup",
32
- "dev": "tsup --watch",
33
- "clean": "rm -rf dist"
34
- },
35
30
  "keywords": [
36
31
  "arky",
37
32
  "sdk",
@@ -54,5 +49,10 @@
54
49
  "devDependencies": {
55
50
  "tsup": "^8.5.0",
56
51
  "typescript": "^5.8.3"
52
+ },
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "dev": "tsup --watch",
56
+ "clean": "rm -rf dist"
57
57
  }
58
- }
58
+ }