vue-fate 1.3.2 → 1.4.0

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/lib/cli.d.mts CHANGED
@@ -1 +1 @@
1
- export { };
1
+ import "@nkzw/fate/cli";
package/lib/client.d.mts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { createFateClient } from "@nkzw/fate/client";
2
-
3
2
  //#region src/client.d.ts
4
3
  interface ClientMutations {}
5
4
  interface ClientRoots {}
package/lib/index.d.mts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { ConnectionRef, Deferred, Deferred as Deferred$1, FateClient as FateClient$1, FateDehydratedState, FateMutations, FateRoots, GraphQLMutationDefinition, GraphQLMutationInput, GraphQLMutationMap, GraphQLMutationOutput, GraphQLTransportOptions, HydrateOptions, HydrationLimits, InferFateAPI, Pagination, Pagination as Pagination$1, Request, RequestOptions, RequestResult, View, ViewData, ViewEntity, ViewEntityName, ViewRef, ViewRef as ViewRef$1, ViewSelection, clientRoot, createClient, createGraphQLTransport, createHTTPTransport, createTRPCTransport, defer, graphqlMutation, mutation, toEntityId, view } from "@nkzw/fate";
2
2
  import { ComputedRef, InjectionKey, MaybeRefOrGetter, Plugin, PropType, Ref, ShallowRef } from "vue";
3
-
4
3
  //#region src/useRequest.d.ts
5
4
  type GeneratedFateClient$1 = ReturnType<typeof import('vue-fate/client').createFateClient>;
6
5
  type Roots = [GeneratedFateClient$1] extends [never] ? FateRoots : GeneratedFateClient$1 extends FateClient$1<infer R, any> ? R : FateRoots;
package/lib/vite.d.mts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { FateViteTransport, fate as fate$1 } from "@nkzw/fate/vite";
2
-
3
2
  //#region src/vite.d.ts
4
3
  type FateVitePluginOptions = {
5
4
  generatedFile?: false | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-fate",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "description": "fate is a modern data client for Vue.",
5
5
  "homepage": "https://github.com/nkzw-tech/fate",
6
6
  "license": "MIT",
@@ -40,15 +40,15 @@
40
40
  }
41
41
  },
42
42
  "dependencies": {
43
- "@nkzw/fate": "^1.3.2"
43
+ "@nkzw/fate": "^1.4.0"
44
44
  },
45
45
  "devDependencies": {
46
- "vue": "^3.5.39"
46
+ "vue": "^3.5.42"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "vue": "^3.5.0"
50
50
  },
51
51
  "scripts": {
52
- "build": "vp pack -d lib --target=node24 src/index.ts src/client.ts src/cli.ts src/vite.ts"
52
+ "build": "vp pack --tsconfig tsconfig.json -d lib --target=node24 src/index.ts src/client.ts src/cli.ts src/vite.ts"
53
53
  }
54
54
  }