@prostgles/prostgles 2.3.6-dev.1787309399 → 2.3.6-dev.1787331887

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.
Files changed (45) hide show
  1. package/dist/common/DBGeneratedSchema.d.ts +1 -1
  2. package/dist/common/DBGeneratedSchema.d.ts.map +1 -1
  3. package/dist/server/package.json +2 -2
  4. package/dist/server/src/ConnectionManager/ConnectionManager.d.ts +2 -2
  5. package/dist/server/src/ConnectionManager/ConnectionManager.d.ts.map +1 -1
  6. package/dist/server/src/ConnectionManager/ConnectionManager.js +1 -2
  7. package/dist/server/src/ConnectionManager/ConnectionManager.js.map +1 -1
  8. package/dist/server/src/ConnectionManager/connectionOnReady.d.ts +2 -1
  9. package/dist/server/src/ConnectionManager/connectionOnReady.d.ts.map +1 -1
  10. package/dist/server/src/ConnectionManager/connectionOnReady.js.map +1 -1
  11. package/dist/server/src/ConnectionManager/getConnectionServerFunctions.d.ts +2 -1
  12. package/dist/server/src/ConnectionManager/getConnectionServerFunctions.d.ts.map +1 -1
  13. package/dist/server/src/ConnectionManager/getConnectionServerFunctions.js.map +1 -1
  14. package/dist/server/src/ConnectionManager/getHotReloadConfigs.d.ts +4 -3
  15. package/dist/server/src/ConnectionManager/getHotReloadConfigs.d.ts.map +1 -1
  16. package/dist/server/src/ConnectionManager/getHotReloadConfigs.js.map +1 -1
  17. package/dist/server/src/ConnectionManager/parseTableConfig.d.ts +2 -1
  18. package/dist/server/src/ConnectionManager/parseTableConfig.d.ts.map +1 -1
  19. package/dist/server/src/ConnectionManager/parseTableConfig.js.map +1 -1
  20. package/dist/server/src/ConnectionManager/startConnection.d.ts.map +1 -1
  21. package/dist/server/src/ConnectionManager/startConnection.js +7 -7
  22. package/dist/server/src/ConnectionManager/startConnection.js.map +1 -1
  23. package/dist/server/src/cli/cliTemplateFiles.js +6 -2
  24. package/dist/server/src/cli/cliTemplateFiles.js.map +1 -1
  25. package/dist/server/src/schemaConfig.d.ts +6 -5
  26. package/dist/server/src/schemaConfig.d.ts.map +1 -1
  27. package/dist/server/src/schemaConfig.js +3 -1
  28. package/dist/server/src/schemaConfig.js.map +1 -1
  29. package/dist/server/src/serverFunctions/adminServerFunctions/agenticWorkflowFunctions.d.ts +8 -8
  30. package/dist/server/src/serverFunctions/adminServerFunctions/backupServerFunctions.d.ts +12 -12
  31. package/dist/server/src/serverFunctions/adminServerFunctions/mcpServerFunctions.d.ts +20 -20
  32. package/dist/server/src/serverFunctions/adminServerFunctions/stateServerAdminFunctions.d.ts +118 -118
  33. package/dist/server/src/serverFunctions/adminServerFunctions/webAppServerFunctions.d.ts +20 -20
  34. package/dist/server/src/serverFunctions/defineFunctionGroup.d.ts +2 -2
  35. package/dist/server/src/serverFunctions/defineFunctionGroup.d.ts.map +1 -1
  36. package/dist/server/src/serverFunctions/stateServerFunctions.d.ts +144 -144
  37. package/dist/server/src/serverFunctions/userServerFunctions/userServerFunctions.d.ts +24 -24
  38. package/dist/server/src/tableConfig/tableConfigMigrations.d.ts.map +1 -1
  39. package/dist/server/src/tableHooks/llm_credentials.tableHooks.d.ts +2 -0
  40. package/dist/server/src/tableHooks/llm_credentials.tableHooks.d.ts.map +1 -1
  41. package/dist/server/src/tableHooks/tableHooks.d.ts +49 -46
  42. package/dist/server/src/tableHooks/tableHooks.d.ts.map +1 -1
  43. package/dist/server/src/tableHooks/users.tableHooks.d.ts +1 -0
  44. package/dist/server/src/tableHooks/users.tableHooks.d.ts.map +1 -1
  45. package/package.json +2 -2
@@ -20,10 +20,10 @@ export declare const userServerFunctions: {
20
20
  enum: readonly ["approve", "deny", "auto-approve"];
21
21
  };
22
22
  schema: "string";
23
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<void>;
23
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<void>;
24
24
  } & {
25
25
  unrestrictedDbAccess: true;
26
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
26
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
27
27
  readonly askLLM: {
28
28
  input?: {
29
29
  connectionId: "string";
@@ -191,10 +191,10 @@ export declare const userServerFunctions: {
191
191
  }];
192
192
  };
193
193
  };
194
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<void>;
194
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<void>;
195
195
  } & {
196
196
  unrestrictedDbAccess: true;
197
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
197
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
198
198
  readonly getFullPrompt: {
199
199
  input?: {
200
200
  prompt: "string";
@@ -206,10 +206,10 @@ export declare const userServerFunctions: {
206
206
  prompt: "string";
207
207
  schema: "string";
208
208
  connectionId: "string";
209
- }>, context: import("prostgles-server").RestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<string>;
209
+ }>, context: import("prostgles-server").RestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<string>;
210
210
  } & {
211
211
  unrestrictedDbAccess?: undefined;
212
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
212
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
213
213
  readonly stopAskLLM: {
214
214
  input?: {
215
215
  chatId: "integer";
@@ -217,10 +217,10 @@ export declare const userServerFunctions: {
217
217
  description?: string;
218
218
  run: (args: import("prostgles-types").JSONB.GetObjectType<{
219
219
  chatId: "integer";
220
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<void>;
220
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<void>;
221
221
  } & {
222
222
  unrestrictedDbAccess: true;
223
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
223
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
224
224
  readonly sendFeedback: {
225
225
  input?: {
226
226
  details: "string";
@@ -236,10 +236,10 @@ export declare const userServerFunctions: {
236
236
  type: "string";
237
237
  optional: true;
238
238
  };
239
- }>, context: import("prostgles-server").RestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<void>;
239
+ }>, context: import("prostgles-server").RestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<void>;
240
240
  } & {
241
241
  unrestrictedDbAccess?: undefined;
242
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
242
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
243
243
  readonly prostglesSignup: {
244
244
  input?: {
245
245
  email: "string";
@@ -249,7 +249,7 @@ export declare const userServerFunctions: {
249
249
  run: (args: import("prostgles-types").JSONB.GetObjectType<{
250
250
  email: "string";
251
251
  code: "string";
252
- }>, context: import("prostgles-server").RestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<{
252
+ }>, context: import("prostgles-server").RestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<{
253
253
  error: unknown;
254
254
  hasError: boolean;
255
255
  token?: undefined;
@@ -262,7 +262,7 @@ export declare const userServerFunctions: {
262
262
  }>;
263
263
  } & {
264
264
  unrestrictedDbAccess?: undefined;
265
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
265
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
266
266
  readonly generateToken: {
267
267
  input?: {
268
268
  days: "integer";
@@ -270,21 +270,21 @@ export declare const userServerFunctions: {
270
270
  description?: string;
271
271
  run: (args: import("prostgles-types").JSONB.GetObjectType<{
272
272
  days: "integer";
273
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<string>;
273
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<string>;
274
274
  } & {
275
275
  unrestrictedDbAccess: true;
276
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
276
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
277
277
  readonly create2FA: {
278
278
  input?: Record<string, import("prostgles-types").JSONB.FieldType> | undefined;
279
279
  description?: string;
280
- run: (args: import("prostgles-types").JSONB.GetObjectType<Record<string, import("prostgles-types").JSONB.FieldType>>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<{
280
+ run: (args: import("prostgles-types").JSONB.GetObjectType<Record<string, import("prostgles-types").JSONB.FieldType>>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<{
281
281
  url: string;
282
282
  secret: string;
283
283
  recoveryCode: string;
284
284
  }>;
285
285
  } & {
286
286
  unrestrictedDbAccess: true;
287
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
287
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
288
288
  readonly enable2FA: {
289
289
  input?: {
290
290
  token: "string";
@@ -292,17 +292,17 @@ export declare const userServerFunctions: {
292
292
  description?: string;
293
293
  run: (args: import("prostgles-types").JSONB.GetObjectType<{
294
294
  token: "string";
295
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<string>;
295
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<string>;
296
296
  } & {
297
297
  unrestrictedDbAccess: true;
298
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
298
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
299
299
  readonly disable2FA: {
300
300
  input?: Record<string, import("prostgles-types").JSONB.FieldType> | undefined;
301
301
  description?: string;
302
- run: (args: import("prostgles-types").JSONB.GetObjectType<Record<string, import("prostgles-types").JSONB.FieldType>>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<void[] | undefined>;
302
+ run: (args: import("prostgles-types").JSONB.GetObjectType<Record<string, import("prostgles-types").JSONB.FieldType>>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<void[] | undefined>;
303
303
  } & {
304
304
  unrestrictedDbAccess: true;
305
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
305
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
306
306
  readonly changePassword: {
307
307
  input?: {
308
308
  oldPassword: "string";
@@ -312,10 +312,10 @@ export declare const userServerFunctions: {
312
312
  run: (args: import("prostgles-types").JSONB.GetObjectType<{
313
313
  oldPassword: "string";
314
314
  newPassword: "string";
315
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<void>;
315
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<void>;
316
316
  } & {
317
317
  unrestrictedDbAccess: true;
318
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
318
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
319
319
  readonly getLLMAllowedChatTools: {
320
320
  input?: {
321
321
  chatId: "integer";
@@ -323,10 +323,10 @@ export declare const userServerFunctions: {
323
323
  description?: string;
324
324
  run: (args: import("prostgles-types").JSONB.GetObjectType<{
325
325
  chatId: "integer";
326
- }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser>) => import("prostgles-types").MaybePromise<AllowedChatTool[] | undefined>;
326
+ }>, context: import("prostgles-server").UnrestrictedFunctionContext<DBGeneratedSchema, SUser, undefined>) => import("prostgles-types").MaybePromise<AllowedChatTool[] | undefined>;
327
327
  } & {
328
328
  unrestrictedDbAccess: true;
329
- } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser>;
329
+ } & import("prostgles-server").ServerFunctionContextMarker<DBGeneratedSchema, SUser, undefined>;
330
330
  };
331
331
  };
332
332
  };
@@ -1 +1 @@
1
- {"version":3,"file":"tableConfigMigrations.d.ts","sourceRoot":"","sources":["../../../../src/tableConfig/tableConfigMigrations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB;;;;;;8CAwB05V,CAAC,eAAe,CAAC;;CAD56V,CAAC"}
1
+ {"version":3,"file":"tableConfigMigrations.d.ts","sourceRoot":"","sources":["../../../../src/tableConfig/tableConfigMigrations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB;;;;;;8CAwB4xW,CAAC,eAAe,CAAC;;CAD9yW,CAAC"}
@@ -32,6 +32,8 @@ export declare const llmCredentialsTableHooks: {
32
32
  user_id: string;
33
33
  }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> & {
34
34
  localParams: undefined | import("prostgles-server/dist/DboBuilder/DboBuilderTypes").LocalParams;
35
+ context: undefined;
36
+ onCommit: import("prostgles-server/dist/PublishParser/publishTypesAndUtils").OnCommit;
35
37
  }) => Promise<void>;
36
38
  }];
37
39
  };
@@ -1 +1 @@
1
- {"version":3,"file":"llm_credentials.tableHooks.d.ts","sourceRoot":"","sources":["../../../../src/tableHooks/llm_credentials.tableHooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AASnE,eAAO,MAAM,wBAAwB;;;;;;;;;;;+BA8D0t5B,CAAC;qCAA6B,CAAC;yCAAiC,CAAC;8BAAsB,CAAC;oCAA4B,CAAC;mCAA2B,CAAC;yBAA2D,CAAC;6BAAsB,CAAC;;;kCAA8D,CAAC;;0BAAqB,CAAC;;;;;;;;;;;;;CADtg6B,CAAC"}
1
+ {"version":3,"file":"llm_credentials.tableHooks.d.ts","sourceRoot":"","sources":["../../../../src/tableHooks/llm_credentials.tableHooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AASnE,eAAO,MAAM,wBAAwB;;;;;;;;;;;+BA8D0t5B,CAAC;qCAA6B,CAAC;yCAAiC,CAAC;8BAAsB,CAAC;oCAA4B,CAAC;mCAA2B,CAAC;yBAA2D,CAAC;6BAAsB,CAAC;;;kCAA8D,CAAC;;0BAAqB,CAAC;;;;;;;;;;;;;;;CADtg6B,CAAC"}
@@ -32,6 +32,8 @@ export declare const tableHooks: {
32
32
  user_id: string;
33
33
  }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> & {
34
34
  localParams: undefined | import("prostgles-server/dist/DboBuilder/DboBuilderTypes").LocalParams;
35
+ context: undefined;
36
+ onCommit: import("prostgles-server/dist/PublishParser/publishTypesAndUtils").OnCommit;
35
37
  }) => Promise<void>;
36
38
  }];
37
39
  };
@@ -95,24 +97,24 @@ export declare const tableHooks: {
95
97
  id?: number;
96
98
  llm_daily_limit?: number;
97
99
  name?: null | string;
98
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
100
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
99
101
  readonly access_control_allowed_llm?: import("prostgles-server").TableHooksDefinition<Required<{
100
102
  access_control_id: number;
101
103
  llm_credential_id: number;
102
104
  llm_prompt_id: number;
103
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
105
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
104
106
  readonly access_control_connections?: import("prostgles-server").TableHooksDefinition<Required<{
105
107
  access_control_id: number;
106
108
  connection_id: string;
107
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
109
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
108
110
  readonly access_control_methods?: import("prostgles-server").TableHooksDefinition<Required<{
109
111
  access_control_id: number;
110
112
  published_method_id: number;
111
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
113
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
112
114
  readonly access_control_user_types?: import("prostgles-server").TableHooksDefinition<Required<{
113
115
  access_control_id: number;
114
116
  user_type: string;
115
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
117
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
116
118
  readonly agentic_workflow_runs?: import("prostgles-server").TableHooksDefinition<Required<{
117
119
  chat_id: number;
118
120
  created?: string;
@@ -132,7 +134,7 @@ export declare const tableHooks: {
132
134
  user_id: string;
133
135
  user_input_value: Record<string, unknown>;
134
136
  workflow_id: number;
135
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
137
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
136
138
  readonly agentic_workflows?: import("prostgles-server").TableHooksDefinition<Required<{
137
139
  chat_id: number;
138
140
  connection_id?: null | string;
@@ -358,13 +360,13 @@ export declare const tableHooks: {
358
360
  saved?: boolean;
359
361
  tool_use_id: string;
360
362
  user_id: string;
361
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
363
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
362
364
  readonly alert_viewed_by?: import("prostgles-server").TableHooksDefinition<Required<{
363
365
  alert_id?: null | number | string;
364
366
  id?: number | string;
365
367
  user_id?: null | string;
366
368
  viewed?: null | string;
367
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
369
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
368
370
  readonly alerts?: import("prostgles-server").TableHooksDefinition<Required<{
369
371
  connection_id?: null | string;
370
372
  created?: null | string;
@@ -381,7 +383,7 @@ export declare const tableHooks: {
381
383
  page: "/server-settings";
382
384
  section: "security" | "auth" | "cloud" | "mcpServers" | "llmProviders" | "services";
383
385
  };
384
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
386
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
385
387
  readonly backups?: import("prostgles-server").TableHooksDefinition<Required<{
386
388
  connection_details?: string;
387
389
  connection_id?: null | string;
@@ -467,7 +469,7 @@ export declare const tableHooks: {
467
469
  total?: number;
468
470
  };
469
471
  uploaded?: null | string;
470
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
472
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
471
473
  readonly connections?: import("prostgles-server").TableHooksDefinition<Required<{
472
474
  config?: null | {
473
475
  enabled: boolean;
@@ -617,11 +619,11 @@ export declare const tableHooks: {
617
619
  user_id?: null | string;
618
620
  web_app_directory?: null | string;
619
621
  web_app_templated?: null | boolean;
620
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
622
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
621
623
  readonly credential_types?: import("prostgles-server").TableHooksDefinition<Required<{
622
624
  description?: null | string;
623
625
  id: "AWS" | "Cloudflare";
624
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
626
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
625
627
  readonly credentials?: import("prostgles-server").TableHooksDefinition<Required<{
626
628
  bucket?: null | string;
627
629
  endpoint_url?: string;
@@ -632,13 +634,13 @@ export declare const tableHooks: {
632
634
  region?: null | string;
633
635
  type: "AWS" | "Cloudflare";
634
636
  user_id?: null | string;
635
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
637
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
636
638
  readonly database_config_logs?: import("prostgles-server").TableHooksDefinition<Required<{
637
639
  id?: number;
638
640
  on_mount_logs?: null | string;
639
641
  on_run_logs?: null | string;
640
642
  table_config_logs?: null | string;
641
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
643
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
642
644
  readonly database_configs?: import("prostgles-server").TableHooksDefinition<Required<{
643
645
  allowed_ips?: string[];
644
646
  allowed_ips_enabled?: boolean;
@@ -889,7 +891,7 @@ export declare const tableHooks: {
889
891
  };
890
892
  tableConfig?: null | any;
891
893
  trust_proxy?: boolean;
892
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
894
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
893
895
  readonly docker_containers?: import("prostgles-server").TableHooksDefinition<Required<{
894
896
  chat_id: number;
895
897
  configuration: {
@@ -982,7 +984,7 @@ export declare const tableHooks: {
982
984
  tool_use_id: string;
983
985
  user_id: string;
984
986
  user_input_value: Record<string, unknown>;
985
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
987
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
986
988
  readonly global_settings?: import("prostgles-server").TableHooksDefinition<Required<{
987
989
  id?: number;
988
990
  mcp_servers_disabled?: boolean;
@@ -993,7 +995,7 @@ export declare const tableHooks: {
993
995
  };
994
996
  updated_at?: string;
995
997
  updated_by?: "user" | "app";
996
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
998
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
997
999
  readonly links?: import("prostgles-server").TableHooksDefinition<Required<{
998
1000
  closed?: null | boolean;
999
1001
  created?: null | string;
@@ -1150,7 +1152,7 @@ export declare const tableHooks: {
1150
1152
  w1_id: string;
1151
1153
  w2_id: string;
1152
1154
  workspace_id?: null | string;
1153
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1155
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1154
1156
  readonly llm_chats?: import("prostgles-server").TableHooksDefinition<Required<{
1155
1157
  agent_info?: null | {
1156
1158
  type: "orchestrator";
@@ -1284,20 +1286,20 @@ export declare const tableHooks: {
1284
1286
  timestamp: string;
1285
1287
  };
1286
1288
  user_id: string;
1287
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1289
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1288
1290
  readonly llm_chats_allowed_functions?: import("prostgles-server").TableHooksDefinition<Required<{
1289
1291
  auto_approve?: null | boolean;
1290
1292
  chat_id: number;
1291
1293
  connection_id: string;
1292
1294
  server_function_id: number;
1293
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1295
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1294
1296
  readonly llm_chats_allowed_mcp_tools?: import("prostgles-server").TableHooksDefinition<Required<{
1295
1297
  auto_approve?: null | boolean;
1296
1298
  chat_id: number;
1297
1299
  server_config_id?: null | number;
1298
1300
  server_name: string;
1299
1301
  tool_id: number;
1300
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1302
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1301
1303
  readonly llm_messages?: import("prostgles-server").TableHooksDefinition<Required<{
1302
1304
  chat_id: number;
1303
1305
  cost?: number | string;
@@ -1356,7 +1358,7 @@ export declare const tableHooks: {
1356
1358
  meta?: null | any;
1357
1359
  total_tokens: number;
1358
1360
  user_id?: null | string;
1359
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1361
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1360
1362
  readonly llm_models?: import("prostgles-server").TableHooksDefinition<Required<{
1361
1363
  agent_suitability_rank?: null | number;
1362
1364
  architecture?: null | {
@@ -1402,7 +1404,7 @@ export declare const tableHooks: {
1402
1404
  };
1403
1405
  provider_id: string;
1404
1406
  supported_parameters?: null | (string)[];
1405
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1407
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1406
1408
  readonly llm_prompts?: import("prostgles-server").TableHooksDefinition<Required<{
1407
1409
  created?: null | string;
1408
1410
  description?: null | string;
@@ -1417,7 +1419,7 @@ export declare const tableHooks: {
1417
1419
  };
1418
1420
  prompt?: string;
1419
1421
  user_id?: null | string;
1420
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1422
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1421
1423
  readonly llm_providers?: import("prostgles-server").TableHooksDefinition<Required<{
1422
1424
  api_docs_url?: null | string;
1423
1425
  api_pricing_url?: null | string;
@@ -1440,7 +1442,7 @@ export declare const tableHooks: {
1440
1442
  extra_headers?: null | Record<string, string>;
1441
1443
  id: string;
1442
1444
  logo_url?: null | string;
1443
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1445
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1444
1446
  readonly login_attempts?: import("prostgles-server").TableHooksDefinition<Required<{
1445
1447
  auth_provider?: null | string;
1446
1448
  auth_type: "session-id" | "registration" | "email-confirmation" | "magic-link-registration" | "magic-link" | "otp-code" | "login" | "oauth";
@@ -1456,7 +1458,7 @@ export declare const tableHooks: {
1456
1458
  user_agent: string;
1457
1459
  username?: null | string;
1458
1460
  x_real_ip: string;
1459
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1461
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1460
1462
  readonly logs?: import("prostgles-server").TableHooksDefinition<Required<{
1461
1463
  command?: null | string;
1462
1464
  connection_id?: null | string;
@@ -1471,7 +1473,7 @@ export declare const tableHooks: {
1471
1473
  table_name?: null | string;
1472
1474
  tx_info?: null | any;
1473
1475
  type?: null | string;
1474
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1476
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1475
1477
  readonly magic_links?: import("prostgles-server").TableHooksDefinition<Required<{
1476
1478
  expires: number | string;
1477
1479
  id?: string;
@@ -1479,7 +1481,7 @@ export declare const tableHooks: {
1479
1481
  magic_link_used?: null | string;
1480
1482
  session_expires?: number | string;
1481
1483
  user_id: string;
1482
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1484
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1483
1485
  readonly mcp_server_configs?: import("prostgles-server").TableHooksDefinition<Required<{
1484
1486
  config: {
1485
1487
  type: "OAuth";
@@ -1562,7 +1564,7 @@ export declare const tableHooks: {
1562
1564
  };
1563
1565
  oauth_request_id?: null | string;
1564
1566
  server_name: string;
1565
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1567
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1566
1568
  readonly mcp_server_logs?: import("prostgles-server").TableHooksDefinition<Required<{
1567
1569
  error?: null | string;
1568
1570
  id?: number;
@@ -1571,7 +1573,7 @@ export declare const tableHooks: {
1571
1573
  last_updated?: null | string;
1572
1574
  log?: string;
1573
1575
  server_name: string;
1574
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1576
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1575
1577
  readonly mcp_server_tool_calls?: import("prostgles-server").TableHooksDefinition<Required<{
1576
1578
  called_at?: string;
1577
1579
  chat_id?: null | number;
@@ -1587,7 +1589,7 @@ export declare const tableHooks: {
1587
1589
  output?: null | Record<string, unknown>;
1588
1590
  tool_use_id?: null | string;
1589
1591
  user_id?: null | string;
1590
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1592
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1591
1593
  readonly mcp_server_tools?: import("prostgles-server").TableHooksDefinition<Required<{
1592
1594
  annotations?: null | {
1593
1595
  title?: string;
@@ -1610,7 +1612,7 @@ export declare const tableHooks: {
1610
1612
  name: string;
1611
1613
  outputSchema?: null | Record<string, unknown>;
1612
1614
  server_name: string;
1613
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1615
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1614
1616
  readonly mcp_servers?: import("prostgles-server").TableHooksDefinition<Required<{
1615
1617
  args?: null | string[];
1616
1618
  capabilities?: null | {
@@ -1701,7 +1703,7 @@ export declare const tableHooks: {
1701
1703
  };
1702
1704
  stderr?: null | string;
1703
1705
  url?: null | string;
1704
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1706
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1705
1707
  readonly mcp_tool_approval_requests?: import("prostgles-server").TableHooksDefinition<Required<{
1706
1708
  chat_id: number;
1707
1709
  connection_id?: null | string;
@@ -1723,7 +1725,7 @@ export declare const tableHooks: {
1723
1725
  tool_use_id: string;
1724
1726
  updated?: null | string;
1725
1727
  user_id: string;
1726
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1728
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1727
1729
  readonly published_methods?: import("prostgles-server").TableHooksDefinition<Required<{
1728
1730
  arguments?: ({
1729
1731
  name: string;
@@ -1773,11 +1775,11 @@ export declare const tableHooks: {
1773
1775
  package?: null | any;
1774
1776
  run?: string;
1775
1777
  tsconfig?: null | any;
1776
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1778
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1777
1779
  readonly schema_version?: import("prostgles-server").TableHooksDefinition<Required<{
1778
1780
  id: number | string;
1779
1781
  table_config: any;
1780
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1782
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1781
1783
  readonly services?: import("prostgles-server").TableHooksDefinition<Required<{
1782
1784
  build_hash?: null | string;
1783
1785
  configs?: null | Record<string, {
@@ -1799,10 +1801,10 @@ export declare const tableHooks: {
1799
1801
  name: string;
1800
1802
  selected_config_options?: null | Record<string, string>;
1801
1803
  status: "stopped" | "starting" | "running" | "error" | "building" | "building-done" | "build-error";
1802
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1804
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1803
1805
  readonly session_types?: import("prostgles-server").TableHooksDefinition<Required<{
1804
1806
  id: "web" | "api_token" | "mobile";
1805
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1807
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1806
1808
  readonly sessions?: import("prostgles-server").TableHooksDefinition<Required<{
1807
1809
  active?: null | boolean;
1808
1810
  created?: null | string;
@@ -1820,7 +1822,7 @@ export declare const tableHooks: {
1820
1822
  user_agent?: null | string;
1821
1823
  user_id: string;
1822
1824
  user_type: string;
1823
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1825
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1824
1826
  readonly stats?: import("prostgles-server").TableHooksDefinition<Required<{
1825
1827
  application_name?: null | string;
1826
1828
  backend_start?: null | string;
@@ -1852,14 +1854,14 @@ export declare const tableHooks: {
1852
1854
  wait_event?: null | string;
1853
1855
  wait_event_type?: null | string;
1854
1856
  xact_start?: null | string;
1855
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1857
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1856
1858
  readonly user_statuses?: import("prostgles-server").TableHooksDefinition<Required<{
1857
1859
  id: "active" | "disabled" | "public";
1858
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1860
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1859
1861
  readonly user_types?: import("prostgles-server").TableHooksDefinition<Required<{
1860
1862
  description?: null | string;
1861
1863
  id: "admin" | "public" | "default";
1862
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
1864
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
1863
1865
  readonly users: import("prostgles-server").TableHooksDefinition<Required<{
1864
1866
  "2fa"?: null | {
1865
1867
  secret: string;
@@ -1913,7 +1915,7 @@ export declare const tableHooks: {
1913
1915
  status?: "active" | "disabled" | "public";
1914
1916
  type?: "admin" | "public" | "default";
1915
1917
  username: string;
1916
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | {
1918
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | {
1917
1919
  readonly beforeEach: [{
1918
1920
  readonly commands: {
1919
1921
  readonly insert: 1;
@@ -1975,6 +1977,7 @@ export declare const tableHooks: {
1975
1977
  }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> & {
1976
1978
  localParams: undefined | import("prostgles-server/dist/DboBuilder/DboBuilderTypes").LocalParams;
1977
1979
  hookContext: import("prostgles-types").AnyObject | undefined;
1980
+ context: undefined;
1978
1981
  }) => {
1979
1982
  row: {
1980
1983
  password: string;
@@ -2079,12 +2082,12 @@ export declare const tableHooks: {
2079
2082
  type?: null | "map" | "sql" | "table" | "timechart" | "card" | "method" | "barchart";
2080
2083
  user_id: string;
2081
2084
  workspace_id?: null | string;
2082
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
2085
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
2083
2086
  readonly workspace_layout_modes?: import("prostgles-server").TableHooksDefinition<Required<{
2084
2087
  description?: null | string;
2085
2088
  en?: null | string;
2086
2089
  id: "fixed" | "editable";
2087
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
2090
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
2088
2091
  readonly workspaces?: import("prostgles-server").TableHooksDefinition<Required<{
2089
2092
  active_row?: null | any;
2090
2093
  connection_id: string;
@@ -2113,6 +2116,6 @@ export declare const tableHooks: {
2113
2116
  };
2114
2117
  url_path?: null | string;
2115
2118
  user_id: string;
2116
- }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> | undefined;
2119
+ }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>, undefined> | undefined;
2117
2120
  };
2118
2121
  //# sourceMappingURL=tableHooks.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tableHooks.d.ts","sourceRoot":"","sources":["../../../../src/tableHooks/tableHooks.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tableHooks.d.ts","sourceRoot":"","sources":["../../../../src/tableHooks/tableHooks.ts"],"names":[],"mappings":"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"}
@@ -62,6 +62,7 @@ export declare const usersTableHooks: {
62
62
  }>, import("prostgles-server").DBOFullyTyped<DBGeneratedSchema>> & {
63
63
  localParams: undefined | import("prostgles-server/dist/DboBuilder/DboBuilderTypes").LocalParams;
64
64
  hookContext: import("prostgles-types").AnyObject | undefined;
65
+ context: undefined;
65
66
  }) => {
66
67
  row: {
67
68
  password: string;
@@ -1 +1 @@
1
- {"version":3,"file":"users.tableHooks.d.ts","sourceRoot":"","sources":["../../../../src/tableHooks/users.tableHooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAInE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;+BA0Cgx9C,CAAC;qCAA8B,CAAC;iCAA0B,CAAC;oCAA6B,CAAC;yBAAkB,CAAC;8BAAgD,CAAC;kCAA6D,CAAC;4CAA+C,CAAC;yCAAuD,CAAC;2BAAoB,CAAC;;;;;;;;;;;;;;;;;;2BAA8X,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAAvtB,CAAC;yCAA8B,CAAC;qCAA0B,CAAC;wCAA6B,CAAC;6BAAkB,CAAC;kCAAgD,CAAC;sCAA6D,CAAC;gDAA+C,CAAC;6CAAuD,CAAC;+BAAoB,CAAC;;;;;;;;;;;;;;;;;+BAA8X,CAAC;;;;;;;;;;;;;;CADj9+C,CAAC"}
1
+ {"version":3,"file":"users.tableHooks.d.ts","sourceRoot":"","sources":["../../../../src/tableHooks/users.tableHooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAInE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;+BA0Cgx9C,CAAC;qCAA8B,CAAC;iCAA0B,CAAC;oCAA6B,CAAC;yBAAkB,CAAC;8BAAgD,CAAC;kCAA6D,CAAC;4CAA+C,CAAC;yCAAuD,CAAC;2BAAoB,CAAC;;;;;;;;;;;;;;;;;;2BAA8X,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAAvtB,CAAC;yCAA8B,CAAC;qCAA0B,CAAC;wCAA6B,CAAC;6BAAkB,CAAC;kCAAgD,CAAC;sCAA6D,CAAC;gDAA+C,CAAC;6CAAuD,CAAC;+BAAoB,CAAC;;;;;;;;;;;;;;;;;+BAA8X,CAAC;;;;;;;;;;;;;;CADj9+C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prostgles/prostgles",
3
- "version": "2.3.6-dev.1787309399",
3
+ "version": "2.3.6-dev.1787331887",
4
4
  "description": "Prostgles UI runtime and configurable PostgreSQL dashboard",
5
5
  "main": "dist/server/src/schemaConfig.js",
6
6
  "bin": {
@@ -56,7 +56,7 @@
56
56
  "pg": "^8.23.0",
57
57
  "pidusage": "^4.0.1",
58
58
  "prostgles-client": "^4.0.386",
59
- "prostgles-server": "^4.2.599",
59
+ "prostgles-server": "^4.2.601",
60
60
  "qrcode": "^1.5.4",
61
61
  "simple-git": "^3.36.0",
62
62
  "smtp-server": "^3.19.3",