@rivetkit/engine-api-full 2.0.4-rc.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/LICENSE +203 -0
- package/dist/browser/cjs/core.js +2338 -0
- package/dist/browser/cjs/index.js +4241 -0
- package/dist/browser/cjs/serialization.js +1953 -0
- package/dist/browser/esm/core.js +2312 -0
- package/dist/browser/esm/index.js +4215 -0
- package/dist/browser/esm/serialization.js +1926 -0
- package/dist/node/cjs/core.js +2353 -0
- package/dist/node/cjs/index.js +4254 -0
- package/dist/node/cjs/serialization.js +2016 -0
- package/dist/node/esm/core.js +2317 -0
- package/dist/node/esm/index.js +4220 -0
- package/dist/node/esm/serialization.js +1927 -0
- package/package.json +67 -0
- package/types/Client.d.ts +250 -0
- package/types/api/client/index.d.ts +1 -0
- package/types/api/client/requests/ActorsCreateRequest.d.ts +22 -0
- package/types/api/client/requests/ActorsDeleteRequest.d.ts +12 -0
- package/types/api/client/requests/ActorsGetOrCreateRequest.d.ts +23 -0
- package/types/api/client/requests/ActorsKvGetRequest.d.ts +12 -0
- package/types/api/client/requests/ActorsListNamesRequest.d.ts +14 -0
- package/types/api/client/requests/ActorsListRequest.d.ts +23 -0
- package/types/api/client/requests/RunnerConfigsDeleteRequest.d.ts +12 -0
- package/types/api/client/requests/RunnerConfigsListRequest.d.ts +21 -0
- package/types/api/client/requests/RunnerConfigsRefreshMetadataRequest.d.ts +17 -0
- package/types/api/client/requests/RunnerConfigsServerlessHealthCheckRequest.d.ts +15 -0
- package/types/api/client/requests/RunnerConfigsUpsertRequestBody.d.ts +17 -0
- package/types/api/client/requests/index.d.ts +11 -0
- package/types/api/index.d.ts +3 -0
- package/types/api/resources/datacenters/client/Client.d.ts +36 -0
- package/types/api/resources/datacenters/client/index.d.ts +1 -0
- package/types/api/resources/datacenters/index.d.ts +1 -0
- package/types/api/resources/health/client/Client.d.ts +36 -0
- package/types/api/resources/health/client/index.d.ts +1 -0
- package/types/api/resources/health/index.d.ts +1 -0
- package/types/api/resources/index.d.ts +7 -0
- package/types/api/resources/metadata/client/Client.d.ts +36 -0
- package/types/api/resources/metadata/client/index.d.ts +1 -0
- package/types/api/resources/metadata/index.d.ts +1 -0
- package/types/api/resources/namespaces/client/Client.d.ts +48 -0
- package/types/api/resources/namespaces/client/index.d.ts +1 -0
- package/types/api/resources/namespaces/client/requests/NamespacesCreateRequest.d.ts +14 -0
- package/types/api/resources/namespaces/client/requests/NamespacesListRequest.d.ts +18 -0
- package/types/api/resources/namespaces/client/requests/index.d.ts +2 -0
- package/types/api/resources/namespaces/index.d.ts +1 -0
- package/types/api/resources/runners/client/Client.d.ts +54 -0
- package/types/api/resources/runners/client/index.d.ts +1 -0
- package/types/api/resources/runners/client/requests/RunnersListNamesRequest.d.ts +14 -0
- package/types/api/resources/runners/client/requests/RunnersListRequest.d.ts +22 -0
- package/types/api/resources/runners/client/requests/index.d.ts +2 -0
- package/types/api/resources/runners/index.d.ts +1 -0
- package/types/api/types/Actor.d.ts +32 -0
- package/types/api/types/ActorName.d.ts +6 -0
- package/types/api/types/ActorsCreateResponse.d.ts +7 -0
- package/types/api/types/ActorsDeleteResponse.d.ts +4 -0
- package/types/api/types/ActorsGetOrCreateResponse.d.ts +8 -0
- package/types/api/types/ActorsKvGetResponse.d.ts +7 -0
- package/types/api/types/ActorsListNamesResponse.d.ts +8 -0
- package/types/api/types/ActorsListResponse.d.ts +8 -0
- package/types/api/types/CrashPolicy.d.ts +9 -0
- package/types/api/types/Datacenter.d.ts +8 -0
- package/types/api/types/DatacenterHealth.d.ts +12 -0
- package/types/api/types/DatacentersListResponse.d.ts +8 -0
- package/types/api/types/HealthFanoutResponse.d.ts +7 -0
- package/types/api/types/HealthResponse.d.ts +8 -0
- package/types/api/types/HealthStatus.d.ts +8 -0
- package/types/api/types/MetadataGetResponse.d.ts +13 -0
- package/types/api/types/Namespace.d.ts +10 -0
- package/types/api/types/NamespaceListResponse.d.ts +8 -0
- package/types/api/types/NamespacesCreateResponse.d.ts +7 -0
- package/types/api/types/Pagination.d.ts +6 -0
- package/types/api/types/RivetId.d.ts +4 -0
- package/types/api/types/Runner.d.ts +21 -0
- package/types/api/types/RunnerConfig.d.ts +10 -0
- package/types/api/types/RunnerConfigKind.d.ts +5 -0
- package/types/api/types/RunnerConfigKindNormal.d.ts +6 -0
- package/types/api/types/RunnerConfigKindServerless.d.ts +7 -0
- package/types/api/types/RunnerConfigKindServerlessServerless.d.ts +15 -0
- package/types/api/types/RunnerConfigResponse.d.ts +7 -0
- package/types/api/types/RunnerConfigServerless.d.ts +15 -0
- package/types/api/types/RunnerConfigVariant.d.ts +8 -0
- package/types/api/types/RunnerConfigsDeleteResponse.d.ts +4 -0
- package/types/api/types/RunnerConfigsListResponse.d.ts +8 -0
- package/types/api/types/RunnerConfigsListResponseRunnerConfigsValue.d.ts +7 -0
- package/types/api/types/RunnerConfigsRefreshMetadataRequestBody.d.ts +4 -0
- package/types/api/types/RunnerConfigsRefreshMetadataResponse.d.ts +4 -0
- package/types/api/types/RunnerConfigsServerlessHealthCheckResponse.d.ts +5 -0
- package/types/api/types/RunnerConfigsServerlessHealthCheckResponseFailure.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessHealthCheckResponseFailureFailure.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessHealthCheckResponseSuccess.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessHealthCheckResponseSuccessSuccess.d.ts +6 -0
- package/types/api/types/RunnerConfigsServerlessMetadataError.d.ts +5 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorInvalidRequest.d.ts +6 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorInvalidResponseJson.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson.d.ts +6 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorInvalidResponseSchema.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorNonSuccessStatus.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus.d.ts +7 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorRequestFailed.d.ts +6 -0
- package/types/api/types/RunnerConfigsServerlessMetadataErrorRequestTimedOut.d.ts +6 -0
- package/types/api/types/RunnerConfigsUpsertResponse.d.ts +6 -0
- package/types/api/types/RunnersListNamesResponse.d.ts +8 -0
- package/types/api/types/RunnersListResponse.d.ts +8 -0
- package/types/api/types/index.d.ts +53 -0
- package/types/core/auth/BasicAuth.d.ts +8 -0
- package/types/core/auth/BearerToken.d.ts +5 -0
- package/types/core/auth/index.d.ts +2 -0
- package/types/core/fetcher/APIResponse.d.ts +10 -0
- package/types/core/fetcher/Fetcher.d.ts +39 -0
- package/types/core/fetcher/Supplier.d.ts +4 -0
- package/types/core/fetcher/createRequestUrl.d.ts +1 -0
- package/types/core/fetcher/getFetchFn.d.ts +4 -0
- package/types/core/fetcher/getHeader.d.ts +1 -0
- package/types/core/fetcher/getRequestBody.d.ts +7 -0
- package/types/core/fetcher/getResponseBody.d.ts +1 -0
- package/types/core/fetcher/index.d.ts +5 -0
- package/types/core/fetcher/makeRequest.d.ts +1 -0
- package/types/core/fetcher/requestWithRetries.d.ts +1 -0
- package/types/core/fetcher/signals.d.ts +11 -0
- package/types/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +30 -0
- package/types/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +21 -0
- package/types/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +31 -0
- package/types/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +18 -0
- package/types/core/index.d.ts +4 -0
- package/types/core/json.d.ts +15 -0
- package/types/core/runtime/index.d.ts +1 -0
- package/types/core/runtime/runtime.d.ts +9 -0
- package/types/core/schemas/Schema.d.ts +87 -0
- package/types/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/types/core/schemas/builders/bigint/index.d.ts +1 -0
- package/types/core/schemas/builders/date/date.d.ts +2 -0
- package/types/core/schemas/builders/date/index.d.ts +1 -0
- package/types/core/schemas/builders/enum/enum.d.ts +2 -0
- package/types/core/schemas/builders/enum/index.d.ts +1 -0
- package/types/core/schemas/builders/index.d.ts +14 -0
- package/types/core/schemas/builders/lazy/index.d.ts +3 -0
- package/types/core/schemas/builders/lazy/lazy.d.ts +5 -0
- package/types/core/schemas/builders/lazy/lazyObject.d.ts +3 -0
- package/types/core/schemas/builders/list/index.d.ts +1 -0
- package/types/core/schemas/builders/list/list.d.ts +2 -0
- package/types/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
- package/types/core/schemas/builders/literals/index.d.ts +2 -0
- package/types/core/schemas/builders/literals/stringLiteral.d.ts +2 -0
- package/types/core/schemas/builders/object/index.d.ts +6 -0
- package/types/core/schemas/builders/object/object.d.ts +3 -0
- package/types/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
- package/types/core/schemas/builders/object/property.d.ts +8 -0
- package/types/core/schemas/builders/object/types.d.ts +31 -0
- package/types/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +9 -0
- package/types/core/schemas/builders/object-like/index.d.ts +2 -0
- package/types/core/schemas/builders/object-like/types.d.ts +7 -0
- package/types/core/schemas/builders/primitives/any.d.ts +1 -0
- package/types/core/schemas/builders/primitives/boolean.d.ts +1 -0
- package/types/core/schemas/builders/primitives/index.d.ts +5 -0
- package/types/core/schemas/builders/primitives/number.d.ts +1 -0
- package/types/core/schemas/builders/primitives/string.d.ts +1 -0
- package/types/core/schemas/builders/primitives/unknown.d.ts +1 -0
- package/types/core/schemas/builders/record/index.d.ts +2 -0
- package/types/core/schemas/builders/record/record.d.ts +3 -0
- package/types/core/schemas/builders/record/types.d.ts +4 -0
- package/types/core/schemas/builders/schema-utils/JsonError.d.ts +5 -0
- package/types/core/schemas/builders/schema-utils/ParseError.d.ts +5 -0
- package/types/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +21 -0
- package/types/core/schemas/builders/schema-utils/index.d.ts +4 -0
- package/types/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +2 -0
- package/types/core/schemas/builders/set/index.d.ts +1 -0
- package/types/core/schemas/builders/set/set.d.ts +2 -0
- package/types/core/schemas/builders/undiscriminated-union/index.d.ts +2 -0
- package/types/core/schemas/builders/undiscriminated-union/types.d.ts +4 -0
- package/types/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +3 -0
- package/types/core/schemas/builders/union/discriminant.d.ts +5 -0
- package/types/core/schemas/builders/union/index.d.ts +4 -0
- package/types/core/schemas/builders/union/types.d.ts +13 -0
- package/types/core/schemas/builders/union/union.d.ts +4 -0
- package/types/core/schemas/index.d.ts +2 -0
- package/types/core/schemas/utils/MaybePromise.d.ts +1 -0
- package/types/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +7 -0
- package/types/core/schemas/utils/createIdentitySchemaCreator.d.ts +2 -0
- package/types/core/schemas/utils/entries.d.ts +1 -0
- package/types/core/schemas/utils/filterObject.d.ts +1 -0
- package/types/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
- package/types/core/schemas/utils/isPlainObject.d.ts +1 -0
- package/types/core/schemas/utils/keys.d.ts +1 -0
- package/types/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
- package/types/core/schemas/utils/partition.d.ts +1 -0
- package/types/errors/RivetError.d.ts +12 -0
- package/types/errors/RivetTimeoutError.d.ts +6 -0
- package/types/errors/index.d.ts +2 -0
- package/types/index.d.ts +4 -0
- package/types/serialization/client/index.d.ts +1 -0
- package/types/serialization/client/requests/ActorsCreateRequest.d.ts +18 -0
- package/types/serialization/client/requests/ActorsGetOrCreateRequest.d.ts +18 -0
- package/types/serialization/client/requests/RunnerConfigsServerlessHealthCheckRequest.d.ts +13 -0
- package/types/serialization/client/requests/RunnerConfigsUpsertRequestBody.d.ts +13 -0
- package/types/serialization/client/requests/index.d.ts +4 -0
- package/types/serialization/index.d.ts +3 -0
- package/types/serialization/resources/index.d.ts +2 -0
- package/types/serialization/resources/namespaces/client/index.d.ts +1 -0
- package/types/serialization/resources/namespaces/client/requests/NamespacesCreateRequest.d.ts +13 -0
- package/types/serialization/resources/namespaces/client/requests/index.d.ts +1 -0
- package/types/serialization/resources/namespaces/index.d.ts +1 -0
- package/types/serialization/types/Actor.d.ts +28 -0
- package/types/serialization/types/ActorName.d.ts +12 -0
- package/types/serialization/types/ActorsCreateResponse.d.ts +13 -0
- package/types/serialization/types/ActorsDeleteResponse.d.ts +10 -0
- package/types/serialization/types/ActorsGetOrCreateResponse.d.ts +14 -0
- package/types/serialization/types/ActorsKvGetResponse.d.ts +13 -0
- package/types/serialization/types/ActorsListNamesResponse.d.ts +15 -0
- package/types/serialization/types/ActorsListResponse.d.ts +15 -0
- package/types/serialization/types/CrashPolicy.d.ts +10 -0
- package/types/serialization/types/Datacenter.d.ts +14 -0
- package/types/serialization/types/DatacenterHealth.d.ts +19 -0
- package/types/serialization/types/DatacentersListResponse.d.ts +15 -0
- package/types/serialization/types/HealthFanoutResponse.d.ts +13 -0
- package/types/serialization/types/HealthResponse.d.ts +14 -0
- package/types/serialization/types/HealthStatus.d.ts +10 -0
- package/types/serialization/types/MetadataGetResponse.d.ts +19 -0
- package/types/serialization/types/Namespace.d.ts +16 -0
- package/types/serialization/types/NamespaceListResponse.d.ts +15 -0
- package/types/serialization/types/NamespacesCreateResponse.d.ts +13 -0
- package/types/serialization/types/Pagination.d.ts +12 -0
- package/types/serialization/types/RivetId.d.ts +10 -0
- package/types/serialization/types/Runner.d.ts +27 -0
- package/types/serialization/types/RunnerConfig.d.ts +16 -0
- package/types/serialization/types/RunnerConfigKind.d.ts +12 -0
- package/types/serialization/types/RunnerConfigKindNormal.d.ts +12 -0
- package/types/serialization/types/RunnerConfigKindServerless.d.ts +13 -0
- package/types/serialization/types/RunnerConfigKindServerlessServerless.d.ts +19 -0
- package/types/serialization/types/RunnerConfigResponse.d.ts +13 -0
- package/types/serialization/types/RunnerConfigServerless.d.ts +19 -0
- package/types/serialization/types/RunnerConfigVariant.d.ts +10 -0
- package/types/serialization/types/RunnerConfigsDeleteResponse.d.ts +10 -0
- package/types/serialization/types/RunnerConfigsListResponse.d.ts +15 -0
- package/types/serialization/types/RunnerConfigsListResponseRunnerConfigsValue.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsRefreshMetadataRequestBody.d.ts +10 -0
- package/types/serialization/types/RunnerConfigsRefreshMetadataResponse.d.ts +10 -0
- package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponse.d.ts +12 -0
- package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponseFailure.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponseFailureFailure.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponseSuccess.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponseSuccessSuccess.d.ts +12 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataError.d.ts +16 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidRequest.d.ts +12 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidResponseJson.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson.d.ts +12 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidResponseSchema.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorNonSuccessStatus.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus.d.ts +13 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorRequestFailed.d.ts +12 -0
- package/types/serialization/types/RunnerConfigsServerlessMetadataErrorRequestTimedOut.d.ts +12 -0
- package/types/serialization/types/RunnerConfigsUpsertResponse.d.ts +12 -0
- package/types/serialization/types/RunnersListNamesResponse.d.ts +14 -0
- package/types/serialization/types/RunnersListResponse.d.ts +15 -0
- package/types/serialization/types/index.d.ts +53 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const HealthResponse: core.serialization.ObjectSchema<serializers.HealthResponse.Raw, Rivet.HealthResponse>;
|
|
8
|
+
export declare namespace HealthResponse {
|
|
9
|
+
interface Raw {
|
|
10
|
+
runtime: string;
|
|
11
|
+
status: string;
|
|
12
|
+
version: string;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const HealthStatus: core.serialization.Schema<serializers.HealthStatus.Raw, Rivet.HealthStatus>;
|
|
8
|
+
export declare namespace HealthStatus {
|
|
9
|
+
type Raw = "ok" | "error";
|
|
10
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const MetadataGetResponse: core.serialization.ObjectSchema<serializers.MetadataGetResponse.Raw, Rivet.MetadataGetResponse>;
|
|
8
|
+
export declare namespace MetadataGetResponse {
|
|
9
|
+
interface Raw {
|
|
10
|
+
build_timestamp: string;
|
|
11
|
+
cargo_profile: string;
|
|
12
|
+
cargo_target: string;
|
|
13
|
+
git_sha: string;
|
|
14
|
+
runtime: string;
|
|
15
|
+
rustc_host: string;
|
|
16
|
+
rustc_version: string;
|
|
17
|
+
version: string;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RivetId } from "./RivetId";
|
|
8
|
+
export declare const Namespace: core.serialization.ObjectSchema<serializers.Namespace.Raw, Rivet.Namespace>;
|
|
9
|
+
export declare namespace Namespace {
|
|
10
|
+
interface Raw {
|
|
11
|
+
create_ts: number;
|
|
12
|
+
display_name: string;
|
|
13
|
+
name: string;
|
|
14
|
+
namespace_id: RivetId.Raw;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { Namespace } from "./Namespace";
|
|
8
|
+
import { Pagination } from "./Pagination";
|
|
9
|
+
export declare const NamespaceListResponse: core.serialization.ObjectSchema<serializers.NamespaceListResponse.Raw, Rivet.NamespaceListResponse>;
|
|
10
|
+
export declare namespace NamespaceListResponse {
|
|
11
|
+
interface Raw {
|
|
12
|
+
namespaces: Namespace.Raw[];
|
|
13
|
+
pagination: Pagination.Raw;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { Namespace } from "./Namespace";
|
|
8
|
+
export declare const NamespacesCreateResponse: core.serialization.ObjectSchema<serializers.NamespacesCreateResponse.Raw, Rivet.NamespacesCreateResponse>;
|
|
9
|
+
export declare namespace NamespacesCreateResponse {
|
|
10
|
+
interface Raw {
|
|
11
|
+
namespace: Namespace.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const Pagination: core.serialization.ObjectSchema<serializers.Pagination.Raw, Rivet.Pagination>;
|
|
8
|
+
export declare namespace Pagination {
|
|
9
|
+
interface Raw {
|
|
10
|
+
cursor?: string | null;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RivetId: core.serialization.Schema<serializers.RivetId.Raw, Rivet.RivetId>;
|
|
8
|
+
export declare namespace RivetId {
|
|
9
|
+
type Raw = string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RivetId } from "./RivetId";
|
|
8
|
+
export declare const Runner: core.serialization.ObjectSchema<serializers.Runner.Raw, Rivet.Runner>;
|
|
9
|
+
export declare namespace Runner {
|
|
10
|
+
interface Raw {
|
|
11
|
+
create_ts: number;
|
|
12
|
+
datacenter: string;
|
|
13
|
+
drain_ts?: number | null;
|
|
14
|
+
key: string;
|
|
15
|
+
last_connected_ts?: number | null;
|
|
16
|
+
last_ping_ts: number;
|
|
17
|
+
last_rtt: number;
|
|
18
|
+
metadata?: Record<string, unknown> | null;
|
|
19
|
+
name: string;
|
|
20
|
+
namespace_id: RivetId.Raw;
|
|
21
|
+
remaining_slots: number;
|
|
22
|
+
runner_id: RivetId.Raw;
|
|
23
|
+
stop_ts?: number | null;
|
|
24
|
+
total_slots: number;
|
|
25
|
+
version: number;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigServerless } from "./RunnerConfigServerless";
|
|
8
|
+
export declare const RunnerConfig: core.serialization.ObjectSchema<serializers.RunnerConfig.Raw, Rivet.RunnerConfig>;
|
|
9
|
+
export declare namespace RunnerConfig {
|
|
10
|
+
interface Raw {
|
|
11
|
+
normal?: Record<string, unknown> | null;
|
|
12
|
+
serverless?: RunnerConfigServerless.Raw | null;
|
|
13
|
+
drain_on_version_upgrade?: boolean | null;
|
|
14
|
+
metadata?: unknown | null;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigKindNormal } from "./RunnerConfigKindNormal";
|
|
8
|
+
import { RunnerConfigKindServerless } from "./RunnerConfigKindServerless";
|
|
9
|
+
export declare const RunnerConfigKind: core.serialization.Schema<serializers.RunnerConfigKind.Raw, Rivet.RunnerConfigKind>;
|
|
10
|
+
export declare namespace RunnerConfigKind {
|
|
11
|
+
type Raw = RunnerConfigKindNormal.Raw | RunnerConfigKindServerless.Raw;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigKindNormal: core.serialization.ObjectSchema<serializers.RunnerConfigKindNormal.Raw, Rivet.RunnerConfigKindNormal>;
|
|
8
|
+
export declare namespace RunnerConfigKindNormal {
|
|
9
|
+
interface Raw {
|
|
10
|
+
normal: Record<string, unknown>;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigKindServerlessServerless } from "./RunnerConfigKindServerlessServerless";
|
|
8
|
+
export declare const RunnerConfigKindServerless: core.serialization.ObjectSchema<serializers.RunnerConfigKindServerless.Raw, Rivet.RunnerConfigKindServerless>;
|
|
9
|
+
export declare namespace RunnerConfigKindServerless {
|
|
10
|
+
interface Raw {
|
|
11
|
+
serverless: RunnerConfigKindServerlessServerless.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigKindServerlessServerless: core.serialization.ObjectSchema<serializers.RunnerConfigKindServerlessServerless.Raw, Rivet.RunnerConfigKindServerlessServerless>;
|
|
8
|
+
export declare namespace RunnerConfigKindServerlessServerless {
|
|
9
|
+
interface Raw {
|
|
10
|
+
headers?: Record<string, string> | null;
|
|
11
|
+
max_runners: number;
|
|
12
|
+
metadata_poll_interval?: number | null;
|
|
13
|
+
min_runners?: number | null;
|
|
14
|
+
request_lifespan: number;
|
|
15
|
+
runners_margin?: number | null;
|
|
16
|
+
slots_per_runner: number;
|
|
17
|
+
url: string;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfig } from "./RunnerConfig";
|
|
8
|
+
export declare const RunnerConfigResponse: core.serialization.ObjectSchema<serializers.RunnerConfigResponse.Raw, Rivet.RunnerConfigResponse>;
|
|
9
|
+
export declare namespace RunnerConfigResponse {
|
|
10
|
+
interface Raw extends RunnerConfig.Raw {
|
|
11
|
+
runner_pool_error?: Record<string, unknown> | null;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigServerless: core.serialization.ObjectSchema<serializers.RunnerConfigServerless.Raw, Rivet.RunnerConfigServerless>;
|
|
8
|
+
export declare namespace RunnerConfigServerless {
|
|
9
|
+
interface Raw {
|
|
10
|
+
headers?: Record<string, string> | null;
|
|
11
|
+
max_runners: number;
|
|
12
|
+
metadata_poll_interval?: number | null;
|
|
13
|
+
min_runners?: number | null;
|
|
14
|
+
request_lifespan: number;
|
|
15
|
+
runners_margin?: number | null;
|
|
16
|
+
slots_per_runner: number;
|
|
17
|
+
url: string;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigVariant: core.serialization.Schema<serializers.RunnerConfigVariant.Raw, Rivet.RunnerConfigVariant>;
|
|
8
|
+
export declare namespace RunnerConfigVariant {
|
|
9
|
+
type Raw = "serverless" | "normal";
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsDeleteResponse: core.serialization.Schema<serializers.RunnerConfigsDeleteResponse.Raw, Rivet.RunnerConfigsDeleteResponse>;
|
|
8
|
+
export declare namespace RunnerConfigsDeleteResponse {
|
|
9
|
+
type Raw = Record<string, unknown>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { Pagination } from "./Pagination";
|
|
8
|
+
import { RunnerConfigsListResponseRunnerConfigsValue } from "./RunnerConfigsListResponseRunnerConfigsValue";
|
|
9
|
+
export declare const RunnerConfigsListResponse: core.serialization.ObjectSchema<serializers.RunnerConfigsListResponse.Raw, Rivet.RunnerConfigsListResponse>;
|
|
10
|
+
export declare namespace RunnerConfigsListResponse {
|
|
11
|
+
interface Raw {
|
|
12
|
+
pagination: Pagination.Raw;
|
|
13
|
+
runner_configs: Record<string, RunnerConfigsListResponseRunnerConfigsValue.Raw>;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigResponse } from "./RunnerConfigResponse";
|
|
8
|
+
export declare const RunnerConfigsListResponseRunnerConfigsValue: core.serialization.ObjectSchema<serializers.RunnerConfigsListResponseRunnerConfigsValue.Raw, Rivet.RunnerConfigsListResponseRunnerConfigsValue>;
|
|
9
|
+
export declare namespace RunnerConfigsListResponseRunnerConfigsValue {
|
|
10
|
+
interface Raw {
|
|
11
|
+
datacenters: Record<string, RunnerConfigResponse.Raw>;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsRefreshMetadataRequestBody: core.serialization.Schema<serializers.RunnerConfigsRefreshMetadataRequestBody.Raw, Rivet.RunnerConfigsRefreshMetadataRequestBody>;
|
|
8
|
+
export declare namespace RunnerConfigsRefreshMetadataRequestBody {
|
|
9
|
+
type Raw = Record<string, unknown>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsRefreshMetadataResponse: core.serialization.Schema<serializers.RunnerConfigsRefreshMetadataResponse.Raw, Rivet.RunnerConfigsRefreshMetadataResponse>;
|
|
8
|
+
export declare namespace RunnerConfigsRefreshMetadataResponse {
|
|
9
|
+
type Raw = Record<string, unknown>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessHealthCheckResponseSuccess } from "./RunnerConfigsServerlessHealthCheckResponseSuccess";
|
|
8
|
+
import { RunnerConfigsServerlessHealthCheckResponseFailure } from "./RunnerConfigsServerlessHealthCheckResponseFailure";
|
|
9
|
+
export declare const RunnerConfigsServerlessHealthCheckResponse: core.serialization.Schema<serializers.RunnerConfigsServerlessHealthCheckResponse.Raw, Rivet.RunnerConfigsServerlessHealthCheckResponse>;
|
|
10
|
+
export declare namespace RunnerConfigsServerlessHealthCheckResponse {
|
|
11
|
+
type Raw = RunnerConfigsServerlessHealthCheckResponseSuccess.Raw | RunnerConfigsServerlessHealthCheckResponseFailure.Raw;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessHealthCheckResponseFailureFailure } from "./RunnerConfigsServerlessHealthCheckResponseFailureFailure";
|
|
8
|
+
export declare const RunnerConfigsServerlessHealthCheckResponseFailure: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessHealthCheckResponseFailure.Raw, Rivet.RunnerConfigsServerlessHealthCheckResponseFailure>;
|
|
9
|
+
export declare namespace RunnerConfigsServerlessHealthCheckResponseFailure {
|
|
10
|
+
interface Raw {
|
|
11
|
+
failure: RunnerConfigsServerlessHealthCheckResponseFailureFailure.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponseFailureFailure.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessMetadataError } from "./RunnerConfigsServerlessMetadataError";
|
|
8
|
+
export declare const RunnerConfigsServerlessHealthCheckResponseFailureFailure: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessHealthCheckResponseFailureFailure.Raw, Rivet.RunnerConfigsServerlessHealthCheckResponseFailureFailure>;
|
|
9
|
+
export declare namespace RunnerConfigsServerlessHealthCheckResponseFailureFailure {
|
|
10
|
+
interface Raw {
|
|
11
|
+
error: RunnerConfigsServerlessMetadataError.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessHealthCheckResponseSuccessSuccess } from "./RunnerConfigsServerlessHealthCheckResponseSuccessSuccess";
|
|
8
|
+
export declare const RunnerConfigsServerlessHealthCheckResponseSuccess: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessHealthCheckResponseSuccess.Raw, Rivet.RunnerConfigsServerlessHealthCheckResponseSuccess>;
|
|
9
|
+
export declare namespace RunnerConfigsServerlessHealthCheckResponseSuccess {
|
|
10
|
+
interface Raw {
|
|
11
|
+
success: RunnerConfigsServerlessHealthCheckResponseSuccessSuccess.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
package/types/serialization/types/RunnerConfigsServerlessHealthCheckResponseSuccessSuccess.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessHealthCheckResponseSuccessSuccess: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessHealthCheckResponseSuccessSuccess.Raw, Rivet.RunnerConfigsServerlessHealthCheckResponseSuccessSuccess>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessHealthCheckResponseSuccessSuccess {
|
|
9
|
+
interface Raw {
|
|
10
|
+
version: string;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessMetadataErrorInvalidRequest } from "./RunnerConfigsServerlessMetadataErrorInvalidRequest";
|
|
8
|
+
import { RunnerConfigsServerlessMetadataErrorRequestFailed } from "./RunnerConfigsServerlessMetadataErrorRequestFailed";
|
|
9
|
+
import { RunnerConfigsServerlessMetadataErrorRequestTimedOut } from "./RunnerConfigsServerlessMetadataErrorRequestTimedOut";
|
|
10
|
+
import { RunnerConfigsServerlessMetadataErrorNonSuccessStatus } from "./RunnerConfigsServerlessMetadataErrorNonSuccessStatus";
|
|
11
|
+
import { RunnerConfigsServerlessMetadataErrorInvalidResponseJson } from "./RunnerConfigsServerlessMetadataErrorInvalidResponseJson";
|
|
12
|
+
import { RunnerConfigsServerlessMetadataErrorInvalidResponseSchema } from "./RunnerConfigsServerlessMetadataErrorInvalidResponseSchema";
|
|
13
|
+
export declare const RunnerConfigsServerlessMetadataError: core.serialization.Schema<serializers.RunnerConfigsServerlessMetadataError.Raw, Rivet.RunnerConfigsServerlessMetadataError>;
|
|
14
|
+
export declare namespace RunnerConfigsServerlessMetadataError {
|
|
15
|
+
type Raw = RunnerConfigsServerlessMetadataErrorInvalidRequest.Raw | RunnerConfigsServerlessMetadataErrorRequestFailed.Raw | RunnerConfigsServerlessMetadataErrorRequestTimedOut.Raw | RunnerConfigsServerlessMetadataErrorNonSuccessStatus.Raw | RunnerConfigsServerlessMetadataErrorInvalidResponseJson.Raw | RunnerConfigsServerlessMetadataErrorInvalidResponseSchema.Raw;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessMetadataErrorInvalidRequest: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorInvalidRequest.Raw, Rivet.RunnerConfigsServerlessMetadataErrorInvalidRequest>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorInvalidRequest {
|
|
9
|
+
interface Raw {
|
|
10
|
+
invalid_request: Record<string, unknown>;
|
|
11
|
+
}
|
|
12
|
+
}
|
package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidResponseJson.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson } from "./RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson";
|
|
8
|
+
export declare const RunnerConfigsServerlessMetadataErrorInvalidResponseJson: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorInvalidResponseJson.Raw, Rivet.RunnerConfigsServerlessMetadataErrorInvalidResponseJson>;
|
|
9
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorInvalidResponseJson {
|
|
10
|
+
interface Raw {
|
|
11
|
+
invalid_response_json: RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson.Raw, Rivet.RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorInvalidResponseJsonInvalidResponseJson {
|
|
9
|
+
interface Raw {
|
|
10
|
+
body: string;
|
|
11
|
+
}
|
|
12
|
+
}
|
package/types/serialization/types/RunnerConfigsServerlessMetadataErrorInvalidResponseSchema.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema } from "./RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema";
|
|
8
|
+
export declare const RunnerConfigsServerlessMetadataErrorInvalidResponseSchema: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorInvalidResponseSchema.Raw, Rivet.RunnerConfigsServerlessMetadataErrorInvalidResponseSchema>;
|
|
9
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorInvalidResponseSchema {
|
|
10
|
+
interface Raw {
|
|
11
|
+
invalid_response_schema: RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema.Raw, Rivet.RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorInvalidResponseSchemaInvalidResponseSchema {
|
|
9
|
+
interface Raw {
|
|
10
|
+
runtime: string;
|
|
11
|
+
version: string;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus } from "./RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus";
|
|
8
|
+
export declare const RunnerConfigsServerlessMetadataErrorNonSuccessStatus: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorNonSuccessStatus.Raw, Rivet.RunnerConfigsServerlessMetadataErrorNonSuccessStatus>;
|
|
9
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorNonSuccessStatus {
|
|
10
|
+
interface Raw {
|
|
11
|
+
non_success_status: RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus.Raw, Rivet.RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorNonSuccessStatusNonSuccessStatus {
|
|
9
|
+
interface Raw {
|
|
10
|
+
body: string;
|
|
11
|
+
status_code: number;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessMetadataErrorRequestFailed: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorRequestFailed.Raw, Rivet.RunnerConfigsServerlessMetadataErrorRequestFailed>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorRequestFailed {
|
|
9
|
+
interface Raw {
|
|
10
|
+
request_failed: Record<string, unknown>;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsServerlessMetadataErrorRequestTimedOut: core.serialization.ObjectSchema<serializers.RunnerConfigsServerlessMetadataErrorRequestTimedOut.Raw, Rivet.RunnerConfigsServerlessMetadataErrorRequestTimedOut>;
|
|
8
|
+
export declare namespace RunnerConfigsServerlessMetadataErrorRequestTimedOut {
|
|
9
|
+
interface Raw {
|
|
10
|
+
request_timed_out: Record<string, unknown>;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const RunnerConfigsUpsertResponse: core.serialization.ObjectSchema<serializers.RunnerConfigsUpsertResponse.Raw, Rivet.RunnerConfigsUpsertResponse>;
|
|
8
|
+
export declare namespace RunnerConfigsUpsertResponse {
|
|
9
|
+
interface Raw {
|
|
10
|
+
endpoint_config_changed: boolean;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { Pagination } from "./Pagination";
|
|
8
|
+
export declare const RunnersListNamesResponse: core.serialization.ObjectSchema<serializers.RunnersListNamesResponse.Raw, Rivet.RunnersListNamesResponse>;
|
|
9
|
+
export declare namespace RunnersListNamesResponse {
|
|
10
|
+
interface Raw {
|
|
11
|
+
names: string[];
|
|
12
|
+
pagination: Pagination.Raw;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Rivet from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { Pagination } from "./Pagination";
|
|
8
|
+
import { Runner } from "./Runner";
|
|
9
|
+
export declare const RunnersListResponse: core.serialization.ObjectSchema<serializers.RunnersListResponse.Raw, Rivet.RunnersListResponse>;
|
|
10
|
+
export declare namespace RunnersListResponse {
|
|
11
|
+
interface Raw {
|
|
12
|
+
pagination: Pagination.Raw;
|
|
13
|
+
runners: Runner.Raw[];
|
|
14
|
+
}
|
|
15
|
+
}
|