@tonightpass/react 0.0.68 → 0.0.70
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 +1 -1
- package/dist/index.d.ts +1 -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.70 build /home/runner/work/tonightpass/tonightpass/packages/react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[32mCJS[39m [1mdist/index.js [22m[32m440.00 B[39m
|
|
13
13
|
[32mCJS[39m [1mdist/index.js.map [22m[32m1014.00 B[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 89ms
|
|
15
15
|
[32mESM[39m [1mdist/index.mjs [22m[32m261.00 B[39m
|
|
16
16
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m1006.00 B[39m
|
|
17
|
-
[32mESM[39m ⚡️ Build success in
|
|
17
|
+
[32mESM[39m ⚡️ Build success in 90ms
|
|
18
18
|
[34mDTS[39m Build start
|
|
19
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m6.
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m6.
|
|
19
|
+
[32mDTS[39m ⚡️ Build success in 3279ms
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m6.82 KB[39m
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m6.82 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @tonightpass/react
|
|
2
2
|
|
|
3
|
+
## 0.0.70
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`c16e05f`](https://github.com/tonightpass/tonightpass/commit/c16e05fb1eba23d7b4668a670ce232ebb0fc1877)]:
|
|
8
|
+
- tonightpass@0.0.69
|
|
9
|
+
|
|
10
|
+
## 0.0.69
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`ed0996d`](https://github.com/tonightpass/tonightpass/commit/ed0996da66461a2d92dff32d9d50a2a04a840e4d)]:
|
|
15
|
+
- tonightpass@0.0.68
|
|
16
|
+
|
|
3
17
|
## 0.0.68
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -129,7 +129,7 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
129
129
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:organizationSlug/members", tonightpass.ArrayResult<tonightpass.OrganizationMember>, tonightpass.ArrayOptions<tonightpass.OrganizationMember>>, {
|
|
130
130
|
path: Path;
|
|
131
131
|
method: "GET";
|
|
132
|
-
}> | Extract<tonightpass.
|
|
132
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/profiles/:username", tonightpass.UserIdentity | tonightpass.OrganizationIdentity, undefined>, {
|
|
133
133
|
path: Path;
|
|
134
134
|
method: "GET";
|
|
135
135
|
}> | Extract<tonightpass.Endpoint<"GET", "/users", tonightpass.User[], undefined>, {
|
package/dist/index.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ declare const useAPI: <Path extends PathsFor<"GET">>(path?: Path | null, query?:
|
|
|
129
129
|
}> | Extract<tonightpass.Endpoint<"GET", "/organizations/:organizationSlug/members", tonightpass.ArrayResult<tonightpass.OrganizationMember>, tonightpass.ArrayOptions<tonightpass.OrganizationMember>>, {
|
|
130
130
|
path: Path;
|
|
131
131
|
method: "GET";
|
|
132
|
-
}> | Extract<tonightpass.
|
|
132
|
+
}> | Extract<tonightpass.Endpoint<"GET", "/profiles/:username", tonightpass.UserIdentity | tonightpass.OrganizationIdentity, undefined>, {
|
|
133
133
|
path: Path;
|
|
134
134
|
method: "GET";
|
|
135
135
|
}> | Extract<tonightpass.Endpoint<"GET", "/users", tonightpass.User[], undefined>, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonightpass/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.70",
|
|
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.69"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "*"
|