@tonightpass/react 0.0.46 → 0.0.48
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 +8 -8
- package/CHANGELOG.md +14 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- 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.48 build /home/runner/work/tonightpass/tonightpass/packages/react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.ts
|
|
@@ -9,13 +9,13 @@ CLI Using tsup config: /home/runner/work/tonightpass/tonightpass/packages/react/
|
|
|
9
9
|
CLI Target: esnext
|
|
10
10
|
CJS Build start
|
|
11
11
|
ESM Build start
|
|
12
|
-
CJS dist/index.js 438.00 B
|
|
13
|
-
CJS dist/index.js.map 948.00 B
|
|
14
|
-
CJS ⚡️ Build success in 79ms
|
|
15
12
|
ESM dist/index.mjs 258.00 B
|
|
16
13
|
ESM dist/index.mjs.map 948.00 B
|
|
17
|
-
ESM ⚡️ Build success in
|
|
14
|
+
ESM ⚡️ Build success in 85ms
|
|
15
|
+
CJS dist/index.js 438.00 B
|
|
16
|
+
CJS dist/index.js.map 948.00 B
|
|
17
|
+
CJS ⚡️ Build success in 86ms
|
|
18
18
|
DTS Build start
|
|
19
|
-
DTS ⚡️ Build success in
|
|
20
|
-
DTS dist/index.d.ts 6.
|
|
21
|
-
DTS dist/index.d.mts 6.
|
|
19
|
+
DTS ⚡️ Build success in 3046ms
|
|
20
|
+
DTS dist/index.d.ts 6.34 KB
|
|
21
|
+
DTS dist/index.d.mts 6.34 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @tonightpass/react
|
|
2
2
|
|
|
3
|
+
## 0.0.48
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`284e987`](https://github.com/tonightpass/tonightpass/commit/284e987bd20b892a9f6444955379d21d68d21a72)]:
|
|
8
|
+
- tonightpass@0.0.47
|
|
9
|
+
|
|
10
|
+
## 0.0.47
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`6a67f86`](https://github.com/tonightpass/tonightpass/commit/6a67f8664fd3d0ca019e88825102add5a9e43e35)]:
|
|
15
|
+
- tonightpass@0.0.46
|
|
16
|
+
|
|
3
17
|
## 0.0.46
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as swr from 'swr';
|
|
2
|
+
import * as _mikro_orm_core from '@mikro-orm/core';
|
|
2
3
|
import * as stripe from 'stripe';
|
|
3
4
|
import * as tonightpass from 'tonightpass';
|
|
4
5
|
import { Client, PathsFor, Query, APIRequestOptions } from 'tonightpass';
|
|
@@ -90,7 +91,9 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
90
91
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/suggestions", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
91
92
|
path: Path;
|
|
92
93
|
method: "GET";
|
|
93
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>,
|
|
94
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, {
|
|
95
|
+
populate?: _mikro_orm_core.Populate<tonightpass.OrganizationEvent> | undefined;
|
|
96
|
+
} & tonightpass.ArrayPaginationOptions & {
|
|
94
97
|
latitude: number;
|
|
95
98
|
longitude: number;
|
|
96
99
|
radius?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as swr from 'swr';
|
|
2
|
+
import * as _mikro_orm_core from '@mikro-orm/core';
|
|
2
3
|
import * as stripe from 'stripe';
|
|
3
4
|
import * as tonightpass from 'tonightpass';
|
|
4
5
|
import { Client, PathsFor, Query, APIRequestOptions } from 'tonightpass';
|
|
@@ -90,7 +91,9 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
90
91
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/suggestions", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, tonightpass.ArrayOptions<tonightpass.OrganizationEvent>>, {
|
|
91
92
|
path: Path;
|
|
92
93
|
method: "GET";
|
|
93
|
-
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>,
|
|
94
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, {
|
|
95
|
+
populate?: _mikro_orm_core.Populate<tonightpass.OrganizationEvent> | undefined;
|
|
96
|
+
} & tonightpass.ArrayPaginationOptions & {
|
|
94
97
|
latitude: number;
|
|
95
98
|
longitude: number;
|
|
96
99
|
radius?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonightpass/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
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.47"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "*"
|