@veloxts/client 0.6.104 → 0.6.105

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @veloxts/client
2
2
 
3
+ ## 0.6.105
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(create): resolve JSX conditional marker artifacts and add auth route guard & some socumentation updates
8
+
3
9
  ## 0.6.104
4
10
 
5
11
  ### Patch Changes
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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/client",
3
- "version": "0.6.104",
3
+ "version": "0.6.105",
4
4
  "description": "Type-safe frontend API client for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",