tonightpass 0.0.12 → 0.0.13

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
- > tonightpass@0.0.12 build /home/runner/work/tonightpass/tonightpass/packages/node
2
+ > tonightpass@0.0.13 build /home/runner/work/tonightpass/tonightpass/packages/node
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -11,11 +11,11 @@
11
11
  ESM Build start
12
12
  CJS dist/index.js 9.30 KB
13
13
  CJS dist/index.js.map 29.79 KB
14
- CJS ⚡️ Build success in 233ms
14
+ CJS ⚡️ Build success in 283ms
15
15
  ESM dist/index.mjs 8.08 KB
16
16
  ESM dist/index.mjs.map 29.79 KB
17
- ESM ⚡️ Build success in 232ms
17
+ ESM ⚡️ Build success in 284ms
18
18
  DTS Build start
19
- DTS ⚡️ Build success in 2511ms
19
+ DTS ⚡️ Build success in 2452ms
20
20
  DTS dist/index.d.ts 22.10 KB
21
21
  DTS dist/index.d.mts 22.10 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # tonightpass
2
2
 
3
+ ## 0.0.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [`858e5f2`](https://github.com/tonightpass/tonightpass/commit/858e5f20f89db91a6d510453d8d6c089aa2792ce) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update profile type description to be optional
8
+
3
9
  ## 0.0.12
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -383,7 +383,7 @@ type PromoCode = {
383
383
  interface Profile {
384
384
  type: "user" | "organization";
385
385
  displayName: string;
386
- description: string;
386
+ description?: string;
387
387
  avatarUrl?: string;
388
388
  bannerUrl?: string;
389
389
  metadata: ProfileMetadata;
package/dist/index.d.ts CHANGED
@@ -383,7 +383,7 @@ type PromoCode = {
383
383
  interface Profile {
384
384
  type: "user" | "organization";
385
385
  displayName: string;
386
- description: string;
386
+ description?: string;
387
387
  avatarUrl?: string;
388
388
  bannerUrl?: string;
389
389
  metadata: ProfileMetadata;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tonightpass",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "@tonightpass sdk and tools.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -6,7 +6,7 @@ export interface Profile {
6
6
  type: "user" | "organization";
7
7
 
8
8
  displayName: string;
9
- description: string;
9
+ description?: string;
10
10
 
11
11
  avatarUrl?: string;
12
12
  bannerUrl?: string;