@objectstack/service-storage 11.7.0 → 11.10.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
@@ -756,7 +756,6 @@ declare const SystemFile: Omit<{
756
756
  } | undefined;
757
757
  } | undefined;
758
758
  highlightFields?: string[] | undefined;
759
- compactLayout?: string[] | undefined;
760
759
  stageField?: string | false | undefined;
761
760
  listViews?: Record<string, {
762
761
  type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
@@ -1203,7 +1202,7 @@ declare const SystemFile: Omit<{
1203
1202
  readonly description: "Storage service file metadata (fileId ↔ key mapping)";
1204
1203
  readonly nameField: "name";
1205
1204
  readonly titleFormat: "{name}";
1206
- readonly compactLayout: ["name", "mime_type", "size", "status", "created_at"];
1205
+ readonly highlightFields: ["name", "mime_type", "size", "status", "created_at"];
1207
1206
  readonly fields: {
1208
1207
  readonly id: {
1209
1208
  readonly readonly?: boolean | undefined;
@@ -3976,7 +3975,6 @@ declare const SystemUploadSession: Omit<{
3976
3975
  } | undefined;
3977
3976
  } | undefined;
3978
3977
  highlightFields?: string[] | undefined;
3979
- compactLayout?: string[] | undefined;
3980
3978
  stageField?: string | false | undefined;
3981
3979
  listViews?: Record<string, {
3982
3980
  type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
@@ -4423,7 +4421,7 @@ declare const SystemUploadSession: Omit<{
4423
4421
  readonly description: "Resumable multipart upload sessions tracked by service-storage";
4424
4422
  readonly nameField: "filename";
4425
4423
  readonly titleFormat: "{filename}";
4426
- readonly compactLayout: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"];
4424
+ readonly highlightFields: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"];
4427
4425
  readonly fields: {
4428
4426
  readonly id: {
4429
4427
  readonly readonly?: boolean | undefined;
package/dist/index.d.ts CHANGED
@@ -756,7 +756,6 @@ declare const SystemFile: Omit<{
756
756
  } | undefined;
757
757
  } | undefined;
758
758
  highlightFields?: string[] | undefined;
759
- compactLayout?: string[] | undefined;
760
759
  stageField?: string | false | undefined;
761
760
  listViews?: Record<string, {
762
761
  type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
@@ -1203,7 +1202,7 @@ declare const SystemFile: Omit<{
1203
1202
  readonly description: "Storage service file metadata (fileId ↔ key mapping)";
1204
1203
  readonly nameField: "name";
1205
1204
  readonly titleFormat: "{name}";
1206
- readonly compactLayout: ["name", "mime_type", "size", "status", "created_at"];
1205
+ readonly highlightFields: ["name", "mime_type", "size", "status", "created_at"];
1207
1206
  readonly fields: {
1208
1207
  readonly id: {
1209
1208
  readonly readonly?: boolean | undefined;
@@ -3976,7 +3975,6 @@ declare const SystemUploadSession: Omit<{
3976
3975
  } | undefined;
3977
3976
  } | undefined;
3978
3977
  highlightFields?: string[] | undefined;
3979
- compactLayout?: string[] | undefined;
3980
3978
  stageField?: string | false | undefined;
3981
3979
  listViews?: Record<string, {
3982
3980
  type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
@@ -4423,7 +4421,7 @@ declare const SystemUploadSession: Omit<{
4423
4421
  readonly description: "Resumable multipart upload sessions tracked by service-storage";
4424
4422
  readonly nameField: "filename";
4425
4423
  readonly titleFormat: "{filename}";
4426
- readonly compactLayout: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"];
4424
+ readonly highlightFields: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"];
4427
4425
  readonly fields: {
4428
4426
  readonly id: {
4429
4427
  readonly readonly?: boolean | undefined;
package/dist/index.js CHANGED
@@ -1063,7 +1063,7 @@ var SystemFile = ObjectSchema.create({
1063
1063
  nameField: "name",
1064
1064
  // [ADR-0079] canonical primary-title pointer (single-field titleFormat)
1065
1065
  titleFormat: "{name}",
1066
- compactLayout: ["name", "mime_type", "size", "status", "created_at"],
1066
+ highlightFields: ["name", "mime_type", "size", "status", "created_at"],
1067
1067
  fields: {
1068
1068
  id: Field.text({
1069
1069
  label: "File ID",
@@ -1144,7 +1144,7 @@ var SystemUploadSession = ObjectSchema2.create({
1144
1144
  nameField: "filename",
1145
1145
  // [ADR-0079] canonical primary-title pointer (single-field titleFormat)
1146
1146
  titleFormat: "{filename}",
1147
- compactLayout: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"],
1147
+ highlightFields: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"],
1148
1148
  fields: {
1149
1149
  id: Field2.text({
1150
1150
  label: "Upload Session ID",