@restorecommerce/facade 1.1.1 → 1.1.2
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 +11 -0
- package/dist/index.d.ts +2 -2
- package/dist/modules/access-control/gql/schema.generated.d.ts +34 -10
- package/dist/modules/catalog/gql/schema.generated.d.ts +17 -8
- package/dist/modules/fulfillment/gql/schema.generated.d.ts +427 -145
- package/dist/modules/fulfillment/gql/types.js +3 -1
- package/dist/modules/identity/gql/schema.generated.d.ts +33 -9
- package/dist/modules/indexing/gql/schema.generated.d.ts +15 -0
- package/dist/modules/invoicing/gql/schema.generated.d.ts +22 -13
- package/dist/modules/notification/gql/schema.generated.d.ts +32 -8
- package/dist/modules/ordering/gql/schema.generated.d.ts +37 -27
- package/dist/modules/ostorage/gql/schema.generated.d.ts +18 -3
- package/dist/modules/payment/gql/schema.generated.d.ts +1 -1
- package/dist/modules/resource/gql/schema.generated.d.ts +25 -16
- package/dist/modules/scheduling/gql/schema.generated.d.ts +23 -6
- package/package.json +41 -41
- package/LICENSE +0 -19
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.subServices = exports.registerTypings = void 0;
|
4
4
|
const fulfillment_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/fulfillment");
|
5
5
|
const fulfillment_courier_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/fulfillment_courier");
|
6
|
+
const fulfillment_product_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/fulfillment_product");
|
6
7
|
const protos_1 = require("../../../gql/protos");
|
7
8
|
function registerTypings() {
|
8
9
|
(0, protos_1.registerPackagesRecursive)(...exports.subServices);
|
@@ -10,5 +11,6 @@ function registerTypings() {
|
|
10
11
|
exports.registerTypings = registerTypings;
|
11
12
|
exports.subServices = [
|
12
13
|
fulfillment_1.protoMetadata,
|
13
|
-
fulfillment_courier_1.protoMetadata
|
14
|
+
fulfillment_courier_1.protoMetadata,
|
15
|
+
fulfillment_product_1.protoMetadata
|
14
16
|
];
|
@@ -197,10 +197,10 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
197
197
|
sort?: InputMaybe<Array<IIoRestorecommerceResourcebaseSort>>;
|
198
198
|
filters?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilterOp>>;
|
199
199
|
field?: InputMaybe<Array<IIoRestorecommerceResourcebaseFieldFilter>>;
|
200
|
-
search?: InputMaybe<Array<Scalars['String']>>;
|
201
200
|
localesLimiter?: InputMaybe<Array<Scalars['String']>>;
|
202
201
|
customQueries?: InputMaybe<Array<Scalars['String']>>;
|
203
202
|
customArguments?: InputMaybe<IGoogleProtobufAny>;
|
203
|
+
search?: InputMaybe<IIoRestorecommerceResourcebaseSearch>;
|
204
204
|
/** target scope */
|
205
205
|
scope?: InputMaybe<Scalars['String']>;
|
206
206
|
};
|
@@ -287,6 +287,11 @@ export declare type IGoogleProtobufAny = {
|
|
287
287
|
typeUrl?: InputMaybe<Scalars['String']>;
|
288
288
|
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
289
289
|
};
|
290
|
+
export declare type IIoRestorecommerceResourcebaseSearch = {
|
291
|
+
search?: InputMaybe<Scalars['String']>;
|
292
|
+
fields?: InputMaybe<Array<Scalars['String']>>;
|
293
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
294
|
+
};
|
290
295
|
export declare type ProtoIoRestorecommerceUserUserListResponse = {
|
291
296
|
__typename?: 'ProtoIoRestorecommerceUserUserListResponse';
|
292
297
|
details?: Maybe<IoRestorecommerceUserUserListResponse>;
|
@@ -587,6 +592,8 @@ export declare type IoRestorecommerceResourcebaseDeleteResponse = {
|
|
587
592
|
export declare type IIoRestorecommerceResourcebaseDeleteRequest = {
|
588
593
|
collection?: InputMaybe<Scalars['Boolean']>;
|
589
594
|
ids?: InputMaybe<Array<Scalars['String']>>;
|
595
|
+
view?: InputMaybe<Array<Scalars['String']>>;
|
596
|
+
analyzer?: InputMaybe<Array<Scalars['String']>>;
|
590
597
|
/** target scope */
|
591
598
|
scope?: InputMaybe<Scalars['String']>;
|
592
599
|
};
|
@@ -756,11 +763,23 @@ export declare type IIoRestorecommerceTokenGrantId = {
|
|
756
763
|
export declare type Subscription = {
|
757
764
|
__typename?: 'Subscription';
|
758
765
|
orderingOrders?: Maybe<SubscriptionOutput>;
|
766
|
+
fulfillmentFulfillment?: Maybe<SubscriptionOutput>;
|
767
|
+
fulfillmentFulfillmentCouriers?: Maybe<SubscriptionOutput>;
|
768
|
+
fulfillmentFulfillmentProduct?: Maybe<SubscriptionOutput>;
|
759
769
|
identityUsers?: Maybe<SubscriptionOutput>;
|
760
770
|
};
|
761
771
|
export declare type SubscriptionOrderingOrdersArgs = {
|
762
772
|
action?: InputMaybe<SubscriptionAction>;
|
763
773
|
};
|
774
|
+
export declare type SubscriptionFulfillmentFulfillmentArgs = {
|
775
|
+
action?: InputMaybe<SubscriptionAction>;
|
776
|
+
};
|
777
|
+
export declare type SubscriptionFulfillmentFulfillmentCouriersArgs = {
|
778
|
+
action?: InputMaybe<SubscriptionAction>;
|
779
|
+
};
|
780
|
+
export declare type SubscriptionFulfillmentFulfillmentProductArgs = {
|
781
|
+
action?: InputMaybe<SubscriptionAction>;
|
782
|
+
};
|
764
783
|
export declare type SubscriptionIdentityUsersArgs = {
|
765
784
|
action?: InputMaybe<SubscriptionAction>;
|
766
785
|
};
|
@@ -843,6 +862,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
843
862
|
IoRestorecommerceResourcebaseFilterOpOperator: IoRestorecommerceResourcebaseFilterOpOperator;
|
844
863
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
845
864
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
865
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
846
866
|
ProtoIoRestorecommerceUserUserListResponse: ResolverTypeWrapper<ProtoIoRestorecommerceUserUserListResponse>;
|
847
867
|
IoRestorecommerceUserUserListResponse: ResolverTypeWrapper<IoRestorecommerceUserUserListResponse>;
|
848
868
|
IoRestorecommerceUserUserResponse: ResolverTypeWrapper<IoRestorecommerceUserUserResponse>;
|
@@ -942,6 +962,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
942
962
|
IIoRestorecommerceFilterFilter: IIoRestorecommerceFilterFilter;
|
943
963
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
944
964
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
965
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
945
966
|
ProtoIoRestorecommerceUserUserListResponse: ProtoIoRestorecommerceUserUserListResponse;
|
946
967
|
IoRestorecommerceUserUserListResponse: IoRestorecommerceUserUserListResponse;
|
947
968
|
IoRestorecommerceUserUserResponse: IoRestorecommerceUserUserResponse;
|
@@ -1119,7 +1140,7 @@ export declare type IoRestorecommerceImageImageResolvers<ContextType = IdentityC
|
|
1119
1140
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1120
1141
|
}>;
|
1121
1142
|
export declare type IoRestorecommerceUserUserTypeResolvers = {
|
1122
|
-
ORG_USER:
|
1143
|
+
ORG_USER: 0;
|
1123
1144
|
INDIVIDUAL_USER: 1;
|
1124
1145
|
GUEST: 2;
|
1125
1146
|
TECHNICAL_USER: 3;
|
@@ -1162,12 +1183,12 @@ export declare type IoRestorecommerceStatusOperationStatusResolvers<ContextType
|
|
1162
1183
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
1163
1184
|
}>;
|
1164
1185
|
export declare type IoRestorecommerceResourcebaseSortSortOrderResolvers = {
|
1165
|
-
UNSORTED:
|
1186
|
+
UNSORTED: 0;
|
1166
1187
|
ASCENDING: 1;
|
1167
1188
|
DESCENDING: 2;
|
1168
1189
|
};
|
1169
1190
|
export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
1170
|
-
eq:
|
1191
|
+
eq: 0;
|
1171
1192
|
lt: 1;
|
1172
1193
|
lte: 2;
|
1173
1194
|
gt: 3;
|
@@ -1178,14 +1199,14 @@ export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
|
1178
1199
|
neq: 8;
|
1179
1200
|
};
|
1180
1201
|
export declare type IoRestorecommerceResourcebaseFilterValueTypeResolvers = {
|
1181
|
-
STRING:
|
1202
|
+
STRING: 0;
|
1182
1203
|
NUMBER: 1;
|
1183
1204
|
BOOLEAN: 2;
|
1184
1205
|
DATE: 3;
|
1185
1206
|
ARRAY: 4;
|
1186
1207
|
};
|
1187
1208
|
export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
1188
|
-
eq:
|
1209
|
+
eq: 0;
|
1189
1210
|
lt: 1;
|
1190
1211
|
lte: 2;
|
1191
1212
|
gt: 3;
|
@@ -1196,18 +1217,18 @@ export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
|
1196
1217
|
neq: 8;
|
1197
1218
|
};
|
1198
1219
|
export declare type IoRestorecommerceFilterFilterValueTypeResolvers = {
|
1199
|
-
STRING:
|
1220
|
+
STRING: 0;
|
1200
1221
|
NUMBER: 1;
|
1201
1222
|
BOOLEAN: 2;
|
1202
1223
|
DATE: 3;
|
1203
1224
|
ARRAY: 4;
|
1204
1225
|
};
|
1205
1226
|
export declare type IoRestorecommerceFilterFilterOpOperatorResolvers = {
|
1206
|
-
and:
|
1227
|
+
and: 0;
|
1207
1228
|
or: 1;
|
1208
1229
|
};
|
1209
1230
|
export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
1210
|
-
and:
|
1231
|
+
and: 0;
|
1211
1232
|
or: 1;
|
1212
1233
|
};
|
1213
1234
|
export declare type ProtoIoRestorecommerceUserUserListResponseResolvers<ContextType = IdentityContext, ParentType extends ResolversParentTypes['ProtoIoRestorecommerceUserUserListResponse'] = ResolversParentTypes['ProtoIoRestorecommerceUserUserListResponse']> = ResolversObject<{
|
@@ -1392,6 +1413,9 @@ export declare type IdentityTokenMutationResolvers<ContextType = IdentityContext
|
|
1392
1413
|
}>;
|
1393
1414
|
export declare type SubscriptionResolvers<ContextType = IdentityContext, ParentType extends ResolversParentTypes['Subscription'] = ResolversParentTypes['Subscription']> = ResolversObject<{
|
1394
1415
|
orderingOrders?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "orderingOrders", ParentType, ContextType, Partial<SubscriptionOrderingOrdersArgs>>;
|
1416
|
+
fulfillmentFulfillment?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillment", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentArgs>>;
|
1417
|
+
fulfillmentFulfillmentCouriers?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentCouriers", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentCouriersArgs>>;
|
1418
|
+
fulfillmentFulfillmentProduct?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentProduct", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentProductArgs>>;
|
1395
1419
|
identityUsers?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "identityUsers", ParentType, ContextType, Partial<SubscriptionIdentityUsersArgs>>;
|
1396
1420
|
}>;
|
1397
1421
|
export declare type SubscriptionOutputResolvers<ContextType = IdentityContext, ParentType extends ResolversParentTypes['SubscriptionOutput'] = ResolversParentTypes['SubscriptionOutput']> = ResolversObject<{
|
@@ -61,10 +61,22 @@ export declare type IIoRestorecommerceSearchSearchRequest = {
|
|
61
61
|
export declare type Subscription = {
|
62
62
|
__typename?: 'Subscription';
|
63
63
|
orderingOrders?: Maybe<SubscriptionOutput>;
|
64
|
+
fulfillmentFulfillment?: Maybe<SubscriptionOutput>;
|
65
|
+
fulfillmentFulfillmentCouriers?: Maybe<SubscriptionOutput>;
|
66
|
+
fulfillmentFulfillmentProduct?: Maybe<SubscriptionOutput>;
|
64
67
|
};
|
65
68
|
export declare type SubscriptionOrderingOrdersArgs = {
|
66
69
|
action?: InputMaybe<SubscriptionAction>;
|
67
70
|
};
|
71
|
+
export declare type SubscriptionFulfillmentFulfillmentArgs = {
|
72
|
+
action?: InputMaybe<SubscriptionAction>;
|
73
|
+
};
|
74
|
+
export declare type SubscriptionFulfillmentFulfillmentCouriersArgs = {
|
75
|
+
action?: InputMaybe<SubscriptionAction>;
|
76
|
+
};
|
77
|
+
export declare type SubscriptionFulfillmentFulfillmentProductArgs = {
|
78
|
+
action?: InputMaybe<SubscriptionAction>;
|
79
|
+
};
|
68
80
|
export declare type SubscriptionOutput = {
|
69
81
|
__typename?: 'SubscriptionOutput';
|
70
82
|
id?: Maybe<Scalars['String']>;
|
@@ -162,6 +174,9 @@ export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeCon
|
|
162
174
|
}
|
163
175
|
export declare type SubscriptionResolvers<ContextType = IndexingContext, ParentType extends ResolversParentTypes['Subscription'] = ResolversParentTypes['Subscription']> = ResolversObject<{
|
164
176
|
orderingOrders?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "orderingOrders", ParentType, ContextType, Partial<SubscriptionOrderingOrdersArgs>>;
|
177
|
+
fulfillmentFulfillment?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillment", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentArgs>>;
|
178
|
+
fulfillmentFulfillmentCouriers?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentCouriers", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentCouriersArgs>>;
|
179
|
+
fulfillmentFulfillmentProduct?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentProduct", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentProductArgs>>;
|
165
180
|
}>;
|
166
181
|
export declare type SubscriptionOutputResolvers<ContextType = IndexingContext, ParentType extends ResolversParentTypes['SubscriptionOutput'] = ResolversParentTypes['SubscriptionOutput']> = ResolversObject<{
|
167
182
|
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
@@ -232,9 +232,9 @@ export declare type IoRestorecommerceAddressBusinessAddress = {
|
|
232
232
|
export declare type IoRestorecommerceAddressResidentialAddress = {
|
233
233
|
__typename?: 'IoRestorecommerceAddressResidentialAddress';
|
234
234
|
title?: Maybe<Scalars['String']>;
|
235
|
-
|
235
|
+
givenName?: Maybe<Scalars['String']>;
|
236
236
|
midName?: Maybe<Scalars['String']>;
|
237
|
-
|
237
|
+
familyName?: Maybe<Scalars['String']>;
|
238
238
|
};
|
239
239
|
export declare type IoRestorecommerceAddressPackStation = {
|
240
240
|
__typename?: 'IoRestorecommerceAddressPackStation';
|
@@ -317,10 +317,10 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
317
317
|
sort?: InputMaybe<Array<IIoRestorecommerceResourcebaseSort>>;
|
318
318
|
filters?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilterOp>>;
|
319
319
|
field?: InputMaybe<Array<IIoRestorecommerceResourcebaseFieldFilter>>;
|
320
|
-
search?: InputMaybe<Array<Scalars['String']>>;
|
321
320
|
localesLimiter?: InputMaybe<Array<Scalars['String']>>;
|
322
321
|
customQueries?: InputMaybe<Array<Scalars['String']>>;
|
323
322
|
customArguments?: InputMaybe<IGoogleProtobufAny>;
|
323
|
+
search?: InputMaybe<IIoRestorecommerceResourcebaseSearch>;
|
324
324
|
/** target scope */
|
325
325
|
scope?: InputMaybe<Scalars['String']>;
|
326
326
|
};
|
@@ -407,6 +407,11 @@ export declare type IGoogleProtobufAny = {
|
|
407
407
|
typeUrl?: InputMaybe<Scalars['String']>;
|
408
408
|
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
409
409
|
};
|
410
|
+
export declare type IIoRestorecommerceResourcebaseSearch = {
|
411
|
+
search?: InputMaybe<Scalars['String']>;
|
412
|
+
fields?: InputMaybe<Array<Scalars['String']>>;
|
413
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
414
|
+
};
|
410
415
|
export declare type Mutation = {
|
411
416
|
__typename?: 'Mutation';
|
412
417
|
invoicing: InvoicingMutation;
|
@@ -482,6 +487,8 @@ export declare type IoRestorecommerceResourcebaseDeleteResponse = {
|
|
482
487
|
export declare type IIoRestorecommerceResourcebaseDeleteRequest = {
|
483
488
|
collection?: InputMaybe<Scalars['Boolean']>;
|
484
489
|
ids?: InputMaybe<Array<Scalars['String']>>;
|
490
|
+
view?: InputMaybe<Array<Scalars['String']>>;
|
491
|
+
analyzer?: InputMaybe<Array<Scalars['String']>>;
|
485
492
|
/** target scope */
|
486
493
|
scope?: InputMaybe<Scalars['String']>;
|
487
494
|
};
|
@@ -596,6 +603,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
596
603
|
IoRestorecommerceResourcebaseFilterOpOperator: IoRestorecommerceResourcebaseFilterOpOperator;
|
597
604
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
598
605
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
606
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
599
607
|
Mutation: ResolverTypeWrapper<{}>;
|
600
608
|
InvoicingMutation: ResolverTypeWrapper<InvoicingMutation>;
|
601
609
|
InvoicingInvoiceMutation: ResolverTypeWrapper<InvoicingInvoiceMutation>;
|
@@ -663,6 +671,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
663
671
|
IIoRestorecommerceFilterFilter: IIoRestorecommerceFilterFilter;
|
664
672
|
IIoRestorecommerceResourcebaseFieldFilter: IIoRestorecommerceResourcebaseFieldFilter;
|
665
673
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
674
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
666
675
|
Mutation: {};
|
667
676
|
InvoicingMutation: InvoicingMutation;
|
668
677
|
InvoicingInvoiceMutation: InvoicingInvoiceMutation;
|
@@ -819,7 +828,7 @@ export declare type IoRestorecommerceImageImageResolvers<ContextType = Invoicing
|
|
819
828
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
820
829
|
}>;
|
821
830
|
export declare type IoRestorecommerceUserUserTypeResolvers = {
|
822
|
-
ORG_USER:
|
831
|
+
ORG_USER: 0;
|
823
832
|
INDIVIDUAL_USER: 1;
|
824
833
|
GUEST: 2;
|
825
834
|
TECHNICAL_USER: 3;
|
@@ -885,9 +894,9 @@ export declare type IoRestorecommerceAddressBusinessAddressResolvers<ContextType
|
|
885
894
|
}>;
|
886
895
|
export declare type IoRestorecommerceAddressResidentialAddressResolvers<ContextType = InvoicingContext, ParentType extends ResolversParentTypes['IoRestorecommerceAddressResidentialAddress'] = ResolversParentTypes['IoRestorecommerceAddressResidentialAddress']> = ResolversObject<{
|
887
896
|
title?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
888
|
-
|
897
|
+
givenName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
889
898
|
midName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
890
|
-
|
899
|
+
familyName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
891
900
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
892
901
|
}>;
|
893
902
|
export declare type IoRestorecommerceAddressPackStationResolvers<ContextType = InvoicingContext, ParentType extends ResolversParentTypes['IoRestorecommerceAddressPackStation'] = ResolversParentTypes['IoRestorecommerceAddressPackStation']> = ResolversObject<{
|
@@ -966,12 +975,12 @@ export declare type IoRestorecommerceStatusOperationStatusResolvers<ContextType
|
|
966
975
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
967
976
|
}>;
|
968
977
|
export declare type IoRestorecommerceResourcebaseSortSortOrderResolvers = {
|
969
|
-
UNSORTED:
|
978
|
+
UNSORTED: 0;
|
970
979
|
ASCENDING: 1;
|
971
980
|
DESCENDING: 2;
|
972
981
|
};
|
973
982
|
export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
974
|
-
eq:
|
983
|
+
eq: 0;
|
975
984
|
lt: 1;
|
976
985
|
lte: 2;
|
977
986
|
gt: 3;
|
@@ -982,14 +991,14 @@ export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
|
982
991
|
neq: 8;
|
983
992
|
};
|
984
993
|
export declare type IoRestorecommerceResourcebaseFilterValueTypeResolvers = {
|
985
|
-
STRING:
|
994
|
+
STRING: 0;
|
986
995
|
NUMBER: 1;
|
987
996
|
BOOLEAN: 2;
|
988
997
|
DATE: 3;
|
989
998
|
ARRAY: 4;
|
990
999
|
};
|
991
1000
|
export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
992
|
-
eq:
|
1001
|
+
eq: 0;
|
993
1002
|
lt: 1;
|
994
1003
|
lte: 2;
|
995
1004
|
gt: 3;
|
@@ -1000,18 +1009,18 @@ export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
|
1000
1009
|
neq: 8;
|
1001
1010
|
};
|
1002
1011
|
export declare type IoRestorecommerceFilterFilterValueTypeResolvers = {
|
1003
|
-
STRING:
|
1012
|
+
STRING: 0;
|
1004
1013
|
NUMBER: 1;
|
1005
1014
|
BOOLEAN: 2;
|
1006
1015
|
DATE: 3;
|
1007
1016
|
ARRAY: 4;
|
1008
1017
|
};
|
1009
1018
|
export declare type IoRestorecommerceFilterFilterOpOperatorResolvers = {
|
1010
|
-
and:
|
1019
|
+
and: 0;
|
1011
1020
|
or: 1;
|
1012
1021
|
};
|
1013
1022
|
export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
1014
|
-
and:
|
1023
|
+
and: 0;
|
1015
1024
|
or: 1;
|
1016
1025
|
};
|
1017
1026
|
export declare type MutationResolvers<ContextType = InvoicingContext, ParentType extends ResolversParentTypes['Mutation'] = ResolversParentTypes['Mutation']> = ResolversObject<{
|
@@ -102,10 +102,10 @@ export declare type IIoRestorecommerceResourcebaseReadRequest = {
|
|
102
102
|
sort?: InputMaybe<Array<IIoRestorecommerceResourcebaseSort>>;
|
103
103
|
filters?: InputMaybe<Array<IIoRestorecommerceResourcebaseFilterOp>>;
|
104
104
|
field?: InputMaybe<Array<IIoRestorecommerceResourcebaseFieldFilter>>;
|
105
|
-
search?: InputMaybe<Array<Scalars['String']>>;
|
106
105
|
localesLimiter?: InputMaybe<Array<Scalars['String']>>;
|
107
106
|
customQueries?: InputMaybe<Array<Scalars['String']>>;
|
108
107
|
customArguments?: InputMaybe<IGoogleProtobufAny>;
|
108
|
+
search?: InputMaybe<IIoRestorecommerceResourcebaseSearch>;
|
109
109
|
/** target scope */
|
110
110
|
scope?: InputMaybe<Scalars['String']>;
|
111
111
|
};
|
@@ -192,6 +192,11 @@ export declare type IGoogleProtobufAny = {
|
|
192
192
|
typeUrl?: InputMaybe<Scalars['String']>;
|
193
193
|
value?: InputMaybe<Scalars['GoogleProtobufAnyValue']>;
|
194
194
|
};
|
195
|
+
export declare type IIoRestorecommerceResourcebaseSearch = {
|
196
|
+
search?: InputMaybe<Scalars['String']>;
|
197
|
+
fields?: InputMaybe<Array<Scalars['String']>>;
|
198
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
199
|
+
};
|
195
200
|
export declare type Mutation = {
|
196
201
|
__typename?: 'Mutation';
|
197
202
|
notification: NotificationMutation;
|
@@ -261,16 +266,30 @@ export declare type IoRestorecommerceResourcebaseDeleteResponse = {
|
|
261
266
|
export declare type IIoRestorecommerceResourcebaseDeleteRequest = {
|
262
267
|
collection?: InputMaybe<Scalars['Boolean']>;
|
263
268
|
ids?: InputMaybe<Array<Scalars['String']>>;
|
269
|
+
view?: InputMaybe<Array<Scalars['String']>>;
|
270
|
+
analyzer?: InputMaybe<Array<Scalars['String']>>;
|
264
271
|
/** target scope */
|
265
272
|
scope?: InputMaybe<Scalars['String']>;
|
266
273
|
};
|
267
274
|
export declare type Subscription = {
|
268
275
|
__typename?: 'Subscription';
|
269
276
|
orderingOrders?: Maybe<SubscriptionOutput>;
|
277
|
+
fulfillmentFulfillment?: Maybe<SubscriptionOutput>;
|
278
|
+
fulfillmentFulfillmentCouriers?: Maybe<SubscriptionOutput>;
|
279
|
+
fulfillmentFulfillmentProduct?: Maybe<SubscriptionOutput>;
|
270
280
|
};
|
271
281
|
export declare type SubscriptionOrderingOrdersArgs = {
|
272
282
|
action?: InputMaybe<SubscriptionAction>;
|
273
283
|
};
|
284
|
+
export declare type SubscriptionFulfillmentFulfillmentArgs = {
|
285
|
+
action?: InputMaybe<SubscriptionAction>;
|
286
|
+
};
|
287
|
+
export declare type SubscriptionFulfillmentFulfillmentCouriersArgs = {
|
288
|
+
action?: InputMaybe<SubscriptionAction>;
|
289
|
+
};
|
290
|
+
export declare type SubscriptionFulfillmentFulfillmentProductArgs = {
|
291
|
+
action?: InputMaybe<SubscriptionAction>;
|
292
|
+
};
|
274
293
|
export declare type SubscriptionOutput = {
|
275
294
|
__typename?: 'SubscriptionOutput';
|
276
295
|
id?: Maybe<Scalars['String']>;
|
@@ -342,6 +361,7 @@ export declare type ResolversTypes = ResolversObject<{
|
|
342
361
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
343
362
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
344
363
|
GoogleProtobufAnyValue: ResolverTypeWrapper<Scalars['GoogleProtobufAnyValue']>;
|
364
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
345
365
|
Mutation: ResolverTypeWrapper<{}>;
|
346
366
|
NotificationMutation: ResolverTypeWrapper<NotificationMutation>;
|
347
367
|
NotificationNotificationMutation: ResolverTypeWrapper<NotificationNotificationMutation>;
|
@@ -385,6 +405,7 @@ export declare type ResolversParentTypes = ResolversObject<{
|
|
385
405
|
Boolean: Scalars['Boolean'];
|
386
406
|
IGoogleProtobufAny: IGoogleProtobufAny;
|
387
407
|
GoogleProtobufAnyValue: Scalars['GoogleProtobufAnyValue'];
|
408
|
+
IIoRestorecommerceResourcebaseSearch: IIoRestorecommerceResourcebaseSearch;
|
388
409
|
Mutation: {};
|
389
410
|
NotificationMutation: NotificationMutation;
|
390
411
|
NotificationNotificationMutation: NotificationNotificationMutation;
|
@@ -467,12 +488,12 @@ export declare type IoRestorecommerceStatusOperationStatusResolvers<ContextType
|
|
467
488
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
468
489
|
}>;
|
469
490
|
export declare type IoRestorecommerceResourcebaseSortSortOrderResolvers = {
|
470
|
-
UNSORTED:
|
491
|
+
UNSORTED: 0;
|
471
492
|
ASCENDING: 1;
|
472
493
|
DESCENDING: 2;
|
473
494
|
};
|
474
495
|
export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
475
|
-
eq:
|
496
|
+
eq: 0;
|
476
497
|
lt: 1;
|
477
498
|
lte: 2;
|
478
499
|
gt: 3;
|
@@ -483,14 +504,14 @@ export declare type IoRestorecommerceResourcebaseFilterOperationResolvers = {
|
|
483
504
|
neq: 8;
|
484
505
|
};
|
485
506
|
export declare type IoRestorecommerceResourcebaseFilterValueTypeResolvers = {
|
486
|
-
STRING:
|
507
|
+
STRING: 0;
|
487
508
|
NUMBER: 1;
|
488
509
|
BOOLEAN: 2;
|
489
510
|
DATE: 3;
|
490
511
|
ARRAY: 4;
|
491
512
|
};
|
492
513
|
export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
493
|
-
eq:
|
514
|
+
eq: 0;
|
494
515
|
lt: 1;
|
495
516
|
lte: 2;
|
496
517
|
gt: 3;
|
@@ -501,18 +522,18 @@ export declare type IoRestorecommerceFilterFilterOperationResolvers = {
|
|
501
522
|
neq: 8;
|
502
523
|
};
|
503
524
|
export declare type IoRestorecommerceFilterFilterValueTypeResolvers = {
|
504
|
-
STRING:
|
525
|
+
STRING: 0;
|
505
526
|
NUMBER: 1;
|
506
527
|
BOOLEAN: 2;
|
507
528
|
DATE: 3;
|
508
529
|
ARRAY: 4;
|
509
530
|
};
|
510
531
|
export declare type IoRestorecommerceFilterFilterOpOperatorResolvers = {
|
511
|
-
and:
|
532
|
+
and: 0;
|
512
533
|
or: 1;
|
513
534
|
};
|
514
535
|
export declare type IoRestorecommerceResourcebaseFilterOpOperatorResolvers = {
|
515
|
-
and:
|
536
|
+
and: 0;
|
516
537
|
or: 1;
|
517
538
|
};
|
518
539
|
export interface GoogleProtobufAnyValueScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['GoogleProtobufAnyValue'], any> {
|
@@ -541,6 +562,9 @@ export declare type IoRestorecommerceResourcebaseDeleteResponseResolvers<Context
|
|
541
562
|
}>;
|
542
563
|
export declare type SubscriptionResolvers<ContextType = NotificationContext, ParentType extends ResolversParentTypes['Subscription'] = ResolversParentTypes['Subscription']> = ResolversObject<{
|
543
564
|
orderingOrders?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "orderingOrders", ParentType, ContextType, Partial<SubscriptionOrderingOrdersArgs>>;
|
565
|
+
fulfillmentFulfillment?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillment", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentArgs>>;
|
566
|
+
fulfillmentFulfillmentCouriers?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentCouriers", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentCouriersArgs>>;
|
567
|
+
fulfillmentFulfillmentProduct?: SubscriptionResolver<Maybe<ResolversTypes['SubscriptionOutput']>, "fulfillmentFulfillmentProduct", ParentType, ContextType, Partial<SubscriptionFulfillmentFulfillmentProductArgs>>;
|
544
568
|
}>;
|
545
569
|
export declare type SubscriptionOutputResolvers<ContextType = NotificationContext, ParentType extends ResolversParentTypes['SubscriptionOutput'] = ResolversParentTypes['SubscriptionOutput']> = ResolversObject<{
|
546
570
|
id?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|