Updates dockerfile
All checks were successful
Build and Push / build (push) Successful in 55s

This commit is contained in:
2026-02-16 15:09:37 -05:00
parent 8346776f2a
commit d181f77fb2
14943 changed files with 2078509 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
import { JSONSchema } from '../jsonSchema';
export declare function getSchemaTypeName(schema: JSONSchema): string;
/**
* Get type name from reference url
* @param $ref reference to the same file OR to the another component OR to the section in another component:
* `schema-name.schema.json` -> schema-name
* `custom-scheme://shared-schema.json#/definitions/SomeType` -> SomeType
* `custom-scheme://schema-name.schema.json` -> schema-name
* `shared-schema.schema.json#/definitions/SomeType` -> SomeType
* `file:///Users/user/Documents/project/schemas/schema-name.schema.json` -> schema-name
* `#/definitions/SomeType` -> SomeType
* `#/definitions/io.k8s.api.apps.v1.DaemonSetSpec` => io.k8s.api.apps.v1.DaemonSetSpec
* `file:///default_schema_id.yaml` => default_schema_id.yaml
* test: https://regex101.com/r/ZpuXxk/1
*/
export declare function getSchemaRefTypeTitle($ref: string): string;
export declare function getSchemaTitle(schema: JSONSchema, url: string): string;
export declare function isPrimitiveType(schema: JSONSchema): boolean;
export declare function isAnyOfAllOfOneOfType(schema: JSONSchema): boolean;