@serve.zone/interfaces 27.0.0 → 27.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/changelog.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-10 - 27.1.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- allow platform binding status updates to report object storage bucket names (requests.platform)
|
|
8
|
+
- Add optional objectstorageBucketName to platform binding status update requests.
|
|
9
|
+
- Document cluster runtime reporting of provider-returned object storage bucket names.
|
|
10
|
+
|
|
3
11
|
## 2026-08-10 - 27.0.0
|
|
4
12
|
|
|
5
13
|
### Breaking Changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '27.
|
|
6
|
+
version: '27.1.0',
|
|
7
7
|
description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
|
|
@@ -79,6 +79,8 @@ export interface IReq_Any_Cloudly_UpdatePlatformBindingStatus extends plugins.ty
|
|
|
79
79
|
bindingId: string;
|
|
80
80
|
status: TPlatformBindingStatus;
|
|
81
81
|
endpoints?: IPlatformBinding['endpoints'];
|
|
82
|
+
/** Reports the exact provider-returned bucket for an objectstorage binding. */
|
|
83
|
+
objectstorageBucketName?: IPlatformBinding['objectstorageBucketName'];
|
|
82
84
|
errorText?: string;
|
|
83
85
|
};
|
|
84
86
|
response: {
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -940,6 +940,9 @@ Available platform modules:
|
|
|
940
940
|
Optional `IPlatformBinding.objectstorageBucketName` is the durable value-free
|
|
941
941
|
Cloudly authority for an exact Corestore bucket. It is required whenever a
|
|
942
942
|
caller needs to establish trusted bucket authority for retention validation.
|
|
943
|
+
Cluster runtimes report the exact provider-returned bucket through the optional
|
|
944
|
+
`requests.platform.IReq_Any_Cloudly_UpdatePlatformBindingStatus.request.objectstorageBucketName`
|
|
945
|
+
field when updating binding status.
|
|
943
946
|
`validatePlatformObjectStorageBucketName()` applies the canonical SmartStorage
|
|
944
947
|
S3 bucket boundary without normalizing input, and
|
|
945
948
|
`platformObjectStorageBucketNameLimits` publishes its 3-byte minimum and 63-byte
|
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/requests/platform.ts
CHANGED
|
@@ -124,6 +124,8 @@ extends plugins.typedrequestInterfaces.implementsTR<
|
|
|
124
124
|
bindingId: string;
|
|
125
125
|
status: TPlatformBindingStatus;
|
|
126
126
|
endpoints?: IPlatformBinding['endpoints'];
|
|
127
|
+
/** Reports the exact provider-returned bucket for an objectstorage binding. */
|
|
128
|
+
objectstorageBucketName?: IPlatformBinding['objectstorageBucketName'];
|
|
127
129
|
errorText?: string;
|
|
128
130
|
};
|
|
129
131
|
response: {
|