@objectstack/cloud-connection 9.9.1 → 9.11.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.cts CHANGED
@@ -707,13 +707,32 @@ declare const CLOUD_CONNECTION_UI_BUNDLE: {
707
707
  assignedProfiles?: string[] | undefined;
708
708
  interfaceConfig?: {
709
709
  source?: string | undefined;
710
- sourceView?: string | undefined;
711
- levels?: number | undefined;
710
+ columns?: string[] | {
711
+ field: string;
712
+ label?: string | undefined;
713
+ width?: number | undefined;
714
+ align?: "left" | "center" | "right" | undefined;
715
+ hidden?: boolean | undefined;
716
+ sortable?: boolean | undefined;
717
+ resizable?: boolean | undefined;
718
+ wrap?: boolean | undefined;
719
+ type?: string | undefined;
720
+ pinned?: "left" | "right" | undefined;
721
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
722
+ link?: boolean | undefined;
723
+ action?: string | undefined;
724
+ }[] | undefined;
725
+ sort?: {
726
+ field: string;
727
+ order: "asc" | "desc";
728
+ }[] | undefined;
712
729
  filterBy?: {
713
730
  field: string;
714
731
  operator: string;
715
732
  value?: string | number | boolean | (string | number)[] | null | undefined;
716
733
  }[] | undefined;
734
+ levels?: number | undefined;
735
+ sourceView?: string | undefined;
717
736
  appearance?: {
718
737
  showDescription: boolean;
719
738
  allowedVisualizations?: ("map" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
@@ -763,6 +782,8 @@ declare const CLOUD_CONNECTION_UI_BUNDLE: {
763
782
  mode: "inline" | "form" | "modal";
764
783
  formView?: string | undefined;
765
784
  } | undefined;
785
+ buttons?: string[] | undefined;
786
+ recordAction?: "none" | "page" | "modal" | "drawer" | undefined;
766
787
  showRecordCount?: boolean | undefined;
767
788
  allowPrinting?: boolean | undefined;
768
789
  } | undefined;
package/dist/index.d.ts CHANGED
@@ -707,13 +707,32 @@ declare const CLOUD_CONNECTION_UI_BUNDLE: {
707
707
  assignedProfiles?: string[] | undefined;
708
708
  interfaceConfig?: {
709
709
  source?: string | undefined;
710
- sourceView?: string | undefined;
711
- levels?: number | undefined;
710
+ columns?: string[] | {
711
+ field: string;
712
+ label?: string | undefined;
713
+ width?: number | undefined;
714
+ align?: "left" | "center" | "right" | undefined;
715
+ hidden?: boolean | undefined;
716
+ sortable?: boolean | undefined;
717
+ resizable?: boolean | undefined;
718
+ wrap?: boolean | undefined;
719
+ type?: string | undefined;
720
+ pinned?: "left" | "right" | undefined;
721
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
722
+ link?: boolean | undefined;
723
+ action?: string | undefined;
724
+ }[] | undefined;
725
+ sort?: {
726
+ field: string;
727
+ order: "asc" | "desc";
728
+ }[] | undefined;
712
729
  filterBy?: {
713
730
  field: string;
714
731
  operator: string;
715
732
  value?: string | number | boolean | (string | number)[] | null | undefined;
716
733
  }[] | undefined;
734
+ levels?: number | undefined;
735
+ sourceView?: string | undefined;
717
736
  appearance?: {
718
737
  showDescription: boolean;
719
738
  allowedVisualizations?: ("map" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
@@ -763,6 +782,8 @@ declare const CLOUD_CONNECTION_UI_BUNDLE: {
763
782
  mode: "inline" | "form" | "modal";
764
783
  formView?: string | undefined;
765
784
  } | undefined;
785
+ buttons?: string[] | undefined;
786
+ recordAction?: "none" | "page" | "modal" | "drawer" | undefined;
766
787
  showRecordCount?: boolean | undefined;
767
788
  allowPrinting?: boolean | undefined;
768
789
  } | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/cloud-connection",
3
- "version": "9.9.1",
3
+ "version": "9.11.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Runtime-side client for an ObjectStack cloud control plane — marketplace browse proxy, install-local, device-code binding, org catalog and installed views, and the /api/v1/runtime/config discovery endpoint. Open mechanism (ADR-0008): the hub service, plan policy, and entitlements stay server-side.",
6
6
  "type": "module",
@@ -14,10 +14,10 @@
14
14
  }
15
15
  },
16
16
  "dependencies": {
17
- "@objectstack/core": "9.9.1",
18
- "@objectstack/runtime": "9.9.1",
19
- "@objectstack/spec": "9.9.1",
20
- "@objectstack/types": "9.9.1"
17
+ "@objectstack/core": "9.11.0",
18
+ "@objectstack/runtime": "9.11.0",
19
+ "@objectstack/spec": "9.11.0",
20
+ "@objectstack/types": "9.11.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^25.9.3",