@drawbridge/drawbridge-utils 0.0.176 → 0.0.177
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/admin-B9ZaLvan.d.cts +697 -0
- package/dist/admin-C3HtEM6h.d.ts +697 -0
- package/dist/billing-Bc4yo9XG.d.cts +175 -0
- package/dist/billing-mNsKflmQ.d.ts +175 -0
- package/dist/billing.d.cts +1 -1
- package/dist/billing.d.ts +1 -1
- package/dist/connections/index.cjs +3077 -228
- package/dist/connections/index.d.cts +13 -4
- package/dist/connections/index.d.ts +13 -4
- package/dist/connections/index.js +3107 -255
- package/dist/features.cjs +2940 -226
- package/dist/features.d.cts +13 -4
- package/dist/features.d.ts +13 -4
- package/dist/features.js +2980 -260
- package/dist/http.cjs +10 -1
- package/dist/http.d.cts +10 -1
- package/dist/http.d.ts +10 -1
- package/dist/http.js +10 -1
- package/dist/{index-B8JhYfvU.d.ts → index-B546oDNo.d.ts} +2837 -956
- package/dist/{index-qY18QITf.d.cts → index-C59xHago.d.cts} +2837 -956
- package/dist/oauth/index.d.cts +1 -1
- package/dist/oauth/index.d.ts +1 -1
- package/dist/oauth-BJDh0sdM.d.cts +527 -0
- package/dist/oauth-DveZMLHx.d.ts +527 -0
- package/dist/partner-BOZltuh2.d.ts +94 -0
- package/dist/partner-ed2OfW1J.d.cts +94 -0
- package/dist/plans.cjs +2939 -225
- package/dist/plans.d.cts +13 -4
- package/dist/plans.d.ts +13 -4
- package/dist/plans.js +2980 -260
- package/dist/pricing.cjs +2972 -258
- package/dist/pricing.d.cts +13 -4
- package/dist/pricing.d.ts +13 -4
- package/dist/pricing.js +2977 -257
- package/dist/providers.cjs +2942 -247
- package/dist/providers.d.cts +12 -3
- package/dist/providers.d.ts +12 -3
- package/dist/providers.js +2946 -245
- package/dist/sendgrid.cjs +10 -1
- package/dist/sendgrid.js +10 -1
- package/dist/shopify/admin.cjs +562 -0
- package/dist/shopify/admin.d.cts +3 -0
- package/dist/shopify/admin.d.ts +3 -0
- package/dist/shopify/admin.js +528 -0
- package/dist/shopify/billing.cjs +166 -0
- package/dist/shopify/billing.d.cts +3 -0
- package/dist/shopify/billing.d.ts +3 -0
- package/dist/shopify/billing.js +140 -0
- package/dist/shopify/constants.cjs +63 -0
- package/dist/shopify/constants.d.cts +58 -0
- package/dist/shopify/constants.d.ts +58 -0
- package/dist/shopify/constants.js +32 -0
- package/dist/shopify/oauth.cjs +509 -0
- package/dist/shopify/oauth.d.cts +7 -0
- package/dist/shopify/oauth.d.ts +7 -0
- package/dist/shopify/oauth.js +466 -0
- package/dist/shopify/partner.cjs +156 -0
- package/dist/shopify/partner.d.cts +3 -0
- package/dist/shopify/partner.d.ts +3 -0
- package/dist/shopify/partner.js +130 -0
- package/dist/shopify/storefront.cjs +611 -0
- package/dist/shopify/storefront.d.cts +3 -0
- package/dist/shopify/storefront.d.ts +3 -0
- package/dist/shopify/storefront.js +576 -0
- package/dist/storefront-C8FKOGeD.d.cts +659 -0
- package/dist/storefront-DJFGLqPl.d.ts +659 -0
- package/dist/twilio.cjs +10 -1
- package/dist/twilio.js +10 -1
- package/package.json +98 -68
package/package.json
CHANGED
|
@@ -38,16 +38,41 @@
|
|
|
38
38
|
"import": "./dist/ai.js",
|
|
39
39
|
"require": "./dist/ai.cjs"
|
|
40
40
|
},
|
|
41
|
+
"./axios": {
|
|
42
|
+
"types": "./dist/axios.d.ts",
|
|
43
|
+
"import": "./dist/axios.js",
|
|
44
|
+
"require": "./dist/axios.cjs"
|
|
45
|
+
},
|
|
41
46
|
"./billing": {
|
|
42
47
|
"types": "./dist/billing.d.ts",
|
|
43
48
|
"import": "./dist/billing.js",
|
|
44
49
|
"require": "./dist/billing.cjs"
|
|
45
50
|
},
|
|
51
|
+
"./cdn": {
|
|
52
|
+
"types": "./dist/cdn.d.ts",
|
|
53
|
+
"import": "./dist/cdn.js",
|
|
54
|
+
"require": "./dist/cdn.cjs"
|
|
55
|
+
},
|
|
56
|
+
"./circuit": {
|
|
57
|
+
"types": "./dist/circuit.d.ts",
|
|
58
|
+
"import": "./dist/circuit.js",
|
|
59
|
+
"require": "./dist/circuit.cjs"
|
|
60
|
+
},
|
|
46
61
|
"./color": {
|
|
47
62
|
"types": "./dist/color.d.ts",
|
|
48
63
|
"import": "./dist/color.js",
|
|
49
64
|
"require": "./dist/color.cjs"
|
|
50
65
|
},
|
|
66
|
+
"./connections": {
|
|
67
|
+
"types": "./dist/connections/index.d.ts",
|
|
68
|
+
"import": "./dist/connections/index.js",
|
|
69
|
+
"require": "./dist/connections/index.cjs"
|
|
70
|
+
},
|
|
71
|
+
"./connections/oauth": {
|
|
72
|
+
"types": "./dist/connections/oauth.d.ts",
|
|
73
|
+
"import": "./dist/connections/oauth.js",
|
|
74
|
+
"require": "./dist/connections/oauth.cjs"
|
|
75
|
+
},
|
|
51
76
|
"./domains": {
|
|
52
77
|
"types": "./dist/domains.d.ts",
|
|
53
78
|
"import": "./dist/domains.js",
|
|
@@ -68,20 +93,30 @@
|
|
|
68
93
|
"import": "./dist/env.js",
|
|
69
94
|
"require": "./dist/env.cjs"
|
|
70
95
|
},
|
|
71
|
-
"./
|
|
72
|
-
"types": "./dist/
|
|
73
|
-
"import": "./dist/
|
|
74
|
-
"require": "./dist/
|
|
96
|
+
"./features": {
|
|
97
|
+
"types": "./dist/features.d.ts",
|
|
98
|
+
"import": "./dist/features.js",
|
|
99
|
+
"require": "./dist/features.cjs"
|
|
75
100
|
},
|
|
76
|
-
"./
|
|
77
|
-
"types": "./dist/
|
|
78
|
-
"import": "./dist/
|
|
79
|
-
"require": "./dist/
|
|
101
|
+
"./fetch": {
|
|
102
|
+
"types": "./dist/fetch.d.ts",
|
|
103
|
+
"import": "./dist/fetch.js",
|
|
104
|
+
"require": "./dist/fetch.cjs"
|
|
80
105
|
},
|
|
81
|
-
"./
|
|
82
|
-
"types": "./dist/
|
|
83
|
-
"import": "./dist/
|
|
84
|
-
"require": "./dist/
|
|
106
|
+
"./fields-validate": {
|
|
107
|
+
"types": "./dist/fields-validate.d.ts",
|
|
108
|
+
"import": "./dist/fields-validate.js",
|
|
109
|
+
"require": "./dist/fields-validate.cjs"
|
|
110
|
+
},
|
|
111
|
+
"./html": {
|
|
112
|
+
"types": "./dist/html.d.ts",
|
|
113
|
+
"import": "./dist/html.js",
|
|
114
|
+
"require": "./dist/html.cjs"
|
|
115
|
+
},
|
|
116
|
+
"./http": {
|
|
117
|
+
"types": "./dist/http.d.ts",
|
|
118
|
+
"import": "./dist/http.js",
|
|
119
|
+
"require": "./dist/http.cjs"
|
|
85
120
|
},
|
|
86
121
|
"./nanoid": {
|
|
87
122
|
"types": "./dist/nanoid.d.ts",
|
|
@@ -113,6 +148,21 @@
|
|
|
113
148
|
"import": "./dist/phone.js",
|
|
114
149
|
"require": "./dist/phone.cjs"
|
|
115
150
|
},
|
|
151
|
+
"./plans": {
|
|
152
|
+
"types": "./dist/plans.d.ts",
|
|
153
|
+
"import": "./dist/plans.js",
|
|
154
|
+
"require": "./dist/plans.cjs"
|
|
155
|
+
},
|
|
156
|
+
"./pricing": {
|
|
157
|
+
"types": "./dist/pricing.d.ts",
|
|
158
|
+
"import": "./dist/pricing.js",
|
|
159
|
+
"require": "./dist/pricing.cjs"
|
|
160
|
+
},
|
|
161
|
+
"./providers": {
|
|
162
|
+
"types": "./dist/providers.d.ts",
|
|
163
|
+
"import": "./dist/providers.js",
|
|
164
|
+
"require": "./dist/providers.cjs"
|
|
165
|
+
},
|
|
116
166
|
"./redirect": {
|
|
117
167
|
"types": "./dist/redirect.d.ts",
|
|
118
168
|
"import": "./dist/redirect.js",
|
|
@@ -128,35 +178,40 @@
|
|
|
128
178
|
"import": "./dist/sanitize.js",
|
|
129
179
|
"require": "./dist/sanitize.cjs"
|
|
130
180
|
},
|
|
131
|
-
"./cdn": {
|
|
132
|
-
"types": "./dist/cdn.d.ts",
|
|
133
|
-
"import": "./dist/cdn.js",
|
|
134
|
-
"require": "./dist/cdn.cjs"
|
|
135
|
-
},
|
|
136
|
-
"./fetch": {
|
|
137
|
-
"types": "./dist/fetch.d.ts",
|
|
138
|
-
"import": "./dist/fetch.js",
|
|
139
|
-
"require": "./dist/fetch.cjs"
|
|
140
|
-
},
|
|
141
181
|
"./sendgrid": {
|
|
142
182
|
"types": "./dist/sendgrid.d.ts",
|
|
143
183
|
"import": "./dist/sendgrid.js",
|
|
144
184
|
"require": "./dist/sendgrid.cjs"
|
|
145
185
|
},
|
|
146
|
-
"./
|
|
147
|
-
"types": "./dist/
|
|
148
|
-
"import": "./dist/
|
|
149
|
-
"require": "./dist/
|
|
186
|
+
"./shopify/admin": {
|
|
187
|
+
"types": "./dist/shopify/admin.d.ts",
|
|
188
|
+
"import": "./dist/shopify/admin.js",
|
|
189
|
+
"require": "./dist/shopify/admin.cjs"
|
|
150
190
|
},
|
|
151
|
-
"./
|
|
152
|
-
"types": "./dist/
|
|
153
|
-
"import": "./dist/
|
|
154
|
-
"require": "./dist/
|
|
191
|
+
"./shopify/billing": {
|
|
192
|
+
"types": "./dist/shopify/billing.d.ts",
|
|
193
|
+
"import": "./dist/shopify/billing.js",
|
|
194
|
+
"require": "./dist/shopify/billing.cjs"
|
|
155
195
|
},
|
|
156
|
-
"./
|
|
157
|
-
"types": "./dist/
|
|
158
|
-
"import": "./dist/
|
|
159
|
-
"require": "./dist/
|
|
196
|
+
"./shopify/constants": {
|
|
197
|
+
"types": "./dist/shopify/constants.d.ts",
|
|
198
|
+
"import": "./dist/shopify/constants.js",
|
|
199
|
+
"require": "./dist/shopify/constants.cjs"
|
|
200
|
+
},
|
|
201
|
+
"./shopify/oauth": {
|
|
202
|
+
"types": "./dist/shopify/oauth.d.ts",
|
|
203
|
+
"import": "./dist/shopify/oauth.js",
|
|
204
|
+
"require": "./dist/shopify/oauth.cjs"
|
|
205
|
+
},
|
|
206
|
+
"./shopify/partner": {
|
|
207
|
+
"types": "./dist/shopify/partner.d.ts",
|
|
208
|
+
"import": "./dist/shopify/partner.js",
|
|
209
|
+
"require": "./dist/shopify/partner.cjs"
|
|
210
|
+
},
|
|
211
|
+
"./shopify/storefront": {
|
|
212
|
+
"types": "./dist/shopify/storefront.d.ts",
|
|
213
|
+
"import": "./dist/shopify/storefront.js",
|
|
214
|
+
"require": "./dist/shopify/storefront.cjs"
|
|
160
215
|
},
|
|
161
216
|
"./slugify": {
|
|
162
217
|
"types": "./dist/slugify.d.ts",
|
|
@@ -173,40 +228,15 @@
|
|
|
173
228
|
"import": "./dist/token.js",
|
|
174
229
|
"require": "./dist/token.cjs"
|
|
175
230
|
},
|
|
176
|
-
"./
|
|
177
|
-
"types": "./dist/
|
|
178
|
-
"import": "./dist/
|
|
179
|
-
"require": "./dist/
|
|
180
|
-
},
|
|
181
|
-
"./plans": {
|
|
182
|
-
"types": "./dist/plans.d.ts",
|
|
183
|
-
"import": "./dist/plans.js",
|
|
184
|
-
"require": "./dist/plans.cjs"
|
|
185
|
-
},
|
|
186
|
-
"./pricing": {
|
|
187
|
-
"types": "./dist/pricing.d.ts",
|
|
188
|
-
"import": "./dist/pricing.js",
|
|
189
|
-
"require": "./dist/pricing.cjs"
|
|
190
|
-
},
|
|
191
|
-
"./fields-validate": {
|
|
192
|
-
"types": "./dist/fields-validate.d.ts",
|
|
193
|
-
"import": "./dist/fields-validate.js",
|
|
194
|
-
"require": "./dist/fields-validate.cjs"
|
|
195
|
-
},
|
|
196
|
-
"./connections": {
|
|
197
|
-
"types": "./dist/connections/index.d.ts",
|
|
198
|
-
"import": "./dist/connections/index.js",
|
|
199
|
-
"require": "./dist/connections/index.cjs"
|
|
200
|
-
},
|
|
201
|
-
"./connections/oauth": {
|
|
202
|
-
"types": "./dist/connections/oauth.d.ts",
|
|
203
|
-
"import": "./dist/connections/oauth.js",
|
|
204
|
-
"require": "./dist/connections/oauth.cjs"
|
|
231
|
+
"./twilio": {
|
|
232
|
+
"types": "./dist/twilio.d.ts",
|
|
233
|
+
"import": "./dist/twilio.js",
|
|
234
|
+
"require": "./dist/twilio.cjs"
|
|
205
235
|
},
|
|
206
|
-
"./
|
|
207
|
-
"types": "./dist/
|
|
208
|
-
"import": "./dist/
|
|
209
|
-
"require": "./dist/
|
|
236
|
+
"./upload": {
|
|
237
|
+
"types": "./dist/upload.d.ts",
|
|
238
|
+
"import": "./dist/upload.js",
|
|
239
|
+
"require": "./dist/upload.cjs"
|
|
210
240
|
}
|
|
211
241
|
},
|
|
212
242
|
"files": [
|
|
@@ -226,5 +256,5 @@
|
|
|
226
256
|
"prepublishOnly": ". \"$HOME/.nvm/nvm.sh\" && nvm use && tsup && node --test"
|
|
227
257
|
},
|
|
228
258
|
"types": "dist/index.d.ts",
|
|
229
|
-
"version": "0.0.
|
|
259
|
+
"version": "0.0.177"
|
|
230
260
|
}
|