@objectstack/service-storage 9.2.0 → 9.3.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 +68 -2
- package/dist/index.d.ts +68 -2
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -863,6 +863,37 @@ declare const SystemFile: Omit<{
|
|
|
863
863
|
}[] | undefined;
|
|
864
864
|
searchableFields?: string[] | undefined;
|
|
865
865
|
filterableFields?: string[] | undefined;
|
|
866
|
+
userFilters?: {
|
|
867
|
+
element: "toggle" | "tabs" | "dropdown";
|
|
868
|
+
fields?: {
|
|
869
|
+
field: string;
|
|
870
|
+
label?: string | undefined;
|
|
871
|
+
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
872
|
+
options?: {
|
|
873
|
+
value: string | number | boolean;
|
|
874
|
+
label: string;
|
|
875
|
+
color?: string | undefined;
|
|
876
|
+
}[] | undefined;
|
|
877
|
+
showCount?: boolean | undefined;
|
|
878
|
+
defaultValues?: (string | number | boolean)[] | undefined;
|
|
879
|
+
}[] | undefined;
|
|
880
|
+
tabs?: {
|
|
881
|
+
name: string;
|
|
882
|
+
pinned: boolean;
|
|
883
|
+
isDefault: boolean;
|
|
884
|
+
visible: boolean;
|
|
885
|
+
label?: string | undefined;
|
|
886
|
+
icon?: string | undefined;
|
|
887
|
+
view?: string | undefined;
|
|
888
|
+
filter?: {
|
|
889
|
+
field: string;
|
|
890
|
+
operator: string;
|
|
891
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
892
|
+
}[] | undefined;
|
|
893
|
+
order?: number | undefined;
|
|
894
|
+
}[] | undefined;
|
|
895
|
+
showAllRecords?: boolean | undefined;
|
|
896
|
+
} | undefined;
|
|
866
897
|
resizable?: boolean | undefined;
|
|
867
898
|
striped?: boolean | undefined;
|
|
868
899
|
bordered?: boolean | undefined;
|
|
@@ -975,7 +1006,7 @@ declare const SystemFile: Omit<{
|
|
|
975
1006
|
} | undefined;
|
|
976
1007
|
appearance?: {
|
|
977
1008
|
showDescription: boolean;
|
|
978
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
1009
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
979
1010
|
} | undefined;
|
|
980
1011
|
tabs?: {
|
|
981
1012
|
name: string;
|
|
@@ -1169,6 +1200,8 @@ declare const SystemFile: Omit<{
|
|
|
1169
1200
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
1170
1201
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
1171
1202
|
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
1203
|
+
opensInNewTab?: boolean | undefined;
|
|
1204
|
+
newTabUrl?: string | undefined;
|
|
1172
1205
|
timeout?: number | undefined;
|
|
1173
1206
|
aria?: {
|
|
1174
1207
|
ariaLabel?: string | undefined;
|
|
@@ -4572,6 +4605,37 @@ declare const SystemUploadSession: Omit<{
|
|
|
4572
4605
|
}[] | undefined;
|
|
4573
4606
|
searchableFields?: string[] | undefined;
|
|
4574
4607
|
filterableFields?: string[] | undefined;
|
|
4608
|
+
userFilters?: {
|
|
4609
|
+
element: "toggle" | "tabs" | "dropdown";
|
|
4610
|
+
fields?: {
|
|
4611
|
+
field: string;
|
|
4612
|
+
label?: string | undefined;
|
|
4613
|
+
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4614
|
+
options?: {
|
|
4615
|
+
value: string | number | boolean;
|
|
4616
|
+
label: string;
|
|
4617
|
+
color?: string | undefined;
|
|
4618
|
+
}[] | undefined;
|
|
4619
|
+
showCount?: boolean | undefined;
|
|
4620
|
+
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4621
|
+
}[] | undefined;
|
|
4622
|
+
tabs?: {
|
|
4623
|
+
name: string;
|
|
4624
|
+
pinned: boolean;
|
|
4625
|
+
isDefault: boolean;
|
|
4626
|
+
visible: boolean;
|
|
4627
|
+
label?: string | undefined;
|
|
4628
|
+
icon?: string | undefined;
|
|
4629
|
+
view?: string | undefined;
|
|
4630
|
+
filter?: {
|
|
4631
|
+
field: string;
|
|
4632
|
+
operator: string;
|
|
4633
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4634
|
+
}[] | undefined;
|
|
4635
|
+
order?: number | undefined;
|
|
4636
|
+
}[] | undefined;
|
|
4637
|
+
showAllRecords?: boolean | undefined;
|
|
4638
|
+
} | undefined;
|
|
4575
4639
|
resizable?: boolean | undefined;
|
|
4576
4640
|
striped?: boolean | undefined;
|
|
4577
4641
|
bordered?: boolean | undefined;
|
|
@@ -4684,7 +4748,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4684
4748
|
} | undefined;
|
|
4685
4749
|
appearance?: {
|
|
4686
4750
|
showDescription: boolean;
|
|
4687
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
4751
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
4688
4752
|
} | undefined;
|
|
4689
4753
|
tabs?: {
|
|
4690
4754
|
name: string;
|
|
@@ -4878,6 +4942,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4878
4942
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
4879
4943
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
4880
4944
|
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
4945
|
+
opensInNewTab?: boolean | undefined;
|
|
4946
|
+
newTabUrl?: string | undefined;
|
|
4881
4947
|
timeout?: number | undefined;
|
|
4882
4948
|
aria?: {
|
|
4883
4949
|
ariaLabel?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -863,6 +863,37 @@ declare const SystemFile: Omit<{
|
|
|
863
863
|
}[] | undefined;
|
|
864
864
|
searchableFields?: string[] | undefined;
|
|
865
865
|
filterableFields?: string[] | undefined;
|
|
866
|
+
userFilters?: {
|
|
867
|
+
element: "toggle" | "tabs" | "dropdown";
|
|
868
|
+
fields?: {
|
|
869
|
+
field: string;
|
|
870
|
+
label?: string | undefined;
|
|
871
|
+
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
872
|
+
options?: {
|
|
873
|
+
value: string | number | boolean;
|
|
874
|
+
label: string;
|
|
875
|
+
color?: string | undefined;
|
|
876
|
+
}[] | undefined;
|
|
877
|
+
showCount?: boolean | undefined;
|
|
878
|
+
defaultValues?: (string | number | boolean)[] | undefined;
|
|
879
|
+
}[] | undefined;
|
|
880
|
+
tabs?: {
|
|
881
|
+
name: string;
|
|
882
|
+
pinned: boolean;
|
|
883
|
+
isDefault: boolean;
|
|
884
|
+
visible: boolean;
|
|
885
|
+
label?: string | undefined;
|
|
886
|
+
icon?: string | undefined;
|
|
887
|
+
view?: string | undefined;
|
|
888
|
+
filter?: {
|
|
889
|
+
field: string;
|
|
890
|
+
operator: string;
|
|
891
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
892
|
+
}[] | undefined;
|
|
893
|
+
order?: number | undefined;
|
|
894
|
+
}[] | undefined;
|
|
895
|
+
showAllRecords?: boolean | undefined;
|
|
896
|
+
} | undefined;
|
|
866
897
|
resizable?: boolean | undefined;
|
|
867
898
|
striped?: boolean | undefined;
|
|
868
899
|
bordered?: boolean | undefined;
|
|
@@ -975,7 +1006,7 @@ declare const SystemFile: Omit<{
|
|
|
975
1006
|
} | undefined;
|
|
976
1007
|
appearance?: {
|
|
977
1008
|
showDescription: boolean;
|
|
978
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
1009
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
979
1010
|
} | undefined;
|
|
980
1011
|
tabs?: {
|
|
981
1012
|
name: string;
|
|
@@ -1169,6 +1200,8 @@ declare const SystemFile: Omit<{
|
|
|
1169
1200
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
1170
1201
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
1171
1202
|
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
1203
|
+
opensInNewTab?: boolean | undefined;
|
|
1204
|
+
newTabUrl?: string | undefined;
|
|
1172
1205
|
timeout?: number | undefined;
|
|
1173
1206
|
aria?: {
|
|
1174
1207
|
ariaLabel?: string | undefined;
|
|
@@ -4572,6 +4605,37 @@ declare const SystemUploadSession: Omit<{
|
|
|
4572
4605
|
}[] | undefined;
|
|
4573
4606
|
searchableFields?: string[] | undefined;
|
|
4574
4607
|
filterableFields?: string[] | undefined;
|
|
4608
|
+
userFilters?: {
|
|
4609
|
+
element: "toggle" | "tabs" | "dropdown";
|
|
4610
|
+
fields?: {
|
|
4611
|
+
field: string;
|
|
4612
|
+
label?: string | undefined;
|
|
4613
|
+
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4614
|
+
options?: {
|
|
4615
|
+
value: string | number | boolean;
|
|
4616
|
+
label: string;
|
|
4617
|
+
color?: string | undefined;
|
|
4618
|
+
}[] | undefined;
|
|
4619
|
+
showCount?: boolean | undefined;
|
|
4620
|
+
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4621
|
+
}[] | undefined;
|
|
4622
|
+
tabs?: {
|
|
4623
|
+
name: string;
|
|
4624
|
+
pinned: boolean;
|
|
4625
|
+
isDefault: boolean;
|
|
4626
|
+
visible: boolean;
|
|
4627
|
+
label?: string | undefined;
|
|
4628
|
+
icon?: string | undefined;
|
|
4629
|
+
view?: string | undefined;
|
|
4630
|
+
filter?: {
|
|
4631
|
+
field: string;
|
|
4632
|
+
operator: string;
|
|
4633
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4634
|
+
}[] | undefined;
|
|
4635
|
+
order?: number | undefined;
|
|
4636
|
+
}[] | undefined;
|
|
4637
|
+
showAllRecords?: boolean | undefined;
|
|
4638
|
+
} | undefined;
|
|
4575
4639
|
resizable?: boolean | undefined;
|
|
4576
4640
|
striped?: boolean | undefined;
|
|
4577
4641
|
bordered?: boolean | undefined;
|
|
@@ -4684,7 +4748,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4684
4748
|
} | undefined;
|
|
4685
4749
|
appearance?: {
|
|
4686
4750
|
showDescription: boolean;
|
|
4687
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
4751
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
4688
4752
|
} | undefined;
|
|
4689
4753
|
tabs?: {
|
|
4690
4754
|
name: string;
|
|
@@ -4878,6 +4942,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4878
4942
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
4879
4943
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
4880
4944
|
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
4945
|
+
opensInNewTab?: boolean | undefined;
|
|
4946
|
+
newTabUrl?: string | undefined;
|
|
4881
4947
|
timeout?: number | undefined;
|
|
4882
4948
|
aria?: {
|
|
4883
4949
|
ariaLabel?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-storage",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.3.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Storage Service for ObjectStack — implements IStorageService with local filesystem and S3 adapter skeleton",
|
|
6
6
|
"type": "module",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "9.
|
|
18
|
-
"@objectstack/observability": "9.
|
|
19
|
-
"@objectstack/spec": "9.
|
|
17
|
+
"@objectstack/core": "9.3.0",
|
|
18
|
+
"@objectstack/observability": "9.3.0",
|
|
19
|
+
"@objectstack/spec": "9.3.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@aws-sdk/client-s3": "^3.0.0",
|