@restorecommerce/facade 0.3.4 → 0.3.7
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/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,8 +23,7 @@ export declare type Scalars = {
|
|
23
23
|
Boolean: boolean;
|
24
24
|
Int: number;
|
25
25
|
Float: number;
|
26
|
-
|
27
|
-
Upload: any;
|
26
|
+
GoogleProtobufAnyValue: any;
|
28
27
|
};
|
29
28
|
export declare type Query = {
|
30
29
|
__typename?: 'Query';
|
@@ -70,7 +69,7 @@ export declare type IoRestorecommerceFulfillmentCourierFulfillmentCourier = {
|
|
70
69
|
export declare type GoogleProtobufAny = {
|
71
70
|
__typename?: 'GoogleProtobufAny';
|
72
71
|
typeUrl?: Maybe<Scalars['String']>;
|
73
|
-
value?: Maybe<Scalars['
|
72
|
+
value?: Maybe<Scalars['GoogleProtobufAnyValue']>;
|
74
73
|
};
|
75
74
|
export declare type IoRestorecommerceMetaMeta = {
|
76
75
|
__typename?: 'IoRestorecommerceMetaMeta';
|
@@ -117,8 +116,6 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
117
116
|
export declare type IIoRestorecommerceResourcebaseSort = {
|
118
117
|
field?: InputMaybe<Scalars['String']>;
|
119
118
|
order?: InputMaybe<IoRestorecommerceResourcebaseSortSortOrder>;
|
120
|
-
/** target scope */
|
121
|
-
scope?: InputMaybe<Scalars['String']>;
|
122
119
|
};
|
123
120
|
export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
124
121
|
Unsorted = 0,
|
@@ -128,8 +125,6 @@ export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
|
128
125
|
export declare type IIoRestorecommerceResourcebaseFilterOp = {
|
129
126
|
filter?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilter>>;
|
130
127
|
operator?: InputMaybe<IoRestorecommerceResourcebaseFilterOpOperator>;
|
131
|
-
/** target scope */
|
132
|
-
scope?: InputMaybe<Scalars['String']>;
|
133
128
|
};
|
134
129
|
export declare type IIoRestorecommerceResourcebaseFilter = {
|
135
130
|
field?: InputMaybe<Scalars['String']>;
|
@@ -137,8 +132,6 @@ export declare type IIoRestorecommerceResourcebaseFilter = {
|
|
137
132
|
value?: InputMaybe<Scalars['String']>;
|
138
133
|
type?: InputMaybe<IoRestorecommerceResourcebaseFilterValueType>;
|
139
134
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
140
|
-
/** target scope */
|
141
|
-
scope?: InputMaybe<Scalars['String']>;
|
142
135
|
};
|
143
136
|
export declare enum IoRestorecommerceResourcebaseFilterOperation {
|
144
137
|
Eq = 0,
|
@@ -161,8 +154,6 @@ export declare enum IoRestorecommerceResourcebaseFilterValueType {
|
|
161
154
|
export declare type IIoRestorecommerceFilterFilterOp = {
|
162
155
|
filter?: InputMaybe<Array<IIoRestorecommerceFilterFilter>>;
|
163
156
|
operator?: InputMaybe<IoRestorecommerceFilterFilterOpOperator>;
|
164
|
-
/** target scope */
|
165
|
-
scope?: InputMaybe<Scalars['String']>;
|
166
157
|
};
|
167
158
|
export declare type IIoRestorecommerceFilterFilter = {
|
168
159
|
field?: InputMaybe<Scalars['String']>;
|
@@ -170,8 +161,6 @@ export declare type IIoRestorecommerceFilterFilter = {
|
|
170
161
|
value?: InputMaybe<Scalars['String']>;
|
171
162
|
type?: InputMaybe<IoRestorecommerceFilterFilterValueType>;
|
172
163
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
173
|
-
/** target scope */
|
174
|
-
scope?: InputMaybe<Scalars['String']>;
|
175
164
|
};
|
176
165
|
export declare enum IoRestorecommerceFilterFilterOperation {
|
177
166
|
Eq = 0,
|
@@ -202,14 +191,10 @@ export declare enum IoRestorecommerceResourcebaseFilterOpOperator {
|
|
202
191
|
export declare type IIoRestorecommerceResourcebaseFieldFilter = {
|
203
192
|
name?: InputMaybe<Scalars['String']>;
|
204
193
|
include?: InputMaybe<Scalars['Boolean']>;
|
205
|
-
/** target scope */
|
206
|
-
scope?: InputMaybe<Scalars['String']>;
|
207
194
|
};
|
208
195
|
export declare type IGoogleProtobufAny = {
|
209
196
|
typeUrl?: InputMaybe<Scalars['String']>;
|
210
|
-
value?: InputMaybe<Scalars['
|
211
|
-
/** target scope */
|
212
|
-
scope?: InputMaybe<Scalars['String']>;
|
197
|
+
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
213
198
|
};
|
214
199
|
export declare type Mutation = {
|
215
200
|
__typename?: 'Mutation';
|
@@ -372,15 +357,11 @@ export declare type IIoRestorecommerceFulfillmentFulfillmentRequestList = {
|
|
372
357
|
items?: InputMaybe<Array<IIoRestorecommerceFulfillmentFulfillmentRequest>>;
|
373
358
|
totalCount?: InputMaybe<Scalars['Int']>;
|
374
359
|
mode?: InputMaybe<ModeType>;
|
375
|
-
/** target scope */
|
376
|
-
scope?: InputMaybe<Scalars['String']>;
|
377
360
|
};
|
378
361
|
export declare type IIoRestorecommerceFulfillmentFulfillmentRequest = {
|
379
362
|
id?: InputMaybe<Scalars['String']>;
|
380
363
|
order?: InputMaybe<IIoRestorecommerceFulfillmentOrder>;
|
381
364
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
382
|
-
/** target scope */
|
383
|
-
scope?: InputMaybe<Scalars['String']>;
|
384
365
|
};
|
385
366
|
export declare type IIoRestorecommerceFulfillmentOrder = {
|
386
367
|
referenceId?: InputMaybe<Scalars['String']>;
|
@@ -388,8 +369,6 @@ export declare type IIoRestorecommerceFulfillmentOrder = {
|
|
388
369
|
sender?: InputMaybe<IIoRestorecommerceFulfillmentAddress>;
|
389
370
|
receiver?: InputMaybe<IIoRestorecommerceFulfillmentAddress>;
|
390
371
|
notify?: InputMaybe<Scalars['String']>;
|
391
|
-
/** target scope */
|
392
|
-
scope?: InputMaybe<Scalars['String']>;
|
393
372
|
};
|
394
373
|
export declare type IIoRestorecommerceFulfillmentParcel = {
|
395
374
|
productId?: InputMaybe<Scalars['String']>;
|
@@ -399,14 +378,10 @@ export declare type IIoRestorecommerceFulfillmentParcel = {
|
|
399
378
|
heightInCm?: InputMaybe<Scalars['Float']>;
|
400
379
|
widthInCm?: InputMaybe<Scalars['Float']>;
|
401
380
|
lengthInCm?: InputMaybe<Scalars['Float']>;
|
402
|
-
/** target scope */
|
403
|
-
scope?: InputMaybe<Scalars['String']>;
|
404
381
|
};
|
405
382
|
export declare type IIoRestorecommerceFulfillmentParcelItem = {
|
406
383
|
itemId?: InputMaybe<Scalars['String']>;
|
407
384
|
quantity?: InputMaybe<Scalars['Int']>;
|
408
|
-
/** target scope */
|
409
|
-
scope?: InputMaybe<Scalars['String']>;
|
410
385
|
};
|
411
386
|
export declare type IIoRestorecommerceFulfillmentAddress = {
|
412
387
|
title?: InputMaybe<Scalars['String']>;
|
@@ -416,8 +391,6 @@ export declare type IIoRestorecommerceFulfillmentAddress = {
|
|
416
391
|
branch?: InputMaybe<IIoRestorecommerceFulfillmentBranch>;
|
417
392
|
country?: InputMaybe<IIoRestorecommerceCountryCountry>;
|
418
393
|
contact?: InputMaybe<IIoRestorecommerceFulfillmentContact>;
|
419
|
-
/** target scope */
|
420
|
-
scope?: InputMaybe<Scalars['String']>;
|
421
394
|
};
|
422
395
|
export declare type IIoRestorecommerceAddressAddress = {
|
423
396
|
id?: InputMaybe<Scalars['String']>;
|
@@ -431,8 +404,6 @@ export declare type IIoRestorecommerceAddressAddress = {
|
|
431
404
|
altitude?: InputMaybe<Scalars['Float']>;
|
432
405
|
buildingNumber?: InputMaybe<Scalars['String']>;
|
433
406
|
addressAddition?: InputMaybe<IIoRestorecommerceAddressAddressAddition>;
|
434
|
-
/** target scope */
|
435
|
-
scope?: InputMaybe<Scalars['String']>;
|
436
407
|
};
|
437
408
|
export declare type IIoRestorecommerceMetaMeta = {
|
438
409
|
created?: InputMaybe<Scalars['Float']>;
|
@@ -440,46 +411,32 @@ export declare type IIoRestorecommerceMetaMeta = {
|
|
440
411
|
modifiedBy?: InputMaybe<Scalars['String']>;
|
441
412
|
owner?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
442
413
|
acl?: InputMaybe<Array<IIoRestorecommerceAttributeAttributeObj>>;
|
443
|
-
/** target scope */
|
444
|
-
scope?: InputMaybe<Scalars['String']>;
|
445
414
|
};
|
446
415
|
export declare type IIoRestorecommerceAttributeAttribute = {
|
447
416
|
id?: InputMaybe<Scalars['String']>;
|
448
417
|
value?: InputMaybe<Scalars['String']>;
|
449
418
|
attribute?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
450
|
-
/** target scope */
|
451
|
-
scope?: InputMaybe<Scalars['String']>;
|
452
419
|
};
|
453
420
|
export declare type IIoRestorecommerceAttributeAttributeObj = {
|
454
421
|
attribute?: InputMaybe<IIoRestorecommerceAttributeAttribute>;
|
455
|
-
/** target scope */
|
456
|
-
scope?: InputMaybe<Scalars['String']>;
|
457
422
|
};
|
458
423
|
export declare type IIoRestorecommerceAddressAddressGeoPoint = {
|
459
424
|
latitude?: InputMaybe<Scalars['Float']>;
|
460
425
|
longitude?: InputMaybe<Scalars['Float']>;
|
461
|
-
/** target scope */
|
462
|
-
scope?: InputMaybe<Scalars['String']>;
|
463
426
|
};
|
464
427
|
export declare type IIoRestorecommerceAddressAddressAddition = {
|
465
428
|
field1?: InputMaybe<Scalars['String']>;
|
466
429
|
field2?: InputMaybe<Scalars['String']>;
|
467
|
-
/** target scope */
|
468
|
-
scope?: InputMaybe<Scalars['String']>;
|
469
430
|
};
|
470
431
|
export declare type IIoRestorecommerceFulfillmentPackstation = {
|
471
432
|
provider?: InputMaybe<Scalars['String']>;
|
472
433
|
stationNumber?: InputMaybe<Scalars['String']>;
|
473
434
|
postNumber?: InputMaybe<Scalars['String']>;
|
474
|
-
/** target scope */
|
475
|
-
scope?: InputMaybe<Scalars['String']>;
|
476
435
|
};
|
477
436
|
export declare type IIoRestorecommerceFulfillmentBranch = {
|
478
437
|
provider?: InputMaybe<Scalars['String']>;
|
479
438
|
branchNumber?: InputMaybe<Scalars['String']>;
|
480
439
|
postNumber?: InputMaybe<Scalars['String']>;
|
481
|
-
/** target scope */
|
482
|
-
scope?: InputMaybe<Scalars['String']>;
|
483
440
|
};
|
484
441
|
export declare type IIoRestorecommerceCountryCountry = {
|
485
442
|
id?: InputMaybe<Scalars['String']>;
|
@@ -488,15 +445,11 @@ export declare type IIoRestorecommerceCountryCountry = {
|
|
488
445
|
countryCode?: InputMaybe<Scalars['String']>;
|
489
446
|
geographicalName?: InputMaybe<Scalars['String']>;
|
490
447
|
economicAreas?: InputMaybe<Array<Scalars['String']>>;
|
491
|
-
/** target scope */
|
492
|
-
scope?: InputMaybe<Scalars['String']>;
|
493
448
|
};
|
494
449
|
export declare type IIoRestorecommerceFulfillmentContact = {
|
495
450
|
name?: InputMaybe<Scalars['String']>;
|
496
451
|
email?: InputMaybe<Scalars['String']>;
|
497
452
|
phone?: InputMaybe<Scalars['String']>;
|
498
|
-
/** target scope */
|
499
|
-
scope?: InputMaybe<Scalars['String']>;
|
500
453
|
};
|
501
454
|
export declare enum ModeType {
|
502
455
|
Create = "CREATE",
|
@@ -534,20 +487,14 @@ export declare type IoRestorecommerceFulfillmentEvent = {
|
|
534
487
|
};
|
535
488
|
export declare type IIoRestorecommerceFulfillmentTrackingRequestList = {
|
536
489
|
items?: InputMaybe<Array<IIoRestorecommerceFulfillmentTrackingRequest>>;
|
537
|
-
/** target scope */
|
538
|
-
scope?: InputMaybe<Scalars['String']>;
|
539
490
|
};
|
540
491
|
export declare type IIoRestorecommerceFulfillmentTrackingRequest = {
|
541
492
|
fulfillmentId?: InputMaybe<Scalars['String']>;
|
542
493
|
shipmentNumbers?: InputMaybe<Array<Scalars['String']>>;
|
543
494
|
options?: InputMaybe<IGoogleProtobufAny>;
|
544
|
-
/** target scope */
|
545
|
-
scope?: InputMaybe<Scalars['String']>;
|
546
495
|
};
|
547
496
|
export declare type IIoRestorecommerceFulfillmentCancelRequestList = {
|
548
497
|
ids?: InputMaybe<Array<Scalars['String']>>;
|
549
|
-
/** target scope */
|
550
|
-
scope?: InputMaybe<Scalars['String']>;
|
551
498
|
};
|
552
499
|
export declare type ProtoIoRestorecommerceResourcebaseDeleteResponse = {
|
553
500
|
__typename?: 'ProtoIoRestorecommerceResourcebaseDeleteResponse';
|
@@ -591,8 +538,6 @@ export declare type IIoRestorecommerceFulfillmentCourierFulfillmentCourier = {
|
|
591
538
|
stubType?: InputMaybe<Scalars['String']>;
|
592
539
|
configuration?: InputMaybe<IGoogleProtobufAny>;
|
593
540
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
594
|
-
/** target scope */
|
595
|
-
scope?: InputMaybe<Scalars['String']>;
|
596
541
|
};
|
597
542
|
export declare type WithIndex<TObject> = TObject & Record<string, any>;
|
598
543
|
export declare type ResolversObject<TObject> = WithIndex<TObject>;
|
@@ -633,7 +578,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
633
578
|
IoRestorecommerceFulfillmentCourierFulfillmentCourier: ResolverTypeWrapper<IoRestorecommerceFulfillmentCourierFulfillmentCourier>;
|
634
579
|
String: ResolverTypeWrapper<Scalars['String']>;
|
635
580
|
GoogleProtobufAny: ResolverTypeWrapper<GoogleProtobufAny>;
|
636
|
-
|
581
|
+
GoogleProtobufAnyValue: ResolverTypeWrapper<Scalars['GoogleProtobufAnyValue']>;
|
637
582
|
IoRestorecommerceMetaMeta: ResolverTypeWrapper<IoRestorecommerceMetaMeta>;
|
638
583
|
Float: ResolverTypeWrapper<Scalars['Float']>;
|
639
584
|
IoRestorecommerceAttributeAttribute: ResolverTypeWrapper<IoRestorecommerceAttributeAttribute>;
|
@@ -657,7 +602,6 @@ export declare type ResolversTypes = ResolversObject<{
|
|
657
602
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
658
603
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
659
604
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
660
|
-
Upload: ResolverTypeWrapper<Scalars['Upload']>;
|
661
605
|
Mutation: ResolverTypeWrapper<{}>;
|
662
606
|
FulfillmentMutation: ResolverTypeWrapper<FulfillmentMutation>;
|
663
607
|
FulfillmentFulfillmentMutation: ResolverTypeWrapper<FulfillmentFulfillmentMutation>;
|
@@ -721,7 +665,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
721
665
|
IoRestorecommerceFulfillmentCourierFulfillmentCourier: IoRestorecommerceFulfillmentCourierFulfillmentCourier;
|
722
666
|
String: Scalars['String'];
|
723
667
|
GoogleProtobufAny: GoogleProtobufAny;
|
724
|
-
|
668
|
+
GoogleProtobufAnyValue: Scalars['GoogleProtobufAnyValue'];
|
725
669
|
IoRestorecommerceMetaMeta: IoRestorecommerceMetaMeta;
|
726
670
|
Float: Scalars['Float'];
|
727
671
|
IoRestorecommerceAttributeAttribute: IoRestorecommerceAttributeAttribute;
|
@@ -738,7 +682,6 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
738
682
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
739
683
|
Boolean: Scalars['Boolean'];
|
740
684
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
741
|
-
Upload: Scalars['Upload'];
|
742
685
|
Mutation: {};
|
743
686
|
FulfillmentMutation: FulfillmentMutation;
|
744
687
|
FulfillmentFulfillmentMutation: FulfillmentFulfillmentMutation;
|
@@ -828,11 +771,11 @@ export declare type IoRestorecommerceFulfillmentCourierFulfillmentCourierResolve
|
|
828
771
|
}>;
|
829
772
|
export declare type GoogleProtobufAnyResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['GoogleProtobufAny'] = ResolversParentTypes['GoogleProtobufAny']> = ResolversObject<{
|
830
773
|
typeUrl?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
831
|
-
value?: Resolver<Maybe<ResolversTypes['
|
774
|
+
value?: Resolver<Maybe<ResolversTypes['GoogleProtobufAnyValue']>, ParentType, ContextType>;
|
832
775
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
833
776
|
}>;
|
834
|
-
export interface
|
835
|
-
name: '
|
777
|
+
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
778
|
+
name: 'GoogleProtobufAnyValue';
|
836
779
|
}
|
837
780
|
export declare type IoRestorecommerceMetaMetaResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceMetaMeta'] = ResolversParentTypes['IoRestorecommerceMetaMeta']> = ResolversObject<{
|
838
781
|
created?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
@@ -912,9 +855,6 @@ export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
|
912
855
|
and: 'undefined';
|
913
856
|
or: 1;
|
914
857
|
};
|
915
|
-
export interface UploadScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['Upload'], any> {
|
916
|
-
name: 'Upload';
|
917
|
-
}
|
918
858
|
export declare type MutationResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['Mutation'] = ResolversParentTypes['Mutation']> = ResolversObject<{
|
919
859
|
fulfillment?: Resolver<ResolversTypes['FulfillmentMutation'], ParentType, ContextType>;
|
920
860
|
}>;
|
@@ -1108,7 +1048,7 @@ export declare type Resolvers<ContextType = FulfillmentContext> = ResolversObjec
|
|
1108
1048
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponse?: IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseResolvers<ContextType>;
|
1109
1049
|
IoRestorecommerceFulfillmentCourierFulfillmentCourier?: IoRestorecommerceFulfillmentCourierFulfillmentCourierResolvers<ContextType>;
|
1110
1050
|
GoogleProtobufAny?: GoogleProtobufAnyResolvers<ContextType>;
|
1111
|
-
|
1051
|
+
GoogleProtobufAnyValue?: GraphQLScalarType;
|
1112
1052
|
IoRestorecommerceMetaMeta?: IoRestorecommerceMetaMetaResolvers<ContextType>;
|
1113
1053
|
IoRestorecommerceAttributeAttribute?: IoRestorecommerceAttributeAttributeResolvers<ContextType>;
|
1114
1054
|
IoRestorecommerceAttributeAttributeObj?: IoRestorecommerceAttributeAttributeObjResolvers<ContextType>;
|
@@ -1121,7 +1061,6 @@ export declare type Resolvers<ContextType = FulfillmentContext> = ResolversObjec
|
|
1121
1061
|
IoRestorecommerceFilterFilterValueType?: IoRestorecommerceFilterFilterValueTypeResolvers;
|
1122
1062
|
IoRestorecommerceFilterFilterOpOperator?: IoRestorecommerceFilterFilterOpOperatorResolvers;
|
1123
1063
|
IoRestorecommerceResourcebaseFilterOpOperator?: IoRestorecommerceResourcebaseFilterOpOperatorResolvers;
|
1124
|
-
Upload?: GraphQLScalarType;
|
1125
1064
|
Mutation?: MutationResolvers<ContextType>;
|
1126
1065
|
FulfillmentMutation?: FulfillmentMutationResolvers<ContextType>;
|
1127
1066
|
FulfillmentFulfillmentMutation?: FulfillmentFulfillmentMutationResolvers<ContextType>;
|
@@ -23,8 +23,7 @@ export declare type Scalars = {
|
|
23
23
|
Boolean: boolean;
|
24
24
|
Int: number;
|
25
25
|
Float: number;
|
26
|
-
|
27
|
-
Upload: any;
|
26
|
+
GoogleProtobufAnyValue: any;
|
28
27
|
MapScalar: any;
|
29
28
|
};
|
30
29
|
export declare type Query = {
|
@@ -157,7 +156,7 @@ export declare type IoRestorecommerceAuthTokens = {
|
|
157
156
|
export declare type GoogleProtobufAny = {
|
158
157
|
__typename?: 'GoogleProtobufAny';
|
159
158
|
typeUrl?: Maybe<Scalars['String']>;
|
160
|
-
value?: Maybe<Scalars['
|
159
|
+
value?: Maybe<Scalars['GoogleProtobufAnyValue']>;
|
161
160
|
};
|
162
161
|
export declare type IoRestorecommerceStatusStatus = {
|
163
162
|
__typename?: 'IoRestorecommerceStatusStatus';
|
@@ -186,8 +185,6 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
186
185
|
export declare type IIoRestorecommerceResourcebaseSort = {
|
187
186
|
field?: InputMaybe<Scalars['String']>;
|
188
187
|
order?: InputMaybe<IoRestorecommerceResourcebaseSortSortOrder>;
|
189
|
-
/** target scope */
|
190
|
-
scope?: InputMaybe<Scalars['String']>;
|
191
188
|
};
|
192
189
|
export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
193
190
|
Unsorted = 0,
|
@@ -197,8 +194,6 @@ export declare enum IoRestorecommerceResourcebaseSortSortOrder {
|
|
197
194
|
export declare type IIoRestorecommerceResourcebaseFilterOp = {
|
198
195
|
filter?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilter>>;
|
199
196
|
operator?: InputMaybe<IoRestorecommerceResourcebaseFilterOpOperator>;
|
200
|
-
/** target scope */
|
201
|
-
scope?: InputMaybe<Scalars['String']>;
|
202
197
|
};
|
203
198
|
export declare type IIoRestorecommerceResourcebaseFilter = {
|
204
199
|
field?: InputMaybe<Scalars['String']>;
|
@@ -206,8 +201,6 @@ export declare type IIoRestorecommerceResourcebaseFilter = {
|
|
206
201
|
value?: InputMaybe<Scalars['String']>;
|
207
202
|
type?: InputMaybe<IoRestorecommerceResourcebaseFilterValueType>;
|
208
203
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
209
|
-
/** target scope */
|
210
|
-
scope?: InputMaybe<Scalars['String']>;
|
211
204
|
};
|
212
205
|
export declare enum IoRestorecommerceResourcebaseFilterOperation {
|
213
206
|
Eq = 0,
|
@@ -230,8 +223,6 @@ export declare enum IoRestorecommerceResourcebaseFilterValueType {
|
|
230
223
|
export declare type IIoRestorecommerceFilterFilterOp = {
|
231
224
|
filter?: InputMaybe<Array<IIoRestorecommerceFilterFilter>>;
|
232
225
|
operator?: InputMaybe<IoRestorecommerceFilterFilterOpOperator>;
|
233
|
-
/** target scope */
|
234
|
-
scope?: InputMaybe<Scalars['String']>;
|
235
226
|
};
|
236
227
|
export declare type IIoRestorecommerceFilterFilter = {
|
237
228
|
field?: InputMaybe<Scalars['String']>;
|
@@ -239,8 +230,6 @@ export declare type IIoRestorecommerceFilterFilter = {
|
|
239
230
|
value?: InputMaybe<Scalars['String']>;
|
240
231
|
type?: InputMaybe<IoRestorecommerceFilterFilterValueType>;
|
241
232
|
filters?: InputMaybe<Array<IIoRestorecommerceFilterFilterOp>>;
|
242
|
-
/** target scope */
|
243
|
-
scope?: InputMaybe<Scalars['String']>;
|
244
233
|
};
|
245
234
|
export declare enum IoRestorecommerceFilterFilterOperation {
|
246
235
|
Eq = 0,
|
@@ -271,34 +260,24 @@ export declare enum IoRestorecommerceResourcebaseFilterOpOperator {
|
|
271
260
|
export declare type IIoRestorecommerceResourcebaseFieldFilter = {
|
272
261
|
name?: InputMaybe<Scalars['String']>;
|
273
262
|
include?: InputMaybe<Scalars['Boolean']>;
|
274
|
-
/** target scope */
|
275
|
-
scope?: InputMaybe<Scalars['String']>;
|
276
263
|
};
|
277
264
|
export declare type IGoogleProtobufAny = {
|
278
265
|
typeUrl?: InputMaybe<Scalars['String']>;
|
279
|
-
value?: InputMaybe<Scalars['
|
280
|
-
/** target scope */
|
281
|
-
scope?: InputMaybe<Scalars['String']>;
|
266
|
+
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
282
267
|
};
|
283
268
|
export declare type IIoRestorecommerceUserFindRequest = {
|
284
269
|
id?: InputMaybe<Scalars['String']>;
|
285
270
|
name?: InputMaybe<Scalars['String']>;
|
286
271
|
email?: InputMaybe<Scalars['String']>;
|
287
|
-
/** target scope */
|
288
|
-
scope?: InputMaybe<Scalars['String']>;
|
289
272
|
};
|
290
273
|
export declare type IIoRestorecommerceUserFindByRoleRequest = {
|
291
274
|
role?: InputMaybe<Scalars['String']>;
|
292
275
|
attributes?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
293
|
-
/** target scope */
|
294
|
-
scope?: InputMaybe<Scalars['String']>;
|
295
276
|
};
|
296
277
|
export declare type IIoRestorecommerceAttributeAttribute = {
|
297
278
|
id?: InputMaybe<Scalars['String']>;
|
298
279
|
value?: InputMaybe<Scalars['String']>;
|
299
280
|
attribute?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
300
|
-
/** target scope */
|
301
|
-
scope?: InputMaybe<Scalars['String']>;
|
302
281
|
};
|
303
282
|
export declare type ProtoIoRestorecommerceUserUserResponse = {
|
304
283
|
__typename?: 'ProtoIoRestorecommerceUserUserResponse';
|
@@ -306,8 +285,6 @@ export declare type ProtoIoRestorecommerceUserUserResponse = {
|
|
306
285
|
};
|
307
286
|
export declare type IIoRestorecommerceUserFindByTokenRequest = {
|
308
287
|
token?: InputMaybe<Scalars['String']>;
|
309
|
-
/** target scope */
|
310
|
-
scope?: InputMaybe<Scalars['String']>;
|
311
288
|
};
|
312
289
|
export declare type IdentityRoleQuery = {
|
313
290
|
__typename?: 'IdentityRoleQuery';
|
@@ -388,8 +365,6 @@ export declare type ProtoGoogleProtobufAny = {
|
|
388
365
|
export declare type IIoRestorecommerceTokenIdentifier = {
|
389
366
|
id?: InputMaybe<Scalars['String']>;
|
390
367
|
type?: InputMaybe<Scalars['String']>;
|
391
|
-
/** target scope */
|
392
|
-
scope?: InputMaybe<Scalars['String']>;
|
393
368
|
};
|
394
369
|
export declare type IdentityOauthQuery = {
|
395
370
|
__typename?: 'IdentityOauthQuery';
|
@@ -521,8 +496,6 @@ export declare type IIoRestorecommerceUserUser = {
|
|
521
496
|
tokens?: InputMaybe<Array<IIoRestorecommerceAuthTokens>>;
|
522
497
|
lastAccess?: InputMaybe<Scalars['Float']>;
|
523
498
|
data?: InputMaybe<IGoogleProtobufAny>;
|
524
|
-
/** target scope */
|
525
|
-
scope?: InputMaybe<Scalars['String']>;
|
526
499
|
};
|
527
500
|
export declare type IIoRestorecommerceMetaMeta = {
|
528
501
|
created?: InputMaybe<Scalars['Float']>;
|
@@ -530,21 +503,15 @@ export declare type IIoRestorecommerceMetaMeta = {
|
|
530
503
|
modifiedBy?: InputMaybe<Scalars['String']>;
|
531
504
|
owner?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
532
505
|
acl?: InputMaybe<Array<IIoRestorecommerceAttributeAttributeObj>>;
|
533
|
-
/** target scope */
|
534
|
-
scope?: InputMaybe<Scalars['String']>;
|
535
506
|
};
|
536
507
|
export declare type IIoRestorecommerceAttributeAttributeObj = {
|
537
508
|
attribute?: InputMaybe<IIoRestorecommerceAttributeAttribute>;
|
538
|
-
/** target scope */
|
539
|
-
scope?: InputMaybe<Scalars['String']>;
|
540
509
|
};
|
541
510
|
export declare type IIoRestorecommerceAuthRoleAssociation = {
|
542
511
|
role?: InputMaybe<Scalars['String']>;
|
543
512
|
attributes?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
544
513
|
id?: InputMaybe<Scalars['String']>;
|
545
514
|
created?: InputMaybe<Scalars['Float']>;
|
546
|
-
/** target scope */
|
547
|
-
scope?: InputMaybe<Scalars['String']>;
|
548
515
|
};
|
549
516
|
export declare type IIoRestorecommerceImageImage = {
|
550
517
|
id?: InputMaybe<Scalars['String']>;
|
@@ -555,8 +522,6 @@ export declare type IIoRestorecommerceImageImage = {
|
|
555
522
|
width?: InputMaybe<Scalars['Float']>;
|
556
523
|
height?: InputMaybe<Scalars['Float']>;
|
557
524
|
length?: InputMaybe<Scalars['Float']>;
|
558
|
-
/** target scope */
|
559
|
-
scope?: InputMaybe<Scalars['String']>;
|
560
525
|
};
|
561
526
|
export declare type IIoRestorecommerceAuthTokens = {
|
562
527
|
name?: InputMaybe<Scalars['String']>;
|
@@ -566,8 +531,6 @@ export declare type IIoRestorecommerceAuthTokens = {
|
|
566
531
|
type?: InputMaybe<Scalars['String']>;
|
567
532
|
interactive?: InputMaybe<Scalars['Boolean']>;
|
568
533
|
lastLogin?: InputMaybe<Scalars['Float']>;
|
569
|
-
/** target scope */
|
570
|
-
scope?: InputMaybe<Scalars['String']>;
|
571
534
|
};
|
572
535
|
export declare enum ModeType {
|
573
536
|
Create = "CREATE",
|
@@ -603,8 +566,6 @@ export declare type IIoRestorecommerceUserRegisterRequest = {
|
|
603
566
|
defaultScope?: InputMaybe<Scalars['String']>;
|
604
567
|
userType?: InputMaybe<IoRestorecommerceUserUserType>;
|
605
568
|
captchaCode?: InputMaybe<Scalars['String']>;
|
606
|
-
/** target scope */
|
607
|
-
scope?: InputMaybe<Scalars['String']>;
|
608
569
|
};
|
609
570
|
export declare type ProtoIoRestorecommerceStatusOperationStatusObj = {
|
610
571
|
__typename?: 'ProtoIoRestorecommerceStatusOperationStatusObj';
|
@@ -617,51 +578,35 @@ export declare type IoRestorecommerceStatusOperationStatusObj = {
|
|
617
578
|
export declare type IIoRestorecommerceUserActivateRequest = {
|
618
579
|
identifier?: InputMaybe<Scalars['String']>;
|
619
580
|
activationCode?: InputMaybe<Scalars['String']>;
|
620
|
-
/** target scope */
|
621
|
-
scope?: InputMaybe<Scalars['String']>;
|
622
581
|
};
|
623
582
|
export declare type IIoRestorecommerceUserChangePasswordRequest = {
|
624
583
|
identifier?: InputMaybe<Scalars['String']>;
|
625
584
|
password?: InputMaybe<Scalars['String']>;
|
626
585
|
newPassword?: InputMaybe<Scalars['String']>;
|
627
|
-
/** target scope */
|
628
|
-
scope?: InputMaybe<Scalars['String']>;
|
629
586
|
};
|
630
587
|
export declare type IIoRestorecommerceUserRequestPasswordChangeRequest = {
|
631
588
|
identifier?: InputMaybe<Scalars['String']>;
|
632
|
-
/** target scope */
|
633
|
-
scope?: InputMaybe<Scalars['String']>;
|
634
589
|
};
|
635
590
|
export declare type IIoRestorecommerceUserChangeEmailRequest = {
|
636
591
|
identifier?: InputMaybe<Scalars['String']>;
|
637
592
|
newEmail?: InputMaybe<Scalars['String']>;
|
638
|
-
/** target scope */
|
639
|
-
scope?: InputMaybe<Scalars['String']>;
|
640
593
|
};
|
641
594
|
export declare type IIoRestorecommerceUserConfirmPasswordChangeRequest = {
|
642
595
|
identifier?: InputMaybe<Scalars['String']>;
|
643
596
|
activationCode?: InputMaybe<Scalars['String']>;
|
644
597
|
password?: InputMaybe<Scalars['String']>;
|
645
|
-
/** target scope */
|
646
|
-
scope?: InputMaybe<Scalars['String']>;
|
647
598
|
};
|
648
599
|
export declare type IIoRestorecommerceUserConfirmEmailChangeRequest = {
|
649
600
|
identifier?: InputMaybe<Scalars['String']>;
|
650
601
|
activationCode?: InputMaybe<Scalars['String']>;
|
651
|
-
/** target scope */
|
652
|
-
scope?: InputMaybe<Scalars['String']>;
|
653
602
|
};
|
654
603
|
export declare type IIoRestorecommerceUserUnregisterRequest = {
|
655
604
|
identifier?: InputMaybe<Scalars['String']>;
|
656
|
-
/** target scope */
|
657
|
-
scope?: InputMaybe<Scalars['String']>;
|
658
605
|
};
|
659
606
|
export declare type IIoRestorecommerceUserLoginRequest = {
|
660
607
|
identifier?: InputMaybe<Scalars['String']>;
|
661
608
|
password?: InputMaybe<Scalars['String']>;
|
662
609
|
token?: InputMaybe<Scalars['String']>;
|
663
|
-
/** target scope */
|
664
|
-
scope?: InputMaybe<Scalars['String']>;
|
665
610
|
};
|
666
611
|
export declare type ProtoIoRestorecommerceUserDeleteUsersByOrgResponse = {
|
667
612
|
__typename?: 'ProtoIoRestorecommerceUserDeleteUsersByOrgResponse';
|
@@ -674,26 +619,18 @@ export declare type IoRestorecommerceUserDeleteUsersByOrgResponse = {
|
|
674
619
|
};
|
675
620
|
export declare type IIoRestorecommerceUserOrgIdRequest = {
|
676
621
|
orgIds?: InputMaybe<Array<Scalars['String']>>;
|
677
|
-
/** target scope */
|
678
|
-
scope?: InputMaybe<Scalars['String']>;
|
679
622
|
};
|
680
623
|
export declare type IIoRestorecommerceUserConfirmUserInvitationRequest = {
|
681
624
|
identifier?: InputMaybe<Scalars['String']>;
|
682
625
|
password?: InputMaybe<Scalars['String']>;
|
683
626
|
activationCode?: InputMaybe<Scalars['String']>;
|
684
|
-
/** target scope */
|
685
|
-
scope?: InputMaybe<Scalars['String']>;
|
686
627
|
};
|
687
628
|
export declare type IIoRestorecommerceUserSendInvitationEmailRequest = {
|
688
629
|
identifier?: InputMaybe<Scalars['String']>;
|
689
630
|
invitedByUserIdentifier?: InputMaybe<Scalars['String']>;
|
690
|
-
/** target scope */
|
691
|
-
scope?: InputMaybe<Scalars['String']>;
|
692
631
|
};
|
693
632
|
export declare type IIoRestorecommerceUserSendActivationEmailRequest = {
|
694
633
|
identifier?: InputMaybe<Scalars['String']>;
|
695
|
-
/** target scope */
|
696
|
-
scope?: InputMaybe<Scalars['String']>;
|
697
634
|
};
|
698
635
|
export declare type IdentityRoleMutation = {
|
699
636
|
__typename?: 'IdentityRoleMutation';
|
@@ -719,8 +656,6 @@ export declare type IIoRestorecommerceRoleRole = {
|
|
719
656
|
name?: InputMaybe<Scalars['String']>;
|
720
657
|
description?: InputMaybe<Scalars['String']>;
|
721
658
|
assignableByRoles?: InputMaybe<Array<Scalars['String']>>;
|
722
|
-
/** target scope */
|
723
|
-
scope?: InputMaybe<Scalars['String']>;
|
724
659
|
};
|
725
660
|
export declare type IdentityAuthenticationLogMutation = {
|
726
661
|
__typename?: 'IdentityAuthenticationLogMutation';
|
@@ -751,8 +686,6 @@ export declare type IIoRestorecommerceAuthenticationLogAuthenticationLog = {
|
|
751
686
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
752
687
|
subjectId?: InputMaybe<Scalars['String']>;
|
753
688
|
tokenName?: InputMaybe<Scalars['String']>;
|
754
|
-
/** target scope */
|
755
|
-
scope?: InputMaybe<Scalars['String']>;
|
756
689
|
};
|
757
690
|
export declare type IdentityTokenMutation = {
|
758
691
|
__typename?: 'IdentityTokenMutation';
|
@@ -778,13 +711,9 @@ export declare type IIoRestorecommerceTokenTokenData = {
|
|
778
711
|
payload?: InputMaybe<IGoogleProtobufAny>;
|
779
712
|
expiresIn?: InputMaybe<Scalars['Float']>;
|
780
713
|
type?: InputMaybe<Scalars['String']>;
|
781
|
-
/** target scope */
|
782
|
-
scope?: InputMaybe<Scalars['String']>;
|
783
714
|
};
|
784
715
|
export declare type IIoRestorecommerceTokenGrantId = {
|
785
716
|
grantId?: InputMaybe<Scalars['String']>;
|
786
|
-
/** target scope */
|
787
|
-
scope?: InputMaybe<Scalars['String']>;
|
788
717
|
};
|
789
718
|
export declare type IdentityOauthMutation = {
|
790
719
|
__typename?: 'IdentityOauthMutation';
|
@@ -807,8 +736,6 @@ export declare type IIoRestorecommerceOauthExchangeCodeRequest = {
|
|
807
736
|
service?: InputMaybe<Scalars['String']>;
|
808
737
|
code?: InputMaybe<Scalars['String']>;
|
809
738
|
state?: InputMaybe<Scalars['String']>;
|
810
|
-
/** target scope */
|
811
|
-
scope?: InputMaybe<Scalars['String']>;
|
812
739
|
};
|
813
740
|
export declare type WithIndex<TObject> = TObject & Record<string, any>;
|
814
741
|
export declare type ResolversObject<TObject> = WithIndex<TObject>;
|
@@ -858,7 +785,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
858
785
|
IoRestorecommerceUserUserType: IoRestorecommerceUserUserType;
|
859
786
|
IoRestorecommerceAuthTokens: ResolverTypeWrapper<IoRestorecommerceAuthTokens>;
|
860
787
|
GoogleProtobufAny: ResolverTypeWrapper<GoogleProtobufAny>;
|
861
|
-
|
788
|
+
GoogleProtobufAnyValue: ResolverTypeWrapper<Scalars['GoogleProtobufAnyValue']>;
|
862
789
|
IoRestorecommerceStatusStatus: ResolverTypeWrapper<IoRestorecommerceStatusStatus>;
|
863
790
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
864
791
|
IoRestorecommerceStatusOperationStatus: ResolverTypeWrapper<IoRestorecommerceStatusOperationStatus>;
|
@@ -877,7 +804,6 @@ export declare type ResolversTypes = ResolversObject<{
|
|
877
804
|
IoRestorecommerceResourcebaseFilterOpOperator: IoRestorecommerceResourcebaseFilterOpOperator;
|
878
805
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
879
806
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
880
|
-
Upload: ResolverTypeWrapper<Scalars['Upload']>;
|
881
807
|
IIoRestorecommerceUserFindRequest: IIoRestorecommerceUserFindRequest;
|
882
808
|
IIoRestorecommerceUserFindByRoleRequest: IIoRestorecommerceUserFindByRoleRequest;
|
883
809
|
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
@@ -966,7 +892,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
966
892
|
IoRestorecommerceImageImage: IoRestorecommerceImageImage;
|
967
893
|
IoRestorecommerceAuthTokens: IoRestorecommerceAuthTokens;
|
968
894
|
GoogleProtobufAny: GoogleProtobufAny;
|
969
|
-
|
895
|
+
GoogleProtobufAnyValue: Scalars['GoogleProtobufAnyValue'];
|
970
896
|
IoRestorecommerceStatusStatus: IoRestorecommerceStatusStatus;
|
971
897
|
Int: Scalars['Int'];
|
972
898
|
IoRestorecommerceStatusOperationStatus: IoRestorecommerceStatusOperationStatus;
|
@@ -978,7 +904,6 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
978
904
|
IIoRestorecommerceFilterFilter: IIoRestorecommerceFilterFilter;
|
979
905
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
980
906
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
981
|
-
Upload: Scalars['Upload'];
|
982
907
|
IIoRestorecommerceUserFindRequest: IIoRestorecommerceUserFindRequest;
|
983
908
|
IIoRestorecommerceUserFindByRoleRequest: IIoRestorecommerceUserFindByRoleRequest;
|
984
909
|
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
@@ -1163,11 +1088,11 @@ export declare type IoRestorecommerceAuthTokensResolvers<ContextType = IdentityC
|
|
1163
1088
|
}>;
|
1164
1089
|
export declare type GoogleProtobufAnyResolvers<ContextType = IdentityContext, ParentType extends ResolversParentTypes['GoogleProtobufAny'] = ResolversParentTypes['GoogleProtobufAny']> = ResolversObject<{
|
1165
1090
|
typeUrl?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1166
|
-
value?: Resolver<Maybe<ResolversTypes['
|
1091
|
+
value?: Resolver<Maybe<ResolversTypes['GoogleProtobufAnyValue']>, ParentType, ContextType>;
|
1167
1092
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1168
1093
|
}>;
|
1169
|
-
export interface
|
1170
|
-
name: '
|
1094
|
+
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
1095
|
+
name: 'GoogleProtobufAnyValue';
|
1171
1096
|
}
|
1172
1097
|
export declare type IoRestorecommerceStatusStatusResolvers<ContextType = IdentityContext, ParentType extends ResolversParentTypes['IoRestorecommerceStatusStatus'] = ResolversParentTypes['IoRestorecommerceStatusStatus']> = ResolversObject<{
|
1173
1098
|
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
@@ -1229,9 +1154,6 @@ export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
|
1229
1154
|
and: 'undefined';
|
1230
1155
|
or: 1;
|
1231
1156
|
};
|
1232
|
-
export interface UploadScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['Upload'], any> {
|
1233
|
-
name: 'Upload';
|
1234
|
-
}
|
1235
1157
|
export declare type ProtoIoRestorecommerceUserUserResponseResolvers<ContextType = IdentityContext, ParentType extends ResolversParentTypes['ProtoIoRestorecommerceUserUserResponse'] = ResolversParentTypes['ProtoIoRestorecommerceUserUserResponse']> = ResolversObject<{
|
1236
1158
|
details?: Resolver<Maybe<ResolversTypes['IoRestorecommerceUserUserResponse']>, ParentType, ContextType>;
|
1237
1159
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -1429,7 +1351,7 @@ export declare type Resolvers<ContextType = IdentityContext> = ResolversObject<{
|
|
1429
1351
|
IoRestorecommerceUserUserType?: IoRestorecommerceUserUserTypeResolvers;
|
1430
1352
|
IoRestorecommerceAuthTokens?: IoRestorecommerceAuthTokensResolvers<ContextType>;
|
1431
1353
|
GoogleProtobufAny?: GoogleProtobufAnyResolvers<ContextType>;
|
1432
|
-
|
1354
|
+
GoogleProtobufAnyValue?: GraphQLScalarType;
|
1433
1355
|
IoRestorecommerceStatusStatus?: IoRestorecommerceStatusStatusResolvers<ContextType>;
|
1434
1356
|
IoRestorecommerceStatusOperationStatus?: IoRestorecommerceStatusOperationStatusResolvers<ContextType>;
|
1435
1357
|
IoRestorecommerceResourcebaseSortSortOrder?: IoRestorecommerceResourcebaseSortSortOrderResolvers;
|
@@ -1439,7 +1361,6 @@ export declare type Resolvers<ContextType = IdentityContext> = ResolversObject<{
|
|
1439
1361
|
IoRestorecommerceFilterFilterValueType?: IoRestorecommerceFilterFilterValueTypeResolvers;
|
1440
1362
|
IoRestorecommerceFilterFilterOpOperator?: IoRestorecommerceFilterFilterOpOperatorResolvers;
|
1441
1363
|
IoRestorecommerceResourcebaseFilterOpOperator?: IoRestorecommerceResourcebaseFilterOpOperatorResolvers;
|
1442
|
-
Upload?: GraphQLScalarType;
|
1443
1364
|
ProtoIoRestorecommerceUserUserResponse?: ProtoIoRestorecommerceUserUserResponseResolvers<ContextType>;
|
1444
1365
|
IdentityRoleQuery?: IdentityRoleQueryResolvers<ContextType>;
|
1445
1366
|
ProtoIoRestorecommerceRoleRoleListResponse?: ProtoIoRestorecommerceRoleRoleListResponseResolvers<ContextType>;
|