@neo-edi/sdk 1.0.17 → 1.0.19

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/README.md CHANGED
@@ -84,10 +84,10 @@ if (customer) {
84
84
 
85
85
  // Create customer
86
86
  const newCustomer = await client.customers.create({
87
- customerId: 'ACME-001',
88
87
  customerName: 'Acme Corporation',
89
88
  customerMetadata: { industry: 'retail' }
90
89
  });
90
+ // Returns customer with auto-generated id (e.g., 'cust_01HXYZ...')
91
91
 
92
92
  // Update customer
93
93
  const updated = await client.customers.update('ACME-001', {
package/dist/index.js CHANGED
@@ -63,7 +63,7 @@ var NeoEdiValidationError = class extends NeoEdiError {
63
63
  // package.json
64
64
  var package_default = {
65
65
  name: "@neo-edi/sdk",
66
- version: "1.0.17",
66
+ version: "1.0.19",
67
67
  description: "TypeScript SDK for the Neo-EDI platform",
68
68
  main: "./dist/index.js",
69
69
  module: "./dist/index.mjs",
package/dist/index.mjs CHANGED
@@ -32,7 +32,7 @@ var NeoEdiValidationError = class extends NeoEdiError {
32
32
  // package.json
33
33
  var package_default = {
34
34
  name: "@neo-edi/sdk",
35
- version: "1.0.17",
35
+ version: "1.0.19",
36
36
  description: "TypeScript SDK for the Neo-EDI platform",
37
37
  main: "./dist/index.js",
38
38
  module: "./dist/index.mjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo-edi/sdk",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "TypeScript SDK for the Neo-EDI platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -16,7 +16,7 @@
16
16
  "dist"
17
17
  ],
18
18
  "dependencies": {
19
- "@neo-edi/types": "1.0.15"
19
+ "@neo-edi/types": "1.0.19"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/node": "^20",
@@ -24,7 +24,7 @@
24
24
  "typescript": "^5.0.0"
25
25
  },
26
26
  "peerDependencies": {
27
- "@neo-edi/types": "1.0.15"
27
+ "@neo-edi/types": "1.0.19"
28
28
  },
29
29
  "scripts": {
30
30
  "build": "tsup src/index.ts --format cjs,esm --dts",