@objectstack/service-storage 6.9.0 → 7.1.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 +28 -6
- package/dist/index.d.ts +28 -6
- 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;
|
|
@@ -1081,7 +1081,7 @@ declare const SystemFile: Omit<{
|
|
|
1081
1081
|
refreshAfter: boolean;
|
|
1082
1082
|
objectName?: string | undefined;
|
|
1083
1083
|
icon?: string | undefined;
|
|
1084
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
1084
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
1085
1085
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
1086
1086
|
target?: string | undefined;
|
|
1087
1087
|
body?: {
|
|
@@ -1101,7 +1101,7 @@ declare const SystemFile: Omit<{
|
|
|
1101
1101
|
field?: string | undefined;
|
|
1102
1102
|
objectOverride?: string | undefined;
|
|
1103
1103
|
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;
|
|
1104
|
+
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
1105
|
options?: {
|
|
1106
1106
|
label: string;
|
|
1107
1107
|
value: string;
|
|
@@ -1114,6 +1114,17 @@ declare const SystemFile: Omit<{
|
|
|
1114
1114
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
1115
1115
|
confirmText?: string | undefined;
|
|
1116
1116
|
successMessage?: string | undefined;
|
|
1117
|
+
resultDialog?: {
|
|
1118
|
+
title?: string | undefined;
|
|
1119
|
+
description?: string | undefined;
|
|
1120
|
+
acknowledge?: string | undefined;
|
|
1121
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
1122
|
+
fields?: {
|
|
1123
|
+
path: string;
|
|
1124
|
+
label?: string | undefined;
|
|
1125
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
1126
|
+
}[] | undefined;
|
|
1127
|
+
} | undefined;
|
|
1117
1128
|
visible?: {
|
|
1118
1129
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1119
1130
|
source?: string | undefined;
|
|
@@ -3628,7 +3639,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3628
3639
|
abstract: boolean;
|
|
3629
3640
|
datasource: string;
|
|
3630
3641
|
fields: Record<string, {
|
|
3631
|
-
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";
|
|
3642
|
+
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";
|
|
3632
3643
|
required: boolean;
|
|
3633
3644
|
searchable: boolean;
|
|
3634
3645
|
multiple: boolean;
|
|
@@ -4230,7 +4241,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4230
4241
|
refreshAfter: boolean;
|
|
4231
4242
|
objectName?: string | undefined;
|
|
4232
4243
|
icon?: string | undefined;
|
|
4233
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
4244
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
4234
4245
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
4235
4246
|
target?: string | undefined;
|
|
4236
4247
|
body?: {
|
|
@@ -4250,7 +4261,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4250
4261
|
field?: string | undefined;
|
|
4251
4262
|
objectOverride?: string | undefined;
|
|
4252
4263
|
label?: string | undefined;
|
|
4253
|
-
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;
|
|
4264
|
+
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;
|
|
4254
4265
|
options?: {
|
|
4255
4266
|
label: string;
|
|
4256
4267
|
value: string;
|
|
@@ -4263,6 +4274,17 @@ declare const SystemUploadSession: Omit<{
|
|
|
4263
4274
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4264
4275
|
confirmText?: string | undefined;
|
|
4265
4276
|
successMessage?: string | undefined;
|
|
4277
|
+
resultDialog?: {
|
|
4278
|
+
title?: string | undefined;
|
|
4279
|
+
description?: string | undefined;
|
|
4280
|
+
acknowledge?: string | undefined;
|
|
4281
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
4282
|
+
fields?: {
|
|
4283
|
+
path: string;
|
|
4284
|
+
label?: string | undefined;
|
|
4285
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
4286
|
+
}[] | undefined;
|
|
4287
|
+
} | undefined;
|
|
4266
4288
|
visible?: {
|
|
4267
4289
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4268
4290
|
source?: string | undefined;
|
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;
|
|
@@ -1081,7 +1081,7 @@ declare const SystemFile: Omit<{
|
|
|
1081
1081
|
refreshAfter: boolean;
|
|
1082
1082
|
objectName?: string | undefined;
|
|
1083
1083
|
icon?: string | undefined;
|
|
1084
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
1084
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
1085
1085
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
1086
1086
|
target?: string | undefined;
|
|
1087
1087
|
body?: {
|
|
@@ -1101,7 +1101,7 @@ declare const SystemFile: Omit<{
|
|
|
1101
1101
|
field?: string | undefined;
|
|
1102
1102
|
objectOverride?: string | undefined;
|
|
1103
1103
|
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;
|
|
1104
|
+
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
1105
|
options?: {
|
|
1106
1106
|
label: string;
|
|
1107
1107
|
value: string;
|
|
@@ -1114,6 +1114,17 @@ declare const SystemFile: Omit<{
|
|
|
1114
1114
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
1115
1115
|
confirmText?: string | undefined;
|
|
1116
1116
|
successMessage?: string | undefined;
|
|
1117
|
+
resultDialog?: {
|
|
1118
|
+
title?: string | undefined;
|
|
1119
|
+
description?: string | undefined;
|
|
1120
|
+
acknowledge?: string | undefined;
|
|
1121
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
1122
|
+
fields?: {
|
|
1123
|
+
path: string;
|
|
1124
|
+
label?: string | undefined;
|
|
1125
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
1126
|
+
}[] | undefined;
|
|
1127
|
+
} | undefined;
|
|
1117
1128
|
visible?: {
|
|
1118
1129
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1119
1130
|
source?: string | undefined;
|
|
@@ -3628,7 +3639,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3628
3639
|
abstract: boolean;
|
|
3629
3640
|
datasource: string;
|
|
3630
3641
|
fields: Record<string, {
|
|
3631
|
-
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";
|
|
3642
|
+
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";
|
|
3632
3643
|
required: boolean;
|
|
3633
3644
|
searchable: boolean;
|
|
3634
3645
|
multiple: boolean;
|
|
@@ -4230,7 +4241,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4230
4241
|
refreshAfter: boolean;
|
|
4231
4242
|
objectName?: string | undefined;
|
|
4232
4243
|
icon?: string | undefined;
|
|
4233
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
4244
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
4234
4245
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
4235
4246
|
target?: string | undefined;
|
|
4236
4247
|
body?: {
|
|
@@ -4250,7 +4261,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4250
4261
|
field?: string | undefined;
|
|
4251
4262
|
objectOverride?: string | undefined;
|
|
4252
4263
|
label?: string | undefined;
|
|
4253
|
-
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;
|
|
4264
|
+
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;
|
|
4254
4265
|
options?: {
|
|
4255
4266
|
label: string;
|
|
4256
4267
|
value: string;
|
|
@@ -4263,6 +4274,17 @@ declare const SystemUploadSession: Omit<{
|
|
|
4263
4274
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4264
4275
|
confirmText?: string | undefined;
|
|
4265
4276
|
successMessage?: string | undefined;
|
|
4277
|
+
resultDialog?: {
|
|
4278
|
+
title?: string | undefined;
|
|
4279
|
+
description?: string | undefined;
|
|
4280
|
+
acknowledge?: string | undefined;
|
|
4281
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
4282
|
+
fields?: {
|
|
4283
|
+
path: string;
|
|
4284
|
+
label?: string | undefined;
|
|
4285
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
4286
|
+
}[] | undefined;
|
|
4287
|
+
} | undefined;
|
|
4266
4288
|
visible?: {
|
|
4267
4289
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4268
4290
|
source?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-storage",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.1.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": "
|
|
18
|
-
"@objectstack/observability": "
|
|
19
|
-
"@objectstack/spec": "
|
|
17
|
+
"@objectstack/core": "7.1.0",
|
|
18
|
+
"@objectstack/observability": "7.1.0",
|
|
19
|
+
"@objectstack/spec": "7.1.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@aws-sdk/client-s3": "^3.0.0",
|