@objectstack/objectql 6.9.0 → 7.0.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/index.d.mts CHANGED
@@ -399,6 +399,7 @@ declare class ObjectStackProtocolImplementation implements ObjectStackProtocol {
399
399
  collapsed: boolean;
400
400
  columns: 1 | 2 | 3 | 4;
401
401
  fields: any[];
402
+ name?: string | undefined;
402
403
  label?: string | undefined;
403
404
  description?: string | undefined;
404
405
  visibleOn?: {
@@ -424,6 +425,7 @@ declare class ObjectStackProtocolImplementation implements ObjectStackProtocol {
424
425
  collapsed: boolean;
425
426
  columns: 1 | 2 | 3 | 4;
426
427
  fields: any[];
428
+ name?: string | undefined;
427
429
  label?: string | undefined;
428
430
  description?: string | undefined;
429
431
  visibleOn?: {
package/dist/index.d.ts CHANGED
@@ -399,6 +399,7 @@ declare class ObjectStackProtocolImplementation implements ObjectStackProtocol {
399
399
  collapsed: boolean;
400
400
  columns: 1 | 2 | 3 | 4;
401
401
  fields: any[];
402
+ name?: string | undefined;
402
403
  label?: string | undefined;
403
404
  description?: string | undefined;
404
405
  visibleOn?: {
@@ -424,6 +425,7 @@ declare class ObjectStackProtocolImplementation implements ObjectStackProtocol {
424
425
  collapsed: boolean;
425
426
  columns: 1 | 2 | 3 | 4;
426
427
  fields: any[];
428
+ name?: string | undefined;
427
429
  label?: string | undefined;
428
430
  description?: string | undefined;
429
431
  visibleOn?: {
package/dist/index.js CHANGED
@@ -1232,27 +1232,7 @@ var TYPE_TO_SCHEMA = {
1232
1232
  job: import_system.JobSchema,
1233
1233
  hook: import_data2.HookSchema
1234
1234
  };
1235
- var TYPE_TO_FORM = {
1236
- object: import_data2.objectForm,
1237
- field: import_data2.fieldForm,
1238
- hook: import_data2.hookForm,
1239
- report: import_ui2.reportForm,
1240
- view: import_ui2.viewForm,
1241
- app: import_ui2.appForm,
1242
- dashboard: import_ui2.dashboardForm,
1243
- role: import_identity.roleForm,
1244
- action: import_ui2.actionForm,
1245
- page: import_ui2.pageForm,
1246
- agent: import_ai.agentForm,
1247
- tool: import_ai.toolForm,
1248
- skill: import_ai.skillForm,
1249
- flow: import_automation.flowForm,
1250
- workflow: import_automation.workflowForm,
1251
- approval: import_automation.approvalForm,
1252
- permission: import_security.permissionForm,
1253
- profile: import_security.permissionForm,
1254
- email_template: import_system.emailTemplateForm
1255
- };
1235
+ var TYPE_TO_FORM = import_system.METADATA_FORM_REGISTRY;
1256
1236
  var _jsonSchemaCache = /* @__PURE__ */ new WeakMap();
1257
1237
  function toJsonSchemaSafe(schema) {
1258
1238
  const cached = _jsonSchemaCache.get(schema);