@objectstack/service-storage 7.0.0 → 7.2.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 +20 -8
- package/dist/index.d.ts +20 -8
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -479,7 +479,7 @@ declare const SystemFile: Omit<{
|
|
|
479
479
|
abstract: boolean;
|
|
480
480
|
datasource: string;
|
|
481
481
|
fields: Record<string, {
|
|
482
|
-
type: "number" | "boolean" | "date" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
482
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
483
483
|
required: boolean;
|
|
484
484
|
searchable: boolean;
|
|
485
485
|
multiple: boolean;
|
|
@@ -669,6 +669,12 @@ declare const SystemFile: Omit<{
|
|
|
669
669
|
caseSensitive?: boolean | undefined;
|
|
670
670
|
autonumberFormat?: string | undefined;
|
|
671
671
|
}>;
|
|
672
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
673
|
+
_lockReason?: string | undefined;
|
|
674
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
675
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
676
|
+
_packageId?: string | undefined;
|
|
677
|
+
_packageVersion?: string | undefined;
|
|
672
678
|
label?: string | undefined;
|
|
673
679
|
pluralLabel?: string | undefined;
|
|
674
680
|
description?: string | undefined;
|
|
@@ -863,7 +869,7 @@ declare const SystemFile: Omit<{
|
|
|
863
869
|
bordered?: boolean | undefined;
|
|
864
870
|
compactToolbar?: boolean | undefined;
|
|
865
871
|
selection?: {
|
|
866
|
-
type: "
|
|
872
|
+
type: "none" | "multiple" | "single";
|
|
867
873
|
} | undefined;
|
|
868
874
|
navigation?: {
|
|
869
875
|
mode: "split" | "none" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -1058,7 +1064,7 @@ declare const SystemFile: Omit<{
|
|
|
1058
1064
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
1059
1065
|
} | undefined;
|
|
1060
1066
|
recordTypes?: string[] | undefined;
|
|
1061
|
-
sharingModel?: "private" | "
|
|
1067
|
+
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1062
1068
|
publicSharing?: {
|
|
1063
1069
|
enabled: boolean;
|
|
1064
1070
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1101,7 +1107,7 @@ declare const SystemFile: Omit<{
|
|
|
1101
1107
|
field?: string | undefined;
|
|
1102
1108
|
objectOverride?: string | undefined;
|
|
1103
1109
|
label?: string | undefined;
|
|
1104
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
1110
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
1105
1111
|
options?: {
|
|
1106
1112
|
label: string;
|
|
1107
1113
|
value: string;
|
|
@@ -3639,7 +3645,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3639
3645
|
abstract: boolean;
|
|
3640
3646
|
datasource: string;
|
|
3641
3647
|
fields: Record<string, {
|
|
3642
|
-
type: "number" | "boolean" | "date" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3648
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3643
3649
|
required: boolean;
|
|
3644
3650
|
searchable: boolean;
|
|
3645
3651
|
multiple: boolean;
|
|
@@ -3829,6 +3835,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
3829
3835
|
caseSensitive?: boolean | undefined;
|
|
3830
3836
|
autonumberFormat?: string | undefined;
|
|
3831
3837
|
}>;
|
|
3838
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3839
|
+
_lockReason?: string | undefined;
|
|
3840
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3841
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3842
|
+
_packageId?: string | undefined;
|
|
3843
|
+
_packageVersion?: string | undefined;
|
|
3832
3844
|
label?: string | undefined;
|
|
3833
3845
|
pluralLabel?: string | undefined;
|
|
3834
3846
|
description?: string | undefined;
|
|
@@ -4023,7 +4035,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4023
4035
|
bordered?: boolean | undefined;
|
|
4024
4036
|
compactToolbar?: boolean | undefined;
|
|
4025
4037
|
selection?: {
|
|
4026
|
-
type: "
|
|
4038
|
+
type: "none" | "multiple" | "single";
|
|
4027
4039
|
} | undefined;
|
|
4028
4040
|
navigation?: {
|
|
4029
4041
|
mode: "split" | "none" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -4218,7 +4230,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4218
4230
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
4219
4231
|
} | undefined;
|
|
4220
4232
|
recordTypes?: string[] | undefined;
|
|
4221
|
-
sharingModel?: "private" | "
|
|
4233
|
+
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4222
4234
|
publicSharing?: {
|
|
4223
4235
|
enabled: boolean;
|
|
4224
4236
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -4261,7 +4273,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4261
4273
|
field?: string | undefined;
|
|
4262
4274
|
objectOverride?: string | undefined;
|
|
4263
4275
|
label?: string | undefined;
|
|
4264
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4276
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4265
4277
|
options?: {
|
|
4266
4278
|
label: string;
|
|
4267
4279
|
value: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -479,7 +479,7 @@ declare const SystemFile: Omit<{
|
|
|
479
479
|
abstract: boolean;
|
|
480
480
|
datasource: string;
|
|
481
481
|
fields: Record<string, {
|
|
482
|
-
type: "number" | "boolean" | "date" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
482
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
483
483
|
required: boolean;
|
|
484
484
|
searchable: boolean;
|
|
485
485
|
multiple: boolean;
|
|
@@ -669,6 +669,12 @@ declare const SystemFile: Omit<{
|
|
|
669
669
|
caseSensitive?: boolean | undefined;
|
|
670
670
|
autonumberFormat?: string | undefined;
|
|
671
671
|
}>;
|
|
672
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
673
|
+
_lockReason?: string | undefined;
|
|
674
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
675
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
676
|
+
_packageId?: string | undefined;
|
|
677
|
+
_packageVersion?: string | undefined;
|
|
672
678
|
label?: string | undefined;
|
|
673
679
|
pluralLabel?: string | undefined;
|
|
674
680
|
description?: string | undefined;
|
|
@@ -863,7 +869,7 @@ declare const SystemFile: Omit<{
|
|
|
863
869
|
bordered?: boolean | undefined;
|
|
864
870
|
compactToolbar?: boolean | undefined;
|
|
865
871
|
selection?: {
|
|
866
|
-
type: "
|
|
872
|
+
type: "none" | "multiple" | "single";
|
|
867
873
|
} | undefined;
|
|
868
874
|
navigation?: {
|
|
869
875
|
mode: "split" | "none" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -1058,7 +1064,7 @@ declare const SystemFile: Omit<{
|
|
|
1058
1064
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
1059
1065
|
} | undefined;
|
|
1060
1066
|
recordTypes?: string[] | undefined;
|
|
1061
|
-
sharingModel?: "private" | "
|
|
1067
|
+
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1062
1068
|
publicSharing?: {
|
|
1063
1069
|
enabled: boolean;
|
|
1064
1070
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1101,7 +1107,7 @@ declare const SystemFile: Omit<{
|
|
|
1101
1107
|
field?: string | undefined;
|
|
1102
1108
|
objectOverride?: string | undefined;
|
|
1103
1109
|
label?: string | undefined;
|
|
1104
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
1110
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
1105
1111
|
options?: {
|
|
1106
1112
|
label: string;
|
|
1107
1113
|
value: string;
|
|
@@ -3639,7 +3645,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3639
3645
|
abstract: boolean;
|
|
3640
3646
|
datasource: string;
|
|
3641
3647
|
fields: Record<string, {
|
|
3642
|
-
type: "number" | "boolean" | "date" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3648
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3643
3649
|
required: boolean;
|
|
3644
3650
|
searchable: boolean;
|
|
3645
3651
|
multiple: boolean;
|
|
@@ -3829,6 +3835,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
3829
3835
|
caseSensitive?: boolean | undefined;
|
|
3830
3836
|
autonumberFormat?: string | undefined;
|
|
3831
3837
|
}>;
|
|
3838
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3839
|
+
_lockReason?: string | undefined;
|
|
3840
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3841
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3842
|
+
_packageId?: string | undefined;
|
|
3843
|
+
_packageVersion?: string | undefined;
|
|
3832
3844
|
label?: string | undefined;
|
|
3833
3845
|
pluralLabel?: string | undefined;
|
|
3834
3846
|
description?: string | undefined;
|
|
@@ -4023,7 +4035,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4023
4035
|
bordered?: boolean | undefined;
|
|
4024
4036
|
compactToolbar?: boolean | undefined;
|
|
4025
4037
|
selection?: {
|
|
4026
|
-
type: "
|
|
4038
|
+
type: "none" | "multiple" | "single";
|
|
4027
4039
|
} | undefined;
|
|
4028
4040
|
navigation?: {
|
|
4029
4041
|
mode: "split" | "none" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -4218,7 +4230,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4218
4230
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
4219
4231
|
} | undefined;
|
|
4220
4232
|
recordTypes?: string[] | undefined;
|
|
4221
|
-
sharingModel?: "private" | "
|
|
4233
|
+
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4222
4234
|
publicSharing?: {
|
|
4223
4235
|
enabled: boolean;
|
|
4224
4236
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -4261,7 +4273,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4261
4273
|
field?: string | undefined;
|
|
4262
4274
|
objectOverride?: string | undefined;
|
|
4263
4275
|
label?: string | undefined;
|
|
4264
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4276
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4265
4277
|
options?: {
|
|
4266
4278
|
label: string;
|
|
4267
4279
|
value: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-storage",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.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": "7.
|
|
18
|
-
"@objectstack/observability": "7.
|
|
19
|
-
"@objectstack/spec": "7.
|
|
17
|
+
"@objectstack/core": "7.2.0",
|
|
18
|
+
"@objectstack/observability": "7.2.0",
|
|
19
|
+
"@objectstack/spec": "7.2.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@aws-sdk/client-s3": "^3.0.0",
|