@objectstack/service-storage 7.2.0 → 7.2.1
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -675,6 +675,7 @@ declare const SystemFile: Omit<{
|
|
|
675
675
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
676
676
|
_packageId?: string | undefined;
|
|
677
677
|
_packageVersion?: string | undefined;
|
|
678
|
+
_lockDocsUrl?: string | undefined;
|
|
678
679
|
label?: string | undefined;
|
|
679
680
|
pluralLabel?: string | undefined;
|
|
680
681
|
description?: string | undefined;
|
|
@@ -1167,6 +1168,11 @@ declare const SystemFile: Omit<{
|
|
|
1167
1168
|
role?: string | undefined;
|
|
1168
1169
|
} | undefined;
|
|
1169
1170
|
}[] | undefined;
|
|
1171
|
+
protection?: {
|
|
1172
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
1173
|
+
reason: string;
|
|
1174
|
+
docsUrl?: string | undefined;
|
|
1175
|
+
} | undefined;
|
|
1170
1176
|
}, "fields"> & Pick<{
|
|
1171
1177
|
readonly name: "sys_file";
|
|
1172
1178
|
readonly label: "System File";
|
|
@@ -3841,6 +3847,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3841
3847
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3842
3848
|
_packageId?: string | undefined;
|
|
3843
3849
|
_packageVersion?: string | undefined;
|
|
3850
|
+
_lockDocsUrl?: string | undefined;
|
|
3844
3851
|
label?: string | undefined;
|
|
3845
3852
|
pluralLabel?: string | undefined;
|
|
3846
3853
|
description?: string | undefined;
|
|
@@ -4333,6 +4340,11 @@ declare const SystemUploadSession: Omit<{
|
|
|
4333
4340
|
role?: string | undefined;
|
|
4334
4341
|
} | undefined;
|
|
4335
4342
|
}[] | undefined;
|
|
4343
|
+
protection?: {
|
|
4344
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
4345
|
+
reason: string;
|
|
4346
|
+
docsUrl?: string | undefined;
|
|
4347
|
+
} | undefined;
|
|
4336
4348
|
}, "fields"> & Pick<{
|
|
4337
4349
|
readonly name: "sys_upload_session";
|
|
4338
4350
|
readonly label: "System Upload Session";
|
package/dist/index.d.ts
CHANGED
|
@@ -675,6 +675,7 @@ declare const SystemFile: Omit<{
|
|
|
675
675
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
676
676
|
_packageId?: string | undefined;
|
|
677
677
|
_packageVersion?: string | undefined;
|
|
678
|
+
_lockDocsUrl?: string | undefined;
|
|
678
679
|
label?: string | undefined;
|
|
679
680
|
pluralLabel?: string | undefined;
|
|
680
681
|
description?: string | undefined;
|
|
@@ -1167,6 +1168,11 @@ declare const SystemFile: Omit<{
|
|
|
1167
1168
|
role?: string | undefined;
|
|
1168
1169
|
} | undefined;
|
|
1169
1170
|
}[] | undefined;
|
|
1171
|
+
protection?: {
|
|
1172
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
1173
|
+
reason: string;
|
|
1174
|
+
docsUrl?: string | undefined;
|
|
1175
|
+
} | undefined;
|
|
1170
1176
|
}, "fields"> & Pick<{
|
|
1171
1177
|
readonly name: "sys_file";
|
|
1172
1178
|
readonly label: "System File";
|
|
@@ -3841,6 +3847,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3841
3847
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3842
3848
|
_packageId?: string | undefined;
|
|
3843
3849
|
_packageVersion?: string | undefined;
|
|
3850
|
+
_lockDocsUrl?: string | undefined;
|
|
3844
3851
|
label?: string | undefined;
|
|
3845
3852
|
pluralLabel?: string | undefined;
|
|
3846
3853
|
description?: string | undefined;
|
|
@@ -4333,6 +4340,11 @@ declare const SystemUploadSession: Omit<{
|
|
|
4333
4340
|
role?: string | undefined;
|
|
4334
4341
|
} | undefined;
|
|
4335
4342
|
}[] | undefined;
|
|
4343
|
+
protection?: {
|
|
4344
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
4345
|
+
reason: string;
|
|
4346
|
+
docsUrl?: string | undefined;
|
|
4347
|
+
} | undefined;
|
|
4336
4348
|
}, "fields"> & Pick<{
|
|
4337
4349
|
readonly name: "sys_upload_session";
|
|
4338
4350
|
readonly label: "System Upload Session";
|
package/dist/index.js
CHANGED