@serve.zone/interfaces 7.4.0 → 7.5.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-09 - 7.5.0
4
+
5
+ ### Features
6
+
7
+ - add certificate domain reprovision request contract (gateway)
8
+ - Expose IReq_ReprovisionCertificateDomain for the reprovisionCertificateDomain typed request.
9
+ - Include optional identity, apiToken, and forceRenew request fields with success/message response metadata.
10
+
3
11
  ## 2026-06-09 - 7.4.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.4.0',
6
+ version: '7.5.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=
@@ -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.5.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.5.0',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  }
@@ -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