@noya-app/noya-api-client-react 0.1.43 → 0.1.45
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 +9 -9
- package/CHANGELOG.md +15 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +596 -193
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +571 -168
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
[34mCJS[39m Build start
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
DTS Build start
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
DTS ⚡️ Build success in
|
|
17
|
-
DTS dist/index.d.ts 16.
|
|
18
|
-
DTS dist/index.d.mts 16.
|
|
10
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m517.00 KB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m1.37 MB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 1055ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m525.55 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m1.37 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 1090ms
|
|
16
|
+
DTS ⚡️ Build success in 7857ms
|
|
17
|
+
DTS dist/index.d.ts 16.96 KB
|
|
18
|
+
DTS dist/index.d.mts 16.96 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @noya-app/noya-api-client-react
|
|
2
2
|
|
|
3
|
+
## 0.1.45
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6224f36]
|
|
8
|
+
- @noya-app/noya-api@0.1.45
|
|
9
|
+
|
|
10
|
+
## 0.1.44
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [efb58f9]
|
|
15
|
+
- Updated dependencies [bd5ae5b]
|
|
16
|
+
- @noya-app/noya-api@0.1.44
|
|
17
|
+
|
|
3
18
|
## 0.1.43
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,7 @@ declare function useNoyaClientOrFallback(): NoyaAPIContextValue;
|
|
|
17
17
|
|
|
18
18
|
declare function useNoyaTools(initial?: NoyaAPI.Tool[]): {
|
|
19
19
|
tools: {
|
|
20
|
+
pinned?: boolean | undefined;
|
|
20
21
|
addedById?: string | undefined;
|
|
21
22
|
id: string;
|
|
22
23
|
name: string;
|
|
@@ -49,6 +50,7 @@ declare function useNoyaTools(initial?: NoyaAPI.Tool[]): {
|
|
|
49
50
|
};
|
|
50
51
|
declare function useOptionalNoyaTools(initial?: NoyaAPI.Tool[]): {
|
|
51
52
|
tools: {
|
|
53
|
+
pinned?: boolean | undefined;
|
|
52
54
|
addedById?: string | undefined;
|
|
53
55
|
id: string;
|
|
54
56
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare function useNoyaClientOrFallback(): NoyaAPIContextValue;
|
|
|
17
17
|
|
|
18
18
|
declare function useNoyaTools(initial?: NoyaAPI.Tool[]): {
|
|
19
19
|
tools: {
|
|
20
|
+
pinned?: boolean | undefined;
|
|
20
21
|
addedById?: string | undefined;
|
|
21
22
|
id: string;
|
|
22
23
|
name: string;
|
|
@@ -49,6 +50,7 @@ declare function useNoyaTools(initial?: NoyaAPI.Tool[]): {
|
|
|
49
50
|
};
|
|
50
51
|
declare function useOptionalNoyaTools(initial?: NoyaAPI.Tool[]): {
|
|
51
52
|
tools: {
|
|
53
|
+
pinned?: boolean | undefined;
|
|
52
54
|
addedById?: string | undefined;
|
|
53
55
|
id: string;
|
|
54
56
|
name: string;
|