@orpc/pinia-colada 2.0.0-beta.29 → 2.0.0-beta.31

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/README.md CHANGED
@@ -54,6 +54,7 @@ You can read the documentation [here](https://orpc.dev).
54
54
  - [@orpc/tanstack-query](https://npmx.dev/package/@orpc/tanstack-query): Integrate with [TanStack Query](https://tanstack.com/query/latest).
55
55
  - [@orpc/pinia-colada](https://npmx.dev/package/@orpc/pinia-colada): Integrate with [Pinia Colada](https://pinia-colada.esm.dev/).
56
56
  - [@orpc/swr](https://npmx.dev/package/@orpc/swr): Integrate with [SWR](https://swr.vercel.app/).
57
+ - [@orpc/experimental-msw](https://npmx.dev/package/@orpc/experimental-msw): Mock procedures with [Mock Service Worker](https://mswjs.io/).
57
58
  - [@orpc/experimental-effect](https://npmx.dev/package/@orpc/experimental-effect): Integrate with [Effect](https://effect.website/).
58
59
  - [@orpc/nest](https://npmx.dev/package/@orpc/nest): Implement your contract with [NestJS](https://nestjs.com/).
59
60
  - [@orpc/node](https://npmx.dev/package/@orpc/node): [Node.js](https://nodejs.org/) plugins for static file serving and large uploads.
@@ -69,7 +70,7 @@ You can read the documentation [here](https://orpc.dev).
69
70
 
70
71
  ## Sponsors
71
72
 
72
- Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going here: [GitHub Sponsors](https://github.com/sponsors/dinwwwh). Every bit helps! 🚀
73
+ Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going through [GitHub Sponsors](https://github.com/sponsors/dinwwwh) or [Open Collective](https://opencollective.com/middleapi). Every bit helps! 🚀
73
74
 
74
75
  <table>
75
76
  <tr>
package/dist/index.d.mts CHANGED
@@ -446,7 +446,7 @@ interface ContractUtilsFactoryOptions<TClientContext extends ClientContext> exte
446
446
  * @remarks
447
447
  * **Note**: The contract must define a `path` meta matching its position in the root router contract.
448
448
  *
449
- * @see {@link https://orpc.dev/docs/advanced/scaling-large-projects#pinia-colada-integration | Scaling Large Projects - Pinia Colada Integration}
449
+ * @see {@link https://orpc.dev/docs/contract/client-factory#pinia-colada-integration | Contract Client Factory - Pinia Colada Integration}
450
450
  */
451
451
  declare function createContractUtilsFactory<TClientContext extends ClientContext>(clientFactory: ContractClientFactory<TClientContext>, options: ContractUtilsFactoryOptions<TClientContext>): ContractUtilsFactory<TClientContext>;
452
452
  interface ContractJsonifiedUtilsFactory<TClientContext extends ClientContext> {
package/dist/index.d.ts CHANGED
@@ -446,7 +446,7 @@ interface ContractUtilsFactoryOptions<TClientContext extends ClientContext> exte
446
446
  * @remarks
447
447
  * **Note**: The contract must define a `path` meta matching its position in the root router contract.
448
448
  *
449
- * @see {@link https://orpc.dev/docs/advanced/scaling-large-projects#pinia-colada-integration | Scaling Large Projects - Pinia Colada Integration}
449
+ * @see {@link https://orpc.dev/docs/contract/client-factory#pinia-colada-integration | Contract Client Factory - Pinia Colada Integration}
450
450
  */
451
451
  declare function createContractUtilsFactory<TClientContext extends ClientContext>(clientFactory: ContractClientFactory<TClientContext>, options: ContractUtilsFactoryOptions<TClientContext>): ContractUtilsFactory<TClientContext>;
452
452
  interface ContractJsonifiedUtilsFactory<TClientContext extends ClientContext> {
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@orpc/pinia-colada",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.29",
4
+ "version": "2.0.0-beta.31",
5
+ "description": "Pinia Colada integration for oRPC: typesafe queries and mutations for Vue",
5
6
  "license": "MIT",
6
- "funding": "https://github.com/sponsors/dinwwwh",
7
+ "funding": [
8
+ "https://github.com/sponsors/dinwwwh",
9
+ "https://opencollective.com/middleapi"
10
+ ],
7
11
  "homepage": "https://orpc.dev",
8
12
  "repository": {
9
13
  "type": "git",
@@ -14,7 +18,11 @@
14
18
  "orpc",
15
19
  "vue",
16
20
  "pinia",
17
- "pinia-colada"
21
+ "pinia-colada",
22
+ "query",
23
+ "mutation",
24
+ "typescript",
25
+ "typesafe"
18
26
  ],
19
27
  "sideEffects": false,
20
28
  "exports": {
@@ -33,10 +41,10 @@
33
41
  "vue": ">=3.5.17"
34
42
  },
35
43
  "dependencies": {
36
- "@orpc/openapi": "2.0.0-beta.29",
37
- "@orpc/shared": "2.0.0-beta.29",
38
- "@orpc/client": "2.0.0-beta.29",
39
- "@orpc/contract": "2.0.0-beta.29"
44
+ "@orpc/client": "2.0.0-beta.31",
45
+ "@orpc/contract": "2.0.0-beta.31",
46
+ "@orpc/openapi": "2.0.0-beta.31",
47
+ "@orpc/shared": "2.0.0-beta.31"
40
48
  },
41
49
  "devDependencies": {
42
50
  "@pinia/colada": "^1.4.2",