Skip to content

Commit 38bbb91

Browse files
committed
Fix after rebase
1 parent 98abd3b commit 38bbb91

File tree

3 files changed

+0
-74
lines changed

3 files changed

+0
-74
lines changed

packages/api/src/__generated__/schema.ts

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/@generated/gql.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ const documents = {
8686
types.ValidateSessionDocument,
8787
'\n query ClientShippingSimulationQuery(\n $postalCode: String!\n $country: String!\n $items: [IShippingItem!]!\n ) {\n ...ClientShippingSimulation\n shipping(items: $items, postalCode: $postalCode, country: $country) {\n logisticsInfo {\n slas {\n carrier\n price\n availableDeliveryWindows {\n startDateUtc\n endDateUtc\n price\n listPrice\n }\n shippingEstimate\n localizedEstimates\n deliveryChannel\n }\n }\n address {\n city\n neighborhood\n state\n }\n }\n }\n':
8888
types.ClientShippingSimulationQueryDocument,
89-
'\n query ClientPickupPointsQuery(\n $geoCoordinates: IStoreGeoCoordinates\n $postalCode: String\n $country: String\n ) {\n pickupPoints(geoCoordinates: $geoCoordinates, postalCode: $postalCode, country: $country) {\n paging {\n total\n }\n items {\n pickupPoint {\n id\n address {\n street\n }\n friendlyName\n }\n }\n }\n }\n':
90-
types.ClientPickupPointsQueryDocument,
9189
'\n query ServerManyProductsQuery(\n $first: Int!\n $after: String\n $sort: StoreSort!\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]!\n $sponsoredCount: Int\n ) {\n ...ClientManyProducts\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n sponsoredCount: $sponsoredCount\n ) {\n products {\n pageInfo {\n totalCount\n }\n edges {\n node {\n ...ProductSummary_product\n }\n }\n }\n metadata {\n ...SearchEvent_metadata\n }\n }\n }\n':
9290
types.ServerManyProductsQueryDocument,
9391
}
@@ -314,12 +312,6 @@ export function gql(
314312
export function gql(
315313
source: '\n query ClientShippingSimulationQuery(\n $postalCode: String!\n $country: String!\n $items: [IShippingItem!]!\n ) {\n ...ClientShippingSimulation\n shipping(items: $items, postalCode: $postalCode, country: $country) {\n logisticsInfo {\n slas {\n carrier\n price\n availableDeliveryWindows {\n startDateUtc\n endDateUtc\n price\n listPrice\n }\n shippingEstimate\n localizedEstimates\n deliveryChannel\n }\n }\n address {\n city\n neighborhood\n state\n }\n }\n }\n'
316314
): typeof import('./graphql').ClientShippingSimulationQueryDocument
317-
/**
318-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
319-
*/
320-
export function gql(
321-
source: '\n query ClientPickupPointsQuery(\n $geoCoordinates: IStoreGeoCoordinates\n $postalCode: String\n $country: String\n ) {\n pickupPoints(geoCoordinates: $geoCoordinates, postalCode: $postalCode, country: $country) {\n paging {\n total\n }\n items {\n pickupPoint {\n id\n address {\n street\n }\n friendlyName\n }\n }\n }\n }\n'
322-
): typeof import('./graphql').ClientPickupPointsQueryDocument
323315
/**
324316
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
325317
*/

packages/core/@generated/graphql.ts

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -583,13 +583,6 @@ export type IUserOrderCancel = {
583583
reason: InputMaybe<Scalars['String']['input']>
584584
}
585585

586-
export type Item = {
587-
/** Pickup point distance. */
588-
distance: Maybe<Scalars['Float']['output']>
589-
/** Pickup point. */
590-
pickupPoint: Maybe<PickupPoint>
591-
}
592-
593586
export type LogisticsInfo = {
594587
/** LogisticsInfo itemIndex. */
595588
itemIndex: Maybe<Scalars['String']['output']>
@@ -694,17 +687,6 @@ export type MutationValidateSessionArgs = {
694687
session: IStoreSession
695688
}
696689

697-
export type Paging = {
698-
/** Current page. */
699-
page: Maybe<Scalars['Int']['output']>
700-
/** Number of items per page. */
701-
pageSize: Maybe<Scalars['Int']['output']>
702-
/** Total number of pages. */
703-
pages: Maybe<Scalars['Int']['output']>
704-
/** Total number of items. */
705-
total: Maybe<Scalars['Int']['output']>
706-
}
707-
708690
/** Newsletter information. */
709691
export type PersonNewsletter = {
710692
/** Person's ID in the newsletter list. */
@@ -3432,25 +3414,6 @@ export type ClientShippingSimulationQueryQuery = {
34323414
} | null
34333415
}
34343416

3435-
export type ClientPickupPointsQueryQueryVariables = Exact<{
3436-
geoCoordinates: InputMaybe<IStoreGeoCoordinates>
3437-
postalCode: InputMaybe<Scalars['String']['input']>
3438-
country: InputMaybe<Scalars['String']['input']>
3439-
}>
3440-
3441-
export type ClientPickupPointsQueryQuery = {
3442-
pickupPoints: {
3443-
paging: { total: number | null } | null
3444-
items: Array<{
3445-
pickupPoint: {
3446-
id: string | null
3447-
friendlyName: string | null
3448-
address: { street: string | null } | null
3449-
} | null
3450-
} | null> | null
3451-
} | null
3452-
}
3453-
34543417
export type ServerManyProductsQueryQueryVariables = Exact<{
34553418
first: Scalars['Int']['input']
34563419
after: InputMaybe<Scalars['String']['input']>
@@ -4194,15 +4157,6 @@ export const ClientShippingSimulationQueryDocument = {
41944157
ClientShippingSimulationQueryQuery,
41954158
ClientShippingSimulationQueryQueryVariables
41964159
>
4197-
export const ClientPickupPointsQueryDocument = {
4198-
__meta__: {
4199-
operationName: 'ClientPickupPointsQuery',
4200-
operationHash: '0267c77a87cb0592dfd9a73bad8f632c1801541b',
4201-
},
4202-
} as unknown as TypedDocumentString<
4203-
ClientPickupPointsQueryQuery,
4204-
ClientPickupPointsQueryQueryVariables
4205-
>
42064160
export const ServerManyProductsQueryDocument = {
42074161
__meta__: {
42084162
operationName: 'ServerManyProductsQuery',

0 commit comments

Comments
 (0)