@veloxts/client 0.6.104 → 0.6.106
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @veloxts/client
|
|
2
2
|
|
|
3
|
+
## 0.6.106
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chores
|
|
8
|
+
|
|
9
|
+
## 0.6.105
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix(create): resolve JSX conditional marker artifacts and add auth route guard & some socumentation updates
|
|
14
|
+
|
|
3
15
|
## 0.6.104
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @veloxts/client
|
|
2
2
|
|
|
3
|
-
> **
|
|
3
|
+
> **Early Access (v0.6.x)**
|
|
4
4
|
|
|
5
5
|
Type-safe frontend API client for VeloxTS Framework - provides zero code generation with full type inference from backend procedures. Learn more at [@veloxts/velox](https://www.npmjs.com/package/@veloxts/velox).
|
|
6
6
|
|
package/dist/types.d.ts
CHANGED
|
@@ -148,6 +148,8 @@ export type ClientFromTRPCNamespace<TNamespace> = {
|
|
|
148
148
|
};
|
|
149
149
|
/**
|
|
150
150
|
* Checks if a type looks like a tRPC procedure
|
|
151
|
+
*
|
|
152
|
+
* @undocumented
|
|
151
153
|
*/
|
|
152
154
|
export type IsTRPCProcedure<T> = T extends {
|
|
153
155
|
_def: {
|
|
@@ -159,6 +161,8 @@ export type IsTRPCProcedure<T> = T extends {
|
|
|
159
161
|
} ? true : false;
|
|
160
162
|
/**
|
|
161
163
|
* Checks if a type looks like a tRPC namespace (object containing tRPC procedures)
|
|
164
|
+
*
|
|
165
|
+
* @undocumented
|
|
162
166
|
*/
|
|
163
167
|
export type IsTRPCNamespace<T> = T extends Record<string, {
|
|
164
168
|
_def: {
|