@hey-api/openapi-ts 0.59.0 → 0.59.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +62 -62
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +57 -57
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -4711,8 +4711,11 @@ interface EnsureUniqueIdentifierData {
|
|
|
4711
4711
|
case: StringCase | undefined;
|
|
4712
4712
|
count?: number;
|
|
4713
4713
|
create?: boolean;
|
|
4714
|
+
/**
|
|
4715
|
+
* Transforms name obtained from `$ref` before it's passed to `stringCase()`.
|
|
4716
|
+
*/
|
|
4717
|
+
nameTransformer?: (name: string) => string;
|
|
4714
4718
|
namespace: Namespace;
|
|
4715
|
-
validNameTransformer?: (value: string) => string;
|
|
4716
4719
|
}
|
|
4717
4720
|
|
|
4718
4721
|
interface ContextFile {
|
package/dist/index.d.ts
CHANGED
|
@@ -4711,8 +4711,11 @@ interface EnsureUniqueIdentifierData {
|
|
|
4711
4711
|
case: StringCase | undefined;
|
|
4712
4712
|
count?: number;
|
|
4713
4713
|
create?: boolean;
|
|
4714
|
+
/**
|
|
4715
|
+
* Transforms name obtained from `$ref` before it's passed to `stringCase()`.
|
|
4716
|
+
*/
|
|
4717
|
+
nameTransformer?: (name: string) => string;
|
|
4714
4718
|
namespace: Namespace;
|
|
4715
|
-
validNameTransformer?: (value: string) => string;
|
|
4716
4719
|
}
|
|
4717
4720
|
|
|
4718
4721
|
interface ContextFile {
|