tonightpass 0.0.70 → 0.0.71

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,21 +1,21 @@
1
1
 
2
- > tonightpass@0.0.70 build /home/runner/work/tonightpass/tonightpass/packages/node
2
+ > tonightpass@0.0.71 build /home/runner/work/tonightpass/tonightpass/packages/node
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.2.4
7
+ CLI tsup v8.3.0
8
8
  CLI Using tsup config: /home/runner/work/tonightpass/tonightpass/packages/node/tsup.config.ts
9
9
  CLI Target: esnext
10
10
  CJS Build start
11
11
  ESM Build start
12
12
  DTS Build start
13
- ESM dist/index.mjs 22.85 KB
14
- ESM dist/index.mjs.map 83.26 KB
15
- ESM ⚡️ Build success in 510ms
16
13
  CJS dist/index.js 26.75 KB
17
14
  CJS dist/index.js.map 83.44 KB
18
- CJS ⚡️ Build success in 511ms
19
- DTS ⚡️ Build success in 3911ms
20
- DTS dist/index.d.ts 42.60 KB
21
- DTS dist/index.d.mts 42.60 KB
15
+ CJS ⚡️ Build success in 570ms
16
+ ESM dist/index.mjs 22.85 KB
17
+ ESM dist/index.mjs.map 83.26 KB
18
+ ESM ⚡️ Build success in 571ms
19
+ DTS ⚡️ Build success in 3755ms
20
+ DTS dist/index.d.ts 42.68 KB
21
+ DTS dist/index.d.mts 42.68 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # tonightpass
2
2
 
3
+ ## 0.0.71
4
+
5
+ ### Patch Changes
6
+
7
+ - [`fc82c2e`](https://github.com/tonightpass/tonightpass/commit/fc82c2ed21e563cd60b0e3f6e5c550eac2a865a0) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update profile metadata types
8
+
3
9
  ## 0.0.70
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -400,6 +400,9 @@ interface Profile {
400
400
  }
401
401
  interface ProfileMetadata {
402
402
  followersCount: number;
403
+ followingsCount: number;
404
+ isFollower: boolean;
405
+ isFollowing: boolean;
403
406
  isBlocked: boolean;
404
407
  hasBlocked: boolean;
405
408
  canDM: boolean;
package/dist/index.d.ts CHANGED
@@ -400,6 +400,9 @@ interface Profile {
400
400
  }
401
401
  interface ProfileMetadata {
402
402
  followersCount: number;
403
+ followingsCount: number;
404
+ isFollower: boolean;
405
+ isFollowing: boolean;
403
406
  isBlocked: boolean;
404
407
  hasBlocked: boolean;
405
408
  canDM: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tonightpass",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "description": "@tonightpass sdk and tools.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,6 +20,10 @@ export interface Profile {
20
20
 
21
21
  export interface ProfileMetadata {
22
22
  followersCount: number;
23
+ followingsCount: number;
24
+
25
+ isFollower: boolean;
26
+ isFollowing: boolean;
23
27
 
24
28
  isBlocked: boolean;
25
29
  hasBlocked: boolean;