@serve.zone/interfaces 7.4.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,21 @@
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
+
11
+ ## 2026-06-09 - 7.5.0
12
+
13
+ ### Features
14
+
15
+ - add certificate domain reprovision request contract (gateway)
16
+ - Expose IReq_ReprovisionCertificateDomain for the reprovisionCertificateDomain typed request.
17
+ - Include optional identity, apiToken, and forceRenew request fields with success/message response metadata.
18
+
3
19
  ## 2026-06-09 - 7.4.0
4
20
 
5
21
  ### Features
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '7.4.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
+ }
@@ -65,6 +65,19 @@ export interface IReq_SyncGatewayClientRoute extends plugins.typedrequestInterfa
65
65
  };
66
66
  response: IGatewayRouteSyncResult;
67
67
  }
68
+ export interface IReq_ReprovisionCertificateDomain extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IReq_ReprovisionCertificateDomain> {
69
+ method: 'reprovisionCertificateDomain';
70
+ request: {
71
+ identity?: IGatewayIdentity;
72
+ apiToken?: string;
73
+ domain: string;
74
+ forceRenew?: boolean;
75
+ };
76
+ response: {
77
+ success: boolean;
78
+ message?: string;
79
+ };
80
+ }
68
81
  export interface IReq_ExportCertificate extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IReq_ExportCertificate> {
69
82
  method: 'exportCertificate';
70
83
  request: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "7.4.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.4.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
+ }
@@ -96,6 +96,23 @@ export interface IReq_SyncGatewayClientRoute extends plugins.typedrequestInterfa
96
96
  response: IGatewayRouteSyncResult;
97
97
  }
98
98
 
99
+ export interface IReq_ReprovisionCertificateDomain extends plugins.typedrequestInterfaces.implementsTR<
100
+ plugins.typedrequestInterfaces.ITypedRequest,
101
+ IReq_ReprovisionCertificateDomain
102
+ > {
103
+ method: 'reprovisionCertificateDomain';
104
+ request: {
105
+ identity?: IGatewayIdentity;
106
+ apiToken?: string;
107
+ domain: string;
108
+ forceRenew?: boolean;
109
+ };
110
+ response: {
111
+ success: boolean;
112
+ message?: string;
113
+ };
114
+ }
115
+
99
116
  export interface IReq_ExportCertificate extends plugins.typedrequestInterfaces.implementsTR<
100
117
  plugins.typedrequestInterfaces.ITypedRequest,
101
118
  IReq_ExportCertificate