@stryke/trpc-next 0.5.89 → 0.5.91

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.
Files changed (71) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/action-handler.d.cts +1 -1
  3. package/dist/action-handler.d.mts +1 -1
  4. package/dist/server.d.cts +1 -1
  5. package/dist/server.d.mts +1 -1
  6. package/dist/shared.cjs +2 -2
  7. package/dist/shared.d.cts +1 -1
  8. package/dist/shared.d.mts +1 -1
  9. package/dist/shared.mjs +1 -1
  10. package/dist/tanstack-query/client.cjs +2 -3
  11. package/dist/tanstack-query/client.d.cts +1 -1
  12. package/dist/tanstack-query/client.d.cts.map +1 -1
  13. package/dist/tanstack-query/client.d.mts +1 -1
  14. package/dist/tanstack-query/client.d.mts.map +1 -1
  15. package/dist/tanstack-query/client.mjs +1 -2
  16. package/dist/tanstack-query/client.mjs.map +1 -1
  17. package/dist/tanstack-query/server.d.cts +1 -1
  18. package/dist/tanstack-query/server.d.mts +1 -1
  19. package/package.json +10 -61
  20. package/dist/env/src/ci-checks.cjs +0 -13
  21. package/dist/env/src/ci-checks.mjs +0 -13
  22. package/dist/env/src/ci-checks.mjs.map +0 -1
  23. package/dist/env/src/environment-checks.cjs +0 -97
  24. package/dist/env/src/environment-checks.mjs +0 -88
  25. package/dist/env/src/environment-checks.mjs.map +0 -1
  26. package/dist/env/src/get-env-paths.cjs +0 -10
  27. package/dist/env/src/get-env-paths.mjs +0 -10
  28. package/dist/env/src/get-env-paths.mjs.map +0 -1
  29. package/dist/env/src/index.cjs +0 -6
  30. package/dist/env/src/index.mjs +0 -6
  31. package/dist/env/src/load-env.cjs +0 -4
  32. package/dist/env/src/load-env.mjs +0 -4
  33. package/dist/env/src/providers.cjs +0 -111
  34. package/dist/env/src/providers.mjs +0 -111
  35. package/dist/env/src/providers.mjs.map +0 -1
  36. package/dist/env/src/runtime-checks.cjs +0 -60
  37. package/dist/env/src/runtime-checks.mjs +0 -53
  38. package/dist/env/src/runtime-checks.mjs.map +0 -1
  39. package/dist/fs/src/exists.mjs +0 -2
  40. package/dist/fs/src/read-file.mjs +0 -2
  41. package/dist/path/src/is-type.cjs +0 -28
  42. package/dist/path/src/is-type.mjs +0 -29
  43. package/dist/path/src/is-type.mjs.map +0 -1
  44. package/dist/path/src/join-paths.cjs +0 -122
  45. package/dist/path/src/join-paths.mjs +0 -123
  46. package/dist/path/src/join-paths.mjs.map +0 -1
  47. package/dist/path/src/regex.cjs +0 -12
  48. package/dist/path/src/regex.mjs +0 -9
  49. package/dist/path/src/regex.mjs.map +0 -1
  50. package/dist/path/src/slash.cjs +0 -15
  51. package/dist/path/src/slash.mjs +0 -15
  52. package/dist/path/src/slash.mjs.map +0 -1
  53. package/dist/string-format/src/acronyms.cjs +0 -413
  54. package/dist/string-format/src/acronyms.mjs +0 -413
  55. package/dist/string-format/src/acronyms.mjs.map +0 -1
  56. package/dist/string-format/src/format-special-cases.cjs +0 -1
  57. package/dist/string-format/src/format-special-cases.mjs +0 -1
  58. package/dist/string-format/src/title-case.cjs +0 -2
  59. package/dist/string-format/src/title-case.mjs +0 -2
  60. package/dist/types/src/base.d.cts +0 -14
  61. package/dist/types/src/base.d.cts.map +0 -1
  62. package/dist/types/src/base.d.mts +0 -14
  63. package/dist/types/src/base.d.mts.map +0 -1
  64. package/dist/url/src/index.d.cts +0 -1
  65. package/dist/url/src/index.d.mts +0 -1
  66. package/dist/url/src/storm-url.d.cts +0 -1
  67. package/dist/url/src/storm-url.d.mts +0 -1
  68. package/dist/url/src/types.d.cts +0 -76
  69. package/dist/url/src/types.d.cts.map +0 -1
  70. package/dist/url/src/types.d.mts +0 -76
  71. package/dist/url/src/types.d.mts.map +0 -1
@@ -1,76 +0,0 @@
1
- //#region ../url/src/types.d.ts
2
- declare const PROTOCOL_RELATIVE_SYMBOL: unique symbol;
3
- interface StormURLInterface extends URL {
4
- /**
5
- * A string containing the username and password specified before the domain name.
6
- */
7
- auth: string;
8
- /**
9
- * A string containing the username specified before the domain name.
10
- */
11
- username: string;
12
- /**
13
- * A string containing the password specified before the domain name.
14
- */
15
- password: string;
16
- /**
17
- * A string containing the domain (that is the hostname) followed by (if a port was specified) a `:` and the port of the URL.
18
- */
19
- host: string;
20
- /**
21
- * A string containing the domain of the URL.
22
- */
23
- hostname: string;
24
- /**
25
- * A string containing the port number of the URL.
26
- */
27
- port: string;
28
- /**
29
- * A string containing the protocol scheme of the URL, including the final `:`.
30
- */
31
- protocol: string;
32
- /**
33
- * A stringified value that returns the whole URL.
34
- */
35
- href: string;
36
- /**
37
- * A string containing an initial `/` followed by the path of the URL, not including the query string or fragment.
38
- */
39
- pathname: string;
40
- /**
41
- * The paths of the URL
42
- */
43
- paths: any[];
44
- /**
45
- * A string containing a `#` followed by the fragment identifier of the URL.
46
- */
47
- hash: string;
48
- /**
49
- * A string indicating the URL's parameter string; if any parameters are provided, this string includes all of them, beginning with the leading `?` character.
50
- */
51
- search: string;
52
- /**
53
- * The search parameters of the URL
54
- *
55
- * @remarks
56
- * This is a `URLSearchParams` object that contains the search parameters of the URL.
57
- */
58
- searchParams: URLSearchParams;
59
- /**
60
- * The search parameters of the URL
61
- *
62
- * @remarks
63
- * This is a Record\<string, any\> object that contains the search parameters of the URL.
64
- */
65
- params: Record<string, any>;
66
- /**
67
- * An optional symbol to indicate that the URL is protocol-relative
68
- *
69
- * @remarks
70
- * This is used when the URL is protocol-relative (e.g. //example.com)
71
- */
72
- [PROTOCOL_RELATIVE_SYMBOL]?: boolean;
73
- }
74
- //#endregion
75
- export { PROTOCOL_RELATIVE_SYMBOL, StormURLInterface };
76
- //# sourceMappingURL=types.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.mts","names":[],"sources":["../../../../url/src/types.ts"],"mappings":";cAuCa,wBAAA;AAAA,UAGI,iBAAA,SAA0B,GAAA;EAwBzC;;;EApBA,IAAA;EAwCA;;;EAnCA,QAAA;EA0DA;;;EArDA,QAAA;EAqEC;;;EAhED,IAAA;;;;EAKA,QAAA;;;;EAKA,IAAA;;;;EAKA,QAAA;;;;EAKA,IAAA;;;;EAKA,QAAA;;;;EAKA,KAAA;;;;EAKA,IAAA;;;;EAKA,MAAA;;;;;;;EAQA,YAAA,EAAc,eAAA;;;;;;;EAQd,MAAA,EAAQ,MAAA;;;;;;;GAQP,wBAAA;AAAA"}