@burdenoff/microfe-store 2026.714.7 → 2026.715.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 (47) hide show
  1. package/dist/StoreAdminRoot.d.ts +22 -0
  2. package/dist/StoreAdminRoutes.d.ts +9 -0
  3. package/dist/StoreRoot.d.ts +31 -0
  4. package/dist/StoreRoutes.d.ts +12 -0
  5. package/dist/components/AccessDenied.d.ts +6 -0
  6. package/dist/components/InstallAppModal.d.ts +28 -0
  7. package/dist/components/PermissionGuard.d.ts +9 -0
  8. package/dist/components/RouteGuards.d.ts +8 -0
  9. package/dist/components/cart/CartDrawer.d.ts +35 -0
  10. package/dist/components/index.d.ts +8 -0
  11. package/dist/dev/main.d.ts +1 -0
  12. package/dist/generated/global-operations.d.ts +2027 -0
  13. package/dist/generated/global-types.d.ts +24704 -0
  14. package/dist/generated/wspace-operations.d.ts +1 -0
  15. package/dist/generated/wspace-types.d.ts +80484 -0
  16. package/dist/hooks/useBackendCart.d.ts +73 -0
  17. package/dist/hooks/useCart.d.ts +62 -0
  18. package/dist/hooks/useInstallations.d.ts +47 -0
  19. package/dist/hooks/useOrders.d.ts +47 -0
  20. package/dist/hooks/useProductSearch.d.ts +22 -0
  21. package/dist/hooks/useStoreGraphQL.d.ts +481 -0
  22. package/dist/hooks/useStoreGraphQLWithContext.d.ts +32 -0
  23. package/dist/hooks/useStorePermissions.d.ts +63 -0
  24. package/dist/index.d.ts +44 -0
  25. package/dist/pages/AdminDashboardPage.d.ts +3 -0
  26. package/dist/pages/AdminReviewModerationPage.d.ts +3 -0
  27. package/dist/pages/AdminStoresPage.d.ts +3 -0
  28. package/dist/pages/AdminSubmissionsQueuePage.d.ts +3 -0
  29. package/dist/pages/AppDetailPage.d.ts +3 -0
  30. package/dist/pages/AppSettingsPage.d.ts +3 -0
  31. package/dist/pages/CartPage.d.ts +8 -0
  32. package/dist/pages/InstalledAppsPage.d.ts +3 -0
  33. package/dist/pages/MarketplaceHomePage.d.ts +3 -0
  34. package/dist/pages/MyLicensesPage.d.ts +3 -0
  35. package/dist/pages/OrderConfirmationPage.d.ts +3 -0
  36. package/dist/pages/OrdersPage.d.ts +9 -0
  37. package/dist/pages/ProductCategoryPage.d.ts +3 -0
  38. package/dist/pages/ProductDetailPage.d.ts +8 -0
  39. package/dist/pages/SearchResultsPage.d.ts +3 -0
  40. package/dist/pages/StoresPage.d.ts +3 -0
  41. package/dist/providers/StoreProvider.d.ts +38 -0
  42. package/dist/store/storeStore.d.ts +69 -0
  43. package/dist/translations/en.d.ts +518 -0
  44. package/dist/types/index.d.ts +575 -0
  45. package/dist/utils/index.d.ts +71 -0
  46. package/dist/utils/nativeBridge.d.ts +2 -0
  47. package/package.json +2 -2
@@ -0,0 +1,2027 @@
1
+ import * as Types from './global-types';
2
+ import * as Apollo from '@apollo/client';
3
+ import * as ApolloReactHooks from '@apollo/client/react';
4
+ export type CreateReviewMutationVariables = Types.Exact<{
5
+ input: Types.CreateReviewInput;
6
+ }>;
7
+ export type CreateReviewMutation = {
8
+ __typename?: 'Mutation';
9
+ createReview: {
10
+ __typename?: 'ProductReview';
11
+ id: string;
12
+ rating: number;
13
+ };
14
+ };
15
+ export type DeleteReviewMutationVariables = Types.Exact<{
16
+ id: Types.Scalars['ID']['input'];
17
+ }>;
18
+ export type DeleteReviewMutation = {
19
+ __typename?: 'Mutation';
20
+ deleteReview: boolean;
21
+ };
22
+ export type MarkReviewHelpfulMutationVariables = Types.Exact<{
23
+ id: Types.Scalars['ID']['input'];
24
+ }>;
25
+ export type MarkReviewHelpfulMutation = {
26
+ __typename?: 'Mutation';
27
+ markReviewHelpful: {
28
+ __typename?: 'ProductReview';
29
+ id: string;
30
+ helpful: number;
31
+ };
32
+ };
33
+ export type UpdateReviewMutationVariables = Types.Exact<{
34
+ id: Types.Scalars['ID']['input'];
35
+ input: Types.UpdateReviewInput;
36
+ }>;
37
+ export type UpdateReviewMutation = {
38
+ __typename?: 'Mutation';
39
+ updateReview: {
40
+ __typename?: 'ProductReview';
41
+ id: string;
42
+ rating: number;
43
+ };
44
+ };
45
+ export type AddToCartMutationVariables = Types.Exact<{
46
+ input: Types.AddToCartInput;
47
+ }>;
48
+ export type AddToCartMutation = {
49
+ __typename?: 'Mutation';
50
+ addToCart: {
51
+ __typename?: 'CartItemPayload';
52
+ cartItem?: {
53
+ __typename?: 'CartItem';
54
+ id: string;
55
+ productId: string;
56
+ productName: string;
57
+ quantity: number;
58
+ unitPrice: number;
59
+ subtotal: number;
60
+ } | null;
61
+ cart?: {
62
+ __typename?: 'Cart';
63
+ id: string;
64
+ subtotal: number;
65
+ total: number;
66
+ itemCount: number;
67
+ items: Array<{
68
+ __typename?: 'CartItem';
69
+ id: string;
70
+ productId: string;
71
+ productName: string;
72
+ productIcon?: string | null;
73
+ variantId?: string | null;
74
+ quantity: number;
75
+ unitPrice: number;
76
+ subtotal: number;
77
+ itemType: Types.CartItemType;
78
+ }>;
79
+ } | null;
80
+ errors?: Array<{
81
+ __typename?: 'CartError';
82
+ field?: string | null;
83
+ message: string;
84
+ code: string;
85
+ }> | null;
86
+ };
87
+ };
88
+ export type CheckoutMutationVariables = Types.Exact<{
89
+ input: Types.CheckoutInput;
90
+ }>;
91
+ export type CheckoutMutation = {
92
+ __typename?: 'Mutation';
93
+ checkout: {
94
+ __typename?: 'CheckoutPayload';
95
+ success: boolean;
96
+ order?: {
97
+ __typename?: 'StoreOrder';
98
+ id: string;
99
+ status: Types.OrderStatus;
100
+ total: number;
101
+ createdAt: string;
102
+ } | null;
103
+ errors?: Array<{
104
+ __typename?: 'CartError';
105
+ field?: string | null;
106
+ message: string;
107
+ code: string;
108
+ }> | null;
109
+ };
110
+ };
111
+ export type ClearCartMutationVariables = Types.Exact<{
112
+ [key: string]: never;
113
+ }>;
114
+ export type ClearCartMutation = {
115
+ __typename?: 'Mutation';
116
+ clearCart: {
117
+ __typename?: 'CartPayload';
118
+ cart?: {
119
+ __typename?: 'Cart';
120
+ id: string;
121
+ subtotal: number;
122
+ total: number;
123
+ itemCount: number;
124
+ items: Array<{
125
+ __typename?: 'CartItem';
126
+ id: string;
127
+ }>;
128
+ } | null;
129
+ errors?: Array<{
130
+ __typename?: 'CartError';
131
+ field?: string | null;
132
+ message: string;
133
+ code: string;
134
+ }> | null;
135
+ };
136
+ };
137
+ export type CreateProductForPublisherMutationVariables = Types.Exact<{
138
+ input: Types.CreateProductInput;
139
+ }>;
140
+ export type CreateProductForPublisherMutation = {
141
+ __typename?: 'Mutation';
142
+ createProduct: {
143
+ __typename?: 'StoreProduct';
144
+ id: string;
145
+ name: string;
146
+ slug: string;
147
+ status: Types.ProductStatus;
148
+ manifestVersion?: string | null;
149
+ subType?: string | null;
150
+ };
151
+ };
152
+ export type CreateStoreOrderMutationVariables = Types.Exact<{
153
+ input: Types.CreateStoreOrderInput;
154
+ }>;
155
+ export type CreateStoreOrderMutation = {
156
+ __typename?: 'Mutation';
157
+ createStoreOrder: {
158
+ __typename?: 'StoreOrder';
159
+ id: string;
160
+ status: Types.OrderStatus;
161
+ total: number;
162
+ lineItems: Record<string, unknown>;
163
+ createdAt: string;
164
+ };
165
+ };
166
+ export type RemoveFromCartMutationVariables = Types.Exact<{
167
+ cartItemId: Types.Scalars['String']['input'];
168
+ }>;
169
+ export type RemoveFromCartMutation = {
170
+ __typename?: 'Mutation';
171
+ removeFromCart: {
172
+ __typename?: 'CartPayload';
173
+ cart?: {
174
+ __typename?: 'Cart';
175
+ id: string;
176
+ subtotal: number;
177
+ total: number;
178
+ itemCount: number;
179
+ items: Array<{
180
+ __typename?: 'CartItem';
181
+ id: string;
182
+ productId: string;
183
+ productName: string;
184
+ productIcon?: string | null;
185
+ variantId?: string | null;
186
+ quantity: number;
187
+ unitPrice: number;
188
+ subtotal: number;
189
+ itemType: Types.CartItemType;
190
+ }>;
191
+ } | null;
192
+ errors?: Array<{
193
+ __typename?: 'CartError';
194
+ field?: string | null;
195
+ message: string;
196
+ code: string;
197
+ }> | null;
198
+ };
199
+ };
200
+ export type RecordAppUninstallationMutationVariables = Types.Exact<{
201
+ workspaceId: Types.Scalars['String']['input'];
202
+ productId: Types.Scalars['String']['input'];
203
+ }>;
204
+ export type RecordAppUninstallationMutation = {
205
+ __typename?: 'Mutation';
206
+ recordAppUninstallation: {
207
+ __typename?: 'StoreAppInstallation';
208
+ id: string;
209
+ status: Types.StoreInstallationStatus;
210
+ uninstalledAt?: string | null;
211
+ };
212
+ };
213
+ export type UpdateCartItemMutationVariables = Types.Exact<{
214
+ input: Types.UpdateCartItemInput;
215
+ }>;
216
+ export type UpdateCartItemMutation = {
217
+ __typename?: 'Mutation';
218
+ updateCartItem: {
219
+ __typename?: 'CartItemPayload';
220
+ cartItem?: {
221
+ __typename?: 'CartItem';
222
+ id: string;
223
+ productId: string;
224
+ productName: string;
225
+ quantity: number;
226
+ unitPrice: number;
227
+ subtotal: number;
228
+ } | null;
229
+ cart?: {
230
+ __typename?: 'Cart';
231
+ id: string;
232
+ subtotal: number;
233
+ total: number;
234
+ itemCount: number;
235
+ items: Array<{
236
+ __typename?: 'CartItem';
237
+ id: string;
238
+ productId: string;
239
+ productName: string;
240
+ productIcon?: string | null;
241
+ variantId?: string | null;
242
+ quantity: number;
243
+ unitPrice: number;
244
+ subtotal: number;
245
+ itemType: Types.CartItemType;
246
+ }>;
247
+ } | null;
248
+ errors?: Array<{
249
+ __typename?: 'CartError';
250
+ field?: string | null;
251
+ message: string;
252
+ code: string;
253
+ }> | null;
254
+ };
255
+ };
256
+ export type CategoriesQueryVariables = Types.Exact<{
257
+ [key: string]: never;
258
+ }>;
259
+ export type CategoriesQuery = {
260
+ __typename?: 'Query';
261
+ categories: Array<{
262
+ __typename?: 'ProductCategory';
263
+ id: string;
264
+ name: string;
265
+ slug: string;
266
+ description?: string | null;
267
+ }>;
268
+ };
269
+ export type CheckEntitlementQueryVariables = Types.Exact<{
270
+ productId: Types.Scalars['String']['input'];
271
+ }>;
272
+ export type CheckEntitlementQuery = {
273
+ __typename?: 'Query';
274
+ checkEntitlement?: {
275
+ __typename?: 'ProductEntitlement';
276
+ id: string;
277
+ productId: string;
278
+ status: Types.EntitlementStatus;
279
+ licenseKey?: string | null;
280
+ expiresAt?: string | null;
281
+ } | null;
282
+ };
283
+ export type DeveloperEarningsQueryVariables = Types.Exact<{
284
+ input?: Types.InputMaybe<Types.DeveloperEarningsInput>;
285
+ }>;
286
+ export type DeveloperEarningsQuery = {
287
+ __typename?: 'Query';
288
+ developerEarnings: {
289
+ __typename?: 'DeveloperEarnings';
290
+ totalEarnings: number;
291
+ monthlyEarnings: number;
292
+ totalOrders: number;
293
+ monthlyOrders: number;
294
+ currency: string;
295
+ };
296
+ };
297
+ export type FeaturedProductsQueryVariables = Types.Exact<{
298
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
299
+ }>;
300
+ export type FeaturedProductsQuery = {
301
+ __typename?: 'Query';
302
+ featuredProducts: Array<{
303
+ __typename?: 'StoreProduct';
304
+ id: string;
305
+ name: string;
306
+ slug: string;
307
+ }>;
308
+ };
309
+ export type FilterOptionsQueryVariables = Types.Exact<{
310
+ type?: Types.InputMaybe<Types.ProductType>;
311
+ }>;
312
+ export type FilterOptionsQuery = {
313
+ __typename?: 'Query';
314
+ filterOptions: {
315
+ __typename?: 'FilterOptionsResult';
316
+ categories: Array<{
317
+ __typename?: 'FacetCount';
318
+ value: string;
319
+ count: number;
320
+ }>;
321
+ subTypes: Array<{
322
+ __typename?: 'FacetCount';
323
+ value: string;
324
+ count: number;
325
+ }>;
326
+ tags: Array<{
327
+ __typename?: 'FacetCount';
328
+ value: string;
329
+ count: number;
330
+ }>;
331
+ licenses: Array<{
332
+ __typename?: 'FacetCount';
333
+ value: string;
334
+ count: number;
335
+ }>;
336
+ compatibleProducts: Array<{
337
+ __typename?: 'FacetCount';
338
+ value: string;
339
+ count: number;
340
+ }>;
341
+ };
342
+ };
343
+ export type MyEntitlementsQueryVariables = Types.Exact<{
344
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
345
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
346
+ }>;
347
+ export type MyEntitlementsQuery = {
348
+ __typename?: 'Query';
349
+ myEntitlements: Array<{
350
+ __typename?: 'ProductEntitlement';
351
+ id: string;
352
+ productId: string;
353
+ status: Types.EntitlementStatus;
354
+ licenseKey?: string | null;
355
+ expiresAt?: string | null;
356
+ }>;
357
+ };
358
+ export type MyPublishedProductsQueryVariables = Types.Exact<{
359
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
360
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
361
+ }>;
362
+ export type MyPublishedProductsQuery = {
363
+ __typename?: 'Query';
364
+ publishedProducts: Array<{
365
+ __typename?: 'StoreProduct';
366
+ id: string;
367
+ name: string;
368
+ status: Types.ProductStatus;
369
+ reviewCount: number;
370
+ }>;
371
+ };
372
+ export type ProductReviewsQueryVariables = Types.Exact<{
373
+ productId: Types.Scalars['String']['input'];
374
+ status?: Types.InputMaybe<Types.ReviewStatus>;
375
+ }>;
376
+ export type ProductReviewsQuery = {
377
+ __typename?: 'Query';
378
+ productReviews: Array<{
379
+ __typename?: 'ProductReview';
380
+ id: string;
381
+ rating: number;
382
+ title?: string | null;
383
+ comment?: string | null;
384
+ helpful: number;
385
+ createdAt: string;
386
+ }>;
387
+ };
388
+ export type SearchSuggestionsQueryVariables = Types.Exact<{
389
+ query: Types.Scalars['String']['input'];
390
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
391
+ }>;
392
+ export type SearchSuggestionsQuery = {
393
+ __typename?: 'Query';
394
+ searchSuggestions: Array<{
395
+ __typename?: 'SearchSuggestion';
396
+ term: string;
397
+ type: string;
398
+ count: number;
399
+ }>;
400
+ };
401
+ export type TrendingSearchesQueryVariables = Types.Exact<{
402
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
403
+ }>;
404
+ export type TrendingSearchesQuery = {
405
+ __typename?: 'Query';
406
+ trendingSearches: Array<string>;
407
+ };
408
+ export type UserReviewForProductQueryVariables = Types.Exact<{
409
+ productId: Types.Scalars['String']['input'];
410
+ }>;
411
+ export type UserReviewForProductQuery = {
412
+ __typename?: 'Query';
413
+ userReviewForProduct?: {
414
+ __typename?: 'ProductReview';
415
+ id: string;
416
+ rating: number;
417
+ title?: string | null;
418
+ comment?: string | null;
419
+ } | null;
420
+ };
421
+ export type WorkspaceStoreOrdersQueryVariables = Types.Exact<{
422
+ billingAccountId: Types.Scalars['ID']['input'];
423
+ page: Types.Scalars['Int']['input'];
424
+ limit: Types.Scalars['Int']['input'];
425
+ }>;
426
+ export type WorkspaceStoreOrdersQuery = {
427
+ __typename?: 'Query';
428
+ workspaceStoreOrders: {
429
+ __typename?: 'StoreOrdersResult';
430
+ total: number;
431
+ orders: Array<{
432
+ __typename?: 'StoreOrder';
433
+ id: string;
434
+ status: Types.OrderStatus;
435
+ createdAt: string;
436
+ }>;
437
+ };
438
+ };
439
+ export type BrowseStoreQueryVariables = Types.Exact<{
440
+ input: Types.BrowseStoreInput;
441
+ }>;
442
+ export type BrowseStoreQuery = {
443
+ __typename?: 'Query';
444
+ browseStore: {
445
+ __typename?: 'BrowseStoreResult';
446
+ totalCount: number;
447
+ hasMore: boolean;
448
+ nextCursor?: string | null;
449
+ products: Array<{
450
+ __typename?: 'StoreProduct';
451
+ id: string;
452
+ name: string;
453
+ slug: string;
454
+ type: Types.ProductType;
455
+ nature: Types.ProductNature;
456
+ status: Types.ProductStatus;
457
+ description?: string | null;
458
+ pricingModel: Types.PricingModel;
459
+ price: number;
460
+ currency: string;
461
+ icon?: string | null;
462
+ screenshots: Array<string>;
463
+ rating?: number | null;
464
+ reviewCount: number;
465
+ downloads: number;
466
+ featured: boolean;
467
+ category?: string | null;
468
+ tags: Array<string>;
469
+ publishedAt?: string | null;
470
+ publisher?: {
471
+ __typename?: 'Publisher';
472
+ id: string;
473
+ name: string;
474
+ isVerified: boolean;
475
+ logoUrl?: string | null;
476
+ } | null;
477
+ }>;
478
+ facets?: {
479
+ __typename?: 'StoreFacets';
480
+ types: Array<{
481
+ __typename?: 'FacetCount';
482
+ value: string;
483
+ count: number;
484
+ }>;
485
+ subTypes: Array<{
486
+ __typename?: 'FacetCount';
487
+ value: string;
488
+ count: number;
489
+ }>;
490
+ categories: Array<{
491
+ __typename?: 'FacetCount';
492
+ value: string;
493
+ count: number;
494
+ }>;
495
+ pricingModels: Array<{
496
+ __typename?: 'FacetCount';
497
+ value: string;
498
+ count: number;
499
+ }>;
500
+ licenses: Array<{
501
+ __typename?: 'FacetCount';
502
+ value: string;
503
+ count: number;
504
+ }>;
505
+ priceRange?: {
506
+ __typename?: 'PriceRange';
507
+ min: number;
508
+ max: number;
509
+ } | null;
510
+ } | null;
511
+ };
512
+ };
513
+ export type GetCartQueryVariables = Types.Exact<{
514
+ [key: string]: never;
515
+ }>;
516
+ export type GetCartQuery = {
517
+ __typename?: 'Query';
518
+ myCart?: {
519
+ __typename?: 'Cart';
520
+ id: string;
521
+ userId?: string | null;
522
+ status: Types.CartStatus;
523
+ currency: string;
524
+ subtotal: number;
525
+ total: number;
526
+ itemCount: number;
527
+ createdAt: string;
528
+ updatedAt: string;
529
+ items: Array<{
530
+ __typename?: 'CartItem';
531
+ id: string;
532
+ productId: string;
533
+ productName: string;
534
+ productIcon?: string | null;
535
+ variantId?: string | null;
536
+ variantName?: string | null;
537
+ quantity: number;
538
+ unitPrice: number;
539
+ subtotal: number;
540
+ itemType: Types.CartItemType;
541
+ product?: {
542
+ __typename?: 'StoreProduct';
543
+ id: string;
544
+ name: string;
545
+ slug: string;
546
+ icon?: string | null;
547
+ price: number;
548
+ pricingModel: Types.PricingModel;
549
+ } | null;
550
+ variant?: {
551
+ __typename?: 'ProductVariant';
552
+ id: string;
553
+ name: string;
554
+ price?: number | null;
555
+ } | null;
556
+ }>;
557
+ } | null;
558
+ };
559
+ export type GetMyStoreInstallationsQueryVariables = Types.Exact<{
560
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
561
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
562
+ filter?: Types.InputMaybe<Types.InstallationFilterInput>;
563
+ }>;
564
+ export type GetMyStoreInstallationsQuery = {
565
+ __typename?: 'Query';
566
+ myStoreAppInstallations: {
567
+ __typename?: 'StoreAppInstallationConnection';
568
+ total: number;
569
+ hasMore: boolean;
570
+ items: Array<{
571
+ __typename?: 'StoreAppInstallation';
572
+ id: string;
573
+ productId: string;
574
+ workspaceId: string;
575
+ organizationId?: string | null;
576
+ status: Types.StoreInstallationStatus;
577
+ installedAt: string;
578
+ version?: string | null;
579
+ updatedAt: string;
580
+ workspaceName?: string | null;
581
+ workspaceType?: string | null;
582
+ installedById: string;
583
+ manifest?: Record<string, unknown> | null;
584
+ metadata?: Record<string, unknown> | null;
585
+ context?: Record<string, unknown> | null;
586
+ grantedPermissions?: Record<string, unknown> | null;
587
+ }>;
588
+ };
589
+ };
590
+ export type GetMyOrdersQueryVariables = Types.Exact<{
591
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
592
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
593
+ status?: Types.InputMaybe<Types.OrderStatus>;
594
+ }>;
595
+ export type GetMyOrdersQuery = {
596
+ __typename?: 'Query';
597
+ myOrders: Array<{
598
+ __typename?: 'StoreOrder';
599
+ id: string;
600
+ status: Types.OrderStatus;
601
+ total: number;
602
+ currency: string;
603
+ lineItems: Record<string, unknown>;
604
+ createdAt: string;
605
+ updatedAt: string;
606
+ fulfillment?: {
607
+ __typename?: 'OrderFulfillment';
608
+ status: Types.FulfillmentStatus;
609
+ trackingNumber?: string | null;
610
+ trackingUrl?: string | null;
611
+ carrier?: string | null;
612
+ estimatedDeliveryDate?: string | null;
613
+ } | null;
614
+ }>;
615
+ };
616
+ export type GetProductQueryVariables = Types.Exact<{
617
+ id: Types.Scalars['ID']['input'];
618
+ }>;
619
+ export type GetProductQuery = {
620
+ __typename?: 'Query';
621
+ product?: {
622
+ __typename?: 'StoreProduct';
623
+ id: string;
624
+ publisherId: string;
625
+ name: string;
626
+ slug: string;
627
+ description?: string | null;
628
+ longDescription?: string | null;
629
+ icon?: string | null;
630
+ screenshots: Array<string>;
631
+ videoUrls: Array<string>;
632
+ subType?: string | null;
633
+ type: Types.ProductType;
634
+ manifest?: Record<string, unknown> | null;
635
+ manifestVersion?: string | null;
636
+ requiredPermissions: Array<string>;
637
+ compatibleProducts: Array<string>;
638
+ category?: string | null;
639
+ tags: Array<string>;
640
+ pricingModel: Types.PricingModel;
641
+ price: number;
642
+ currency: string;
643
+ status: Types.ProductStatus;
644
+ featured: boolean;
645
+ documentationUrl?: string | null;
646
+ repositoryUrl?: string | null;
647
+ downloads: number;
648
+ viewCount: number;
649
+ rating?: number | null;
650
+ reviewCount: number;
651
+ createdAt: string;
652
+ updatedAt: string;
653
+ publishedAt?: string | null;
654
+ variants: Array<{
655
+ __typename?: 'ProductVariant';
656
+ id: string;
657
+ name: string;
658
+ sku?: string | null;
659
+ price?: number | null;
660
+ compareAtPrice?: number | null;
661
+ isActive: boolean;
662
+ stockQuantity: number;
663
+ options: Record<string, unknown>;
664
+ imageUrls: Array<string>;
665
+ displayOrder: number;
666
+ weight?: number | null;
667
+ weightUnit?: Types.WeightUnit | null;
668
+ }>;
669
+ publisher?: {
670
+ __typename?: 'Publisher';
671
+ id: string;
672
+ name: string;
673
+ websiteUrl?: string | null;
674
+ isVerified: boolean;
675
+ email: string;
676
+ bio?: string | null;
677
+ logoUrl?: string | null;
678
+ totalSales: number;
679
+ totalEarnings: number;
680
+ products: Array<{
681
+ __typename?: 'StoreProduct';
682
+ id: string;
683
+ }>;
684
+ } | null;
685
+ reviews: Array<{
686
+ __typename?: 'ProductReview';
687
+ id: string;
688
+ userId: string;
689
+ rating: number;
690
+ comment?: string | null;
691
+ status: Types.ReviewStatus;
692
+ helpful: number;
693
+ createdAt: string;
694
+ }>;
695
+ } | null;
696
+ };
697
+ export type GetProductsQueryVariables = Types.Exact<{
698
+ filter?: Types.InputMaybe<Types.ProductFilterInput>;
699
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
700
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
701
+ }>;
702
+ export type GetProductsQuery = {
703
+ __typename?: 'Query';
704
+ products: Array<{
705
+ __typename?: 'StoreProduct';
706
+ id: string;
707
+ name: string;
708
+ slug: string;
709
+ description?: string | null;
710
+ icon?: string | null;
711
+ screenshots: Array<string>;
712
+ subType?: string | null;
713
+ type: Types.ProductType;
714
+ pricingModel: Types.PricingModel;
715
+ price: number;
716
+ currency: string;
717
+ status: Types.ProductStatus;
718
+ featured: boolean;
719
+ downloads: number;
720
+ viewCount: number;
721
+ rating?: number | null;
722
+ reviewCount: number;
723
+ category?: string | null;
724
+ tags: Array<string>;
725
+ createdAt: string;
726
+ publishedAt?: string | null;
727
+ publisher?: {
728
+ __typename?: 'Publisher';
729
+ id: string;
730
+ name: string;
731
+ isVerified: boolean;
732
+ } | null;
733
+ }>;
734
+ };
735
+ export type GetStoreAppInstallationQueryVariables = Types.Exact<{
736
+ id: Types.Scalars['ID']['input'];
737
+ }>;
738
+ export type GetStoreAppInstallationQuery = {
739
+ __typename?: 'Query';
740
+ storeAppInstallation?: {
741
+ __typename?: 'StoreAppInstallation';
742
+ id: string;
743
+ productId: string;
744
+ workspaceId: string;
745
+ workspaceName?: string | null;
746
+ workspaceType?: string | null;
747
+ organizationId?: string | null;
748
+ installedById: string;
749
+ status: Types.StoreInstallationStatus;
750
+ version?: string | null;
751
+ manifest?: Record<string, unknown> | null;
752
+ metadata?: Record<string, unknown> | null;
753
+ context?: Record<string, unknown> | null;
754
+ grantedPermissions?: Record<string, unknown> | null;
755
+ installedAt: string;
756
+ updatedAt: string;
757
+ uninstalledAt?: string | null;
758
+ uninstalledById?: string | null;
759
+ } | null;
760
+ };
761
+ export type HomeGroupedProductsQueryVariables = Types.Exact<{
762
+ compatibleWith?: Types.InputMaybe<Types.Scalars['String']['input']>;
763
+ }>;
764
+ export type HomeGroupedProductsQuery = {
765
+ __typename?: 'Query';
766
+ homeGroupedProducts: {
767
+ __typename?: 'GroupedStoreProducts';
768
+ featured: Array<{
769
+ __typename?: 'StoreProduct';
770
+ id: string;
771
+ name: string;
772
+ slug: string;
773
+ type: Types.ProductType;
774
+ nature: Types.ProductNature;
775
+ status: Types.ProductStatus;
776
+ description?: string | null;
777
+ pricingModel: Types.PricingModel;
778
+ price: number;
779
+ currency: string;
780
+ icon?: string | null;
781
+ screenshots: Array<string>;
782
+ rating?: number | null;
783
+ reviewCount: number;
784
+ downloads: number;
785
+ featured: boolean;
786
+ category?: string | null;
787
+ tags: Array<string>;
788
+ publishedAt?: string | null;
789
+ publisher?: {
790
+ __typename?: 'Publisher';
791
+ id: string;
792
+ name: string;
793
+ isVerified: boolean;
794
+ logoUrl?: string | null;
795
+ } | null;
796
+ }>;
797
+ mostDownloaded: Array<{
798
+ __typename?: 'StoreProduct';
799
+ id: string;
800
+ name: string;
801
+ slug: string;
802
+ type: Types.ProductType;
803
+ nature: Types.ProductNature;
804
+ status: Types.ProductStatus;
805
+ description?: string | null;
806
+ pricingModel: Types.PricingModel;
807
+ price: number;
808
+ currency: string;
809
+ icon?: string | null;
810
+ screenshots: Array<string>;
811
+ rating?: number | null;
812
+ reviewCount: number;
813
+ downloads: number;
814
+ featured: boolean;
815
+ category?: string | null;
816
+ tags: Array<string>;
817
+ publishedAt?: string | null;
818
+ publisher?: {
819
+ __typename?: 'Publisher';
820
+ id: string;
821
+ name: string;
822
+ isVerified: boolean;
823
+ logoUrl?: string | null;
824
+ } | null;
825
+ }>;
826
+ recentlyAdded: Array<{
827
+ __typename?: 'StoreProduct';
828
+ id: string;
829
+ name: string;
830
+ slug: string;
831
+ type: Types.ProductType;
832
+ nature: Types.ProductNature;
833
+ status: Types.ProductStatus;
834
+ description?: string | null;
835
+ pricingModel: Types.PricingModel;
836
+ price: number;
837
+ currency: string;
838
+ icon?: string | null;
839
+ screenshots: Array<string>;
840
+ rating?: number | null;
841
+ reviewCount: number;
842
+ downloads: number;
843
+ featured: boolean;
844
+ category?: string | null;
845
+ tags: Array<string>;
846
+ publishedAt?: string | null;
847
+ publisher?: {
848
+ __typename?: 'Publisher';
849
+ id: string;
850
+ name: string;
851
+ isVerified: boolean;
852
+ logoUrl?: string | null;
853
+ } | null;
854
+ }>;
855
+ freeItems: Array<{
856
+ __typename?: 'StoreProduct';
857
+ id: string;
858
+ name: string;
859
+ slug: string;
860
+ type: Types.ProductType;
861
+ nature: Types.ProductNature;
862
+ status: Types.ProductStatus;
863
+ description?: string | null;
864
+ pricingModel: Types.PricingModel;
865
+ price: number;
866
+ currency: string;
867
+ icon?: string | null;
868
+ screenshots: Array<string>;
869
+ rating?: number | null;
870
+ reviewCount: number;
871
+ downloads: number;
872
+ featured: boolean;
873
+ category?: string | null;
874
+ tags: Array<string>;
875
+ publishedAt?: string | null;
876
+ publisher?: {
877
+ __typename?: 'Publisher';
878
+ id: string;
879
+ name: string;
880
+ isVerified: boolean;
881
+ logoUrl?: string | null;
882
+ } | null;
883
+ }>;
884
+ };
885
+ };
886
+ export type StoreProductDetailsQueryVariables = Types.Exact<{
887
+ input: Types.StoreProductDetailsInput;
888
+ }>;
889
+ export type StoreProductDetailsQuery = {
890
+ __typename?: 'Query';
891
+ storeProductDetails: {
892
+ __typename?: 'StoreProductDetailsResult';
893
+ reviewsCount: number;
894
+ isPurchased: boolean;
895
+ product: {
896
+ __typename?: 'StoreProduct';
897
+ id: string;
898
+ name: string;
899
+ slug: string;
900
+ type: Types.ProductType;
901
+ nature: Types.ProductNature;
902
+ status: Types.ProductStatus;
903
+ description?: string | null;
904
+ longDescription?: string | null;
905
+ pricingModel: Types.PricingModel;
906
+ price: number;
907
+ currency: string;
908
+ icon?: string | null;
909
+ bannerUrl?: string | null;
910
+ screenshots: Array<string>;
911
+ videoUrls: Array<string>;
912
+ documentationUrl?: string | null;
913
+ repositoryUrl?: string | null;
914
+ rating?: number | null;
915
+ reviewCount: number;
916
+ downloads: number;
917
+ viewCount: number;
918
+ featured: boolean;
919
+ category?: string | null;
920
+ tags: Array<string>;
921
+ publishedAt?: string | null;
922
+ createdAt: string;
923
+ updatedAt: string;
924
+ subType?: string | null;
925
+ manifestVersion?: string | null;
926
+ authorName?: string | null;
927
+ productId?: string | null;
928
+ license?: string | null;
929
+ minPlatformVersion?: string | null;
930
+ compatibleProducts: Array<string>;
931
+ requiredPermissions: Array<string>;
932
+ integrationDeps: Array<string>;
933
+ manifest?: Record<string, unknown> | null;
934
+ publisher?: {
935
+ __typename?: 'Publisher';
936
+ id: string;
937
+ name: string;
938
+ isVerified: boolean;
939
+ logoUrl?: string | null;
940
+ websiteUrl?: string | null;
941
+ bio?: string | null;
942
+ email: string;
943
+ } | null;
944
+ };
945
+ publisher?: {
946
+ __typename?: 'Publisher';
947
+ id: string;
948
+ name: string;
949
+ isVerified: boolean;
950
+ logoUrl?: string | null;
951
+ websiteUrl?: string | null;
952
+ bio?: string | null;
953
+ email: string;
954
+ } | null;
955
+ relatedProducts: Array<{
956
+ __typename?: 'StoreProduct';
957
+ id: string;
958
+ name: string;
959
+ slug: string;
960
+ type: Types.ProductType;
961
+ nature: Types.ProductNature;
962
+ status: Types.ProductStatus;
963
+ description?: string | null;
964
+ icon?: string | null;
965
+ rating?: number | null;
966
+ reviewCount: number;
967
+ downloads: number;
968
+ price: number;
969
+ pricingModel: Types.PricingModel;
970
+ currency: string;
971
+ screenshots: Array<string>;
972
+ featured: boolean;
973
+ category?: string | null;
974
+ tags: Array<string>;
975
+ publishedAt?: string | null;
976
+ publisher?: {
977
+ __typename?: 'Publisher';
978
+ id: string;
979
+ name: string;
980
+ isVerified: boolean;
981
+ logoUrl?: string | null;
982
+ } | null;
983
+ }>;
984
+ reviews: Array<{
985
+ __typename?: 'ProductReview';
986
+ id: string;
987
+ userId: string;
988
+ rating: number;
989
+ title?: string | null;
990
+ comment?: string | null;
991
+ status: Types.ReviewStatus;
992
+ helpful: number;
993
+ createdAt: string;
994
+ updatedAt: string;
995
+ }>;
996
+ userReview?: {
997
+ __typename?: 'ProductReview';
998
+ id: string;
999
+ userId: string;
1000
+ rating: number;
1001
+ title?: string | null;
1002
+ comment?: string | null;
1003
+ status: Types.ReviewStatus;
1004
+ helpful: number;
1005
+ createdAt: string;
1006
+ updatedAt: string;
1007
+ } | null;
1008
+ userEntitlement?: {
1009
+ __typename?: 'ProductEntitlement';
1010
+ id: string;
1011
+ status: Types.EntitlementStatus;
1012
+ licenseKey?: string | null;
1013
+ expiresAt?: string | null;
1014
+ } | null;
1015
+ ratingDistribution?: {
1016
+ __typename?: 'ProductRatingDistribution';
1017
+ fiveStars: number;
1018
+ fourStars: number;
1019
+ threeStars: number;
1020
+ twoStars: number;
1021
+ oneStar: number;
1022
+ } | null;
1023
+ };
1024
+ };
1025
+ export type InstallationStatusUpdatedSubscriptionVariables = Types.Exact<{
1026
+ workspaceId: Types.Scalars['ID']['input'];
1027
+ }>;
1028
+ export type InstallationStatusUpdatedSubscription = {
1029
+ __typename?: 'Subscription';
1030
+ installationStatusUpdated?: {
1031
+ __typename?: 'InstallationStatusUpdatedEvent';
1032
+ installationId: string;
1033
+ productId: string;
1034
+ workspaceId: string;
1035
+ status: string;
1036
+ updatedAt: string;
1037
+ } | null;
1038
+ };
1039
+ export type LicenseStatusUpdatedSubscriptionVariables = Types.Exact<{
1040
+ workspaceId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
1041
+ }>;
1042
+ export type LicenseStatusUpdatedSubscription = {
1043
+ __typename?: 'Subscription';
1044
+ licenseStatusUpdated?: {
1045
+ __typename?: 'LicenseStatusUpdatedEvent';
1046
+ entitlementId: string;
1047
+ productId: string;
1048
+ status: string;
1049
+ updatedAt: string;
1050
+ } | null;
1051
+ };
1052
+ export type OrderStatusUpdatedSubscriptionVariables = Types.Exact<{
1053
+ orderId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
1054
+ workspaceId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
1055
+ }>;
1056
+ export type OrderStatusUpdatedSubscription = {
1057
+ __typename?: 'Subscription';
1058
+ orderStatusUpdated?: {
1059
+ __typename?: 'OrderStatusUpdatedEvent';
1060
+ orderId: string;
1061
+ workspaceId?: string | null;
1062
+ status: string;
1063
+ updatedAt: string;
1064
+ } | null;
1065
+ };
1066
+ export type SubmissionStatusUpdatedSubscriptionVariables = Types.Exact<{
1067
+ publisherId: Types.Scalars['ID']['input'];
1068
+ }>;
1069
+ export type SubmissionStatusUpdatedSubscription = {
1070
+ __typename?: 'Subscription';
1071
+ submissionStatusUpdated?: {
1072
+ __typename?: 'SubmissionStatusUpdatedEvent';
1073
+ submissionId: string;
1074
+ productId: string;
1075
+ publisherId: string;
1076
+ status: string;
1077
+ updatedAt: string;
1078
+ } | null;
1079
+ };
1080
+ export declare const CreateReviewDocument: Apollo.DocumentNode;
1081
+ export type CreateReviewMutationFn = Apollo.MutationFunction<Types.CreateReviewMutation, Types.CreateReviewMutationVariables>;
1082
+ /**
1083
+ * __useCreateReviewMutation__
1084
+ *
1085
+ * To run a mutation, you first call `useCreateReviewMutation` within a React component and pass it any options that fit your needs.
1086
+ * When your component renders, `useCreateReviewMutation` returns a tuple that includes:
1087
+ * - A mutate function that you can call at any time to execute the mutation
1088
+ * - An object with fields that represent the current status of the mutation's execution
1089
+ *
1090
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1091
+ *
1092
+ * @example
1093
+ * const [createReviewMutation, { data, loading, error }] = useCreateReviewMutation({
1094
+ * variables: {
1095
+ * input: // value for 'input'
1096
+ * },
1097
+ * });
1098
+ */
1099
+ export declare function useCreateReviewMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateReviewMutation, Types.CreateReviewMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateReviewMutation, any, Apollo.ApolloCache, undefined>;
1100
+ export type CreateReviewMutationHookResult = ReturnType<typeof useCreateReviewMutation>;
1101
+ export type CreateReviewMutationResult = Apollo.MutationResult<Types.CreateReviewMutation>;
1102
+ export type CreateReviewMutationOptions = Apollo.BaseMutationOptions<Types.CreateReviewMutation, Types.CreateReviewMutationVariables>;
1103
+ export declare const DeleteReviewDocument: Apollo.DocumentNode;
1104
+ export type DeleteReviewMutationFn = Apollo.MutationFunction<Types.DeleteReviewMutation, Types.DeleteReviewMutationVariables>;
1105
+ /**
1106
+ * __useDeleteReviewMutation__
1107
+ *
1108
+ * To run a mutation, you first call `useDeleteReviewMutation` within a React component and pass it any options that fit your needs.
1109
+ * When your component renders, `useDeleteReviewMutation` returns a tuple that includes:
1110
+ * - A mutate function that you can call at any time to execute the mutation
1111
+ * - An object with fields that represent the current status of the mutation's execution
1112
+ *
1113
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1114
+ *
1115
+ * @example
1116
+ * const [deleteReviewMutation, { data, loading, error }] = useDeleteReviewMutation({
1117
+ * variables: {
1118
+ * id: // value for 'id'
1119
+ * },
1120
+ * });
1121
+ */
1122
+ export declare function useDeleteReviewMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteReviewMutation, Types.DeleteReviewMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteReviewMutation, any, Apollo.ApolloCache, undefined>;
1123
+ export type DeleteReviewMutationHookResult = ReturnType<typeof useDeleteReviewMutation>;
1124
+ export type DeleteReviewMutationResult = Apollo.MutationResult<Types.DeleteReviewMutation>;
1125
+ export type DeleteReviewMutationOptions = Apollo.BaseMutationOptions<Types.DeleteReviewMutation, Types.DeleteReviewMutationVariables>;
1126
+ export declare const MarkReviewHelpfulDocument: Apollo.DocumentNode;
1127
+ export type MarkReviewHelpfulMutationFn = Apollo.MutationFunction<Types.MarkReviewHelpfulMutation, Types.MarkReviewHelpfulMutationVariables>;
1128
+ /**
1129
+ * __useMarkReviewHelpfulMutation__
1130
+ *
1131
+ * To run a mutation, you first call `useMarkReviewHelpfulMutation` within a React component and pass it any options that fit your needs.
1132
+ * When your component renders, `useMarkReviewHelpfulMutation` returns a tuple that includes:
1133
+ * - A mutate function that you can call at any time to execute the mutation
1134
+ * - An object with fields that represent the current status of the mutation's execution
1135
+ *
1136
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1137
+ *
1138
+ * @example
1139
+ * const [markReviewHelpfulMutation, { data, loading, error }] = useMarkReviewHelpfulMutation({
1140
+ * variables: {
1141
+ * id: // value for 'id'
1142
+ * },
1143
+ * });
1144
+ */
1145
+ export declare function useMarkReviewHelpfulMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.MarkReviewHelpfulMutation, Types.MarkReviewHelpfulMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.MarkReviewHelpfulMutation, any, Apollo.ApolloCache, undefined>;
1146
+ export type MarkReviewHelpfulMutationHookResult = ReturnType<typeof useMarkReviewHelpfulMutation>;
1147
+ export type MarkReviewHelpfulMutationResult = Apollo.MutationResult<Types.MarkReviewHelpfulMutation>;
1148
+ export type MarkReviewHelpfulMutationOptions = Apollo.BaseMutationOptions<Types.MarkReviewHelpfulMutation, Types.MarkReviewHelpfulMutationVariables>;
1149
+ export declare const UpdateReviewDocument: Apollo.DocumentNode;
1150
+ export type UpdateReviewMutationFn = Apollo.MutationFunction<Types.UpdateReviewMutation, Types.UpdateReviewMutationVariables>;
1151
+ /**
1152
+ * __useUpdateReviewMutation__
1153
+ *
1154
+ * To run a mutation, you first call `useUpdateReviewMutation` within a React component and pass it any options that fit your needs.
1155
+ * When your component renders, `useUpdateReviewMutation` returns a tuple that includes:
1156
+ * - A mutate function that you can call at any time to execute the mutation
1157
+ * - An object with fields that represent the current status of the mutation's execution
1158
+ *
1159
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1160
+ *
1161
+ * @example
1162
+ * const [updateReviewMutation, { data, loading, error }] = useUpdateReviewMutation({
1163
+ * variables: {
1164
+ * id: // value for 'id'
1165
+ * input: // value for 'input'
1166
+ * },
1167
+ * });
1168
+ */
1169
+ export declare function useUpdateReviewMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateReviewMutation, Types.UpdateReviewMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateReviewMutation, any, Apollo.ApolloCache, undefined>;
1170
+ export type UpdateReviewMutationHookResult = ReturnType<typeof useUpdateReviewMutation>;
1171
+ export type UpdateReviewMutationResult = Apollo.MutationResult<Types.UpdateReviewMutation>;
1172
+ export type UpdateReviewMutationOptions = Apollo.BaseMutationOptions<Types.UpdateReviewMutation, Types.UpdateReviewMutationVariables>;
1173
+ export declare const AddToCartDocument: Apollo.DocumentNode;
1174
+ export type AddToCartMutationFn = Apollo.MutationFunction<Types.AddToCartMutation, Types.AddToCartMutationVariables>;
1175
+ /**
1176
+ * __useAddToCartMutation__
1177
+ *
1178
+ * To run a mutation, you first call `useAddToCartMutation` within a React component and pass it any options that fit your needs.
1179
+ * When your component renders, `useAddToCartMutation` returns a tuple that includes:
1180
+ * - A mutate function that you can call at any time to execute the mutation
1181
+ * - An object with fields that represent the current status of the mutation's execution
1182
+ *
1183
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1184
+ *
1185
+ * @example
1186
+ * const [addToCartMutation, { data, loading, error }] = useAddToCartMutation({
1187
+ * variables: {
1188
+ * input: // value for 'input'
1189
+ * },
1190
+ * });
1191
+ */
1192
+ export declare function useAddToCartMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddToCartMutation, Types.AddToCartMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AddToCartMutation, any, Apollo.ApolloCache, undefined>;
1193
+ export type AddToCartMutationHookResult = ReturnType<typeof useAddToCartMutation>;
1194
+ export type AddToCartMutationResult = Apollo.MutationResult<Types.AddToCartMutation>;
1195
+ export type AddToCartMutationOptions = Apollo.BaseMutationOptions<Types.AddToCartMutation, Types.AddToCartMutationVariables>;
1196
+ export declare const CheckoutDocument: Apollo.DocumentNode;
1197
+ export type CheckoutMutationFn = Apollo.MutationFunction<Types.CheckoutMutation, Types.CheckoutMutationVariables>;
1198
+ /**
1199
+ * __useCheckoutMutation__
1200
+ *
1201
+ * To run a mutation, you first call `useCheckoutMutation` within a React component and pass it any options that fit your needs.
1202
+ * When your component renders, `useCheckoutMutation` returns a tuple that includes:
1203
+ * - A mutate function that you can call at any time to execute the mutation
1204
+ * - An object with fields that represent the current status of the mutation's execution
1205
+ *
1206
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1207
+ *
1208
+ * @example
1209
+ * const [checkoutMutation, { data, loading, error }] = useCheckoutMutation({
1210
+ * variables: {
1211
+ * input: // value for 'input'
1212
+ * },
1213
+ * });
1214
+ */
1215
+ export declare function useCheckoutMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CheckoutMutation, Types.CheckoutMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CheckoutMutation, any, Apollo.ApolloCache, undefined>;
1216
+ export type CheckoutMutationHookResult = ReturnType<typeof useCheckoutMutation>;
1217
+ export type CheckoutMutationResult = Apollo.MutationResult<Types.CheckoutMutation>;
1218
+ export type CheckoutMutationOptions = Apollo.BaseMutationOptions<Types.CheckoutMutation, Types.CheckoutMutationVariables>;
1219
+ export declare const ClearCartDocument: Apollo.DocumentNode;
1220
+ export type ClearCartMutationFn = Apollo.MutationFunction<Types.ClearCartMutation, Types.ClearCartMutationVariables>;
1221
+ /**
1222
+ * __useClearCartMutation__
1223
+ *
1224
+ * To run a mutation, you first call `useClearCartMutation` within a React component and pass it any options that fit your needs.
1225
+ * When your component renders, `useClearCartMutation` returns a tuple that includes:
1226
+ * - A mutate function that you can call at any time to execute the mutation
1227
+ * - An object with fields that represent the current status of the mutation's execution
1228
+ *
1229
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1230
+ *
1231
+ * @example
1232
+ * const [clearCartMutation, { data, loading, error }] = useClearCartMutation({
1233
+ * variables: {
1234
+ * },
1235
+ * });
1236
+ */
1237
+ export declare function useClearCartMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ClearCartMutation, Types.ClearCartMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ClearCartMutation, any, Apollo.ApolloCache, undefined>;
1238
+ export type ClearCartMutationHookResult = ReturnType<typeof useClearCartMutation>;
1239
+ export type ClearCartMutationResult = Apollo.MutationResult<Types.ClearCartMutation>;
1240
+ export type ClearCartMutationOptions = Apollo.BaseMutationOptions<Types.ClearCartMutation, Types.ClearCartMutationVariables>;
1241
+ export declare const CreateProductForPublisherDocument: Apollo.DocumentNode;
1242
+ export type CreateProductForPublisherMutationFn = Apollo.MutationFunction<Types.CreateProductForPublisherMutation, Types.CreateProductForPublisherMutationVariables>;
1243
+ /**
1244
+ * __useCreateProductForPublisherMutation__
1245
+ *
1246
+ * To run a mutation, you first call `useCreateProductForPublisherMutation` within a React component and pass it any options that fit your needs.
1247
+ * When your component renders, `useCreateProductForPublisherMutation` returns a tuple that includes:
1248
+ * - A mutate function that you can call at any time to execute the mutation
1249
+ * - An object with fields that represent the current status of the mutation's execution
1250
+ *
1251
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1252
+ *
1253
+ * @example
1254
+ * const [createProductForPublisherMutation, { data, loading, error }] = useCreateProductForPublisherMutation({
1255
+ * variables: {
1256
+ * input: // value for 'input'
1257
+ * },
1258
+ * });
1259
+ */
1260
+ export declare function useCreateProductForPublisherMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateProductForPublisherMutation, Types.CreateProductForPublisherMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateProductForPublisherMutation, any, Apollo.ApolloCache, undefined>;
1261
+ export type CreateProductForPublisherMutationHookResult = ReturnType<typeof useCreateProductForPublisherMutation>;
1262
+ export type CreateProductForPublisherMutationResult = Apollo.MutationResult<Types.CreateProductForPublisherMutation>;
1263
+ export type CreateProductForPublisherMutationOptions = Apollo.BaseMutationOptions<Types.CreateProductForPublisherMutation, Types.CreateProductForPublisherMutationVariables>;
1264
+ export declare const CreateStoreOrderDocument: Apollo.DocumentNode;
1265
+ export type CreateStoreOrderMutationFn = Apollo.MutationFunction<Types.CreateStoreOrderMutation, Types.CreateStoreOrderMutationVariables>;
1266
+ /**
1267
+ * __useCreateStoreOrderMutation__
1268
+ *
1269
+ * To run a mutation, you first call `useCreateStoreOrderMutation` within a React component and pass it any options that fit your needs.
1270
+ * When your component renders, `useCreateStoreOrderMutation` returns a tuple that includes:
1271
+ * - A mutate function that you can call at any time to execute the mutation
1272
+ * - An object with fields that represent the current status of the mutation's execution
1273
+ *
1274
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1275
+ *
1276
+ * @example
1277
+ * const [createStoreOrderMutation, { data, loading, error }] = useCreateStoreOrderMutation({
1278
+ * variables: {
1279
+ * input: // value for 'input'
1280
+ * },
1281
+ * });
1282
+ */
1283
+ export declare function useCreateStoreOrderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateStoreOrderMutation, Types.CreateStoreOrderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateStoreOrderMutation, any, Apollo.ApolloCache, undefined>;
1284
+ export type CreateStoreOrderMutationHookResult = ReturnType<typeof useCreateStoreOrderMutation>;
1285
+ export type CreateStoreOrderMutationResult = Apollo.MutationResult<Types.CreateStoreOrderMutation>;
1286
+ export type CreateStoreOrderMutationOptions = Apollo.BaseMutationOptions<Types.CreateStoreOrderMutation, Types.CreateStoreOrderMutationVariables>;
1287
+ export declare const RemoveFromCartDocument: Apollo.DocumentNode;
1288
+ export type RemoveFromCartMutationFn = Apollo.MutationFunction<Types.RemoveFromCartMutation, Types.RemoveFromCartMutationVariables>;
1289
+ /**
1290
+ * __useRemoveFromCartMutation__
1291
+ *
1292
+ * To run a mutation, you first call `useRemoveFromCartMutation` within a React component and pass it any options that fit your needs.
1293
+ * When your component renders, `useRemoveFromCartMutation` returns a tuple that includes:
1294
+ * - A mutate function that you can call at any time to execute the mutation
1295
+ * - An object with fields that represent the current status of the mutation's execution
1296
+ *
1297
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1298
+ *
1299
+ * @example
1300
+ * const [removeFromCartMutation, { data, loading, error }] = useRemoveFromCartMutation({
1301
+ * variables: {
1302
+ * cartItemId: // value for 'cartItemId'
1303
+ * },
1304
+ * });
1305
+ */
1306
+ export declare function useRemoveFromCartMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RemoveFromCartMutation, Types.RemoveFromCartMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.RemoveFromCartMutation, any, Apollo.ApolloCache, undefined>;
1307
+ export type RemoveFromCartMutationHookResult = ReturnType<typeof useRemoveFromCartMutation>;
1308
+ export type RemoveFromCartMutationResult = Apollo.MutationResult<Types.RemoveFromCartMutation>;
1309
+ export type RemoveFromCartMutationOptions = Apollo.BaseMutationOptions<Types.RemoveFromCartMutation, Types.RemoveFromCartMutationVariables>;
1310
+ export declare const RecordAppUninstallationDocument: Apollo.DocumentNode;
1311
+ export type RecordAppUninstallationMutationFn = Apollo.MutationFunction<Types.RecordAppUninstallationMutation, Types.RecordAppUninstallationMutationVariables>;
1312
+ /**
1313
+ * __useRecordAppUninstallationMutation__
1314
+ *
1315
+ * To run a mutation, you first call `useRecordAppUninstallationMutation` within a React component and pass it any options that fit your needs.
1316
+ * When your component renders, `useRecordAppUninstallationMutation` returns a tuple that includes:
1317
+ * - A mutate function that you can call at any time to execute the mutation
1318
+ * - An object with fields that represent the current status of the mutation's execution
1319
+ *
1320
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1321
+ *
1322
+ * @example
1323
+ * const [recordAppUninstallationMutation, { data, loading, error }] = useRecordAppUninstallationMutation({
1324
+ * variables: {
1325
+ * workspaceId: // value for 'workspaceId'
1326
+ * productId: // value for 'productId'
1327
+ * },
1328
+ * });
1329
+ */
1330
+ export declare function useRecordAppUninstallationMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RecordAppUninstallationMutation, Types.RecordAppUninstallationMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.RecordAppUninstallationMutation, any, Apollo.ApolloCache, undefined>;
1331
+ export type RecordAppUninstallationMutationHookResult = ReturnType<typeof useRecordAppUninstallationMutation>;
1332
+ export type RecordAppUninstallationMutationResult = Apollo.MutationResult<Types.RecordAppUninstallationMutation>;
1333
+ export type RecordAppUninstallationMutationOptions = Apollo.BaseMutationOptions<Types.RecordAppUninstallationMutation, Types.RecordAppUninstallationMutationVariables>;
1334
+ export declare const UpdateCartItemDocument: Apollo.DocumentNode;
1335
+ export type UpdateCartItemMutationFn = Apollo.MutationFunction<Types.UpdateCartItemMutation, Types.UpdateCartItemMutationVariables>;
1336
+ /**
1337
+ * __useUpdateCartItemMutation__
1338
+ *
1339
+ * To run a mutation, you first call `useUpdateCartItemMutation` within a React component and pass it any options that fit your needs.
1340
+ * When your component renders, `useUpdateCartItemMutation` returns a tuple that includes:
1341
+ * - A mutate function that you can call at any time to execute the mutation
1342
+ * - An object with fields that represent the current status of the mutation's execution
1343
+ *
1344
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1345
+ *
1346
+ * @example
1347
+ * const [updateCartItemMutation, { data, loading, error }] = useUpdateCartItemMutation({
1348
+ * variables: {
1349
+ * input: // value for 'input'
1350
+ * },
1351
+ * });
1352
+ */
1353
+ export declare function useUpdateCartItemMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateCartItemMutation, Types.UpdateCartItemMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateCartItemMutation, any, Apollo.ApolloCache, undefined>;
1354
+ export type UpdateCartItemMutationHookResult = ReturnType<typeof useUpdateCartItemMutation>;
1355
+ export type UpdateCartItemMutationResult = Apollo.MutationResult<Types.UpdateCartItemMutation>;
1356
+ export type UpdateCartItemMutationOptions = Apollo.BaseMutationOptions<Types.UpdateCartItemMutation, Types.UpdateCartItemMutationVariables>;
1357
+ export declare const CategoriesDocument: Apollo.DocumentNode;
1358
+ /**
1359
+ * __useCategoriesQuery__
1360
+ *
1361
+ * To run a query within a React component, call `useCategoriesQuery` and pass it any options that fit your needs.
1362
+ * When your component renders, `useCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1363
+ * you can use to render your UI.
1364
+ *
1365
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1366
+ *
1367
+ * @example
1368
+ * const { data, loading, error } = useCategoriesQuery({
1369
+ * variables: {
1370
+ * },
1371
+ * });
1372
+ */
1373
+ export declare function useCategoriesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.CategoriesQuery, Types.CategoriesQueryVariables, "empty" | "complete" | "streaming", Types.CategoriesQueryVariables>;
1374
+ export declare function useCategoriesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.CategoriesQuery, Types.CategoriesQueryVariables, "empty" | "complete" | "streaming">;
1375
+ export declare function useCategoriesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CategoriesQuery, Types.CategoriesQueryVariables>;
1376
+ export declare function useCategoriesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CategoriesQuery | undefined, Types.CategoriesQueryVariables>;
1377
+ export type CategoriesQueryHookResult = ReturnType<typeof useCategoriesQuery>;
1378
+ export type CategoriesLazyQueryHookResult = ReturnType<typeof useCategoriesLazyQuery>;
1379
+ export type CategoriesSuspenseQueryHookResult = ReturnType<typeof useCategoriesSuspenseQuery>;
1380
+ export type CategoriesQueryResult = Apollo.QueryResult<Types.CategoriesQuery, Types.CategoriesQueryVariables>;
1381
+ export declare const CheckEntitlementDocument: Apollo.DocumentNode;
1382
+ /**
1383
+ * __useCheckEntitlementQuery__
1384
+ *
1385
+ * To run a query within a React component, call `useCheckEntitlementQuery` and pass it any options that fit your needs.
1386
+ * When your component renders, `useCheckEntitlementQuery` returns an object from Apollo Client that contains loading, error, and data properties
1387
+ * you can use to render your UI.
1388
+ *
1389
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1390
+ *
1391
+ * @example
1392
+ * const { data, loading, error } = useCheckEntitlementQuery({
1393
+ * variables: {
1394
+ * productId: // value for 'productId'
1395
+ * },
1396
+ * });
1397
+ */
1398
+ export declare function useCheckEntitlementQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables> & ({
1399
+ variables: Types.CheckEntitlementQueryVariables;
1400
+ skip?: boolean;
1401
+ } | {
1402
+ skip: boolean;
1403
+ })): ApolloReactHooks.useQuery.Result<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables, "empty" | "complete" | "streaming", Types.CheckEntitlementQueryVariables>;
1404
+ export declare function useCheckEntitlementLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables, "empty" | "complete" | "streaming">;
1405
+ export declare function useCheckEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>;
1406
+ export declare function useCheckEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckEntitlementQuery | undefined, Types.CheckEntitlementQueryVariables>;
1407
+ export type CheckEntitlementQueryHookResult = ReturnType<typeof useCheckEntitlementQuery>;
1408
+ export type CheckEntitlementLazyQueryHookResult = ReturnType<typeof useCheckEntitlementLazyQuery>;
1409
+ export type CheckEntitlementSuspenseQueryHookResult = ReturnType<typeof useCheckEntitlementSuspenseQuery>;
1410
+ export type CheckEntitlementQueryResult = Apollo.QueryResult<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>;
1411
+ export declare const DeveloperEarningsDocument: Apollo.DocumentNode;
1412
+ /**
1413
+ * __useDeveloperEarningsQuery__
1414
+ *
1415
+ * To run a query within a React component, call `useDeveloperEarningsQuery` and pass it any options that fit your needs.
1416
+ * When your component renders, `useDeveloperEarningsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1417
+ * you can use to render your UI.
1418
+ *
1419
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1420
+ *
1421
+ * @example
1422
+ * const { data, loading, error } = useDeveloperEarningsQuery({
1423
+ * variables: {
1424
+ * input: // value for 'input'
1425
+ * },
1426
+ * });
1427
+ */
1428
+ export declare function useDeveloperEarningsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables, "empty" | "complete" | "streaming", Types.DeveloperEarningsQueryVariables>;
1429
+ export declare function useDeveloperEarningsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables, "empty" | "complete" | "streaming">;
1430
+ export declare function useDeveloperEarningsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>;
1431
+ export declare function useDeveloperEarningsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.DeveloperEarningsQuery | undefined, Types.DeveloperEarningsQueryVariables>;
1432
+ export type DeveloperEarningsQueryHookResult = ReturnType<typeof useDeveloperEarningsQuery>;
1433
+ export type DeveloperEarningsLazyQueryHookResult = ReturnType<typeof useDeveloperEarningsLazyQuery>;
1434
+ export type DeveloperEarningsSuspenseQueryHookResult = ReturnType<typeof useDeveloperEarningsSuspenseQuery>;
1435
+ export type DeveloperEarningsQueryResult = Apollo.QueryResult<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>;
1436
+ export declare const FeaturedProductsDocument: Apollo.DocumentNode;
1437
+ /**
1438
+ * __useFeaturedProductsQuery__
1439
+ *
1440
+ * To run a query within a React component, call `useFeaturedProductsQuery` and pass it any options that fit your needs.
1441
+ * When your component renders, `useFeaturedProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1442
+ * you can use to render your UI.
1443
+ *
1444
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1445
+ *
1446
+ * @example
1447
+ * const { data, loading, error } = useFeaturedProductsQuery({
1448
+ * variables: {
1449
+ * limit: // value for 'limit'
1450
+ * },
1451
+ * });
1452
+ */
1453
+ export declare function useFeaturedProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables, "empty" | "complete" | "streaming", Types.FeaturedProductsQueryVariables>;
1454
+ export declare function useFeaturedProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables, "empty" | "complete" | "streaming">;
1455
+ export declare function useFeaturedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>;
1456
+ export declare function useFeaturedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FeaturedProductsQuery | undefined, Types.FeaturedProductsQueryVariables>;
1457
+ export type FeaturedProductsQueryHookResult = ReturnType<typeof useFeaturedProductsQuery>;
1458
+ export type FeaturedProductsLazyQueryHookResult = ReturnType<typeof useFeaturedProductsLazyQuery>;
1459
+ export type FeaturedProductsSuspenseQueryHookResult = ReturnType<typeof useFeaturedProductsSuspenseQuery>;
1460
+ export type FeaturedProductsQueryResult = Apollo.QueryResult<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>;
1461
+ export declare const FilterOptionsDocument: Apollo.DocumentNode;
1462
+ /**
1463
+ * __useFilterOptionsQuery__
1464
+ *
1465
+ * To run a query within a React component, call `useFilterOptionsQuery` and pass it any options that fit your needs.
1466
+ * When your component renders, `useFilterOptionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1467
+ * you can use to render your UI.
1468
+ *
1469
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1470
+ *
1471
+ * @example
1472
+ * const { data, loading, error } = useFilterOptionsQuery({
1473
+ * variables: {
1474
+ * type: // value for 'type'
1475
+ * },
1476
+ * });
1477
+ */
1478
+ export declare function useFilterOptionsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables, "empty" | "complete" | "streaming", Types.FilterOptionsQueryVariables>;
1479
+ export declare function useFilterOptionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables, "empty" | "complete" | "streaming">;
1480
+ export declare function useFilterOptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>;
1481
+ export declare function useFilterOptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FilterOptionsQuery | undefined, Types.FilterOptionsQueryVariables>;
1482
+ export type FilterOptionsQueryHookResult = ReturnType<typeof useFilterOptionsQuery>;
1483
+ export type FilterOptionsLazyQueryHookResult = ReturnType<typeof useFilterOptionsLazyQuery>;
1484
+ export type FilterOptionsSuspenseQueryHookResult = ReturnType<typeof useFilterOptionsSuspenseQuery>;
1485
+ export type FilterOptionsQueryResult = Apollo.QueryResult<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>;
1486
+ export declare const MyEntitlementsDocument: Apollo.DocumentNode;
1487
+ /**
1488
+ * __useMyEntitlementsQuery__
1489
+ *
1490
+ * To run a query within a React component, call `useMyEntitlementsQuery` and pass it any options that fit your needs.
1491
+ * When your component renders, `useMyEntitlementsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1492
+ * you can use to render your UI.
1493
+ *
1494
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1495
+ *
1496
+ * @example
1497
+ * const { data, loading, error } = useMyEntitlementsQuery({
1498
+ * variables: {
1499
+ * limit: // value for 'limit'
1500
+ * offset: // value for 'offset'
1501
+ * },
1502
+ * });
1503
+ */
1504
+ export declare function useMyEntitlementsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables, "empty" | "complete" | "streaming", Types.MyEntitlementsQueryVariables>;
1505
+ export declare function useMyEntitlementsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables, "empty" | "complete" | "streaming">;
1506
+ export declare function useMyEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>;
1507
+ export declare function useMyEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEntitlementsQuery | undefined, Types.MyEntitlementsQueryVariables>;
1508
+ export type MyEntitlementsQueryHookResult = ReturnType<typeof useMyEntitlementsQuery>;
1509
+ export type MyEntitlementsLazyQueryHookResult = ReturnType<typeof useMyEntitlementsLazyQuery>;
1510
+ export type MyEntitlementsSuspenseQueryHookResult = ReturnType<typeof useMyEntitlementsSuspenseQuery>;
1511
+ export type MyEntitlementsQueryResult = Apollo.QueryResult<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>;
1512
+ export declare const MyPublishedProductsDocument: Apollo.DocumentNode;
1513
+ /**
1514
+ * __useMyPublishedProductsQuery__
1515
+ *
1516
+ * To run a query within a React component, call `useMyPublishedProductsQuery` and pass it any options that fit your needs.
1517
+ * When your component renders, `useMyPublishedProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1518
+ * you can use to render your UI.
1519
+ *
1520
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1521
+ *
1522
+ * @example
1523
+ * const { data, loading, error } = useMyPublishedProductsQuery({
1524
+ * variables: {
1525
+ * limit: // value for 'limit'
1526
+ * offset: // value for 'offset'
1527
+ * },
1528
+ * });
1529
+ */
1530
+ export declare function useMyPublishedProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables, "empty" | "complete" | "streaming", Types.MyPublishedProductsQueryVariables>;
1531
+ export declare function useMyPublishedProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables, "empty" | "complete" | "streaming">;
1532
+ export declare function useMyPublishedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>;
1533
+ export declare function useMyPublishedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPublishedProductsQuery | undefined, Types.MyPublishedProductsQueryVariables>;
1534
+ export type MyPublishedProductsQueryHookResult = ReturnType<typeof useMyPublishedProductsQuery>;
1535
+ export type MyPublishedProductsLazyQueryHookResult = ReturnType<typeof useMyPublishedProductsLazyQuery>;
1536
+ export type MyPublishedProductsSuspenseQueryHookResult = ReturnType<typeof useMyPublishedProductsSuspenseQuery>;
1537
+ export type MyPublishedProductsQueryResult = Apollo.QueryResult<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>;
1538
+ export declare const ProductReviewsDocument: Apollo.DocumentNode;
1539
+ /**
1540
+ * __useProductReviewsQuery__
1541
+ *
1542
+ * To run a query within a React component, call `useProductReviewsQuery` and pass it any options that fit your needs.
1543
+ * When your component renders, `useProductReviewsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1544
+ * you can use to render your UI.
1545
+ *
1546
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1547
+ *
1548
+ * @example
1549
+ * const { data, loading, error } = useProductReviewsQuery({
1550
+ * variables: {
1551
+ * productId: // value for 'productId'
1552
+ * status: // value for 'status'
1553
+ * },
1554
+ * });
1555
+ */
1556
+ export declare function useProductReviewsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables> & ({
1557
+ variables: Types.ProductReviewsQueryVariables;
1558
+ skip?: boolean;
1559
+ } | {
1560
+ skip: boolean;
1561
+ })): ApolloReactHooks.useQuery.Result<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables, "empty" | "complete" | "streaming", Types.ProductReviewsQueryVariables>;
1562
+ export declare function useProductReviewsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables, "empty" | "complete" | "streaming">;
1563
+ export declare function useProductReviewsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>;
1564
+ export declare function useProductReviewsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ProductReviewsQuery | undefined, Types.ProductReviewsQueryVariables>;
1565
+ export type ProductReviewsQueryHookResult = ReturnType<typeof useProductReviewsQuery>;
1566
+ export type ProductReviewsLazyQueryHookResult = ReturnType<typeof useProductReviewsLazyQuery>;
1567
+ export type ProductReviewsSuspenseQueryHookResult = ReturnType<typeof useProductReviewsSuspenseQuery>;
1568
+ export type ProductReviewsQueryResult = Apollo.QueryResult<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>;
1569
+ export declare const SearchSuggestionsDocument: Apollo.DocumentNode;
1570
+ /**
1571
+ * __useSearchSuggestionsQuery__
1572
+ *
1573
+ * To run a query within a React component, call `useSearchSuggestionsQuery` and pass it any options that fit your needs.
1574
+ * When your component renders, `useSearchSuggestionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1575
+ * you can use to render your UI.
1576
+ *
1577
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1578
+ *
1579
+ * @example
1580
+ * const { data, loading, error } = useSearchSuggestionsQuery({
1581
+ * variables: {
1582
+ * query: // value for 'query'
1583
+ * limit: // value for 'limit'
1584
+ * },
1585
+ * });
1586
+ */
1587
+ export declare function useSearchSuggestionsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables> & ({
1588
+ variables: Types.SearchSuggestionsQueryVariables;
1589
+ skip?: boolean;
1590
+ } | {
1591
+ skip: boolean;
1592
+ })): ApolloReactHooks.useQuery.Result<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables, "empty" | "complete" | "streaming", Types.SearchSuggestionsQueryVariables>;
1593
+ export declare function useSearchSuggestionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables, "empty" | "complete" | "streaming">;
1594
+ export declare function useSearchSuggestionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>;
1595
+ export declare function useSearchSuggestionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.SearchSuggestionsQuery | undefined, Types.SearchSuggestionsQueryVariables>;
1596
+ export type SearchSuggestionsQueryHookResult = ReturnType<typeof useSearchSuggestionsQuery>;
1597
+ export type SearchSuggestionsLazyQueryHookResult = ReturnType<typeof useSearchSuggestionsLazyQuery>;
1598
+ export type SearchSuggestionsSuspenseQueryHookResult = ReturnType<typeof useSearchSuggestionsSuspenseQuery>;
1599
+ export type SearchSuggestionsQueryResult = Apollo.QueryResult<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>;
1600
+ export declare const TrendingSearchesDocument: Apollo.DocumentNode;
1601
+ /**
1602
+ * __useTrendingSearchesQuery__
1603
+ *
1604
+ * To run a query within a React component, call `useTrendingSearchesQuery` and pass it any options that fit your needs.
1605
+ * When your component renders, `useTrendingSearchesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1606
+ * you can use to render your UI.
1607
+ *
1608
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1609
+ *
1610
+ * @example
1611
+ * const { data, loading, error } = useTrendingSearchesQuery({
1612
+ * variables: {
1613
+ * limit: // value for 'limit'
1614
+ * },
1615
+ * });
1616
+ */
1617
+ export declare function useTrendingSearchesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables, "empty" | "complete" | "streaming", Types.TrendingSearchesQueryVariables>;
1618
+ export declare function useTrendingSearchesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables, "empty" | "complete" | "streaming">;
1619
+ export declare function useTrendingSearchesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>;
1620
+ export declare function useTrendingSearchesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.TrendingSearchesQuery | undefined, Types.TrendingSearchesQueryVariables>;
1621
+ export type TrendingSearchesQueryHookResult = ReturnType<typeof useTrendingSearchesQuery>;
1622
+ export type TrendingSearchesLazyQueryHookResult = ReturnType<typeof useTrendingSearchesLazyQuery>;
1623
+ export type TrendingSearchesSuspenseQueryHookResult = ReturnType<typeof useTrendingSearchesSuspenseQuery>;
1624
+ export type TrendingSearchesQueryResult = Apollo.QueryResult<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>;
1625
+ export declare const UserReviewForProductDocument: Apollo.DocumentNode;
1626
+ /**
1627
+ * __useUserReviewForProductQuery__
1628
+ *
1629
+ * To run a query within a React component, call `useUserReviewForProductQuery` and pass it any options that fit your needs.
1630
+ * When your component renders, `useUserReviewForProductQuery` returns an object from Apollo Client that contains loading, error, and data properties
1631
+ * you can use to render your UI.
1632
+ *
1633
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1634
+ *
1635
+ * @example
1636
+ * const { data, loading, error } = useUserReviewForProductQuery({
1637
+ * variables: {
1638
+ * productId: // value for 'productId'
1639
+ * },
1640
+ * });
1641
+ */
1642
+ export declare function useUserReviewForProductQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables> & ({
1643
+ variables: Types.UserReviewForProductQueryVariables;
1644
+ skip?: boolean;
1645
+ } | {
1646
+ skip: boolean;
1647
+ })): ApolloReactHooks.useQuery.Result<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables, "empty" | "complete" | "streaming", Types.UserReviewForProductQueryVariables>;
1648
+ export declare function useUserReviewForProductLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables, "empty" | "complete" | "streaming">;
1649
+ export declare function useUserReviewForProductSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>;
1650
+ export declare function useUserReviewForProductSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.UserReviewForProductQuery | undefined, Types.UserReviewForProductQueryVariables>;
1651
+ export type UserReviewForProductQueryHookResult = ReturnType<typeof useUserReviewForProductQuery>;
1652
+ export type UserReviewForProductLazyQueryHookResult = ReturnType<typeof useUserReviewForProductLazyQuery>;
1653
+ export type UserReviewForProductSuspenseQueryHookResult = ReturnType<typeof useUserReviewForProductSuspenseQuery>;
1654
+ export type UserReviewForProductQueryResult = Apollo.QueryResult<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>;
1655
+ export declare const WorkspaceStoreOrdersDocument: Apollo.DocumentNode;
1656
+ /**
1657
+ * __useWorkspaceStoreOrdersQuery__
1658
+ *
1659
+ * To run a query within a React component, call `useWorkspaceStoreOrdersQuery` and pass it any options that fit your needs.
1660
+ * When your component renders, `useWorkspaceStoreOrdersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1661
+ * you can use to render your UI.
1662
+ *
1663
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1664
+ *
1665
+ * @example
1666
+ * const { data, loading, error } = useWorkspaceStoreOrdersQuery({
1667
+ * variables: {
1668
+ * billingAccountId: // value for 'billingAccountId'
1669
+ * page: // value for 'page'
1670
+ * limit: // value for 'limit'
1671
+ * },
1672
+ * });
1673
+ */
1674
+ export declare function useWorkspaceStoreOrdersQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables> & ({
1675
+ variables: Types.WorkspaceStoreOrdersQueryVariables;
1676
+ skip?: boolean;
1677
+ } | {
1678
+ skip: boolean;
1679
+ })): ApolloReactHooks.useQuery.Result<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables, "empty" | "complete" | "streaming", Types.WorkspaceStoreOrdersQueryVariables>;
1680
+ export declare function useWorkspaceStoreOrdersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables, "empty" | "complete" | "streaming">;
1681
+ export declare function useWorkspaceStoreOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>;
1682
+ export declare function useWorkspaceStoreOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.WorkspaceStoreOrdersQuery | undefined, Types.WorkspaceStoreOrdersQueryVariables>;
1683
+ export type WorkspaceStoreOrdersQueryHookResult = ReturnType<typeof useWorkspaceStoreOrdersQuery>;
1684
+ export type WorkspaceStoreOrdersLazyQueryHookResult = ReturnType<typeof useWorkspaceStoreOrdersLazyQuery>;
1685
+ export type WorkspaceStoreOrdersSuspenseQueryHookResult = ReturnType<typeof useWorkspaceStoreOrdersSuspenseQuery>;
1686
+ export type WorkspaceStoreOrdersQueryResult = Apollo.QueryResult<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>;
1687
+ export declare const BrowseStoreDocument: Apollo.DocumentNode;
1688
+ /**
1689
+ * __useBrowseStoreQuery__
1690
+ *
1691
+ * To run a query within a React component, call `useBrowseStoreQuery` and pass it any options that fit your needs.
1692
+ * When your component renders, `useBrowseStoreQuery` returns an object from Apollo Client that contains loading, error, and data properties
1693
+ * you can use to render your UI.
1694
+ *
1695
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1696
+ *
1697
+ * @example
1698
+ * const { data, loading, error } = useBrowseStoreQuery({
1699
+ * variables: {
1700
+ * input: // value for 'input'
1701
+ * },
1702
+ * });
1703
+ */
1704
+ export declare function useBrowseStoreQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables> & ({
1705
+ variables: Types.BrowseStoreQueryVariables;
1706
+ skip?: boolean;
1707
+ } | {
1708
+ skip: boolean;
1709
+ })): ApolloReactHooks.useQuery.Result<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables, "empty" | "complete" | "streaming", Types.BrowseStoreQueryVariables>;
1710
+ export declare function useBrowseStoreLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables, "empty" | "complete" | "streaming">;
1711
+ export declare function useBrowseStoreSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>;
1712
+ export declare function useBrowseStoreSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.BrowseStoreQuery | undefined, Types.BrowseStoreQueryVariables>;
1713
+ export type BrowseStoreQueryHookResult = ReturnType<typeof useBrowseStoreQuery>;
1714
+ export type BrowseStoreLazyQueryHookResult = ReturnType<typeof useBrowseStoreLazyQuery>;
1715
+ export type BrowseStoreSuspenseQueryHookResult = ReturnType<typeof useBrowseStoreSuspenseQuery>;
1716
+ export type BrowseStoreQueryResult = Apollo.QueryResult<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>;
1717
+ export declare const GetCartDocument: Apollo.DocumentNode;
1718
+ /**
1719
+ * __useGetCartQuery__
1720
+ *
1721
+ * To run a query within a React component, call `useGetCartQuery` and pass it any options that fit your needs.
1722
+ * When your component renders, `useGetCartQuery` returns an object from Apollo Client that contains loading, error, and data properties
1723
+ * you can use to render your UI.
1724
+ *
1725
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1726
+ *
1727
+ * @example
1728
+ * const { data, loading, error } = useGetCartQuery({
1729
+ * variables: {
1730
+ * },
1731
+ * });
1732
+ */
1733
+ export declare function useGetCartQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetCartQuery, Types.GetCartQueryVariables, "empty" | "complete" | "streaming", Types.GetCartQueryVariables>;
1734
+ export declare function useGetCartLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetCartQuery, Types.GetCartQueryVariables, "empty" | "complete" | "streaming">;
1735
+ export declare function useGetCartSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCartQuery, Types.GetCartQueryVariables>;
1736
+ export declare function useGetCartSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCartQuery | undefined, Types.GetCartQueryVariables>;
1737
+ export type GetCartQueryHookResult = ReturnType<typeof useGetCartQuery>;
1738
+ export type GetCartLazyQueryHookResult = ReturnType<typeof useGetCartLazyQuery>;
1739
+ export type GetCartSuspenseQueryHookResult = ReturnType<typeof useGetCartSuspenseQuery>;
1740
+ export type GetCartQueryResult = Apollo.QueryResult<Types.GetCartQuery, Types.GetCartQueryVariables>;
1741
+ export declare const GetMyStoreInstallationsDocument: Apollo.DocumentNode;
1742
+ /**
1743
+ * __useGetMyStoreInstallationsQuery__
1744
+ *
1745
+ * To run a query within a React component, call `useGetMyStoreInstallationsQuery` and pass it any options that fit your needs.
1746
+ * When your component renders, `useGetMyStoreInstallationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1747
+ * you can use to render your UI.
1748
+ *
1749
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1750
+ *
1751
+ * @example
1752
+ * const { data, loading, error } = useGetMyStoreInstallationsQuery({
1753
+ * variables: {
1754
+ * limit: // value for 'limit'
1755
+ * offset: // value for 'offset'
1756
+ * filter: // value for 'filter'
1757
+ * },
1758
+ * });
1759
+ */
1760
+ export declare function useGetMyStoreInstallationsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables, "empty" | "complete" | "streaming", Types.GetMyStoreInstallationsQueryVariables>;
1761
+ export declare function useGetMyStoreInstallationsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables, "empty" | "complete" | "streaming">;
1762
+ export declare function useGetMyStoreInstallationsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>;
1763
+ export declare function useGetMyStoreInstallationsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyStoreInstallationsQuery | undefined, Types.GetMyStoreInstallationsQueryVariables>;
1764
+ export type GetMyStoreInstallationsQueryHookResult = ReturnType<typeof useGetMyStoreInstallationsQuery>;
1765
+ export type GetMyStoreInstallationsLazyQueryHookResult = ReturnType<typeof useGetMyStoreInstallationsLazyQuery>;
1766
+ export type GetMyStoreInstallationsSuspenseQueryHookResult = ReturnType<typeof useGetMyStoreInstallationsSuspenseQuery>;
1767
+ export type GetMyStoreInstallationsQueryResult = Apollo.QueryResult<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>;
1768
+ export declare const GetMyOrdersDocument: Apollo.DocumentNode;
1769
+ /**
1770
+ * __useGetMyOrdersQuery__
1771
+ *
1772
+ * To run a query within a React component, call `useGetMyOrdersQuery` and pass it any options that fit your needs.
1773
+ * When your component renders, `useGetMyOrdersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1774
+ * you can use to render your UI.
1775
+ *
1776
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1777
+ *
1778
+ * @example
1779
+ * const { data, loading, error } = useGetMyOrdersQuery({
1780
+ * variables: {
1781
+ * limit: // value for 'limit'
1782
+ * offset: // value for 'offset'
1783
+ * status: // value for 'status'
1784
+ * },
1785
+ * });
1786
+ */
1787
+ export declare function useGetMyOrdersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables, "empty" | "complete" | "streaming", Types.GetMyOrdersQueryVariables>;
1788
+ export declare function useGetMyOrdersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables, "empty" | "complete" | "streaming">;
1789
+ export declare function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>;
1790
+ export declare function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyOrdersQuery | undefined, Types.GetMyOrdersQueryVariables>;
1791
+ export type GetMyOrdersQueryHookResult = ReturnType<typeof useGetMyOrdersQuery>;
1792
+ export type GetMyOrdersLazyQueryHookResult = ReturnType<typeof useGetMyOrdersLazyQuery>;
1793
+ export type GetMyOrdersSuspenseQueryHookResult = ReturnType<typeof useGetMyOrdersSuspenseQuery>;
1794
+ export type GetMyOrdersQueryResult = Apollo.QueryResult<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>;
1795
+ export declare const GetProductDocument: Apollo.DocumentNode;
1796
+ /**
1797
+ * __useGetProductQuery__
1798
+ *
1799
+ * To run a query within a React component, call `useGetProductQuery` and pass it any options that fit your needs.
1800
+ * When your component renders, `useGetProductQuery` returns an object from Apollo Client that contains loading, error, and data properties
1801
+ * you can use to render your UI.
1802
+ *
1803
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1804
+ *
1805
+ * @example
1806
+ * const { data, loading, error } = useGetProductQuery({
1807
+ * variables: {
1808
+ * id: // value for 'id'
1809
+ * },
1810
+ * });
1811
+ */
1812
+ export declare function useGetProductQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables> & ({
1813
+ variables: Types.GetProductQueryVariables;
1814
+ skip?: boolean;
1815
+ } | {
1816
+ skip: boolean;
1817
+ })): ApolloReactHooks.useQuery.Result<Types.GetProductQuery, Types.GetProductQueryVariables, "empty" | "complete" | "streaming", Types.GetProductQueryVariables>;
1818
+ export declare function useGetProductLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetProductQuery, Types.GetProductQueryVariables, "empty" | "complete" | "streaming">;
1819
+ export declare function useGetProductSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductQuery, Types.GetProductQueryVariables>;
1820
+ export declare function useGetProductSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductQuery | undefined, Types.GetProductQueryVariables>;
1821
+ export type GetProductQueryHookResult = ReturnType<typeof useGetProductQuery>;
1822
+ export type GetProductLazyQueryHookResult = ReturnType<typeof useGetProductLazyQuery>;
1823
+ export type GetProductSuspenseQueryHookResult = ReturnType<typeof useGetProductSuspenseQuery>;
1824
+ export type GetProductQueryResult = Apollo.QueryResult<Types.GetProductQuery, Types.GetProductQueryVariables>;
1825
+ export declare const GetProductsDocument: Apollo.DocumentNode;
1826
+ /**
1827
+ * __useGetProductsQuery__
1828
+ *
1829
+ * To run a query within a React component, call `useGetProductsQuery` and pass it any options that fit your needs.
1830
+ * When your component renders, `useGetProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1831
+ * you can use to render your UI.
1832
+ *
1833
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1834
+ *
1835
+ * @example
1836
+ * const { data, loading, error } = useGetProductsQuery({
1837
+ * variables: {
1838
+ * filter: // value for 'filter'
1839
+ * limit: // value for 'limit'
1840
+ * offset: // value for 'offset'
1841
+ * },
1842
+ * });
1843
+ */
1844
+ export declare function useGetProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetProductsQuery, Types.GetProductsQueryVariables, "empty" | "complete" | "streaming", Types.GetProductsQueryVariables>;
1845
+ export declare function useGetProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetProductsQuery, Types.GetProductsQueryVariables, "empty" | "complete" | "streaming">;
1846
+ export declare function useGetProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductsQuery, Types.GetProductsQueryVariables>;
1847
+ export declare function useGetProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductsQuery | undefined, Types.GetProductsQueryVariables>;
1848
+ export type GetProductsQueryHookResult = ReturnType<typeof useGetProductsQuery>;
1849
+ export type GetProductsLazyQueryHookResult = ReturnType<typeof useGetProductsLazyQuery>;
1850
+ export type GetProductsSuspenseQueryHookResult = ReturnType<typeof useGetProductsSuspenseQuery>;
1851
+ export type GetProductsQueryResult = Apollo.QueryResult<Types.GetProductsQuery, Types.GetProductsQueryVariables>;
1852
+ export declare const GetStoreAppInstallationDocument: Apollo.DocumentNode;
1853
+ /**
1854
+ * __useGetStoreAppInstallationQuery__
1855
+ *
1856
+ * To run a query within a React component, call `useGetStoreAppInstallationQuery` and pass it any options that fit your needs.
1857
+ * When your component renders, `useGetStoreAppInstallationQuery` returns an object from Apollo Client that contains loading, error, and data properties
1858
+ * you can use to render your UI.
1859
+ *
1860
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1861
+ *
1862
+ * @example
1863
+ * const { data, loading, error } = useGetStoreAppInstallationQuery({
1864
+ * variables: {
1865
+ * id: // value for 'id'
1866
+ * },
1867
+ * });
1868
+ */
1869
+ export declare function useGetStoreAppInstallationQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables> & ({
1870
+ variables: Types.GetStoreAppInstallationQueryVariables;
1871
+ skip?: boolean;
1872
+ } | {
1873
+ skip: boolean;
1874
+ })): ApolloReactHooks.useQuery.Result<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables, "empty" | "complete" | "streaming", Types.GetStoreAppInstallationQueryVariables>;
1875
+ export declare function useGetStoreAppInstallationLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables, "empty" | "complete" | "streaming">;
1876
+ export declare function useGetStoreAppInstallationSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>;
1877
+ export declare function useGetStoreAppInstallationSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreAppInstallationQuery | undefined, Types.GetStoreAppInstallationQueryVariables>;
1878
+ export type GetStoreAppInstallationQueryHookResult = ReturnType<typeof useGetStoreAppInstallationQuery>;
1879
+ export type GetStoreAppInstallationLazyQueryHookResult = ReturnType<typeof useGetStoreAppInstallationLazyQuery>;
1880
+ export type GetStoreAppInstallationSuspenseQueryHookResult = ReturnType<typeof useGetStoreAppInstallationSuspenseQuery>;
1881
+ export type GetStoreAppInstallationQueryResult = Apollo.QueryResult<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>;
1882
+ export declare const HomeGroupedProductsDocument: Apollo.DocumentNode;
1883
+ /**
1884
+ * __useHomeGroupedProductsQuery__
1885
+ *
1886
+ * To run a query within a React component, call `useHomeGroupedProductsQuery` and pass it any options that fit your needs.
1887
+ * When your component renders, `useHomeGroupedProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1888
+ * you can use to render your UI.
1889
+ *
1890
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1891
+ *
1892
+ * @example
1893
+ * const { data, loading, error } = useHomeGroupedProductsQuery({
1894
+ * variables: {
1895
+ * compatibleWith: // value for 'compatibleWith'
1896
+ * },
1897
+ * });
1898
+ */
1899
+ export declare function useHomeGroupedProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables, "empty" | "complete" | "streaming", Types.HomeGroupedProductsQueryVariables>;
1900
+ export declare function useHomeGroupedProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables, "empty" | "complete" | "streaming">;
1901
+ export declare function useHomeGroupedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>;
1902
+ export declare function useHomeGroupedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.HomeGroupedProductsQuery | undefined, Types.HomeGroupedProductsQueryVariables>;
1903
+ export type HomeGroupedProductsQueryHookResult = ReturnType<typeof useHomeGroupedProductsQuery>;
1904
+ export type HomeGroupedProductsLazyQueryHookResult = ReturnType<typeof useHomeGroupedProductsLazyQuery>;
1905
+ export type HomeGroupedProductsSuspenseQueryHookResult = ReturnType<typeof useHomeGroupedProductsSuspenseQuery>;
1906
+ export type HomeGroupedProductsQueryResult = Apollo.QueryResult<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>;
1907
+ export declare const StoreProductDetailsDocument: Apollo.DocumentNode;
1908
+ /**
1909
+ * __useStoreProductDetailsQuery__
1910
+ *
1911
+ * To run a query within a React component, call `useStoreProductDetailsQuery` and pass it any options that fit your needs.
1912
+ * When your component renders, `useStoreProductDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1913
+ * you can use to render your UI.
1914
+ *
1915
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1916
+ *
1917
+ * @example
1918
+ * const { data, loading, error } = useStoreProductDetailsQuery({
1919
+ * variables: {
1920
+ * input: // value for 'input'
1921
+ * },
1922
+ * });
1923
+ */
1924
+ export declare function useStoreProductDetailsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables> & ({
1925
+ variables: Types.StoreProductDetailsQueryVariables;
1926
+ skip?: boolean;
1927
+ } | {
1928
+ skip: boolean;
1929
+ })): ApolloReactHooks.useQuery.Result<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables, "empty" | "complete" | "streaming", Types.StoreProductDetailsQueryVariables>;
1930
+ export declare function useStoreProductDetailsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables, "empty" | "complete" | "streaming">;
1931
+ export declare function useStoreProductDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>;
1932
+ export declare function useStoreProductDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.StoreProductDetailsQuery | undefined, Types.StoreProductDetailsQueryVariables>;
1933
+ export type StoreProductDetailsQueryHookResult = ReturnType<typeof useStoreProductDetailsQuery>;
1934
+ export type StoreProductDetailsLazyQueryHookResult = ReturnType<typeof useStoreProductDetailsLazyQuery>;
1935
+ export type StoreProductDetailsSuspenseQueryHookResult = ReturnType<typeof useStoreProductDetailsSuspenseQuery>;
1936
+ export type StoreProductDetailsQueryResult = Apollo.QueryResult<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>;
1937
+ export declare const InstallationStatusUpdatedDocument: Apollo.DocumentNode;
1938
+ /**
1939
+ * __useInstallationStatusUpdatedSubscription__
1940
+ *
1941
+ * To run a query within a React component, call `useInstallationStatusUpdatedSubscription` and pass it any options that fit your needs.
1942
+ * When your component renders, `useInstallationStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1943
+ * you can use to render your UI.
1944
+ *
1945
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1946
+ *
1947
+ * @example
1948
+ * const { data, loading, error } = useInstallationStatusUpdatedSubscription({
1949
+ * variables: {
1950
+ * workspaceId: // value for 'workspaceId'
1951
+ * },
1952
+ * });
1953
+ */
1954
+ export declare function useInstallationStatusUpdatedSubscription(baseOptions: ApolloReactHooks.SubscriptionHookOptions<Types.InstallationStatusUpdatedSubscription, Types.InstallationStatusUpdatedSubscriptionVariables> & ({
1955
+ variables: Types.InstallationStatusUpdatedSubscriptionVariables;
1956
+ skip?: boolean;
1957
+ } | {
1958
+ skip: boolean;
1959
+ })): ApolloReactHooks.useSubscription.Result<Types.InstallationStatusUpdatedSubscription>;
1960
+ export type InstallationStatusUpdatedSubscriptionHookResult = ReturnType<typeof useInstallationStatusUpdatedSubscription>;
1961
+ export type InstallationStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.InstallationStatusUpdatedSubscription>;
1962
+ export declare const LicenseStatusUpdatedDocument: Apollo.DocumentNode;
1963
+ /**
1964
+ * __useLicenseStatusUpdatedSubscription__
1965
+ *
1966
+ * To run a query within a React component, call `useLicenseStatusUpdatedSubscription` and pass it any options that fit your needs.
1967
+ * When your component renders, `useLicenseStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1968
+ * you can use to render your UI.
1969
+ *
1970
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1971
+ *
1972
+ * @example
1973
+ * const { data, loading, error } = useLicenseStatusUpdatedSubscription({
1974
+ * variables: {
1975
+ * workspaceId: // value for 'workspaceId'
1976
+ * },
1977
+ * });
1978
+ */
1979
+ export declare function useLicenseStatusUpdatedSubscription(baseOptions?: ApolloReactHooks.SubscriptionHookOptions<Types.LicenseStatusUpdatedSubscription, Types.LicenseStatusUpdatedSubscriptionVariables>): ApolloReactHooks.useSubscription.Result<Types.LicenseStatusUpdatedSubscription>;
1980
+ export type LicenseStatusUpdatedSubscriptionHookResult = ReturnType<typeof useLicenseStatusUpdatedSubscription>;
1981
+ export type LicenseStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.LicenseStatusUpdatedSubscription>;
1982
+ export declare const OrderStatusUpdatedDocument: Apollo.DocumentNode;
1983
+ /**
1984
+ * __useOrderStatusUpdatedSubscription__
1985
+ *
1986
+ * To run a query within a React component, call `useOrderStatusUpdatedSubscription` and pass it any options that fit your needs.
1987
+ * When your component renders, `useOrderStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1988
+ * you can use to render your UI.
1989
+ *
1990
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1991
+ *
1992
+ * @example
1993
+ * const { data, loading, error } = useOrderStatusUpdatedSubscription({
1994
+ * variables: {
1995
+ * orderId: // value for 'orderId'
1996
+ * workspaceId: // value for 'workspaceId'
1997
+ * },
1998
+ * });
1999
+ */
2000
+ export declare function useOrderStatusUpdatedSubscription(baseOptions?: ApolloReactHooks.SubscriptionHookOptions<Types.OrderStatusUpdatedSubscription, Types.OrderStatusUpdatedSubscriptionVariables>): ApolloReactHooks.useSubscription.Result<Types.OrderStatusUpdatedSubscription>;
2001
+ export type OrderStatusUpdatedSubscriptionHookResult = ReturnType<typeof useOrderStatusUpdatedSubscription>;
2002
+ export type OrderStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.OrderStatusUpdatedSubscription>;
2003
+ export declare const SubmissionStatusUpdatedDocument: Apollo.DocumentNode;
2004
+ /**
2005
+ * __useSubmissionStatusUpdatedSubscription__
2006
+ *
2007
+ * To run a query within a React component, call `useSubmissionStatusUpdatedSubscription` and pass it any options that fit your needs.
2008
+ * When your component renders, `useSubmissionStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
2009
+ * you can use to render your UI.
2010
+ *
2011
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2012
+ *
2013
+ * @example
2014
+ * const { data, loading, error } = useSubmissionStatusUpdatedSubscription({
2015
+ * variables: {
2016
+ * publisherId: // value for 'publisherId'
2017
+ * },
2018
+ * });
2019
+ */
2020
+ export declare function useSubmissionStatusUpdatedSubscription(baseOptions: ApolloReactHooks.SubscriptionHookOptions<Types.SubmissionStatusUpdatedSubscription, Types.SubmissionStatusUpdatedSubscriptionVariables> & ({
2021
+ variables: Types.SubmissionStatusUpdatedSubscriptionVariables;
2022
+ skip?: boolean;
2023
+ } | {
2024
+ skip: boolean;
2025
+ })): ApolloReactHooks.useSubscription.Result<Types.SubmissionStatusUpdatedSubscription>;
2026
+ export type SubmissionStatusUpdatedSubscriptionHookResult = ReturnType<typeof useSubmissionStatusUpdatedSubscription>;
2027
+ export type SubmissionStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.SubmissionStatusUpdatedSubscription>;