@turnkey/http 0.18.1 → 1.0.1

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.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d1d0e8: Synced protos from mono
8
+
9
+ ## 1.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - 46473ec: This breaking change updates generated code to be shorter and more intuitive to read:
14
+
15
+ - generated fetchers do not include the HTTP method in their name. For example `useGetGetActivity` is now `useGetActivity`, and `usePostSignTransaction` is `useSignTransaction`.
16
+ - input types follow the same convention (no HTTP method in the name): `TPostCreatePrivateKeysInput` is now `TCreatePrivateKeysInput`.
17
+ - 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.
18
+
19
+ The name updates should be automatically suggested if you use VSCode since the new names are simply shorter versions of the old one.
20
+
21
+ ### Patch Changes
22
+
23
+ - 38b424f: Sync public api types
24
+
3
25
  ## 0.18.1
4
26
 
5
27
  ### Patch Changes