@serve.zone/interfaces 7.5.0 → 7.6.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-06-10 - 7.6.0
4
+
5
+ ### Features
6
+
7
+ - add deployment snapshot and reconciliation request contracts (requests/deployment)
8
+ - Add typed request contract for reporting deployment snapshots with service metadata and deployment data.
9
+ - Add push request contracts for deployment updates and service reconciliation status.
10
+
3
11
  ## 2026-06-09 - 7.5.0
4
12
 
5
13
  ### Features
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '7.5.0',
6
+ version: '7.6.0',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
@@ -295,3 +295,30 @@ export interface IReq_Cloudly_Coreflow_DeploymentWorkspaceExec extends plugins.t
295
295
  exitCode?: number;
296
296
  };
297
297
  }
298
+ export interface IReq_Coreflow_Cloudly_ReportDeploymentSnapshots extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IReq_Coreflow_Cloudly_ReportDeploymentSnapshots> {
299
+ method: 'reportDeploymentSnapshots';
300
+ request: {
301
+ identity: IIdentity;
302
+ serviceId: string;
303
+ serviceName?: string;
304
+ deployments: IDeployment[];
305
+ reportedAt: number;
306
+ };
307
+ response: Record<string, never>;
308
+ }
309
+ export interface IReq_Cloudly_Any_PushDeploymentUpdate extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IReq_Cloudly_Any_PushDeploymentUpdate> {
310
+ method: 'pushDeploymentUpdate';
311
+ request: {
312
+ serviceId: string;
313
+ deployments: IDeployment[];
314
+ };
315
+ response: Record<string, never>;
316
+ }
317
+ export interface IReq_Cloudly_Any_PushServiceReconciliationStatus extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IReq_Cloudly_Any_PushServiceReconciliationStatus> {
318
+ method: 'pushServiceReconciliationStatus';
319
+ request: {
320
+ serviceId: string;
321
+ reconciliationStatus: NonNullable<IService['data']['reconciliationStatus']>;
322
+ };
323
+ response: Record<string, never>;
324
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "7.5.0",
3
+ "version": "7.6.0",
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: '7.5.0',
6
+ version: '7.6.0',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  }
@@ -431,3 +431,45 @@ extends plugins.typedrequestInterfaces.implementsTR<
431
431
  exitCode?: number;
432
432
  };
433
433
  }
434
+
435
+ export interface IReq_Coreflow_Cloudly_ReportDeploymentSnapshots
436
+ extends plugins.typedrequestInterfaces.implementsTR<
437
+ plugins.typedrequestInterfaces.ITypedRequest,
438
+ IReq_Coreflow_Cloudly_ReportDeploymentSnapshots
439
+ > {
440
+ method: 'reportDeploymentSnapshots';
441
+ request: {
442
+ identity: IIdentity;
443
+ serviceId: string;
444
+ serviceName?: string;
445
+ deployments: IDeployment[];
446
+ reportedAt: number;
447
+ };
448
+ response: Record<string, never>;
449
+ }
450
+
451
+ export interface IReq_Cloudly_Any_PushDeploymentUpdate
452
+ extends plugins.typedrequestInterfaces.implementsTR<
453
+ plugins.typedrequestInterfaces.ITypedRequest,
454
+ IReq_Cloudly_Any_PushDeploymentUpdate
455
+ > {
456
+ method: 'pushDeploymentUpdate';
457
+ request: {
458
+ serviceId: string;
459
+ deployments: IDeployment[];
460
+ };
461
+ response: Record<string, never>;
462
+ }
463
+
464
+ export interface IReq_Cloudly_Any_PushServiceReconciliationStatus
465
+ extends plugins.typedrequestInterfaces.implementsTR<
466
+ plugins.typedrequestInterfaces.ITypedRequest,
467
+ IReq_Cloudly_Any_PushServiceReconciliationStatus
468
+ > {
469
+ method: 'pushServiceReconciliationStatus';
470
+ request: {
471
+ serviceId: string;
472
+ reconciliationStatus: NonNullable<IService['data']['reconciliationStatus']>;
473
+ };
474
+ response: Record<string, never>;
475
+ }