@serve.zone/interfaces 8.1.0 → 8.1.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 +8 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/requests/mail.d.ts +1 -1
- package/package.json +1 -1
- package/readme.md +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/requests/mail.ts +1 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-07-07 - 8.1.1
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- allow submission auth for mail delivery status requests (mail)
|
|
8
|
+
- Change IReq_GetMailDeliveryStatus.request.auth to IMailSubmissionRequestAuth so service-mail credentials can query status by spoolItemId.
|
|
9
|
+
- Document getMailDeliveryStatus auth and response behavior in the README.
|
|
10
|
+
|
|
3
11
|
## 2026-07-06 - 8.1.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: '8.1.
|
|
6
|
+
version: '8.1.1',
|
|
7
7
|
description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
|
|
@@ -166,7 +166,7 @@ export interface IReq_RegisterServiceMailEndpoint extends plugins.typedrequestIn
|
|
|
166
166
|
export interface IReq_GetMailDeliveryStatus extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IReq_GetMailDeliveryStatus> {
|
|
167
167
|
method: 'getMailDeliveryStatus';
|
|
168
168
|
request: {
|
|
169
|
-
auth:
|
|
169
|
+
auth: IMailSubmissionRequestAuth;
|
|
170
170
|
spoolItemId: string;
|
|
171
171
|
};
|
|
172
172
|
response: IMailDeliveryStatus;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -138,7 +138,7 @@ interface IExampleRequest {
|
|
|
138
138
|
}
|
|
139
139
|
```
|
|
140
140
|
|
|
141
|
-
Gateway request contracts include `getGatewayClientRoutes` (`requests.gateway.IReq_GetGatewayClientRoutes`) for listing owned `IGatewayClientRoute[]` route views, and `syncGatewayClientRoute` for idempotently syncing or deleting hostname-owned and routeRef-owned routes. Mail request contracts include `syncMailAddressBinding`, `deleteMailAddressBinding`, and `
|
|
141
|
+
Gateway request contracts include `getGatewayClientRoutes` (`requests.gateway.IReq_GetGatewayClientRoutes`) for listing owned `IGatewayClientRoute[]` route views, and `syncGatewayClientRoute` for idempotently syncing or deleting hostname-owned and routeRef-owned routes. Mail request contracts include `syncMailAddressBinding`, `deleteMailAddressBinding`, `rotateMailCredential`, and `getMailDeliveryStatus`. `IReq_GetMailDeliveryStatus` looks up a delivery spool item by `spoolItemId`, returns `data.IMailDeliveryStatus`, and accepts `IMailSubmissionRequestAuth` so service-mail credentials can query their own accepted, queued, deferred, delivered, or failed status. `TMailAddressBindingSync.outboundEnabled` explicitly controls whether a gateway should maintain a managed outbound SMTP credential for an address binding. Binding credential metadata is public; `rotateMailCredential` returns the new secret only in its one-time `IMailCredentialOneTimeSecret` response.
|
|
142
142
|
|
|
143
143
|
Request groups are exported by product area:
|
|
144
144
|
|
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/requests/mail.ts
CHANGED
|
@@ -247,7 +247,7 @@ export interface IReq_GetMailDeliveryStatus extends plugins.typedrequestInterfac
|
|
|
247
247
|
> {
|
|
248
248
|
method: 'getMailDeliveryStatus';
|
|
249
249
|
request: {
|
|
250
|
-
auth:
|
|
250
|
+
auth: IMailSubmissionRequestAuth;
|
|
251
251
|
spoolItemId: string;
|
|
252
252
|
};
|
|
253
253
|
response: IMailDeliveryStatus;
|