@serve.zone/interfaces 6.3.0 → 7.0.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,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-06-08 - 7.0.0
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- rename Cloudly config public URL and port fields (cloudlyconfig)
|
|
8
|
+
- Replaces `publicUrl` and `publicPort` with `publicOrigin` and `listenPort` on `ICloudlyConfig`.
|
|
9
|
+
|
|
3
10
|
## 2026-06-05 - 6.3.0
|
|
4
11
|
|
|
5
12
|
### Features
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '
|
|
6
|
+
version: '7.0.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=
|
|
@@ -6,8 +6,14 @@ export interface ICloudlyConfig {
|
|
|
6
6
|
jwtKeypair?: plugins.tsclass.network.IJwtKeypair;
|
|
7
7
|
mongoDescriptor?: plugins.tsclass.database.IMongoDescriptor;
|
|
8
8
|
s3Descriptor?: plugins.tsclass.storage.IS3Descriptor;
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Canonical externally reachable origin, including protocol and optional public port.
|
|
11
|
+
*/
|
|
12
|
+
publicOrigin?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Internal port the Cloudly server binds to.
|
|
15
|
+
*/
|
|
16
|
+
listenPort?: string;
|
|
11
17
|
sslMode?: 'none' | 'letsencrypt' | 'external';
|
|
12
18
|
servezoneAdminaccount?: string;
|
|
13
19
|
}
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/cloudlyconfig.ts
CHANGED
|
@@ -7,8 +7,14 @@ export interface ICloudlyConfig {
|
|
|
7
7
|
jwtKeypair?: plugins.tsclass.network.IJwtKeypair;
|
|
8
8
|
mongoDescriptor?: plugins.tsclass.database.IMongoDescriptor;
|
|
9
9
|
s3Descriptor?: plugins.tsclass.storage.IS3Descriptor;
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Canonical externally reachable origin, including protocol and optional public port.
|
|
12
|
+
*/
|
|
13
|
+
publicOrigin?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Internal port the Cloudly server binds to.
|
|
16
|
+
*/
|
|
17
|
+
listenPort?: string;
|
|
12
18
|
sslMode?: 'none' | 'letsencrypt' | 'external';
|
|
13
19
|
servezoneAdminaccount?: string;
|
|
14
|
-
}
|
|
20
|
+
}
|