@objectstack/service-storage 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 +52 -6
- package/dist/index.d.ts +52 -6
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -440,7 +440,7 @@ declare const SystemFile: Omit<{
|
|
|
440
440
|
abstract: boolean;
|
|
441
441
|
datasource: string;
|
|
442
442
|
fields: Record<string, {
|
|
443
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "
|
|
443
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
444
444
|
required: boolean;
|
|
445
445
|
searchable: boolean;
|
|
446
446
|
multiple: boolean;
|
|
@@ -875,6 +875,29 @@ declare const SystemFile: Omit<{
|
|
|
875
875
|
titleField: string;
|
|
876
876
|
progressField?: string | undefined;
|
|
877
877
|
dependenciesField?: string | undefined;
|
|
878
|
+
colorField?: string | undefined;
|
|
879
|
+
parentField?: string | undefined;
|
|
880
|
+
typeField?: string | undefined;
|
|
881
|
+
baselineStartField?: string | undefined;
|
|
882
|
+
baselineEndField?: string | undefined;
|
|
883
|
+
groupByField?: string | undefined;
|
|
884
|
+
resourceView?: boolean | undefined;
|
|
885
|
+
assigneeField?: string | undefined;
|
|
886
|
+
effortField?: string | undefined;
|
|
887
|
+
capacity?: number | undefined;
|
|
888
|
+
tooltipFields?: (string | {
|
|
889
|
+
field: string;
|
|
890
|
+
label?: string | undefined;
|
|
891
|
+
})[] | undefined;
|
|
892
|
+
quickFilters?: {
|
|
893
|
+
field: string;
|
|
894
|
+
label?: string | undefined;
|
|
895
|
+
options?: (string | {
|
|
896
|
+
value: string | number;
|
|
897
|
+
label?: string | undefined;
|
|
898
|
+
})[] | undefined;
|
|
899
|
+
}[] | undefined;
|
|
900
|
+
autoZoomToFilter?: boolean | undefined;
|
|
878
901
|
} | undefined;
|
|
879
902
|
gallery?: {
|
|
880
903
|
coverFit: "cover" | "contain";
|
|
@@ -1038,7 +1061,7 @@ declare const SystemFile: Omit<{
|
|
|
1038
1061
|
clone: boolean;
|
|
1039
1062
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
1040
1063
|
} | undefined;
|
|
1041
|
-
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1064
|
+
sharingModel?: "private" | "full" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
1042
1065
|
publicSharing?: {
|
|
1043
1066
|
enabled: boolean;
|
|
1044
1067
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1070,7 +1093,7 @@ declare const SystemFile: Omit<{
|
|
|
1070
1093
|
} | {
|
|
1071
1094
|
language: "js";
|
|
1072
1095
|
source: string;
|
|
1073
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1096
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1074
1097
|
timeoutMs?: number | undefined;
|
|
1075
1098
|
memoryMb?: number | undefined;
|
|
1076
1099
|
} | undefined;
|
|
@@ -3359,7 +3382,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3359
3382
|
abstract: boolean;
|
|
3360
3383
|
datasource: string;
|
|
3361
3384
|
fields: Record<string, {
|
|
3362
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "
|
|
3385
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3363
3386
|
required: boolean;
|
|
3364
3387
|
searchable: boolean;
|
|
3365
3388
|
multiple: boolean;
|
|
@@ -3794,6 +3817,29 @@ declare const SystemUploadSession: Omit<{
|
|
|
3794
3817
|
titleField: string;
|
|
3795
3818
|
progressField?: string | undefined;
|
|
3796
3819
|
dependenciesField?: string | undefined;
|
|
3820
|
+
colorField?: string | undefined;
|
|
3821
|
+
parentField?: string | undefined;
|
|
3822
|
+
typeField?: string | undefined;
|
|
3823
|
+
baselineStartField?: string | undefined;
|
|
3824
|
+
baselineEndField?: string | undefined;
|
|
3825
|
+
groupByField?: string | undefined;
|
|
3826
|
+
resourceView?: boolean | undefined;
|
|
3827
|
+
assigneeField?: string | undefined;
|
|
3828
|
+
effortField?: string | undefined;
|
|
3829
|
+
capacity?: number | undefined;
|
|
3830
|
+
tooltipFields?: (string | {
|
|
3831
|
+
field: string;
|
|
3832
|
+
label?: string | undefined;
|
|
3833
|
+
})[] | undefined;
|
|
3834
|
+
quickFilters?: {
|
|
3835
|
+
field: string;
|
|
3836
|
+
label?: string | undefined;
|
|
3837
|
+
options?: (string | {
|
|
3838
|
+
value: string | number;
|
|
3839
|
+
label?: string | undefined;
|
|
3840
|
+
})[] | undefined;
|
|
3841
|
+
}[] | undefined;
|
|
3842
|
+
autoZoomToFilter?: boolean | undefined;
|
|
3797
3843
|
} | undefined;
|
|
3798
3844
|
gallery?: {
|
|
3799
3845
|
coverFit: "cover" | "contain";
|
|
@@ -3957,7 +4003,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3957
4003
|
clone: boolean;
|
|
3958
4004
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3959
4005
|
} | undefined;
|
|
3960
|
-
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4006
|
+
sharingModel?: "private" | "full" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
3961
4007
|
publicSharing?: {
|
|
3962
4008
|
enabled: boolean;
|
|
3963
4009
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3989,7 +4035,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3989
4035
|
} | {
|
|
3990
4036
|
language: "js";
|
|
3991
4037
|
source: string;
|
|
3992
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4038
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
3993
4039
|
timeoutMs?: number | undefined;
|
|
3994
4040
|
memoryMb?: number | undefined;
|
|
3995
4041
|
} | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -440,7 +440,7 @@ declare const SystemFile: Omit<{
|
|
|
440
440
|
abstract: boolean;
|
|
441
441
|
datasource: string;
|
|
442
442
|
fields: Record<string, {
|
|
443
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "
|
|
443
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
444
444
|
required: boolean;
|
|
445
445
|
searchable: boolean;
|
|
446
446
|
multiple: boolean;
|
|
@@ -875,6 +875,29 @@ declare const SystemFile: Omit<{
|
|
|
875
875
|
titleField: string;
|
|
876
876
|
progressField?: string | undefined;
|
|
877
877
|
dependenciesField?: string | undefined;
|
|
878
|
+
colorField?: string | undefined;
|
|
879
|
+
parentField?: string | undefined;
|
|
880
|
+
typeField?: string | undefined;
|
|
881
|
+
baselineStartField?: string | undefined;
|
|
882
|
+
baselineEndField?: string | undefined;
|
|
883
|
+
groupByField?: string | undefined;
|
|
884
|
+
resourceView?: boolean | undefined;
|
|
885
|
+
assigneeField?: string | undefined;
|
|
886
|
+
effortField?: string | undefined;
|
|
887
|
+
capacity?: number | undefined;
|
|
888
|
+
tooltipFields?: (string | {
|
|
889
|
+
field: string;
|
|
890
|
+
label?: string | undefined;
|
|
891
|
+
})[] | undefined;
|
|
892
|
+
quickFilters?: {
|
|
893
|
+
field: string;
|
|
894
|
+
label?: string | undefined;
|
|
895
|
+
options?: (string | {
|
|
896
|
+
value: string | number;
|
|
897
|
+
label?: string | undefined;
|
|
898
|
+
})[] | undefined;
|
|
899
|
+
}[] | undefined;
|
|
900
|
+
autoZoomToFilter?: boolean | undefined;
|
|
878
901
|
} | undefined;
|
|
879
902
|
gallery?: {
|
|
880
903
|
coverFit: "cover" | "contain";
|
|
@@ -1038,7 +1061,7 @@ declare const SystemFile: Omit<{
|
|
|
1038
1061
|
clone: boolean;
|
|
1039
1062
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
1040
1063
|
} | undefined;
|
|
1041
|
-
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1064
|
+
sharingModel?: "private" | "full" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
1042
1065
|
publicSharing?: {
|
|
1043
1066
|
enabled: boolean;
|
|
1044
1067
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1070,7 +1093,7 @@ declare const SystemFile: Omit<{
|
|
|
1070
1093
|
} | {
|
|
1071
1094
|
language: "js";
|
|
1072
1095
|
source: string;
|
|
1073
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1096
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1074
1097
|
timeoutMs?: number | undefined;
|
|
1075
1098
|
memoryMb?: number | undefined;
|
|
1076
1099
|
} | undefined;
|
|
@@ -3359,7 +3382,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3359
3382
|
abstract: boolean;
|
|
3360
3383
|
datasource: string;
|
|
3361
3384
|
fields: Record<string, {
|
|
3362
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "
|
|
3385
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3363
3386
|
required: boolean;
|
|
3364
3387
|
searchable: boolean;
|
|
3365
3388
|
multiple: boolean;
|
|
@@ -3794,6 +3817,29 @@ declare const SystemUploadSession: Omit<{
|
|
|
3794
3817
|
titleField: string;
|
|
3795
3818
|
progressField?: string | undefined;
|
|
3796
3819
|
dependenciesField?: string | undefined;
|
|
3820
|
+
colorField?: string | undefined;
|
|
3821
|
+
parentField?: string | undefined;
|
|
3822
|
+
typeField?: string | undefined;
|
|
3823
|
+
baselineStartField?: string | undefined;
|
|
3824
|
+
baselineEndField?: string | undefined;
|
|
3825
|
+
groupByField?: string | undefined;
|
|
3826
|
+
resourceView?: boolean | undefined;
|
|
3827
|
+
assigneeField?: string | undefined;
|
|
3828
|
+
effortField?: string | undefined;
|
|
3829
|
+
capacity?: number | undefined;
|
|
3830
|
+
tooltipFields?: (string | {
|
|
3831
|
+
field: string;
|
|
3832
|
+
label?: string | undefined;
|
|
3833
|
+
})[] | undefined;
|
|
3834
|
+
quickFilters?: {
|
|
3835
|
+
field: string;
|
|
3836
|
+
label?: string | undefined;
|
|
3837
|
+
options?: (string | {
|
|
3838
|
+
value: string | number;
|
|
3839
|
+
label?: string | undefined;
|
|
3840
|
+
})[] | undefined;
|
|
3841
|
+
}[] | undefined;
|
|
3842
|
+
autoZoomToFilter?: boolean | undefined;
|
|
3797
3843
|
} | undefined;
|
|
3798
3844
|
gallery?: {
|
|
3799
3845
|
coverFit: "cover" | "contain";
|
|
@@ -3957,7 +4003,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3957
4003
|
clone: boolean;
|
|
3958
4004
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3959
4005
|
} | undefined;
|
|
3960
|
-
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4006
|
+
sharingModel?: "private" | "full" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
3961
4007
|
publicSharing?: {
|
|
3962
4008
|
enabled: boolean;
|
|
3963
4009
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3989,7 +4035,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3989
4035
|
} | {
|
|
3990
4036
|
language: "js";
|
|
3991
4037
|
source: string;
|
|
3992
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4038
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
3993
4039
|
timeoutMs?: number | undefined;
|
|
3994
4040
|
memoryMb?: number | undefined;
|
|
3995
4041
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-storage",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.11.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,10 +14,10 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "9.
|
|
18
|
-
"@objectstack/observability": "9.
|
|
19
|
-
"@objectstack/platform-objects": "9.
|
|
20
|
-
"@objectstack/spec": "9.
|
|
17
|
+
"@objectstack/core": "9.11.0",
|
|
18
|
+
"@objectstack/observability": "9.11.0",
|
|
19
|
+
"@objectstack/platform-objects": "9.11.0",
|
|
20
|
+
"@objectstack/spec": "9.11.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@aws-sdk/client-s3": "^3.0.0",
|