tonightpass 0.0.112 → 0.0.113

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.112 build /home/runner/work/tonightpass/tonightpass/packages/node
2
+ > tonightpass@0.0.113 build /home/runner/work/tonightpass/tonightpass/packages/node
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,12 +10,12 @@
10
10
  CJS Build start
11
11
  ESM Build start
12
12
  DTS Build start
13
- CJS dist/index.js 36.62 KB
14
- CJS dist/index.js.map 114.02 KB
15
- CJS ⚡️ Build success in 834ms
16
13
  ESM dist/index.mjs 32.20 KB
17
14
  ESM dist/index.mjs.map 113.76 KB
18
- ESM ⚡️ Build success in 835ms
19
- DTS ⚡️ Build success in 4681ms
15
+ ESM ⚡️ Build success in 759ms
16
+ CJS dist/index.js 36.62 KB
17
+ CJS dist/index.js.map 114.02 KB
18
+ CJS ⚡️ Build success in 760ms
19
+ DTS ⚡️ Build success in 4258ms
20
20
  DTS dist/index.d.ts 41.55 KB
21
21
  DTS dist/index.d.mts 41.55 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # tonightpass
2
2
 
3
+ ## 0.0.113
4
+
5
+ ### Patch Changes
6
+
7
+ - [`21e2771`](https://github.com/tonightpass/tonightpass/commit/21e2771ffc99fa394e5eb605e0d2c6ec05bf8d34) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update OrganizationEventViewEndpoints to use string type for views
8
+
3
9
  ## 0.0.112
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", boolean, null> | Endpoint<"PUT", "/organizations/:organizationSlug/events/:eventSlug/views/:viewId", boolean>;
291
+ type OrganizationEventViewEndpoints = Endpoint<"POST", "/organizations/:organizationSlug/events/:eventSlug/views", boolean, string> | Endpoint<"PUT", "/organizations/:organizationSlug/events/:eventSlug/views/:viewId", boolean>;
292
292
 
293
293
  type OrganizationEventTicket = Base & {
294
294
  name: string;
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", boolean, null> | Endpoint<"PUT", "/organizations/:organizationSlug/events/:eventSlug/views/:viewId", boolean>;
291
+ type OrganizationEventViewEndpoints = Endpoint<"POST", "/organizations/:organizationSlug/events/:eventSlug/views", boolean, string> | Endpoint<"PUT", "/organizations/:organizationSlug/events/:eventSlug/views/:viewId", boolean>;
292
292
 
293
293
  type OrganizationEventTicket = Base & {
294
294
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tonightpass",
3
- "version": "0.0.112",
3
+ "version": "0.0.113",
4
4
  "description": "@tonightpass sdk and tools.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -5,7 +5,7 @@ export type OrganizationEventViewEndpoints =
5
5
  "POST",
6
6
  "/organizations/:organizationSlug/events/:eventSlug/views",
7
7
  boolean,
8
- null
8
+ string
9
9
  >
10
10
  | Endpoint<
11
11
  "PUT",