@pluv/platform-pluv 2.2.4 → 2.2.5

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pluv/platform-pluv@2.2.4 build /home/runner/work/pluv/pluv/packages/platform-pluv
2
+ > @pluv/platform-pluv@2.2.5 build /home/runner/work/pluv/pluv/packages/platform-pluv
3
3
  > tsup src/index.ts --format esm,cjs --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- CJS dist/index.js 14.70 KB
12
- CJS ⚡️ Build success in 123ms
13
- ESM dist/index.mjs 12.86 KB
14
- ESM ⚡️ Build success in 123ms
11
+ CJS dist/index.js 14.74 KB
12
+ CJS ⚡️ Build success in 83ms
13
+ ESM dist/index.mjs 12.90 KB
14
+ ESM ⚡️ Build success in 84ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 6713ms
17
- DTS dist/index.d.mts 3.72 KB
18
- DTS dist/index.d.ts 3.72 KB
16
+ DTS ⚡️ Build success in 6655ms
17
+ DTS dist/index.d.mts 3.75 KB
18
+ DTS dist/index.d.ts 3.75 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @pluv/platform-pluv
2
2
 
3
+ ## 2.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - @pluv/crdt@2.2.5
8
+ - @pluv/io@2.2.5
9
+ - @pluv/types@2.2.5
10
+
3
11
  ## 2.2.4
4
12
 
5
13
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -40,6 +40,7 @@ declare class PluvPlatform<TContext extends Record<string, any> = {}, TUser exte
40
40
  };
41
41
  router: false;
42
42
  }> {
43
+ readonly id: string;
43
44
  readonly _config: {
44
45
  authorize: {
45
46
  secret: false;
package/dist/index.d.ts CHANGED
@@ -40,6 +40,7 @@ declare class PluvPlatform<TContext extends Record<string, any> = {}, TUser exte
40
40
  };
41
41
  router: false;
42
42
  }> {
43
+ readonly id: string;
43
44
  readonly _config: {
44
45
  authorize: {
45
46
  secret: false;
package/dist/index.js CHANGED
@@ -219,6 +219,7 @@ var PluvPlatform = class extends import_io.AbstractPlatform {
219
219
  constructor(params) {
220
220
  var _a, _b;
221
221
  super();
222
+ this.id = Math.random().toString();
222
223
  this._config = {
223
224
  authorize: {
224
225
  secret: false
package/dist/index.mjs CHANGED
@@ -189,6 +189,7 @@ var PluvPlatform = class extends AbstractPlatform {
189
189
  constructor(params) {
190
190
  var _a, _b;
191
191
  super();
192
+ this.id = Math.random().toString();
192
193
  this._config = {
193
194
  authorize: {
194
195
  secret: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluv/platform-pluv",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "@pluv/io adapter for pluv.io",
5
5
  "author": "leedavidcs",
6
6
  "license": "MIT",
@@ -21,16 +21,16 @@
21
21
  "fast-json-stable-stringify": "^2.1.0",
22
22
  "hono": "^4.7.10",
23
23
  "zod": "^3.25.17",
24
- "@pluv/crdt": "^2.2.4",
25
- "@pluv/io": "^2.2.4",
26
- "@pluv/types": "^2.2.4"
24
+ "@pluv/crdt": "^2.2.5",
25
+ "@pluv/io": "^2.2.5",
26
+ "@pluv/types": "^2.2.5"
27
27
  },
28
28
  "devDependencies": {
29
29
  "eslint": "^9.27.0",
30
30
  "tsup": "^8.5.0",
31
31
  "typescript": "^5.8.3",
32
- "eslint-config-pluv": "^2.2.4",
33
- "@pluv/tsconfig": "^2.2.4"
32
+ "@pluv/tsconfig": "^2.2.5",
33
+ "eslint-config-pluv": "^2.2.5"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "tsup src/index.ts --format esm,cjs --dts",
@@ -63,6 +63,7 @@ export class PluvPlatform<
63
63
  router: false;
64
64
  }
65
65
  > {
66
+ public readonly id = Math.random().toString();
66
67
  public readonly _config = {
67
68
  authorize: {
68
69
  secret: false as const,