tonightpass 0.0.130 → 0.0.132
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/README.md +2 -4
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
<div align="center">
|
|
2
|
-
<a href="https://tonightpass.com">
|
|
3
|
-
<img src="https://tonightpass.com/static/images/favicon/android-chrome-512x512.png" alt="Tonight Pass" height="128" />
|
|
4
|
-
</a>
|
|
5
|
-
<h1>Tonight Pass</h1>
|
|
6
4
|
<a aria-label="onRuntime Studio" href="https://onruntime.com">
|
|
7
5
|
<img src="https://img.shields.io/badge/MADE%20BY%20ONRUNTIME-000.svg?style=for-the-badge&labelColor=000" alt="Made by onRuntime Studio">
|
|
8
6
|
</a>
|
package/dist/index.d.mts
CHANGED
|
@@ -448,6 +448,9 @@ type OrganizationEvent = Base & {
|
|
|
448
448
|
tickets: OrganizationEventTicket[];
|
|
449
449
|
styles: OrganizationEventStyle[];
|
|
450
450
|
viewsCount: number;
|
|
451
|
+
sessionsCount: number;
|
|
452
|
+
totalViewsCount: number;
|
|
453
|
+
averageViewsPerSessionCount: number;
|
|
451
454
|
startAt: Date;
|
|
452
455
|
endAt: Date;
|
|
453
456
|
};
|
|
@@ -750,7 +753,7 @@ declare class UpdateOrganizationEventTicketDto implements DeepPartial<CreateOrga
|
|
|
750
753
|
endAt?: Date;
|
|
751
754
|
}
|
|
752
755
|
|
|
753
|
-
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "viewsCount"> & {
|
|
756
|
+
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "viewsCount" | "sessionsCount" | "totalViewsCount" | "averageViewsPerSessionCount"> & {
|
|
754
757
|
slug?: string;
|
|
755
758
|
styles: string[];
|
|
756
759
|
tickets: CreateOrganizationEventTicketInput[];
|
package/dist/index.d.ts
CHANGED
|
@@ -448,6 +448,9 @@ type OrganizationEvent = Base & {
|
|
|
448
448
|
tickets: OrganizationEventTicket[];
|
|
449
449
|
styles: OrganizationEventStyle[];
|
|
450
450
|
viewsCount: number;
|
|
451
|
+
sessionsCount: number;
|
|
452
|
+
totalViewsCount: number;
|
|
453
|
+
averageViewsPerSessionCount: number;
|
|
451
454
|
startAt: Date;
|
|
452
455
|
endAt: Date;
|
|
453
456
|
};
|
|
@@ -750,7 +753,7 @@ declare class UpdateOrganizationEventTicketDto implements DeepPartial<CreateOrga
|
|
|
750
753
|
endAt?: Date;
|
|
751
754
|
}
|
|
752
755
|
|
|
753
|
-
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "viewsCount"> & {
|
|
756
|
+
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "viewsCount" | "sessionsCount" | "totalViewsCount" | "averageViewsPerSessionCount"> & {
|
|
754
757
|
slug?: string;
|
|
755
758
|
styles: string[];
|
|
756
759
|
tickets: CreateOrganizationEventTicketInput[];
|