@burdenoff/microfe-store 2026.525.2 → 2026.525.3

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 (52) hide show
  1. package/package.json +1 -1
  2. package/dist/StoreAdminRoot.d.ts +0 -22
  3. package/dist/StoreAdminRoutes.d.ts +0 -9
  4. package/dist/StoreRoot.d.ts +0 -31
  5. package/dist/StoreRoutes.d.ts +0 -12
  6. package/dist/components/InstallAppModal.d.ts +0 -26
  7. package/dist/components/RouteGuards.d.ts +0 -17
  8. package/dist/components/cart/CartDrawer.d.ts +0 -35
  9. package/dist/components/index.d.ts +0 -9
  10. package/dist/components/marketplace/ProductCard.d.ts +0 -18
  11. package/dist/dev/main.d.ts +0 -1
  12. package/dist/generated/global-operations.d.ts +0 -2012
  13. package/dist/generated/global-types.d.ts +0 -23526
  14. package/dist/generated/wspace-operations.d.ts +0 -1
  15. package/dist/generated/wspace-types.d.ts +0 -57850
  16. package/dist/hooks/index.d.ts +0 -12
  17. package/dist/hooks/useBackendCart.d.ts +0 -73
  18. package/dist/hooks/useCart.d.ts +0 -62
  19. package/dist/hooks/useInstallations.d.ts +0 -43
  20. package/dist/hooks/useOrders.d.ts +0 -40
  21. package/dist/hooks/useProductSearch.d.ts +0 -22
  22. package/dist/hooks/useStoreGraphQL.d.ts +0 -475
  23. package/dist/hooks/useStoreGraphQLWithContext.d.ts +0 -48
  24. package/dist/hooks/useStorePermissions.d.ts +0 -63
  25. package/dist/index.d.ts +0 -44
  26. package/dist/pages/AdminDashboardPage.d.ts +0 -3
  27. package/dist/pages/AdminReviewModerationPage.d.ts +0 -3
  28. package/dist/pages/AdminStoresPage.d.ts +0 -3
  29. package/dist/pages/AdminSubmissionsQueuePage.d.ts +0 -3
  30. package/dist/pages/AppDetailPage.d.ts +0 -3
  31. package/dist/pages/AppSettingsPage.d.ts +0 -3
  32. package/dist/pages/CartPage.d.ts +0 -8
  33. package/dist/pages/InstalledAppsPage.d.ts +0 -8
  34. package/dist/pages/MarketplaceHomePage.d.ts +0 -3
  35. package/dist/pages/MyLicensesPage.d.ts +0 -3
  36. package/dist/pages/OrderConfirmationPage.d.ts +0 -3
  37. package/dist/pages/OrdersPage.d.ts +0 -8
  38. package/dist/pages/ProductCategoryPage.d.ts +0 -3
  39. package/dist/pages/ProductDetailPage.d.ts +0 -8
  40. package/dist/pages/ProductReviewsPage.d.ts +0 -3
  41. package/dist/pages/PublisherDashboardPage.d.ts +0 -3
  42. package/dist/pages/PublisherRevenuePage.d.ts +0 -3
  43. package/dist/pages/PublisherSubmissionsPage.d.ts +0 -3
  44. package/dist/pages/PublisherSubmitPage.d.ts +0 -3
  45. package/dist/pages/SearchResultsPage.d.ts +0 -3
  46. package/dist/pages/StoresPage.d.ts +0 -3
  47. package/dist/providers/StoreProvider.d.ts +0 -38
  48. package/dist/store/storeStore.d.ts +0 -69
  49. package/dist/translations/en.d.ts +0 -518
  50. package/dist/types/index.d.ts +0 -575
  51. package/dist/utils/index.d.ts +0 -67
  52. package/dist/utils/nativeBridge.d.ts +0 -2
@@ -1,2012 +0,0 @@
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
- }>;
584
- };
585
- };
586
- export type GetMyOrdersQueryVariables = Types.Exact<{
587
- limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
588
- offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
589
- status?: Types.InputMaybe<Types.OrderStatus>;
590
- }>;
591
- export type GetMyOrdersQuery = {
592
- __typename?: 'Query';
593
- myOrders: Array<{
594
- __typename?: 'StoreOrder';
595
- id: string;
596
- status: Types.OrderStatus;
597
- total: number;
598
- currency: string;
599
- lineItems: Record<string, unknown>;
600
- createdAt: string;
601
- updatedAt: string;
602
- }>;
603
- };
604
- export type GetProductQueryVariables = Types.Exact<{
605
- id: Types.Scalars['ID']['input'];
606
- }>;
607
- export type GetProductQuery = {
608
- __typename?: 'Query';
609
- product?: {
610
- __typename?: 'StoreProduct';
611
- id: string;
612
- publisherId: string;
613
- name: string;
614
- slug: string;
615
- description?: string | null;
616
- longDescription?: string | null;
617
- icon?: string | null;
618
- screenshots: Array<string>;
619
- videoUrls: Array<string>;
620
- subType?: string | null;
621
- type: Types.ProductType;
622
- manifest?: Record<string, unknown> | null;
623
- manifestVersion?: string | null;
624
- requiredPermissions: Array<string>;
625
- compatibleProducts: Array<string>;
626
- category?: string | null;
627
- tags: Array<string>;
628
- pricingModel: Types.PricingModel;
629
- price: number;
630
- currency: string;
631
- status: Types.ProductStatus;
632
- featured: boolean;
633
- documentationUrl?: string | null;
634
- repositoryUrl?: string | null;
635
- downloads: number;
636
- viewCount: number;
637
- rating?: number | null;
638
- reviewCount: number;
639
- createdAt: string;
640
- updatedAt: string;
641
- publishedAt?: string | null;
642
- variants: Array<{
643
- __typename?: 'ProductVariant';
644
- id: string;
645
- name: string;
646
- sku?: string | null;
647
- price?: number | null;
648
- compareAtPrice?: number | null;
649
- isActive: boolean;
650
- stockQuantity: number;
651
- options: Record<string, unknown>;
652
- imageUrls: Array<string>;
653
- displayOrder: number;
654
- weight?: number | null;
655
- weightUnit?: Types.WeightUnit | null;
656
- }>;
657
- publisher?: {
658
- __typename?: 'Publisher';
659
- id: string;
660
- name: string;
661
- websiteUrl?: string | null;
662
- isVerified: boolean;
663
- email: string;
664
- bio?: string | null;
665
- logoUrl?: string | null;
666
- totalSales: number;
667
- totalEarnings: number;
668
- products: Array<{
669
- __typename?: 'StoreProduct';
670
- id: string;
671
- }>;
672
- } | null;
673
- reviews: Array<{
674
- __typename?: 'ProductReview';
675
- id: string;
676
- userId: string;
677
- rating: number;
678
- comment?: string | null;
679
- status: Types.ReviewStatus;
680
- helpful: number;
681
- createdAt: string;
682
- }>;
683
- } | null;
684
- };
685
- export type GetProductsQueryVariables = Types.Exact<{
686
- filter?: Types.InputMaybe<Types.ProductFilterInput>;
687
- limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
688
- offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
689
- }>;
690
- export type GetProductsQuery = {
691
- __typename?: 'Query';
692
- products: Array<{
693
- __typename?: 'StoreProduct';
694
- id: string;
695
- name: string;
696
- slug: string;
697
- description?: string | null;
698
- icon?: string | null;
699
- screenshots: Array<string>;
700
- subType?: string | null;
701
- type: Types.ProductType;
702
- pricingModel: Types.PricingModel;
703
- price: number;
704
- currency: string;
705
- status: Types.ProductStatus;
706
- featured: boolean;
707
- downloads: number;
708
- viewCount: number;
709
- rating?: number | null;
710
- reviewCount: number;
711
- category?: string | null;
712
- tags: Array<string>;
713
- createdAt: string;
714
- publishedAt?: string | null;
715
- publisher?: {
716
- __typename?: 'Publisher';
717
- id: string;
718
- name: string;
719
- isVerified: boolean;
720
- } | null;
721
- }>;
722
- };
723
- export type GetStoreAppInstallationQueryVariables = Types.Exact<{
724
- id: Types.Scalars['ID']['input'];
725
- }>;
726
- export type GetStoreAppInstallationQuery = {
727
- __typename?: 'Query';
728
- storeAppInstallation?: {
729
- __typename?: 'StoreAppInstallation';
730
- id: string;
731
- productId: string;
732
- workspaceId: string;
733
- workspaceName?: string | null;
734
- workspaceType?: string | null;
735
- organizationId?: string | null;
736
- installedById: string;
737
- status: Types.StoreInstallationStatus;
738
- version?: string | null;
739
- manifest?: Record<string, unknown> | null;
740
- metadata?: Record<string, unknown> | null;
741
- context?: Record<string, unknown> | null;
742
- installedAt: string;
743
- updatedAt: string;
744
- uninstalledAt?: string | null;
745
- uninstalledById?: string | null;
746
- } | null;
747
- };
748
- export type HomeGroupedProductsQueryVariables = Types.Exact<{
749
- compatibleWith?: Types.InputMaybe<Types.Scalars['String']['input']>;
750
- }>;
751
- export type HomeGroupedProductsQuery = {
752
- __typename?: 'Query';
753
- homeGroupedProducts: {
754
- __typename?: 'GroupedStoreProducts';
755
- featured: Array<{
756
- __typename?: 'StoreProduct';
757
- id: string;
758
- name: string;
759
- slug: string;
760
- type: Types.ProductType;
761
- nature: Types.ProductNature;
762
- status: Types.ProductStatus;
763
- description?: string | null;
764
- pricingModel: Types.PricingModel;
765
- price: number;
766
- currency: string;
767
- icon?: string | null;
768
- screenshots: Array<string>;
769
- rating?: number | null;
770
- reviewCount: number;
771
- downloads: number;
772
- featured: boolean;
773
- category?: string | null;
774
- tags: Array<string>;
775
- publishedAt?: string | null;
776
- publisher?: {
777
- __typename?: 'Publisher';
778
- id: string;
779
- name: string;
780
- isVerified: boolean;
781
- logoUrl?: string | null;
782
- } | null;
783
- }>;
784
- mostDownloaded: Array<{
785
- __typename?: 'StoreProduct';
786
- id: string;
787
- name: string;
788
- slug: string;
789
- type: Types.ProductType;
790
- nature: Types.ProductNature;
791
- status: Types.ProductStatus;
792
- description?: string | null;
793
- pricingModel: Types.PricingModel;
794
- price: number;
795
- currency: string;
796
- icon?: string | null;
797
- screenshots: Array<string>;
798
- rating?: number | null;
799
- reviewCount: number;
800
- downloads: number;
801
- featured: boolean;
802
- category?: string | null;
803
- tags: Array<string>;
804
- publishedAt?: string | null;
805
- publisher?: {
806
- __typename?: 'Publisher';
807
- id: string;
808
- name: string;
809
- isVerified: boolean;
810
- logoUrl?: string | null;
811
- } | null;
812
- }>;
813
- recentlyAdded: Array<{
814
- __typename?: 'StoreProduct';
815
- id: string;
816
- name: string;
817
- slug: string;
818
- type: Types.ProductType;
819
- nature: Types.ProductNature;
820
- status: Types.ProductStatus;
821
- description?: string | null;
822
- pricingModel: Types.PricingModel;
823
- price: number;
824
- currency: string;
825
- icon?: string | null;
826
- screenshots: Array<string>;
827
- rating?: number | null;
828
- reviewCount: number;
829
- downloads: number;
830
- featured: boolean;
831
- category?: string | null;
832
- tags: Array<string>;
833
- publishedAt?: string | null;
834
- publisher?: {
835
- __typename?: 'Publisher';
836
- id: string;
837
- name: string;
838
- isVerified: boolean;
839
- logoUrl?: string | null;
840
- } | null;
841
- }>;
842
- freeItems: Array<{
843
- __typename?: 'StoreProduct';
844
- id: string;
845
- name: string;
846
- slug: string;
847
- type: Types.ProductType;
848
- nature: Types.ProductNature;
849
- status: Types.ProductStatus;
850
- description?: string | null;
851
- pricingModel: Types.PricingModel;
852
- price: number;
853
- currency: string;
854
- icon?: string | null;
855
- screenshots: Array<string>;
856
- rating?: number | null;
857
- reviewCount: number;
858
- downloads: number;
859
- featured: boolean;
860
- category?: string | null;
861
- tags: Array<string>;
862
- publishedAt?: string | null;
863
- publisher?: {
864
- __typename?: 'Publisher';
865
- id: string;
866
- name: string;
867
- isVerified: boolean;
868
- logoUrl?: string | null;
869
- } | null;
870
- }>;
871
- };
872
- };
873
- export type StoreProductDetailsQueryVariables = Types.Exact<{
874
- input: Types.StoreProductDetailsInput;
875
- }>;
876
- export type StoreProductDetailsQuery = {
877
- __typename?: 'Query';
878
- storeProductDetails: {
879
- __typename?: 'StoreProductDetailsResult';
880
- reviewsCount: number;
881
- isPurchased: boolean;
882
- product: {
883
- __typename?: 'StoreProduct';
884
- id: string;
885
- name: string;
886
- slug: string;
887
- type: Types.ProductType;
888
- nature: Types.ProductNature;
889
- status: Types.ProductStatus;
890
- description?: string | null;
891
- longDescription?: string | null;
892
- pricingModel: Types.PricingModel;
893
- price: number;
894
- currency: string;
895
- icon?: string | null;
896
- screenshots: Array<string>;
897
- videoUrls: Array<string>;
898
- documentationUrl?: string | null;
899
- repositoryUrl?: string | null;
900
- rating?: number | null;
901
- reviewCount: number;
902
- downloads: number;
903
- viewCount: number;
904
- featured: boolean;
905
- category?: string | null;
906
- tags: Array<string>;
907
- publishedAt?: string | null;
908
- createdAt: string;
909
- updatedAt: string;
910
- subType?: string | null;
911
- manifestVersion?: string | null;
912
- authorName?: string | null;
913
- license?: string | null;
914
- minPlatformVersion?: string | null;
915
- compatibleProducts: Array<string>;
916
- requiredPermissions: Array<string>;
917
- integrationDeps: Array<string>;
918
- manifest?: Record<string, unknown> | null;
919
- publisher?: {
920
- __typename?: 'Publisher';
921
- id: string;
922
- name: string;
923
- isVerified: boolean;
924
- logoUrl?: string | null;
925
- websiteUrl?: string | null;
926
- bio?: string | null;
927
- email: string;
928
- } | null;
929
- };
930
- publisher?: {
931
- __typename?: 'Publisher';
932
- id: string;
933
- name: string;
934
- isVerified: boolean;
935
- logoUrl?: string | null;
936
- websiteUrl?: string | null;
937
- bio?: string | null;
938
- email: string;
939
- } | null;
940
- relatedProducts: Array<{
941
- __typename?: 'StoreProduct';
942
- id: string;
943
- name: string;
944
- slug: string;
945
- type: Types.ProductType;
946
- nature: Types.ProductNature;
947
- status: Types.ProductStatus;
948
- description?: string | null;
949
- icon?: string | null;
950
- rating?: number | null;
951
- reviewCount: number;
952
- downloads: number;
953
- price: number;
954
- pricingModel: Types.PricingModel;
955
- currency: string;
956
- screenshots: Array<string>;
957
- featured: boolean;
958
- category?: string | null;
959
- tags: Array<string>;
960
- publishedAt?: string | null;
961
- publisher?: {
962
- __typename?: 'Publisher';
963
- id: string;
964
- name: string;
965
- isVerified: boolean;
966
- logoUrl?: string | null;
967
- } | null;
968
- }>;
969
- reviews: Array<{
970
- __typename?: 'ProductReview';
971
- id: string;
972
- userId: string;
973
- rating: number;
974
- title?: string | null;
975
- comment?: string | null;
976
- status: Types.ReviewStatus;
977
- helpful: number;
978
- createdAt: string;
979
- updatedAt: string;
980
- }>;
981
- userReview?: {
982
- __typename?: 'ProductReview';
983
- id: string;
984
- userId: string;
985
- rating: number;
986
- title?: string | null;
987
- comment?: string | null;
988
- status: Types.ReviewStatus;
989
- helpful: number;
990
- createdAt: string;
991
- updatedAt: string;
992
- } | null;
993
- userEntitlement?: {
994
- __typename?: 'ProductEntitlement';
995
- id: string;
996
- status: Types.EntitlementStatus;
997
- licenseKey?: string | null;
998
- expiresAt?: string | null;
999
- } | null;
1000
- ratingDistribution?: {
1001
- __typename?: 'ProductRatingDistribution';
1002
- fiveStars: number;
1003
- fourStars: number;
1004
- threeStars: number;
1005
- twoStars: number;
1006
- oneStar: number;
1007
- } | null;
1008
- };
1009
- };
1010
- export type InstallationStatusUpdatedSubscriptionVariables = Types.Exact<{
1011
- workspaceId: Types.Scalars['ID']['input'];
1012
- }>;
1013
- export type InstallationStatusUpdatedSubscription = {
1014
- __typename?: 'Subscription';
1015
- installationStatusUpdated?: {
1016
- __typename?: 'InstallationStatusUpdatedEvent';
1017
- installationId: string;
1018
- productId: string;
1019
- workspaceId: string;
1020
- status: string;
1021
- updatedAt: string;
1022
- } | null;
1023
- };
1024
- export type LicenseStatusUpdatedSubscriptionVariables = Types.Exact<{
1025
- workspaceId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
1026
- }>;
1027
- export type LicenseStatusUpdatedSubscription = {
1028
- __typename?: 'Subscription';
1029
- licenseStatusUpdated?: {
1030
- __typename?: 'LicenseStatusUpdatedEvent';
1031
- entitlementId: string;
1032
- productId: string;
1033
- status: string;
1034
- updatedAt: string;
1035
- } | null;
1036
- };
1037
- export type OrderStatusUpdatedSubscriptionVariables = Types.Exact<{
1038
- orderId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
1039
- workspaceId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
1040
- }>;
1041
- export type OrderStatusUpdatedSubscription = {
1042
- __typename?: 'Subscription';
1043
- orderStatusUpdated?: {
1044
- __typename?: 'OrderStatusUpdatedEvent';
1045
- orderId: string;
1046
- workspaceId?: string | null;
1047
- status: string;
1048
- updatedAt: string;
1049
- } | null;
1050
- };
1051
- export type SubmissionStatusUpdatedSubscriptionVariables = Types.Exact<{
1052
- publisherId: Types.Scalars['ID']['input'];
1053
- }>;
1054
- export type SubmissionStatusUpdatedSubscription = {
1055
- __typename?: 'Subscription';
1056
- submissionStatusUpdated?: {
1057
- __typename?: 'SubmissionStatusUpdatedEvent';
1058
- submissionId: string;
1059
- productId: string;
1060
- publisherId: string;
1061
- status: string;
1062
- updatedAt: string;
1063
- } | null;
1064
- };
1065
- export declare const CreateReviewDocument: Apollo.DocumentNode;
1066
- export type CreateReviewMutationFn = Apollo.MutationFunction<Types.CreateReviewMutation, Types.CreateReviewMutationVariables>;
1067
- /**
1068
- * __useCreateReviewMutation__
1069
- *
1070
- * To run a mutation, you first call `useCreateReviewMutation` within a React component and pass it any options that fit your needs.
1071
- * When your component renders, `useCreateReviewMutation` returns a tuple that includes:
1072
- * - A mutate function that you can call at any time to execute the mutation
1073
- * - An object with fields that represent the current status of the mutation's execution
1074
- *
1075
- * @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;
1076
- *
1077
- * @example
1078
- * const [createReviewMutation, { data, loading, error }] = useCreateReviewMutation({
1079
- * variables: {
1080
- * input: // value for 'input'
1081
- * },
1082
- * });
1083
- */
1084
- export declare function useCreateReviewMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateReviewMutation, Types.CreateReviewMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateReviewMutation, any, Apollo.ApolloCache>;
1085
- export type CreateReviewMutationHookResult = ReturnType<typeof useCreateReviewMutation>;
1086
- export type CreateReviewMutationResult = Apollo.MutationResult<Types.CreateReviewMutation>;
1087
- export type CreateReviewMutationOptions = Apollo.BaseMutationOptions<Types.CreateReviewMutation, Types.CreateReviewMutationVariables>;
1088
- export declare const DeleteReviewDocument: Apollo.DocumentNode;
1089
- export type DeleteReviewMutationFn = Apollo.MutationFunction<Types.DeleteReviewMutation, Types.DeleteReviewMutationVariables>;
1090
- /**
1091
- * __useDeleteReviewMutation__
1092
- *
1093
- * To run a mutation, you first call `useDeleteReviewMutation` within a React component and pass it any options that fit your needs.
1094
- * When your component renders, `useDeleteReviewMutation` returns a tuple that includes:
1095
- * - A mutate function that you can call at any time to execute the mutation
1096
- * - An object with fields that represent the current status of the mutation's execution
1097
- *
1098
- * @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;
1099
- *
1100
- * @example
1101
- * const [deleteReviewMutation, { data, loading, error }] = useDeleteReviewMutation({
1102
- * variables: {
1103
- * id: // value for 'id'
1104
- * },
1105
- * });
1106
- */
1107
- export declare function useDeleteReviewMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteReviewMutation, Types.DeleteReviewMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteReviewMutation, any, Apollo.ApolloCache>;
1108
- export type DeleteReviewMutationHookResult = ReturnType<typeof useDeleteReviewMutation>;
1109
- export type DeleteReviewMutationResult = Apollo.MutationResult<Types.DeleteReviewMutation>;
1110
- export type DeleteReviewMutationOptions = Apollo.BaseMutationOptions<Types.DeleteReviewMutation, Types.DeleteReviewMutationVariables>;
1111
- export declare const MarkReviewHelpfulDocument: Apollo.DocumentNode;
1112
- export type MarkReviewHelpfulMutationFn = Apollo.MutationFunction<Types.MarkReviewHelpfulMutation, Types.MarkReviewHelpfulMutationVariables>;
1113
- /**
1114
- * __useMarkReviewHelpfulMutation__
1115
- *
1116
- * To run a mutation, you first call `useMarkReviewHelpfulMutation` within a React component and pass it any options that fit your needs.
1117
- * When your component renders, `useMarkReviewHelpfulMutation` returns a tuple that includes:
1118
- * - A mutate function that you can call at any time to execute the mutation
1119
- * - An object with fields that represent the current status of the mutation's execution
1120
- *
1121
- * @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;
1122
- *
1123
- * @example
1124
- * const [markReviewHelpfulMutation, { data, loading, error }] = useMarkReviewHelpfulMutation({
1125
- * variables: {
1126
- * id: // value for 'id'
1127
- * },
1128
- * });
1129
- */
1130
- export declare function useMarkReviewHelpfulMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.MarkReviewHelpfulMutation, Types.MarkReviewHelpfulMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.MarkReviewHelpfulMutation, any, Apollo.ApolloCache>;
1131
- export type MarkReviewHelpfulMutationHookResult = ReturnType<typeof useMarkReviewHelpfulMutation>;
1132
- export type MarkReviewHelpfulMutationResult = Apollo.MutationResult<Types.MarkReviewHelpfulMutation>;
1133
- export type MarkReviewHelpfulMutationOptions = Apollo.BaseMutationOptions<Types.MarkReviewHelpfulMutation, Types.MarkReviewHelpfulMutationVariables>;
1134
- export declare const UpdateReviewDocument: Apollo.DocumentNode;
1135
- export type UpdateReviewMutationFn = Apollo.MutationFunction<Types.UpdateReviewMutation, Types.UpdateReviewMutationVariables>;
1136
- /**
1137
- * __useUpdateReviewMutation__
1138
- *
1139
- * To run a mutation, you first call `useUpdateReviewMutation` within a React component and pass it any options that fit your needs.
1140
- * When your component renders, `useUpdateReviewMutation` returns a tuple that includes:
1141
- * - A mutate function that you can call at any time to execute the mutation
1142
- * - An object with fields that represent the current status of the mutation's execution
1143
- *
1144
- * @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;
1145
- *
1146
- * @example
1147
- * const [updateReviewMutation, { data, loading, error }] = useUpdateReviewMutation({
1148
- * variables: {
1149
- * id: // value for 'id'
1150
- * input: // value for 'input'
1151
- * },
1152
- * });
1153
- */
1154
- export declare function useUpdateReviewMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateReviewMutation, Types.UpdateReviewMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateReviewMutation, any, Apollo.ApolloCache>;
1155
- export type UpdateReviewMutationHookResult = ReturnType<typeof useUpdateReviewMutation>;
1156
- export type UpdateReviewMutationResult = Apollo.MutationResult<Types.UpdateReviewMutation>;
1157
- export type UpdateReviewMutationOptions = Apollo.BaseMutationOptions<Types.UpdateReviewMutation, Types.UpdateReviewMutationVariables>;
1158
- export declare const AddToCartDocument: Apollo.DocumentNode;
1159
- export type AddToCartMutationFn = Apollo.MutationFunction<Types.AddToCartMutation, Types.AddToCartMutationVariables>;
1160
- /**
1161
- * __useAddToCartMutation__
1162
- *
1163
- * To run a mutation, you first call `useAddToCartMutation` within a React component and pass it any options that fit your needs.
1164
- * When your component renders, `useAddToCartMutation` returns a tuple that includes:
1165
- * - A mutate function that you can call at any time to execute the mutation
1166
- * - An object with fields that represent the current status of the mutation's execution
1167
- *
1168
- * @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;
1169
- *
1170
- * @example
1171
- * const [addToCartMutation, { data, loading, error }] = useAddToCartMutation({
1172
- * variables: {
1173
- * input: // value for 'input'
1174
- * },
1175
- * });
1176
- */
1177
- export declare function useAddToCartMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddToCartMutation, Types.AddToCartMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AddToCartMutation, any, Apollo.ApolloCache>;
1178
- export type AddToCartMutationHookResult = ReturnType<typeof useAddToCartMutation>;
1179
- export type AddToCartMutationResult = Apollo.MutationResult<Types.AddToCartMutation>;
1180
- export type AddToCartMutationOptions = Apollo.BaseMutationOptions<Types.AddToCartMutation, Types.AddToCartMutationVariables>;
1181
- export declare const CheckoutDocument: Apollo.DocumentNode;
1182
- export type CheckoutMutationFn = Apollo.MutationFunction<Types.CheckoutMutation, Types.CheckoutMutationVariables>;
1183
- /**
1184
- * __useCheckoutMutation__
1185
- *
1186
- * To run a mutation, you first call `useCheckoutMutation` within a React component and pass it any options that fit your needs.
1187
- * When your component renders, `useCheckoutMutation` returns a tuple that includes:
1188
- * - A mutate function that you can call at any time to execute the mutation
1189
- * - An object with fields that represent the current status of the mutation's execution
1190
- *
1191
- * @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;
1192
- *
1193
- * @example
1194
- * const [checkoutMutation, { data, loading, error }] = useCheckoutMutation({
1195
- * variables: {
1196
- * input: // value for 'input'
1197
- * },
1198
- * });
1199
- */
1200
- export declare function useCheckoutMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CheckoutMutation, Types.CheckoutMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CheckoutMutation, any, Apollo.ApolloCache>;
1201
- export type CheckoutMutationHookResult = ReturnType<typeof useCheckoutMutation>;
1202
- export type CheckoutMutationResult = Apollo.MutationResult<Types.CheckoutMutation>;
1203
- export type CheckoutMutationOptions = Apollo.BaseMutationOptions<Types.CheckoutMutation, Types.CheckoutMutationVariables>;
1204
- export declare const ClearCartDocument: Apollo.DocumentNode;
1205
- export type ClearCartMutationFn = Apollo.MutationFunction<Types.ClearCartMutation, Types.ClearCartMutationVariables>;
1206
- /**
1207
- * __useClearCartMutation__
1208
- *
1209
- * To run a mutation, you first call `useClearCartMutation` within a React component and pass it any options that fit your needs.
1210
- * When your component renders, `useClearCartMutation` returns a tuple that includes:
1211
- * - A mutate function that you can call at any time to execute the mutation
1212
- * - An object with fields that represent the current status of the mutation's execution
1213
- *
1214
- * @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;
1215
- *
1216
- * @example
1217
- * const [clearCartMutation, { data, loading, error }] = useClearCartMutation({
1218
- * variables: {
1219
- * },
1220
- * });
1221
- */
1222
- export declare function useClearCartMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ClearCartMutation, Types.ClearCartMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ClearCartMutation, any, Apollo.ApolloCache>;
1223
- export type ClearCartMutationHookResult = ReturnType<typeof useClearCartMutation>;
1224
- export type ClearCartMutationResult = Apollo.MutationResult<Types.ClearCartMutation>;
1225
- export type ClearCartMutationOptions = Apollo.BaseMutationOptions<Types.ClearCartMutation, Types.ClearCartMutationVariables>;
1226
- export declare const CreateProductForPublisherDocument: Apollo.DocumentNode;
1227
- export type CreateProductForPublisherMutationFn = Apollo.MutationFunction<Types.CreateProductForPublisherMutation, Types.CreateProductForPublisherMutationVariables>;
1228
- /**
1229
- * __useCreateProductForPublisherMutation__
1230
- *
1231
- * To run a mutation, you first call `useCreateProductForPublisherMutation` within a React component and pass it any options that fit your needs.
1232
- * When your component renders, `useCreateProductForPublisherMutation` returns a tuple that includes:
1233
- * - A mutate function that you can call at any time to execute the mutation
1234
- * - An object with fields that represent the current status of the mutation's execution
1235
- *
1236
- * @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;
1237
- *
1238
- * @example
1239
- * const [createProductForPublisherMutation, { data, loading, error }] = useCreateProductForPublisherMutation({
1240
- * variables: {
1241
- * input: // value for 'input'
1242
- * },
1243
- * });
1244
- */
1245
- export declare function useCreateProductForPublisherMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateProductForPublisherMutation, Types.CreateProductForPublisherMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateProductForPublisherMutation, any, Apollo.ApolloCache>;
1246
- export type CreateProductForPublisherMutationHookResult = ReturnType<typeof useCreateProductForPublisherMutation>;
1247
- export type CreateProductForPublisherMutationResult = Apollo.MutationResult<Types.CreateProductForPublisherMutation>;
1248
- export type CreateProductForPublisherMutationOptions = Apollo.BaseMutationOptions<Types.CreateProductForPublisherMutation, Types.CreateProductForPublisherMutationVariables>;
1249
- export declare const CreateStoreOrderDocument: Apollo.DocumentNode;
1250
- export type CreateStoreOrderMutationFn = Apollo.MutationFunction<Types.CreateStoreOrderMutation, Types.CreateStoreOrderMutationVariables>;
1251
- /**
1252
- * __useCreateStoreOrderMutation__
1253
- *
1254
- * To run a mutation, you first call `useCreateStoreOrderMutation` within a React component and pass it any options that fit your needs.
1255
- * When your component renders, `useCreateStoreOrderMutation` returns a tuple that includes:
1256
- * - A mutate function that you can call at any time to execute the mutation
1257
- * - An object with fields that represent the current status of the mutation's execution
1258
- *
1259
- * @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;
1260
- *
1261
- * @example
1262
- * const [createStoreOrderMutation, { data, loading, error }] = useCreateStoreOrderMutation({
1263
- * variables: {
1264
- * input: // value for 'input'
1265
- * },
1266
- * });
1267
- */
1268
- export declare function useCreateStoreOrderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateStoreOrderMutation, Types.CreateStoreOrderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateStoreOrderMutation, any, Apollo.ApolloCache>;
1269
- export type CreateStoreOrderMutationHookResult = ReturnType<typeof useCreateStoreOrderMutation>;
1270
- export type CreateStoreOrderMutationResult = Apollo.MutationResult<Types.CreateStoreOrderMutation>;
1271
- export type CreateStoreOrderMutationOptions = Apollo.BaseMutationOptions<Types.CreateStoreOrderMutation, Types.CreateStoreOrderMutationVariables>;
1272
- export declare const RemoveFromCartDocument: Apollo.DocumentNode;
1273
- export type RemoveFromCartMutationFn = Apollo.MutationFunction<Types.RemoveFromCartMutation, Types.RemoveFromCartMutationVariables>;
1274
- /**
1275
- * __useRemoveFromCartMutation__
1276
- *
1277
- * To run a mutation, you first call `useRemoveFromCartMutation` within a React component and pass it any options that fit your needs.
1278
- * When your component renders, `useRemoveFromCartMutation` returns a tuple that includes:
1279
- * - A mutate function that you can call at any time to execute the mutation
1280
- * - An object with fields that represent the current status of the mutation's execution
1281
- *
1282
- * @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;
1283
- *
1284
- * @example
1285
- * const [removeFromCartMutation, { data, loading, error }] = useRemoveFromCartMutation({
1286
- * variables: {
1287
- * cartItemId: // value for 'cartItemId'
1288
- * },
1289
- * });
1290
- */
1291
- export declare function useRemoveFromCartMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RemoveFromCartMutation, Types.RemoveFromCartMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.RemoveFromCartMutation, any, Apollo.ApolloCache>;
1292
- export type RemoveFromCartMutationHookResult = ReturnType<typeof useRemoveFromCartMutation>;
1293
- export type RemoveFromCartMutationResult = Apollo.MutationResult<Types.RemoveFromCartMutation>;
1294
- export type RemoveFromCartMutationOptions = Apollo.BaseMutationOptions<Types.RemoveFromCartMutation, Types.RemoveFromCartMutationVariables>;
1295
- export declare const RecordAppUninstallationDocument: Apollo.DocumentNode;
1296
- export type RecordAppUninstallationMutationFn = Apollo.MutationFunction<Types.RecordAppUninstallationMutation, Types.RecordAppUninstallationMutationVariables>;
1297
- /**
1298
- * __useRecordAppUninstallationMutation__
1299
- *
1300
- * To run a mutation, you first call `useRecordAppUninstallationMutation` within a React component and pass it any options that fit your needs.
1301
- * When your component renders, `useRecordAppUninstallationMutation` returns a tuple that includes:
1302
- * - A mutate function that you can call at any time to execute the mutation
1303
- * - An object with fields that represent the current status of the mutation's execution
1304
- *
1305
- * @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;
1306
- *
1307
- * @example
1308
- * const [recordAppUninstallationMutation, { data, loading, error }] = useRecordAppUninstallationMutation({
1309
- * variables: {
1310
- * workspaceId: // value for 'workspaceId'
1311
- * productId: // value for 'productId'
1312
- * },
1313
- * });
1314
- */
1315
- export declare function useRecordAppUninstallationMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RecordAppUninstallationMutation, Types.RecordAppUninstallationMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.RecordAppUninstallationMutation, any, Apollo.ApolloCache>;
1316
- export type RecordAppUninstallationMutationHookResult = ReturnType<typeof useRecordAppUninstallationMutation>;
1317
- export type RecordAppUninstallationMutationResult = Apollo.MutationResult<Types.RecordAppUninstallationMutation>;
1318
- export type RecordAppUninstallationMutationOptions = Apollo.BaseMutationOptions<Types.RecordAppUninstallationMutation, Types.RecordAppUninstallationMutationVariables>;
1319
- export declare const UpdateCartItemDocument: Apollo.DocumentNode;
1320
- export type UpdateCartItemMutationFn = Apollo.MutationFunction<Types.UpdateCartItemMutation, Types.UpdateCartItemMutationVariables>;
1321
- /**
1322
- * __useUpdateCartItemMutation__
1323
- *
1324
- * To run a mutation, you first call `useUpdateCartItemMutation` within a React component and pass it any options that fit your needs.
1325
- * When your component renders, `useUpdateCartItemMutation` returns a tuple that includes:
1326
- * - A mutate function that you can call at any time to execute the mutation
1327
- * - An object with fields that represent the current status of the mutation's execution
1328
- *
1329
- * @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;
1330
- *
1331
- * @example
1332
- * const [updateCartItemMutation, { data, loading, error }] = useUpdateCartItemMutation({
1333
- * variables: {
1334
- * input: // value for 'input'
1335
- * },
1336
- * });
1337
- */
1338
- export declare function useUpdateCartItemMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateCartItemMutation, Types.UpdateCartItemMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateCartItemMutation, any, Apollo.ApolloCache>;
1339
- export type UpdateCartItemMutationHookResult = ReturnType<typeof useUpdateCartItemMutation>;
1340
- export type UpdateCartItemMutationResult = Apollo.MutationResult<Types.UpdateCartItemMutation>;
1341
- export type UpdateCartItemMutationOptions = Apollo.BaseMutationOptions<Types.UpdateCartItemMutation, Types.UpdateCartItemMutationVariables>;
1342
- export declare const CategoriesDocument: Apollo.DocumentNode;
1343
- /**
1344
- * __useCategoriesQuery__
1345
- *
1346
- * To run a query within a React component, call `useCategoriesQuery` and pass it any options that fit your needs.
1347
- * When your component renders, `useCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1348
- * you can use to render your UI.
1349
- *
1350
- * @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;
1351
- *
1352
- * @example
1353
- * const { data, loading, error } = useCategoriesQuery({
1354
- * variables: {
1355
- * },
1356
- * });
1357
- */
1358
- export declare function useCategoriesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.CategoriesQuery, Types.CategoriesQueryVariables, "empty" | "complete" | "streaming", Types.CategoriesQueryVariables>;
1359
- export declare function useCategoriesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.CategoriesQuery, Types.CategoriesQueryVariables, "empty" | "complete" | "streaming">;
1360
- export declare function useCategoriesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CategoriesQuery, Types.CategoriesQueryVariables>;
1361
- export declare function useCategoriesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CategoriesQuery, Types.CategoriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CategoriesQuery | undefined, Types.CategoriesQueryVariables>;
1362
- export type CategoriesQueryHookResult = ReturnType<typeof useCategoriesQuery>;
1363
- export type CategoriesLazyQueryHookResult = ReturnType<typeof useCategoriesLazyQuery>;
1364
- export type CategoriesSuspenseQueryHookResult = ReturnType<typeof useCategoriesSuspenseQuery>;
1365
- export type CategoriesQueryResult = Apollo.QueryResult<Types.CategoriesQuery, Types.CategoriesQueryVariables>;
1366
- export declare const CheckEntitlementDocument: Apollo.DocumentNode;
1367
- /**
1368
- * __useCheckEntitlementQuery__
1369
- *
1370
- * To run a query within a React component, call `useCheckEntitlementQuery` and pass it any options that fit your needs.
1371
- * When your component renders, `useCheckEntitlementQuery` returns an object from Apollo Client that contains loading, error, and data properties
1372
- * you can use to render your UI.
1373
- *
1374
- * @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;
1375
- *
1376
- * @example
1377
- * const { data, loading, error } = useCheckEntitlementQuery({
1378
- * variables: {
1379
- * productId: // value for 'productId'
1380
- * },
1381
- * });
1382
- */
1383
- export declare function useCheckEntitlementQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables> & ({
1384
- variables: Types.CheckEntitlementQueryVariables;
1385
- skip?: boolean;
1386
- } | {
1387
- skip: boolean;
1388
- })): ApolloReactHooks.useQuery.Result<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables, "empty" | "complete" | "streaming", Types.CheckEntitlementQueryVariables>;
1389
- export declare function useCheckEntitlementLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables, "empty" | "complete" | "streaming">;
1390
- export declare function useCheckEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>;
1391
- export declare function useCheckEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckEntitlementQuery | undefined, Types.CheckEntitlementQueryVariables>;
1392
- export type CheckEntitlementQueryHookResult = ReturnType<typeof useCheckEntitlementQuery>;
1393
- export type CheckEntitlementLazyQueryHookResult = ReturnType<typeof useCheckEntitlementLazyQuery>;
1394
- export type CheckEntitlementSuspenseQueryHookResult = ReturnType<typeof useCheckEntitlementSuspenseQuery>;
1395
- export type CheckEntitlementQueryResult = Apollo.QueryResult<Types.CheckEntitlementQuery, Types.CheckEntitlementQueryVariables>;
1396
- export declare const DeveloperEarningsDocument: Apollo.DocumentNode;
1397
- /**
1398
- * __useDeveloperEarningsQuery__
1399
- *
1400
- * To run a query within a React component, call `useDeveloperEarningsQuery` and pass it any options that fit your needs.
1401
- * When your component renders, `useDeveloperEarningsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1402
- * you can use to render your UI.
1403
- *
1404
- * @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;
1405
- *
1406
- * @example
1407
- * const { data, loading, error } = useDeveloperEarningsQuery({
1408
- * variables: {
1409
- * input: // value for 'input'
1410
- * },
1411
- * });
1412
- */
1413
- export declare function useDeveloperEarningsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables, "empty" | "complete" | "streaming", Types.DeveloperEarningsQueryVariables>;
1414
- export declare function useDeveloperEarningsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables, "empty" | "complete" | "streaming">;
1415
- export declare function useDeveloperEarningsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>;
1416
- export declare function useDeveloperEarningsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.DeveloperEarningsQuery | undefined, Types.DeveloperEarningsQueryVariables>;
1417
- export type DeveloperEarningsQueryHookResult = ReturnType<typeof useDeveloperEarningsQuery>;
1418
- export type DeveloperEarningsLazyQueryHookResult = ReturnType<typeof useDeveloperEarningsLazyQuery>;
1419
- export type DeveloperEarningsSuspenseQueryHookResult = ReturnType<typeof useDeveloperEarningsSuspenseQuery>;
1420
- export type DeveloperEarningsQueryResult = Apollo.QueryResult<Types.DeveloperEarningsQuery, Types.DeveloperEarningsQueryVariables>;
1421
- export declare const FeaturedProductsDocument: Apollo.DocumentNode;
1422
- /**
1423
- * __useFeaturedProductsQuery__
1424
- *
1425
- * To run a query within a React component, call `useFeaturedProductsQuery` and pass it any options that fit your needs.
1426
- * When your component renders, `useFeaturedProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1427
- * you can use to render your UI.
1428
- *
1429
- * @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;
1430
- *
1431
- * @example
1432
- * const { data, loading, error } = useFeaturedProductsQuery({
1433
- * variables: {
1434
- * limit: // value for 'limit'
1435
- * },
1436
- * });
1437
- */
1438
- export declare function useFeaturedProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables, "empty" | "complete" | "streaming", Types.FeaturedProductsQueryVariables>;
1439
- export declare function useFeaturedProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables, "empty" | "complete" | "streaming">;
1440
- export declare function useFeaturedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>;
1441
- export declare function useFeaturedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FeaturedProductsQuery | undefined, Types.FeaturedProductsQueryVariables>;
1442
- export type FeaturedProductsQueryHookResult = ReturnType<typeof useFeaturedProductsQuery>;
1443
- export type FeaturedProductsLazyQueryHookResult = ReturnType<typeof useFeaturedProductsLazyQuery>;
1444
- export type FeaturedProductsSuspenseQueryHookResult = ReturnType<typeof useFeaturedProductsSuspenseQuery>;
1445
- export type FeaturedProductsQueryResult = Apollo.QueryResult<Types.FeaturedProductsQuery, Types.FeaturedProductsQueryVariables>;
1446
- export declare const FilterOptionsDocument: Apollo.DocumentNode;
1447
- /**
1448
- * __useFilterOptionsQuery__
1449
- *
1450
- * To run a query within a React component, call `useFilterOptionsQuery` and pass it any options that fit your needs.
1451
- * When your component renders, `useFilterOptionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1452
- * you can use to render your UI.
1453
- *
1454
- * @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;
1455
- *
1456
- * @example
1457
- * const { data, loading, error } = useFilterOptionsQuery({
1458
- * variables: {
1459
- * type: // value for 'type'
1460
- * },
1461
- * });
1462
- */
1463
- export declare function useFilterOptionsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables, "empty" | "complete" | "streaming", Types.FilterOptionsQueryVariables>;
1464
- export declare function useFilterOptionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables, "empty" | "complete" | "streaming">;
1465
- export declare function useFilterOptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>;
1466
- export declare function useFilterOptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.FilterOptionsQuery | undefined, Types.FilterOptionsQueryVariables>;
1467
- export type FilterOptionsQueryHookResult = ReturnType<typeof useFilterOptionsQuery>;
1468
- export type FilterOptionsLazyQueryHookResult = ReturnType<typeof useFilterOptionsLazyQuery>;
1469
- export type FilterOptionsSuspenseQueryHookResult = ReturnType<typeof useFilterOptionsSuspenseQuery>;
1470
- export type FilterOptionsQueryResult = Apollo.QueryResult<Types.FilterOptionsQuery, Types.FilterOptionsQueryVariables>;
1471
- export declare const MyEntitlementsDocument: Apollo.DocumentNode;
1472
- /**
1473
- * __useMyEntitlementsQuery__
1474
- *
1475
- * To run a query within a React component, call `useMyEntitlementsQuery` and pass it any options that fit your needs.
1476
- * When your component renders, `useMyEntitlementsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1477
- * you can use to render your UI.
1478
- *
1479
- * @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;
1480
- *
1481
- * @example
1482
- * const { data, loading, error } = useMyEntitlementsQuery({
1483
- * variables: {
1484
- * limit: // value for 'limit'
1485
- * offset: // value for 'offset'
1486
- * },
1487
- * });
1488
- */
1489
- export declare function useMyEntitlementsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables, "empty" | "complete" | "streaming", Types.MyEntitlementsQueryVariables>;
1490
- export declare function useMyEntitlementsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables, "empty" | "complete" | "streaming">;
1491
- export declare function useMyEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>;
1492
- export declare function useMyEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEntitlementsQuery | undefined, Types.MyEntitlementsQueryVariables>;
1493
- export type MyEntitlementsQueryHookResult = ReturnType<typeof useMyEntitlementsQuery>;
1494
- export type MyEntitlementsLazyQueryHookResult = ReturnType<typeof useMyEntitlementsLazyQuery>;
1495
- export type MyEntitlementsSuspenseQueryHookResult = ReturnType<typeof useMyEntitlementsSuspenseQuery>;
1496
- export type MyEntitlementsQueryResult = Apollo.QueryResult<Types.MyEntitlementsQuery, Types.MyEntitlementsQueryVariables>;
1497
- export declare const MyPublishedProductsDocument: Apollo.DocumentNode;
1498
- /**
1499
- * __useMyPublishedProductsQuery__
1500
- *
1501
- * To run a query within a React component, call `useMyPublishedProductsQuery` and pass it any options that fit your needs.
1502
- * When your component renders, `useMyPublishedProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1503
- * you can use to render your UI.
1504
- *
1505
- * @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;
1506
- *
1507
- * @example
1508
- * const { data, loading, error } = useMyPublishedProductsQuery({
1509
- * variables: {
1510
- * limit: // value for 'limit'
1511
- * offset: // value for 'offset'
1512
- * },
1513
- * });
1514
- */
1515
- export declare function useMyPublishedProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables, "empty" | "complete" | "streaming", Types.MyPublishedProductsQueryVariables>;
1516
- export declare function useMyPublishedProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables, "empty" | "complete" | "streaming">;
1517
- export declare function useMyPublishedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>;
1518
- export declare function useMyPublishedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPublishedProductsQuery | undefined, Types.MyPublishedProductsQueryVariables>;
1519
- export type MyPublishedProductsQueryHookResult = ReturnType<typeof useMyPublishedProductsQuery>;
1520
- export type MyPublishedProductsLazyQueryHookResult = ReturnType<typeof useMyPublishedProductsLazyQuery>;
1521
- export type MyPublishedProductsSuspenseQueryHookResult = ReturnType<typeof useMyPublishedProductsSuspenseQuery>;
1522
- export type MyPublishedProductsQueryResult = Apollo.QueryResult<Types.MyPublishedProductsQuery, Types.MyPublishedProductsQueryVariables>;
1523
- export declare const ProductReviewsDocument: Apollo.DocumentNode;
1524
- /**
1525
- * __useProductReviewsQuery__
1526
- *
1527
- * To run a query within a React component, call `useProductReviewsQuery` and pass it any options that fit your needs.
1528
- * When your component renders, `useProductReviewsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1529
- * you can use to render your UI.
1530
- *
1531
- * @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;
1532
- *
1533
- * @example
1534
- * const { data, loading, error } = useProductReviewsQuery({
1535
- * variables: {
1536
- * productId: // value for 'productId'
1537
- * status: // value for 'status'
1538
- * },
1539
- * });
1540
- */
1541
- export declare function useProductReviewsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables> & ({
1542
- variables: Types.ProductReviewsQueryVariables;
1543
- skip?: boolean;
1544
- } | {
1545
- skip: boolean;
1546
- })): ApolloReactHooks.useQuery.Result<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables, "empty" | "complete" | "streaming", Types.ProductReviewsQueryVariables>;
1547
- export declare function useProductReviewsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables, "empty" | "complete" | "streaming">;
1548
- export declare function useProductReviewsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>;
1549
- export declare function useProductReviewsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ProductReviewsQuery | undefined, Types.ProductReviewsQueryVariables>;
1550
- export type ProductReviewsQueryHookResult = ReturnType<typeof useProductReviewsQuery>;
1551
- export type ProductReviewsLazyQueryHookResult = ReturnType<typeof useProductReviewsLazyQuery>;
1552
- export type ProductReviewsSuspenseQueryHookResult = ReturnType<typeof useProductReviewsSuspenseQuery>;
1553
- export type ProductReviewsQueryResult = Apollo.QueryResult<Types.ProductReviewsQuery, Types.ProductReviewsQueryVariables>;
1554
- export declare const SearchSuggestionsDocument: Apollo.DocumentNode;
1555
- /**
1556
- * __useSearchSuggestionsQuery__
1557
- *
1558
- * To run a query within a React component, call `useSearchSuggestionsQuery` and pass it any options that fit your needs.
1559
- * When your component renders, `useSearchSuggestionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1560
- * you can use to render your UI.
1561
- *
1562
- * @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;
1563
- *
1564
- * @example
1565
- * const { data, loading, error } = useSearchSuggestionsQuery({
1566
- * variables: {
1567
- * query: // value for 'query'
1568
- * limit: // value for 'limit'
1569
- * },
1570
- * });
1571
- */
1572
- export declare function useSearchSuggestionsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables> & ({
1573
- variables: Types.SearchSuggestionsQueryVariables;
1574
- skip?: boolean;
1575
- } | {
1576
- skip: boolean;
1577
- })): ApolloReactHooks.useQuery.Result<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables, "empty" | "complete" | "streaming", Types.SearchSuggestionsQueryVariables>;
1578
- export declare function useSearchSuggestionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables, "empty" | "complete" | "streaming">;
1579
- export declare function useSearchSuggestionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>;
1580
- export declare function useSearchSuggestionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.SearchSuggestionsQuery | undefined, Types.SearchSuggestionsQueryVariables>;
1581
- export type SearchSuggestionsQueryHookResult = ReturnType<typeof useSearchSuggestionsQuery>;
1582
- export type SearchSuggestionsLazyQueryHookResult = ReturnType<typeof useSearchSuggestionsLazyQuery>;
1583
- export type SearchSuggestionsSuspenseQueryHookResult = ReturnType<typeof useSearchSuggestionsSuspenseQuery>;
1584
- export type SearchSuggestionsQueryResult = Apollo.QueryResult<Types.SearchSuggestionsQuery, Types.SearchSuggestionsQueryVariables>;
1585
- export declare const TrendingSearchesDocument: Apollo.DocumentNode;
1586
- /**
1587
- * __useTrendingSearchesQuery__
1588
- *
1589
- * To run a query within a React component, call `useTrendingSearchesQuery` and pass it any options that fit your needs.
1590
- * When your component renders, `useTrendingSearchesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1591
- * you can use to render your UI.
1592
- *
1593
- * @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;
1594
- *
1595
- * @example
1596
- * const { data, loading, error } = useTrendingSearchesQuery({
1597
- * variables: {
1598
- * limit: // value for 'limit'
1599
- * },
1600
- * });
1601
- */
1602
- export declare function useTrendingSearchesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables, "empty" | "complete" | "streaming", Types.TrendingSearchesQueryVariables>;
1603
- export declare function useTrendingSearchesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables, "empty" | "complete" | "streaming">;
1604
- export declare function useTrendingSearchesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>;
1605
- export declare function useTrendingSearchesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.TrendingSearchesQuery | undefined, Types.TrendingSearchesQueryVariables>;
1606
- export type TrendingSearchesQueryHookResult = ReturnType<typeof useTrendingSearchesQuery>;
1607
- export type TrendingSearchesLazyQueryHookResult = ReturnType<typeof useTrendingSearchesLazyQuery>;
1608
- export type TrendingSearchesSuspenseQueryHookResult = ReturnType<typeof useTrendingSearchesSuspenseQuery>;
1609
- export type TrendingSearchesQueryResult = Apollo.QueryResult<Types.TrendingSearchesQuery, Types.TrendingSearchesQueryVariables>;
1610
- export declare const UserReviewForProductDocument: Apollo.DocumentNode;
1611
- /**
1612
- * __useUserReviewForProductQuery__
1613
- *
1614
- * To run a query within a React component, call `useUserReviewForProductQuery` and pass it any options that fit your needs.
1615
- * When your component renders, `useUserReviewForProductQuery` returns an object from Apollo Client that contains loading, error, and data properties
1616
- * you can use to render your UI.
1617
- *
1618
- * @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;
1619
- *
1620
- * @example
1621
- * const { data, loading, error } = useUserReviewForProductQuery({
1622
- * variables: {
1623
- * productId: // value for 'productId'
1624
- * },
1625
- * });
1626
- */
1627
- export declare function useUserReviewForProductQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables> & ({
1628
- variables: Types.UserReviewForProductQueryVariables;
1629
- skip?: boolean;
1630
- } | {
1631
- skip: boolean;
1632
- })): ApolloReactHooks.useQuery.Result<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables, "empty" | "complete" | "streaming", Types.UserReviewForProductQueryVariables>;
1633
- export declare function useUserReviewForProductLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables, "empty" | "complete" | "streaming">;
1634
- export declare function useUserReviewForProductSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>;
1635
- export declare function useUserReviewForProductSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.UserReviewForProductQuery | undefined, Types.UserReviewForProductQueryVariables>;
1636
- export type UserReviewForProductQueryHookResult = ReturnType<typeof useUserReviewForProductQuery>;
1637
- export type UserReviewForProductLazyQueryHookResult = ReturnType<typeof useUserReviewForProductLazyQuery>;
1638
- export type UserReviewForProductSuspenseQueryHookResult = ReturnType<typeof useUserReviewForProductSuspenseQuery>;
1639
- export type UserReviewForProductQueryResult = Apollo.QueryResult<Types.UserReviewForProductQuery, Types.UserReviewForProductQueryVariables>;
1640
- export declare const WorkspaceStoreOrdersDocument: Apollo.DocumentNode;
1641
- /**
1642
- * __useWorkspaceStoreOrdersQuery__
1643
- *
1644
- * To run a query within a React component, call `useWorkspaceStoreOrdersQuery` and pass it any options that fit your needs.
1645
- * When your component renders, `useWorkspaceStoreOrdersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1646
- * you can use to render your UI.
1647
- *
1648
- * @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;
1649
- *
1650
- * @example
1651
- * const { data, loading, error } = useWorkspaceStoreOrdersQuery({
1652
- * variables: {
1653
- * billingAccountId: // value for 'billingAccountId'
1654
- * page: // value for 'page'
1655
- * limit: // value for 'limit'
1656
- * },
1657
- * });
1658
- */
1659
- export declare function useWorkspaceStoreOrdersQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables> & ({
1660
- variables: Types.WorkspaceStoreOrdersQueryVariables;
1661
- skip?: boolean;
1662
- } | {
1663
- skip: boolean;
1664
- })): ApolloReactHooks.useQuery.Result<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables, "empty" | "complete" | "streaming", Types.WorkspaceStoreOrdersQueryVariables>;
1665
- export declare function useWorkspaceStoreOrdersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables, "empty" | "complete" | "streaming">;
1666
- export declare function useWorkspaceStoreOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>;
1667
- export declare function useWorkspaceStoreOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.WorkspaceStoreOrdersQuery | undefined, Types.WorkspaceStoreOrdersQueryVariables>;
1668
- export type WorkspaceStoreOrdersQueryHookResult = ReturnType<typeof useWorkspaceStoreOrdersQuery>;
1669
- export type WorkspaceStoreOrdersLazyQueryHookResult = ReturnType<typeof useWorkspaceStoreOrdersLazyQuery>;
1670
- export type WorkspaceStoreOrdersSuspenseQueryHookResult = ReturnType<typeof useWorkspaceStoreOrdersSuspenseQuery>;
1671
- export type WorkspaceStoreOrdersQueryResult = Apollo.QueryResult<Types.WorkspaceStoreOrdersQuery, Types.WorkspaceStoreOrdersQueryVariables>;
1672
- export declare const BrowseStoreDocument: Apollo.DocumentNode;
1673
- /**
1674
- * __useBrowseStoreQuery__
1675
- *
1676
- * To run a query within a React component, call `useBrowseStoreQuery` and pass it any options that fit your needs.
1677
- * When your component renders, `useBrowseStoreQuery` returns an object from Apollo Client that contains loading, error, and data properties
1678
- * you can use to render your UI.
1679
- *
1680
- * @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;
1681
- *
1682
- * @example
1683
- * const { data, loading, error } = useBrowseStoreQuery({
1684
- * variables: {
1685
- * input: // value for 'input'
1686
- * },
1687
- * });
1688
- */
1689
- export declare function useBrowseStoreQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables> & ({
1690
- variables: Types.BrowseStoreQueryVariables;
1691
- skip?: boolean;
1692
- } | {
1693
- skip: boolean;
1694
- })): ApolloReactHooks.useQuery.Result<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables, "empty" | "complete" | "streaming", Types.BrowseStoreQueryVariables>;
1695
- export declare function useBrowseStoreLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables, "empty" | "complete" | "streaming">;
1696
- export declare function useBrowseStoreSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>;
1697
- export declare function useBrowseStoreSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.BrowseStoreQuery | undefined, Types.BrowseStoreQueryVariables>;
1698
- export type BrowseStoreQueryHookResult = ReturnType<typeof useBrowseStoreQuery>;
1699
- export type BrowseStoreLazyQueryHookResult = ReturnType<typeof useBrowseStoreLazyQuery>;
1700
- export type BrowseStoreSuspenseQueryHookResult = ReturnType<typeof useBrowseStoreSuspenseQuery>;
1701
- export type BrowseStoreQueryResult = Apollo.QueryResult<Types.BrowseStoreQuery, Types.BrowseStoreQueryVariables>;
1702
- export declare const GetCartDocument: Apollo.DocumentNode;
1703
- /**
1704
- * __useGetCartQuery__
1705
- *
1706
- * To run a query within a React component, call `useGetCartQuery` and pass it any options that fit your needs.
1707
- * When your component renders, `useGetCartQuery` returns an object from Apollo Client that contains loading, error, and data properties
1708
- * you can use to render your UI.
1709
- *
1710
- * @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;
1711
- *
1712
- * @example
1713
- * const { data, loading, error } = useGetCartQuery({
1714
- * variables: {
1715
- * },
1716
- * });
1717
- */
1718
- export declare function useGetCartQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetCartQuery, Types.GetCartQueryVariables, "empty" | "complete" | "streaming", Types.GetCartQueryVariables>;
1719
- export declare function useGetCartLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetCartQuery, Types.GetCartQueryVariables, "empty" | "complete" | "streaming">;
1720
- export declare function useGetCartSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCartQuery, Types.GetCartQueryVariables>;
1721
- export declare function useGetCartSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCartQuery, Types.GetCartQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCartQuery | undefined, Types.GetCartQueryVariables>;
1722
- export type GetCartQueryHookResult = ReturnType<typeof useGetCartQuery>;
1723
- export type GetCartLazyQueryHookResult = ReturnType<typeof useGetCartLazyQuery>;
1724
- export type GetCartSuspenseQueryHookResult = ReturnType<typeof useGetCartSuspenseQuery>;
1725
- export type GetCartQueryResult = Apollo.QueryResult<Types.GetCartQuery, Types.GetCartQueryVariables>;
1726
- export declare const GetMyStoreInstallationsDocument: Apollo.DocumentNode;
1727
- /**
1728
- * __useGetMyStoreInstallationsQuery__
1729
- *
1730
- * To run a query within a React component, call `useGetMyStoreInstallationsQuery` and pass it any options that fit your needs.
1731
- * When your component renders, `useGetMyStoreInstallationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1732
- * you can use to render your UI.
1733
- *
1734
- * @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;
1735
- *
1736
- * @example
1737
- * const { data, loading, error } = useGetMyStoreInstallationsQuery({
1738
- * variables: {
1739
- * limit: // value for 'limit'
1740
- * offset: // value for 'offset'
1741
- * filter: // value for 'filter'
1742
- * },
1743
- * });
1744
- */
1745
- export declare function useGetMyStoreInstallationsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables, "empty" | "complete" | "streaming", Types.GetMyStoreInstallationsQueryVariables>;
1746
- export declare function useGetMyStoreInstallationsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables, "empty" | "complete" | "streaming">;
1747
- export declare function useGetMyStoreInstallationsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>;
1748
- export declare function useGetMyStoreInstallationsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyStoreInstallationsQuery | undefined, Types.GetMyStoreInstallationsQueryVariables>;
1749
- export type GetMyStoreInstallationsQueryHookResult = ReturnType<typeof useGetMyStoreInstallationsQuery>;
1750
- export type GetMyStoreInstallationsLazyQueryHookResult = ReturnType<typeof useGetMyStoreInstallationsLazyQuery>;
1751
- export type GetMyStoreInstallationsSuspenseQueryHookResult = ReturnType<typeof useGetMyStoreInstallationsSuspenseQuery>;
1752
- export type GetMyStoreInstallationsQueryResult = Apollo.QueryResult<Types.GetMyStoreInstallationsQuery, Types.GetMyStoreInstallationsQueryVariables>;
1753
- export declare const GetMyOrdersDocument: Apollo.DocumentNode;
1754
- /**
1755
- * __useGetMyOrdersQuery__
1756
- *
1757
- * To run a query within a React component, call `useGetMyOrdersQuery` and pass it any options that fit your needs.
1758
- * When your component renders, `useGetMyOrdersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1759
- * you can use to render your UI.
1760
- *
1761
- * @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;
1762
- *
1763
- * @example
1764
- * const { data, loading, error } = useGetMyOrdersQuery({
1765
- * variables: {
1766
- * limit: // value for 'limit'
1767
- * offset: // value for 'offset'
1768
- * status: // value for 'status'
1769
- * },
1770
- * });
1771
- */
1772
- export declare function useGetMyOrdersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables, "empty" | "complete" | "streaming", Types.GetMyOrdersQueryVariables>;
1773
- export declare function useGetMyOrdersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables, "empty" | "complete" | "streaming">;
1774
- export declare function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>;
1775
- export declare function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyOrdersQuery | undefined, Types.GetMyOrdersQueryVariables>;
1776
- export type GetMyOrdersQueryHookResult = ReturnType<typeof useGetMyOrdersQuery>;
1777
- export type GetMyOrdersLazyQueryHookResult = ReturnType<typeof useGetMyOrdersLazyQuery>;
1778
- export type GetMyOrdersSuspenseQueryHookResult = ReturnType<typeof useGetMyOrdersSuspenseQuery>;
1779
- export type GetMyOrdersQueryResult = Apollo.QueryResult<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>;
1780
- export declare const GetProductDocument: Apollo.DocumentNode;
1781
- /**
1782
- * __useGetProductQuery__
1783
- *
1784
- * To run a query within a React component, call `useGetProductQuery` and pass it any options that fit your needs.
1785
- * When your component renders, `useGetProductQuery` returns an object from Apollo Client that contains loading, error, and data properties
1786
- * you can use to render your UI.
1787
- *
1788
- * @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;
1789
- *
1790
- * @example
1791
- * const { data, loading, error } = useGetProductQuery({
1792
- * variables: {
1793
- * id: // value for 'id'
1794
- * },
1795
- * });
1796
- */
1797
- export declare function useGetProductQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables> & ({
1798
- variables: Types.GetProductQueryVariables;
1799
- skip?: boolean;
1800
- } | {
1801
- skip: boolean;
1802
- })): ApolloReactHooks.useQuery.Result<Types.GetProductQuery, Types.GetProductQueryVariables, "empty" | "complete" | "streaming", Types.GetProductQueryVariables>;
1803
- export declare function useGetProductLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetProductQuery, Types.GetProductQueryVariables, "empty" | "complete" | "streaming">;
1804
- export declare function useGetProductSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductQuery, Types.GetProductQueryVariables>;
1805
- export declare function useGetProductSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductQuery | undefined, Types.GetProductQueryVariables>;
1806
- export type GetProductQueryHookResult = ReturnType<typeof useGetProductQuery>;
1807
- export type GetProductLazyQueryHookResult = ReturnType<typeof useGetProductLazyQuery>;
1808
- export type GetProductSuspenseQueryHookResult = ReturnType<typeof useGetProductSuspenseQuery>;
1809
- export type GetProductQueryResult = Apollo.QueryResult<Types.GetProductQuery, Types.GetProductQueryVariables>;
1810
- export declare const GetProductsDocument: Apollo.DocumentNode;
1811
- /**
1812
- * __useGetProductsQuery__
1813
- *
1814
- * To run a query within a React component, call `useGetProductsQuery` and pass it any options that fit your needs.
1815
- * When your component renders, `useGetProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1816
- * you can use to render your UI.
1817
- *
1818
- * @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;
1819
- *
1820
- * @example
1821
- * const { data, loading, error } = useGetProductsQuery({
1822
- * variables: {
1823
- * filter: // value for 'filter'
1824
- * limit: // value for 'limit'
1825
- * offset: // value for 'offset'
1826
- * },
1827
- * });
1828
- */
1829
- export declare function useGetProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetProductsQuery, Types.GetProductsQueryVariables, "empty" | "complete" | "streaming", Types.GetProductsQueryVariables>;
1830
- export declare function useGetProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetProductsQuery, Types.GetProductsQueryVariables, "empty" | "complete" | "streaming">;
1831
- export declare function useGetProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductsQuery, Types.GetProductsQueryVariables>;
1832
- export declare function useGetProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductsQuery, Types.GetProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductsQuery | undefined, Types.GetProductsQueryVariables>;
1833
- export type GetProductsQueryHookResult = ReturnType<typeof useGetProductsQuery>;
1834
- export type GetProductsLazyQueryHookResult = ReturnType<typeof useGetProductsLazyQuery>;
1835
- export type GetProductsSuspenseQueryHookResult = ReturnType<typeof useGetProductsSuspenseQuery>;
1836
- export type GetProductsQueryResult = Apollo.QueryResult<Types.GetProductsQuery, Types.GetProductsQueryVariables>;
1837
- export declare const GetStoreAppInstallationDocument: Apollo.DocumentNode;
1838
- /**
1839
- * __useGetStoreAppInstallationQuery__
1840
- *
1841
- * To run a query within a React component, call `useGetStoreAppInstallationQuery` and pass it any options that fit your needs.
1842
- * When your component renders, `useGetStoreAppInstallationQuery` returns an object from Apollo Client that contains loading, error, and data properties
1843
- * you can use to render your UI.
1844
- *
1845
- * @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;
1846
- *
1847
- * @example
1848
- * const { data, loading, error } = useGetStoreAppInstallationQuery({
1849
- * variables: {
1850
- * id: // value for 'id'
1851
- * },
1852
- * });
1853
- */
1854
- export declare function useGetStoreAppInstallationQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables> & ({
1855
- variables: Types.GetStoreAppInstallationQueryVariables;
1856
- skip?: boolean;
1857
- } | {
1858
- skip: boolean;
1859
- })): ApolloReactHooks.useQuery.Result<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables, "empty" | "complete" | "streaming", Types.GetStoreAppInstallationQueryVariables>;
1860
- export declare function useGetStoreAppInstallationLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables, "empty" | "complete" | "streaming">;
1861
- export declare function useGetStoreAppInstallationSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>;
1862
- export declare function useGetStoreAppInstallationSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreAppInstallationQuery | undefined, Types.GetStoreAppInstallationQueryVariables>;
1863
- export type GetStoreAppInstallationQueryHookResult = ReturnType<typeof useGetStoreAppInstallationQuery>;
1864
- export type GetStoreAppInstallationLazyQueryHookResult = ReturnType<typeof useGetStoreAppInstallationLazyQuery>;
1865
- export type GetStoreAppInstallationSuspenseQueryHookResult = ReturnType<typeof useGetStoreAppInstallationSuspenseQuery>;
1866
- export type GetStoreAppInstallationQueryResult = Apollo.QueryResult<Types.GetStoreAppInstallationQuery, Types.GetStoreAppInstallationQueryVariables>;
1867
- export declare const HomeGroupedProductsDocument: Apollo.DocumentNode;
1868
- /**
1869
- * __useHomeGroupedProductsQuery__
1870
- *
1871
- * To run a query within a React component, call `useHomeGroupedProductsQuery` and pass it any options that fit your needs.
1872
- * When your component renders, `useHomeGroupedProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1873
- * you can use to render your UI.
1874
- *
1875
- * @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;
1876
- *
1877
- * @example
1878
- * const { data, loading, error } = useHomeGroupedProductsQuery({
1879
- * variables: {
1880
- * compatibleWith: // value for 'compatibleWith'
1881
- * },
1882
- * });
1883
- */
1884
- export declare function useHomeGroupedProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables, "empty" | "complete" | "streaming", Types.HomeGroupedProductsQueryVariables>;
1885
- export declare function useHomeGroupedProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables, "empty" | "complete" | "streaming">;
1886
- export declare function useHomeGroupedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>;
1887
- export declare function useHomeGroupedProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.HomeGroupedProductsQuery | undefined, Types.HomeGroupedProductsQueryVariables>;
1888
- export type HomeGroupedProductsQueryHookResult = ReturnType<typeof useHomeGroupedProductsQuery>;
1889
- export type HomeGroupedProductsLazyQueryHookResult = ReturnType<typeof useHomeGroupedProductsLazyQuery>;
1890
- export type HomeGroupedProductsSuspenseQueryHookResult = ReturnType<typeof useHomeGroupedProductsSuspenseQuery>;
1891
- export type HomeGroupedProductsQueryResult = Apollo.QueryResult<Types.HomeGroupedProductsQuery, Types.HomeGroupedProductsQueryVariables>;
1892
- export declare const StoreProductDetailsDocument: Apollo.DocumentNode;
1893
- /**
1894
- * __useStoreProductDetailsQuery__
1895
- *
1896
- * To run a query within a React component, call `useStoreProductDetailsQuery` and pass it any options that fit your needs.
1897
- * When your component renders, `useStoreProductDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1898
- * you can use to render your UI.
1899
- *
1900
- * @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;
1901
- *
1902
- * @example
1903
- * const { data, loading, error } = useStoreProductDetailsQuery({
1904
- * variables: {
1905
- * input: // value for 'input'
1906
- * },
1907
- * });
1908
- */
1909
- export declare function useStoreProductDetailsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables> & ({
1910
- variables: Types.StoreProductDetailsQueryVariables;
1911
- skip?: boolean;
1912
- } | {
1913
- skip: boolean;
1914
- })): ApolloReactHooks.useQuery.Result<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables, "empty" | "complete" | "streaming", Types.StoreProductDetailsQueryVariables>;
1915
- export declare function useStoreProductDetailsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables, "empty" | "complete" | "streaming">;
1916
- export declare function useStoreProductDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>;
1917
- export declare function useStoreProductDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.StoreProductDetailsQuery | undefined, Types.StoreProductDetailsQueryVariables>;
1918
- export type StoreProductDetailsQueryHookResult = ReturnType<typeof useStoreProductDetailsQuery>;
1919
- export type StoreProductDetailsLazyQueryHookResult = ReturnType<typeof useStoreProductDetailsLazyQuery>;
1920
- export type StoreProductDetailsSuspenseQueryHookResult = ReturnType<typeof useStoreProductDetailsSuspenseQuery>;
1921
- export type StoreProductDetailsQueryResult = Apollo.QueryResult<Types.StoreProductDetailsQuery, Types.StoreProductDetailsQueryVariables>;
1922
- export declare const InstallationStatusUpdatedDocument: Apollo.DocumentNode;
1923
- /**
1924
- * __useInstallationStatusUpdatedSubscription__
1925
- *
1926
- * To run a query within a React component, call `useInstallationStatusUpdatedSubscription` and pass it any options that fit your needs.
1927
- * When your component renders, `useInstallationStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1928
- * you can use to render your UI.
1929
- *
1930
- * @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;
1931
- *
1932
- * @example
1933
- * const { data, loading, error } = useInstallationStatusUpdatedSubscription({
1934
- * variables: {
1935
- * workspaceId: // value for 'workspaceId'
1936
- * },
1937
- * });
1938
- */
1939
- export declare function useInstallationStatusUpdatedSubscription(baseOptions: ApolloReactHooks.SubscriptionHookOptions<Types.InstallationStatusUpdatedSubscription, Types.InstallationStatusUpdatedSubscriptionVariables> & ({
1940
- variables: Types.InstallationStatusUpdatedSubscriptionVariables;
1941
- skip?: boolean;
1942
- } | {
1943
- skip: boolean;
1944
- })): ApolloReactHooks.useSubscription.Result<Types.InstallationStatusUpdatedSubscription>;
1945
- export type InstallationStatusUpdatedSubscriptionHookResult = ReturnType<typeof useInstallationStatusUpdatedSubscription>;
1946
- export type InstallationStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.InstallationStatusUpdatedSubscription>;
1947
- export declare const LicenseStatusUpdatedDocument: Apollo.DocumentNode;
1948
- /**
1949
- * __useLicenseStatusUpdatedSubscription__
1950
- *
1951
- * To run a query within a React component, call `useLicenseStatusUpdatedSubscription` and pass it any options that fit your needs.
1952
- * When your component renders, `useLicenseStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1953
- * you can use to render your UI.
1954
- *
1955
- * @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;
1956
- *
1957
- * @example
1958
- * const { data, loading, error } = useLicenseStatusUpdatedSubscription({
1959
- * variables: {
1960
- * workspaceId: // value for 'workspaceId'
1961
- * },
1962
- * });
1963
- */
1964
- export declare function useLicenseStatusUpdatedSubscription(baseOptions?: ApolloReactHooks.SubscriptionHookOptions<Types.LicenseStatusUpdatedSubscription, Types.LicenseStatusUpdatedSubscriptionVariables>): ApolloReactHooks.useSubscription.Result<Types.LicenseStatusUpdatedSubscription>;
1965
- export type LicenseStatusUpdatedSubscriptionHookResult = ReturnType<typeof useLicenseStatusUpdatedSubscription>;
1966
- export type LicenseStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.LicenseStatusUpdatedSubscription>;
1967
- export declare const OrderStatusUpdatedDocument: Apollo.DocumentNode;
1968
- /**
1969
- * __useOrderStatusUpdatedSubscription__
1970
- *
1971
- * To run a query within a React component, call `useOrderStatusUpdatedSubscription` and pass it any options that fit your needs.
1972
- * When your component renders, `useOrderStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1973
- * you can use to render your UI.
1974
- *
1975
- * @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;
1976
- *
1977
- * @example
1978
- * const { data, loading, error } = useOrderStatusUpdatedSubscription({
1979
- * variables: {
1980
- * orderId: // value for 'orderId'
1981
- * workspaceId: // value for 'workspaceId'
1982
- * },
1983
- * });
1984
- */
1985
- export declare function useOrderStatusUpdatedSubscription(baseOptions?: ApolloReactHooks.SubscriptionHookOptions<Types.OrderStatusUpdatedSubscription, Types.OrderStatusUpdatedSubscriptionVariables>): ApolloReactHooks.useSubscription.Result<Types.OrderStatusUpdatedSubscription>;
1986
- export type OrderStatusUpdatedSubscriptionHookResult = ReturnType<typeof useOrderStatusUpdatedSubscription>;
1987
- export type OrderStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.OrderStatusUpdatedSubscription>;
1988
- export declare const SubmissionStatusUpdatedDocument: Apollo.DocumentNode;
1989
- /**
1990
- * __useSubmissionStatusUpdatedSubscription__
1991
- *
1992
- * To run a query within a React component, call `useSubmissionStatusUpdatedSubscription` and pass it any options that fit your needs.
1993
- * When your component renders, `useSubmissionStatusUpdatedSubscription` returns an object from Apollo Client that contains loading, error, and data properties
1994
- * you can use to render your UI.
1995
- *
1996
- * @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;
1997
- *
1998
- * @example
1999
- * const { data, loading, error } = useSubmissionStatusUpdatedSubscription({
2000
- * variables: {
2001
- * publisherId: // value for 'publisherId'
2002
- * },
2003
- * });
2004
- */
2005
- export declare function useSubmissionStatusUpdatedSubscription(baseOptions: ApolloReactHooks.SubscriptionHookOptions<Types.SubmissionStatusUpdatedSubscription, Types.SubmissionStatusUpdatedSubscriptionVariables> & ({
2006
- variables: Types.SubmissionStatusUpdatedSubscriptionVariables;
2007
- skip?: boolean;
2008
- } | {
2009
- skip: boolean;
2010
- })): ApolloReactHooks.useSubscription.Result<Types.SubmissionStatusUpdatedSubscription>;
2011
- export type SubmissionStatusUpdatedSubscriptionHookResult = ReturnType<typeof useSubmissionStatusUpdatedSubscription>;
2012
- export type SubmissionStatusUpdatedSubscriptionResult = Apollo.SubscriptionResult<Types.SubmissionStatusUpdatedSubscription>;