@keystrokehq/shopify 0.0.15 → 0.0.16-integration-id-canonicalization.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.
Files changed (53) hide show
  1. package/README.md +14 -153
  2. package/dist/{schemas.d.mts → common-C2s35du9.d.mts} +3 -2
  3. package/dist/{schemas.mjs → common-JZyHdK6p.mjs} +3 -3
  4. package/dist/credential-sets/index.d.mts +2 -0
  5. package/dist/credential-sets/index.mjs +4 -0
  6. package/dist/index.d.mts +4 -1
  7. package/dist/index.mjs +6 -1
  8. package/dist/operations/index.d.mts +2 -0
  9. package/dist/operations/index.mjs +3 -0
  10. package/dist/schemas/index.d.mts +2 -0
  11. package/dist/schemas/index.mjs +3 -0
  12. package/dist/shopify-app.credential-set-M3vKwTji.mjs +17 -0
  13. package/dist/shopify-app.credential-set-gdNuCDtd.d.mts +39 -0
  14. package/dist/shopify.credential-set-C_SrMLjT.mjs +53 -0
  15. package/dist/update-shopify-product.operation-CtjraWjR.d.mts +1724 -0
  16. package/dist/update-shopify-product.operation-DsAjcvO8.mjs +1972 -0
  17. package/package.json +13 -69
  18. package/dist/_official/index.d.mts +0 -33
  19. package/dist/_official/index.mjs +0 -3
  20. package/dist/_runtime/index.d.mts +0 -56
  21. package/dist/_runtime/index.mjs +0 -150
  22. package/dist/articles.d.mts +0 -158
  23. package/dist/articles.mjs +0 -252
  24. package/dist/blogs.d.mts +0 -97
  25. package/dist/blogs.mjs +0 -174
  26. package/dist/client.d.mts +0 -22
  27. package/dist/client.mjs +0 -90
  28. package/dist/collections.d.mts +0 -121
  29. package/dist/collections.mjs +0 -209
  30. package/dist/connection.d.mts +0 -2
  31. package/dist/connection.mjs +0 -3
  32. package/dist/customers.d.mts +0 -142
  33. package/dist/customers.mjs +0 -225
  34. package/dist/events.d.mts +0 -181
  35. package/dist/events.mjs +0 -67
  36. package/dist/factory-DwZJl9JC.mjs +0 -8
  37. package/dist/fulfillments.d.mts +0 -89
  38. package/dist/fulfillments.mjs +0 -167
  39. package/dist/integration-B5LK_0eR.mjs +0 -63
  40. package/dist/integration-DrHCkXco.d.mts +0 -27
  41. package/dist/inventory.d.mts +0 -90
  42. package/dist/inventory.mjs +0 -182
  43. package/dist/locations.d.mts +0 -40
  44. package/dist/locations.mjs +0 -81
  45. package/dist/messaging.d.mts +0 -1
  46. package/dist/messaging.mjs +0 -1
  47. package/dist/operation-helpers-CKEDIx0o.mjs +0 -21
  48. package/dist/orders.d.mts +0 -213
  49. package/dist/orders.mjs +0 -271
  50. package/dist/products.d.mts +0 -139
  51. package/dist/products.mjs +0 -171
  52. package/dist/shop.d.mts +0 -16
  53. package/dist/shop.mjs +0 -31
@@ -0,0 +1,1724 @@
1
+ import * as _keystrokehq_core0 from "@keystrokehq/core";
2
+ import { Operation } from "@keystrokehq/core";
3
+ import * as zod from "zod";
4
+ import { z } from "zod";
5
+ import * as zod_v4_core0 from "zod/v4/core";
6
+
7
+ //#region src/operations/add-products-to-shopify-collection.operation.d.ts
8
+ declare const addProductsToCollectionOperation: Operation<z.ZodObject<{
9
+ id: z.ZodString;
10
+ productIds: z.ZodArray<z.ZodString>;
11
+ }, z.core.$strip>, z.ZodObject<{
12
+ id: z.ZodString;
13
+ title: z.ZodString;
14
+ handle: z.ZodString;
15
+ descriptionHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
17
+ image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
18
+ url: z.ZodURL;
19
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ }, z.core.$strip>>>;
21
+ seo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
22
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
+ }, z.core.$strip>>>;
25
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
26
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
27
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
28
+ }, z.core.$strip>, {
29
+ kind: "oauth";
30
+ tokenType: "refreshable";
31
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
32
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
33
+ revokeUrl: null;
34
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
35
+ vault: {
36
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
37
+ readonly raw: {
38
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
39
+ };
40
+ };
41
+ id: string;
42
+ }[]>[], undefined>;
43
+ //#endregion
44
+ //#region src/operations/adjust-shopify-inventory-quantities.operation.d.ts
45
+ declare const adjustInventoryQuantitiesOperation: Operation<z.ZodObject<{
46
+ name: z.ZodDefault<z.ZodString>;
47
+ reason: z.ZodString;
48
+ referenceDocumentUri: z.ZodOptional<z.ZodString>;
49
+ changes: z.ZodArray<z.ZodObject<{
50
+ inventoryItemId: z.ZodString;
51
+ locationId: z.ZodString;
52
+ delta: z.ZodNumber;
53
+ }, z.core.$strip>>;
54
+ }, z.core.$strip>, z.ZodObject<{
55
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
56
+ reason: z.ZodString;
57
+ referenceDocumentUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
+ changes: z.ZodArray<z.ZodObject<{
59
+ name: z.ZodString;
60
+ delta: z.ZodNumber;
61
+ }, z.core.$strip>>;
62
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
63
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
64
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
65
+ }, z.core.$strip>, {
66
+ kind: "oauth";
67
+ tokenType: "refreshable";
68
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
69
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
70
+ revokeUrl: null;
71
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
72
+ vault: {
73
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
74
+ readonly raw: {
75
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
76
+ };
77
+ };
78
+ id: string;
79
+ }[]>[], undefined>;
80
+ //#endregion
81
+ //#region src/operations/cancel-shopify-order.operation.d.ts
82
+ declare const cancelOrderOperation: Operation<z.ZodObject<{
83
+ orderId: z.ZodString;
84
+ reason: z.ZodEnum<{
85
+ CUSTOMER: "CUSTOMER";
86
+ DECLINED: "DECLINED";
87
+ FRAUD: "FRAUD";
88
+ INVENTORY: "INVENTORY";
89
+ OTHER: "OTHER";
90
+ STAFF: "STAFF";
91
+ }>;
92
+ restock: z.ZodBoolean;
93
+ notifyCustomer: z.ZodOptional<z.ZodBoolean>;
94
+ staffNote: z.ZodOptional<z.ZodString>;
95
+ refundMethod: z.ZodOptional<z.ZodObject<{
96
+ originalPaymentMethodsRefund: z.ZodOptional<z.ZodBoolean>;
97
+ }, z.core.$strip>>;
98
+ }, z.core.$strip>, z.ZodObject<{
99
+ id: z.ZodString;
100
+ done: z.ZodOptional<z.ZodBoolean>;
101
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
102
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
103
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
104
+ }, z.core.$strip>, {
105
+ kind: "oauth";
106
+ tokenType: "refreshable";
107
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
108
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
109
+ revokeUrl: null;
110
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
111
+ vault: {
112
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
113
+ readonly raw: {
114
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
115
+ };
116
+ };
117
+ id: string;
118
+ }[]>[], undefined>;
119
+ //#endregion
120
+ //#region src/operations/create-shopify-article.operation.d.ts
121
+ declare const createArticleOperation: Operation<z.ZodObject<{
122
+ handle: z.ZodOptional<z.ZodString>;
123
+ body: z.ZodOptional<z.ZodString>;
124
+ summary: z.ZodOptional<z.ZodString>;
125
+ authorName: z.ZodOptional<z.ZodString>;
126
+ isPublished: z.ZodOptional<z.ZodBoolean>;
127
+ publishDate: z.ZodOptional<z.ZodISODateTime>;
128
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
129
+ blogId: z.ZodString;
130
+ title: z.ZodString;
131
+ }, z.core.$strip>, z.ZodObject<{
132
+ id: z.ZodString;
133
+ title: z.ZodString;
134
+ handle: z.ZodString;
135
+ blog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
136
+ id: z.ZodString;
137
+ title: z.ZodString;
138
+ handle: z.ZodString;
139
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
140
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
141
+ commentPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
142
+ templateSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
143
+ }, z.core.$strip>>>;
144
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
145
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
146
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
147
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
148
+ image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
149
+ url: z.ZodURL;
150
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
151
+ }, z.core.$strip>>>;
152
+ publishedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
153
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
154
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
155
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
156
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
157
+ }, z.core.$strip>, {
158
+ kind: "oauth";
159
+ tokenType: "refreshable";
160
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
161
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
162
+ revokeUrl: null;
163
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
164
+ vault: {
165
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
166
+ readonly raw: {
167
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
168
+ };
169
+ };
170
+ id: string;
171
+ }[]>[], undefined>;
172
+ //#endregion
173
+ //#region src/operations/create-shopify-blog.operation.d.ts
174
+ declare const createBlogOperation: Operation<z.ZodObject<{
175
+ handle: z.ZodOptional<z.ZodString>;
176
+ templateSuffix: z.ZodOptional<z.ZodString>;
177
+ commentPolicy: z.ZodOptional<z.ZodEnum<{
178
+ DISABLED: "DISABLED";
179
+ HIDDEN: "HIDDEN";
180
+ MODERATED: "MODERATED";
181
+ OPEN: "OPEN";
182
+ }>>;
183
+ title: z.ZodString;
184
+ }, z.core.$strip>, z.ZodObject<{
185
+ id: z.ZodString;
186
+ title: z.ZodString;
187
+ handle: z.ZodString;
188
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
189
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
190
+ commentPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
191
+ templateSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
192
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
193
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
194
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
195
+ }, z.core.$strip>, {
196
+ kind: "oauth";
197
+ tokenType: "refreshable";
198
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
199
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
200
+ revokeUrl: null;
201
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
202
+ vault: {
203
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
204
+ readonly raw: {
205
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
206
+ };
207
+ };
208
+ id: string;
209
+ }[]>[], undefined>;
210
+ //#endregion
211
+ //#region src/operations/create-shopify-collection.operation.d.ts
212
+ declare const createCollectionOperation: Operation<z.ZodObject<{
213
+ handle: z.ZodOptional<z.ZodString>;
214
+ descriptionHtml: z.ZodOptional<z.ZodString>;
215
+ seo: z.ZodOptional<z.ZodObject<{
216
+ title: z.ZodOptional<z.ZodString>;
217
+ description: z.ZodOptional<z.ZodString>;
218
+ }, z.core.$strip>>;
219
+ title: z.ZodString;
220
+ }, z.core.$strip>, z.ZodObject<{
221
+ id: z.ZodString;
222
+ title: z.ZodString;
223
+ handle: z.ZodString;
224
+ descriptionHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
225
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
226
+ image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
227
+ url: z.ZodURL;
228
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
229
+ }, z.core.$strip>>>;
230
+ seo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
231
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
232
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
233
+ }, z.core.$strip>>>;
234
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
235
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
236
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
237
+ }, z.core.$strip>, {
238
+ kind: "oauth";
239
+ tokenType: "refreshable";
240
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
241
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
242
+ revokeUrl: null;
243
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
244
+ vault: {
245
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
246
+ readonly raw: {
247
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
248
+ };
249
+ };
250
+ id: string;
251
+ }[]>[], undefined>;
252
+ //#endregion
253
+ //#region src/operations/create-shopify-customer.operation.d.ts
254
+ declare const createCustomerOperation: Operation<z.ZodObject<{
255
+ email: z.ZodOptional<z.ZodEmail>;
256
+ firstName: z.ZodOptional<z.ZodString>;
257
+ lastName: z.ZodOptional<z.ZodString>;
258
+ phone: z.ZodOptional<z.ZodString>;
259
+ note: z.ZodOptional<z.ZodString>;
260
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
261
+ }, z.core.$strip>, z.ZodObject<{
262
+ id: z.ZodString;
263
+ displayName: z.ZodString;
264
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
265
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
266
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
267
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
268
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
269
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
270
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
271
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
272
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
273
+ }, z.core.$strip>, {
274
+ kind: "oauth";
275
+ tokenType: "refreshable";
276
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
277
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
278
+ revokeUrl: null;
279
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
280
+ vault: {
281
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
282
+ readonly raw: {
283
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
284
+ };
285
+ };
286
+ id: string;
287
+ }[]>[], undefined>;
288
+ //#endregion
289
+ //#region src/operations/create-shopify-fulfillment.operation.d.ts
290
+ declare const createFulfillmentOperation: Operation<z.ZodObject<{
291
+ lineItemsByFulfillmentOrder: z.ZodArray<z.ZodObject<{
292
+ fulfillmentOrderId: z.ZodString;
293
+ fulfillmentOrderLineItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
294
+ id: z.ZodString;
295
+ quantity: z.ZodNumber;
296
+ }, z.core.$strip>>>;
297
+ }, z.core.$strip>>;
298
+ notifyCustomer: z.ZodOptional<z.ZodBoolean>;
299
+ message: z.ZodOptional<z.ZodString>;
300
+ trackingInfo: z.ZodOptional<z.ZodObject<{
301
+ company: z.ZodOptional<z.ZodString>;
302
+ number: z.ZodOptional<z.ZodString>;
303
+ url: z.ZodOptional<z.ZodURL>;
304
+ }, z.core.$strip>>;
305
+ }, z.core.$strip>, z.ZodObject<{
306
+ id: z.ZodString;
307
+ status: z.ZodOptional<z.ZodString>;
308
+ trackingInfo: z.ZodOptional<z.ZodArray<z.ZodObject<{
309
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
310
+ url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
311
+ }, z.core.$strip>>>;
312
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
313
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
314
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
315
+ }, z.core.$strip>, {
316
+ kind: "oauth";
317
+ tokenType: "refreshable";
318
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
319
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
320
+ revokeUrl: null;
321
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
322
+ vault: {
323
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
324
+ readonly raw: {
325
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
326
+ };
327
+ };
328
+ id: string;
329
+ }[]>[], undefined>;
330
+ //#endregion
331
+ //#region src/operations/create-shopify-order.operation.d.ts
332
+ declare const createOrderOperation: Operation<z.ZodObject<{
333
+ currency: z.ZodString;
334
+ email: z.ZodOptional<z.ZodEmail>;
335
+ note: z.ZodOptional<z.ZodString>;
336
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
337
+ customerId: z.ZodOptional<z.ZodString>;
338
+ lineItems: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
339
+ variantId: z.ZodString;
340
+ quantity: z.ZodNumber;
341
+ }, z.core.$strip>, z.ZodObject<{
342
+ title: z.ZodString;
343
+ quantity: z.ZodNumber;
344
+ price: z.ZodNumber;
345
+ }, z.core.$strip>]>>;
346
+ }, z.core.$strip>, z.ZodObject<{
347
+ id: z.ZodString;
348
+ name: z.ZodString;
349
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
350
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
351
+ cancelledAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
352
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
353
+ note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
354
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
355
+ displayFinancialStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
356
+ displayFulfillmentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
357
+ currentTotalPriceSet: z.ZodOptional<z.ZodObject<{
358
+ shopMoney: z.ZodObject<{
359
+ amount: z.ZodString;
360
+ currencyCode: z.ZodString;
361
+ }, z.core.$strip>;
362
+ presentmentMoney: z.ZodOptional<z.ZodObject<{
363
+ amount: z.ZodString;
364
+ currencyCode: z.ZodString;
365
+ }, z.core.$strip>>;
366
+ }, z.core.$strip>>;
367
+ customer: z.ZodOptional<z.ZodNullable<z.ZodObject<{
368
+ id: z.ZodString;
369
+ displayName: z.ZodString;
370
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
371
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
372
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
373
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
374
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
375
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
376
+ }, z.core.$strip>>>;
377
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
378
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
379
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
380
+ }, z.core.$strip>, {
381
+ kind: "oauth";
382
+ tokenType: "refreshable";
383
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
384
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
385
+ revokeUrl: null;
386
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
387
+ vault: {
388
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
389
+ readonly raw: {
390
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
391
+ };
392
+ };
393
+ id: string;
394
+ }[]>[], undefined>;
395
+ //#endregion
396
+ //#region src/operations/create-shopify-product.operation.d.ts
397
+ declare const createProductOperation: Operation<z.ZodObject<{
398
+ handle: z.ZodOptional<z.ZodString>;
399
+ descriptionHtml: z.ZodOptional<z.ZodString>;
400
+ vendor: z.ZodOptional<z.ZodString>;
401
+ productType: z.ZodOptional<z.ZodString>;
402
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
403
+ title: z.ZodString;
404
+ }, z.core.$strip>, z.ZodObject<{
405
+ id: z.ZodString;
406
+ title: z.ZodString;
407
+ handle: z.ZodString;
408
+ status: z.ZodOptional<z.ZodString>;
409
+ productType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
410
+ vendor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
411
+ descriptionHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
412
+ onlineStoreUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
413
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
414
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
415
+ featuredImage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
416
+ url: z.ZodURL;
417
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
418
+ }, z.core.$strip>>>;
419
+ seo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
420
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
421
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
422
+ }, z.core.$strip>>>;
423
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
424
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
425
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
426
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
427
+ }, z.core.$strip>, {
428
+ kind: "oauth";
429
+ tokenType: "refreshable";
430
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
431
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
432
+ revokeUrl: null;
433
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
434
+ vault: {
435
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
436
+ readonly raw: {
437
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
438
+ };
439
+ };
440
+ id: string;
441
+ }[]>[], undefined>;
442
+ //#endregion
443
+ //#region src/operations/delete-shopify-article.operation.d.ts
444
+ declare const deleteArticleOperation: Operation<z.ZodObject<{
445
+ id: z.ZodString;
446
+ }, z.core.$strip>, z.ZodObject<{
447
+ deletedArticleId: z.ZodString;
448
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
449
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
450
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
451
+ }, z.core.$strip>, {
452
+ kind: "oauth";
453
+ tokenType: "refreshable";
454
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
455
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
456
+ revokeUrl: null;
457
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
458
+ vault: {
459
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
460
+ readonly raw: {
461
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
462
+ };
463
+ };
464
+ id: string;
465
+ }[]>[], undefined>;
466
+ //#endregion
467
+ //#region src/operations/delete-shopify-blog.operation.d.ts
468
+ declare const deleteBlogOperation: Operation<z.ZodObject<{
469
+ id: z.ZodString;
470
+ }, z.core.$strip>, z.ZodObject<{
471
+ deletedBlogId: z.ZodString;
472
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
473
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
474
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
475
+ }, z.core.$strip>, {
476
+ kind: "oauth";
477
+ tokenType: "refreshable";
478
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
479
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
480
+ revokeUrl: null;
481
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
482
+ vault: {
483
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
484
+ readonly raw: {
485
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
486
+ };
487
+ };
488
+ id: string;
489
+ }[]>[], undefined>;
490
+ //#endregion
491
+ //#region src/operations/delete-shopify-collection.operation.d.ts
492
+ declare const deleteCollectionOperation: Operation<z.ZodObject<{
493
+ id: z.ZodString;
494
+ }, z.core.$strip>, z.ZodObject<{
495
+ deletedCollectionId: z.ZodString;
496
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
497
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
498
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
499
+ }, z.core.$strip>, {
500
+ kind: "oauth";
501
+ tokenType: "refreshable";
502
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
503
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
504
+ revokeUrl: null;
505
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
506
+ vault: {
507
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
508
+ readonly raw: {
509
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
510
+ };
511
+ };
512
+ id: string;
513
+ }[]>[], undefined>;
514
+ //#endregion
515
+ //#region src/operations/delete-shopify-customer.operation.d.ts
516
+ declare const deleteCustomerOperation: Operation<z.ZodObject<{
517
+ id: z.ZodString;
518
+ }, z.core.$strip>, z.ZodObject<{
519
+ deletedCustomerId: z.ZodString;
520
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
521
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
522
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
523
+ }, z.core.$strip>, {
524
+ kind: "oauth";
525
+ tokenType: "refreshable";
526
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
527
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
528
+ revokeUrl: null;
529
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
530
+ vault: {
531
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
532
+ readonly raw: {
533
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
534
+ };
535
+ };
536
+ id: string;
537
+ }[]>[], undefined>;
538
+ //#endregion
539
+ //#region src/operations/delete-shopify-product.operation.d.ts
540
+ declare const deleteProductOperation: Operation<z.ZodObject<{
541
+ id: z.ZodString;
542
+ }, z.core.$strip>, z.ZodObject<{
543
+ deletedProductId: z.ZodString;
544
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
545
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
546
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
547
+ }, z.core.$strip>, {
548
+ kind: "oauth";
549
+ tokenType: "refreshable";
550
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
551
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
552
+ revokeUrl: null;
553
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
554
+ vault: {
555
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
556
+ readonly raw: {
557
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
558
+ };
559
+ };
560
+ id: string;
561
+ }[]>[], undefined>;
562
+ //#endregion
563
+ //#region src/operations/get-shopify-article.operation.d.ts
564
+ declare const getArticleOperation: Operation<z.ZodObject<{
565
+ id: z.ZodString;
566
+ }, z.core.$strip>, z.ZodObject<{
567
+ id: z.ZodString;
568
+ title: z.ZodString;
569
+ handle: z.ZodString;
570
+ blog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
571
+ id: z.ZodString;
572
+ title: z.ZodString;
573
+ handle: z.ZodString;
574
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
575
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
576
+ commentPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
577
+ templateSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
578
+ }, z.core.$strip>>>;
579
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
580
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
581
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
582
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
583
+ image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
584
+ url: z.ZodURL;
585
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
586
+ }, z.core.$strip>>>;
587
+ publishedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
588
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
589
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
590
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
591
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
592
+ }, z.core.$strip>, {
593
+ kind: "oauth";
594
+ tokenType: "refreshable";
595
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
596
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
597
+ revokeUrl: null;
598
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
599
+ vault: {
600
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
601
+ readonly raw: {
602
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
603
+ };
604
+ };
605
+ id: string;
606
+ }[]>[], undefined>;
607
+ //#endregion
608
+ //#region src/operations/get-shopify-blog.operation.d.ts
609
+ declare const getBlogOperation: Operation<z.ZodObject<{
610
+ id: z.ZodString;
611
+ }, z.core.$strip>, z.ZodObject<{
612
+ id: z.ZodString;
613
+ title: z.ZodString;
614
+ handle: z.ZodString;
615
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
616
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
617
+ commentPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
618
+ templateSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
619
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
620
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
621
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
622
+ }, z.core.$strip>, {
623
+ kind: "oauth";
624
+ tokenType: "refreshable";
625
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
626
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
627
+ revokeUrl: null;
628
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
629
+ vault: {
630
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
631
+ readonly raw: {
632
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
633
+ };
634
+ };
635
+ id: string;
636
+ }[]>[], undefined>;
637
+ //#endregion
638
+ //#region src/operations/get-shopify-collection.operation.d.ts
639
+ declare const getCollectionOperation: Operation<z.ZodObject<{
640
+ id: z.ZodString;
641
+ }, z.core.$strip>, z.ZodObject<{
642
+ id: z.ZodString;
643
+ title: z.ZodString;
644
+ handle: z.ZodString;
645
+ descriptionHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
646
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
647
+ image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
648
+ url: z.ZodURL;
649
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
650
+ }, z.core.$strip>>>;
651
+ seo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
652
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
653
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
654
+ }, z.core.$strip>>>;
655
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
656
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
657
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
658
+ }, z.core.$strip>, {
659
+ kind: "oauth";
660
+ tokenType: "refreshable";
661
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
662
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
663
+ revokeUrl: null;
664
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
665
+ vault: {
666
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
667
+ readonly raw: {
668
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
669
+ };
670
+ };
671
+ id: string;
672
+ }[]>[], undefined>;
673
+ //#endregion
674
+ //#region src/operations/get-shopify-customer.operation.d.ts
675
+ declare const getCustomerOperation: Operation<z.ZodObject<{
676
+ id: z.ZodString;
677
+ }, z.core.$strip>, z.ZodObject<{
678
+ id: z.ZodString;
679
+ displayName: z.ZodString;
680
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
681
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
682
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
683
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
684
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
685
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
686
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
687
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
688
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
689
+ }, z.core.$strip>, {
690
+ kind: "oauth";
691
+ tokenType: "refreshable";
692
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
693
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
694
+ revokeUrl: null;
695
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
696
+ vault: {
697
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
698
+ readonly raw: {
699
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
700
+ };
701
+ };
702
+ id: string;
703
+ }[]>[], undefined>;
704
+ //#endregion
705
+ //#region src/operations/get-shopify-customer-orders.operation.d.ts
706
+ declare const getCustomerOrdersOperation: Operation<z.ZodObject<{
707
+ id: z.ZodString;
708
+ first: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
709
+ after: z.ZodOptional<z.ZodString>;
710
+ }, z.core.$strip>, z.ZodObject<{
711
+ nodes: z.ZodArray<z.ZodObject<{
712
+ id: z.ZodString;
713
+ name: z.ZodString;
714
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
715
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
716
+ cancelledAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
717
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
718
+ note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
719
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
720
+ displayFinancialStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
721
+ displayFulfillmentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
722
+ currentTotalPriceSet: z.ZodOptional<z.ZodObject<{
723
+ shopMoney: z.ZodObject<{
724
+ amount: z.ZodString;
725
+ currencyCode: z.ZodString;
726
+ }, z.core.$strip>;
727
+ presentmentMoney: z.ZodOptional<z.ZodObject<{
728
+ amount: z.ZodString;
729
+ currencyCode: z.ZodString;
730
+ }, z.core.$strip>>;
731
+ }, z.core.$strip>>;
732
+ customer: z.ZodOptional<z.ZodNullable<z.ZodObject<{
733
+ id: z.ZodString;
734
+ displayName: z.ZodString;
735
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
736
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
737
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
738
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
739
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
740
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
741
+ }, z.core.$strip>>>;
742
+ }, z.core.$strip>>;
743
+ pageInfo: z.ZodObject<{
744
+ hasNextPage: z.ZodBoolean;
745
+ hasPreviousPage: z.ZodOptional<z.ZodBoolean>;
746
+ startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
747
+ endCursor: z.ZodNullable<z.ZodString>;
748
+ }, z.core.$strip>;
749
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
750
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
751
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
752
+ }, z.core.$strip>, {
753
+ kind: "oauth";
754
+ tokenType: "refreshable";
755
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
756
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
757
+ revokeUrl: null;
758
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
759
+ vault: {
760
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
761
+ readonly raw: {
762
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
763
+ };
764
+ };
765
+ id: string;
766
+ }[]>[], undefined>;
767
+ //#endregion
768
+ //#region src/operations/get-shopify-fulfillment.operation.d.ts
769
+ declare const getFulfillmentOperation: Operation<z.ZodObject<{
770
+ id: z.ZodString;
771
+ }, z.core.$strip>, z.ZodObject<{
772
+ id: z.ZodString;
773
+ status: z.ZodOptional<z.ZodString>;
774
+ trackingInfo: z.ZodOptional<z.ZodArray<z.ZodObject<{
775
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
776
+ url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
777
+ }, z.core.$strip>>>;
778
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
779
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
780
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
781
+ }, z.core.$strip>, {
782
+ kind: "oauth";
783
+ tokenType: "refreshable";
784
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
785
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
786
+ revokeUrl: null;
787
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
788
+ vault: {
789
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
790
+ readonly raw: {
791
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
792
+ };
793
+ };
794
+ id: string;
795
+ }[]>[], undefined>;
796
+ //#endregion
797
+ //#region src/operations/get-shopify-inventory-item.operation.d.ts
798
+ declare const getInventoryItemOperation: Operation<z.ZodObject<{
799
+ id: z.ZodString;
800
+ }, z.core.$strip>, z.ZodObject<{
801
+ id: z.ZodString;
802
+ sku: z.ZodOptional<z.ZodNullable<z.ZodString>>;
803
+ tracked: z.ZodOptional<z.ZodBoolean>;
804
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
805
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
806
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
807
+ }, z.core.$strip>, {
808
+ kind: "oauth";
809
+ tokenType: "refreshable";
810
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
811
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
812
+ revokeUrl: null;
813
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
814
+ vault: {
815
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
816
+ readonly raw: {
817
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
818
+ };
819
+ };
820
+ id: string;
821
+ }[]>[], undefined>;
822
+ //#endregion
823
+ //#region src/operations/get-shopify-inventory-levels-for-item.operation.d.ts
824
+ declare const getInventoryLevelsForItemOperation: Operation<z.ZodObject<{
825
+ inventoryItemId: z.ZodString;
826
+ first: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
827
+ after: z.ZodOptional<z.ZodString>;
828
+ }, z.core.$strip>, z.ZodObject<{
829
+ nodes: z.ZodArray<z.ZodObject<{
830
+ id: z.ZodString;
831
+ quantities: z.ZodArray<z.ZodObject<{
832
+ name: z.ZodString;
833
+ quantity: z.ZodNumber;
834
+ }, z.core.$strip>>;
835
+ item: z.ZodOptional<z.ZodObject<{
836
+ id: z.ZodString;
837
+ sku: z.ZodOptional<z.ZodNullable<z.ZodString>>;
838
+ tracked: z.ZodOptional<z.ZodBoolean>;
839
+ }, z.core.$strip>>;
840
+ location: z.ZodOptional<z.ZodObject<{
841
+ id: z.ZodString;
842
+ name: z.ZodString;
843
+ isActive: z.ZodOptional<z.ZodBoolean>;
844
+ fulfillsOnlineOrders: z.ZodOptional<z.ZodBoolean>;
845
+ }, z.core.$strip>>;
846
+ }, z.core.$strip>>;
847
+ pageInfo: z.ZodObject<{
848
+ hasNextPage: z.ZodBoolean;
849
+ hasPreviousPage: z.ZodOptional<z.ZodBoolean>;
850
+ startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
851
+ endCursor: z.ZodNullable<z.ZodString>;
852
+ }, z.core.$strip>;
853
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
854
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
855
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
856
+ }, z.core.$strip>, {
857
+ kind: "oauth";
858
+ tokenType: "refreshable";
859
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
860
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
861
+ revokeUrl: null;
862
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
863
+ vault: {
864
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
865
+ readonly raw: {
866
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
867
+ };
868
+ };
869
+ id: string;
870
+ }[]>[], undefined>;
871
+ //#endregion
872
+ //#region src/operations/get-shopify-location.operation.d.ts
873
+ declare const getLocationOperation: Operation<z.ZodObject<{
874
+ id: z.ZodString;
875
+ }, z.core.$strip>, z.ZodObject<{
876
+ id: z.ZodString;
877
+ name: z.ZodString;
878
+ isActive: z.ZodOptional<z.ZodBoolean>;
879
+ fulfillsOnlineOrders: z.ZodOptional<z.ZodBoolean>;
880
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
881
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
882
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
883
+ }, z.core.$strip>, {
884
+ kind: "oauth";
885
+ tokenType: "refreshable";
886
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
887
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
888
+ revokeUrl: null;
889
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
890
+ vault: {
891
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
892
+ readonly raw: {
893
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
894
+ };
895
+ };
896
+ id: string;
897
+ }[]>[], undefined>;
898
+ //#endregion
899
+ //#region src/operations/get-shopify-order.operation.d.ts
900
+ declare const getOrderOperation: Operation<z.ZodObject<{
901
+ id: z.ZodString;
902
+ }, z.core.$strip>, z.ZodObject<{
903
+ id: z.ZodString;
904
+ name: z.ZodString;
905
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
906
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
907
+ cancelledAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
908
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
909
+ note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
910
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
911
+ displayFinancialStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
912
+ displayFulfillmentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
913
+ currentTotalPriceSet: z.ZodOptional<z.ZodObject<{
914
+ shopMoney: z.ZodObject<{
915
+ amount: z.ZodString;
916
+ currencyCode: z.ZodString;
917
+ }, z.core.$strip>;
918
+ presentmentMoney: z.ZodOptional<z.ZodObject<{
919
+ amount: z.ZodString;
920
+ currencyCode: z.ZodString;
921
+ }, z.core.$strip>>;
922
+ }, z.core.$strip>>;
923
+ customer: z.ZodOptional<z.ZodNullable<z.ZodObject<{
924
+ id: z.ZodString;
925
+ displayName: z.ZodString;
926
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
927
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
928
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
929
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
930
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
931
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
932
+ }, z.core.$strip>>>;
933
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
934
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
935
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
936
+ }, z.core.$strip>, {
937
+ kind: "oauth";
938
+ tokenType: "refreshable";
939
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
940
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
941
+ revokeUrl: null;
942
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
943
+ vault: {
944
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
945
+ readonly raw: {
946
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
947
+ };
948
+ };
949
+ id: string;
950
+ }[]>[], undefined>;
951
+ //#endregion
952
+ //#region src/operations/get-shopify-product.operation.d.ts
953
+ declare const getProductOperation: Operation<z.ZodObject<{
954
+ id: z.ZodString;
955
+ }, z.core.$strip>, z.ZodObject<{
956
+ id: z.ZodString;
957
+ title: z.ZodString;
958
+ handle: z.ZodString;
959
+ status: z.ZodOptional<z.ZodString>;
960
+ productType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
961
+ vendor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
962
+ descriptionHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
963
+ onlineStoreUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
964
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
965
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
966
+ featuredImage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
967
+ url: z.ZodURL;
968
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
969
+ }, z.core.$strip>>>;
970
+ seo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
971
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
972
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
973
+ }, z.core.$strip>>>;
974
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
975
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
976
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
977
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
978
+ }, z.core.$strip>, {
979
+ kind: "oauth";
980
+ tokenType: "refreshable";
981
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
982
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
983
+ revokeUrl: null;
984
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
985
+ vault: {
986
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
987
+ readonly raw: {
988
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
989
+ };
990
+ };
991
+ id: string;
992
+ }[]>[], undefined>;
993
+ //#endregion
994
+ //#region src/operations/get-shopify-shop.operation.d.ts
995
+ declare const getShopOperation: Operation<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
996
+ id: z.ZodString;
997
+ name: z.ZodString;
998
+ myshopifyDomain: z.ZodString;
999
+ contactEmail: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
1000
+ currencyCode: z.ZodOptional<z.ZodString>;
1001
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1002
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1003
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1004
+ }, z.core.$strip>, {
1005
+ kind: "oauth";
1006
+ tokenType: "refreshable";
1007
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1008
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1009
+ revokeUrl: null;
1010
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1011
+ vault: {
1012
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1013
+ readonly raw: {
1014
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1015
+ };
1016
+ };
1017
+ id: string;
1018
+ }[]>[], undefined>;
1019
+ //#endregion
1020
+ //#region src/operations/list-shopify-articles.operation.d.ts
1021
+ declare const listArticlesOperation: Operation<zod.ZodObject<{
1022
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1023
+ after: zod.ZodOptional<zod.ZodString>;
1024
+ query: zod.ZodOptional<zod.ZodString>;
1025
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1026
+ nodes: zod.ZodArray<zod.ZodObject<{
1027
+ id: zod.ZodString;
1028
+ title: zod.ZodString;
1029
+ handle: zod.ZodString;
1030
+ blog: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1031
+ id: zod.ZodString;
1032
+ title: zod.ZodString;
1033
+ handle: zod.ZodString;
1034
+ createdAt: zod.ZodOptional<zod.ZodISODateTime>;
1035
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1036
+ commentPolicy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1037
+ templateSuffix: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1038
+ }, zod_v4_core0.$strip>>>;
1039
+ author: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1040
+ body: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1041
+ summary: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1042
+ tags: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
1043
+ image: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1044
+ url: zod.ZodURL;
1045
+ altText: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1046
+ }, zod_v4_core0.$strip>>>;
1047
+ publishedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
1048
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1049
+ }, zod_v4_core0.$strip>>;
1050
+ pageInfo: zod.ZodObject<{
1051
+ hasNextPage: zod.ZodBoolean;
1052
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1053
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1054
+ endCursor: zod.ZodNullable<zod.ZodString>;
1055
+ }, zod_v4_core0.$strip>;
1056
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1057
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1058
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1059
+ }, zod_v4_core0.$strip>, {
1060
+ kind: "oauth";
1061
+ tokenType: "refreshable";
1062
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1063
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1064
+ revokeUrl: null;
1065
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1066
+ vault: {
1067
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1068
+ readonly raw: {
1069
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1070
+ };
1071
+ };
1072
+ id: string;
1073
+ }[]>[], undefined>;
1074
+ //#endregion
1075
+ //#region src/operations/list-shopify-blogs.operation.d.ts
1076
+ declare const listBlogsOperation: Operation<zod.ZodObject<{
1077
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1078
+ after: zod.ZodOptional<zod.ZodString>;
1079
+ query: zod.ZodOptional<zod.ZodString>;
1080
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1081
+ nodes: zod.ZodArray<zod.ZodObject<{
1082
+ id: zod.ZodString;
1083
+ title: zod.ZodString;
1084
+ handle: zod.ZodString;
1085
+ createdAt: zod.ZodOptional<zod.ZodISODateTime>;
1086
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1087
+ commentPolicy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1088
+ templateSuffix: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1089
+ }, zod_v4_core0.$strip>>;
1090
+ pageInfo: zod.ZodObject<{
1091
+ hasNextPage: zod.ZodBoolean;
1092
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1093
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1094
+ endCursor: zod.ZodNullable<zod.ZodString>;
1095
+ }, zod_v4_core0.$strip>;
1096
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1097
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1098
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1099
+ }, zod_v4_core0.$strip>, {
1100
+ kind: "oauth";
1101
+ tokenType: "refreshable";
1102
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1103
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1104
+ revokeUrl: null;
1105
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1106
+ vault: {
1107
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1108
+ readonly raw: {
1109
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1110
+ };
1111
+ };
1112
+ id: string;
1113
+ }[]>[], undefined>;
1114
+ //#endregion
1115
+ //#region src/operations/list-shopify-collections.operation.d.ts
1116
+ declare const listCollectionsOperation: Operation<zod.ZodObject<{
1117
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1118
+ after: zod.ZodOptional<zod.ZodString>;
1119
+ query: zod.ZodOptional<zod.ZodString>;
1120
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1121
+ nodes: zod.ZodArray<zod.ZodObject<{
1122
+ id: zod.ZodString;
1123
+ title: zod.ZodString;
1124
+ handle: zod.ZodString;
1125
+ descriptionHtml: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1126
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1127
+ image: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1128
+ url: zod.ZodURL;
1129
+ altText: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1130
+ }, zod_v4_core0.$strip>>>;
1131
+ seo: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1132
+ title: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1133
+ description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1134
+ }, zod_v4_core0.$strip>>>;
1135
+ }, zod_v4_core0.$strip>>;
1136
+ pageInfo: zod.ZodObject<{
1137
+ hasNextPage: zod.ZodBoolean;
1138
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1139
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1140
+ endCursor: zod.ZodNullable<zod.ZodString>;
1141
+ }, zod_v4_core0.$strip>;
1142
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1143
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1144
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1145
+ }, zod_v4_core0.$strip>, {
1146
+ kind: "oauth";
1147
+ tokenType: "refreshable";
1148
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1149
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1150
+ revokeUrl: null;
1151
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1152
+ vault: {
1153
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1154
+ readonly raw: {
1155
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1156
+ };
1157
+ };
1158
+ id: string;
1159
+ }[]>[], undefined>;
1160
+ //#endregion
1161
+ //#region src/operations/list-shopify-customers.operation.d.ts
1162
+ declare const listCustomersOperation: Operation<zod.ZodObject<{
1163
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1164
+ after: zod.ZodOptional<zod.ZodString>;
1165
+ query: zod.ZodOptional<zod.ZodString>;
1166
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1167
+ nodes: zod.ZodArray<zod.ZodObject<{
1168
+ id: zod.ZodString;
1169
+ displayName: zod.ZodString;
1170
+ firstName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1171
+ lastName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1172
+ email: zod.ZodOptional<zod.ZodNullable<zod.ZodEmail>>;
1173
+ phone: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1174
+ createdAt: zod.ZodOptional<zod.ZodISODateTime>;
1175
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1176
+ }, zod_v4_core0.$strip>>;
1177
+ pageInfo: zod.ZodObject<{
1178
+ hasNextPage: zod.ZodBoolean;
1179
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1180
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1181
+ endCursor: zod.ZodNullable<zod.ZodString>;
1182
+ }, zod_v4_core0.$strip>;
1183
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1184
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1185
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1186
+ }, zod_v4_core0.$strip>, {
1187
+ kind: "oauth";
1188
+ tokenType: "refreshable";
1189
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1190
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1191
+ revokeUrl: null;
1192
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1193
+ vault: {
1194
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1195
+ readonly raw: {
1196
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1197
+ };
1198
+ };
1199
+ id: string;
1200
+ }[]>[], undefined>;
1201
+ //#endregion
1202
+ //#region src/operations/list-shopify-fulfillment-orders-for-order.operation.d.ts
1203
+ declare const listFulfillmentOrdersForOrderOperation: Operation<z.ZodObject<{
1204
+ orderId: z.ZodString;
1205
+ first: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1206
+ after: z.ZodOptional<z.ZodString>;
1207
+ }, z.core.$strip>, z.ZodObject<{
1208
+ nodes: z.ZodArray<z.ZodObject<{
1209
+ id: z.ZodString;
1210
+ status: z.ZodString;
1211
+ assignedLocation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1212
+ location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1213
+ id: z.ZodString;
1214
+ name: z.ZodString;
1215
+ isActive: z.ZodOptional<z.ZodBoolean>;
1216
+ fulfillsOnlineOrders: z.ZodOptional<z.ZodBoolean>;
1217
+ }, z.core.$strip>>>;
1218
+ }, z.core.$strip>>>;
1219
+ lineItems: z.ZodObject<{
1220
+ nodes: z.ZodArray<z.ZodObject<{
1221
+ id: z.ZodString;
1222
+ remainingQuantity: z.ZodNumber;
1223
+ lineItem: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1224
+ id: z.ZodString;
1225
+ name: z.ZodString;
1226
+ quantity: z.ZodNumber;
1227
+ }, z.core.$strip>>>;
1228
+ }, z.core.$strip>>;
1229
+ pageInfo: z.ZodObject<{
1230
+ hasNextPage: z.ZodBoolean;
1231
+ hasPreviousPage: z.ZodOptional<z.ZodBoolean>;
1232
+ startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1233
+ endCursor: z.ZodNullable<z.ZodString>;
1234
+ }, z.core.$strip>;
1235
+ }, z.core.$strip>;
1236
+ }, z.core.$strip>>;
1237
+ pageInfo: z.ZodObject<{
1238
+ hasNextPage: z.ZodBoolean;
1239
+ hasPreviousPage: z.ZodOptional<z.ZodBoolean>;
1240
+ startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1241
+ endCursor: z.ZodNullable<z.ZodString>;
1242
+ }, z.core.$strip>;
1243
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1244
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1245
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1246
+ }, z.core.$strip>, {
1247
+ kind: "oauth";
1248
+ tokenType: "refreshable";
1249
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1250
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1251
+ revokeUrl: null;
1252
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1253
+ vault: {
1254
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1255
+ readonly raw: {
1256
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1257
+ };
1258
+ };
1259
+ id: string;
1260
+ }[]>[], undefined>;
1261
+ //#endregion
1262
+ //#region src/operations/list-shopify-inventory-items.operation.d.ts
1263
+ declare const listInventoryItemsOperation: Operation<zod.ZodObject<{
1264
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1265
+ after: zod.ZodOptional<zod.ZodString>;
1266
+ query: zod.ZodOptional<zod.ZodString>;
1267
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1268
+ nodes: zod.ZodArray<zod.ZodObject<{
1269
+ id: zod.ZodString;
1270
+ sku: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1271
+ tracked: zod.ZodOptional<zod.ZodBoolean>;
1272
+ }, zod_v4_core0.$strip>>;
1273
+ pageInfo: zod.ZodObject<{
1274
+ hasNextPage: zod.ZodBoolean;
1275
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1276
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1277
+ endCursor: zod.ZodNullable<zod.ZodString>;
1278
+ }, zod_v4_core0.$strip>;
1279
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1280
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1281
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1282
+ }, zod_v4_core0.$strip>, {
1283
+ kind: "oauth";
1284
+ tokenType: "refreshable";
1285
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1286
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1287
+ revokeUrl: null;
1288
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1289
+ vault: {
1290
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1291
+ readonly raw: {
1292
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1293
+ };
1294
+ };
1295
+ id: string;
1296
+ }[]>[], undefined>;
1297
+ //#endregion
1298
+ //#region src/operations/list-shopify-locations.operation.d.ts
1299
+ declare const listLocationsOperation: Operation<z.ZodObject<{
1300
+ first: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1301
+ after: z.ZodOptional<z.ZodString>;
1302
+ query: z.ZodOptional<z.ZodString>;
1303
+ includeInactive: z.ZodOptional<z.ZodBoolean>;
1304
+ includeLegacy: z.ZodOptional<z.ZodBoolean>;
1305
+ }, z.core.$strip>, z.ZodObject<{
1306
+ nodes: z.ZodArray<z.ZodObject<{
1307
+ id: z.ZodString;
1308
+ name: z.ZodString;
1309
+ isActive: z.ZodOptional<z.ZodBoolean>;
1310
+ fulfillsOnlineOrders: z.ZodOptional<z.ZodBoolean>;
1311
+ }, z.core.$strip>>;
1312
+ pageInfo: z.ZodObject<{
1313
+ hasNextPage: z.ZodBoolean;
1314
+ hasPreviousPage: z.ZodOptional<z.ZodBoolean>;
1315
+ startCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1316
+ endCursor: z.ZodNullable<z.ZodString>;
1317
+ }, z.core.$strip>;
1318
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1319
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1320
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1321
+ }, z.core.$strip>, {
1322
+ kind: "oauth";
1323
+ tokenType: "refreshable";
1324
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1325
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1326
+ revokeUrl: null;
1327
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1328
+ vault: {
1329
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1330
+ readonly raw: {
1331
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1332
+ };
1333
+ };
1334
+ id: string;
1335
+ }[]>[], undefined>;
1336
+ //#endregion
1337
+ //#region src/operations/list-shopify-orders.operation.d.ts
1338
+ declare const listOrdersOperation: Operation<zod.ZodObject<{
1339
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1340
+ after: zod.ZodOptional<zod.ZodString>;
1341
+ query: zod.ZodOptional<zod.ZodString>;
1342
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1343
+ nodes: zod.ZodArray<zod.ZodObject<{
1344
+ id: zod.ZodString;
1345
+ name: zod.ZodString;
1346
+ createdAt: zod.ZodOptional<zod.ZodISODateTime>;
1347
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1348
+ cancelledAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
1349
+ email: zod.ZodOptional<zod.ZodNullable<zod.ZodEmail>>;
1350
+ note: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1351
+ tags: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
1352
+ displayFinancialStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1353
+ displayFulfillmentStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1354
+ currentTotalPriceSet: zod.ZodOptional<zod.ZodObject<{
1355
+ shopMoney: zod.ZodObject<{
1356
+ amount: zod.ZodString;
1357
+ currencyCode: zod.ZodString;
1358
+ }, zod_v4_core0.$strip>;
1359
+ presentmentMoney: zod.ZodOptional<zod.ZodObject<{
1360
+ amount: zod.ZodString;
1361
+ currencyCode: zod.ZodString;
1362
+ }, zod_v4_core0.$strip>>;
1363
+ }, zod_v4_core0.$strip>>;
1364
+ customer: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1365
+ id: zod.ZodString;
1366
+ displayName: zod.ZodString;
1367
+ firstName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1368
+ lastName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1369
+ email: zod.ZodOptional<zod.ZodNullable<zod.ZodEmail>>;
1370
+ phone: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1371
+ createdAt: zod.ZodOptional<zod.ZodISODateTime>;
1372
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1373
+ }, zod_v4_core0.$strip>>>;
1374
+ }, zod_v4_core0.$strip>>;
1375
+ pageInfo: zod.ZodObject<{
1376
+ hasNextPage: zod.ZodBoolean;
1377
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1378
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1379
+ endCursor: zod.ZodNullable<zod.ZodString>;
1380
+ }, zod_v4_core0.$strip>;
1381
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1382
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1383
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1384
+ }, zod_v4_core0.$strip>, {
1385
+ kind: "oauth";
1386
+ tokenType: "refreshable";
1387
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1388
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1389
+ revokeUrl: null;
1390
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1391
+ vault: {
1392
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1393
+ readonly raw: {
1394
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1395
+ };
1396
+ };
1397
+ id: string;
1398
+ }[]>[], undefined>;
1399
+ //#endregion
1400
+ //#region src/operations/list-shopify-products.operation.d.ts
1401
+ declare const listProductsOperation: Operation<zod.ZodObject<{
1402
+ first: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
1403
+ after: zod.ZodOptional<zod.ZodString>;
1404
+ query: zod.ZodOptional<zod.ZodString>;
1405
+ }, zod_v4_core0.$strip>, zod.ZodObject<{
1406
+ nodes: zod.ZodArray<zod.ZodObject<{
1407
+ id: zod.ZodString;
1408
+ title: zod.ZodString;
1409
+ handle: zod.ZodString;
1410
+ status: zod.ZodOptional<zod.ZodString>;
1411
+ productType: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1412
+ vendor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1413
+ descriptionHtml: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1414
+ onlineStoreUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodURL>>;
1415
+ createdAt: zod.ZodOptional<zod.ZodISODateTime>;
1416
+ updatedAt: zod.ZodOptional<zod.ZodISODateTime>;
1417
+ featuredImage: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1418
+ url: zod.ZodURL;
1419
+ altText: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1420
+ }, zod_v4_core0.$strip>>>;
1421
+ seo: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
1422
+ title: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1423
+ description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1424
+ }, zod_v4_core0.$strip>>>;
1425
+ tags: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
1426
+ }, zod_v4_core0.$strip>>;
1427
+ pageInfo: zod.ZodObject<{
1428
+ hasNextPage: zod.ZodBoolean;
1429
+ hasPreviousPage: zod.ZodOptional<zod.ZodBoolean>;
1430
+ startCursor: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1431
+ endCursor: zod.ZodNullable<zod.ZodString>;
1432
+ }, zod_v4_core0.$strip>;
1433
+ }, zod_v4_core0.$strip>, _keystrokehq_core0.CredentialSet<"shopify", zod.ZodObject<{
1434
+ SHOPIFY_STORE_DOMAIN: zod.ZodString;
1435
+ SHOPIFY_ACCESS_TOKEN: zod.ZodString;
1436
+ }, zod_v4_core0.$strip>, {
1437
+ kind: "oauth";
1438
+ tokenType: "refreshable";
1439
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1440
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1441
+ revokeUrl: null;
1442
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1443
+ vault: {
1444
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1445
+ readonly raw: {
1446
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1447
+ };
1448
+ };
1449
+ id: string;
1450
+ }[]>[], undefined>;
1451
+ //#endregion
1452
+ //#region src/operations/remove-products-from-shopify-collection.operation.d.ts
1453
+ declare const removeProductsFromCollectionOperation: Operation<z.ZodObject<{
1454
+ id: z.ZodString;
1455
+ productIds: z.ZodArray<z.ZodString>;
1456
+ }, z.core.$strip>, z.ZodObject<{
1457
+ id: z.ZodString;
1458
+ done: z.ZodOptional<z.ZodBoolean>;
1459
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1460
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1461
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1462
+ }, z.core.$strip>, {
1463
+ kind: "oauth";
1464
+ tokenType: "refreshable";
1465
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1466
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1467
+ revokeUrl: null;
1468
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1469
+ vault: {
1470
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1471
+ readonly raw: {
1472
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1473
+ };
1474
+ };
1475
+ id: string;
1476
+ }[]>[], undefined>;
1477
+ //#endregion
1478
+ //#region src/operations/update-shopify-article.operation.d.ts
1479
+ declare const updateArticleOperation: Operation<z.ZodObject<{
1480
+ blogId: z.ZodOptional<z.ZodString>;
1481
+ title: z.ZodOptional<z.ZodString>;
1482
+ handle: z.ZodOptional<z.ZodString>;
1483
+ body: z.ZodOptional<z.ZodString>;
1484
+ summary: z.ZodOptional<z.ZodString>;
1485
+ authorName: z.ZodOptional<z.ZodString>;
1486
+ isPublished: z.ZodOptional<z.ZodBoolean>;
1487
+ publishDate: z.ZodOptional<z.ZodISODateTime>;
1488
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1489
+ id: z.ZodString;
1490
+ redirectNewHandle: z.ZodOptional<z.ZodBoolean>;
1491
+ }, z.core.$strip>, z.ZodObject<{
1492
+ id: z.ZodString;
1493
+ title: z.ZodString;
1494
+ handle: z.ZodString;
1495
+ blog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1496
+ id: z.ZodString;
1497
+ title: z.ZodString;
1498
+ handle: z.ZodString;
1499
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
1500
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1501
+ commentPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1502
+ templateSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1503
+ }, z.core.$strip>>>;
1504
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1505
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1506
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1507
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1508
+ image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1509
+ url: z.ZodURL;
1510
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1511
+ }, z.core.$strip>>>;
1512
+ publishedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
1513
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1514
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1515
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1516
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1517
+ }, z.core.$strip>, {
1518
+ kind: "oauth";
1519
+ tokenType: "refreshable";
1520
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1521
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1522
+ revokeUrl: null;
1523
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1524
+ vault: {
1525
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1526
+ readonly raw: {
1527
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1528
+ };
1529
+ };
1530
+ id: string;
1531
+ }[]>[], undefined>;
1532
+ //#endregion
1533
+ //#region src/operations/update-shopify-blog.operation.d.ts
1534
+ declare const updateBlogOperation: Operation<z.ZodObject<{
1535
+ title: z.ZodOptional<z.ZodString>;
1536
+ handle: z.ZodOptional<z.ZodString>;
1537
+ templateSuffix: z.ZodOptional<z.ZodString>;
1538
+ commentPolicy: z.ZodOptional<z.ZodEnum<{
1539
+ DISABLED: "DISABLED";
1540
+ HIDDEN: "HIDDEN";
1541
+ MODERATED: "MODERATED";
1542
+ OPEN: "OPEN";
1543
+ }>>;
1544
+ id: z.ZodString;
1545
+ }, z.core.$strip>, z.ZodObject<{
1546
+ id: z.ZodString;
1547
+ title: z.ZodString;
1548
+ handle: z.ZodString;
1549
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
1550
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1551
+ commentPolicy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1552
+ templateSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1553
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1554
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1555
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1556
+ }, z.core.$strip>, {
1557
+ kind: "oauth";
1558
+ tokenType: "refreshable";
1559
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1560
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1561
+ revokeUrl: null;
1562
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1563
+ vault: {
1564
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1565
+ readonly raw: {
1566
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1567
+ };
1568
+ };
1569
+ id: string;
1570
+ }[]>[], undefined>;
1571
+ //#endregion
1572
+ //#region src/operations/update-shopify-customer.operation.d.ts
1573
+ declare const updateCustomerOperation: Operation<z.ZodObject<{
1574
+ email: z.ZodOptional<z.ZodEmail>;
1575
+ firstName: z.ZodOptional<z.ZodString>;
1576
+ lastName: z.ZodOptional<z.ZodString>;
1577
+ phone: z.ZodOptional<z.ZodString>;
1578
+ note: z.ZodOptional<z.ZodString>;
1579
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1580
+ id: z.ZodString;
1581
+ }, z.core.$strip>, z.ZodObject<{
1582
+ id: z.ZodString;
1583
+ displayName: z.ZodString;
1584
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1585
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1586
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
1587
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1588
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
1589
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1590
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1591
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1592
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1593
+ }, z.core.$strip>, {
1594
+ kind: "oauth";
1595
+ tokenType: "refreshable";
1596
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1597
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1598
+ revokeUrl: null;
1599
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1600
+ vault: {
1601
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1602
+ readonly raw: {
1603
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1604
+ };
1605
+ };
1606
+ id: string;
1607
+ }[]>[], undefined>;
1608
+ //#endregion
1609
+ //#region src/operations/update-shopify-order.operation.d.ts
1610
+ declare const updateOrderOperation: Operation<z.ZodObject<{
1611
+ id: z.ZodString;
1612
+ email: z.ZodOptional<z.ZodEmail>;
1613
+ note: z.ZodOptional<z.ZodString>;
1614
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1615
+ shippingAddress: z.ZodOptional<z.ZodObject<{
1616
+ address1: z.ZodString;
1617
+ address2: z.ZodOptional<z.ZodString>;
1618
+ city: z.ZodString;
1619
+ province: z.ZodOptional<z.ZodString>;
1620
+ country: z.ZodString;
1621
+ zip: z.ZodOptional<z.ZodString>;
1622
+ firstName: z.ZodOptional<z.ZodString>;
1623
+ lastName: z.ZodOptional<z.ZodString>;
1624
+ phone: z.ZodOptional<z.ZodString>;
1625
+ }, z.core.$strip>>;
1626
+ }, z.core.$strip>, z.ZodObject<{
1627
+ id: z.ZodString;
1628
+ name: z.ZodString;
1629
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
1630
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1631
+ cancelledAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
1632
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
1633
+ note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1634
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1635
+ displayFinancialStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1636
+ displayFulfillmentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1637
+ currentTotalPriceSet: z.ZodOptional<z.ZodObject<{
1638
+ shopMoney: z.ZodObject<{
1639
+ amount: z.ZodString;
1640
+ currencyCode: z.ZodString;
1641
+ }, z.core.$strip>;
1642
+ presentmentMoney: z.ZodOptional<z.ZodObject<{
1643
+ amount: z.ZodString;
1644
+ currencyCode: z.ZodString;
1645
+ }, z.core.$strip>>;
1646
+ }, z.core.$strip>>;
1647
+ customer: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1648
+ id: z.ZodString;
1649
+ displayName: z.ZodString;
1650
+ firstName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1651
+ lastName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1652
+ email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
1653
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1654
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
1655
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1656
+ }, z.core.$strip>>>;
1657
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1658
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1659
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1660
+ }, z.core.$strip>, {
1661
+ kind: "oauth";
1662
+ tokenType: "refreshable";
1663
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1664
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1665
+ revokeUrl: null;
1666
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1667
+ vault: {
1668
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1669
+ readonly raw: {
1670
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1671
+ };
1672
+ };
1673
+ id: string;
1674
+ }[]>[], undefined>;
1675
+ //#endregion
1676
+ //#region src/operations/update-shopify-product.operation.d.ts
1677
+ declare const updateProductOperation: Operation<z.ZodObject<{
1678
+ title: z.ZodOptional<z.ZodString>;
1679
+ handle: z.ZodOptional<z.ZodString>;
1680
+ descriptionHtml: z.ZodOptional<z.ZodString>;
1681
+ vendor: z.ZodOptional<z.ZodString>;
1682
+ productType: z.ZodOptional<z.ZodString>;
1683
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1684
+ id: z.ZodString;
1685
+ }, z.core.$strip>, z.ZodObject<{
1686
+ id: z.ZodString;
1687
+ title: z.ZodString;
1688
+ handle: z.ZodString;
1689
+ status: z.ZodOptional<z.ZodString>;
1690
+ productType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1691
+ vendor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1692
+ descriptionHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1693
+ onlineStoreUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
1694
+ createdAt: z.ZodOptional<z.ZodISODateTime>;
1695
+ updatedAt: z.ZodOptional<z.ZodISODateTime>;
1696
+ featuredImage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1697
+ url: z.ZodURL;
1698
+ altText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1699
+ }, z.core.$strip>>>;
1700
+ seo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1701
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1702
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1703
+ }, z.core.$strip>>>;
1704
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1705
+ }, z.core.$strip>, _keystrokehq_core0.CredentialSet<"shopify", z.ZodObject<{
1706
+ SHOPIFY_STORE_DOMAIN: z.ZodString;
1707
+ SHOPIFY_ACCESS_TOKEN: z.ZodString;
1708
+ }, z.core.$strip>, {
1709
+ kind: "oauth";
1710
+ tokenType: "refreshable";
1711
+ authUrl: "https://{shop}.myshopify.com/admin/oauth/authorize";
1712
+ tokenUrl: "https://{shop}.myshopify.com/admin/oauth/access_token";
1713
+ revokeUrl: null;
1714
+ scopes: readonly ["read_products", "write_products", "read_orders", "write_orders", "read_customers", "write_customers", "read_inventory", "write_inventory", "read_locations", "read_fulfillments", "write_fulfillments", "read_content", "write_content", "read_webhooks", "write_webhooks"];
1715
+ vault: {
1716
+ readonly accessToken: "SHOPIFY_ACCESS_TOKEN";
1717
+ readonly raw: {
1718
+ readonly SHOPIFY_STORE_DOMAIN: "_shopifyShopDomain";
1719
+ };
1720
+ };
1721
+ id: string;
1722
+ }[]>[], undefined>;
1723
+ //#endregion
1724
+ export { deleteCollectionOperation as A, cancelOrderOperation as B, getCustomerOrdersOperation as C, getArticleOperation as D, getBlogOperation as E, createFulfillmentOperation as F, addProductsToCollectionOperation as H, createCustomerOperation as I, createCollectionOperation as L, deleteArticleOperation as M, createProductOperation as N, deleteProductOperation as O, createOrderOperation as P, createBlogOperation as R, getFulfillmentOperation as S, getCollectionOperation as T, adjustInventoryQuantitiesOperation as V, getProductOperation as _, updateArticleOperation as a, getInventoryLevelsForItemOperation as b, listOrdersOperation as c, listFulfillmentOrdersForOrderOperation as d, listCustomersOperation as f, getShopOperation as g, listArticlesOperation as h, updateBlogOperation as i, deleteBlogOperation as j, deleteCustomerOperation as k, listLocationsOperation as l, listBlogsOperation as m, updateOrderOperation as n, removeProductsFromCollectionOperation as o, listCollectionsOperation as p, updateCustomerOperation as r, listProductsOperation as s, updateProductOperation as t, listInventoryItemsOperation as u, getOrderOperation as v, getCustomerOperation as w, getInventoryItemOperation as x, getLocationOperation as y, createArticleOperation as z };