tonightpass 0.0.115 → 0.0.116

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.115 build /home/runner/work/tonightpass/tonightpass/packages/node
2
+ > tonightpass@0.0.116 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
  DTS Build start
13
13
  ESM dist/index.mjs 32.04 KB
14
- ESM dist/index.mjs.map 115.75 KB
15
- ESM ⚡️ Build success in 781ms
14
+ ESM dist/index.mjs.map 115.79 KB
15
+ ESM ⚡️ Build success in 832ms
16
16
  CJS dist/index.js 36.46 KB
17
- CJS dist/index.js.map 116.00 KB
18
- CJS ⚡️ Build success in 782ms
19
- DTS ⚡️ Build success in 4238ms
20
- DTS dist/index.d.ts 41.25 KB
21
- DTS dist/index.d.mts 41.25 KB
17
+ CJS dist/index.js.map 116.03 KB
18
+ CJS ⚡️ Build success in 833ms
19
+ DTS ⚡️ Build success in 4511ms
20
+ DTS dist/index.d.ts 41.28 KB
21
+ DTS dist/index.d.mts 41.28 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # tonightpass
2
2
 
3
+ ## 0.0.116
4
+
5
+ ### Patch Changes
6
+
7
+ - [`29c2acb`](https://github.com/tonightpass/tonightpass/commit/29c2acbbac9ceb4bb0ba6f55b3bbec061a81f329) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Add viewsCount property to OrganizationEvent type
8
+
3
9
  ## 0.0.115
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -336,6 +336,7 @@ type OrganizationEvent = Base & {
336
336
  location: Location$1;
337
337
  tickets: OrganizationEventTicket[];
338
338
  styles: OrganizationEventStyle[];
339
+ viewsCount: number;
339
340
  startAt: Date;
340
341
  endAt: Date;
341
342
  };
@@ -618,7 +619,7 @@ declare class UpdateOrganizationEventTicketDto implements DeepPartial<CreateOrga
618
619
  endAt?: Date;
619
620
  }
620
621
 
621
- type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization"> & {
622
+ type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "viewsCount"> & {
622
623
  slug?: string;
623
624
  styles: string[];
624
625
  tickets: CreateOrganizationEventTicketInput[];
package/dist/index.d.ts CHANGED
@@ -336,6 +336,7 @@ type OrganizationEvent = Base & {
336
336
  location: Location$1;
337
337
  tickets: OrganizationEventTicket[];
338
338
  styles: OrganizationEventStyle[];
339
+ viewsCount: number;
339
340
  startAt: Date;
340
341
  endAt: Date;
341
342
  };
@@ -618,7 +619,7 @@ declare class UpdateOrganizationEventTicketDto implements DeepPartial<CreateOrga
618
619
  endAt?: Date;
619
620
  }
620
621
 
621
- type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization"> & {
622
+ type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "viewsCount"> & {
622
623
  slug?: string;
623
624
  styles: string[];
624
625
  tickets: CreateOrganizationEventTicketInput[];