tonightpass 0.0.113 → 0.0.114
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> tonightpass@0.0.
|
|
2
|
+
> tonightpass@0.0.114 build /home/runner/work/tonightpass/tonightpass/packages/node
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m32.20 KB[39m
|
|
14
14
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m113.76 KB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 734ms
|
|
16
16
|
[32mCJS[39m [1mdist/index.js [22m[32m36.62 KB[39m
|
|
17
17
|
[32mCJS[39m [1mdist/index.js.map [22m[32m114.02 KB[39m
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 735ms
|
|
19
|
+
[32mDTS[39m ⚡️ Build success in 4477ms
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m41.55 KB[39m
|
|
21
21
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m41.55 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# tonightpass
|
|
2
2
|
|
|
3
|
+
## 0.0.114
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`c67af31`](https://github.com/tonightpass/tonightpass/commit/c67af316e99afa56392704c802e5eb037d1b2e0e) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update OrganizationEventViewEndpoints to use null type for response
|
|
8
|
+
|
|
3
9
|
## 0.0.113
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -288,7 +288,7 @@ declare enum OrganizationEventStyleType {
|
|
|
288
288
|
}
|
|
289
289
|
type OrganizationEventStyleEndpoints = Endpoint<"GET", "/organizations/events/styles", OrganizationEventStyle[]> | Endpoint<"GET", "/organizations/events/styles/:styleSlug", OrganizationEventStyle> | Endpoint<"POST", "/organizations/events/styles", OrganizationEventStyle, CreateOrganizationEventStyleDto> | Endpoint<"PUT", "/organizations/events/styles/:styleSlug", OrganizationEventStyle, UpdateOrganizationEventStyleDto> | Endpoint<"DELETE", "/organizations/events/styles/:styleSlug", OrganizationEventStyle[], null>;
|
|
290
290
|
|
|
291
|
-
type OrganizationEventViewEndpoints = Endpoint<"POST", "/organizations/:organizationSlug/events/:eventSlug/views",
|
|
291
|
+
type OrganizationEventViewEndpoints = Endpoint<"POST", "/organizations/:organizationSlug/events/:eventSlug/views", string, null> | Endpoint<"PUT", "/organizations/:organizationSlug/events/:eventSlug/views/:viewId", boolean>;
|
|
292
292
|
|
|
293
293
|
type OrganizationEventTicket = Base & {
|
|
294
294
|
name: string;
|
|
@@ -866,7 +866,7 @@ declare const organizations: (client: Client) => {
|
|
|
866
866
|
delete: (organizationSlug: string, eventSlug: string, ticketId: string) => Promise<OrganizationEventTicket[]>;
|
|
867
867
|
};
|
|
868
868
|
views: {
|
|
869
|
-
record: (organizationSlug: string, eventSlug: string) => Promise<
|
|
869
|
+
record: (organizationSlug: string, eventSlug: string) => Promise<string>;
|
|
870
870
|
heartbeat: (organizationSlug: string, eventSlug: string, viewId: string) => Promise<boolean>;
|
|
871
871
|
};
|
|
872
872
|
};
|
|
@@ -999,7 +999,7 @@ declare class TonightPass {
|
|
|
999
999
|
delete: (organizationSlug: string, eventSlug: string, ticketId: string) => Promise<OrganizationEventTicket[]>;
|
|
1000
1000
|
};
|
|
1001
1001
|
views: {
|
|
1002
|
-
record: (organizationSlug: string, eventSlug: string) => Promise<
|
|
1002
|
+
record: (organizationSlug: string, eventSlug: string) => Promise<string>;
|
|
1003
1003
|
heartbeat: (organizationSlug: string, eventSlug: string, viewId: string) => Promise<boolean>;
|
|
1004
1004
|
};
|
|
1005
1005
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -288,7 +288,7 @@ declare enum OrganizationEventStyleType {
|
|
|
288
288
|
}
|
|
289
289
|
type OrganizationEventStyleEndpoints = Endpoint<"GET", "/organizations/events/styles", OrganizationEventStyle[]> | Endpoint<"GET", "/organizations/events/styles/:styleSlug", OrganizationEventStyle> | Endpoint<"POST", "/organizations/events/styles", OrganizationEventStyle, CreateOrganizationEventStyleDto> | Endpoint<"PUT", "/organizations/events/styles/:styleSlug", OrganizationEventStyle, UpdateOrganizationEventStyleDto> | Endpoint<"DELETE", "/organizations/events/styles/:styleSlug", OrganizationEventStyle[], null>;
|
|
290
290
|
|
|
291
|
-
type OrganizationEventViewEndpoints = Endpoint<"POST", "/organizations/:organizationSlug/events/:eventSlug/views",
|
|
291
|
+
type OrganizationEventViewEndpoints = Endpoint<"POST", "/organizations/:organizationSlug/events/:eventSlug/views", string, null> | Endpoint<"PUT", "/organizations/:organizationSlug/events/:eventSlug/views/:viewId", boolean>;
|
|
292
292
|
|
|
293
293
|
type OrganizationEventTicket = Base & {
|
|
294
294
|
name: string;
|
|
@@ -866,7 +866,7 @@ declare const organizations: (client: Client) => {
|
|
|
866
866
|
delete: (organizationSlug: string, eventSlug: string, ticketId: string) => Promise<OrganizationEventTicket[]>;
|
|
867
867
|
};
|
|
868
868
|
views: {
|
|
869
|
-
record: (organizationSlug: string, eventSlug: string) => Promise<
|
|
869
|
+
record: (organizationSlug: string, eventSlug: string) => Promise<string>;
|
|
870
870
|
heartbeat: (organizationSlug: string, eventSlug: string, viewId: string) => Promise<boolean>;
|
|
871
871
|
};
|
|
872
872
|
};
|
|
@@ -999,7 +999,7 @@ declare class TonightPass {
|
|
|
999
999
|
delete: (organizationSlug: string, eventSlug: string, ticketId: string) => Promise<OrganizationEventTicket[]>;
|
|
1000
1000
|
};
|
|
1001
1001
|
views: {
|
|
1002
|
-
record: (organizationSlug: string, eventSlug: string) => Promise<
|
|
1002
|
+
record: (organizationSlug: string, eventSlug: string) => Promise<string>;
|
|
1003
1003
|
heartbeat: (organizationSlug: string, eventSlug: string, viewId: string) => Promise<boolean>;
|
|
1004
1004
|
};
|
|
1005
1005
|
};
|
package/package.json
CHANGED