@stack-spot/portal-network 0.116.2 → 0.116.4
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 +205 -178
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +135 -116
- package/dist/api/account.js.map +1 -1
- package/dist/apis.json +1 -1
- package/dist/client/account.d.ts +6 -18
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +1 -10
- package/dist/client/account.js.map +1 -1
- package/package.json +1 -1
- package/src/api/account.ts +304 -235
- package/src/apis.json +1 -1
- package/src/client/account.ts +0 -5
package/src/apis.json
CHANGED
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"url": {
|
|
211
211
|
"dev": "https://genai-inference-app.dev.stackspot.com",
|
|
212
212
|
"stg": "https://genai-inference-app.stg.stackspot.com",
|
|
213
|
-
"prd": "https://genai-inference-app.
|
|
213
|
+
"prd": "https://genai-inference-app.stackspot.com"
|
|
214
214
|
},
|
|
215
215
|
"docs": "/openapi.json"
|
|
216
216
|
}
|
package/src/client/account.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { HttpError, RequestOpts } from '@oazapfts/runtime'
|
|
2
2
|
import {
|
|
3
|
-
accountDataIsAvailable,
|
|
4
3
|
addAccountMemberFavorite,
|
|
5
4
|
addResourcesToGroup,
|
|
6
5
|
addRoleToMember,
|
|
@@ -135,10 +134,6 @@ class AccountClient extends ReactQueryNetworkClient {
|
|
|
135
134
|
* Creates a Feature Flag
|
|
136
135
|
*/
|
|
137
136
|
createFeatureFlag = this.mutation(create)
|
|
138
|
-
/**
|
|
139
|
-
* Returns information if account data (name and slug) are available to be registered
|
|
140
|
-
*/
|
|
141
|
-
isAvailable = this.query(accountDataIsAvailable)
|
|
142
137
|
/**
|
|
143
138
|
* Lists all Feature Flags in an Account
|
|
144
139
|
*/
|