Skip to content

Commit

Permalink
Merge pull request #78 from ty-ras/issue/77-update-backend-packages-a…
Browse files Browse the repository at this point in the history
…fter-bug-fix

#77 Updating version of endpoint-spec dependency,…
  • Loading branch information
stazz authored Aug 15, 2023
2 parents 732207c + 5167eb2 commit a2cac2f
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 51 deletions.
4 changes: 2 additions & 2 deletions backend-node-io-ts-openapi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ty-ras/backend-node-io-ts-openapi",
"version": "2.0.2",
"version": "2.0.3",
"author": {
"name": "Stanislav Muhametsin",
"email": "[email protected]",
Expand Down Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"@ty-ras/server-node": "^2.0.0",
"@ty-ras/data-backend-io-ts": "^2.0.2",
"@ty-ras/endpoint-spec": "^2.0.0",
"@ty-ras/endpoint-spec": "^2.0.1",
"@ty-ras/metadata-jsonschema-io-ts": "^2.0.1",
"@ty-ras/metadata-openapi": "^2.0.2",
"@ty-ras/state-io-ts": "^2.0.1",
Expand Down
10 changes: 5 additions & 5 deletions backend-node-io-ts-openapi/src/endpoint-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as t from "io-ts";
*/
export function newBuilder(
defaultReadRequestBody: dataBE.ReadBody,
): DefaultApplicationBuilder;
): ApplicationBuilder;

/**
* This overload of `newBuilder` will create new {@link epSpec.ApplicationBuilder}, allowing customization of various configuration values.
Expand All @@ -47,7 +47,7 @@ export function newBuilder<
TDefaultRequestBodyContentType,
TDefaultResponseBodyContentType
>,
): DefaultApplicationBuilder<
): ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -79,7 +79,7 @@ export function newBuilder<
TDefaultRequestBodyContentType,
TDefaultResponseBodyContentType
>,
): DefaultApplicationBuilder<
): ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -135,7 +135,7 @@ export function newBuilder<
/**
* This type specializes generic {@link epSpec.ApplicationBuilder} type to use `io-ts` and OpenAPI -specific type parameters where possible.
*/
export type DefaultApplicationBuilder<
export type ApplicationBuilder<
TAuthenticatedState extends TStateSpecBase = typeof DEFAULT_AUTHENTICATED_STATE,
TOtherState extends TStateSpecBase = typeof DEFAULT_NOT_AUTHENTICATED_STATE,
TAllRequestBodyContentTypes extends string = typeof dataIO.CONTENT_TYPE,
Expand All @@ -144,7 +144,7 @@ export type DefaultApplicationBuilder<
TDefaultResponseBodyContentType extends TAllResponseBodyContentTypes = TAllResponseBodyContentTypes,
// TMetadataProviders extends epSpec.TMetadataProvidersBase = MetadataProviders,
TAdditionalDataSpecHKT extends epSpec.EndpointSpecAdditionalDataHKTBase = epSpec.NoAdditionalSpecDataHKT,
> = epSpec.ApplicationBuilder<
> = epSpec.ApplicationBuilderGeneric<
dataValidation.EncodedHKT,
dataValidation.ValidatorHKT,
DefaultStateHKT<TAuthenticatedState, TOtherState>,
Expand Down
12 changes: 6 additions & 6 deletions backend-node-io-ts-openapi/src/md-endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ import * as epSpec from "./endpoint-spec";
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param openAPIPath The URL path to serve the OpenAPI document from.
* @returns All of the endpoints of `creationResult` along with endpoints to serve the OpenAPI document.
*/
export function endpointsWithOpenAPI(
builder: epSpec.DefaultApplicationBuilder,
builder: epSpec.ApplicationBuilder,
creationResult: epSpecBase.EndpointsCreationResult<
epSpec.MetadataProviders,
server.ServerContext,
Expand All @@ -36,7 +36,7 @@ export function endpointsWithOpenAPI(
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param responseContentType The content type of the data returned by OpenAPI endpoint.
* @param authState The validation of state properties related to authentication.
Expand All @@ -58,7 +58,7 @@ export function endpointsWithOpenAPI<
...Array<keyof TAuthenticatedState>,
],
>(
builder: epSpec.DefaultApplicationBuilder<
builder: epSpec.ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -92,7 +92,7 @@ export function endpointsWithOpenAPI<
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param creationResult.metadata Privately deconstructed variable.
* @param creationResult.endpoints Privately deconstructed variable.
Expand All @@ -116,7 +116,7 @@ export function endpointsWithOpenAPI<
...Array<keyof TAuthenticatedState>,
],
>(
builder: epSpec.DefaultApplicationBuilder<
builder: epSpec.ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down
8 changes: 4 additions & 4 deletions backend-node-io-ts-openapi/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@
dependencies:
"@ty-ras/protocol" "^2.0.0"

"@ty-ras/endpoint-spec@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@ty-ras/endpoint-spec/-/endpoint-spec-2.0.0.tgz#c1eb0ea0a1a8a882d2b57d2a549a2b98a89a9917"
integrity sha512-djk86KeWjGwApNgPKT7dOkGy7v62d9PVYm5O8UOqdZh+mFVMgKxqryw9x9bC3Vw/kOaQZG/kX4azlVQyfV09JQ==
"@ty-ras/endpoint-spec@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@ty-ras/endpoint-spec/-/endpoint-spec-2.0.1.tgz#7bdeb33d125bad3c42a959fbcd178b805a602ca9"
integrity sha512-mLeqUGx8t6d7jIp2aedQT0kZwh63DIjhLWdV+nCHm6KWEnaRZuTw9Q5Sv3VIW1dalTyX1mSW7T+2GWKVMN1ipA==
dependencies:
"@ty-ras/endpoint" "^2.0.0"
"@ty-ras/metadata" "^2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions backend-node-runtypes-openapi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ty-ras/backend-node-runtypes-openapi",
"version": "2.0.0",
"version": "2.0.1",
"author": {
"name": "Stanislav Muhametsin",
"email": "[email protected]",
Expand Down Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"@ty-ras/server-node": "^2.0.0",
"@ty-ras/data-backend-runtypes": "^2.0.0",
"@ty-ras/endpoint-spec": "^2.0.0",
"@ty-ras/endpoint-spec": "^2.0.1",
"@ty-ras/metadata-jsonschema-runtypes": "^2.0.0",
"@ty-ras/metadata-openapi": "^2.0.2",
"@ty-ras/state-runtypes": "^2.0.0",
Expand Down
10 changes: 5 additions & 5 deletions backend-node-runtypes-openapi/src/endpoint-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as t from "runtypes";
*/
export function newBuilder(
defaultReadRequestBody: dataBE.ReadBody,
): DefaultApplicationBuilder;
): ApplicationBuilder;

/**
* This overload of `newBuilder` will create new {@link epSpec.ApplicationBuilder}, allowing customization of various configuration values.
Expand Down Expand Up @@ -50,7 +50,7 @@ export function newBuilder<
TDefaultRequestBodyContentType,
TDefaultResponseBodyContentType
>,
): DefaultApplicationBuilder<
): ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -85,7 +85,7 @@ export function newBuilder<
TDefaultRequestBodyContentType,
TDefaultResponseBodyContentType
>,
): DefaultApplicationBuilder<
): ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -141,7 +141,7 @@ export function newBuilder<
/**
* This type specializes generic {@link epSpec.ApplicationBuilder} type to use `runtypes` and OpenAPI -specific type parameters where possible.
*/
export type DefaultApplicationBuilder<
export type ApplicationBuilder<
TAuthenticatedState extends
TStateSpecBase = typeof DEFAULT_AUTHENTICATED_STATE,
TOtherState extends TStateSpecBase = typeof DEFAULT_NOT_AUTHENTICATED_STATE,
Expand All @@ -154,7 +154,7 @@ export type DefaultApplicationBuilder<
// TMetadataProviders extends epSpec.TMetadataProvidersBase = MetadataProviders,
TAdditionalDataSpecHKT extends
epSpec.EndpointSpecAdditionalDataHKTBase = epSpec.NoAdditionalSpecDataHKT,
> = epSpec.ApplicationBuilder<
> = epSpec.ApplicationBuilderGeneric<
dataValidation.EncodedHKT,
dataValidation.ValidatorHKT,
DefaultStateHKT<TAuthenticatedState, TOtherState>,
Expand Down
12 changes: 6 additions & 6 deletions backend-node-runtypes-openapi/src/md-endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ import * as epSpec from "./endpoint-spec";
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param openAPIPath The URL path to serve the OpenAPI document from.
* @returns All of the endpoints of `creationResult` along with endpoints to serve the OpenAPI document.
*/
export function endpointsWithOpenAPI(
builder: epSpec.DefaultApplicationBuilder,
builder: epSpec.ApplicationBuilder,
creationResult: epSpecBase.EndpointsCreationResult<
epSpec.MetadataProviders,
server.ServerContext,
Expand All @@ -36,7 +36,7 @@ export function endpointsWithOpenAPI(
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param responseContentType The content type of the data returned by OpenAPI endpoint.
* @param authState The validation of state properties related to authentication.
Expand All @@ -58,7 +58,7 @@ export function endpointsWithOpenAPI<
...Array<keyof TAuthenticatedState>,
],
>(
builder: epSpec.DefaultApplicationBuilder<
builder: epSpec.ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -92,7 +92,7 @@ export function endpointsWithOpenAPI<
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param creationResult.metadata Privately deconstructed variable.
* @param creationResult.endpoints Privately deconstructed variable.
Expand All @@ -116,7 +116,7 @@ export function endpointsWithOpenAPI<
...Array<keyof TAuthenticatedState>,
],
>(
builder: epSpec.DefaultApplicationBuilder<
builder: epSpec.ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down
8 changes: 4 additions & 4 deletions backend-node-runtypes-openapi/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,10 @@
dependencies:
"@ty-ras/protocol" "^2.0.0"

"@ty-ras/endpoint-spec@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@ty-ras/endpoint-spec/-/endpoint-spec-2.0.0.tgz#c1eb0ea0a1a8a882d2b57d2a549a2b98a89a9917"
integrity sha512-djk86KeWjGwApNgPKT7dOkGy7v62d9PVYm5O8UOqdZh+mFVMgKxqryw9x9bC3Vw/kOaQZG/kX4azlVQyfV09JQ==
"@ty-ras/endpoint-spec@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@ty-ras/endpoint-spec/-/endpoint-spec-2.0.1.tgz#7bdeb33d125bad3c42a959fbcd178b805a602ca9"
integrity sha512-mLeqUGx8t6d7jIp2aedQT0kZwh63DIjhLWdV+nCHm6KWEnaRZuTw9Q5Sv3VIW1dalTyX1mSW7T+2GWKVMN1ipA==
dependencies:
"@ty-ras/endpoint" "^2.0.0"
"@ty-ras/metadata" "^2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions backend-node-zod-openapi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ty-ras/backend-node-zod-openapi",
"version": "2.0.1",
"version": "2.0.2",
"author": {
"name": "Stanislav Muhametsin",
"email": "[email protected]",
Expand Down Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"@ty-ras/server-node": "^2.0.0",
"@ty-ras/data-backend-zod": "^2.0.0",
"@ty-ras/endpoint-spec": "^2.0.0",
"@ty-ras/endpoint-spec": "^2.0.1",
"@ty-ras/metadata-jsonschema-zod": "^2.0.1",
"@ty-ras/metadata-openapi": "^2.0.2",
"@ty-ras/state-zod": "^2.0.1",
Expand Down
10 changes: 5 additions & 5 deletions backend-node-zod-openapi/src/endpoint-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as t from "zod";
*/
export function newBuilder(
defaultReadRequestBody: dataBE.ReadBody,
): DefaultApplicationBuilder;
): ApplicationBuilder;

/**
* This overload of `newBuilder` will create new {@link epSpec.ApplicationBuilder}, allowing customization of various configuration values.
Expand All @@ -47,7 +47,7 @@ export function newBuilder<
TDefaultRequestBodyContentType,
TDefaultResponseBodyContentType
>,
): DefaultApplicationBuilder<
): ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -79,7 +79,7 @@ export function newBuilder<
TDefaultRequestBodyContentType,
TDefaultResponseBodyContentType
>,
): DefaultApplicationBuilder<
): ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -135,7 +135,7 @@ export function newBuilder<
/**
* This type specializes generic {@link epSpec.ApplicationBuilder} type to use `io-ts` and OpenAPI -specific type parameters where possible.
*/
export type DefaultApplicationBuilder<
export type ApplicationBuilder<
TAuthenticatedState extends TStateSpecBase = typeof DEFAULT_AUTHENTICATED_STATE,
TOtherState extends TStateSpecBase = typeof DEFAULT_NOT_AUTHENTICATED_STATE,
TAllRequestBodyContentTypes extends string = typeof dataIO.CONTENT_TYPE,
Expand All @@ -144,7 +144,7 @@ export type DefaultApplicationBuilder<
TDefaultResponseBodyContentType extends TAllResponseBodyContentTypes = TAllResponseBodyContentTypes,
// TMetadataProviders extends epSpec.TMetadataProvidersBase = MetadataProviders,
TAdditionalDataSpecHKT extends epSpec.EndpointSpecAdditionalDataHKTBase = epSpec.NoAdditionalSpecDataHKT,
> = epSpec.ApplicationBuilder<
> = epSpec.ApplicationBuilderGeneric<
dataValidation.EncodedHKT,
dataValidation.ValidatorHKT,
DefaultStateHKT<TAuthenticatedState, TOtherState>,
Expand Down
12 changes: 6 additions & 6 deletions backend-node-zod-openapi/src/md-endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ import * as epSpec from "./endpoint-spec";
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param openAPIPath The URL path to serve the OpenAPI document from.
* @returns All of the endpoints of `creationResult` along with endpoints to serve the OpenAPI document.
*/
export function endpointsWithOpenAPI(
builder: epSpec.DefaultApplicationBuilder,
builder: epSpec.ApplicationBuilder,
creationResult: epSpecBase.EndpointsCreationResult<
epSpec.MetadataProviders,
server.ServerContext,
Expand All @@ -36,7 +36,7 @@ export function endpointsWithOpenAPI(
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param responseContentType The content type of the data returned by OpenAPI endpoint.
* @param authState The validation of state properties related to authentication.
Expand All @@ -58,7 +58,7 @@ export function endpointsWithOpenAPI<
...Array<keyof TAuthenticatedState>,
],
>(
builder: epSpec.DefaultApplicationBuilder<
builder: epSpec.ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down Expand Up @@ -92,7 +92,7 @@ export function endpointsWithOpenAPI<
* Given the builder and the {@link epSpecBase.EndpointsCreationResult} from the builder, returns the endpoints of given {@link epSpecBase.EndpointsCreationResult}, along with endpoint(s) to serve OpenAPI document built from the endpoints.
*
* Notice that the OpenAPI endpoint strips authenticated endpoints for requests which are not considered to be authenticated.
* @param builder The {@link epSpec.DefaultApplicationBuilder} that was used to create `creationResult`.
* @param builder The {@link epSpec.ApplicationBuilder} that was used to create `creationResult`.
* @param creationResult The {@link epSpecBase.EndpointsCreationResult} that was created from `builder`.
* @param creationResult.metadata Privately deconstructed variable.
* @param creationResult.endpoints Privately deconstructed variable.
Expand All @@ -116,7 +116,7 @@ export function endpointsWithOpenAPI<
...Array<keyof TAuthenticatedState>,
],
>(
builder: epSpec.DefaultApplicationBuilder<
builder: epSpec.ApplicationBuilder<
TAuthenticatedState,
TOtherState,
TAllRequestBodyContentTypes,
Expand Down
8 changes: 4 additions & 4 deletions backend-node-zod-openapi/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@
dependencies:
"@ty-ras/protocol" "^2.0.0"

"@ty-ras/endpoint-spec@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@ty-ras/endpoint-spec/-/endpoint-spec-2.0.0.tgz#c1eb0ea0a1a8a882d2b57d2a549a2b98a89a9917"
integrity sha512-djk86KeWjGwApNgPKT7dOkGy7v62d9PVYm5O8UOqdZh+mFVMgKxqryw9x9bC3Vw/kOaQZG/kX4azlVQyfV09JQ==
"@ty-ras/endpoint-spec@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@ty-ras/endpoint-spec/-/endpoint-spec-2.0.1.tgz#7bdeb33d125bad3c42a959fbcd178b805a602ca9"
integrity sha512-mLeqUGx8t6d7jIp2aedQT0kZwh63DIjhLWdV+nCHm6KWEnaRZuTw9Q5Sv3VIW1dalTyX1mSW7T+2GWKVMN1ipA==
dependencies:
"@ty-ras/endpoint" "^2.0.0"
"@ty-ras/metadata" "^2.0.0"
Expand Down

0 comments on commit a2cac2f

Please sign in to comment.