You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export const _common:AcknowledgedResponseBase = S.Struct({
/** For a successful response, this value is always true. On failure, an exception is returned instead. */
acknowledged: S.Boolean,
});
export type _common:AcknowledgedResponseBase = S.Schema.Type<typeof _common:AcknowledgedResponseBase>;
export const _common:AcknowledgedResponseBaseEncoded = S.encodedSchema(_common:AcknowledgedResponseBase);
export type _common:AcknowledgedResponseBaseEncoded = S.Schema.Encoded<typeof _common:AcknowledgedResponseBase>;
The text was updated successfully, but these errors were encountered:
I'm parsing the spec for opensearch (https://github.com/opensearch-project/opensearch-api-specification/releases/download/main-latest/opensearch-openapi.yaml) which contains schemas with names like: "cat._common:CatPitSegmentsRecord" or "_common:AcknowledgedResponseBase", which will result in incorrect typescript code because the schemaId generated is invalid.
The text was updated successfully, but these errors were encountered: