@restorecommerce/facade 1.1.1 → 1.1.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.
- package/CHANGELOG.md +22 -0
- package/dist/gql/protos/federation.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +6 -3
- package/dist/modules/access-control/gql/schema.generated.d.ts +34 -10
- package/dist/modules/catalog/gql/federation.js +1 -1
- package/dist/modules/catalog/gql/schema.generated.d.ts +17 -8
- package/dist/modules/facade-status/gql/index.js +1 -1
- package/dist/modules/fulfillment/gql/federation.js +1 -1
- package/dist/modules/fulfillment/gql/schema.generated.d.ts +427 -145
- package/dist/modules/fulfillment/gql/types.js +3 -1
- package/dist/modules/identity/api-key/api-key.js +2 -0
- package/dist/modules/identity/gql/schema.generated.d.ts +33 -9
- package/dist/modules/indexing/gql/federation.js +1 -1
- package/dist/modules/indexing/gql/schema.generated.d.ts +15 -0
- package/dist/modules/invoicing/gql/federation.js +1 -1
- package/dist/modules/invoicing/gql/schema.generated.d.ts +22 -13
- package/dist/modules/notification/gql/federation.js +1 -1
- package/dist/modules/notification/gql/schema.generated.d.ts +32 -8
- package/dist/modules/ordering/gql/federation.js +1 -1
- package/dist/modules/ordering/gql/schema.generated.d.ts +37 -27
- package/dist/modules/ostorage/gql/federation.js +1 -1
- package/dist/modules/ostorage/gql/schema.generated.d.ts +18 -3
- package/dist/modules/payment/gql/federation.js +1 -1
- package/dist/modules/payment/gql/schema.generated.d.ts +1 -1
- package/dist/modules/resource/gql/federation.js +1 -1
- package/dist/modules/resource/gql/schema.generated.d.ts +25 -16
- package/dist/modules/scheduling/gql/federation.js +1 -1
- package/dist/modules/scheduling/gql/schema.generated.d.ts +23 -6
- package/package.json +41 -41
@@ -33,6 +33,7 @@ export declare type FulfillmentQuery = {
|
|
33
33
|
__typename?: 'FulfillmentQuery';
|
34
34
|
fulfillment: FulfillmentFulfillmentQuery;
|
35
35
|
fulfillment_courier: FulfillmentFulfillmentCourierQuery;
|
36
|
+
fulfillment_product: FulfillmentFulfillmentProductQuery;
|
36
37
|
};
|
37
38
|
export declare type FulfillmentFulfillmentQuery = {
|
38
39
|
__typename?: 'FulfillmentFulfillmentQuery';
|
@@ -72,13 +73,14 @@ export declare type IoRestorecommerceFulfillmentOrder = {
|
|
72
73
|
__typename?: 'IoRestorecommerceFulfillmentOrder';
|
73
74
|
referenceId?: Maybe<Scalars['String']>;
|
74
75
|
parcels?: Maybe<Array<IoRestorecommerceFulfillmentParcel>>;
|
75
|
-
sender?: Maybe<
|
76
|
-
receiver?: Maybe<
|
76
|
+
sender?: Maybe<IoRestorecommerceFulfillmentShippingAddress>;
|
77
|
+
receiver?: Maybe<IoRestorecommerceFulfillmentShippingAddress>;
|
77
78
|
notify?: Maybe<Scalars['String']>;
|
78
79
|
};
|
79
80
|
export declare type IoRestorecommerceFulfillmentParcel = {
|
80
81
|
__typename?: 'IoRestorecommerceFulfillmentParcel';
|
81
82
|
productId?: Maybe<Scalars['String']>;
|
83
|
+
product?: Maybe<IoRestorecommerceFulfillmentProductFulfillmentProduct>;
|
82
84
|
productVariantId?: Maybe<Scalars['String']>;
|
83
85
|
items?: Maybe<Array<IoRestorecommerceFulfillmentItem>>;
|
84
86
|
weightInKg?: Maybe<Scalars['Float']>;
|
@@ -86,6 +88,66 @@ export declare type IoRestorecommerceFulfillmentParcel = {
|
|
86
88
|
widthInCm?: Maybe<Scalars['Float']>;
|
87
89
|
lengthInCm?: Maybe<Scalars['Float']>;
|
88
90
|
};
|
91
|
+
export declare type IoRestorecommerceFulfillmentProductFulfillmentProduct = {
|
92
|
+
__typename?: 'IoRestorecommerceFulfillmentProductFulfillmentProduct';
|
93
|
+
id?: Maybe<Scalars['String']>;
|
94
|
+
name?: Maybe<Scalars['String']>;
|
95
|
+
description?: Maybe<Scalars['String']>;
|
96
|
+
courierId?: Maybe<Scalars['String']>;
|
97
|
+
courier?: Maybe<IoRestorecommerceFulfillmentCourierFulfillmentCourier>;
|
98
|
+
startZones?: Maybe<Array<Scalars['String']>>;
|
99
|
+
destinationZones?: Maybe<Array<Scalars['String']>>;
|
100
|
+
taxIds?: Maybe<Array<Scalars['String']>>;
|
101
|
+
attributes?: Maybe<Array<IoRestorecommerceAttributeAttribute>>;
|
102
|
+
variants?: Maybe<Array<IoRestorecommerceFulfillmentProductVariant>>;
|
103
|
+
meta?: Maybe<IoRestorecommerceMetaMeta>;
|
104
|
+
};
|
105
|
+
export declare type IoRestorecommerceFulfillmentCourierFulfillmentCourier = {
|
106
|
+
__typename?: 'IoRestorecommerceFulfillmentCourierFulfillmentCourier';
|
107
|
+
id?: Maybe<Scalars['String']>;
|
108
|
+
name?: Maybe<Scalars['String']>;
|
109
|
+
description?: Maybe<Scalars['String']>;
|
110
|
+
logo?: Maybe<Scalars['String']>;
|
111
|
+
website?: Maybe<Scalars['String']>;
|
112
|
+
stubType?: Maybe<Scalars['String']>;
|
113
|
+
configuration?: Maybe<GoogleProtobufAny>;
|
114
|
+
meta?: Maybe<IoRestorecommerceMetaMeta>;
|
115
|
+
};
|
116
|
+
export declare type GoogleProtobufAny = {
|
117
|
+
__typename?: 'GoogleProtobufAny';
|
118
|
+
typeUrl?: Maybe<Scalars['String']>;
|
119
|
+
value?: Maybe<Scalars['GoogleProtobufAnyValue']>;
|
120
|
+
};
|
121
|
+
export declare type IoRestorecommerceMetaMeta = {
|
122
|
+
__typename?: 'IoRestorecommerceMetaMeta';
|
123
|
+
created?: Maybe<Scalars['Float']>;
|
124
|
+
modified?: Maybe<Scalars['Float']>;
|
125
|
+
modifiedBy?: Maybe<Scalars['String']>;
|
126
|
+
owner?: Maybe<Array<IoRestorecommerceAttributeAttribute>>;
|
127
|
+
acl?: Maybe<Array<IoRestorecommerceAttributeAttributeObj>>;
|
128
|
+
};
|
129
|
+
export declare type IoRestorecommerceAttributeAttribute = {
|
130
|
+
__typename?: 'IoRestorecommerceAttributeAttribute';
|
131
|
+
id?: Maybe<Scalars['String']>;
|
132
|
+
value?: Maybe<Scalars['String']>;
|
133
|
+
attribute?: Maybe<Array<IoRestorecommerceAttributeAttribute>>;
|
134
|
+
};
|
135
|
+
export declare type IoRestorecommerceAttributeAttributeObj = {
|
136
|
+
__typename?: 'IoRestorecommerceAttributeAttributeObj';
|
137
|
+
attribute?: Maybe<IoRestorecommerceAttributeAttribute>;
|
138
|
+
};
|
139
|
+
export declare type IoRestorecommerceFulfillmentProductVariant = {
|
140
|
+
__typename?: 'IoRestorecommerceFulfillmentProductVariant';
|
141
|
+
id?: Maybe<Scalars['String']>;
|
142
|
+
name?: Maybe<Scalars['String']>;
|
143
|
+
description?: Maybe<Scalars['String']>;
|
144
|
+
price?: Maybe<Scalars['Float']>;
|
145
|
+
maxWeight?: Maybe<Scalars['Float']>;
|
146
|
+
maxWidth?: Maybe<Scalars['Float']>;
|
147
|
+
maxHeight?: Maybe<Scalars['Float']>;
|
148
|
+
maxLength?: Maybe<Scalars['Float']>;
|
149
|
+
maxVolume?: Maybe<Scalars['Float']>;
|
150
|
+
};
|
89
151
|
export declare type IoRestorecommerceFulfillmentItem = {
|
90
152
|
__typename?: 'IoRestorecommerceFulfillmentItem';
|
91
153
|
itemId?: Maybe<Scalars['String']>;
|
@@ -94,10 +156,10 @@ export declare type IoRestorecommerceFulfillmentItem = {
|
|
94
156
|
taricCode?: Maybe<Scalars['String']>;
|
95
157
|
quantity?: Maybe<Scalars['Int']>;
|
96
158
|
};
|
97
|
-
export declare type
|
98
|
-
__typename?: '
|
159
|
+
export declare type IoRestorecommerceFulfillmentShippingAddress = {
|
160
|
+
__typename?: 'IoRestorecommerceFulfillmentShippingAddress';
|
99
161
|
address?: Maybe<IoRestorecommerceAddressAddress>;
|
100
|
-
contactPerson?: Maybe<
|
162
|
+
contactPerson?: Maybe<IoRestorecommerceAddressContactPerson>;
|
101
163
|
};
|
102
164
|
export declare type IoRestorecommerceAddressAddress = {
|
103
165
|
__typename?: 'IoRestorecommerceAddressAddress';
|
@@ -117,24 +179,6 @@ export declare type IoRestorecommerceAddressAddress = {
|
|
117
179
|
residentialAddress?: Maybe<IoRestorecommerceAddressResidentialAddress>;
|
118
180
|
packStation?: Maybe<IoRestorecommerceAddressPackStation>;
|
119
181
|
};
|
120
|
-
export declare type IoRestorecommerceMetaMeta = {
|
121
|
-
__typename?: 'IoRestorecommerceMetaMeta';
|
122
|
-
created?: Maybe<Scalars['Float']>;
|
123
|
-
modified?: Maybe<Scalars['Float']>;
|
124
|
-
modifiedBy?: Maybe<Scalars['String']>;
|
125
|
-
owner?: Maybe<Array<IoRestorecommerceAttributeAttribute>>;
|
126
|
-
acl?: Maybe<Array<IoRestorecommerceAttributeAttributeObj>>;
|
127
|
-
};
|
128
|
-
export declare type IoRestorecommerceAttributeAttribute = {
|
129
|
-
__typename?: 'IoRestorecommerceAttributeAttribute';
|
130
|
-
id?: Maybe<Scalars['String']>;
|
131
|
-
value?: Maybe<Scalars['String']>;
|
132
|
-
attribute?: Maybe<Array<IoRestorecommerceAttributeAttribute>>;
|
133
|
-
};
|
134
|
-
export declare type IoRestorecommerceAttributeAttributeObj = {
|
135
|
-
__typename?: 'IoRestorecommerceAttributeAttributeObj';
|
136
|
-
attribute?: Maybe<IoRestorecommerceAttributeAttribute>;
|
137
|
-
};
|
138
182
|
export declare type IoRestorecommerceCountryCountry = {
|
139
183
|
__typename?: 'IoRestorecommerceCountryCountry';
|
140
184
|
id?: Maybe<Scalars['String']>;
|
@@ -161,9 +205,9 @@ export declare type IoRestorecommerceAddressBusinessAddress = {
|
|
161
205
|
export declare type IoRestorecommerceAddressResidentialAddress = {
|
162
206
|
__typename?: 'IoRestorecommerceAddressResidentialAddress';
|
163
207
|
title?: Maybe<Scalars['String']>;
|
164
|
-
|
208
|
+
givenName?: Maybe<Scalars['String']>;
|
165
209
|
midName?: Maybe<Scalars['String']>;
|
166
|
-
|
210
|
+
familyName?: Maybe<Scalars['String']>;
|
167
211
|
};
|
168
212
|
export declare type IoRestorecommerceAddressPackStation = {
|
169
213
|
__typename?: 'IoRestorecommerceAddressPackStation';
|
@@ -171,8 +215,8 @@ export declare type IoRestorecommerceAddressPackStation = {
|
|
171
215
|
stationNumber?: Maybe<Scalars['String']>;
|
172
216
|
postNumber?: Maybe<Scalars['String']>;
|
173
217
|
};
|
174
|
-
export declare type
|
175
|
-
__typename?: '
|
218
|
+
export declare type IoRestorecommerceAddressContactPerson = {
|
219
|
+
__typename?: 'IoRestorecommerceAddressContactPerson';
|
176
220
|
name?: Maybe<Scalars['String']>;
|
177
221
|
email?: Maybe<Scalars['String']>;
|
178
222
|
phone?: Maybe<Scalars['String']>;
|
@@ -213,10 +257,10 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
213
257
|
sort?: InputMaybe<Array<IIoRestorecommerceResourcebaseSort>>;
|
214
258
|
filters?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilterOp>>;
|
215
259
|
field?: InputMaybe<Array<IIoRestorecommerceResourcebaseFieldFilter>>;
|
216
|
-
search?: InputMaybe<Array<Scalars['String']>>;
|
217
260
|
localesLimiter?: InputMaybe<Array<Scalars['String']>>;
|
218
261
|
customQueries?: InputMaybe<Array<Scalars['String']>>;
|
219
262
|
customArguments?: InputMaybe<IGoogleProtobufAny>;
|
263
|
+
search?: InputMaybe<IIoRestorecommerceResourcebaseSearch>;
|
220
264
|
/** target scope */
|
221
265
|
scope?: InputMaybe<Scalars['String']>;
|
222
266
|
};
|
@@ -303,6 +347,11 @@ export declare type IGoogleProtobufAny = {
|
|
303
347
|
typeUrl?: InputMaybe<Scalars['String']>;
|
304
348
|
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
305
349
|
};
|
350
|
+
export declare type IIoRestorecommerceResourcebaseSearch = {
|
351
|
+
search?: InputMaybe<Scalars['String']>;
|
352
|
+
fields?: InputMaybe<Array<Scalars['String']>>;
|
353
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
354
|
+
};
|
306
355
|
export declare type ProtoIoRestorecommerceFulfillmentTrackingResultList = {
|
307
356
|
__typename?: 'ProtoIoRestorecommerceFulfillmentTrackingResultList';
|
308
357
|
details?: Maybe<IoRestorecommerceFulfillmentTrackingResultList>;
|
@@ -332,11 +381,6 @@ export declare type IoRestorecommerceFulfillmentEvent = {
|
|
332
381
|
details?: Maybe<GoogleProtobufAny>;
|
333
382
|
status?: Maybe<IoRestorecommerceStatusStatus>;
|
334
383
|
};
|
335
|
-
export declare type GoogleProtobufAny = {
|
336
|
-
__typename?: 'GoogleProtobufAny';
|
337
|
-
typeUrl?: Maybe<Scalars['String']>;
|
338
|
-
value?: Maybe<Scalars['GoogleProtobufAnyValue']>;
|
339
|
-
};
|
340
384
|
export declare type IIoRestorecommerceFulfillmentTrackingRequestList = {
|
341
385
|
items?: InputMaybe<Array<IIoRestorecommerceFulfillmentTrackingRequest>>;
|
342
386
|
};
|
@@ -367,16 +411,82 @@ export declare type IoRestorecommerceFulfillmentCourierFulfillmentCourierRespons
|
|
367
411
|
payload?: Maybe<IoRestorecommerceFulfillmentCourierFulfillmentCourier>;
|
368
412
|
status?: Maybe<IoRestorecommerceStatusStatus>;
|
369
413
|
};
|
370
|
-
export declare type
|
371
|
-
__typename?: '
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
414
|
+
export declare type FulfillmentFulfillmentProductQuery = {
|
415
|
+
__typename?: 'FulfillmentFulfillmentProductQuery';
|
416
|
+
Read?: Maybe<ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList>;
|
417
|
+
Find?: Maybe<ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList>;
|
418
|
+
};
|
419
|
+
export declare type FulfillmentFulfillmentProductQueryReadArgs = {
|
420
|
+
input: IIoRestorecommerceResourcebaseReadRequest;
|
421
|
+
};
|
422
|
+
export declare type FulfillmentFulfillmentProductQueryFindArgs = {
|
423
|
+
input: IIoRestorecommerceFulfillmentProductQueryList;
|
424
|
+
};
|
425
|
+
export declare type ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList = {
|
426
|
+
__typename?: 'ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList';
|
427
|
+
details?: Maybe<IoRestorecommerceFulfillmentProductFulfillmentProductResponseList>;
|
428
|
+
};
|
429
|
+
export declare type IoRestorecommerceFulfillmentProductFulfillmentProductResponseList = {
|
430
|
+
__typename?: 'IoRestorecommerceFulfillmentProductFulfillmentProductResponseList';
|
431
|
+
items?: Maybe<Array<IoRestorecommerceFulfillmentProductFulfillmentProductResponse>>;
|
432
|
+
totalCount?: Maybe<Scalars['Int']>;
|
433
|
+
operationStatus?: Maybe<IoRestorecommerceStatusOperationStatus>;
|
434
|
+
};
|
435
|
+
export declare type IoRestorecommerceFulfillmentProductFulfillmentProductResponse = {
|
436
|
+
__typename?: 'IoRestorecommerceFulfillmentProductFulfillmentProductResponse';
|
437
|
+
payload?: Maybe<IoRestorecommerceFulfillmentProductFulfillmentProduct>;
|
438
|
+
status?: Maybe<IoRestorecommerceStatusStatus>;
|
439
|
+
};
|
440
|
+
export declare type ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList = {
|
441
|
+
__typename?: 'ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList';
|
442
|
+
details?: Maybe<IoRestorecommerceFulfillmentProductPackingSolutionResponseList>;
|
443
|
+
};
|
444
|
+
export declare type IoRestorecommerceFulfillmentProductPackingSolutionResponseList = {
|
445
|
+
__typename?: 'IoRestorecommerceFulfillmentProductPackingSolutionResponseList';
|
446
|
+
items?: Maybe<Array<IoRestorecommerceFulfillmentProductPackingSolutionResponse>>;
|
447
|
+
totalCount?: Maybe<Scalars['Int']>;
|
448
|
+
operationStatus?: Maybe<IoRestorecommerceStatusOperationStatus>;
|
449
|
+
};
|
450
|
+
export declare type IoRestorecommerceFulfillmentProductPackingSolutionResponse = {
|
451
|
+
__typename?: 'IoRestorecommerceFulfillmentProductPackingSolutionResponse';
|
452
|
+
solutions?: Maybe<Array<IoRestorecommerceFulfillmentProductPackingSolution>>;
|
453
|
+
status?: Maybe<IoRestorecommerceStatusStatus>;
|
454
|
+
};
|
455
|
+
export declare type IoRestorecommerceFulfillmentProductPackingSolution = {
|
456
|
+
__typename?: 'IoRestorecommerceFulfillmentProductPackingSolution';
|
457
|
+
referenceId?: Maybe<Scalars['String']>;
|
458
|
+
price?: Maybe<Scalars['Float']>;
|
459
|
+
compactness?: Maybe<Scalars['Float']>;
|
460
|
+
homogeneity?: Maybe<Scalars['Float']>;
|
461
|
+
score?: Maybe<Scalars['Float']>;
|
462
|
+
parcels?: Maybe<Array<IoRestorecommerceFulfillmentParcel>>;
|
463
|
+
};
|
464
|
+
export declare type IIoRestorecommerceFulfillmentProductQueryList = {
|
465
|
+
items?: InputMaybe<Array<IIoRestorecommerceFulfillmentProductQuery>>;
|
466
|
+
totalCount?: InputMaybe<Scalars['Int']>;
|
467
|
+
};
|
468
|
+
export declare type IIoRestorecommerceFulfillmentProductQuery = {
|
469
|
+
goods?: InputMaybe<Array<IIoRestorecommerceFulfillmentItem>>;
|
470
|
+
preferences?: InputMaybe<IIoRestorecommerceFulfillmentProductPreferences>;
|
471
|
+
referenceId?: InputMaybe<Scalars['String']>;
|
472
|
+
};
|
473
|
+
export declare type IIoRestorecommerceFulfillmentItem = {
|
474
|
+
itemId?: InputMaybe<Scalars['String']>;
|
475
|
+
name?: InputMaybe<Scalars['String']>;
|
476
|
+
description?: InputMaybe<Scalars['String']>;
|
477
|
+
taricCode?: InputMaybe<Scalars['String']>;
|
478
|
+
quantity?: InputMaybe<Scalars['Int']>;
|
479
|
+
};
|
480
|
+
export declare type IIoRestorecommerceFulfillmentProductPreferences = {
|
481
|
+
couriers?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
482
|
+
pricing?: InputMaybe<Scalars['Float']>;
|
483
|
+
compactness?: InputMaybe<Scalars['Float']>;
|
484
|
+
homogeneity?: InputMaybe<Scalars['Float']>;
|
485
|
+
};
|
486
|
+
export declare type IIoRestorecommerceAttributeAttribute = {
|
487
|
+
id?: InputMaybe<Scalars['String']>;
|
488
|
+
value?: InputMaybe<Scalars['String']>;
|
489
|
+
attribute?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
380
490
|
};
|
381
491
|
export declare type Mutation = {
|
382
492
|
__typename?: 'Mutation';
|
@@ -386,6 +496,7 @@ export declare type FulfillmentMutation = {
|
|
386
496
|
__typename?: 'FulfillmentMutation';
|
387
497
|
fulfillment: FulfillmentFulfillmentMutation;
|
388
498
|
fulfillment_courier: FulfillmentFulfillmentCourierMutation;
|
499
|
+
fulfillment_product: FulfillmentFulfillmentProductMutation;
|
389
500
|
};
|
390
501
|
export declare type FulfillmentFulfillmentMutation = {
|
391
502
|
__typename?: 'FulfillmentFulfillmentMutation';
|
@@ -423,8 +534,8 @@ export declare type IIoRestorecommerceFulfillmentFulfillment = {
|
|
423
534
|
export declare type IIoRestorecommerceFulfillmentOrder = {
|
424
535
|
referenceId?: InputMaybe<Scalars['String']>;
|
425
536
|
parcels?: InputMaybe<Array<IIoRestorecommerceFulfillmentParcel>>;
|
426
|
-
sender?: InputMaybe<
|
427
|
-
receiver?: InputMaybe<
|
537
|
+
sender?: InputMaybe<IIoRestorecommerceFulfillmentShippingAddress>;
|
538
|
+
receiver?: InputMaybe<IIoRestorecommerceFulfillmentShippingAddress>;
|
428
539
|
notify?: InputMaybe<Scalars['String']>;
|
429
540
|
};
|
430
541
|
export declare type IIoRestorecommerceFulfillmentParcel = {
|
@@ -436,16 +547,9 @@ export declare type IIoRestorecommerceFulfillmentParcel = {
|
|
436
547
|
widthInCm?: InputMaybe<Scalars['Float']>;
|
437
548
|
lengthInCm?: InputMaybe<Scalars['Float']>;
|
438
549
|
};
|
439
|
-
export declare type
|
440
|
-
itemId?: InputMaybe<Scalars['String']>;
|
441
|
-
name?: InputMaybe<Scalars['String']>;
|
442
|
-
description?: InputMaybe<Scalars['String']>;
|
443
|
-
taricCode?: InputMaybe<Scalars['String']>;
|
444
|
-
quantity?: InputMaybe<Scalars['Int']>;
|
445
|
-
};
|
446
|
-
export declare type IIoRestorecommerceFulfillmentAddress = {
|
550
|
+
export declare type IIoRestorecommerceFulfillmentShippingAddress = {
|
447
551
|
address?: InputMaybe<IIoRestorecommerceAddressAddress>;
|
448
|
-
contactPerson?: InputMaybe<
|
552
|
+
contactPerson?: InputMaybe<IIoRestorecommerceAddressContactPerson>;
|
449
553
|
};
|
450
554
|
export declare type IIoRestorecommerceAddressAddress = {
|
451
555
|
id?: InputMaybe<Scalars['String']>;
|
@@ -470,11 +574,6 @@ export declare type IIoRestorecommerceMetaMeta = {
|
|
470
574
|
owner?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
471
575
|
acl?: InputMaybe<Array<IIoRestorecommerceAttributeAttributeObj>>;
|
472
576
|
};
|
473
|
-
export declare type IIoRestorecommerceAttributeAttribute = {
|
474
|
-
id?: InputMaybe<Scalars['String']>;
|
475
|
-
value?: InputMaybe<Scalars['String']>;
|
476
|
-
attribute?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
477
|
-
};
|
478
577
|
export declare type IIoRestorecommerceAttributeAttributeObj = {
|
479
578
|
attribute?: InputMaybe<IIoRestorecommerceAttributeAttribute>;
|
480
579
|
};
|
@@ -491,16 +590,16 @@ export declare type IIoRestorecommerceAddressBusinessAddress = {
|
|
491
590
|
};
|
492
591
|
export declare type IIoRestorecommerceAddressResidentialAddress = {
|
493
592
|
title?: InputMaybe<Scalars['String']>;
|
494
|
-
|
593
|
+
givenName?: InputMaybe<Scalars['String']>;
|
495
594
|
midName?: InputMaybe<Scalars['String']>;
|
496
|
-
|
595
|
+
familyName?: InputMaybe<Scalars['String']>;
|
497
596
|
};
|
498
597
|
export declare type IIoRestorecommerceAddressPackStation = {
|
499
598
|
provider?: InputMaybe<Scalars['String']>;
|
500
599
|
stationNumber?: InputMaybe<Scalars['String']>;
|
501
600
|
postNumber?: InputMaybe<Scalars['String']>;
|
502
601
|
};
|
503
|
-
export declare type
|
602
|
+
export declare type IIoRestorecommerceAddressContactPerson = {
|
504
603
|
name?: InputMaybe<Scalars['String']>;
|
505
604
|
email?: InputMaybe<Scalars['String']>;
|
506
605
|
phone?: InputMaybe<Scalars['String']>;
|
@@ -538,6 +637,8 @@ export declare type IoRestorecommerceResourcebaseDeleteResponse = {
|
|
538
637
|
export declare type IIoRestorecommerceResourcebaseDeleteRequest = {
|
539
638
|
collection?: InputMaybe<Scalars['Boolean']>;
|
540
639
|
ids?: InputMaybe<Array<Scalars['String']>>;
|
640
|
+
view?: InputMaybe<Array<Scalars['String']>>;
|
641
|
+
analyzer?: InputMaybe<Array<Scalars['String']>>;
|
541
642
|
/** target scope */
|
542
643
|
scope?: InputMaybe<Scalars['String']>;
|
543
644
|
};
|
@@ -569,13 +670,66 @@ export declare type IIoRestorecommerceFulfillmentCourierFulfillmentCourier = {
|
|
569
670
|
configuration?: InputMaybe<IGoogleProtobufAny>;
|
570
671
|
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
571
672
|
};
|
673
|
+
export declare type FulfillmentFulfillmentProductMutation = {
|
674
|
+
__typename?: 'FulfillmentFulfillmentProductMutation';
|
675
|
+
Mutate?: Maybe<ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList>;
|
676
|
+
Delete?: Maybe<ProtoIoRestorecommerceResourcebaseDeleteResponse>;
|
677
|
+
};
|
678
|
+
export declare type FulfillmentFulfillmentProductMutationMutateArgs = {
|
679
|
+
input: IIoRestorecommerceFulfillmentProductFulfillmentProductList;
|
680
|
+
};
|
681
|
+
export declare type FulfillmentFulfillmentProductMutationDeleteArgs = {
|
682
|
+
input: IIoRestorecommerceResourcebaseDeleteRequest;
|
683
|
+
};
|
684
|
+
export declare type IIoRestorecommerceFulfillmentProductFulfillmentProductList = {
|
685
|
+
items?: InputMaybe<Array<IIoRestorecommerceFulfillmentProductFulfillmentProduct>>;
|
686
|
+
totalCount?: InputMaybe<Scalars['Int']>;
|
687
|
+
mode?: InputMaybe<ModeType>;
|
688
|
+
/** target scope */
|
689
|
+
scope?: InputMaybe<Scalars['String']>;
|
690
|
+
};
|
691
|
+
export declare type IIoRestorecommerceFulfillmentProductFulfillmentProduct = {
|
692
|
+
id?: InputMaybe<Scalars['String']>;
|
693
|
+
name?: InputMaybe<Scalars['String']>;
|
694
|
+
description?: InputMaybe<Scalars['String']>;
|
695
|
+
courierId?: InputMaybe<Scalars['String']>;
|
696
|
+
startZones?: InputMaybe<Array<Scalars['String']>>;
|
697
|
+
destinationZones?: InputMaybe<Array<Scalars['String']>>;
|
698
|
+
taxIds?: InputMaybe<Array<Scalars['String']>>;
|
699
|
+
attributes?: InputMaybe<Array<IIoRestorecommerceAttributeAttribute>>;
|
700
|
+
variants?: InputMaybe<Array<IIoRestorecommerceFulfillmentProductVariant>>;
|
701
|
+
meta?: InputMaybe<IIoRestorecommerceMetaMeta>;
|
702
|
+
};
|
703
|
+
export declare type IIoRestorecommerceFulfillmentProductVariant = {
|
704
|
+
id?: InputMaybe<Scalars['String']>;
|
705
|
+
name?: InputMaybe<Scalars['String']>;
|
706
|
+
description?: InputMaybe<Scalars['String']>;
|
707
|
+
price?: InputMaybe<Scalars['Float']>;
|
708
|
+
maxWeight?: InputMaybe<Scalars['Float']>;
|
709
|
+
maxWidth?: InputMaybe<Scalars['Float']>;
|
710
|
+
maxHeight?: InputMaybe<Scalars['Float']>;
|
711
|
+
maxLength?: InputMaybe<Scalars['Float']>;
|
712
|
+
maxVolume?: InputMaybe<Scalars['Float']>;
|
713
|
+
};
|
572
714
|
export declare type Subscription = {
|
573
715
|
__typename?: 'Subscription';
|
574
716
|
orderingOrders?: Maybe<SubscriptionOutput>;
|
717
|
+
fulfillmentFulfillment?: Maybe<SubscriptionOutput>;
|
718
|
+
fulfillmentFulfillmentCouriers?: Maybe<SubscriptionOutput>;
|
719
|
+
fulfillmentFulfillmentProduct?: Maybe<SubscriptionOutput>;
|
575
720
|
};
|
576
721
|
export declare type SubscriptionOrderingOrdersArgs = {
|
577
722
|
action?: InputMaybe<SubscriptionAction>;
|
578
723
|
};
|
724
|
+
export declare type SubscriptionFulfillmentFulfillmentArgs = {
|
725
|
+
action?: InputMaybe<SubscriptionAction>;
|
726
|
+
};
|
727
|
+
export declare type SubscriptionFulfillmentFulfillmentCouriersArgs = {
|
728
|
+
action?: InputMaybe<SubscriptionAction>;
|
729
|
+
};
|
730
|
+
export declare type SubscriptionFulfillmentFulfillmentProductArgs = {
|
731
|
+
action?: InputMaybe<SubscriptionAction>;
|
732
|
+
};
|
579
733
|
export declare type SubscriptionOutput = {
|
580
734
|
__typename?: 'SubscriptionOutput';
|
581
735
|
id?: Maybe<Scalars['String']>;
|
@@ -625,21 +779,26 @@ export declare type ResolversTypes = ResolversObject<{
|
|
625
779
|
String: ResolverTypeWrapper<Scalars['String']>;
|
626
780
|
IoRestorecommerceFulfillmentOrder: ResolverTypeWrapper<IoRestorecommerceFulfillmentOrder>;
|
627
781
|
IoRestorecommerceFulfillmentParcel: ResolverTypeWrapper<IoRestorecommerceFulfillmentParcel>;
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
IoRestorecommerceAddressAddress: ResolverTypeWrapper<IoRestorecommerceAddressAddress>;
|
782
|
+
IoRestorecommerceFulfillmentProductFulfillmentProduct: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductFulfillmentProduct>;
|
783
|
+
IoRestorecommerceFulfillmentCourierFulfillmentCourier: ResolverTypeWrapper<IoRestorecommerceFulfillmentCourierFulfillmentCourier>;
|
784
|
+
GoogleProtobufAny: ResolverTypeWrapper<GoogleProtobufAny>;
|
785
|
+
GoogleProtobufAnyValue: ResolverTypeWrapper<Scalars['GoogleProtobufAnyValue']>;
|
633
786
|
IoRestorecommerceMetaMeta: ResolverTypeWrapper<IoRestorecommerceMetaMeta>;
|
787
|
+
Float: ResolverTypeWrapper<Scalars['Float']>;
|
634
788
|
IoRestorecommerceAttributeAttribute: ResolverTypeWrapper<IoRestorecommerceAttributeAttribute>;
|
635
789
|
IoRestorecommerceAttributeAttributeObj: ResolverTypeWrapper<IoRestorecommerceAttributeAttributeObj>;
|
790
|
+
IoRestorecommerceFulfillmentProductVariant: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductVariant>;
|
791
|
+
IoRestorecommerceFulfillmentItem: ResolverTypeWrapper<IoRestorecommerceFulfillmentItem>;
|
792
|
+
Int: ResolverTypeWrapper<Scalars['Int']>;
|
793
|
+
IoRestorecommerceFulfillmentShippingAddress: ResolverTypeWrapper<IoRestorecommerceFulfillmentShippingAddress>;
|
794
|
+
IoRestorecommerceAddressAddress: ResolverTypeWrapper<IoRestorecommerceAddressAddress>;
|
636
795
|
IoRestorecommerceCountryCountry: ResolverTypeWrapper<IoRestorecommerceCountryCountry>;
|
637
796
|
IoRestorecommerceAddressGeoPoint: ResolverTypeWrapper<IoRestorecommerceAddressGeoPoint>;
|
638
797
|
IoRestorecommerceAddressAddressAddition: ResolverTypeWrapper<IoRestorecommerceAddressAddressAddition>;
|
639
798
|
IoRestorecommerceAddressBusinessAddress: ResolverTypeWrapper<IoRestorecommerceAddressBusinessAddress>;
|
640
799
|
IoRestorecommerceAddressResidentialAddress: ResolverTypeWrapper<IoRestorecommerceAddressResidentialAddress>;
|
641
800
|
IoRestorecommerceAddressPackStation: ResolverTypeWrapper<IoRestorecommerceAddressPackStation>;
|
642
|
-
|
801
|
+
IoRestorecommerceAddressContactPerson: ResolverTypeWrapper<IoRestorecommerceAddressContactPerson>;
|
643
802
|
IoRestorecommerceFulfillmentLabel: ResolverTypeWrapper<IoRestorecommerceFulfillmentLabel>;
|
644
803
|
IoRestorecommerceFulfillmentState: IoRestorecommerceFulfillmentState;
|
645
804
|
IoRestorecommerceStatusStatus: ResolverTypeWrapper<IoRestorecommerceStatusStatus>;
|
@@ -660,20 +819,31 @@ export declare type ResolversTypes = ResolversObject<{
|
|
660
819
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
661
820
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
662
821
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
663
|
-
|
822
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
664
823
|
ProtoIoRestorecommerceFulfillmentTrackingResultList: ResolverTypeWrapper<ProtoIoRestorecommerceFulfillmentTrackingResultList>;
|
665
824
|
IoRestorecommerceFulfillmentTrackingResultList: ResolverTypeWrapper<IoRestorecommerceFulfillmentTrackingResultList>;
|
666
825
|
IoRestorecommerceFulfillmentTrackingResult: ResolverTypeWrapper<IoRestorecommerceFulfillmentTrackingResult>;
|
667
826
|
IoRestorecommerceFulfillmentTracking: ResolverTypeWrapper<IoRestorecommerceFulfillmentTracking>;
|
668
827
|
IoRestorecommerceFulfillmentEvent: ResolverTypeWrapper<IoRestorecommerceFulfillmentEvent>;
|
669
|
-
GoogleProtobufAny: ResolverTypeWrapper<GoogleProtobufAny>;
|
670
828
|
IIoRestorecommerceFulfillmentTrackingRequestList: IIoRestorecommerceFulfillmentTrackingRequestList;
|
671
829
|
IIoRestorecommerceFulfillmentTrackingRequest: IIoRestorecommerceFulfillmentTrackingRequest;
|
672
830
|
FulfillmentFulfillmentCourierQuery: ResolverTypeWrapper<FulfillmentFulfillmentCourierQuery>;
|
673
831
|
ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList: ResolverTypeWrapper<ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList>;
|
674
832
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList: ResolverTypeWrapper<IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList>;
|
675
833
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponse: ResolverTypeWrapper<IoRestorecommerceFulfillmentCourierFulfillmentCourierResponse>;
|
676
|
-
|
834
|
+
FulfillmentFulfillmentProductQuery: ResolverTypeWrapper<FulfillmentFulfillmentProductQuery>;
|
835
|
+
ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList: ResolverTypeWrapper<ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList>;
|
836
|
+
IoRestorecommerceFulfillmentProductFulfillmentProductResponseList: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductFulfillmentProductResponseList>;
|
837
|
+
IoRestorecommerceFulfillmentProductFulfillmentProductResponse: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductFulfillmentProductResponse>;
|
838
|
+
ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList: ResolverTypeWrapper<ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList>;
|
839
|
+
IoRestorecommerceFulfillmentProductPackingSolutionResponseList: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductPackingSolutionResponseList>;
|
840
|
+
IoRestorecommerceFulfillmentProductPackingSolutionResponse: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductPackingSolutionResponse>;
|
841
|
+
IoRestorecommerceFulfillmentProductPackingSolution: ResolverTypeWrapper<IoRestorecommerceFulfillmentProductPackingSolution>;
|
842
|
+
IIoRestorecommerceFulfillmentProductQueryList: IIoRestorecommerceFulfillmentProductQueryList;
|
843
|
+
IIoRestorecommerceFulfillmentProductQuery: IIoRestorecommerceFulfillmentProductQuery;
|
844
|
+
IIoRestorecommerceFulfillmentItem: IIoRestorecommerceFulfillmentItem;
|
845
|
+
IIoRestorecommerceFulfillmentProductPreferences: IIoRestorecommerceFulfillmentProductPreferences;
|
846
|
+
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
677
847
|
Mutation: ResolverTypeWrapper<{}>;
|
678
848
|
FulfillmentMutation: ResolverTypeWrapper<FulfillmentMutation>;
|
679
849
|
FulfillmentFulfillmentMutation: ResolverTypeWrapper<FulfillmentFulfillmentMutation>;
|
@@ -681,18 +851,16 @@ export declare type ResolversTypes = ResolversObject<{
|
|
681
851
|
IIoRestorecommerceFulfillmentFulfillment: IIoRestorecommerceFulfillmentFulfillment;
|
682
852
|
IIoRestorecommerceFulfillmentOrder: IIoRestorecommerceFulfillmentOrder;
|
683
853
|
IIoRestorecommerceFulfillmentParcel: IIoRestorecommerceFulfillmentParcel;
|
684
|
-
|
685
|
-
IIoRestorecommerceFulfillmentAddress: IIoRestorecommerceFulfillmentAddress;
|
854
|
+
IIoRestorecommerceFulfillmentShippingAddress: IIoRestorecommerceFulfillmentShippingAddress;
|
686
855
|
IIoRestorecommerceAddressAddress: IIoRestorecommerceAddressAddress;
|
687
856
|
IIoRestorecommerceMetaMeta: IIoRestorecommerceMetaMeta;
|
688
|
-
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
689
857
|
IIoRestorecommerceAttributeAttributeObj: IIoRestorecommerceAttributeAttributeObj;
|
690
858
|
IIoRestorecommerceAddressGeoPoint: IIoRestorecommerceAddressGeoPoint;
|
691
859
|
IIoRestorecommerceAddressAddressAddition: IIoRestorecommerceAddressAddressAddition;
|
692
860
|
IIoRestorecommerceAddressBusinessAddress: IIoRestorecommerceAddressBusinessAddress;
|
693
861
|
IIoRestorecommerceAddressResidentialAddress: IIoRestorecommerceAddressResidentialAddress;
|
694
862
|
IIoRestorecommerceAddressPackStation: IIoRestorecommerceAddressPackStation;
|
695
|
-
|
863
|
+
IIoRestorecommerceAddressContactPerson: IIoRestorecommerceAddressContactPerson;
|
696
864
|
IIoRestorecommerceFulfillmentLabel: IIoRestorecommerceFulfillmentLabel;
|
697
865
|
IIoRestorecommerceStatusStatus: IIoRestorecommerceStatusStatus;
|
698
866
|
ModeType: ModeType;
|
@@ -703,6 +871,10 @@ export declare type ResolversTypes = ResolversObject<{
|
|
703
871
|
FulfillmentFulfillmentCourierMutation: ResolverTypeWrapper<FulfillmentFulfillmentCourierMutation>;
|
704
872
|
IIoRestorecommerceFulfillmentCourierFulfillmentCourierList: IIoRestorecommerceFulfillmentCourierFulfillmentCourierList;
|
705
873
|
IIoRestorecommerceFulfillmentCourierFulfillmentCourier: IIoRestorecommerceFulfillmentCourierFulfillmentCourier;
|
874
|
+
FulfillmentFulfillmentProductMutation: ResolverTypeWrapper<FulfillmentFulfillmentProductMutation>;
|
875
|
+
IIoRestorecommerceFulfillmentProductFulfillmentProductList: IIoRestorecommerceFulfillmentProductFulfillmentProductList;
|
876
|
+
IIoRestorecommerceFulfillmentProductFulfillmentProduct: IIoRestorecommerceFulfillmentProductFulfillmentProduct;
|
877
|
+
IIoRestorecommerceFulfillmentProductVariant: IIoRestorecommerceFulfillmentProductVariant;
|
706
878
|
Subscription: ResolverTypeWrapper<{}>;
|
707
879
|
SubscriptionOutput: ResolverTypeWrapper<SubscriptionOutput>;
|
708
880
|
SubscriptionAction: SubscriptionAction;
|
@@ -719,21 +891,26 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
719
891
|
String: Scalars['String'];
|
720
892
|
IoRestorecommerceFulfillmentOrder: IoRestorecommerceFulfillmentOrder;
|
721
893
|
IoRestorecommerceFulfillmentParcel: IoRestorecommerceFulfillmentParcel;
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
IoRestorecommerceAddressAddress: IoRestorecommerceAddressAddress;
|
894
|
+
IoRestorecommerceFulfillmentProductFulfillmentProduct: IoRestorecommerceFulfillmentProductFulfillmentProduct;
|
895
|
+
IoRestorecommerceFulfillmentCourierFulfillmentCourier: IoRestorecommerceFulfillmentCourierFulfillmentCourier;
|
896
|
+
GoogleProtobufAny: GoogleProtobufAny;
|
897
|
+
GoogleProtobufAnyValue: Scalars['GoogleProtobufAnyValue'];
|
727
898
|
IoRestorecommerceMetaMeta: IoRestorecommerceMetaMeta;
|
899
|
+
Float: Scalars['Float'];
|
728
900
|
IoRestorecommerceAttributeAttribute: IoRestorecommerceAttributeAttribute;
|
729
901
|
IoRestorecommerceAttributeAttributeObj: IoRestorecommerceAttributeAttributeObj;
|
902
|
+
IoRestorecommerceFulfillmentProductVariant: IoRestorecommerceFulfillmentProductVariant;
|
903
|
+
IoRestorecommerceFulfillmentItem: IoRestorecommerceFulfillmentItem;
|
904
|
+
Int: Scalars['Int'];
|
905
|
+
IoRestorecommerceFulfillmentShippingAddress: IoRestorecommerceFulfillmentShippingAddress;
|
906
|
+
IoRestorecommerceAddressAddress: IoRestorecommerceAddressAddress;
|
730
907
|
IoRestorecommerceCountryCountry: IoRestorecommerceCountryCountry;
|
731
908
|
IoRestorecommerceAddressGeoPoint: IoRestorecommerceAddressGeoPoint;
|
732
909
|
IoRestorecommerceAddressAddressAddition: IoRestorecommerceAddressAddressAddition;
|
733
910
|
IoRestorecommerceAddressBusinessAddress: IoRestorecommerceAddressBusinessAddress;
|
734
911
|
IoRestorecommerceAddressResidentialAddress: IoRestorecommerceAddressResidentialAddress;
|
735
912
|
IoRestorecommerceAddressPackStation: IoRestorecommerceAddressPackStation;
|
736
|
-
|
913
|
+
IoRestorecommerceAddressContactPerson: IoRestorecommerceAddressContactPerson;
|
737
914
|
IoRestorecommerceFulfillmentLabel: IoRestorecommerceFulfillmentLabel;
|
738
915
|
IoRestorecommerceStatusStatus: IoRestorecommerceStatusStatus;
|
739
916
|
IoRestorecommerceStatusOperationStatus: IoRestorecommerceStatusOperationStatus;
|
@@ -746,20 +923,31 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
746
923
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
747
924
|
Boolean: Scalars['Boolean'];
|
748
925
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
749
|
-
|
926
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
750
927
|
ProtoIoRestorecommerceFulfillmentTrackingResultList: ProtoIoRestorecommerceFulfillmentTrackingResultList;
|
751
928
|
IoRestorecommerceFulfillmentTrackingResultList: IoRestorecommerceFulfillmentTrackingResultList;
|
752
929
|
IoRestorecommerceFulfillmentTrackingResult: IoRestorecommerceFulfillmentTrackingResult;
|
753
930
|
IoRestorecommerceFulfillmentTracking: IoRestorecommerceFulfillmentTracking;
|
754
931
|
IoRestorecommerceFulfillmentEvent: IoRestorecommerceFulfillmentEvent;
|
755
|
-
GoogleProtobufAny: GoogleProtobufAny;
|
756
932
|
IIoRestorecommerceFulfillmentTrackingRequestList: IIoRestorecommerceFulfillmentTrackingRequestList;
|
757
933
|
IIoRestorecommerceFulfillmentTrackingRequest: IIoRestorecommerceFulfillmentTrackingRequest;
|
758
934
|
FulfillmentFulfillmentCourierQuery: FulfillmentFulfillmentCourierQuery;
|
759
935
|
ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList: ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList;
|
760
936
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList: IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList;
|
761
937
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponse: IoRestorecommerceFulfillmentCourierFulfillmentCourierResponse;
|
762
|
-
|
938
|
+
FulfillmentFulfillmentProductQuery: FulfillmentFulfillmentProductQuery;
|
939
|
+
ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList: ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList;
|
940
|
+
IoRestorecommerceFulfillmentProductFulfillmentProductResponseList: IoRestorecommerceFulfillmentProductFulfillmentProductResponseList;
|
941
|
+
IoRestorecommerceFulfillmentProductFulfillmentProductResponse: IoRestorecommerceFulfillmentProductFulfillmentProductResponse;
|
942
|
+
ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList: ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList;
|
943
|
+
IoRestorecommerceFulfillmentProductPackingSolutionResponseList: IoRestorecommerceFulfillmentProductPackingSolutionResponseList;
|
944
|
+
IoRestorecommerceFulfillmentProductPackingSolutionResponse: IoRestorecommerceFulfillmentProductPackingSolutionResponse;
|
945
|
+
IoRestorecommerceFulfillmentProductPackingSolution: IoRestorecommerceFulfillmentProductPackingSolution;
|
946
|
+
IIoRestorecommerceFulfillmentProductQueryList: IIoRestorecommerceFulfillmentProductQueryList;
|
947
|
+
IIoRestorecommerceFulfillmentProductQuery: IIoRestorecommerceFulfillmentProductQuery;
|
948
|
+
IIoRestorecommerceFulfillmentItem: IIoRestorecommerceFulfillmentItem;
|
949
|
+
IIoRestorecommerceFulfillmentProductPreferences: IIoRestorecommerceFulfillmentProductPreferences;
|
950
|
+
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
763
951
|
Mutation: {};
|
764
952
|
FulfillmentMutation: FulfillmentMutation;
|
765
953
|
FulfillmentFulfillmentMutation: FulfillmentFulfillmentMutation;
|
@@ -767,18 +955,16 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
767
955
|
IIoRestorecommerceFulfillmentFulfillment: IIoRestorecommerceFulfillmentFulfillment;
|
768
956
|
IIoRestorecommerceFulfillmentOrder: IIoRestorecommerceFulfillmentOrder;
|
769
957
|
IIoRestorecommerceFulfillmentParcel: IIoRestorecommerceFulfillmentParcel;
|
770
|
-
|
771
|
-
IIoRestorecommerceFulfillmentAddress: IIoRestorecommerceFulfillmentAddress;
|
958
|
+
IIoRestorecommerceFulfillmentShippingAddress: IIoRestorecommerceFulfillmentShippingAddress;
|
772
959
|
IIoRestorecommerceAddressAddress: IIoRestorecommerceAddressAddress;
|
773
960
|
IIoRestorecommerceMetaMeta: IIoRestorecommerceMetaMeta;
|
774
|
-
IIoRestorecommerceAttributeAttribute: IIoRestorecommerceAttributeAttribute;
|
775
961
|
IIoRestorecommerceAttributeAttributeObj: IIoRestorecommerceAttributeAttributeObj;
|
776
962
|
IIoRestorecommerceAddressGeoPoint: IIoRestorecommerceAddressGeoPoint;
|
777
963
|
IIoRestorecommerceAddressAddressAddition: IIoRestorecommerceAddressAddressAddition;
|
778
964
|
IIoRestorecommerceAddressBusinessAddress: IIoRestorecommerceAddressBusinessAddress;
|
779
965
|
IIoRestorecommerceAddressResidentialAddress: IIoRestorecommerceAddressResidentialAddress;
|
780
966
|
IIoRestorecommerceAddressPackStation: IIoRestorecommerceAddressPackStation;
|
781
|
-
|
967
|
+
IIoRestorecommerceAddressContactPerson: IIoRestorecommerceAddressContactPerson;
|
782
968
|
IIoRestorecommerceFulfillmentLabel: IIoRestorecommerceFulfillmentLabel;
|
783
969
|
IIoRestorecommerceStatusStatus: IIoRestorecommerceStatusStatus;
|
784
970
|
IIoRestorecommerceFulfillmentCancelRequestList: IIoRestorecommerceFulfillmentCancelRequestList;
|
@@ -788,6 +974,10 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
788
974
|
FulfillmentFulfillmentCourierMutation: FulfillmentFulfillmentCourierMutation;
|
789
975
|
IIoRestorecommerceFulfillmentCourierFulfillmentCourierList: IIoRestorecommerceFulfillmentCourierFulfillmentCourierList;
|
790
976
|
IIoRestorecommerceFulfillmentCourierFulfillmentCourier: IIoRestorecommerceFulfillmentCourierFulfillmentCourier;
|
977
|
+
FulfillmentFulfillmentProductMutation: FulfillmentFulfillmentProductMutation;
|
978
|
+
IIoRestorecommerceFulfillmentProductFulfillmentProductList: IIoRestorecommerceFulfillmentProductFulfillmentProductList;
|
979
|
+
IIoRestorecommerceFulfillmentProductFulfillmentProduct: IIoRestorecommerceFulfillmentProductFulfillmentProduct;
|
980
|
+
IIoRestorecommerceFulfillmentProductVariant: IIoRestorecommerceFulfillmentProductVariant;
|
791
981
|
Subscription: {};
|
792
982
|
SubscriptionOutput: SubscriptionOutput;
|
793
983
|
}>;
|
@@ -797,6 +987,7 @@ export declare type QueryResolvers<ContextType = FulfillmentContext, ParentType
|
|
797
987
|
export declare type FulfillmentQueryResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentQuery'] = ResolversParentTypes['FulfillmentQuery']> = ResolversObject<{
|
798
988
|
fulfillment?: Resolver<ResolversTypes['FulfillmentFulfillmentQuery'], ParentType, ContextType>;
|
799
989
|
fulfillment_courier?: Resolver<ResolversTypes['FulfillmentFulfillmentCourierQuery'], ParentType, ContextType>;
|
990
|
+
fulfillment_product?: Resolver<ResolversTypes['FulfillmentFulfillmentProductQuery'], ParentType, ContextType>;
|
800
991
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
801
992
|
}>;
|
802
993
|
export declare type FulfillmentFulfillmentQueryResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentFulfillmentQuery'] = ResolversParentTypes['FulfillmentFulfillmentQuery']> = ResolversObject<{
|
@@ -830,13 +1021,14 @@ export declare type IoRestorecommerceFulfillmentFulfillmentResolvers<ContextType
|
|
830
1021
|
export declare type IoRestorecommerceFulfillmentOrderResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentOrder'] = ResolversParentTypes['IoRestorecommerceFulfillmentOrder']> = ResolversObject<{
|
831
1022
|
referenceId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
832
1023
|
parcels?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentParcel']>>, ParentType, ContextType>;
|
833
|
-
sender?: Resolver<Maybe<ResolversTypes['
|
834
|
-
receiver?: Resolver<Maybe<ResolversTypes['
|
1024
|
+
sender?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentShippingAddress']>, ParentType, ContextType>;
|
1025
|
+
receiver?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentShippingAddress']>, ParentType, ContextType>;
|
835
1026
|
notify?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
836
1027
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
837
1028
|
}>;
|
838
1029
|
export declare type IoRestorecommerceFulfillmentParcelResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentParcel'] = ResolversParentTypes['IoRestorecommerceFulfillmentParcel']> = ResolversObject<{
|
839
1030
|
productId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1031
|
+
product?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentProductFulfillmentProduct']>, ParentType, ContextType>;
|
840
1032
|
productVariantId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
841
1033
|
items?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentItem']>>, ParentType, ContextType>;
|
842
1034
|
weightInKg?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
@@ -845,6 +1037,69 @@ export declare type IoRestorecommerceFulfillmentParcelResolvers<ContextType = Fu
|
|
845
1037
|
lengthInCm?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
846
1038
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
847
1039
|
}>;
|
1040
|
+
export declare type IoRestorecommerceFulfillmentProductFulfillmentProductResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductFulfillmentProduct'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductFulfillmentProduct']> = ResolversObject<{
|
1041
|
+
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1042
|
+
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1043
|
+
description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1044
|
+
courierId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1045
|
+
courier?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentCourierFulfillmentCourier']>, ParentType, ContextType>;
|
1046
|
+
startZones?: Resolver<Maybe<Array<ResolversTypes['String']>>, ParentType, ContextType>;
|
1047
|
+
destinationZones?: Resolver<Maybe<Array<ResolversTypes['String']>>, ParentType, ContextType>;
|
1048
|
+
taxIds?: Resolver<Maybe<Array<ResolversTypes['String']>>, ParentType, ContextType>;
|
1049
|
+
attributes?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttribute']>>, ParentType, ContextType>;
|
1050
|
+
variants?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentProductVariant']>>, ParentType, ContextType>;
|
1051
|
+
meta?: Resolver<Maybe<ResolversTypes['IoRestorecommerceMetaMeta']>, ParentType, ContextType>;
|
1052
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1053
|
+
}>;
|
1054
|
+
export declare type IoRestorecommerceFulfillmentCourierFulfillmentCourierResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentCourierFulfillmentCourier'] = ResolversParentTypes['IoRestorecommerceFulfillmentCourierFulfillmentCourier']> = ResolversObject<{
|
1055
|
+
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1056
|
+
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1057
|
+
description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1058
|
+
logo?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1059
|
+
website?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1060
|
+
stubType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1061
|
+
configuration?: Resolver<Maybe<ResolversTypes['GoogleProtobufAny']>, ParentType, ContextType>;
|
1062
|
+
meta?: Resolver<Maybe<ResolversTypes['IoRestorecommerceMetaMeta']>, ParentType, ContextType>;
|
1063
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1064
|
+
}>;
|
1065
|
+
export declare type GoogleProtobufAnyResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['GoogleProtobufAny'] = ResolversParentTypes['GoogleProtobufAny']> = ResolversObject<{
|
1066
|
+
typeUrl?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1067
|
+
value?: Resolver<Maybe<ResolversTypes['GoogleProtobufAnyValue']>, ParentType, ContextType>;
|
1068
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1069
|
+
}>;
|
1070
|
+
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
1071
|
+
name: 'GoogleProtobufAnyValue';
|
1072
|
+
}
|
1073
|
+
export declare type IoRestorecommerceMetaMetaResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceMetaMeta'] = ResolversParentTypes['IoRestorecommerceMetaMeta']> = ResolversObject<{
|
1074
|
+
created?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1075
|
+
modified?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1076
|
+
modifiedBy?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1077
|
+
owner?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttribute']>>, ParentType, ContextType>;
|
1078
|
+
acl?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttributeObj']>>, ParentType, ContextType>;
|
1079
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1080
|
+
}>;
|
1081
|
+
export declare type IoRestorecommerceAttributeAttributeResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAttributeAttribute'] = ResolversParentTypes['IoRestorecommerceAttributeAttribute']> = ResolversObject<{
|
1082
|
+
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1083
|
+
value?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1084
|
+
attribute?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttribute']>>, ParentType, ContextType>;
|
1085
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1086
|
+
}>;
|
1087
|
+
export declare type IoRestorecommerceAttributeAttributeObjResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAttributeAttributeObj'] = ResolversParentTypes['IoRestorecommerceAttributeAttributeObj']> = ResolversObject<{
|
1088
|
+
attribute?: Resolver<Maybe<ResolversTypes['IoRestorecommerceAttributeAttribute']>, ParentType, ContextType>;
|
1089
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1090
|
+
}>;
|
1091
|
+
export declare type IoRestorecommerceFulfillmentProductVariantResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductVariant'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductVariant']> = ResolversObject<{
|
1092
|
+
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1093
|
+
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1094
|
+
description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1095
|
+
price?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1096
|
+
maxWeight?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1097
|
+
maxWidth?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1098
|
+
maxHeight?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1099
|
+
maxLength?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1100
|
+
maxVolume?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1101
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1102
|
+
}>;
|
848
1103
|
export declare type IoRestorecommerceFulfillmentItemResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentItem'] = ResolversParentTypes['IoRestorecommerceFulfillmentItem']> = ResolversObject<{
|
849
1104
|
itemId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
850
1105
|
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
@@ -853,9 +1108,9 @@ export declare type IoRestorecommerceFulfillmentItemResolvers<ContextType = Fulf
|
|
853
1108
|
quantity?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
854
1109
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
855
1110
|
}>;
|
856
|
-
export declare type
|
1111
|
+
export declare type IoRestorecommerceFulfillmentShippingAddressResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentShippingAddress'] = ResolversParentTypes['IoRestorecommerceFulfillmentShippingAddress']> = ResolversObject<{
|
857
1112
|
address?: Resolver<Maybe<ResolversTypes['IoRestorecommerceAddressAddress']>, ParentType, ContextType>;
|
858
|
-
contactPerson?: Resolver<Maybe<ResolversTypes['
|
1113
|
+
contactPerson?: Resolver<Maybe<ResolversTypes['IoRestorecommerceAddressContactPerson']>, ParentType, ContextType>;
|
859
1114
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
860
1115
|
}>;
|
861
1116
|
export declare type IoRestorecommerceAddressAddressResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAddressAddress'] = ResolversParentTypes['IoRestorecommerceAddressAddress']> = ResolversObject<{
|
@@ -876,24 +1131,6 @@ export declare type IoRestorecommerceAddressAddressResolvers<ContextType = Fulfi
|
|
876
1131
|
packStation?: Resolver<Maybe<ResolversTypes['IoRestorecommerceAddressPackStation']>, ParentType, ContextType>;
|
877
1132
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
878
1133
|
}>;
|
879
|
-
export declare type IoRestorecommerceMetaMetaResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceMetaMeta'] = ResolversParentTypes['IoRestorecommerceMetaMeta']> = ResolversObject<{
|
880
|
-
created?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
881
|
-
modified?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
882
|
-
modifiedBy?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
883
|
-
owner?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttribute']>>, ParentType, ContextType>;
|
884
|
-
acl?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttributeObj']>>, ParentType, ContextType>;
|
885
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
886
|
-
}>;
|
887
|
-
export declare type IoRestorecommerceAttributeAttributeResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAttributeAttribute'] = ResolversParentTypes['IoRestorecommerceAttributeAttribute']> = ResolversObject<{
|
888
|
-
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
889
|
-
value?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
890
|
-
attribute?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceAttributeAttribute']>>, ParentType, ContextType>;
|
891
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
892
|
-
}>;
|
893
|
-
export declare type IoRestorecommerceAttributeAttributeObjResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAttributeAttributeObj'] = ResolversParentTypes['IoRestorecommerceAttributeAttributeObj']> = ResolversObject<{
|
894
|
-
attribute?: Resolver<Maybe<ResolversTypes['IoRestorecommerceAttributeAttribute']>, ParentType, ContextType>;
|
895
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
896
|
-
}>;
|
897
1134
|
export declare type IoRestorecommerceCountryCountryResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceCountryCountry'] = ResolversParentTypes['IoRestorecommerceCountryCountry']> = ResolversObject<{
|
898
1135
|
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
899
1136
|
meta?: Resolver<Maybe<ResolversTypes['IoRestorecommerceMetaMeta']>, ParentType, ContextType>;
|
@@ -919,9 +1156,9 @@ export declare type IoRestorecommerceAddressBusinessAddressResolvers<ContextType
|
|
919
1156
|
}>;
|
920
1157
|
export declare type IoRestorecommerceAddressResidentialAddressResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAddressResidentialAddress'] = ResolversParentTypes['IoRestorecommerceAddressResidentialAddress']> = ResolversObject<{
|
921
1158
|
title?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
922
|
-
|
1159
|
+
givenName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
923
1160
|
midName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
924
|
-
|
1161
|
+
familyName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
925
1162
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
926
1163
|
}>;
|
927
1164
|
export declare type IoRestorecommerceAddressPackStationResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAddressPackStation'] = ResolversParentTypes['IoRestorecommerceAddressPackStation']> = ResolversObject<{
|
@@ -930,7 +1167,7 @@ export declare type IoRestorecommerceAddressPackStationResolvers<ContextType = F
|
|
930
1167
|
postNumber?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
931
1168
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
932
1169
|
}>;
|
933
|
-
export declare type
|
1170
|
+
export declare type IoRestorecommerceAddressContactPersonResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceAddressContactPerson'] = ResolversParentTypes['IoRestorecommerceAddressContactPerson']> = ResolversObject<{
|
934
1171
|
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
935
1172
|
email?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
936
1173
|
phone?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
@@ -946,7 +1183,7 @@ export declare type IoRestorecommerceFulfillmentLabelResolvers<ContextType = Ful
|
|
946
1183
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
947
1184
|
}>;
|
948
1185
|
export declare type IoRestorecommerceFulfillmentStateResolvers = {
|
949
|
-
Undefined:
|
1186
|
+
Undefined: 0;
|
950
1187
|
Invalid: 1;
|
951
1188
|
Failed: 2;
|
952
1189
|
Cancelled: 3;
|
@@ -967,12 +1204,12 @@ export declare type IoRestorecommerceStatusOperationStatusResolvers<ContextType
|
|
967
1204
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
968
1205
|
}>;
|
969
1206
|
export declare type IoRestorecommerceResourcebaseSortSortOrderResolvers = {
|
970
|
-
UNSORTED:
|
1207
|
+
UNSORTED: 0;
|
971
1208
|
ASCENDING: 1;
|
972
1209
|
DESCENDING: 2;
|
973
1210
|
};
|
974
1211
|
export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
975
|
-
eq:
|
1212
|
+
eq: 0;
|
976
1213
|
lt: 1;
|
977
1214
|
lte: 2;
|
978
1215
|
gt: 3;
|
@@ -983,14 +1220,14 @@ export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
|
983
1220
|
neq: 8;
|
984
1221
|
};
|
985
1222
|
export declare type IoRestorecommerceResourcebaseFilterValueTypeResolvers = {
|
986
|
-
STRING:
|
1223
|
+
STRING: 0;
|
987
1224
|
NUMBER: 1;
|
988
1225
|
BOOLEAN: 2;
|
989
1226
|
DATE: 3;
|
990
1227
|
ARRAY: 4;
|
991
1228
|
};
|
992
1229
|
export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
993
|
-
eq:
|
1230
|
+
eq: 0;
|
994
1231
|
lt: 1;
|
995
1232
|
lte: 2;
|
996
1233
|
gt: 3;
|
@@ -1001,23 +1238,20 @@ export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
|
1001
1238
|
neq: 8;
|
1002
1239
|
};
|
1003
1240
|
export declare type IoRestorecommerceFilterFilterValueTypeResolvers = {
|
1004
|
-
STRING:
|
1241
|
+
STRING: 0;
|
1005
1242
|
NUMBER: 1;
|
1006
1243
|
BOOLEAN: 2;
|
1007
1244
|
DATE: 3;
|
1008
1245
|
ARRAY: 4;
|
1009
1246
|
};
|
1010
1247
|
export declare type IoRestorecommerceFilterFilterOpOperatorResolvers = {
|
1011
|
-
and:
|
1248
|
+
and: 0;
|
1012
1249
|
or: 1;
|
1013
1250
|
};
|
1014
1251
|
export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
1015
|
-
and:
|
1252
|
+
and: 0;
|
1016
1253
|
or: 1;
|
1017
1254
|
};
|
1018
|
-
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
1019
|
-
name: 'GoogleProtobufAnyValue';
|
1020
|
-
}
|
1021
1255
|
export declare type ProtoIoRestorecommerceFulfillmentTrackingResultListResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['ProtoIoRestorecommerceFulfillmentTrackingResultList'] = ResolversParentTypes['ProtoIoRestorecommerceFulfillmentTrackingResultList']> = ResolversObject<{
|
1022
1256
|
details?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentTrackingResultList']>, ParentType, ContextType>;
|
1023
1257
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -1047,11 +1281,6 @@ export declare type IoRestorecommerceFulfillmentEventResolvers<ContextType = Ful
|
|
1047
1281
|
status?: Resolver<Maybe<ResolversTypes['IoRestorecommerceStatusStatus']>, ParentType, ContextType>;
|
1048
1282
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1049
1283
|
}>;
|
1050
|
-
export declare type GoogleProtobufAnyResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['GoogleProtobufAny'] = ResolversParentTypes['GoogleProtobufAny']> = ResolversObject<{
|
1051
|
-
typeUrl?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1052
|
-
value?: Resolver<Maybe<ResolversTypes['GoogleProtobufAnyValue']>, ParentType, ContextType>;
|
1053
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1054
|
-
}>;
|
1055
1284
|
export declare type FulfillmentFulfillmentCourierQueryResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentFulfillmentCourierQuery'] = ResolversParentTypes['FulfillmentFulfillmentCourierQuery']> = ResolversObject<{
|
1056
1285
|
Read?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList']>, ParentType, ContextType, RequireFields<FulfillmentFulfillmentCourierQueryReadArgs, 'input'>>;
|
1057
1286
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -1071,15 +1300,48 @@ export declare type IoRestorecommerceFulfillmentCourierFulfillmentCourierRespons
|
|
1071
1300
|
status?: Resolver<Maybe<ResolversTypes['IoRestorecommerceStatusStatus']>, ParentType, ContextType>;
|
1072
1301
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1073
1302
|
}>;
|
1074
|
-
export declare type
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1303
|
+
export declare type FulfillmentFulfillmentProductQueryResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentFulfillmentProductQuery'] = ResolversParentTypes['FulfillmentFulfillmentProductQuery']> = ResolversObject<{
|
1304
|
+
Read?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList']>, ParentType, ContextType, RequireFields<FulfillmentFulfillmentProductQueryReadArgs, 'input'>>;
|
1305
|
+
Find?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList']>, ParentType, ContextType, RequireFields<FulfillmentFulfillmentProductQueryFindArgs, 'input'>>;
|
1306
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1307
|
+
}>;
|
1308
|
+
export declare type ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseListResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList'] = ResolversParentTypes['ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList']> = ResolversObject<{
|
1309
|
+
details?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentProductFulfillmentProductResponseList']>, ParentType, ContextType>;
|
1310
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1311
|
+
}>;
|
1312
|
+
export declare type IoRestorecommerceFulfillmentProductFulfillmentProductResponseListResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductFulfillmentProductResponseList'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductFulfillmentProductResponseList']> = ResolversObject<{
|
1313
|
+
items?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentProductFulfillmentProductResponse']>>, ParentType, ContextType>;
|
1314
|
+
totalCount?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
1315
|
+
operationStatus?: Resolver<Maybe<ResolversTypes['IoRestorecommerceStatusOperationStatus']>, ParentType, ContextType>;
|
1316
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1317
|
+
}>;
|
1318
|
+
export declare type IoRestorecommerceFulfillmentProductFulfillmentProductResponseResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductFulfillmentProductResponse'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductFulfillmentProductResponse']> = ResolversObject<{
|
1319
|
+
payload?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentProductFulfillmentProduct']>, ParentType, ContextType>;
|
1320
|
+
status?: Resolver<Maybe<ResolversTypes['IoRestorecommerceStatusStatus']>, ParentType, ContextType>;
|
1321
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1322
|
+
}>;
|
1323
|
+
export declare type ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseListResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList'] = ResolversParentTypes['ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList']> = ResolversObject<{
|
1324
|
+
details?: Resolver<Maybe<ResolversTypes['IoRestorecommerceFulfillmentProductPackingSolutionResponseList']>, ParentType, ContextType>;
|
1325
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1326
|
+
}>;
|
1327
|
+
export declare type IoRestorecommerceFulfillmentProductPackingSolutionResponseListResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductPackingSolutionResponseList'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductPackingSolutionResponseList']> = ResolversObject<{
|
1328
|
+
items?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentProductPackingSolutionResponse']>>, ParentType, ContextType>;
|
1329
|
+
totalCount?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
1330
|
+
operationStatus?: Resolver<Maybe<ResolversTypes['IoRestorecommerceStatusOperationStatus']>, ParentType, ContextType>;
|
1331
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1332
|
+
}>;
|
1333
|
+
export declare type IoRestorecommerceFulfillmentProductPackingSolutionResponseResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductPackingSolutionResponse'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductPackingSolutionResponse']> = ResolversObject<{
|
1334
|
+
solutions?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentProductPackingSolution']>>, ParentType, ContextType>;
|
1335
|
+
status?: Resolver<Maybe<ResolversTypes['IoRestorecommerceStatusStatus']>, ParentType, ContextType>;
|
1336
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1337
|
+
}>;
|
1338
|
+
export declare type IoRestorecommerceFulfillmentProductPackingSolutionResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['IoRestorecommerceFulfillmentProductPackingSolution'] = ResolversParentTypes['IoRestorecommerceFulfillmentProductPackingSolution']> = ResolversObject<{
|
1339
|
+
referenceId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
1340
|
+
price?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1341
|
+
compactness?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1342
|
+
homogeneity?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1343
|
+
score?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
1344
|
+
parcels?: Resolver<Maybe<Array<ResolversTypes['IoRestorecommerceFulfillmentParcel']>>, ParentType, ContextType>;
|
1083
1345
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1084
1346
|
}>;
|
1085
1347
|
export declare type MutationResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['Mutation'] = ResolversParentTypes['Mutation']> = ResolversObject<{
|
@@ -1088,6 +1350,7 @@ export declare type MutationResolvers<ContextType = FulfillmentContext, ParentTy
|
|
1088
1350
|
export declare type FulfillmentMutationResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentMutation'] = ResolversParentTypes['FulfillmentMutation']> = ResolversObject<{
|
1089
1351
|
fulfillment?: Resolver<ResolversTypes['FulfillmentFulfillmentMutation'], ParentType, ContextType>;
|
1090
1352
|
fulfillment_courier?: Resolver<ResolversTypes['FulfillmentFulfillmentCourierMutation'], ParentType, ContextType>;
|
1353
|
+
fulfillment_product?: Resolver<ResolversTypes['FulfillmentFulfillmentProductMutation'], ParentType, ContextType>;
|
1091
1354
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1092
1355
|
}>;
|
1093
1356
|
export declare type FulfillmentFulfillmentMutationResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentFulfillmentMutation'] = ResolversParentTypes['FulfillmentFulfillmentMutation']> = ResolversObject<{
|
@@ -1111,8 +1374,16 @@ export declare type FulfillmentFulfillmentCourierMutationResolvers<ContextType =
|
|
1111
1374
|
Delete?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceResourcebaseDeleteResponse']>, ParentType, ContextType, RequireFields<FulfillmentFulfillmentCourierMutationDeleteArgs, 'input'>>;
|
1112
1375
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1113
1376
|
}>;
|
1377
|
+
export declare type FulfillmentFulfillmentProductMutationResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['FulfillmentFulfillmentProductMutation'] = ResolversParentTypes['FulfillmentFulfillmentProductMutation']> = ResolversObject<{
|
1378
|
+
Mutate?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList']>, ParentType, ContextType, RequireFields<FulfillmentFulfillmentProductMutationMutateArgs, 'input'>>;
|
1379
|
+
Delete?: Resolver<Maybe<ResolversTypes['ProtoIoRestorecommerceResourcebaseDeleteResponse']>, ParentType, ContextType, RequireFields<FulfillmentFulfillmentProductMutationDeleteArgs, 'input'>>;
|
1380
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1381
|
+
}>;
|
1114
1382
|
export declare type SubscriptionResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['Subscription'] = ResolversParentTypes['Subscription']> = ResolversObject<{
|
1115
1383
|
orderingOrders?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "orderingOrders", ParentType, ContextType, Partial<SubscriptionOrderingOrdersArgs>>;
|
1384
|
+
fulfillmentFulfillment?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillment", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentArgs>>;
|
1385
|
+
fulfillmentFulfillmentCouriers?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentCouriers", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentCouriersArgs>>;
|
1386
|
+
fulfillmentFulfillmentProduct?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentProduct", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentProductArgs>>;
|
1116
1387
|
}>;
|
1117
1388
|
export declare type SubscriptionOutputResolvers<ContextType = FulfillmentContext, ParentType extends ResolversParentTypes['SubscriptionOutput'] = ResolversParentTypes['SubscriptionOutput']> = ResolversObject<{
|
1118
1389
|
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
@@ -1128,19 +1399,24 @@ export declare type Resolvers<ContextType = FulfillmentContext> = ResolversObjec
|
|
1128
1399
|
IoRestorecommerceFulfillmentFulfillment?: IoRestorecommerceFulfillmentFulfillmentResolvers<ContextType>;
|
1129
1400
|
IoRestorecommerceFulfillmentOrder?: IoRestorecommerceFulfillmentOrderResolvers<ContextType>;
|
1130
1401
|
IoRestorecommerceFulfillmentParcel?: IoRestorecommerceFulfillmentParcelResolvers<ContextType>;
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1402
|
+
IoRestorecommerceFulfillmentProductFulfillmentProduct?: IoRestorecommerceFulfillmentProductFulfillmentProductResolvers<ContextType>;
|
1403
|
+
IoRestorecommerceFulfillmentCourierFulfillmentCourier?: IoRestorecommerceFulfillmentCourierFulfillmentCourierResolvers<ContextType>;
|
1404
|
+
GoogleProtobufAny?: GoogleProtobufAnyResolvers<ContextType>;
|
1405
|
+
GoogleProtobufAnyValue?: GraphQLScalarType;
|
1134
1406
|
IoRestorecommerceMetaMeta?: IoRestorecommerceMetaMetaResolvers<ContextType>;
|
1135
1407
|
IoRestorecommerceAttributeAttribute?: IoRestorecommerceAttributeAttributeResolvers<ContextType>;
|
1136
1408
|
IoRestorecommerceAttributeAttributeObj?: IoRestorecommerceAttributeAttributeObjResolvers<ContextType>;
|
1409
|
+
IoRestorecommerceFulfillmentProductVariant?: IoRestorecommerceFulfillmentProductVariantResolvers<ContextType>;
|
1410
|
+
IoRestorecommerceFulfillmentItem?: IoRestorecommerceFulfillmentItemResolvers<ContextType>;
|
1411
|
+
IoRestorecommerceFulfillmentShippingAddress?: IoRestorecommerceFulfillmentShippingAddressResolvers<ContextType>;
|
1412
|
+
IoRestorecommerceAddressAddress?: IoRestorecommerceAddressAddressResolvers<ContextType>;
|
1137
1413
|
IoRestorecommerceCountryCountry?: IoRestorecommerceCountryCountryResolvers<ContextType>;
|
1138
1414
|
IoRestorecommerceAddressGeoPoint?: IoRestorecommerceAddressGeoPointResolvers<ContextType>;
|
1139
1415
|
IoRestorecommerceAddressAddressAddition?: IoRestorecommerceAddressAddressAdditionResolvers<ContextType>;
|
1140
1416
|
IoRestorecommerceAddressBusinessAddress?: IoRestorecommerceAddressBusinessAddressResolvers<ContextType>;
|
1141
1417
|
IoRestorecommerceAddressResidentialAddress?: IoRestorecommerceAddressResidentialAddressResolvers<ContextType>;
|
1142
1418
|
IoRestorecommerceAddressPackStation?: IoRestorecommerceAddressPackStationResolvers<ContextType>;
|
1143
|
-
|
1419
|
+
IoRestorecommerceAddressContactPerson?: IoRestorecommerceAddressContactPersonResolvers<ContextType>;
|
1144
1420
|
IoRestorecommerceFulfillmentLabel?: IoRestorecommerceFulfillmentLabelResolvers<ContextType>;
|
1145
1421
|
IoRestorecommerceFulfillmentState?: IoRestorecommerceFulfillmentStateResolvers;
|
1146
1422
|
IoRestorecommerceStatusStatus?: IoRestorecommerceStatusStatusResolvers<ContextType>;
|
@@ -1152,24 +1428,30 @@ export declare type Resolvers<ContextType = FulfillmentContext> = ResolversObjec
|
|
1152
1428
|
IoRestorecommerceFilterFilterValueType?: IoRestorecommerceFilterFilterValueTypeResolvers;
|
1153
1429
|
IoRestorecommerceFilterFilterOpOperator?: IoRestorecommerceFilterFilterOpOperatorResolvers;
|
1154
1430
|
IoRestorecommerceResourcebaseFilterOpOperator?: IoRestorecommerceResourcebaseFilterOpOperatorResolvers;
|
1155
|
-
GoogleProtobufAnyValue?: GraphQLScalarType;
|
1156
1431
|
ProtoIoRestorecommerceFulfillmentTrackingResultList?: ProtoIoRestorecommerceFulfillmentTrackingResultListResolvers<ContextType>;
|
1157
1432
|
IoRestorecommerceFulfillmentTrackingResultList?: IoRestorecommerceFulfillmentTrackingResultListResolvers<ContextType>;
|
1158
1433
|
IoRestorecommerceFulfillmentTrackingResult?: IoRestorecommerceFulfillmentTrackingResultResolvers<ContextType>;
|
1159
1434
|
IoRestorecommerceFulfillmentTracking?: IoRestorecommerceFulfillmentTrackingResolvers<ContextType>;
|
1160
1435
|
IoRestorecommerceFulfillmentEvent?: IoRestorecommerceFulfillmentEventResolvers<ContextType>;
|
1161
|
-
GoogleProtobufAny?: GoogleProtobufAnyResolvers<ContextType>;
|
1162
1436
|
FulfillmentFulfillmentCourierQuery?: FulfillmentFulfillmentCourierQueryResolvers<ContextType>;
|
1163
1437
|
ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList?: ProtoIoRestorecommerceFulfillmentCourierFulfillmentCourierResponseListResolvers<ContextType>;
|
1164
1438
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseList?: IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseListResolvers<ContextType>;
|
1165
1439
|
IoRestorecommerceFulfillmentCourierFulfillmentCourierResponse?: IoRestorecommerceFulfillmentCourierFulfillmentCourierResponseResolvers<ContextType>;
|
1166
|
-
|
1440
|
+
FulfillmentFulfillmentProductQuery?: FulfillmentFulfillmentProductQueryResolvers<ContextType>;
|
1441
|
+
ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseList?: ProtoIoRestorecommerceFulfillmentProductFulfillmentProductResponseListResolvers<ContextType>;
|
1442
|
+
IoRestorecommerceFulfillmentProductFulfillmentProductResponseList?: IoRestorecommerceFulfillmentProductFulfillmentProductResponseListResolvers<ContextType>;
|
1443
|
+
IoRestorecommerceFulfillmentProductFulfillmentProductResponse?: IoRestorecommerceFulfillmentProductFulfillmentProductResponseResolvers<ContextType>;
|
1444
|
+
ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseList?: ProtoIoRestorecommerceFulfillmentProductPackingSolutionResponseListResolvers<ContextType>;
|
1445
|
+
IoRestorecommerceFulfillmentProductPackingSolutionResponseList?: IoRestorecommerceFulfillmentProductPackingSolutionResponseListResolvers<ContextType>;
|
1446
|
+
IoRestorecommerceFulfillmentProductPackingSolutionResponse?: IoRestorecommerceFulfillmentProductPackingSolutionResponseResolvers<ContextType>;
|
1447
|
+
IoRestorecommerceFulfillmentProductPackingSolution?: IoRestorecommerceFulfillmentProductPackingSolutionResolvers<ContextType>;
|
1167
1448
|
Mutation?: MutationResolvers<ContextType>;
|
1168
1449
|
FulfillmentMutation?: FulfillmentMutationResolvers<ContextType>;
|
1169
1450
|
FulfillmentFulfillmentMutation?: FulfillmentFulfillmentMutationResolvers<ContextType>;
|
1170
1451
|
ProtoIoRestorecommerceResourcebaseDeleteResponse?: ProtoIoRestorecommerceResourcebaseDeleteResponseResolvers<ContextType>;
|
1171
1452
|
IoRestorecommerceResourcebaseDeleteResponse?: IoRestorecommerceResourcebaseDeleteResponseResolvers<ContextType>;
|
1172
1453
|
FulfillmentFulfillmentCourierMutation?: FulfillmentFulfillmentCourierMutationResolvers<ContextType>;
|
1454
|
+
FulfillmentFulfillmentProductMutation?: FulfillmentFulfillmentProductMutationResolvers<ContextType>;
|
1173
1455
|
Subscription?: SubscriptionResolvers<ContextType>;
|
1174
1456
|
SubscriptionOutput?: SubscriptionOutputResolvers<ContextType>;
|
1175
1457
|
}>;
|