@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.
- package/CHANGELOG.md +14 -0
- package/dist/api/account.d.ts +83 -38
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +65 -37
- package/dist/api/account.js.map +1 -1
- package/dist/api/workflows.d.ts +56 -3
- package/dist/api/workflows.d.ts.map +1 -1
- package/dist/api/workflows.js +39 -2
- package/dist/api/workflows.js.map +1 -1
- package/dist/client/account.d.ts +11 -1
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +19 -1
- package/dist/client/account.js.map +1 -1
- package/package.json +1 -1
- package/src/api/account.ts +134 -39
- package/src/api/workflows.ts +142 -4
- package/src/client/account.ts +11 -0
package/src/client/account.ts
CHANGED
|
@@ -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()
|