@chainfuse/types 4.2.14 → 4.2.16
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.
|
@@ -1302,6 +1302,7 @@ export declare const workersAiCatalog: {
|
|
|
1302
1302
|
readonly created_at: "2024-05-22 00:02:18.656";
|
|
1303
1303
|
readonly tags: readonly [];
|
|
1304
1304
|
readonly properties: {
|
|
1305
|
+
readonly async_queue: true;
|
|
1305
1306
|
readonly price: readonly [{
|
|
1306
1307
|
readonly unit: "per audio minute";
|
|
1307
1308
|
readonly price: 0.00051;
|
package/dist/d0/index.d.ts
CHANGED
|
@@ -25,8 +25,8 @@ export declare enum D0CombinedLocations {
|
|
|
25
25
|
}
|
|
26
26
|
export declare enum D0ShardType {
|
|
27
27
|
None = 0,
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
Scheduler = 1,
|
|
29
|
+
Storage = 2,
|
|
30
30
|
MCP = 3,
|
|
31
31
|
EphemeralAgent = 4,
|
|
32
32
|
Session = 5
|
|
@@ -35,3 +35,19 @@ export declare enum D0Environment {
|
|
|
35
35
|
Production = 0,
|
|
36
36
|
Preview = 1
|
|
37
37
|
}
|
|
38
|
+
export declare namespace SystemWorkflows {
|
|
39
|
+
enum Director {
|
|
40
|
+
WsCleanup = "17ef9c63af"
|
|
41
|
+
}
|
|
42
|
+
enum Dataspace {
|
|
43
|
+
MessageRetentionCleanup = "b5c7239e98",
|
|
44
|
+
SheetRetentionCleanup = "d995c7a019"
|
|
45
|
+
}
|
|
46
|
+
enum Tenant {
|
|
47
|
+
InviteCleanup = "fa7eadd647"
|
|
48
|
+
}
|
|
49
|
+
enum User {
|
|
50
|
+
SessionCleanup = "72c14c6b05",
|
|
51
|
+
LoginTokenRefresh = "57b147c395"
|
|
52
|
+
}
|
|
53
|
+
}
|
package/dist/d0/index.js
CHANGED
|
@@ -28,8 +28,8 @@ export var D0CombinedLocations;
|
|
|
28
28
|
export var D0ShardType;
|
|
29
29
|
(function (D0ShardType) {
|
|
30
30
|
D0ShardType[D0ShardType["None"] = 0] = "None";
|
|
31
|
-
D0ShardType[D0ShardType["
|
|
32
|
-
D0ShardType[D0ShardType["
|
|
31
|
+
D0ShardType[D0ShardType["Scheduler"] = 1] = "Scheduler";
|
|
32
|
+
D0ShardType[D0ShardType["Storage"] = 2] = "Storage";
|
|
33
33
|
D0ShardType[D0ShardType["MCP"] = 3] = "MCP";
|
|
34
34
|
D0ShardType[D0ShardType["EphemeralAgent"] = 4] = "EphemeralAgent";
|
|
35
35
|
D0ShardType[D0ShardType["Session"] = 5] = "Session";
|
|
@@ -39,3 +39,24 @@ export var D0Environment;
|
|
|
39
39
|
D0Environment[D0Environment["Production"] = 0] = "Production";
|
|
40
40
|
D0Environment[D0Environment["Preview"] = 1] = "Preview";
|
|
41
41
|
})(D0Environment || (D0Environment = {}));
|
|
42
|
+
export var SystemWorkflows;
|
|
43
|
+
(function (SystemWorkflows) {
|
|
44
|
+
let Director;
|
|
45
|
+
(function (Director) {
|
|
46
|
+
Director["WsCleanup"] = "17ef9c63af";
|
|
47
|
+
})(Director = SystemWorkflows.Director || (SystemWorkflows.Director = {}));
|
|
48
|
+
let Dataspace;
|
|
49
|
+
(function (Dataspace) {
|
|
50
|
+
Dataspace["MessageRetentionCleanup"] = "b5c7239e98";
|
|
51
|
+
Dataspace["SheetRetentionCleanup"] = "d995c7a019";
|
|
52
|
+
})(Dataspace = SystemWorkflows.Dataspace || (SystemWorkflows.Dataspace = {}));
|
|
53
|
+
let Tenant;
|
|
54
|
+
(function (Tenant) {
|
|
55
|
+
Tenant["InviteCleanup"] = "fa7eadd647";
|
|
56
|
+
})(Tenant = SystemWorkflows.Tenant || (SystemWorkflows.Tenant = {}));
|
|
57
|
+
let User;
|
|
58
|
+
(function (User) {
|
|
59
|
+
User["SessionCleanup"] = "72c14c6b05";
|
|
60
|
+
User["LoginTokenRefresh"] = "57b147c395";
|
|
61
|
+
})(User = SystemWorkflows.User || (SystemWorkflows.User = {}));
|
|
62
|
+
})(SystemWorkflows || (SystemWorkflows = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chainfuse/types",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.16",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "ChainFuse",
|
|
6
6
|
"homepage": "https://github.com/ChainFuse/packages/tree/main/packages/types#readme",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"@cloudflare/workers-types": "^4.20260212.0",
|
|
102
102
|
"@types/validator": "^13.15.10"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "516f3c7d628c7c7793c9dbf228a35afbf22b3e69"
|
|
105
105
|
}
|