@@ -945,7 +945,9 @@ respondOnServiceRequest?: [{ input: ValueTypes["RespondOnServiceRequestInput"] |
945
945
filters ?: ValueTypes [ "GetBooksFiltersInput" ] | undefined | null | Variable < any , string >
946
946
} ;
947
947
[ "GetBooksFiltersInput" ] : {
948
- startDate : string | Variable < any , string >
948
+ fromDate ?: ValueTypes [ "Date" ] | undefined | null | Variable < any , string > ,
949
+ toDate ?: ValueTypes [ "Date" ] | undefined | null | Variable < any , string > ,
950
+ status ?: ValueTypes [ "BookStatus" ] | undefined | null | Variable < any , string >
949
951
} ;
950
952
[ "ListServicesInput" ] : {
951
953
page ?: ValueTypes [ "PageOptionsInput" ] | undefined | null | Variable < any , string > ,
@@ -991,7 +993,7 @@ respondOnServiceRequest?: [{ input: ValueTypes["RespondOnServiceRequestInput"] |
991
993
price ?: number | undefined | null | Variable < any , string >
992
994
} ;
993
995
[ "ReservationInfoInput" ] : {
994
- user ? : ValueTypes [ "UserInput" ] | undefined | null | Variable < any , string > ,
996
+ user : ValueTypes [ "UserInput" ] | Variable < any , string > ,
995
997
comments ?: string | undefined | null | Variable < any , string > ,
996
998
numberOfGuests ?: number | undefined | null | Variable < any , string > ,
997
999
numberOfKids ?: number | undefined | null | Variable < any , string > ,
@@ -1234,7 +1236,9 @@ respondOnServiceRequest?: [{ input: ResolverInputTypes["RespondOnServiceRequestI
1234
1236
filters ?: ResolverInputTypes [ "GetBooksFiltersInput" ] | undefined | null
1235
1237
} ;
1236
1238
[ "GetBooksFiltersInput" ] : {
1237
- startDate : string
1239
+ fromDate ?: ResolverInputTypes [ "Date" ] | undefined | null ,
1240
+ toDate ?: ResolverInputTypes [ "Date" ] | undefined | null ,
1241
+ status ?: ResolverInputTypes [ "BookStatus" ] | undefined | null
1238
1242
} ;
1239
1243
[ "ListServicesInput" ] : {
1240
1244
page ?: ResolverInputTypes [ "PageOptionsInput" ] | undefined | null ,
@@ -1280,7 +1284,7 @@ respondOnServiceRequest?: [{ input: ResolverInputTypes["RespondOnServiceRequestI
1280
1284
price ?: number | undefined | null
1281
1285
} ;
1282
1286
[ "ReservationInfoInput" ] : {
1283
- user ? : ResolverInputTypes [ "UserInput" ] | undefined | null ,
1287
+ user : ResolverInputTypes [ "UserInput" ] ,
1284
1288
comments ?: string | undefined | null ,
1285
1289
numberOfGuests ?: number | undefined | null ,
1286
1290
numberOfKids ?: number | undefined | null ,
@@ -1523,7 +1527,9 @@ in otherwise any endpoint in UserMutation will throw error about malformed sourc
1523
1527
filters ?: ModelTypes [ "GetBooksFiltersInput" ] | undefined
1524
1528
} ;
1525
1529
[ "GetBooksFiltersInput" ] : {
1526
- startDate : string
1530
+ fromDate ?: ModelTypes [ "Date" ] | undefined ,
1531
+ toDate ?: ModelTypes [ "Date" ] | undefined ,
1532
+ status ?: ModelTypes [ "BookStatus" ] | undefined
1527
1533
} ;
1528
1534
[ "ListServicesInput" ] : {
1529
1535
page ?: ModelTypes [ "PageOptionsInput" ] | undefined ,
@@ -1566,7 +1572,7 @@ in otherwise any endpoint in UserMutation will throw error about malformed sourc
1566
1572
price ?: number | undefined
1567
1573
} ;
1568
1574
[ "ReservationInfoInput" ] : {
1569
- user ? : ModelTypes [ "UserInput" ] | undefined ,
1575
+ user : ModelTypes [ "UserInput" ] ,
1570
1576
comments ?: string | undefined ,
1571
1577
numberOfGuests ?: number | undefined ,
1572
1578
numberOfKids ?: number | undefined ,
@@ -1799,7 +1805,9 @@ in otherwise any endpoint in UserMutation will throw error about malformed sourc
1799
1805
filters ?: GraphQLTypes [ "GetBooksFiltersInput" ] | undefined
1800
1806
} ;
1801
1807
[ "GetBooksFiltersInput" ] : {
1802
- startDate : string
1808
+ fromDate ?: GraphQLTypes [ "Date" ] | undefined ,
1809
+ toDate ?: GraphQLTypes [ "Date" ] | undefined ,
1810
+ status ?: GraphQLTypes [ "BookStatus" ] | undefined
1803
1811
} ;
1804
1812
[ "ListServicesInput" ] : {
1805
1813
page ?: GraphQLTypes [ "PageOptionsInput" ] | undefined ,
@@ -1845,7 +1853,7 @@ in otherwise any endpoint in UserMutation will throw error about malformed sourc
1845
1853
price ?: number | undefined
1846
1854
} ;
1847
1855
[ "ReservationInfoInput" ] : {
1848
- user ? : GraphQLTypes [ "UserInput" ] | undefined ,
1856
+ user : GraphQLTypes [ "UserInput" ] ,
1849
1857
comments ?: string | undefined ,
1850
1858
numberOfGuests ?: number | undefined ,
1851
1859
numberOfKids ?: number | undefined ,
0 commit comments