@rivetkit/engine-api-full 25.5.3 → 25.7.1-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/dist/browser/cjs/index.js +340 -44
- package/dist/browser/cjs/serialization.js +42 -30
- package/dist/browser/esm/index.js +340 -44
- package/dist/browser/esm/serialization.js +42 -30
- package/dist/node/index.js +340 -44
- package/dist/node/serialization.js +50 -36
- package/package.json +1 -1
- package/types/Client.d.ts +3 -0
- package/types/api/resources/index.d.ts +2 -0
- package/types/api/resources/namespaces/client/requests/NamespacesListRequest.d.ts +2 -0
- package/types/api/resources/namespacesRunnerConfigs/client/Client.d.ts +73 -0
- package/types/api/resources/namespacesRunnerConfigs/client/index.d.ts +1 -0
- package/types/api/resources/namespacesRunnerConfigs/client/requests/NamespacesRunnerConfigsListRequest.d.ts +13 -0
- package/types/api/resources/namespacesRunnerConfigs/client/requests/index.d.ts +1 -0
- package/types/api/resources/namespacesRunnerConfigs/index.d.ts +1 -0
- package/types/api/types/ActorLifecycle.d.ts +7 -0
- package/types/api/types/Datacenter.d.ts +0 -1
- package/types/api/types/NamespacesRunnerConfig.d.ts +7 -0
- package/types/api/types/NamespacesRunnerConfigServerless.d.ts +12 -0
- package/types/api/types/NamespacesRunnerConfigVariant.d.ts +4 -0
- package/types/api/types/NamespacesRunnerConfigsDeleteResponse.d.ts +4 -0
- package/types/api/types/NamespacesRunnerConfigsGetResponse.d.ts +7 -0
- package/types/api/types/NamespacesRunnerConfigsListResponse.d.ts +8 -0
- package/types/api/types/NamespacesRunnerConfigsUpsertRequest.d.ts +5 -0
- package/types/api/types/NamespacesRunnerConfigsUpsertResponse.d.ts +4 -0
- package/types/api/types/Runner.d.ts +0 -3
- package/types/api/types/index.d.ts +8 -6
- package/types/serialization/types/ActorLifecycle.d.ts +13 -0
- package/types/serialization/types/Datacenter.d.ts +0 -1
- package/types/serialization/types/NamespacesRunnerConfig.d.ts +13 -0
- package/types/serialization/types/NamespacesRunnerConfigServerless.d.ts +17 -0
- package/types/serialization/types/NamespacesRunnerConfigVariant.d.ts +10 -0
- package/types/serialization/types/NamespacesRunnerConfigsDeleteResponse.d.ts +10 -0
- package/types/serialization/types/NamespacesRunnerConfigsGetResponse.d.ts +13 -0
- package/types/serialization/types/NamespacesRunnerConfigsListResponse.d.ts +15 -0
- package/types/serialization/types/NamespacesRunnerConfigsUpsertRequest.d.ts +11 -0
- package/types/serialization/types/NamespacesRunnerConfigsUpsertResponse.d.ts +10 -0
- package/types/serialization/types/Runner.d.ts +0 -6
- package/types/serialization/types/index.d.ts +8 -6
package/package.json
CHANGED
package/types/Client.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import * as core from "./core";
|
|
|
5
5
|
import * as Rivet from "./api/index";
|
|
6
6
|
import { Datacenters } from "./api/resources/datacenters/client/Client";
|
|
7
7
|
import { Namespaces } from "./api/resources/namespaces/client/Client";
|
|
8
|
+
import { NamespacesRunnerConfigs } from "./api/resources/namespacesRunnerConfigs/client/Client";
|
|
8
9
|
import { Runners } from "./api/resources/runners/client/Client";
|
|
9
10
|
export declare namespace RivetClient {
|
|
10
11
|
interface Options {
|
|
@@ -28,10 +29,12 @@ export declare class RivetClient {
|
|
|
28
29
|
protected readonly _options: RivetClient.Options;
|
|
29
30
|
protected _datacenters: Datacenters | undefined;
|
|
30
31
|
protected _namespaces: Namespaces | undefined;
|
|
32
|
+
protected _namespacesRunnerConfigs: NamespacesRunnerConfigs | undefined;
|
|
31
33
|
protected _runners: Runners | undefined;
|
|
32
34
|
constructor(_options: RivetClient.Options);
|
|
33
35
|
get datacenters(): Datacenters;
|
|
34
36
|
get namespaces(): Namespaces;
|
|
37
|
+
get namespacesRunnerConfigs(): NamespacesRunnerConfigs;
|
|
35
38
|
get runners(): Runners;
|
|
36
39
|
/**
|
|
37
40
|
* **If key is some & `include_destroyed` is false**
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * as datacenters from "./datacenters";
|
|
2
2
|
export * as namespaces from "./namespaces";
|
|
3
|
+
export * as namespacesRunnerConfigs from "./namespacesRunnerConfigs";
|
|
3
4
|
export * as runners from "./runners";
|
|
4
5
|
export * from "./namespaces/client/requests";
|
|
6
|
+
export * from "./namespacesRunnerConfigs/client/requests";
|
|
5
7
|
export * from "./runners/client/requests";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
|
+
import * as Rivet from "../../../../index";
|
|
4
5
|
/**
|
|
5
6
|
* @example
|
|
6
7
|
* {}
|
|
@@ -9,4 +10,5 @@ export interface NamespacesListRequest {
|
|
|
9
10
|
limit?: number;
|
|
10
11
|
cursor?: string;
|
|
11
12
|
name?: string;
|
|
13
|
+
namespaceId?: Rivet.RivetId | Rivet.RivetId[];
|
|
12
14
|
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as core from "../../../../core";
|
|
5
|
+
import * as Rivet from "../../../index";
|
|
6
|
+
export declare namespace NamespacesRunnerConfigs {
|
|
7
|
+
interface Options {
|
|
8
|
+
environment: core.Supplier<string>;
|
|
9
|
+
/** Specify a custom URL to connect the client to. */
|
|
10
|
+
baseUrl?: core.Supplier<string>;
|
|
11
|
+
fetcher?: core.FetchFunction;
|
|
12
|
+
}
|
|
13
|
+
interface RequestOptions {
|
|
14
|
+
/** The maximum time to wait for a response in seconds. */
|
|
15
|
+
timeoutInSeconds?: number;
|
|
16
|
+
/** The number of times to retry the request. Defaults to 2. */
|
|
17
|
+
maxRetries?: number;
|
|
18
|
+
/** A hook to abort the request. */
|
|
19
|
+
abortSignal?: AbortSignal;
|
|
20
|
+
/** Additional headers to include in the request. */
|
|
21
|
+
headers?: Record<string, string>;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
export declare class NamespacesRunnerConfigs {
|
|
25
|
+
protected readonly _options: NamespacesRunnerConfigs.Options;
|
|
26
|
+
constructor(_options: NamespacesRunnerConfigs.Options);
|
|
27
|
+
/**
|
|
28
|
+
* @param {Rivet.RivetId} namespaceId
|
|
29
|
+
* @param {Rivet.NamespacesRunnerConfigsListRequest} request
|
|
30
|
+
* @param {NamespacesRunnerConfigs.RequestOptions} requestOptions - Request-specific configuration.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* await client.namespacesRunnerConfigs.list("namespace_id")
|
|
34
|
+
*/
|
|
35
|
+
list(namespaceId: Rivet.RivetId, request?: Rivet.NamespacesRunnerConfigsListRequest, requestOptions?: NamespacesRunnerConfigs.RequestOptions): Promise<Rivet.NamespacesRunnerConfigsListResponse>;
|
|
36
|
+
/**
|
|
37
|
+
* @param {Rivet.RivetId} namespaceId
|
|
38
|
+
* @param {string} runnerName
|
|
39
|
+
* @param {NamespacesRunnerConfigs.RequestOptions} requestOptions - Request-specific configuration.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* await client.namespacesRunnerConfigs.get("namespace_id", "runner_name")
|
|
43
|
+
*/
|
|
44
|
+
get(namespaceId: Rivet.RivetId, runnerName: string, requestOptions?: NamespacesRunnerConfigs.RequestOptions): Promise<Rivet.NamespacesRunnerConfigsGetResponse>;
|
|
45
|
+
/**
|
|
46
|
+
* @param {Rivet.RivetId} namespaceId
|
|
47
|
+
* @param {string} runnerName
|
|
48
|
+
* @param {Rivet.NamespacesRunnerConfigsUpsertRequest} request
|
|
49
|
+
* @param {NamespacesRunnerConfigs.RequestOptions} requestOptions - Request-specific configuration.
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* await client.namespacesRunnerConfigs.upsert("namespace_id", "runner_name", {
|
|
53
|
+
* serverless: {
|
|
54
|
+
* maxRunners: 1,
|
|
55
|
+
* minRunners: 1,
|
|
56
|
+
* requestLifespan: 1,
|
|
57
|
+
* runnersMargin: 1,
|
|
58
|
+
* slotsPerRunner: 1,
|
|
59
|
+
* url: "url"
|
|
60
|
+
* }
|
|
61
|
+
* })
|
|
62
|
+
*/
|
|
63
|
+
upsert(namespaceId: Rivet.RivetId, runnerName: string, request: Rivet.NamespacesRunnerConfigsUpsertRequest, requestOptions?: NamespacesRunnerConfigs.RequestOptions): Promise<Rivet.NamespacesRunnerConfigsUpsertResponse>;
|
|
64
|
+
/**
|
|
65
|
+
* @param {Rivet.RivetId} namespaceId
|
|
66
|
+
* @param {string} runnerName
|
|
67
|
+
* @param {NamespacesRunnerConfigs.RequestOptions} requestOptions - Request-specific configuration.
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* await client.namespacesRunnerConfigs.delete("namespace_id", "runner_name")
|
|
71
|
+
*/
|
|
72
|
+
delete(namespaceId: Rivet.RivetId, runnerName: string, requestOptions?: NamespacesRunnerConfigs.RequestOptions): Promise<Rivet.NamespacesRunnerConfigsDeleteResponse>;
|
|
73
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./requests";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Rivet from "../../../../index";
|
|
5
|
+
/**
|
|
6
|
+
* @example
|
|
7
|
+
* {}
|
|
8
|
+
*/
|
|
9
|
+
export interface NamespacesRunnerConfigsListRequest {
|
|
10
|
+
limit?: number;
|
|
11
|
+
cursor?: string;
|
|
12
|
+
variant?: Rivet.NamespacesRunnerConfigVariant;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type NamespacesRunnerConfigsListRequest } from "./NamespacesRunnerConfigsListRequest";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./client";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export interface NamespacesRunnerConfigServerless {
|
|
5
|
+
maxRunners: number;
|
|
6
|
+
minRunners: number;
|
|
7
|
+
/** Seconds. */
|
|
8
|
+
requestLifespan: number;
|
|
9
|
+
runnersMargin: number;
|
|
10
|
+
slotsPerRunner: number;
|
|
11
|
+
url: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Rivet from "../index";
|
|
5
|
+
export interface NamespacesRunnerConfigsListResponse {
|
|
6
|
+
pagination: Rivet.Pagination;
|
|
7
|
+
runnerConfigs: Record<string, Rivet.NamespacesRunnerConfig>;
|
|
8
|
+
}
|
|
@@ -3,9 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import * as Rivet from "../index";
|
|
5
5
|
export interface Runner {
|
|
6
|
-
addressesHttp: Rivet.StringHttpAddressHashableMap;
|
|
7
|
-
addressesTcp: Rivet.StringTcpAddressHashableMap;
|
|
8
|
-
addressesUdp: Rivet.StringUdpAddressHashableMap;
|
|
9
6
|
createTs: number;
|
|
10
7
|
datacenter: string;
|
|
11
8
|
drainTs?: number;
|
|
@@ -15,15 +15,17 @@ export * from "./Namespace";
|
|
|
15
15
|
export * from "./NamespacesCreateResponse";
|
|
16
16
|
export * from "./NamespacesGetResponse";
|
|
17
17
|
export * from "./NamespacesListResponse";
|
|
18
|
+
export * from "./NamespacesRunnerConfigServerless";
|
|
19
|
+
export * from "./NamespacesRunnerConfig";
|
|
20
|
+
export * from "./NamespacesRunnerConfigVariant";
|
|
21
|
+
export * from "./NamespacesRunnerConfigsDeleteResponse";
|
|
22
|
+
export * from "./NamespacesRunnerConfigsGetResponse";
|
|
23
|
+
export * from "./NamespacesRunnerConfigsListResponse";
|
|
24
|
+
export * from "./NamespacesRunnerConfigsUpsertRequest";
|
|
25
|
+
export * from "./NamespacesRunnerConfigsUpsertResponse";
|
|
18
26
|
export * from "./Pagination";
|
|
19
27
|
export * from "./RivetId";
|
|
20
28
|
export * from "./Runner";
|
|
21
29
|
export * from "./RunnersGetResponse";
|
|
22
30
|
export * from "./RunnersListNamesResponse";
|
|
23
31
|
export * from "./RunnersListResponse";
|
|
24
|
-
export * from "./StringHttpAddressHashableMapValue";
|
|
25
|
-
export * from "./StringHttpAddressHashableMap";
|
|
26
|
-
export * from "./StringTcpAddressHashableMapValue";
|
|
27
|
-
export * from "./StringTcpAddressHashableMap";
|
|
28
|
-
export * from "./StringUdpAddressHashableMapValue";
|
|
29
|
-
export * from "./StringUdpAddressHashableMap";
|
|
@@ -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 ActorLifecycle: core.serialization.ObjectSchema<serializers.ActorLifecycle.Raw, Rivet.ActorLifecycle>;
|
|
8
|
+
export declare namespace ActorLifecycle {
|
|
9
|
+
interface Raw {
|
|
10
|
+
durable: boolean;
|
|
11
|
+
kill_timeout_ms: number;
|
|
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 { NamespacesRunnerConfigServerless } from "./NamespacesRunnerConfigServerless";
|
|
8
|
+
export declare const NamespacesRunnerConfig: core.serialization.ObjectSchema<serializers.NamespacesRunnerConfig.Raw, Rivet.NamespacesRunnerConfig>;
|
|
9
|
+
export declare namespace NamespacesRunnerConfig {
|
|
10
|
+
interface Raw {
|
|
11
|
+
serverless: NamespacesRunnerConfigServerless.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 NamespacesRunnerConfigServerless: core.serialization.ObjectSchema<serializers.NamespacesRunnerConfigServerless.Raw, Rivet.NamespacesRunnerConfigServerless>;
|
|
8
|
+
export declare namespace NamespacesRunnerConfigServerless {
|
|
9
|
+
interface Raw {
|
|
10
|
+
max_runners: number;
|
|
11
|
+
min_runners: number;
|
|
12
|
+
request_lifespan: number;
|
|
13
|
+
runners_margin: number;
|
|
14
|
+
slots_per_runner: number;
|
|
15
|
+
url: string;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -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 NamespacesRunnerConfigVariant: core.serialization.Schema<serializers.NamespacesRunnerConfigVariant.Raw, Rivet.NamespacesRunnerConfigVariant>;
|
|
8
|
+
export declare namespace NamespacesRunnerConfigVariant {
|
|
9
|
+
type Raw = "serverless";
|
|
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 NamespacesRunnerConfigsDeleteResponse: core.serialization.Schema<serializers.NamespacesRunnerConfigsDeleteResponse.Raw, Rivet.NamespacesRunnerConfigsDeleteResponse>;
|
|
8
|
+
export declare namespace NamespacesRunnerConfigsDeleteResponse {
|
|
9
|
+
type Raw = Record<string, unknown>;
|
|
10
|
+
}
|
|
@@ -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 { NamespacesRunnerConfig } from "./NamespacesRunnerConfig";
|
|
8
|
+
export declare const NamespacesRunnerConfigsGetResponse: core.serialization.ObjectSchema<serializers.NamespacesRunnerConfigsGetResponse.Raw, Rivet.NamespacesRunnerConfigsGetResponse>;
|
|
9
|
+
export declare namespace NamespacesRunnerConfigsGetResponse {
|
|
10
|
+
interface Raw {
|
|
11
|
+
runner_config: NamespacesRunnerConfig.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -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 { NamespacesRunnerConfig } from "./NamespacesRunnerConfig";
|
|
9
|
+
export declare const NamespacesRunnerConfigsListResponse: core.serialization.ObjectSchema<serializers.NamespacesRunnerConfigsListResponse.Raw, Rivet.NamespacesRunnerConfigsListResponse>;
|
|
10
|
+
export declare namespace NamespacesRunnerConfigsListResponse {
|
|
11
|
+
interface Raw {
|
|
12
|
+
pagination: Pagination.Raw;
|
|
13
|
+
runner_configs: Record<string, NamespacesRunnerConfig.Raw>;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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 { NamespacesRunnerConfig } from "./NamespacesRunnerConfig";
|
|
8
|
+
export declare const NamespacesRunnerConfigsUpsertRequest: core.serialization.ObjectSchema<serializers.NamespacesRunnerConfigsUpsertRequest.Raw, Rivet.NamespacesRunnerConfigsUpsertRequest>;
|
|
9
|
+
export declare namespace NamespacesRunnerConfigsUpsertRequest {
|
|
10
|
+
type Raw = NamespacesRunnerConfig.Raw;
|
|
11
|
+
}
|
|
@@ -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 NamespacesRunnerConfigsUpsertResponse: core.serialization.Schema<serializers.NamespacesRunnerConfigsUpsertResponse.Raw, Rivet.NamespacesRunnerConfigsUpsertResponse>;
|
|
8
|
+
export declare namespace NamespacesRunnerConfigsUpsertResponse {
|
|
9
|
+
type Raw = Record<string, unknown>;
|
|
10
|
+
}
|
|
@@ -4,16 +4,10 @@
|
|
|
4
4
|
import * as serializers from "../index";
|
|
5
5
|
import * as Rivet from "../../api/index";
|
|
6
6
|
import * as core from "../../core";
|
|
7
|
-
import { StringHttpAddressHashableMap } from "./StringHttpAddressHashableMap";
|
|
8
|
-
import { StringTcpAddressHashableMap } from "./StringTcpAddressHashableMap";
|
|
9
|
-
import { StringUdpAddressHashableMap } from "./StringUdpAddressHashableMap";
|
|
10
7
|
import { RivetId } from "./RivetId";
|
|
11
8
|
export declare const Runner: core.serialization.ObjectSchema<serializers.Runner.Raw, Rivet.Runner>;
|
|
12
9
|
export declare namespace Runner {
|
|
13
10
|
interface Raw {
|
|
14
|
-
addresses_http: StringHttpAddressHashableMap.Raw;
|
|
15
|
-
addresses_tcp: StringTcpAddressHashableMap.Raw;
|
|
16
|
-
addresses_udp: StringUdpAddressHashableMap.Raw;
|
|
17
11
|
create_ts: number;
|
|
18
12
|
datacenter: string;
|
|
19
13
|
drain_ts?: number | null;
|
|
@@ -15,15 +15,17 @@ export * from "./Namespace";
|
|
|
15
15
|
export * from "./NamespacesCreateResponse";
|
|
16
16
|
export * from "./NamespacesGetResponse";
|
|
17
17
|
export * from "./NamespacesListResponse";
|
|
18
|
+
export * from "./NamespacesRunnerConfigServerless";
|
|
19
|
+
export * from "./NamespacesRunnerConfig";
|
|
20
|
+
export * from "./NamespacesRunnerConfigVariant";
|
|
21
|
+
export * from "./NamespacesRunnerConfigsDeleteResponse";
|
|
22
|
+
export * from "./NamespacesRunnerConfigsGetResponse";
|
|
23
|
+
export * from "./NamespacesRunnerConfigsListResponse";
|
|
24
|
+
export * from "./NamespacesRunnerConfigsUpsertRequest";
|
|
25
|
+
export * from "./NamespacesRunnerConfigsUpsertResponse";
|
|
18
26
|
export * from "./Pagination";
|
|
19
27
|
export * from "./RivetId";
|
|
20
28
|
export * from "./Runner";
|
|
21
29
|
export * from "./RunnersGetResponse";
|
|
22
30
|
export * from "./RunnersListNamesResponse";
|
|
23
31
|
export * from "./RunnersListResponse";
|
|
24
|
-
export * from "./StringHttpAddressHashableMapValue";
|
|
25
|
-
export * from "./StringHttpAddressHashableMap";
|
|
26
|
-
export * from "./StringTcpAddressHashableMapValue";
|
|
27
|
-
export * from "./StringTcpAddressHashableMap";
|
|
28
|
-
export * from "./StringUdpAddressHashableMapValue";
|
|
29
|
-
export * from "./StringUdpAddressHashableMap";
|