Jamal Soueidan
Jamal Soueidan
I think you mean when going to the app first time the host is added in the url? I'm getting that error after I call the api from the frontend.
It's always been there, I thought it was related to the shopify in general.
Beside that I don't get why they didn't use typescript in this project! In other internal projects at shopify they use typescript. What is the reason? I started working on...
@dani-sanomads did you figure out how to do it without using the shopify-api?
1. You need to fill the webhooks you need in the gdpr file. 2. Then call webhooks register when booting the application. ```js const response = await shopify.api.webhooks.register({ session, });...
I don't believe, I will close it :)
I changed all boolean to string and integer or number to string, I convert them back to number when it hits the endpoint. I don't know if their is any...
Thank you @NimmLor for your reply. I know this would work, but then the types is wrong, since the params is start => Date, and end => Date. ```js getUserShiftGetAllQueryKey(userId...
https://github.com/jamalsoueidan/booking-api/blob/main/docs/openapi.yaml https://github.com/jamalsoueidan/booking-api/blob/main/orval.config.js I'm using useDate: true.
```js export const getUserShiftGetAllQueryKey = ( userId: string, params: UserShiftGetAllParams ) => [`/user/${userId}/shifts`, ...(params ? [params] : [])] as const; ``` ```js /** * Generated by orval v6.14.3 🍺 *...