@stack-spot/portal-network 1.0.0-dev.1772826025577 → 1.0.0-dev.1773068412144
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/dist/api/account.d.ts +331 -5
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +167 -5
- package/dist/api/account.js.map +1 -1
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +6 -6
- package/package.json +1 -1
- package/src/api/account.ts +590 -5
- package/src/client/account.ts +10 -10
package/src/client/account.ts
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
cancelSecretDelete,
|
|
15
15
|
create,
|
|
16
16
|
create1,
|
|
17
|
-
|
|
17
|
+
create3,
|
|
18
18
|
createAccountRole, createExtension, createExtensionLink,
|
|
19
19
|
createExtensionVersion, createFidoMagicLink, createGroupMapping,
|
|
20
20
|
createPartner,
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
createUser,
|
|
27
27
|
deactivateFidoCredentials,
|
|
28
28
|
defaults,
|
|
29
|
-
|
|
29
|
+
delete2,
|
|
30
30
|
deleteAccountRole,
|
|
31
31
|
deleteExtension,
|
|
32
32
|
deleteExtensionLink,
|
|
@@ -59,7 +59,7 @@ import {
|
|
|
59
59
|
getAllMemberFidoCredentials,
|
|
60
60
|
getAllServiceCredentialRateLimit,
|
|
61
61
|
getById,
|
|
62
|
-
|
|
62
|
+
getById3,
|
|
63
63
|
getEnabledFeatureFlagsForAccount,
|
|
64
64
|
getExtensionVersion,
|
|
65
65
|
getExternalLinksByType,
|
|
@@ -74,7 +74,7 @@ import {
|
|
|
74
74
|
getGroups2,
|
|
75
75
|
getMemberById,
|
|
76
76
|
getMemberGroups,
|
|
77
|
-
|
|
77
|
+
getMemberGroups2,
|
|
78
78
|
getMemberPreferences,
|
|
79
79
|
getMembers,
|
|
80
80
|
getMembers1,
|
|
@@ -129,7 +129,7 @@ import {
|
|
|
129
129
|
rotateServiceCredentialSecret,
|
|
130
130
|
save,
|
|
131
131
|
scmCredentialSave, scmCredentialSave1, scmCredentialUpdate, scmCredentialUpdate1, scmDelete, sendDownloadEmail, ssoAddAttributes,
|
|
132
|
-
ssoConfigure, ssoGetAttributesConfig, ssoParseConfigurationFile,
|
|
132
|
+
ssoConfigure, ssoGetAttributesConfig, ssoParseConfigurationFile, update2,
|
|
133
133
|
updateAccountRole,
|
|
134
134
|
updateExtension,
|
|
135
135
|
updateExtensionLink,
|
|
@@ -309,11 +309,11 @@ class AccountClient extends ReactQueryNetworkClient {
|
|
|
309
309
|
/**
|
|
310
310
|
* Updates a group.
|
|
311
311
|
*/
|
|
312
|
-
updateGroup = this.mutation(
|
|
312
|
+
updateGroup = this.mutation(update2)
|
|
313
313
|
/**
|
|
314
314
|
* Deletes a group.
|
|
315
315
|
*/
|
|
316
|
-
deleteGroup = this.mutation(
|
|
316
|
+
deleteGroup = this.mutation(delete2)
|
|
317
317
|
/**
|
|
318
318
|
* Gets all members in a group (paginated).
|
|
319
319
|
*/
|
|
@@ -646,7 +646,7 @@ class AccountClient extends ReactQueryNetworkClient {
|
|
|
646
646
|
/**
|
|
647
647
|
* Get Members Groups By Profile
|
|
648
648
|
*/
|
|
649
|
-
allMembersGroupsByProfileWithPagination = this.query(
|
|
649
|
+
allMembersGroupsByProfileWithPagination = this.query(getMemberGroups2)
|
|
650
650
|
/**
|
|
651
651
|
* Get Members Roles By Profile
|
|
652
652
|
*/
|
|
@@ -906,7 +906,7 @@ class AccountClient extends ReactQueryNetworkClient {
|
|
|
906
906
|
/**
|
|
907
907
|
* Create an enterprise account
|
|
908
908
|
*/
|
|
909
|
-
createEnterpriseAccount = this.mutation(
|
|
909
|
+
createEnterpriseAccount = this.mutation(create3)
|
|
910
910
|
/**
|
|
911
911
|
* Lists enterprise accounts
|
|
912
912
|
*/
|
|
@@ -951,7 +951,7 @@ class AccountClient extends ReactQueryNetworkClient {
|
|
|
951
951
|
/**
|
|
952
952
|
* Get Service Credential V3
|
|
953
953
|
*/
|
|
954
|
-
getServiceCredential = this.query(
|
|
954
|
+
getServiceCredential = this.query(getById3)
|
|
955
955
|
/**
|
|
956
956
|
* Get Resources Types with actions
|
|
957
957
|
*/
|