@tonightpass/react 0.0.48 → 0.0.49
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 +7 -0
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- 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.49 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
|
-
ESM dist/index.mjs 258.00 B
|
|
13
|
-
ESM dist/index.mjs.map 948.00 B
|
|
14
|
-
ESM ⚡️ Build success in 85ms
|
|
15
12
|
CJS dist/index.js 438.00 B
|
|
16
13
|
CJS dist/index.js.map 948.00 B
|
|
17
|
-
CJS ⚡️ Build success in
|
|
14
|
+
CJS ⚡️ Build success in 77ms
|
|
15
|
+
ESM dist/index.mjs 258.00 B
|
|
16
|
+
ESM dist/index.mjs.map 948.00 B
|
|
17
|
+
ESM ⚡️ Build success in 77ms
|
|
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 2732ms
|
|
20
|
+
DTS dist/index.d.ts 6.23 KB
|
|
21
|
+
DTS dist/index.d.mts 6.23 KB
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as swr from 'swr';
|
|
2
|
-
import * as _mikro_orm_core from '@mikro-orm/core';
|
|
3
2
|
import * as stripe from 'stripe';
|
|
4
3
|
import * as tonightpass from 'tonightpass';
|
|
5
4
|
import { Client, PathsFor, Query, APIRequestOptions } from 'tonightpass';
|
|
@@ -92,7 +91,7 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
92
91
|
path: Path;
|
|
93
92
|
method: "GET";
|
|
94
93
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, {
|
|
95
|
-
populate?:
|
|
94
|
+
populate?: string[];
|
|
96
95
|
} & tonightpass.ArrayPaginationOptions & {
|
|
97
96
|
latitude: number;
|
|
98
97
|
longitude: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as swr from 'swr';
|
|
2
|
-
import * as _mikro_orm_core from '@mikro-orm/core';
|
|
3
2
|
import * as stripe from 'stripe';
|
|
4
3
|
import * as tonightpass from 'tonightpass';
|
|
5
4
|
import { Client, PathsFor, Query, APIRequestOptions } from 'tonightpass';
|
|
@@ -92,7 +91,7 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
92
91
|
path: Path;
|
|
93
92
|
method: "GET";
|
|
94
93
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/events/nearby", tonightpass.ArrayResult<tonightpass.OrganizationEvent>, {
|
|
95
|
-
populate?:
|
|
94
|
+
populate?: string[];
|
|
96
95
|
} & tonightpass.ArrayPaginationOptions & {
|
|
97
96
|
latitude: number;
|
|
98
97
|
longitude: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonightpass/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.49",
|
|
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.48"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "*"
|