@drawbridge/drawbridge-utils 0.0.15 → 0.0.17

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.cjs CHANGED
@@ -148,6 +148,7 @@ var constants_default = {
148
148
  },
149
149
  page: {
150
150
  domains: [],
151
+ headline: "This is the headline of your page.",
151
152
  status: "drafted",
152
153
  totals: {
153
154
  leads: 0,
package/dist/index.d.cts CHANGED
@@ -104,6 +104,7 @@ var constantsData = {
104
104
  },
105
105
  page : {
106
106
  domains : [],
107
+ headline : 'This is the headline of your page.',
107
108
  status : 'drafted',
108
109
  totals : {
109
110
  leads : 0,
package/dist/index.d.ts CHANGED
@@ -104,6 +104,7 @@ var constantsData = {
104
104
  },
105
105
  page : {
106
106
  domains : [],
107
+ headline : 'This is the headline of your page.',
107
108
  status : 'drafted',
108
109
  totals : {
109
110
  leads : 0,
package/dist/index.js CHANGED
@@ -105,6 +105,7 @@ var constants_default = {
105
105
  },
106
106
  page: {
107
107
  domains: [],
108
+ headline: "This is the headline of your page.",
108
109
  status: "drafted",
109
110
  totals: {
110
111
  leads: 0,
package/package.json CHANGED
@@ -55,6 +55,11 @@
55
55
  "import": "./dist/fetch.js",
56
56
  "require": "./dist/fetch.cjs"
57
57
  },
58
+ "./shopify": {
59
+ "types": "./dist/shopify.d.ts",
60
+ "import": "./dist/shopify.js",
61
+ "require": "./dist/shopify.cjs"
62
+ },
58
63
  "./slugify": {
59
64
  "types": "./dist/slugify.d.ts",
60
65
  "import": "./dist/slugify.js",
@@ -72,8 +77,9 @@
72
77
  "access": "public"
73
78
  },
74
79
  "scripts": {
80
+ "sync": ". \"$HOME/.nvm/nvm.sh\" && nvm use && npm prune && npm install",
75
81
  "build": "tsup && npm publish"
76
82
  },
77
83
  "types": "dist/index.d.ts",
78
- "version": "0.0.15"
84
+ "version": "0.0.17"
79
85
  }