@rivetkit/engine-api-full 0.0.0-pr.4614.822b57f → 0.0.0-pr.4618.1345ecc

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.
@@ -2353,9 +2353,9 @@ __export(serialization_exports, {
2353
2353
  ActorsKvGetResponse: () => ActorsKvGetResponse,
2354
2354
  ActorsListNamesResponse: () => ActorsListNamesResponse,
2355
2355
  ActorsListResponse: () => ActorsListResponse,
2356
- ActorsRescheduleBody: () => ActorsRescheduleBody,
2356
+ ActorsRescheduleRequestBody: () => ActorsRescheduleRequestBody,
2357
2357
  ActorsRescheduleResponse: () => ActorsRescheduleResponse,
2358
- ActorsSleepBody: () => ActorsSleepBody,
2358
+ ActorsSleepRequestBody: () => ActorsSleepRequestBody,
2359
2359
  ActorsSleepResponse: () => ActorsSleepResponse,
2360
2360
  CrashPolicy: () => CrashPolicy2,
2361
2361
  Datacenter: () => Datacenter,
@@ -2477,14 +2477,14 @@ var ActorsListResponse = schemas_exports.object({
2477
2477
  pagination: Pagination
2478
2478
  });
2479
2479
 
2480
- // src/serialization/types/ActorsRescheduleBody.ts
2481
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2480
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
2481
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2482
2482
 
2483
2483
  // src/serialization/types/ActorsRescheduleResponse.ts
2484
2484
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2485
2485
 
2486
- // src/serialization/types/ActorsSleepBody.ts
2487
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2486
+ // src/serialization/types/ActorsSleepRequestBody.ts
2487
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2488
2488
 
2489
2489
  // src/serialization/types/ActorsSleepResponse.ts
2490
2490
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -4053,7 +4053,7 @@ var RivetClient = class {
4053
4053
  contentType: "application/json",
4054
4054
  queryParameters: _queryParams,
4055
4055
  requestType: "json",
4056
- body: ActorsRescheduleBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4056
+ body: ActorsRescheduleRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4057
4057
  timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4058
4058
  maxRetries: requestOptions?.maxRetries,
4059
4059
  abortSignal: requestOptions?.abortSignal
@@ -4120,7 +4120,7 @@ var RivetClient = class {
4120
4120
  contentType: "application/json",
4121
4121
  queryParameters: _queryParams,
4122
4122
  requestType: "json",
4123
- body: ActorsSleepBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4123
+ body: ActorsSleepRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4124
4124
  timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4125
4125
  maxRetries: requestOptions?.maxRetries,
4126
4126
  abortSignal: requestOptions?.abortSignal
@@ -40,9 +40,9 @@ __export(serialization_exports, {
40
40
  ActorsKvGetResponse: () => ActorsKvGetResponse,
41
41
  ActorsListNamesResponse: () => ActorsListNamesResponse,
42
42
  ActorsListResponse: () => ActorsListResponse,
43
- ActorsRescheduleBody: () => ActorsRescheduleBody,
43
+ ActorsRescheduleRequestBody: () => ActorsRescheduleRequestBody,
44
44
  ActorsRescheduleResponse: () => ActorsRescheduleResponse,
45
- ActorsSleepBody: () => ActorsSleepBody,
45
+ ActorsSleepRequestBody: () => ActorsSleepRequestBody,
46
46
  ActorsSleepResponse: () => ActorsSleepResponse,
47
47
  CrashPolicy: () => CrashPolicy,
48
48
  Datacenter: () => Datacenter,
@@ -1627,14 +1627,14 @@ var ActorsListResponse = schemas_exports.object({
1627
1627
  pagination: Pagination
1628
1628
  });
1629
1629
 
1630
- // src/serialization/types/ActorsRescheduleBody.ts
1631
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1630
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
1631
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1632
1632
 
1633
1633
  // src/serialization/types/ActorsRescheduleResponse.ts
1634
1634
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1635
1635
 
1636
- // src/serialization/types/ActorsSleepBody.ts
1637
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1636
+ // src/serialization/types/ActorsSleepRequestBody.ts
1637
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1638
1638
 
1639
1639
  // src/serialization/types/ActorsSleepResponse.ts
1640
1640
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -2320,9 +2320,9 @@ __export(serialization_exports, {
2320
2320
  ActorsKvGetResponse: () => ActorsKvGetResponse,
2321
2321
  ActorsListNamesResponse: () => ActorsListNamesResponse,
2322
2322
  ActorsListResponse: () => ActorsListResponse,
2323
- ActorsRescheduleBody: () => ActorsRescheduleBody,
2323
+ ActorsRescheduleRequestBody: () => ActorsRescheduleRequestBody,
2324
2324
  ActorsRescheduleResponse: () => ActorsRescheduleResponse,
2325
- ActorsSleepBody: () => ActorsSleepBody,
2325
+ ActorsSleepRequestBody: () => ActorsSleepRequestBody,
2326
2326
  ActorsSleepResponse: () => ActorsSleepResponse,
2327
2327
  CrashPolicy: () => CrashPolicy2,
2328
2328
  Datacenter: () => Datacenter,
@@ -2444,14 +2444,14 @@ var ActorsListResponse = schemas_exports.object({
2444
2444
  pagination: Pagination
2445
2445
  });
2446
2446
 
2447
- // src/serialization/types/ActorsRescheduleBody.ts
2448
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2447
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
2448
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2449
2449
 
2450
2450
  // src/serialization/types/ActorsRescheduleResponse.ts
2451
2451
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2452
2452
 
2453
- // src/serialization/types/ActorsSleepBody.ts
2454
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2453
+ // src/serialization/types/ActorsSleepRequestBody.ts
2454
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2455
2455
 
2456
2456
  // src/serialization/types/ActorsSleepResponse.ts
2457
2457
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -4020,7 +4020,7 @@ var RivetClient = class {
4020
4020
  contentType: "application/json",
4021
4021
  queryParameters: _queryParams,
4022
4022
  requestType: "json",
4023
- body: ActorsRescheduleBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4023
+ body: ActorsRescheduleRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4024
4024
  timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4025
4025
  maxRetries: requestOptions?.maxRetries,
4026
4026
  abortSignal: requestOptions?.abortSignal
@@ -4087,7 +4087,7 @@ var RivetClient = class {
4087
4087
  contentType: "application/json",
4088
4088
  queryParameters: _queryParams,
4089
4089
  requestType: "json",
4090
- body: ActorsSleepBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4090
+ body: ActorsSleepRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4091
4091
  timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4092
4092
  maxRetries: requestOptions?.maxRetries,
4093
4093
  abortSignal: requestOptions?.abortSignal
@@ -1533,14 +1533,14 @@ var ActorsListResponse = schemas_exports.object({
1533
1533
  pagination: Pagination
1534
1534
  });
1535
1535
 
1536
- // src/serialization/types/ActorsRescheduleBody.ts
1537
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1536
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
1537
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1538
1538
 
1539
1539
  // src/serialization/types/ActorsRescheduleResponse.ts
1540
1540
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1541
1541
 
1542
- // src/serialization/types/ActorsSleepBody.ts
1543
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1542
+ // src/serialization/types/ActorsSleepRequestBody.ts
1543
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1544
1544
 
1545
1545
  // src/serialization/types/ActorsSleepResponse.ts
1546
1546
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -1910,9 +1910,9 @@ export {
1910
1910
  ActorsKvGetResponse,
1911
1911
  ActorsListNamesResponse,
1912
1912
  ActorsListResponse,
1913
- ActorsRescheduleBody,
1913
+ ActorsRescheduleRequestBody,
1914
1914
  ActorsRescheduleResponse,
1915
- ActorsSleepBody,
1915
+ ActorsSleepRequestBody,
1916
1916
  ActorsSleepResponse,
1917
1917
  CrashPolicy,
1918
1918
  Datacenter,
@@ -2358,9 +2358,9 @@ __export(serialization_exports, {
2358
2358
  ActorsKvGetResponse: () => ActorsKvGetResponse,
2359
2359
  ActorsListNamesResponse: () => ActorsListNamesResponse,
2360
2360
  ActorsListResponse: () => ActorsListResponse,
2361
- ActorsRescheduleBody: () => ActorsRescheduleBody,
2361
+ ActorsRescheduleRequestBody: () => ActorsRescheduleRequestBody,
2362
2362
  ActorsRescheduleResponse: () => ActorsRescheduleResponse,
2363
- ActorsSleepBody: () => ActorsSleepBody,
2363
+ ActorsSleepRequestBody: () => ActorsSleepRequestBody,
2364
2364
  ActorsSleepResponse: () => ActorsSleepResponse,
2365
2365
  CrashPolicy: () => CrashPolicy2,
2366
2366
  Datacenter: () => Datacenter,
@@ -2482,14 +2482,14 @@ var ActorsListResponse = schemas_exports.object({
2482
2482
  pagination: Pagination
2483
2483
  });
2484
2484
 
2485
- // src/serialization/types/ActorsRescheduleBody.ts
2486
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2485
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
2486
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2487
2487
 
2488
2488
  // src/serialization/types/ActorsRescheduleResponse.ts
2489
2489
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2490
2490
 
2491
- // src/serialization/types/ActorsSleepBody.ts
2492
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2491
+ // src/serialization/types/ActorsSleepRequestBody.ts
2492
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2493
2493
 
2494
2494
  // src/serialization/types/ActorsSleepResponse.ts
2495
2495
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -4058,7 +4058,7 @@ var RivetClient = class {
4058
4058
  contentType: "application/json",
4059
4059
  queryParameters: _queryParams,
4060
4060
  requestType: "json",
4061
- body: ActorsRescheduleBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4061
+ body: ActorsRescheduleRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4062
4062
  timeoutMs: (requestOptions == null ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4063
4063
  maxRetries: requestOptions == null ? void 0 : requestOptions.maxRetries,
4064
4064
  abortSignal: requestOptions == null ? void 0 : requestOptions.abortSignal
@@ -4125,7 +4125,7 @@ var RivetClient = class {
4125
4125
  contentType: "application/json",
4126
4126
  queryParameters: _queryParams,
4127
4127
  requestType: "json",
4128
- body: ActorsSleepBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4128
+ body: ActorsSleepRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4129
4129
  timeoutMs: (requestOptions == null ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4130
4130
  maxRetries: requestOptions == null ? void 0 : requestOptions.maxRetries,
4131
4131
  abortSignal: requestOptions == null ? void 0 : requestOptions.abortSignal
@@ -40,9 +40,9 @@ __export(serialization_exports, {
40
40
  ActorsKvGetResponse: () => ActorsKvGetResponse,
41
41
  ActorsListNamesResponse: () => ActorsListNamesResponse,
42
42
  ActorsListResponse: () => ActorsListResponse,
43
- ActorsRescheduleBody: () => ActorsRescheduleBody,
43
+ ActorsRescheduleRequestBody: () => ActorsRescheduleRequestBody,
44
44
  ActorsRescheduleResponse: () => ActorsRescheduleResponse,
45
- ActorsSleepBody: () => ActorsSleepBody,
45
+ ActorsSleepRequestBody: () => ActorsSleepRequestBody,
46
46
  ActorsSleepResponse: () => ActorsSleepResponse,
47
47
  CrashPolicy: () => CrashPolicy,
48
48
  Datacenter: () => Datacenter,
@@ -1628,14 +1628,14 @@ var ActorsListResponse = schemas_exports.object({
1628
1628
  pagination: Pagination
1629
1629
  });
1630
1630
 
1631
- // src/serialization/types/ActorsRescheduleBody.ts
1632
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1631
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
1632
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1633
1633
 
1634
1634
  // src/serialization/types/ActorsRescheduleResponse.ts
1635
1635
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1636
1636
 
1637
- // src/serialization/types/ActorsSleepBody.ts
1638
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1637
+ // src/serialization/types/ActorsSleepRequestBody.ts
1638
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1639
1639
 
1640
1640
  // src/serialization/types/ActorsSleepResponse.ts
1641
1641
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -2006,9 +2006,9 @@ var NamespacesCreateRequest = schemas_exports.object({
2006
2006
  ActorsKvGetResponse,
2007
2007
  ActorsListNamesResponse,
2008
2008
  ActorsListResponse,
2009
- ActorsRescheduleBody,
2009
+ ActorsRescheduleRequestBody,
2010
2010
  ActorsRescheduleResponse,
2011
- ActorsSleepBody,
2011
+ ActorsSleepRequestBody,
2012
2012
  ActorsSleepResponse,
2013
2013
  CrashPolicy,
2014
2014
  Datacenter,
@@ -2325,9 +2325,9 @@ __export(serialization_exports, {
2325
2325
  ActorsKvGetResponse: () => ActorsKvGetResponse,
2326
2326
  ActorsListNamesResponse: () => ActorsListNamesResponse,
2327
2327
  ActorsListResponse: () => ActorsListResponse,
2328
- ActorsRescheduleBody: () => ActorsRescheduleBody,
2328
+ ActorsRescheduleRequestBody: () => ActorsRescheduleRequestBody,
2329
2329
  ActorsRescheduleResponse: () => ActorsRescheduleResponse,
2330
- ActorsSleepBody: () => ActorsSleepBody,
2330
+ ActorsSleepRequestBody: () => ActorsSleepRequestBody,
2331
2331
  ActorsSleepResponse: () => ActorsSleepResponse,
2332
2332
  CrashPolicy: () => CrashPolicy2,
2333
2333
  Datacenter: () => Datacenter,
@@ -2449,14 +2449,14 @@ var ActorsListResponse = schemas_exports.object({
2449
2449
  pagination: Pagination
2450
2450
  });
2451
2451
 
2452
- // src/serialization/types/ActorsRescheduleBody.ts
2453
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2452
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
2453
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2454
2454
 
2455
2455
  // src/serialization/types/ActorsRescheduleResponse.ts
2456
2456
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2457
2457
 
2458
- // src/serialization/types/ActorsSleepBody.ts
2459
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2458
+ // src/serialization/types/ActorsSleepRequestBody.ts
2459
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
2460
2460
 
2461
2461
  // src/serialization/types/ActorsSleepResponse.ts
2462
2462
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -4025,7 +4025,7 @@ var RivetClient = class {
4025
4025
  contentType: "application/json",
4026
4026
  queryParameters: _queryParams,
4027
4027
  requestType: "json",
4028
- body: ActorsRescheduleBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4028
+ body: ActorsRescheduleRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4029
4029
  timeoutMs: (requestOptions == null ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4030
4030
  maxRetries: requestOptions == null ? void 0 : requestOptions.maxRetries,
4031
4031
  abortSignal: requestOptions == null ? void 0 : requestOptions.abortSignal
@@ -4092,7 +4092,7 @@ var RivetClient = class {
4092
4092
  contentType: "application/json",
4093
4093
  queryParameters: _queryParams,
4094
4094
  requestType: "json",
4095
- body: ActorsSleepBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4095
+ body: ActorsSleepRequestBody.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }),
4096
4096
  timeoutMs: (requestOptions == null ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1e3 : 18e4,
4097
4097
  maxRetries: requestOptions == null ? void 0 : requestOptions.maxRetries,
4098
4098
  abortSignal: requestOptions == null ? void 0 : requestOptions.abortSignal
@@ -1534,14 +1534,14 @@ var ActorsListResponse = schemas_exports.object({
1534
1534
  pagination: Pagination
1535
1535
  });
1536
1536
 
1537
- // src/serialization/types/ActorsRescheduleBody.ts
1538
- var ActorsRescheduleBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1537
+ // src/serialization/types/ActorsRescheduleRequestBody.ts
1538
+ var ActorsRescheduleRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1539
1539
 
1540
1540
  // src/serialization/types/ActorsRescheduleResponse.ts
1541
1541
  var ActorsRescheduleResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1542
1542
 
1543
- // src/serialization/types/ActorsSleepBody.ts
1544
- var ActorsSleepBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1543
+ // src/serialization/types/ActorsSleepRequestBody.ts
1544
+ var ActorsSleepRequestBody = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
1545
1545
 
1546
1546
  // src/serialization/types/ActorsSleepResponse.ts
1547
1547
  var ActorsSleepResponse = schemas_exports.record(schemas_exports.string(), schemas_exports.unknown());
@@ -1911,9 +1911,9 @@ export {
1911
1911
  ActorsKvGetResponse,
1912
1912
  ActorsListNamesResponse,
1913
1913
  ActorsListResponse,
1914
- ActorsRescheduleBody,
1914
+ ActorsRescheduleRequestBody,
1915
1915
  ActorsRescheduleResponse,
1916
- ActorsSleepBody,
1916
+ ActorsSleepRequestBody,
1917
1917
  ActorsSleepResponse,
1918
1918
  CrashPolicy,
1919
1919
  Datacenter,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivetkit/engine-api-full",
3
- "version": "0.0.0-pr.4614.822b57f",
3
+ "version": "0.0.0-pr.4618.1345ecc",
4
4
  "repository": "https://github.com/rivet-dev/rivet/tree/main/engine/sdks/typescript",
5
5
  "files": [
6
6
  "dist",
@@ -13,5 +13,5 @@ import * as Rivet from "../../index";
13
13
  */
14
14
  export interface ActorsRescheduleRequest {
15
15
  namespace: string;
16
- body: Rivet.ActorsRescheduleBody;
16
+ body: Rivet.ActorsRescheduleRequestBody;
17
17
  }
@@ -13,5 +13,5 @@ import * as Rivet from "../../index";
13
13
  */
14
14
  export interface ActorsSleepRequest {
15
15
  namespace: string;
16
- body: Rivet.ActorsSleepBody;
16
+ body: Rivet.ActorsSleepRequestBody;
17
17
  }
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type ActorsSleepBody = Record<string, unknown>;
4
+ export type ActorsRescheduleRequestBody = Record<string, unknown>;
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type ActorsRescheduleBody = Record<string, unknown>;
4
+ export type ActorsSleepRequestBody = Record<string, unknown>;
@@ -6,9 +6,9 @@ export * from "./ActorsGetOrCreateResponse";
6
6
  export * from "./ActorsKvGetResponse";
7
7
  export * from "./ActorsListNamesResponse";
8
8
  export * from "./ActorsListResponse";
9
- export * from "./ActorsRescheduleBody";
9
+ export * from "./ActorsRescheduleRequestBody";
10
10
  export * from "./ActorsRescheduleResponse";
11
- export * from "./ActorsSleepBody";
11
+ export * from "./ActorsSleepRequestBody";
12
12
  export * from "./ActorsSleepResponse";
13
13
  export * from "./CrashPolicy";
14
14
  export * from "./Datacenter";
@@ -4,7 +4,7 @@
4
4
  import * as serializers from "../index";
5
5
  import * as Rivet from "../../api/index";
6
6
  import * as core from "../../core";
7
- export declare const ActorsSleepBody: core.serialization.Schema<serializers.ActorsSleepBody.Raw, Rivet.ActorsSleepBody>;
8
- export declare namespace ActorsSleepBody {
7
+ export declare const ActorsRescheduleRequestBody: core.serialization.Schema<serializers.ActorsRescheduleRequestBody.Raw, Rivet.ActorsRescheduleRequestBody>;
8
+ export declare namespace ActorsRescheduleRequestBody {
9
9
  type Raw = Record<string, unknown>;
10
10
  }
@@ -4,7 +4,7 @@
4
4
  import * as serializers from "../index";
5
5
  import * as Rivet from "../../api/index";
6
6
  import * as core from "../../core";
7
- export declare const ActorsRescheduleBody: core.serialization.Schema<serializers.ActorsRescheduleBody.Raw, Rivet.ActorsRescheduleBody>;
8
- export declare namespace ActorsRescheduleBody {
7
+ export declare const ActorsSleepRequestBody: core.serialization.Schema<serializers.ActorsSleepRequestBody.Raw, Rivet.ActorsSleepRequestBody>;
8
+ export declare namespace ActorsSleepRequestBody {
9
9
  type Raw = Record<string, unknown>;
10
10
  }
@@ -6,9 +6,9 @@ export * from "./ActorsGetOrCreateResponse";
6
6
  export * from "./ActorsKvGetResponse";
7
7
  export * from "./ActorsListNamesResponse";
8
8
  export * from "./ActorsListResponse";
9
- export * from "./ActorsRescheduleBody";
9
+ export * from "./ActorsRescheduleRequestBody";
10
10
  export * from "./ActorsRescheduleResponse";
11
- export * from "./ActorsSleepBody";
11
+ export * from "./ActorsSleepRequestBody";
12
12
  export * from "./ActorsSleepResponse";
13
13
  export * from "./CrashPolicy";
14
14
  export * from "./Datacenter";