@objectstack/platform-objects 5.2.0 → 6.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.
@@ -8169,7 +8169,7 @@ declare const SysActivity: Omit<{
8169
8169
  readonly index?: boolean | undefined;
8170
8170
  readonly type: "url";
8171
8171
  };
8172
- readonly project_id: {
8172
+ readonly environment_id: {
8173
8173
  readonly readonly?: boolean | undefined;
8174
8174
  readonly format?: string | undefined;
8175
8175
  readonly options?: {
@@ -8529,7 +8529,7 @@ declare const SysActivity: Omit<{
8529
8529
  }, {
8530
8530
  readonly fields: ["type"];
8531
8531
  }, {
8532
- readonly fields: ["project_id"];
8532
+ readonly fields: ["environment_id"];
8533
8533
  }];
8534
8534
  readonly enable: {
8535
8535
  readonly trackHistory: false;
@@ -8169,7 +8169,7 @@ declare const SysActivity: Omit<{
8169
8169
  readonly index?: boolean | undefined;
8170
8170
  readonly type: "url";
8171
8171
  };
8172
- readonly project_id: {
8172
+ readonly environment_id: {
8173
8173
  readonly readonly?: boolean | undefined;
8174
8174
  readonly format?: string | undefined;
8175
8175
  readonly options?: {
@@ -8529,7 +8529,7 @@ declare const SysActivity: Omit<{
8529
8529
  }, {
8530
8530
  readonly fields: ["type"];
8531
8531
  }, {
8532
- readonly fields: ["project_id"];
8532
+ readonly fields: ["environment_id"];
8533
8533
  }];
8534
8534
  readonly enable: {
8535
8535
  readonly trackHistory: false;
@@ -383,12 +383,12 @@ var SysActivity = data.ObjectSchema.create({
383
383
  group: "Target"
384
384
  }),
385
385
  // ── Context ──────────────────────────────────────────────────
386
- project_id: data.Field.lookup("sys_project", {
387
- label: "Project",
386
+ environment_id: data.Field.lookup("sys_environment", {
387
+ label: "Environment",
388
388
  required: false,
389
389
  readonly: true,
390
390
  searchable: true,
391
- description: "Project context (multi-project deployments)",
391
+ description: "Environment context (multi-environment deployments)",
392
392
  group: "Context"
393
393
  }),
394
394
  metadata: data.Field.textarea({
@@ -404,7 +404,7 @@ var SysActivity = data.ObjectSchema.create({
404
404
  { fields: ["actor_id"] },
405
405
  { fields: ["object_name", "record_id"] },
406
406
  { fields: ["type"] },
407
- { fields: ["project_id"] }
407
+ { fields: ["environment_id"] }
408
408
  ],
409
409
  enable: {
410
410
  trackHistory: false,