@turnkey/http 0.18.0 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @turnkey/http
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 46473ec: This breaking change updates generated code to be shorter and more intuitive to read:
8
+
9
+ - generated fetchers do not include the HTTP method in their name. For example `useGetGetActivity` is now `useGetActivity`, and `usePostSignTransaction` is `useSignTransaction`.
10
+ - input types follow the same convention (no HTTP method in the name): `TPostCreatePrivateKeysInput` is now `TCreatePrivateKeysInput`.
11
+ - the "federated" request helpers introduced in `0.18.0` are now named "signed" requests to better reflect what they are. `FederatedRequest` is now `SignedRequest`, and generated types follow. For example: `federatedPostCreatePrivateKeys` is now `signCreatePrivateKeys`, `federatedGetGetActivity` is now `signGetActivity`, and so on.
12
+
13
+ The name updates should be automatically suggested if you use VSCode since the new names are simply shorter versions of the old one.
14
+
15
+ ### Patch Changes
16
+
17
+ - 38b424f: Sync public api types
18
+
19
+ ## 0.18.1
20
+
21
+ ### Patch Changes
22
+
23
+ - Synced protos from mono
24
+
3
25
  ## 0.18.0
4
26
 
5
27
  ### Minor Changes