@serve.zone/interfaces 19.3.0 → 19.3.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/changelog.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-07-24 - 19.3.1
4
+
5
+ ### Fixes
6
+
7
+ - align immutable placement repair with Cloudly's authenticated admin identity guard
8
+
3
9
  ## 2026-07-24 - 19.3.0
4
10
 
5
11
  ### Features
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '19.3.0',
6
+ version: '19.3.1',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
@@ -229,7 +229,7 @@ export interface IRequest_Any_Cloudly_UpdateService extends plugins.typedrequest
229
229
  export interface IRequest_Any_Cloudly_RepairImmutableServicePlacement extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_RepairImmutableServicePlacement> {
230
230
  method: 'repairImmutableServicePlacement';
231
231
  request: {
232
- identity: IIdentityCredential;
232
+ identity: IIdentity;
233
233
  serviceId: string;
234
234
  expectedRolloutId: string;
235
235
  expectedRolloutGeneration: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "19.3.0",
3
+ "version": "19.3.1",
4
4
  "private": false,
5
5
  "description": "Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.",
6
6
  "exports": {
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '19.3.0',
6
+ version: '19.3.1',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  }
@@ -341,7 +341,7 @@ extends plugins.typedrequestInterfaces.implementsTR<
341
341
  > {
342
342
  method: 'repairImmutableServicePlacement';
343
343
  request: {
344
- identity: IIdentityCredential;
344
+ identity: IIdentity;
345
345
  serviceId: string;
346
346
  expectedRolloutId: string;
347
347
  expectedRolloutGeneration: number;