fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3675 from hey-api/refactor/dsl-from-value

refactor: rename fromValue file to from-value

authored by

Lubos and committed by
GitHub
632638ff 11db9af9

+4 -4
+2 -2
packages/openapi-python/src/py-dsl/index.ts
··· 21 21 import { CallPyDsl } from './expr/call'; 22 22 import { DictPyDsl } from './expr/dict'; 23 23 import { ExprPyDsl } from './expr/expr'; 24 - // import { fromValue as exprValue } from './expr/fromValue'; 24 + // import { fromValue as exprValue } from './expr/from-value'; 25 25 import { IdPyDsl } from './expr/identifier'; 26 26 import { KwargPyDsl } from './expr/kwarg'; 27 27 import { ListPyDsl } from './expr/list'; ··· 58 58 // import { TypeAndPyDsl } from './type/and'; 59 59 // import { TypeAttrPyDsl } from './type/attr'; 60 60 // import { TypeExprPyDsl } from './type/expr'; 61 - // import { fromValue as typeValue } from './type/fromValue'; 61 + // import { fromValue as typeValue } from './type/from-value'; 62 62 // import { TypeFuncPyDsl } from './type/func'; 63 63 // import { TypeIdxPyDsl } from './type/idx'; 64 64 // import { TypeLiteralPyDsl } from './type/literal';
packages/openapi-ts/src/ts-dsl/expr/fromValue.ts packages/openapi-ts/src/ts-dsl/expr/from-value.ts
+2 -2
packages/openapi-ts/src/ts-dsl/index.ts
··· 20 20 import { BinaryTsDsl } from './expr/binary'; 21 21 import { CallTsDsl } from './expr/call'; 22 22 import { ExprTsDsl } from './expr/expr'; 23 - import { fromValue as exprValue } from './expr/fromValue'; 23 + import { fromValue as exprValue } from './expr/from-value'; 24 24 import { IdTsDsl } from './expr/id'; 25 25 import { LiteralTsDsl } from './expr/literal'; 26 26 import { NewTsDsl } from './expr/new'; ··· 51 51 import { TypeAndTsDsl } from './type/and'; 52 52 import { TypeAttrTsDsl } from './type/attr'; 53 53 import { TypeExprTsDsl } from './type/expr'; 54 - import { fromValue as typeValue } from './type/fromValue'; 54 + import { fromValue as typeValue } from './type/from-value'; 55 55 import { TypeFuncTsDsl } from './type/func'; 56 56 import { TypeIdxTsDsl } from './type/idx'; 57 57 import { TypeLiteralTsDsl } from './type/literal';
packages/openapi-ts/src/ts-dsl/type/fromValue.ts packages/openapi-ts/src/ts-dsl/type/from-value.ts