@stack-spot/portal-network 0.96.0 → 0.97.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.
@@ -32,6 +32,7 @@ import {
32
32
  getAccess,
33
33
  getAccountMembers,
34
34
  getAccountMembers2,
35
+ getAccountRateLimit,
35
36
  getAccountSso,
36
37
  getActiveExtensionVersion,
37
38
  getAllAccountSso,
@@ -91,6 +92,7 @@ import {
91
92
  updateMemberPreferences,
92
93
  updatePartnerAccountAdminData,
93
94
  updatePartnerAccountData,
95
+ updateRateLimit,
94
96
  updateResourceActions,
95
97
  updateRoleWithNewActions,
96
98
  updateSecret,
@@ -724,6 +726,15 @@ class AccountClient extends ReactQueryNetworkClient {
724
726
  * Disable secret
725
727
  */
726
728
  disableSecret = this.mutation(disableSecret)
729
+ /**
730
+ * Get account rate limit
731
+ */
732
+ getAccountRateLimit = this.mutation(getAccountRateLimit)
733
+ /**
734
+ * Update Account rate limit
735
+ */
736
+ updateRateLimit = this.mutation(updateRateLimit)
737
+
727
738
  }
728
739
 
729
740
  export const accountClient = new AccountClient()