@cat-factory/node-server 0.44.3 → 0.46.0
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/container.d.ts.map +1 -1
- package/dist/container.js +6 -0
- package/dist/container.js.map +1 -1
- package/dist/db/schema.d.ts +421 -2
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js +57 -9
- package/dist/db/schema.js.map +1 -1
- package/dist/repositories/customManifestType.d.ts +10 -0
- package/dist/repositories/customManifestType.d.ts.map +1 -0
- package/dist/repositories/customManifestType.js +55 -0
- package/dist/repositories/customManifestType.js.map +1 -0
- package/dist/repositories/environmentUserHandler.d.ts +10 -0
- package/dist/repositories/environmentUserHandler.d.ts.map +1 -0
- package/dist/repositories/environmentUserHandler.js +76 -0
- package/dist/repositories/environmentUserHandler.js.map +1 -0
- package/dist/repositories/environments.d.ts +4 -3
- package/dist/repositories/environments.d.ts.map +1 -1
- package/dist/repositories/environments.js +36 -14
- package/dist/repositories/environments.js.map +1 -1
- package/drizzle/20260630124433_sad_red_wolf/migration.sql +30 -0
- package/drizzle/20260630124433_sad_red_wolf/snapshot.json +13180 -0
- package/drizzle/20260630130700_huge_the_watchers/migration.sql +1 -0
- package/drizzle/20260630130700_huge_the_watchers/snapshot.json +13193 -0
- package/drizzle/20260630140000_reshape_environment_connections/migration.sql +24 -0
- package/drizzle/20260630140000_reshape_environment_connections/snapshot.json +13246 -0
- package/package.json +19 -19
package/dist/db/schema.d.ts
CHANGED
|
@@ -1423,6 +1423,21 @@ export declare const blocks: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
|
1423
1423
|
identity: undefined;
|
|
1424
1424
|
generated: undefined;
|
|
1425
1425
|
}>;
|
|
1426
|
+
provisioning: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
1427
|
+
name: string;
|
|
1428
|
+
tableName: "blocks";
|
|
1429
|
+
dataType: "string";
|
|
1430
|
+
data: string;
|
|
1431
|
+
driverParam: string;
|
|
1432
|
+
notNull: false;
|
|
1433
|
+
hasDefault: false;
|
|
1434
|
+
isPrimaryKey: false;
|
|
1435
|
+
isAutoincrement: false;
|
|
1436
|
+
hasRuntimeDefault: false;
|
|
1437
|
+
enumValues: undefined;
|
|
1438
|
+
identity: undefined;
|
|
1439
|
+
generated: undefined;
|
|
1440
|
+
}>;
|
|
1426
1441
|
cloud_provider: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
1427
1442
|
name: string;
|
|
1428
1443
|
tableName: "blocks";
|
|
@@ -8208,7 +8223,22 @@ export declare const environmentConnections: import("drizzle-orm/pg-core").PgTab
|
|
|
8208
8223
|
identity: undefined;
|
|
8209
8224
|
generated: undefined;
|
|
8210
8225
|
}>;
|
|
8211
|
-
|
|
8226
|
+
provision_type: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
8227
|
+
name: string;
|
|
8228
|
+
tableName: "environment_connections";
|
|
8229
|
+
dataType: "string";
|
|
8230
|
+
data: string;
|
|
8231
|
+
driverParam: string;
|
|
8232
|
+
notNull: true;
|
|
8233
|
+
hasDefault: false;
|
|
8234
|
+
isPrimaryKey: false;
|
|
8235
|
+
isAutoincrement: false;
|
|
8236
|
+
hasRuntimeDefault: false;
|
|
8237
|
+
enumValues: undefined;
|
|
8238
|
+
identity: undefined;
|
|
8239
|
+
generated: undefined;
|
|
8240
|
+
}>;
|
|
8241
|
+
manifest_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>>, {
|
|
8212
8242
|
name: string;
|
|
8213
8243
|
tableName: "environment_connections";
|
|
8214
8244
|
dataType: "string";
|
|
@@ -8223,6 +8253,36 @@ export declare const environmentConnections: import("drizzle-orm/pg-core").PgTab
|
|
|
8223
8253
|
identity: undefined;
|
|
8224
8254
|
generated: undefined;
|
|
8225
8255
|
}>;
|
|
8256
|
+
engine: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
8257
|
+
name: string;
|
|
8258
|
+
tableName: "environment_connections";
|
|
8259
|
+
dataType: "string";
|
|
8260
|
+
data: string;
|
|
8261
|
+
driverParam: string;
|
|
8262
|
+
notNull: true;
|
|
8263
|
+
hasDefault: false;
|
|
8264
|
+
isPrimaryKey: false;
|
|
8265
|
+
isAutoincrement: false;
|
|
8266
|
+
hasRuntimeDefault: false;
|
|
8267
|
+
enumValues: undefined;
|
|
8268
|
+
identity: undefined;
|
|
8269
|
+
generated: undefined;
|
|
8270
|
+
}>;
|
|
8271
|
+
backend_kind: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
8272
|
+
name: string;
|
|
8273
|
+
tableName: "environment_connections";
|
|
8274
|
+
dataType: "string";
|
|
8275
|
+
data: string;
|
|
8276
|
+
driverParam: string;
|
|
8277
|
+
notNull: true;
|
|
8278
|
+
hasDefault: false;
|
|
8279
|
+
isPrimaryKey: false;
|
|
8280
|
+
isAutoincrement: false;
|
|
8281
|
+
hasRuntimeDefault: false;
|
|
8282
|
+
enumValues: undefined;
|
|
8283
|
+
identity: undefined;
|
|
8284
|
+
generated: undefined;
|
|
8285
|
+
}>;
|
|
8226
8286
|
provider_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
8227
8287
|
name: string;
|
|
8228
8288
|
tableName: "environment_connections";
|
|
@@ -8268,7 +8328,7 @@ export declare const environmentConnections: import("drizzle-orm/pg-core").PgTab
|
|
|
8268
8328
|
identity: undefined;
|
|
8269
8329
|
generated: undefined;
|
|
8270
8330
|
}>;
|
|
8271
|
-
|
|
8331
|
+
handler_json: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
8272
8332
|
name: string;
|
|
8273
8333
|
tableName: "environment_connections";
|
|
8274
8334
|
dataType: "string";
|
|
@@ -8283,6 +8343,21 @@ export declare const environmentConnections: import("drizzle-orm/pg-core").PgTab
|
|
|
8283
8343
|
identity: undefined;
|
|
8284
8344
|
generated: undefined;
|
|
8285
8345
|
}>;
|
|
8346
|
+
accepts_manifest_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
8347
|
+
name: string;
|
|
8348
|
+
tableName: "environment_connections";
|
|
8349
|
+
dataType: "string";
|
|
8350
|
+
data: string;
|
|
8351
|
+
driverParam: string;
|
|
8352
|
+
notNull: false;
|
|
8353
|
+
hasDefault: false;
|
|
8354
|
+
isPrimaryKey: false;
|
|
8355
|
+
isAutoincrement: false;
|
|
8356
|
+
hasRuntimeDefault: false;
|
|
8357
|
+
enumValues: undefined;
|
|
8358
|
+
identity: undefined;
|
|
8359
|
+
generated: undefined;
|
|
8360
|
+
}>;
|
|
8286
8361
|
secrets_cipher: import("drizzle-orm/pg-core").PgBuildColumn<"environment_connections", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
8287
8362
|
name: string;
|
|
8288
8363
|
tableName: "environment_connections";
|
|
@@ -8545,6 +8620,36 @@ export declare const environments: import("drizzle-orm/pg-core").PgTableWithColu
|
|
|
8545
8620
|
identity: undefined;
|
|
8546
8621
|
generated: undefined;
|
|
8547
8622
|
}>;
|
|
8623
|
+
provision_type: import("drizzle-orm/pg-core").PgBuildColumn<"environments", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
8624
|
+
name: string;
|
|
8625
|
+
tableName: "environments";
|
|
8626
|
+
dataType: "string";
|
|
8627
|
+
data: string;
|
|
8628
|
+
driverParam: string;
|
|
8629
|
+
notNull: false;
|
|
8630
|
+
hasDefault: false;
|
|
8631
|
+
isPrimaryKey: false;
|
|
8632
|
+
isAutoincrement: false;
|
|
8633
|
+
hasRuntimeDefault: false;
|
|
8634
|
+
enumValues: undefined;
|
|
8635
|
+
identity: undefined;
|
|
8636
|
+
generated: undefined;
|
|
8637
|
+
}>;
|
|
8638
|
+
engine: import("drizzle-orm/pg-core").PgBuildColumn<"environments", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
8639
|
+
name: string;
|
|
8640
|
+
tableName: "environments";
|
|
8641
|
+
dataType: "string";
|
|
8642
|
+
data: string;
|
|
8643
|
+
driverParam: string;
|
|
8644
|
+
notNull: false;
|
|
8645
|
+
hasDefault: false;
|
|
8646
|
+
isPrimaryKey: false;
|
|
8647
|
+
isAutoincrement: false;
|
|
8648
|
+
hasRuntimeDefault: false;
|
|
8649
|
+
enumValues: undefined;
|
|
8650
|
+
identity: undefined;
|
|
8651
|
+
generated: undefined;
|
|
8652
|
+
}>;
|
|
8548
8653
|
};
|
|
8549
8654
|
dialect: 'pg';
|
|
8550
8655
|
}>;
|
|
@@ -9639,6 +9744,320 @@ export declare const localModelEndpoints: import("drizzle-orm/pg-core").PgTableW
|
|
|
9639
9744
|
};
|
|
9640
9745
|
dialect: 'pg';
|
|
9641
9746
|
}>;
|
|
9747
|
+
export declare const environmentUserHandlers: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
9748
|
+
name: "environment_user_handlers";
|
|
9749
|
+
schema: undefined;
|
|
9750
|
+
columns: {
|
|
9751
|
+
user_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9752
|
+
name: string;
|
|
9753
|
+
tableName: "environment_user_handlers";
|
|
9754
|
+
dataType: "string";
|
|
9755
|
+
data: string;
|
|
9756
|
+
driverParam: string;
|
|
9757
|
+
notNull: true;
|
|
9758
|
+
hasDefault: false;
|
|
9759
|
+
isPrimaryKey: false;
|
|
9760
|
+
isAutoincrement: false;
|
|
9761
|
+
hasRuntimeDefault: false;
|
|
9762
|
+
enumValues: undefined;
|
|
9763
|
+
identity: undefined;
|
|
9764
|
+
generated: undefined;
|
|
9765
|
+
}>;
|
|
9766
|
+
workspace_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9767
|
+
name: string;
|
|
9768
|
+
tableName: "environment_user_handlers";
|
|
9769
|
+
dataType: "string";
|
|
9770
|
+
data: string;
|
|
9771
|
+
driverParam: string;
|
|
9772
|
+
notNull: true;
|
|
9773
|
+
hasDefault: false;
|
|
9774
|
+
isPrimaryKey: false;
|
|
9775
|
+
isAutoincrement: false;
|
|
9776
|
+
hasRuntimeDefault: false;
|
|
9777
|
+
enumValues: undefined;
|
|
9778
|
+
identity: undefined;
|
|
9779
|
+
generated: undefined;
|
|
9780
|
+
}>;
|
|
9781
|
+
provision_type: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9782
|
+
name: string;
|
|
9783
|
+
tableName: "environment_user_handlers";
|
|
9784
|
+
dataType: "string";
|
|
9785
|
+
data: string;
|
|
9786
|
+
driverParam: string;
|
|
9787
|
+
notNull: true;
|
|
9788
|
+
hasDefault: false;
|
|
9789
|
+
isPrimaryKey: false;
|
|
9790
|
+
isAutoincrement: false;
|
|
9791
|
+
hasRuntimeDefault: false;
|
|
9792
|
+
enumValues: undefined;
|
|
9793
|
+
identity: undefined;
|
|
9794
|
+
generated: undefined;
|
|
9795
|
+
}>;
|
|
9796
|
+
manifest_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>>, {
|
|
9797
|
+
name: string;
|
|
9798
|
+
tableName: "environment_user_handlers";
|
|
9799
|
+
dataType: "string";
|
|
9800
|
+
data: string;
|
|
9801
|
+
driverParam: string;
|
|
9802
|
+
notNull: true;
|
|
9803
|
+
hasDefault: true;
|
|
9804
|
+
isPrimaryKey: false;
|
|
9805
|
+
isAutoincrement: false;
|
|
9806
|
+
hasRuntimeDefault: false;
|
|
9807
|
+
enumValues: undefined;
|
|
9808
|
+
identity: undefined;
|
|
9809
|
+
generated: undefined;
|
|
9810
|
+
}>;
|
|
9811
|
+
engine: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9812
|
+
name: string;
|
|
9813
|
+
tableName: "environment_user_handlers";
|
|
9814
|
+
dataType: "string";
|
|
9815
|
+
data: string;
|
|
9816
|
+
driverParam: string;
|
|
9817
|
+
notNull: true;
|
|
9818
|
+
hasDefault: false;
|
|
9819
|
+
isPrimaryKey: false;
|
|
9820
|
+
isAutoincrement: false;
|
|
9821
|
+
hasRuntimeDefault: false;
|
|
9822
|
+
enumValues: undefined;
|
|
9823
|
+
identity: undefined;
|
|
9824
|
+
generated: undefined;
|
|
9825
|
+
}>;
|
|
9826
|
+
provider_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9827
|
+
name: string;
|
|
9828
|
+
tableName: "environment_user_handlers";
|
|
9829
|
+
dataType: "string";
|
|
9830
|
+
data: string;
|
|
9831
|
+
driverParam: string;
|
|
9832
|
+
notNull: true;
|
|
9833
|
+
hasDefault: false;
|
|
9834
|
+
isPrimaryKey: false;
|
|
9835
|
+
isAutoincrement: false;
|
|
9836
|
+
hasRuntimeDefault: false;
|
|
9837
|
+
enumValues: undefined;
|
|
9838
|
+
identity: undefined;
|
|
9839
|
+
generated: undefined;
|
|
9840
|
+
}>;
|
|
9841
|
+
label: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9842
|
+
name: string;
|
|
9843
|
+
tableName: "environment_user_handlers";
|
|
9844
|
+
dataType: "string";
|
|
9845
|
+
data: string;
|
|
9846
|
+
driverParam: string;
|
|
9847
|
+
notNull: true;
|
|
9848
|
+
hasDefault: false;
|
|
9849
|
+
isPrimaryKey: false;
|
|
9850
|
+
isAutoincrement: false;
|
|
9851
|
+
hasRuntimeDefault: false;
|
|
9852
|
+
enumValues: undefined;
|
|
9853
|
+
identity: undefined;
|
|
9854
|
+
generated: undefined;
|
|
9855
|
+
}>;
|
|
9856
|
+
base_url: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9857
|
+
name: string;
|
|
9858
|
+
tableName: "environment_user_handlers";
|
|
9859
|
+
dataType: "string";
|
|
9860
|
+
data: string;
|
|
9861
|
+
driverParam: string;
|
|
9862
|
+
notNull: true;
|
|
9863
|
+
hasDefault: false;
|
|
9864
|
+
isPrimaryKey: false;
|
|
9865
|
+
isAutoincrement: false;
|
|
9866
|
+
hasRuntimeDefault: false;
|
|
9867
|
+
enumValues: undefined;
|
|
9868
|
+
identity: undefined;
|
|
9869
|
+
generated: undefined;
|
|
9870
|
+
}>;
|
|
9871
|
+
handler_json: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9872
|
+
name: string;
|
|
9873
|
+
tableName: "environment_user_handlers";
|
|
9874
|
+
dataType: "string";
|
|
9875
|
+
data: string;
|
|
9876
|
+
driverParam: string;
|
|
9877
|
+
notNull: true;
|
|
9878
|
+
hasDefault: false;
|
|
9879
|
+
isPrimaryKey: false;
|
|
9880
|
+
isAutoincrement: false;
|
|
9881
|
+
hasRuntimeDefault: false;
|
|
9882
|
+
enumValues: undefined;
|
|
9883
|
+
identity: undefined;
|
|
9884
|
+
generated: undefined;
|
|
9885
|
+
}>;
|
|
9886
|
+
accepts_manifest_id: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
9887
|
+
name: string;
|
|
9888
|
+
tableName: "environment_user_handlers";
|
|
9889
|
+
dataType: "string";
|
|
9890
|
+
data: string;
|
|
9891
|
+
driverParam: string;
|
|
9892
|
+
notNull: false;
|
|
9893
|
+
hasDefault: false;
|
|
9894
|
+
isPrimaryKey: false;
|
|
9895
|
+
isAutoincrement: false;
|
|
9896
|
+
hasRuntimeDefault: false;
|
|
9897
|
+
enumValues: undefined;
|
|
9898
|
+
identity: undefined;
|
|
9899
|
+
generated: undefined;
|
|
9900
|
+
}>;
|
|
9901
|
+
secrets_cipher: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9902
|
+
name: string;
|
|
9903
|
+
tableName: "environment_user_handlers";
|
|
9904
|
+
dataType: "string";
|
|
9905
|
+
data: string;
|
|
9906
|
+
driverParam: string;
|
|
9907
|
+
notNull: true;
|
|
9908
|
+
hasDefault: false;
|
|
9909
|
+
isPrimaryKey: false;
|
|
9910
|
+
isAutoincrement: false;
|
|
9911
|
+
hasRuntimeDefault: false;
|
|
9912
|
+
enumValues: undefined;
|
|
9913
|
+
identity: undefined;
|
|
9914
|
+
generated: undefined;
|
|
9915
|
+
}>;
|
|
9916
|
+
created_at: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
9917
|
+
name: string;
|
|
9918
|
+
tableName: "environment_user_handlers";
|
|
9919
|
+
dataType: "number int53";
|
|
9920
|
+
data: number;
|
|
9921
|
+
driverParam: string | number;
|
|
9922
|
+
notNull: true;
|
|
9923
|
+
hasDefault: false;
|
|
9924
|
+
isPrimaryKey: false;
|
|
9925
|
+
isAutoincrement: false;
|
|
9926
|
+
hasRuntimeDefault: false;
|
|
9927
|
+
enumValues: undefined;
|
|
9928
|
+
identity: undefined;
|
|
9929
|
+
generated: undefined;
|
|
9930
|
+
}>;
|
|
9931
|
+
updated_at: import("drizzle-orm/pg-core").PgBuildColumn<"environment_user_handlers", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
9932
|
+
name: string;
|
|
9933
|
+
tableName: "environment_user_handlers";
|
|
9934
|
+
dataType: "number int53";
|
|
9935
|
+
data: number;
|
|
9936
|
+
driverParam: string | number;
|
|
9937
|
+
notNull: true;
|
|
9938
|
+
hasDefault: false;
|
|
9939
|
+
isPrimaryKey: false;
|
|
9940
|
+
isAutoincrement: false;
|
|
9941
|
+
hasRuntimeDefault: false;
|
|
9942
|
+
enumValues: undefined;
|
|
9943
|
+
identity: undefined;
|
|
9944
|
+
generated: undefined;
|
|
9945
|
+
}>;
|
|
9946
|
+
};
|
|
9947
|
+
dialect: 'pg';
|
|
9948
|
+
}>;
|
|
9949
|
+
export declare const customManifestTypes: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
9950
|
+
name: "custom_manifest_types";
|
|
9951
|
+
schema: undefined;
|
|
9952
|
+
columns: {
|
|
9953
|
+
workspace_id: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9954
|
+
name: string;
|
|
9955
|
+
tableName: "custom_manifest_types";
|
|
9956
|
+
dataType: "string";
|
|
9957
|
+
data: string;
|
|
9958
|
+
driverParam: string;
|
|
9959
|
+
notNull: true;
|
|
9960
|
+
hasDefault: false;
|
|
9961
|
+
isPrimaryKey: false;
|
|
9962
|
+
isAutoincrement: false;
|
|
9963
|
+
hasRuntimeDefault: false;
|
|
9964
|
+
enumValues: undefined;
|
|
9965
|
+
identity: undefined;
|
|
9966
|
+
generated: undefined;
|
|
9967
|
+
}>;
|
|
9968
|
+
manifest_id: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9969
|
+
name: string;
|
|
9970
|
+
tableName: "custom_manifest_types";
|
|
9971
|
+
dataType: "string";
|
|
9972
|
+
data: string;
|
|
9973
|
+
driverParam: string;
|
|
9974
|
+
notNull: true;
|
|
9975
|
+
hasDefault: false;
|
|
9976
|
+
isPrimaryKey: false;
|
|
9977
|
+
isAutoincrement: false;
|
|
9978
|
+
hasRuntimeDefault: false;
|
|
9979
|
+
enumValues: undefined;
|
|
9980
|
+
identity: undefined;
|
|
9981
|
+
generated: undefined;
|
|
9982
|
+
}>;
|
|
9983
|
+
label: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
9984
|
+
name: string;
|
|
9985
|
+
tableName: "custom_manifest_types";
|
|
9986
|
+
dataType: "string";
|
|
9987
|
+
data: string;
|
|
9988
|
+
driverParam: string;
|
|
9989
|
+
notNull: true;
|
|
9990
|
+
hasDefault: false;
|
|
9991
|
+
isPrimaryKey: false;
|
|
9992
|
+
isAutoincrement: false;
|
|
9993
|
+
hasRuntimeDefault: false;
|
|
9994
|
+
enumValues: undefined;
|
|
9995
|
+
identity: undefined;
|
|
9996
|
+
generated: undefined;
|
|
9997
|
+
}>;
|
|
9998
|
+
accepts_input_hint: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
9999
|
+
name: string;
|
|
10000
|
+
tableName: "custom_manifest_types";
|
|
10001
|
+
dataType: "string";
|
|
10002
|
+
data: string;
|
|
10003
|
+
driverParam: string;
|
|
10004
|
+
notNull: false;
|
|
10005
|
+
hasDefault: false;
|
|
10006
|
+
isPrimaryKey: false;
|
|
10007
|
+
isAutoincrement: false;
|
|
10008
|
+
hasRuntimeDefault: false;
|
|
10009
|
+
enumValues: undefined;
|
|
10010
|
+
identity: undefined;
|
|
10011
|
+
generated: undefined;
|
|
10012
|
+
}>;
|
|
10013
|
+
description: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
10014
|
+
name: string;
|
|
10015
|
+
tableName: "custom_manifest_types";
|
|
10016
|
+
dataType: "string";
|
|
10017
|
+
data: string;
|
|
10018
|
+
driverParam: string;
|
|
10019
|
+
notNull: false;
|
|
10020
|
+
hasDefault: false;
|
|
10021
|
+
isPrimaryKey: false;
|
|
10022
|
+
isAutoincrement: false;
|
|
10023
|
+
hasRuntimeDefault: false;
|
|
10024
|
+
enumValues: undefined;
|
|
10025
|
+
identity: undefined;
|
|
10026
|
+
generated: undefined;
|
|
10027
|
+
}>;
|
|
10028
|
+
created_at: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
10029
|
+
name: string;
|
|
10030
|
+
tableName: "custom_manifest_types";
|
|
10031
|
+
dataType: "number int53";
|
|
10032
|
+
data: number;
|
|
10033
|
+
driverParam: string | number;
|
|
10034
|
+
notNull: true;
|
|
10035
|
+
hasDefault: false;
|
|
10036
|
+
isPrimaryKey: false;
|
|
10037
|
+
isAutoincrement: false;
|
|
10038
|
+
hasRuntimeDefault: false;
|
|
10039
|
+
enumValues: undefined;
|
|
10040
|
+
identity: undefined;
|
|
10041
|
+
generated: undefined;
|
|
10042
|
+
}>;
|
|
10043
|
+
updated_at: import("drizzle-orm/pg-core").PgBuildColumn<"custom_manifest_types", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
10044
|
+
name: string;
|
|
10045
|
+
tableName: "custom_manifest_types";
|
|
10046
|
+
dataType: "number int53";
|
|
10047
|
+
data: number;
|
|
10048
|
+
driverParam: string | number;
|
|
10049
|
+
notNull: true;
|
|
10050
|
+
hasDefault: false;
|
|
10051
|
+
isPrimaryKey: false;
|
|
10052
|
+
isAutoincrement: false;
|
|
10053
|
+
hasRuntimeDefault: false;
|
|
10054
|
+
enumValues: undefined;
|
|
10055
|
+
identity: undefined;
|
|
10056
|
+
generated: undefined;
|
|
10057
|
+
}>;
|
|
10058
|
+
};
|
|
10059
|
+
dialect: 'pg';
|
|
10060
|
+
}>;
|
|
9642
10061
|
export declare const userSecrets: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
9643
10062
|
name: "user_secrets";
|
|
9644
10063
|
schema: undefined;
|
package/dist/db/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/db/schema.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/db/schema.ts"],"names":[],"mappings":"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"}
|
package/dist/db/schema.js
CHANGED
|
@@ -197,6 +197,8 @@ export const blocks = pgTable('blocks', {
|
|
|
197
197
|
// Service-level (frame): default test environment tasks are spawned with
|
|
198
198
|
// ('local' | 'ephemeral'); a task overrides via its tester.environment config.
|
|
199
199
|
default_test_environment: text('default_test_environment'),
|
|
200
|
+
// Service-owned provisioning config (the "what + where") — serialized ServiceProvisioning.
|
|
201
|
+
provisioning: text('provisioning'),
|
|
200
202
|
cloud_provider: text('cloud_provider'),
|
|
201
203
|
instance_size: text('instance_size'),
|
|
202
204
|
// The account-owned service this block belongs to (migration 0031); will become the
|
|
@@ -1016,24 +1018,31 @@ export const documents = pgTable('documents', {
|
|
|
1016
1018
|
primaryKey({ columns: [t.workspace_id, t.source, t.external_id] }),
|
|
1017
1019
|
index('idx_documents_block').on(t.workspace_id, t.linked_block_id),
|
|
1018
1020
|
]);
|
|
1019
|
-
// Ephemeral-environment integration (mirror of D1 migration
|
|
1020
|
-
//
|
|
1021
|
-
// registry of environments provisioned from
|
|
1022
|
-
//
|
|
1023
|
-
// (
|
|
1021
|
+
// Ephemeral-environment integration (mirror of D1 migration 0025). A workspace's per-
|
|
1022
|
+
// provision-type infra HANDLERS (how a service's declared provision type is stood up) and
|
|
1023
|
+
// the registry of environments provisioned from them. Keyed by (workspace_id,
|
|
1024
|
+
// provision_type, manifest_id) — one handler per type, plus one per pinned custom manifest
|
|
1025
|
+
// id ('' for non-custom). `handler_json` carries the engine connection (sans secrets); the
|
|
1026
|
+
// manifests to apply come from the service at provision time. Credentials are opaque
|
|
1027
|
+
// ciphertext (SecretCipher envelopes), never plaintext. See
|
|
1028
|
+
// docs/initiatives/per-service-provision-types.md.
|
|
1024
1029
|
export const environmentConnections = pgTable('environment_connections', {
|
|
1025
1030
|
workspace_id: text('workspace_id').notNull(),
|
|
1026
|
-
|
|
1031
|
+
provision_type: text('provision_type').notNull(),
|
|
1032
|
+
manifest_id: text('manifest_id').notNull().default(''),
|
|
1033
|
+
engine: text('engine').notNull(),
|
|
1034
|
+
backend_kind: text('backend_kind').notNull(),
|
|
1027
1035
|
provider_id: text('provider_id').notNull(),
|
|
1028
1036
|
label: text('label').notNull(),
|
|
1029
1037
|
base_url: text('base_url').notNull(),
|
|
1030
|
-
|
|
1038
|
+
handler_json: text('handler_json').notNull(),
|
|
1039
|
+
accepts_manifest_id: text('accepts_manifest_id'),
|
|
1031
1040
|
secrets_cipher: text('secrets_cipher').notNull(),
|
|
1032
1041
|
created_at: bigint('created_at', { mode: 'number' }).notNull(),
|
|
1033
1042
|
deleted_at: bigint('deleted_at', { mode: 'number' }),
|
|
1034
1043
|
}, (t) => [
|
|
1035
|
-
primaryKey({ columns: [t.workspace_id, t.
|
|
1036
|
-
|
|
1044
|
+
primaryKey({ columns: [t.workspace_id, t.provision_type, t.manifest_id] }),
|
|
1045
|
+
index('idx_environment_conn_workspace')
|
|
1037
1046
|
.on(t.workspace_id)
|
|
1038
1047
|
.where(sql `${t.deleted_at} IS NULL`),
|
|
1039
1048
|
]);
|
|
@@ -1055,6 +1064,10 @@ export const environments = pgTable('environments', {
|
|
|
1055
1064
|
expires_at: bigint('expires_at', { mode: 'number' }),
|
|
1056
1065
|
last_error: text('last_error'),
|
|
1057
1066
|
deleted_at: bigint('deleted_at', { mode: 'number' }),
|
|
1067
|
+
// The service's declared provision type + the resolved engine that handled it,
|
|
1068
|
+
// recorded at provision time so run details can show exactly what ran where.
|
|
1069
|
+
provision_type: text('provision_type'),
|
|
1070
|
+
engine: text('engine'),
|
|
1058
1071
|
}, (t) => [
|
|
1059
1072
|
index('idx_environments_block')
|
|
1060
1073
|
.on(t.workspace_id, t.block_id)
|
|
@@ -1188,6 +1201,41 @@ export const localModelEndpoints = pgTable('local_model_endpoints', {
|
|
|
1188
1201
|
created_at: bigint('created_at', { mode: 'number' }).notNull(),
|
|
1189
1202
|
updated_at: bigint('updated_at', { mode: 'number' }).notNull(),
|
|
1190
1203
|
}, (t) => [primaryKey({ columns: [t.user_id, t.provider] })]);
|
|
1204
|
+
// Per-USER infra handler overrides (local mode): the per-user layer over a workspace's
|
|
1205
|
+
// per-type environment handlers, keyed by (user_id, workspace_id, provision_type,
|
|
1206
|
+
// manifest_id). `manifest_id` is '' for non-custom types so it sits in the composite PK
|
|
1207
|
+
// cleanly. Mirror of D1 migration 0024; see docs/initiatives/per-service-provision-types.md.
|
|
1208
|
+
export const environmentUserHandlers = pgTable('environment_user_handlers', {
|
|
1209
|
+
user_id: text('user_id').notNull(),
|
|
1210
|
+
workspace_id: text('workspace_id').notNull(),
|
|
1211
|
+
provision_type: text('provision_type').notNull(),
|
|
1212
|
+
manifest_id: text('manifest_id').notNull().default(''),
|
|
1213
|
+
engine: text('engine').notNull(),
|
|
1214
|
+
provider_id: text('provider_id').notNull(),
|
|
1215
|
+
label: text('label').notNull(),
|
|
1216
|
+
base_url: text('base_url').notNull(),
|
|
1217
|
+
handler_json: text('handler_json').notNull(),
|
|
1218
|
+
accepts_manifest_id: text('accepts_manifest_id'),
|
|
1219
|
+
secrets_cipher: text('secrets_cipher').notNull(),
|
|
1220
|
+
created_at: bigint('created_at', { mode: 'number' }).notNull(),
|
|
1221
|
+
updated_at: bigint('updated_at', { mode: 'number' }).notNull(),
|
|
1222
|
+
}, (t) => [
|
|
1223
|
+
primaryKey({
|
|
1224
|
+
columns: [t.user_id, t.workspace_id, t.provision_type, t.manifest_id],
|
|
1225
|
+
}),
|
|
1226
|
+
]);
|
|
1227
|
+
// Workspace-defined custom-manifest-type catalog entries (the UI-editable half of the
|
|
1228
|
+
// custom provision-type catalog; the other half comes from registered providers). Keyed
|
|
1229
|
+
// by (workspace_id, manifest_id). Mirror of D1 migration 0024.
|
|
1230
|
+
export const customManifestTypes = pgTable('custom_manifest_types', {
|
|
1231
|
+
workspace_id: text('workspace_id').notNull(),
|
|
1232
|
+
manifest_id: text('manifest_id').notNull(),
|
|
1233
|
+
label: text('label').notNull(),
|
|
1234
|
+
accepts_input_hint: text('accepts_input_hint'),
|
|
1235
|
+
description: text('description'),
|
|
1236
|
+
created_at: bigint('created_at', { mode: 'number' }).notNull(),
|
|
1237
|
+
updated_at: bigint('updated_at', { mode: 'number' }).notNull(),
|
|
1238
|
+
}, (t) => [primaryKey({ columns: [t.workspace_id, t.manifest_id] })]);
|
|
1191
1239
|
// Generic per-USER secrets — token-style credentials keyed by (user_id, kind) (a GitHub
|
|
1192
1240
|
// PAT today; future repository/provider tokens as new kinds). Mirror of D1 migration 0009
|
|
1193
1241
|
// / D1UserSecretRepository. The secret is single-system-key ciphertext; non-secret fields
|