omni-sync-sdk 0.1.0 → 0.1.1

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/index.js CHANGED
@@ -63,7 +63,9 @@ var OmniSyncClient = class {
63
63
  headers: {
64
64
  Authorization: `Bearer ${this.apiKey}`,
65
65
  "Content-Type": "application/json",
66
- "X-SDK-Version": "0.1.0"
66
+ "X-SDK-Version": "0.1.0",
67
+ "ngrok-skip-browser-warning": "true"
68
+ // Skip ngrok warning page for dev tunnels
67
69
  },
68
70
  body: body ? JSON.stringify(body) : void 0,
69
71
  signal: controller.signal
package/dist/index.mjs CHANGED
@@ -38,7 +38,9 @@ var OmniSyncClient = class {
38
38
  headers: {
39
39
  Authorization: `Bearer ${this.apiKey}`,
40
40
  "Content-Type": "application/json",
41
- "X-SDK-Version": "0.1.0"
41
+ "X-SDK-Version": "0.1.0",
42
+ "ngrok-skip-browser-warning": "true"
43
+ // Skip ngrok warning page for dev tunnels
42
44
  },
43
45
  body: body ? JSON.stringify(body) : void 0,
44
46
  signal: controller.signal
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "omni-sync-sdk",
3
- "version": "0.1.0",
4
- "description": "SDK for integrating vibe coding stores with Omni-Sync Platform",
5
- "main": "dist/index.js",
6
- "module": "dist/index.mjs",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "require": "./dist/index.js",
12
- "import": "./dist/index.mjs"
13
- }
14
- },
15
- "files": [
16
- "dist"
17
- ],
18
- "scripts": {
19
- "build": "tsup src/index.ts --format cjs,esm --dts",
20
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
- "lint": "eslint \"src/**/*.ts\"",
22
- "test": "vitest run",
23
- "test:watch": "vitest",
24
- "prepublishOnly": "pnpm build"
25
- },
26
- "keywords": [
27
- "omni-sync",
28
- "e-commerce",
29
- "sdk",
30
- "vibe-coding",
31
- "multi-platform",
32
- "shopify",
33
- "tiktok",
34
- "sync"
35
- ],
36
- "author": "Omni-Sync Platform",
37
- "license": "MIT",
38
- "devDependencies": {
39
- "@types/node": "^25.0.3",
40
- "@typescript-eslint/eslint-plugin": "^8.50.1",
41
- "@typescript-eslint/parser": "^8.50.1",
42
- "eslint": "^9.39.2",
43
- "tsup": "^8.0.0",
44
- "typescript": "^5.3.0",
45
- "vitest": "^1.0.0"
46
- },
47
- "peerDependencies": {
48
- "typescript": ">=4.7.0"
49
- },
50
- "peerDependenciesMeta": {
51
- "typescript": {
52
- "optional": true
53
- }
54
- }
55
- }
1
+ {
2
+ "name": "omni-sync-sdk",
3
+ "version": "0.1.1",
4
+ "description": "SDK for integrating vibe coding stores with Omni-Sync Platform",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "require": "./dist/index.js",
12
+ "import": "./dist/index.mjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup src/index.ts --format cjs,esm --dts",
20
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
+ "lint": "eslint \"src/**/*.ts\"",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "prepublishOnly": "pnpm build"
25
+ },
26
+ "keywords": [
27
+ "omni-sync",
28
+ "e-commerce",
29
+ "sdk",
30
+ "vibe-coding",
31
+ "multi-platform",
32
+ "shopify",
33
+ "tiktok",
34
+ "sync"
35
+ ],
36
+ "author": "Omni-Sync Platform",
37
+ "license": "MIT",
38
+ "devDependencies": {
39
+ "@types/node": "^25.0.3",
40
+ "@typescript-eslint/eslint-plugin": "^8.50.1",
41
+ "@typescript-eslint/parser": "^8.50.1",
42
+ "eslint": "^9.39.2",
43
+ "tsup": "^8.0.0",
44
+ "typescript": "^5.3.0",
45
+ "vitest": "^1.0.0"
46
+ },
47
+ "peerDependencies": {
48
+ "typescript": ">=4.7.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "typescript": {
52
+ "optional": true
53
+ }
54
+ }
55
+ }