@tonightpass/react 0.0.45 → 0.0.47
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 +6 -6
- package/CHANGELOG.md +14 -0
- package/dist/index.d.mts +16 -3
- package/dist/index.d.ts +16 -3
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @tonightpass/react@0.0.
|
|
2
|
+
> @tonightpass/react@0.0.47 build /home/runner/work/tonightpass/tonightpass/packages/react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.ts
|
|
@@ -11,11 +11,11 @@ CJS Build start
|
|
|
11
11
|
ESM Build start
|
|
12
12
|
CJS dist/index.js 438.00 B
|
|
13
13
|
CJS dist/index.js.map 948.00 B
|
|
14
|
-
CJS ⚡️ Build success in
|
|
14
|
+
CJS ⚡️ Build success in 81ms
|
|
15
15
|
ESM dist/index.mjs 258.00 B
|
|
16
16
|
ESM dist/index.mjs.map 948.00 B
|
|
17
|
-
ESM ⚡️ Build success in
|
|
17
|
+
ESM ⚡️ Build success in 81ms
|
|
18
18
|
DTS Build start
|
|
19
|
-
DTS ⚡️ Build success in
|
|
20
|
-
DTS dist/index.d.ts
|
|
21
|
-
DTS dist/index.d.mts
|
|
19
|
+
DTS ⚡️ Build success in 2938ms
|
|
20
|
+
DTS dist/index.d.ts 6.22 KB
|
|
21
|
+
DTS dist/index.d.mts 6.22 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @tonightpass/react
|
|
2
2
|
|
|
3
|
+
## 0.0.47
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`6a67f86`](https://github.com/tonightpass/tonightpass/commit/6a67f8664fd3d0ca019e88825102add5a9e43e35)]:
|
|
8
|
+
- tonightpass@0.0.46
|
|
9
|
+
|
|
10
|
+
## 0.0.46
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`f4b07ea`](https://github.com/tonightpass/tonightpass/commit/f4b07ea8c8c47f48eda65ec7aef06e3e7e532b4b)]:
|
|
15
|
+
- tonightpass@0.0.45
|
|
16
|
+
|
|
3
17
|
## 0.0.45
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -84,7 +84,20 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
84
84
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/billing/dashboard", void, undefined>, {
|
|
85
85
|
path: Path;
|
|
86
86
|
method: "GET";
|
|
87
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations
|
|
87
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
88
|
+
path: Path;
|
|
89
|
+
method: "GET";
|
|
90
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/suggestions", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
91
|
+
path: Path;
|
|
92
|
+
method: "GET";
|
|
93
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent> & {
|
|
94
|
+
latitude: number;
|
|
95
|
+
longitude: number;
|
|
96
|
+
radius?: number;
|
|
97
|
+
}>, {
|
|
98
|
+
path: Path;
|
|
99
|
+
method: "GET";
|
|
100
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/events", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
88
101
|
path: Path;
|
|
89
102
|
method: "GET";
|
|
90
103
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:organizationSlug/events/:eventSlug", tonightpass.OrganizationEvent, undefined>, {
|
|
@@ -102,10 +115,10 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
102
115
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/events/:eventSlug/tickets/:ticketId", tonightpass.OrganizationEventTicket, undefined>, {
|
|
103
116
|
path: Path;
|
|
104
117
|
method: "GET";
|
|
105
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/members", tonightpass.OrganizationMember
|
|
118
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/members", tonightpass.ArrayResult<tonightpass.OrganizationMember>, tonightpass.ArrayOptions<tonightpass.OrganizationMember>>, {
|
|
106
119
|
path: Path;
|
|
107
120
|
method: "GET";
|
|
108
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/members", tonightpass.OrganizationMember
|
|
121
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/members", tonightpass.ArrayResult<tonightpass.OrganizationMember>, tonightpass.ArrayOptions<tonightpass.OrganizationMember>>, {
|
|
109
122
|
path: Path;
|
|
110
123
|
method: "GET";
|
|
111
124
|
}> | Extract<tonightpass.ProfileEndpoints, {
|
package/dist/index.d.ts
CHANGED
|
@@ -84,7 +84,20 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
84
84
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/billing/dashboard", void, undefined>, {
|
|
85
85
|
path: Path;
|
|
86
86
|
method: "GET";
|
|
87
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations
|
|
87
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
88
|
+
path: Path;
|
|
89
|
+
method: "GET";
|
|
90
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/suggestions", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
91
|
+
path: Path;
|
|
92
|
+
method: "GET";
|
|
93
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent> & {
|
|
94
|
+
latitude: number;
|
|
95
|
+
longitude: number;
|
|
96
|
+
radius?: number;
|
|
97
|
+
}>, {
|
|
98
|
+
path: Path;
|
|
99
|
+
method: "GET";
|
|
100
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/events", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
88
101
|
path: Path;
|
|
89
102
|
method: "GET";
|
|
90
103
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:organizationSlug/events/:eventSlug", tonightpass.OrganizationEvent, undefined>, {
|
|
@@ -102,10 +115,10 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
102
115
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/events/:eventSlug/tickets/:ticketId", tonightpass.OrganizationEventTicket, undefined>, {
|
|
103
116
|
path: Path;
|
|
104
117
|
method: "GET";
|
|
105
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/members", tonightpass.OrganizationMember
|
|
118
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/members", tonightpass.ArrayResult<tonightpass.OrganizationMember>, tonightpass.ArrayOptions<tonightpass.OrganizationMember>>, {
|
|
106
119
|
path: Path;
|
|
107
120
|
method: "GET";
|
|
108
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/members", tonightpass.OrganizationMember
|
|
121
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:slug/members", tonightpass.ArrayResult<tonightpass.OrganizationMember>, tonightpass.ArrayOptions<tonightpass.OrganizationMember>>, {
|
|
109
122
|
path: Path;
|
|
110
123
|
method: "GET";
|
|
111
124
|
}> | Extract<tonightpass.ProfileEndpoints, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonightpass/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"description": "@tonightpass react sdk.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"types": "dist/index.d.ts",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"swr": "^2.2.5",
|
|
18
|
-
"tonightpass": "^0.0.
|
|
18
|
+
"tonightpass": "^0.0.46"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "*"
|