@objectstack/service-storage 6.8.1 → 7.0.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
@@ -1059,6 +1059,14 @@ declare const SystemFile: Omit<{
1059
1059
  } | undefined;
1060
1060
  recordTypes?: string[] | undefined;
1061
1061
  sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
1062
+ publicSharing?: {
1063
+ enabled: boolean;
1064
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
1065
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
1066
+ maxExpiryDays?: number | undefined;
1067
+ redactFields?: string[] | undefined;
1068
+ eligibility?: string | undefined;
1069
+ } | undefined;
1062
1070
  keyPrefix?: string | undefined;
1063
1071
  detail?: {
1064
1072
  [x: string]: unknown;
@@ -1073,7 +1081,7 @@ declare const SystemFile: Omit<{
1073
1081
  refreshAfter: boolean;
1074
1082
  objectName?: string | undefined;
1075
1083
  icon?: string | undefined;
1076
- 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;
1077
1085
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
1078
1086
  target?: string | undefined;
1079
1087
  body?: {
@@ -1106,6 +1114,17 @@ declare const SystemFile: Omit<{
1106
1114
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
1107
1115
  confirmText?: string | undefined;
1108
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;
1109
1128
  visible?: {
1110
1129
  dialect: "cel" | "js" | "cron" | "template";
1111
1130
  source?: string | undefined;
@@ -4200,6 +4219,14 @@ declare const SystemUploadSession: Omit<{
4200
4219
  } | undefined;
4201
4220
  recordTypes?: string[] | undefined;
4202
4221
  sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
4222
+ publicSharing?: {
4223
+ enabled: boolean;
4224
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
4225
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
4226
+ maxExpiryDays?: number | undefined;
4227
+ redactFields?: string[] | undefined;
4228
+ eligibility?: string | undefined;
4229
+ } | undefined;
4203
4230
  keyPrefix?: string | undefined;
4204
4231
  detail?: {
4205
4232
  [x: string]: unknown;
@@ -4214,7 +4241,7 @@ declare const SystemUploadSession: Omit<{
4214
4241
  refreshAfter: boolean;
4215
4242
  objectName?: string | undefined;
4216
4243
  icon?: string | undefined;
4217
- 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;
4218
4245
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
4219
4246
  target?: string | undefined;
4220
4247
  body?: {
@@ -4247,6 +4274,17 @@ declare const SystemUploadSession: Omit<{
4247
4274
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
4248
4275
  confirmText?: string | undefined;
4249
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;
4250
4288
  visible?: {
4251
4289
  dialect: "cel" | "js" | "cron" | "template";
4252
4290
  source?: string | undefined;
package/dist/index.d.ts CHANGED
@@ -1059,6 +1059,14 @@ declare const SystemFile: Omit<{
1059
1059
  } | undefined;
1060
1060
  recordTypes?: string[] | undefined;
1061
1061
  sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
1062
+ publicSharing?: {
1063
+ enabled: boolean;
1064
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
1065
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
1066
+ maxExpiryDays?: number | undefined;
1067
+ redactFields?: string[] | undefined;
1068
+ eligibility?: string | undefined;
1069
+ } | undefined;
1062
1070
  keyPrefix?: string | undefined;
1063
1071
  detail?: {
1064
1072
  [x: string]: unknown;
@@ -1073,7 +1081,7 @@ declare const SystemFile: Omit<{
1073
1081
  refreshAfter: boolean;
1074
1082
  objectName?: string | undefined;
1075
1083
  icon?: string | undefined;
1076
- 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;
1077
1085
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
1078
1086
  target?: string | undefined;
1079
1087
  body?: {
@@ -1106,6 +1114,17 @@ declare const SystemFile: Omit<{
1106
1114
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
1107
1115
  confirmText?: string | undefined;
1108
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;
1109
1128
  visible?: {
1110
1129
  dialect: "cel" | "js" | "cron" | "template";
1111
1130
  source?: string | undefined;
@@ -4200,6 +4219,14 @@ declare const SystemUploadSession: Omit<{
4200
4219
  } | undefined;
4201
4220
  recordTypes?: string[] | undefined;
4202
4221
  sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
4222
+ publicSharing?: {
4223
+ enabled: boolean;
4224
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
4225
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
4226
+ maxExpiryDays?: number | undefined;
4227
+ redactFields?: string[] | undefined;
4228
+ eligibility?: string | undefined;
4229
+ } | undefined;
4203
4230
  keyPrefix?: string | undefined;
4204
4231
  detail?: {
4205
4232
  [x: string]: unknown;
@@ -4214,7 +4241,7 @@ declare const SystemUploadSession: Omit<{
4214
4241
  refreshAfter: boolean;
4215
4242
  objectName?: string | undefined;
4216
4243
  icon?: string | undefined;
4217
- 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;
4218
4245
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
4219
4246
  target?: string | undefined;
4220
4247
  body?: {
@@ -4247,6 +4274,17 @@ declare const SystemUploadSession: Omit<{
4247
4274
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
4248
4275
  confirmText?: string | undefined;
4249
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;
4250
4288
  visible?: {
4251
4289
  dialect: "cel" | "js" | "cron" | "template";
4252
4290
  source?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/service-storage",
3
- "version": "6.8.1",
3
+ "version": "7.0.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": "6.8.1",
18
- "@objectstack/observability": "6.8.1",
19
- "@objectstack/spec": "6.8.1"
17
+ "@objectstack/core": "7.0.0",
18
+ "@objectstack/observability": "7.0.0",
19
+ "@objectstack/spec": "7.0.0"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@aws-sdk/client-s3": "^3.0.0",