@restorecommerce/facade 0.3.5 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/dist/gql/protos/graphql.d.ts +4 -2
- package/dist/gql/protos/graphql.js +93 -167
- package/dist/gql/protos/registry.d.ts +1 -0
- package/dist/gql/protos/registry.js +52 -7
- package/dist/gql/protos/utils.d.ts +1 -1
- package/dist/gql/protos/utils.js +1 -1
- package/dist/modules/access-control/gql/schema.generated.d.ts +7 -41
- package/dist/modules/catalog/gql/schema.generated.d.ts +7 -51
- package/dist/modules/fulfillment/gql/schema.generated.d.ts +9 -70
- package/dist/modules/identity/gql/schema.generated.d.ts +9 -88
- package/dist/modules/indexing/gql/schema.generated.d.ts +8 -10
- package/dist/modules/invoicing/gql/schema.generated.d.ts +7 -29
- package/dist/modules/notification/gql/schema.generated.d.ts +7 -29
- package/dist/modules/ordering/gql/schema.generated.d.ts +7 -39
- package/dist/modules/ostorage/gql/schema.generated.d.ts +10 -31
- package/dist/modules/payment/gql/schema.generated.d.ts +0 -8
- package/dist/modules/resource/gql/schema.generated.d.ts +9 -72
- package/dist/modules/scheduling/gql/schema.generated.d.ts +9 -38
- package/package.json +2 -2
@@ -23,7 +23,7 @@ export declare type Scalars = {
|
|
23
23
|
Boolean: boolean;
|
24
24
|
Int: number;
|
25
25
|
Float: number;
|
26
|
-
|
26
|
+
GoogleProtobufAnyValue: any;
|
27
27
|
};
|
28
28
|
export declare type Query = {
|
29
29
|
__typename?: 'Query';
|
@@ -78,35 +78,25 @@ export declare type IoRestorecommerceStatusOperationStatus = {
|
|
78
78
|
export declare type IIoRestorecommerceAccessControlRequest = {
|
79
79
|
target?: InputMaybe<IIoRestorecommerceRuleTarget>;
|
80
80
|
context?: InputMaybe<IIoRestorecommerceAccessControlContext>;
|
81
|
-
/** target scope */
|
82
|
-
scope?: InputMaybe<Scalars['String']>;
|
83
81
|
};
|
84
82
|
export declare type IIoRestorecommerceRuleTarget = {
|
85
83
|
subject?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
86
84
|
resources?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
87
85
|
action?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
88
|
-
/** target scope */
|
89
|
-
scope?: InputMaybe<Scalars['String']>;
|
90
86
|
};
|
91
87
|
export declare type IIoRestorecommerceAttributeAttribute = {
|
92
88
|
id?: InputMaybe<Scalars['String']>;
|
93
89
|
value?: InputMaybe<Scalars['String']>;
|
94
90
|
attribute?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
95
|
-
/** target scope */
|
96
|
-
scope?: InputMaybe<Scalars['String']>;
|
97
91
|
};
|
98
92
|
export declare type IIoRestorecommerceAccessControlContext = {
|
99
93
|
subject?: InputMaybe<IGoogleProtobufAny>;
|
100
94
|
resources?: InputMaybe<Array<IGoogleProtobufAny>>;
|
101
95
|
security?: InputMaybe<IGoogleProtobufAny>;
|
102
|
-
/** target scope */
|
103
|
-
scope?: InputMaybe<Scalars['String']>;
|
104
96
|
};
|
105
97
|
export declare type IGoogleProtobufAny = {
|
106
98
|
typeUrl?: InputMaybe<Scalars['String']>;
|
107
|
-
value?: InputMaybe<Scalars['
|
108
|
-
/** target scope */
|
109
|
-
scope?: InputMaybe<Scalars['String']>;
|
99
|
+
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
110
100
|
};
|
111
101
|
export declare type ProtoIoRestorecommerceAccessControlReverseQuery = {
|
112
102
|
__typename?: 'ProtoIoRestorecommerceAccessControlReverseQuery';
|
@@ -263,8 +253,6 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
263
253
|
export declare type IIoRestorecommerceResourcebaseSort = {
|
264
254
|
field?: InputMaybe<Scalars['String']>;
|
265
255
|
order?: InputMaybe<IoRestorecommerceResourcebaseSortSortOrder>;
|
266
|
-
/** target scope */
|
267
|
-
scope?: InputMaybe<Scalars['String']>;
|
268
256
|
};
|
269
257
|
export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
270
258
|
Unsorted = 0,
|
@@ -274,8 +262,6 @@ export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
|
274
262
|
export declare type IIoRestorecommerceResourcebaseFilterOp = {
|
275
263
|
filter?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilter>>;
|
276
264
|
operator?: InputMaybe<IoRestorecommerceResourcebaseFilterOpOperator>;
|
277
|
-
/** target scope */
|
278
|
-
scope?: InputMaybe<Scalars['String']>;
|
279
265
|
};
|
280
266
|
export declare type IIoRestorecommerceResourcebaseFilter = {
|
281
267
|
field?: InputMaybe<Scalars['String']>;
|
@@ -283,8 +269,6 @@ export declare type IIoRestorecommerceResourcebaseFilter = {
|
|
283
269
|
value?: InputMaybe<Scalars['String']>;
|
284
270
|
type?: InputMaybe<IoRestorecommerceResourcebaseFilterValueType>;
|
285
271
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
286
|
-
/** target scope */
|
287
|
-
scope?: InputMaybe<Scalars['String']>;
|
288
272
|
};
|
289
273
|
export declare enum IoRestorecommerceResourcebaseFilterOperation {
|
290
274
|
Eq = 0,
|
@@ -307,8 +291,6 @@ export declare enum IoRestorecommerceResourcebaseFilterValueType {
|
|
307
291
|
export declare type IIoRestorecommerceFilterFilterOp = {
|
308
292
|
filter?: InputMaybe<Array<IIoRestorecommerceFilterFilter>>;
|
309
293
|
operator?: InputMaybe<IoRestorecommerceFilterFilterOpOperator>;
|
310
|
-
/** target scope */
|
311
|
-
scope?: InputMaybe<Scalars['String']>;
|
312
294
|
};
|
313
295
|
export declare type IIoRestorecommerceFilterFilter = {
|
314
296
|
field?: InputMaybe<Scalars['String']>;
|
@@ -316,8 +298,6 @@ export declare type IIoRestorecommerceFilterFilter = {
|
|
316
298
|
value?: InputMaybe<Scalars['String']>;
|
317
299
|
type?: InputMaybe<IoRestorecommerceFilterFilterValueType>;
|
318
300
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
319
|
-
/** target scope */
|
320
|
-
scope?: InputMaybe<Scalars['String']>;
|
321
301
|
};
|
322
302
|
export declare enum IoRestorecommerceResourcebaseFilterOpOperator {
|
323
303
|
And = 0,
|
@@ -326,8 +306,6 @@ export declare enum IoRestorecommerceResourcebaseFilterOpOperator {
|
|
326
306
|
export declare type IIoRestorecommerceResourcebaseFieldFilter = {
|
327
307
|
name?: InputMaybe<Scalars['String']>;
|
328
308
|
include?: InputMaybe<Scalars['Boolean']>;
|
329
|
-
/** target scope */
|
330
|
-
scope?: InputMaybe<Scalars['String']>;
|
331
309
|
};
|
332
310
|
export declare type AccessControlRuleQuery = {
|
333
311
|
__typename?: 'AccessControlRuleQuery';
|
@@ -433,8 +411,6 @@ export declare type IIoRestorecommercePolicyPolicy = {
|
|
433
411
|
effect?: InputMaybe<IoRestorecommerceRuleEffect>;
|
434
412
|
combiningAlgorithm?: InputMaybe<Scalars['String']>;
|
435
413
|
evaluationCacheable?: InputMaybe<Scalars['Boolean']>;
|
436
|
-
/** target scope */
|
437
|
-
scope?: InputMaybe<Scalars['String']>;
|
438
414
|
};
|
439
415
|
export declare type IIoRestorecommerceMetaMeta = {
|
440
416
|
created?: InputMaybe<Scalars['Float']>;
|
@@ -442,13 +418,9 @@ export declare type IIoRestorecommerceMetaMeta = {
|
|
442
418
|
modifiedBy?: InputMaybe<Scalars['String']>;
|
443
419
|
owner?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
444
420
|
acl?: InputMaybe<Array<IIoRestorecommerceAttributeAttributeObj>>;
|
445
|
-
/** target scope */
|
446
|
-
scope?: InputMaybe<Scalars['String']>;
|
447
421
|
};
|
448
422
|
export declare type IIoRestorecommerceAttributeAttributeObj = {
|
449
423
|
attribute?: InputMaybe<IIoRestorecommerceAttributeAttribute>;
|
450
|
-
/** target scope */
|
451
|
-
scope?: InputMaybe<Scalars['String']>;
|
452
424
|
};
|
453
425
|
export declare enum ModeType {
|
454
426
|
Create = "CREATE",
|
@@ -498,14 +470,10 @@ export declare type IIoRestorecommerceRuleRule = {
|
|
498
470
|
condition?: InputMaybe<Scalars['String']>;
|
499
471
|
effect?: InputMaybe<IoRestorecommerceRuleEffect>;
|
500
472
|
evaluationCacheable?: InputMaybe<Scalars['Boolean']>;
|
501
|
-
/** target scope */
|
502
|
-
scope?: InputMaybe<Scalars['String']>;
|
503
473
|
};
|
504
474
|
export declare type IIoRestorecommerceRuleContextQuery = {
|
505
475
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
506
476
|
query?: InputMaybe<Scalars['String']>;
|
507
|
-
/** target scope */
|
508
|
-
scope?: InputMaybe<Scalars['String']>;
|
509
477
|
};
|
510
478
|
export declare type AccessControlPolicySetMutation = {
|
511
479
|
__typename?: 'AccessControlPolicySetMutation';
|
@@ -533,8 +501,6 @@ export declare type IIoRestorecommercePolicySetPolicySet = {
|
|
533
501
|
target?: InputMaybe<IIoRestorecommerceRuleTarget>;
|
534
502
|
combiningAlgorithm?: InputMaybe<Scalars['String']>;
|
535
503
|
policies?: InputMaybe<Array<Scalars['String']>>;
|
536
|
-
/** target scope */
|
537
|
-
scope?: InputMaybe<Scalars['String']>;
|
538
504
|
};
|
539
505
|
export declare type WithIndex<TObject> = TObject & Record<string, any>;
|
540
506
|
export declare type ResolversObject<TObject> = WithIndex<TObject>;
|
@@ -582,7 +548,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
582
548
|
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
583
549
|
IIoRestorecommerceAccessControlContext: IIoRestorecommerceAccessControlContext;
|
584
550
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
585
|
-
|
551
|
+
GoogleProtobufAnyValue: ResolverTypeWrapper<Scalars['GoogleProtobufAnyValue']>;
|
586
552
|
ProtoIoRestorecommerceAccessControlReverseQuery: ResolverTypeWrapper<ProtoIoRestorecommerceAccessControlReverseQuery>;
|
587
553
|
IoRestorecommerceAccessControlReverseQuery: ResolverTypeWrapper<IoRestorecommerceAccessControlReverseQuery>;
|
588
554
|
IoRestorecommercePolicySetPolicySetRQ: ResolverTypeWrapper<IoRestorecommercePolicySetPolicySetRq>;
|
@@ -662,7 +628,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
662
628
|
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
663
629
|
IIoRestorecommerceAccessControlContext: IIoRestorecommerceAccessControlContext;
|
664
630
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
665
|
-
|
631
|
+
GoogleProtobufAnyValue: Scalars['GoogleProtobufAnyValue'];
|
666
632
|
ProtoIoRestorecommerceAccessControlReverseQuery: ProtoIoRestorecommerceAccessControlReverseQuery;
|
667
633
|
IoRestorecommerceAccessControlReverseQuery: IoRestorecommerceAccessControlReverseQuery;
|
668
634
|
IoRestorecommercePolicySetPolicySetRQ: IoRestorecommercePolicySetPolicySetRq;
|
@@ -759,8 +725,8 @@ export declare type IoRestorecommerceStatusOperationStatusResolvers<ContextType
|
|
759
725
|
message?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
760
726
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
761
727
|
}>;
|
762
|
-
export interface
|
763
|
-
name: '
|
728
|
+
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
729
|
+
name: 'GoogleProtobufAnyValue';
|
764
730
|
}
|
765
731
|
export declare type ProtoIoRestorecommerceAccessControlReverseQueryResolvers<ContextType = AccessControlContext, ParentType extends ResolversParentTypes['ProtoIoRestorecommerceAccessControlReverseQuery'] = ResolversParentTypes['ProtoIoRestorecommerceAccessControlReverseQuery']> = ResolversObject<{
|
766
732
|
details?: Resolver<Maybe<ResolversTypes['IoRestorecommerceAccessControlReverseQuery']>, ParentType, ContextType>;
|
@@ -1027,7 +993,7 @@ export declare type Resolvers<ContextType = AccessControlContext> = ResolversObj
|
|
1027
993
|
IoRestorecommerceAccessControlResponseDecision?: IoRestorecommerceAccessControlResponseDecisionResolvers;
|
1028
994
|
IoRestorecommerceAttributeAttribute?: IoRestorecommerceAttributeAttributeResolvers<ContextType>;
|
1029
995
|
IoRestorecommerceStatusOperationStatus?: IoRestorecommerceStatusOperationStatusResolvers<ContextType>;
|
1030
|
-
|
996
|
+
GoogleProtobufAnyValue?: GraphQLScalarType;
|
1031
997
|
ProtoIoRestorecommerceAccessControlReverseQuery?: ProtoIoRestorecommerceAccessControlReverseQueryResolvers<ContextType>;
|
1032
998
|
IoRestorecommerceAccessControlReverseQuery?: IoRestorecommerceAccessControlReverseQueryResolvers<ContextType>;
|
1033
999
|
IoRestorecommercePolicySetPolicySetRQ?: IoRestorecommercePolicySetPolicySetRqResolvers<ContextType>;
|
@@ -23,7 +23,7 @@ export declare type Scalars = {
|
|
23
23
|
Boolean: boolean;
|
24
24
|
Int: number;
|
25
25
|
Float: number;
|
26
|
-
|
26
|
+
GoogleProtobufAnyValue: any;
|
27
27
|
};
|
28
28
|
export declare type Query = {
|
29
29
|
__typename?: 'Query';
|
@@ -168,8 +168,6 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
168
168
|
export declare type IIoRestorecommerceResourcebaseSort = {
|
169
169
|
field?: InputMaybe<Scalars['String']>;
|
170
170
|
order?: InputMaybe<IoRestorecommerceResourcebaseSortSortOrder>;
|
171
|
-
/** target scope */
|
172
|
-
scope?: InputMaybe<Scalars['String']>;
|
173
171
|
};
|
174
172
|
export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
175
173
|
Unsorted = 0,
|
@@ -179,8 +177,6 @@ export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
|
179
177
|
export declare type IIoRestorecommerceResourcebaseFilterOp = {
|
180
178
|
filter?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilter>>;
|
181
179
|
operator?: InputMaybe<IoRestorecommerceResourcebaseFilterOpOperator>;
|
182
|
-
/** target scope */
|
183
|
-
scope?: InputMaybe<Scalars['String']>;
|
184
180
|
};
|
185
181
|
export declare type IIoRestorecommerceResourcebaseFilter = {
|
186
182
|
field?: InputMaybe<Scalars['String']>;
|
@@ -188,8 +184,6 @@ export declare type IIoRestorecommerceResourcebaseFilter = {
|
|
188
184
|
value?: InputMaybe<Scalars['String']>;
|
189
185
|
type?: InputMaybe<IoRestorecommerceResourcebaseFilterValueType>;
|
190
186
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
191
|
-
/** target scope */
|
192
|
-
scope?: InputMaybe<Scalars['String']>;
|
193
187
|
};
|
194
188
|
export declare enum IoRestorecommerceResourcebaseFilterOperation {
|
195
189
|
Eq = 0,
|
@@ -212,8 +206,6 @@ export declare enum IoRestorecommerceResourcebaseFilterValueType {
|
|
212
206
|
export declare type IIoRestorecommerceFilterFilterOp = {
|
213
207
|
filter?: InputMaybe<Array<IIoRestorecommerceFilterFilter>>;
|
214
208
|
operator?: InputMaybe<IoRestorecommerceFilterFilterOpOperator>;
|
215
|
-
/** target scope */
|
216
|
-
scope?: InputMaybe<Scalars['String']>;
|
217
209
|
};
|
218
210
|
export declare type IIoRestorecommerceFilterFilter = {
|
219
211
|
field?: InputMaybe<Scalars['String']>;
|
@@ -221,8 +213,6 @@ export declare type IIoRestorecommerceFilterFilter = {
|
|
221
213
|
value?: InputMaybe<Scalars['String']>;
|
222
214
|
type?: InputMaybe<IoRestorecommerceFilterFilterValueType>;
|
223
215
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
224
|
-
/** target scope */
|
225
|
-
scope?: InputMaybe<Scalars['String']>;
|
226
216
|
};
|
227
217
|
export declare enum IoRestorecommerceFilterFilterOperation {
|
228
218
|
Eq = 0,
|
@@ -253,14 +243,10 @@ export declare enum IoRestorecommerceResourcebaseFilterOpOperator {
|
|
253
243
|
export declare type IIoRestorecommerceResourcebaseFieldFilter = {
|
254
244
|
name?: InputMaybe<Scalars['String']>;
|
255
245
|
include?: InputMaybe<Scalars['Boolean']>;
|
256
|
-
/** target scope */
|
257
|
-
scope?: InputMaybe<Scalars['String']>;
|
258
246
|
};
|
259
247
|
export declare type IGoogleProtobufAny = {
|
260
248
|
typeUrl?: InputMaybe<Scalars['String']>;
|
261
|
-
value?: InputMaybe<Scalars['
|
262
|
-
/** target scope */
|
263
|
-
scope?: InputMaybe<Scalars['String']>;
|
249
|
+
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
264
250
|
};
|
265
251
|
export declare type CatalogProductPrototypeQuery = {
|
266
252
|
__typename?: 'CatalogProductPrototypeQuery';
|
@@ -423,8 +409,6 @@ export declare type IIoRestorecommerceProductMainProduct = {
|
|
423
409
|
bundle?: InputMaybe<IIoRestorecommerceProductBundle>;
|
424
410
|
active?: InputMaybe<Scalars['Boolean']>;
|
425
411
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
426
|
-
/** target scope */
|
427
|
-
scope?: InputMaybe<Scalars['String']>;
|
428
412
|
};
|
429
413
|
export declare type IIoRestorecommerceProductProduct = {
|
430
414
|
id?: InputMaybe<Scalars['String']>;
|
@@ -437,13 +421,9 @@ export declare type IIoRestorecommerceProductProduct = {
|
|
437
421
|
taxId?: InputMaybe<Array<Scalars['String']>>;
|
438
422
|
variants?: InputMaybe<Array<IIoRestorecommerceProductVariant>>;
|
439
423
|
gtin?: InputMaybe<Scalars['String']>;
|
440
|
-
/** target scope */
|
441
|
-
scope?: InputMaybe<Scalars['String']>;
|
442
424
|
};
|
443
425
|
export declare type IIoRestorecommerceProductIdentifier = {
|
444
426
|
id?: InputMaybe<Scalars['String']>;
|
445
|
-
/** target scope */
|
446
|
-
scope?: InputMaybe<Scalars['String']>;
|
447
427
|
};
|
448
428
|
export declare type IIoRestorecommerceProductVariant = {
|
449
429
|
id?: InputMaybe<Scalars['String']>;
|
@@ -457,8 +437,6 @@ export declare type IIoRestorecommerceProductVariant = {
|
|
457
437
|
stockKeepingUnit?: InputMaybe<Scalars['String']>;
|
458
438
|
templateVariant?: InputMaybe<Scalars['String']>;
|
459
439
|
attributes?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
460
|
-
/** target scope */
|
461
|
-
scope?: InputMaybe<Scalars['String']>;
|
462
440
|
};
|
463
441
|
export declare type IIoRestorecommerceImageImage = {
|
464
442
|
id?: InputMaybe<Scalars['String']>;
|
@@ -469,15 +447,11 @@ export declare type IIoRestorecommerceImageImage = {
|
|
469
447
|
width?: InputMaybe<Scalars['Float']>;
|
470
448
|
height?: InputMaybe<Scalars['Float']>;
|
471
449
|
length?: InputMaybe<Scalars['Float']>;
|
472
|
-
/** target scope */
|
473
|
-
scope?: InputMaybe<Scalars['String']>;
|
474
450
|
};
|
475
451
|
export declare type IIoRestorecommerceAttributeAttribute = {
|
476
452
|
id?: InputMaybe<Scalars['String']>;
|
477
453
|
value?: InputMaybe<Scalars['String']>;
|
478
454
|
attribute?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
479
|
-
/** target scope */
|
480
|
-
scope?: InputMaybe<Scalars['String']>;
|
481
455
|
};
|
482
456
|
export declare type IIoRestorecommerceProductBundle = {
|
483
457
|
id?: InputMaybe<Scalars['String']>;
|
@@ -486,14 +460,10 @@ export declare type IIoRestorecommerceProductBundle = {
|
|
486
460
|
image?: InputMaybe<Array<IIoRestorecommerceImageImage>>;
|
487
461
|
product?: InputMaybe<Array<IIoRestorecommerceProductBundleProduct>>;
|
488
462
|
price?: InputMaybe<Scalars['Float']>;
|
489
|
-
/** target scope */
|
490
|
-
scope?: InputMaybe<Scalars['String']>;
|
491
463
|
};
|
492
464
|
export declare type IIoRestorecommerceProductBundleProduct = {
|
493
465
|
productId?: InputMaybe<Scalars['String']>;
|
494
466
|
quantity?: InputMaybe<Scalars['Int']>;
|
495
|
-
/** target scope */
|
496
|
-
scope?: InputMaybe<Scalars['String']>;
|
497
467
|
};
|
498
468
|
export declare type IIoRestorecommerceMetaMeta = {
|
499
469
|
created?: InputMaybe<Scalars['Float']>;
|
@@ -501,13 +471,9 @@ export declare type IIoRestorecommerceMetaMeta = {
|
|
501
471
|
modifiedBy?: InputMaybe<Scalars['String']>;
|
502
472
|
owner?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
503
473
|
acl?: InputMaybe<Array<IIoRestorecommerceAttributeAttributeObj>>;
|
504
|
-
/** target scope */
|
505
|
-
scope?: InputMaybe<Scalars['String']>;
|
506
474
|
};
|
507
475
|
export declare type IIoRestorecommerceAttributeAttributeObj = {
|
508
476
|
attribute?: InputMaybe<IIoRestorecommerceAttributeAttribute>;
|
509
|
-
/** target scope */
|
510
|
-
scope?: InputMaybe<Scalars['String']>;
|
511
477
|
};
|
512
478
|
export declare enum ModeType {
|
513
479
|
Create = "CREATE",
|
@@ -554,8 +520,6 @@ export declare type IIoRestorecommerceProductPrototypeProductPrototype = {
|
|
554
520
|
version?: InputMaybe<Scalars['String']>;
|
555
521
|
description?: InputMaybe<Scalars['String']>;
|
556
522
|
categoryId?: InputMaybe<Scalars['String']>;
|
557
|
-
/** target scope */
|
558
|
-
scope?: InputMaybe<Scalars['String']>;
|
559
523
|
};
|
560
524
|
export declare type CatalogProductCategoryMutation = {
|
561
525
|
__typename?: 'CatalogProductCategoryMutation';
|
@@ -583,13 +547,9 @@ export declare type IIoRestorecommerceProductCategoryProductCategory = {
|
|
583
547
|
priceGroupId?: InputMaybe<Scalars['String']>;
|
584
548
|
image?: InputMaybe<IIoRestorecommerceImageImage>;
|
585
549
|
parent?: InputMaybe<IIoRestorecommerceProductCategoryParent>;
|
586
|
-
/** target scope */
|
587
|
-
scope?: InputMaybe<Scalars['String']>;
|
588
550
|
};
|
589
551
|
export declare type IIoRestorecommerceProductCategoryParent = {
|
590
552
|
parentId?: InputMaybe<Scalars['String']>;
|
591
|
-
/** target scope */
|
592
|
-
scope?: InputMaybe<Scalars['String']>;
|
593
553
|
};
|
594
554
|
export declare type CatalogPriceGroupMutation = {
|
595
555
|
__typename?: 'CatalogPriceGroupMutation';
|
@@ -614,8 +574,6 @@ export declare type IIoRestorecommercePriceGroupPriceGroup = {
|
|
614
574
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
615
575
|
name?: InputMaybe<Scalars['String']>;
|
616
576
|
description?: InputMaybe<Scalars['String']>;
|
617
|
-
/** target scope */
|
618
|
-
scope?: InputMaybe<Scalars['String']>;
|
619
577
|
};
|
620
578
|
export declare type CatalogManufacturerMutation = {
|
621
579
|
__typename?: 'CatalogManufacturerMutation';
|
@@ -640,8 +598,6 @@ export declare type IIoRestorecommerceManufacturerManufacturer = {
|
|
640
598
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
641
599
|
name?: InputMaybe<Scalars['String']>;
|
642
600
|
description?: InputMaybe<Scalars['String']>;
|
643
|
-
/** target scope */
|
644
|
-
scope?: InputMaybe<Scalars['String']>;
|
645
601
|
};
|
646
602
|
export declare type WithIndex<TObject> = TObject & Record<string, any>;
|
647
603
|
export declare type ResolversObject<TObject> = WithIndex<TObject>;
|
@@ -710,7 +666,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
710
666
|
IoRestorecommerceResourcebaseFilterOpOperator: IoRestorecommerceResourcebaseFilterOpOperator;
|
711
667
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
712
668
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
713
|
-
|
669
|
+
GoogleProtobufAnyValue: ResolverTypeWrapper<Scalars['GoogleProtobufAnyValue']>;
|
714
670
|
CatalogProductPrototypeQuery: ResolverTypeWrapper<CatalogProductPrototypeQuery>;
|
715
671
|
ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponse: ResolverTypeWrapper<ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponse>;
|
716
672
|
IoRestorecommerceProductPrototypeProductPrototypeListResponse: ResolverTypeWrapper<IoRestorecommerceProductPrototypeProductPrototypeListResponse>;
|
@@ -796,7 +752,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
796
752
|
IIoRestorecommerceFilterFilter: IIoRestorecommerceFilterFilter;
|
797
753
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
798
754
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
799
|
-
|
755
|
+
GoogleProtobufAnyValue: Scalars['GoogleProtobufAnyValue'];
|
800
756
|
CatalogProductPrototypeQuery: CatalogProductPrototypeQuery;
|
801
757
|
ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponse: ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponse;
|
802
758
|
IoRestorecommerceProductPrototypeProductPrototypeListResponse: IoRestorecommerceProductPrototypeProductPrototypeListResponse;
|
@@ -1021,8 +977,8 @@ export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
|
1021
977
|
and: 'undefined';
|
1022
978
|
or: 1;
|
1023
979
|
};
|
1024
|
-
export interface
|
1025
|
-
name: '
|
980
|
+
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
981
|
+
name: 'GoogleProtobufAnyValue';
|
1026
982
|
}
|
1027
983
|
export declare type CatalogProductPrototypeQueryResolvers<ContextType = CatalogContext, ParentType extends ResolversParentTypes['CatalogProductPrototypeQuery'] = ResolversParentTypes['CatalogProductPrototypeQuery']> = ResolversObject<{
|
1028
984
|
Read?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponse']>, ParentType, ContextType, RequireFields<CatalogProductPrototypeQueryReadArgs, 'input'>>;
|
@@ -1208,7 +1164,7 @@ export declare type Resolvers<ContextType = CatalogContext> = ResolversObject<{
|
|
1208
1164
|
IoRestorecommerceFilterFilterValueType?: IoRestorecommerceFilterFilterValueTypeResolvers;
|
1209
1165
|
IoRestorecommerceFilterFilterOpOperator?: IoRestorecommerceFilterFilterOpOperatorResolvers;
|
1210
1166
|
IoRestorecommerceResourcebaseFilterOpOperator?: IoRestorecommerceResourcebaseFilterOpOperatorResolvers;
|
1211
|
-
|
1167
|
+
GoogleProtobufAnyValue?: GraphQLScalarType;
|
1212
1168
|
CatalogProductPrototypeQuery?: CatalogProductPrototypeQueryResolvers<ContextType>;
|
1213
1169
|
ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponse?: ProtoIoRestorecommerceProductPrototypeProductPrototypeListResponseResolvers<ContextType>;
|
1214
1170
|
IoRestorecommerceProductPrototypeProductPrototypeListResponse?: IoRestorecommerceProductPrototypeProductPrototypeListResponseResolvers<ContextType>;
|