Arman
Arman
Разобрался. Конкретно у меня было так: `onLoad={onMapLoad}` `const onMapLoad = useCallback((ref): void => (ymap.current = ref), []);` заменил на: ``` const onMapLoad = useCallback((ref): void => { ymap.current = ref;...
@trumppk Hi! Do you have repro or more information? I tried generate mock with that sample and get correct mocks: ```ts export type MyType = { id: string; myDate: string;...
Sorry, not understood, why? `.split` return `string[]` type, we can use indexed signature to get any part
Sorry againt but I can't reproduce reproduce this behavior: [tsplay](https://typescript-eslint.io/play/#ts=5.9.3&fileType=.ts&code=MYewdgzgLgBADjAvDA3gKBjAtgTwCICGUApgFwwAUYxA7jISRQJRMB0UIAkgMoDy3UAE4BLMAHNmrCHAA2wqBQDkAFUVMA2gAYAugBo0AXyA&eslintrc=N4KABGBEBOCuA2BTAzpAXGUEKQAIBcBPABxQGNoBLY-AWhXkoDt8B6Jge1oDN4OBDfMwDmtYtA4BbSshTooiaBOiRwYAL4h1QA&tsconfig=N4KABGBEDGD2C2AHAlgGwKYCcDyiAuysAdgM6QBcYoEEkJemy0eAcgK6qoDCAFutAGsylBm3QAacDToMmeCmFESptIrACSSVE2R4AgkQCeCpZJpR6jZgDE2RZoSIAVQ4nTDFmMWemW5AIWQiABMuAENOPUREVGMRL2VzGSs8AAVMWDdMPEN1Il1kCOQALzCCYhMEn1o-Zn82NAIidTwsMthMACV0PDZMIkrvFSgIgHcwwxIAZVlmQfQpAF8QRaA&tokens=false) Maybe problem in your tsconfig?
@trumppk could you create a repro?
@dakivara you are right, spread operator doesnt work with Headers: As workaround i can suggest use simple object: But i think orval must separate `Headers` instance and object and merge...
@TheHaff Very impressive work! But I have to ask: [input.override.transformer](https://orval.dev/reference/configuration/input#transformer) isn't it suitable for the task of path filtering?
After research, I can say: input.override allows you to modify the path. ```js input: { target: 'PATH', override: { transformer(inputSchema) { return { ...inputSchema, paths: Object.entries(inputSchema.paths).reduce( (acc, [path, pathItem]) =>...
@anymaniax Yes, you're right. This is a breaking change. I was thinking about adding different comments depending on the linter, but I'm not sure that's a good approach. Separating actual...
Hi! I agree with you - redeclare is not good idea. I suggest drop eslint comments and rename type or value. Maybe add `Type` suffix? Or add `Consts`/`Enum` suffix to...