@stack-spot/portal-network 0.188.0 → 0.189.0-beta.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 +84 -0
- package/dist/api/account.d.ts +197 -202
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +154 -140
- package/dist/api/account.js.map +1 -1
- package/dist/api/agent-tools.d.ts +13 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/codeShift.d.ts +31 -0
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +13 -0
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/genAiInference.d.ts +22 -2
- package/dist/api/genAiInference.d.ts.map +1 -1
- package/dist/api/genAiInference.js +22 -3
- package/dist/api/genAiInference.js.map +1 -1
- package/dist/client/account.d.ts +29 -29
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +26 -17
- package/dist/client/account.js.map +1 -1
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +93 -13
- package/dist/client/ai.js.map +1 -1
- package/dist/client/code-shift.d.ts +9 -0
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +11 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/types.d.ts +26 -5
- package/dist/client/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/readme.md +2 -1
- package/src/api/account.ts +299 -392
- package/src/api/agent-tools.ts +16 -0
- package/src/api/agent.ts +2 -0
- package/src/api/codeShift.ts +46 -0
- package/src/api/genAiInference.ts +47 -4
- package/src/api/notification.ts +2 -0
- package/src/client/account.ts +25 -28
- package/src/client/ai.ts +95 -12
- package/src/client/code-shift.ts +9 -1
- package/src/client/types.ts +27 -5
package/dist/api/account.d.ts
CHANGED
|
@@ -276,12 +276,30 @@ export type AccountScmInfoResponse = {
|
|
|
276
276
|
urlProvider?: string;
|
|
277
277
|
};
|
|
278
278
|
export type Value = object;
|
|
279
|
+
export type Basic = Value & {
|
|
280
|
+
/** PAT repository Username */
|
|
281
|
+
user?: string;
|
|
282
|
+
/** PAT repository password */
|
|
283
|
+
pass?: string;
|
|
284
|
+
};
|
|
285
|
+
export type GithubApp = Value & {
|
|
286
|
+
/** GithubApp App Id */
|
|
287
|
+
appId?: string;
|
|
288
|
+
/** GithubApp Client Id */
|
|
289
|
+
clientId?: string;
|
|
290
|
+
/** GithubApp Client Secret */
|
|
291
|
+
clientSecret?: string;
|
|
292
|
+
/** GithubApp Installer Id */
|
|
293
|
+
installationId?: string;
|
|
294
|
+
/** GithubApp private key */
|
|
295
|
+
privateKey?: string;
|
|
296
|
+
};
|
|
279
297
|
export type AccountScmInfoUpdateRequest = {
|
|
280
298
|
/** SCM Type */
|
|
281
299
|
"type"?: "PAT" | "GITHUBAPP";
|
|
282
300
|
/** SCM repository provider */
|
|
283
301
|
provider?: "GITHUB" | "GITLAB" | "BITBUCKET" | "AZURE" | "GITLAB_ONPRM";
|
|
284
|
-
value?:
|
|
302
|
+
value?: Basic | GithubApp;
|
|
285
303
|
/** SCM Workflow repository URL */
|
|
286
304
|
workflowUrl?: string;
|
|
287
305
|
/** Flag used when SCM repository account credential configuration is mandated */
|
|
@@ -293,7 +311,7 @@ export type AccountScmInfoSaveRequest = {
|
|
|
293
311
|
"type": "PAT" | "GITHUBAPP";
|
|
294
312
|
/** SCM repository provider */
|
|
295
313
|
provider: "GITHUB" | "GITLAB" | "BITBUCKET" | "AZURE" | "GITLAB_ONPRM";
|
|
296
|
-
value:
|
|
314
|
+
value: Basic | GithubApp;
|
|
297
315
|
/** Connection URL for on-premises provider */
|
|
298
316
|
urlProvider?: string;
|
|
299
317
|
/** SCM Workflow repository URL */
|
|
@@ -431,31 +449,6 @@ export type UpdatePasswordRequest = {
|
|
|
431
449
|
/** New password */
|
|
432
450
|
password: string;
|
|
433
451
|
};
|
|
434
|
-
export type InvitationUserResponse = {
|
|
435
|
-
email: string;
|
|
436
|
-
};
|
|
437
|
-
export type UserInvitationResponse = {
|
|
438
|
-
/** Unique identifier of the invitation */
|
|
439
|
-
id: string;
|
|
440
|
-
/** Identifier of the associated account */
|
|
441
|
-
accountId: string;
|
|
442
|
-
sender: InvitationUserResponse;
|
|
443
|
-
invitedUser: InvitationUserResponse;
|
|
444
|
-
/** Timestamp when the invitation was created */
|
|
445
|
-
createdAt: string;
|
|
446
|
-
/** Timestamp when the invitation was resent */
|
|
447
|
-
resentAt: string;
|
|
448
|
-
/** Timestamp when the invitation will expire */
|
|
449
|
-
expirationDate: string;
|
|
450
|
-
/** Role assigned to the invited user */
|
|
451
|
-
roleName: string;
|
|
452
|
-
/** Indicates whether the account is assigned to the invited user */
|
|
453
|
-
assignAccount: boolean;
|
|
454
|
-
/** Magic link associated with the invitation */
|
|
455
|
-
magicLink: string;
|
|
456
|
-
/** Current status of the invitation */
|
|
457
|
-
status: "ACCEPTED" | "PENDING" | "CANCELLED";
|
|
458
|
-
};
|
|
459
452
|
export type UpdateSalesRepresentativesRequest = {
|
|
460
453
|
/** List of emails from sales representatives responsible for the account. */
|
|
461
454
|
salesRepresentatives: string[];
|
|
@@ -1007,6 +1000,46 @@ export type CreateResourceRequest = {
|
|
|
1007
1000
|
/** Account resource description */
|
|
1008
1001
|
description?: string;
|
|
1009
1002
|
};
|
|
1003
|
+
export type ResourceReviewAnswerDto = {
|
|
1004
|
+
id: string;
|
|
1005
|
+
memberId: string;
|
|
1006
|
+
comment: string;
|
|
1007
|
+
createdAt: string;
|
|
1008
|
+
updatedAt?: string;
|
|
1009
|
+
};
|
|
1010
|
+
export type ViewResourceReviewResponse = {
|
|
1011
|
+
id: string;
|
|
1012
|
+
memberId: string;
|
|
1013
|
+
rating: number;
|
|
1014
|
+
comment?: string;
|
|
1015
|
+
resourceType: string;
|
|
1016
|
+
resourceSlug: string;
|
|
1017
|
+
createdAt: string;
|
|
1018
|
+
updatedAt?: string;
|
|
1019
|
+
reviewAnswers?: ResourceReviewAnswerDto[];
|
|
1020
|
+
};
|
|
1021
|
+
export type PageResponseViewResourceReviewResponse = {
|
|
1022
|
+
/** Current page content */
|
|
1023
|
+
items?: ViewResourceReviewResponse[];
|
|
1024
|
+
/** Total elements found */
|
|
1025
|
+
totalElements: number;
|
|
1026
|
+
/** Current page number */
|
|
1027
|
+
page: number;
|
|
1028
|
+
/** Length of current page items */
|
|
1029
|
+
size: number;
|
|
1030
|
+
/** Total pages found */
|
|
1031
|
+
totalPages: number;
|
|
1032
|
+
};
|
|
1033
|
+
export type CreateResourceReviewRequest = {
|
|
1034
|
+
/** Evaluation grade, represented by an integer between 1 and 5. */
|
|
1035
|
+
rating: number;
|
|
1036
|
+
/** Evaluation comment */
|
|
1037
|
+
comment?: string;
|
|
1038
|
+
};
|
|
1039
|
+
export type CreateReviewAnswerRequest = {
|
|
1040
|
+
/** Comment of the review. */
|
|
1041
|
+
answer: string;
|
|
1042
|
+
};
|
|
1010
1043
|
export type AccountMemberResponse = {
|
|
1011
1044
|
/** Account member id */
|
|
1012
1045
|
id: string;
|
|
@@ -1126,22 +1159,6 @@ export type MemberEmailRequest = {
|
|
|
1126
1159
|
/** Member email */
|
|
1127
1160
|
email: string;
|
|
1128
1161
|
};
|
|
1129
|
-
export type InviteNewMemberRequest = {
|
|
1130
|
-
/** Member email */
|
|
1131
|
-
email: string;
|
|
1132
|
-
/** Member name */
|
|
1133
|
-
name: string;
|
|
1134
|
-
/** Member surname */
|
|
1135
|
-
surname: string;
|
|
1136
|
-
/** Member group ID */
|
|
1137
|
-
groupId?: string;
|
|
1138
|
-
};
|
|
1139
|
-
export type InviteMembersResponse = {
|
|
1140
|
-
/** Status Message */
|
|
1141
|
-
msg: string;
|
|
1142
|
-
/** Members with error */
|
|
1143
|
-
errors: string[];
|
|
1144
|
-
};
|
|
1145
1162
|
export type PersonalLeadRequest = {
|
|
1146
1163
|
/** Lead name */
|
|
1147
1164
|
name: string;
|
|
@@ -1212,16 +1229,6 @@ export type EnterpriseLeadRequest = {
|
|
|
1212
1229
|
/** Contact reason */
|
|
1213
1230
|
reason?: string;
|
|
1214
1231
|
};
|
|
1215
|
-
export type CreateUserInvitationRequest = {
|
|
1216
|
-
/** User email */
|
|
1217
|
-
email: string;
|
|
1218
|
-
/** User role in account */
|
|
1219
|
-
role: string;
|
|
1220
|
-
/** Indicates whether account will be shared with user or not */
|
|
1221
|
-
assignAccount: boolean;
|
|
1222
|
-
/** Language to use in invitation e-mail */
|
|
1223
|
-
lang: string;
|
|
1224
|
-
};
|
|
1225
1232
|
export type NewGroupRequest = {
|
|
1226
1233
|
/** Group name */
|
|
1227
1234
|
name: string;
|
|
@@ -1387,20 +1394,6 @@ export type CampaignAvailableResponse = {
|
|
|
1387
1394
|
/** Campaign Status */
|
|
1388
1395
|
isAvailable: boolean;
|
|
1389
1396
|
};
|
|
1390
|
-
export type SwitchAccountRequest = {
|
|
1391
|
-
/** Account slug to switch to */
|
|
1392
|
-
accountId: string;
|
|
1393
|
-
};
|
|
1394
|
-
export type ExchangeAccountResponse = {
|
|
1395
|
-
/** Personal Access Token generated by User Personal Client on user behalf */
|
|
1396
|
-
access_token: string;
|
|
1397
|
-
/** Refresh Token */
|
|
1398
|
-
refresh_token: string;
|
|
1399
|
-
/** The token type */
|
|
1400
|
-
token_type: string;
|
|
1401
|
-
/** The number of seconds before the access_token expires */
|
|
1402
|
-
expires_in: number;
|
|
1403
|
-
};
|
|
1404
1397
|
export type PersonalClientCredentialsResponse = {
|
|
1405
1398
|
/** The Client ID used for authentication */
|
|
1406
1399
|
clientId: string;
|
|
@@ -1565,13 +1558,9 @@ export type PersonalAccountExpirationDataResponse = {
|
|
|
1565
1558
|
/** Account name */
|
|
1566
1559
|
name: string;
|
|
1567
1560
|
/** Account remaining trial days */
|
|
1568
|
-
remainingTrialDays
|
|
1561
|
+
remainingTrialDays?: number;
|
|
1569
1562
|
/** Date that trial Account will be blocked */
|
|
1570
|
-
validUntil
|
|
1571
|
-
};
|
|
1572
|
-
export type AccountCollaboratorRequest = {
|
|
1573
|
-
/** The API id of account requester */
|
|
1574
|
-
accountApiId: string;
|
|
1563
|
+
validUntil?: string;
|
|
1575
1564
|
};
|
|
1576
1565
|
export type PageResponseAccountSsoGroupMappingResponse = {
|
|
1577
1566
|
/** Current page content */
|
|
@@ -1738,6 +1727,16 @@ export type ServiceCredentialAssociateGroupRequest = {
|
|
|
1738
1727
|
/** Service credential groups ids */
|
|
1739
1728
|
teams: string[];
|
|
1740
1729
|
};
|
|
1730
|
+
export type UpdateResourceReviewRequest = {
|
|
1731
|
+
/** Evaluation grade, represented by an integer between 1 and 5. */
|
|
1732
|
+
rating?: number;
|
|
1733
|
+
/** Evaluation comment */
|
|
1734
|
+
comment?: string;
|
|
1735
|
+
};
|
|
1736
|
+
export type UpdateReviewAnswerRequest = {
|
|
1737
|
+
/** Comment of the review. */
|
|
1738
|
+
answer: string;
|
|
1739
|
+
};
|
|
1741
1740
|
export type ReadPreferencesResponse = {
|
|
1742
1741
|
/** Dashboard widgets preferences */
|
|
1743
1742
|
dashboardWidgets?: string[];
|
|
@@ -2184,16 +2183,6 @@ export type AccountScmStatusResponse = {
|
|
|
2184
2183
|
};
|
|
2185
2184
|
export type RolePermissionResponse = {
|
|
2186
2185
|
status?: boolean;
|
|
2187
|
-
/** Permission ID from StackSpot IAM */
|
|
2188
|
-
id: string;
|
|
2189
|
-
/** Permission's name */
|
|
2190
|
-
name: string;
|
|
2191
|
-
/** Permission's description */
|
|
2192
|
-
description?: string;
|
|
2193
|
-
/** Permission's creation timestamp */
|
|
2194
|
-
createdAt: string;
|
|
2195
|
-
/** The statements defined in the permission */
|
|
2196
|
-
statements: PermissionStatementResponse[];
|
|
2197
2186
|
};
|
|
2198
2187
|
export type ResourceDto = {
|
|
2199
2188
|
/** Unique identifier of the resource. */
|
|
@@ -2277,6 +2266,8 @@ export type PersonalAccountDetailsResponse = {
|
|
|
2277
2266
|
accountId: string;
|
|
2278
2267
|
/** Full name of the account owner. */
|
|
2279
2268
|
fullName: string;
|
|
2269
|
+
/** Date and time until the account is valid. */
|
|
2270
|
+
validUntil?: string;
|
|
2280
2271
|
/** Date and time that the account was created. */
|
|
2281
2272
|
createdAt: string;
|
|
2282
2273
|
campaign?: Campaign;
|
|
@@ -2416,7 +2407,7 @@ export declare function deleteAccountAssociation({ featureFlagId, accountId }: {
|
|
|
2416
2407
|
/**
|
|
2417
2408
|
* Retrieves a list of SCM credentials associated with the current user's account, including secret names and provider details.
|
|
2418
2409
|
*/
|
|
2419
|
-
export declare function
|
|
2410
|
+
export declare function listScmCredentials(opts?: Oazapfts.RequestOpts): Promise<UserScmInfoResponse[]>;
|
|
2420
2411
|
/**
|
|
2421
2412
|
* Updates the SCM credentials for a user by saving the new secret information and triggering an update event.
|
|
2422
2413
|
*/
|
|
@@ -2475,7 +2466,7 @@ export declare function deleteScope({ scopeId }: {
|
|
|
2475
2466
|
/**
|
|
2476
2467
|
* Retrieves a list of SCM credentials associated with the current user's account.
|
|
2477
2468
|
*/
|
|
2478
|
-
export declare function
|
|
2469
|
+
export declare function listScmCredentials1(opts?: Oazapfts.RequestOpts): Promise<AccountScmInfoResponse[]>;
|
|
2479
2470
|
/**
|
|
2480
2471
|
* Updates the SCM credentials for the current user's account, saving the changes and triggering an update event.
|
|
2481
2472
|
*/
|
|
@@ -2504,7 +2495,7 @@ export declare function deleteAccountRole({ roleId }: {
|
|
|
2504
2495
|
/**
|
|
2505
2496
|
* Retrieves a of resources and their associated actions with their status compared to a specified role.
|
|
2506
2497
|
*/
|
|
2507
|
-
export declare function
|
|
2498
|
+
export declare function getResourcesAndActionsWithStatus({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2508
2499
|
roleId: string;
|
|
2509
2500
|
size?: any;
|
|
2510
2501
|
page?: any;
|
|
@@ -2552,12 +2543,6 @@ export declare function updateUserPassword({ memberId, updatePasswordRequest }:
|
|
|
2552
2543
|
memberId: string;
|
|
2553
2544
|
updatePasswordRequest: UpdatePasswordRequest;
|
|
2554
2545
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2555
|
-
/**
|
|
2556
|
-
* Accepts an invitation for a user to collaborate on an account.
|
|
2557
|
-
*/
|
|
2558
|
-
export declare function accept({ id }: {
|
|
2559
|
-
id: string;
|
|
2560
|
-
}, opts?: Oazapfts.RequestOpts): Promise<UserInvitationResponse>;
|
|
2561
2546
|
/**
|
|
2562
2547
|
* Updates the sales representatives associated with an active account.
|
|
2563
2548
|
*/
|
|
@@ -2635,7 +2620,7 @@ export declare function getServiceCredentials({ size, page, sort, direction, sea
|
|
|
2635
2620
|
multiFilterMode?: string;
|
|
2636
2621
|
filterIn?: any;
|
|
2637
2622
|
name?: string;
|
|
2638
|
-
status?:
|
|
2623
|
+
status?: "ACTIVE" | "DISABLED" | "REVOKED" | "EXPIRED";
|
|
2639
2624
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseServiceCredentialResponse>;
|
|
2640
2625
|
/**
|
|
2641
2626
|
* Creates a new service credential for the current user.
|
|
@@ -2652,7 +2637,7 @@ export declare function getFeatures({ featureFlagPageRequest }: {
|
|
|
2652
2637
|
/**
|
|
2653
2638
|
* Returns a list of Feature Flags associated with the current user's account.
|
|
2654
2639
|
*/
|
|
2655
|
-
export declare function
|
|
2640
|
+
export declare function getFeatures1(opts?: Oazapfts.RequestOpts): Promise<FeatureFlagsResponseV2[]>;
|
|
2656
2641
|
/**
|
|
2657
2642
|
* Creates a new Feature Flag and returns its unique identifier.
|
|
2658
2643
|
*/
|
|
@@ -2662,7 +2647,7 @@ export declare function create({ createFeatureFlagRequest }: {
|
|
|
2662
2647
|
/**
|
|
2663
2648
|
* Returns a paged list of Feature Flags associated with the current user's account.
|
|
2664
2649
|
*/
|
|
2665
|
-
export declare function
|
|
2650
|
+
export declare function getFeatures2({ accountId, featureFlagPageRequest }: {
|
|
2666
2651
|
accountId: string;
|
|
2667
2652
|
featureFlagPageRequest?: FeatureFlagPageRequest;
|
|
2668
2653
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseFeatureFlagsResponsePagedV2>;
|
|
@@ -2694,9 +2679,9 @@ export declare function createExternalLink({ accountId, externalLinkRequest }: {
|
|
|
2694
2679
|
*/
|
|
2695
2680
|
export declare function getServiceCredentials1({ name, status, page, size }: {
|
|
2696
2681
|
name?: string;
|
|
2697
|
-
status?:
|
|
2698
|
-
page?:
|
|
2699
|
-
size?:
|
|
2682
|
+
status?: "ACTIVE" | "DISABLED" | "REVOKED" | "EXPIRED";
|
|
2683
|
+
page?: number;
|
|
2684
|
+
size?: number;
|
|
2700
2685
|
}, opts?: Oazapfts.RequestOpts): Promise<ServiceCredentialResponse[]>;
|
|
2701
2686
|
/**
|
|
2702
2687
|
* Create Service Credential
|
|
@@ -2713,7 +2698,7 @@ export declare function notifyServiceCredentialExpiration({ serviceCredentialExp
|
|
|
2713
2698
|
/**
|
|
2714
2699
|
* Find secrets with multiple filters and conditions
|
|
2715
2700
|
*/
|
|
2716
|
-
export declare function
|
|
2701
|
+
export declare function findSecrets({ size, page, sort, direction, search, filterByScope, filterByType, filterByScopedBy, filterByScopedValue, authorizedOnly }: {
|
|
2717
2702
|
size?: any;
|
|
2718
2703
|
page?: any;
|
|
2719
2704
|
sort?: string;
|
|
@@ -2734,21 +2719,23 @@ export declare function createSecret({ createSecretRequest }: {
|
|
|
2734
2719
|
/**
|
|
2735
2720
|
* Associate a secret with a resource
|
|
2736
2721
|
*/
|
|
2737
|
-
export declare function associateResource({ secretId, resourceSlug }: {
|
|
2722
|
+
export declare function associateResource({ secretId, resourceSlug, resourceTypeSlug }: {
|
|
2738
2723
|
secretId: string;
|
|
2739
2724
|
resourceSlug: string;
|
|
2725
|
+
resourceTypeSlug: string;
|
|
2740
2726
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
2741
2727
|
/**
|
|
2742
2728
|
* Disassociate a secret with a resource
|
|
2743
2729
|
*/
|
|
2744
|
-
export declare function disassociateResource({ secretId, resourceSlug }: {
|
|
2730
|
+
export declare function disassociateResource({ secretId, resourceSlug, resourceTypeSlug }: {
|
|
2745
2731
|
secretId: string;
|
|
2746
2732
|
resourceSlug: string;
|
|
2733
|
+
resourceTypeSlug: string;
|
|
2747
2734
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
2748
2735
|
/**
|
|
2749
2736
|
* Check if user has access to secret
|
|
2750
2737
|
*/
|
|
2751
|
-
export declare function
|
|
2738
|
+
export declare function findSecrets1({ checkSecretAccessRequest }: {
|
|
2752
2739
|
checkSecretAccessRequest: CheckSecretAccessRequest;
|
|
2753
2740
|
}, opts?: Oazapfts.RequestOpts): Promise<CheckSecretAccessResponse>;
|
|
2754
2741
|
/**
|
|
@@ -2766,7 +2753,7 @@ export declare function createScope({ iamCreateScopeRequest }: {
|
|
|
2766
2753
|
/**
|
|
2767
2754
|
* Retrieves a list of roles available to the current account.
|
|
2768
2755
|
*/
|
|
2769
|
-
export declare function
|
|
2756
|
+
export declare function getRoles({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2770
2757
|
size?: any;
|
|
2771
2758
|
page?: any;
|
|
2772
2759
|
sort?: string;
|
|
@@ -2787,7 +2774,7 @@ export declare function createAccountRole({ createAccountRoleRequest }: {
|
|
|
2787
2774
|
/**
|
|
2788
2775
|
* Retrieves a list of role members for a specified role.
|
|
2789
2776
|
*/
|
|
2790
|
-
export declare function
|
|
2777
|
+
export declare function getRoleMembers({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2791
2778
|
roleId: string;
|
|
2792
2779
|
size?: any;
|
|
2793
2780
|
page?: any;
|
|
@@ -2810,7 +2797,7 @@ export declare function addRoleToMember({ roleId, addRoleToMemberRequest }: {
|
|
|
2810
2797
|
/**
|
|
2811
2798
|
* Retrieves a list of role groups associated with a specific group ID.
|
|
2812
2799
|
*/
|
|
2813
|
-
export declare function
|
|
2800
|
+
export declare function getRoleGroups({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2814
2801
|
roleId: string;
|
|
2815
2802
|
size?: any;
|
|
2816
2803
|
page?: any;
|
|
@@ -2833,7 +2820,7 @@ export declare function bindRoleGroups({ roleId, roleGroupIdsRequest }: {
|
|
|
2833
2820
|
/**
|
|
2834
2821
|
* Retrieves a list of resources.
|
|
2835
2822
|
*/
|
|
2836
|
-
export declare function
|
|
2823
|
+
export declare function getResources({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2837
2824
|
size?: any;
|
|
2838
2825
|
page?: any;
|
|
2839
2826
|
sort?: string;
|
|
@@ -2851,10 +2838,44 @@ export declare function getResources1({ size, page, sort, direction, search, fil
|
|
|
2851
2838
|
export declare function createResource({ createResourceRequest }: {
|
|
2852
2839
|
createResourceRequest: CreateResourceRequest;
|
|
2853
2840
|
}, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
|
|
2841
|
+
/**
|
|
2842
|
+
* Get all resources reviews
|
|
2843
|
+
*/
|
|
2844
|
+
export declare function getReviews({ resourceSlug, resourceTypeSlug, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2845
|
+
resourceSlug: string;
|
|
2846
|
+
resourceTypeSlug: string;
|
|
2847
|
+
size?: any;
|
|
2848
|
+
page?: any;
|
|
2849
|
+
sort?: string;
|
|
2850
|
+
direction?: "ASC" | "DESC";
|
|
2851
|
+
search?: string;
|
|
2852
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2853
|
+
filterBy?: string;
|
|
2854
|
+
filterValue?: string;
|
|
2855
|
+
multiFilterMode?: string;
|
|
2856
|
+
filterIn?: any;
|
|
2857
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseViewResourceReviewResponse>;
|
|
2858
|
+
/**
|
|
2859
|
+
* Create a resource review
|
|
2860
|
+
*/
|
|
2861
|
+
export declare function createReview({ resourceSlug, resourceTypeSlug, xMemberId, createResourceReviewRequest }: {
|
|
2862
|
+
resourceSlug: string;
|
|
2863
|
+
resourceTypeSlug: string;
|
|
2864
|
+
xMemberId: string;
|
|
2865
|
+
createResourceReviewRequest: CreateResourceReviewRequest;
|
|
2866
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
2867
|
+
/**
|
|
2868
|
+
* Create an answer to a review
|
|
2869
|
+
*/
|
|
2870
|
+
export declare function createReviewAnswer({ reviewId, xMemberId, createReviewAnswerRequest }: {
|
|
2871
|
+
reviewId: string;
|
|
2872
|
+
xMemberId: string;
|
|
2873
|
+
createReviewAnswerRequest: CreateReviewAnswerRequest;
|
|
2874
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
2854
2875
|
/**
|
|
2855
2876
|
* Retrieves a list of account members for a specified account.
|
|
2856
2877
|
*/
|
|
2857
|
-
export declare function
|
|
2878
|
+
export declare function getAccountMembers({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2858
2879
|
size?: any;
|
|
2859
2880
|
page?: any;
|
|
2860
2881
|
sort?: string;
|
|
@@ -2875,7 +2896,7 @@ export declare function createUser({ createUserRequest }: {
|
|
|
2875
2896
|
/**
|
|
2876
2897
|
* Retrieves a paginated list of roles associated with a specific member.
|
|
2877
2898
|
*/
|
|
2878
|
-
export declare function
|
|
2899
|
+
export declare function getRoles1({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2879
2900
|
memberId: string;
|
|
2880
2901
|
size?: any;
|
|
2881
2902
|
page?: any;
|
|
@@ -2904,7 +2925,7 @@ export declare function resetOtp({ memberId }: {
|
|
|
2904
2925
|
/**
|
|
2905
2926
|
* Retrieves a list of groups associated with a specific member.
|
|
2906
2927
|
*/
|
|
2907
|
-
export declare function
|
|
2928
|
+
export declare function getMemberGroups({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2908
2929
|
memberId: string;
|
|
2909
2930
|
size?: any;
|
|
2910
2931
|
page?: any;
|
|
@@ -2950,12 +2971,6 @@ export declare function addAccountMemberFavorite({ memberId, createFavoriteResou
|
|
|
2950
2971
|
export declare function resetPassword({ memberEmailRequest }: {
|
|
2951
2972
|
memberEmailRequest: MemberEmailRequest;
|
|
2952
2973
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2953
|
-
/**
|
|
2954
|
-
* Invites new members to an account and assigns them to the default group based on the account type.
|
|
2955
|
-
*/
|
|
2956
|
-
export declare function inviteMembers({ body }: {
|
|
2957
|
-
body: InviteNewMemberRequest[];
|
|
2958
|
-
}, opts?: Oazapfts.RequestOpts): Promise<InviteMembersResponse>;
|
|
2959
2974
|
/**
|
|
2960
2975
|
* Create a personal lead contact
|
|
2961
2976
|
*/
|
|
@@ -2968,25 +2983,10 @@ export declare function personalContact({ personalLeadRequest }: {
|
|
|
2968
2983
|
export declare function enterpriseContact({ enterpriseLeadRequest }: {
|
|
2969
2984
|
enterpriseLeadRequest: EnterpriseLeadRequest;
|
|
2970
2985
|
}, opts?: Oazapfts.RequestOpts): Promise<LeadResponse>;
|
|
2971
|
-
/**
|
|
2972
|
-
* Lists user invitations for account
|
|
2973
|
-
*/
|
|
2974
|
-
export declare function listUserInvitations({ filterBy, filterValue, page, size }: {
|
|
2975
|
-
filterBy?: string;
|
|
2976
|
-
filterValue?: string;
|
|
2977
|
-
page?: string;
|
|
2978
|
-
size?: string;
|
|
2979
|
-
}, opts?: Oazapfts.RequestOpts): Promise<UserInvitationResponse[]>;
|
|
2980
|
-
/**
|
|
2981
|
-
* Creates and sends an invitation to a user to join an account.
|
|
2982
|
-
*/
|
|
2983
|
-
export declare function createUserInvitation({ createUserInvitationRequest }: {
|
|
2984
|
-
createUserInvitationRequest: CreateUserInvitationRequest;
|
|
2985
|
-
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2986
2986
|
/**
|
|
2987
2987
|
* Get Groups
|
|
2988
2988
|
*/
|
|
2989
|
-
export declare function
|
|
2989
|
+
export declare function getGroups({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, includeDefaultGroup }: {
|
|
2990
2990
|
size?: any;
|
|
2991
2991
|
page?: any;
|
|
2992
2992
|
sort?: string;
|
|
@@ -3008,7 +3008,7 @@ export declare function save({ newGroupRequest }: {
|
|
|
3008
3008
|
/**
|
|
3009
3009
|
* Get Group members
|
|
3010
3010
|
*/
|
|
3011
|
-
export declare function
|
|
3011
|
+
export declare function getRoles2({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3012
3012
|
groupId: string;
|
|
3013
3013
|
size?: any;
|
|
3014
3014
|
page?: any;
|
|
@@ -3031,7 +3031,7 @@ export declare function bindRoles({ groupId, groupRoleIdsRequest }: {
|
|
|
3031
3031
|
/**
|
|
3032
3032
|
* Get Group Resources
|
|
3033
3033
|
*/
|
|
3034
|
-
export declare function
|
|
3034
|
+
export declare function getGroupResources({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3035
3035
|
groupId: string;
|
|
3036
3036
|
size?: any;
|
|
3037
3037
|
page?: any;
|
|
@@ -3054,7 +3054,7 @@ export declare function addResourcesToGroup({ groupId, addResourcesToGroupReques
|
|
|
3054
3054
|
/**
|
|
3055
3055
|
* Get Group members
|
|
3056
3056
|
*/
|
|
3057
|
-
export declare function
|
|
3057
|
+
export declare function getMembers({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3058
3058
|
groupId: string;
|
|
3059
3059
|
size?: any;
|
|
3060
3060
|
page?: any;
|
|
@@ -3120,16 +3120,7 @@ export declare function createExtensionLink({ extensionLinkCreateRequest }: {
|
|
|
3120
3120
|
*/
|
|
3121
3121
|
export declare function receiveWebhook({ provider, body }: {
|
|
3122
3122
|
provider: string;
|
|
3123
|
-
body:
|
|
3124
|
-
short?: number;
|
|
3125
|
-
char?: string;
|
|
3126
|
-
int?: number;
|
|
3127
|
-
long?: number;
|
|
3128
|
-
float?: number;
|
|
3129
|
-
double?: number;
|
|
3130
|
-
direct?: boolean;
|
|
3131
|
-
readOnly?: boolean;
|
|
3132
|
-
};
|
|
3123
|
+
body: string;
|
|
3133
3124
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3134
3125
|
/**
|
|
3135
3126
|
* Check if user has answered forms
|
|
@@ -3159,12 +3150,6 @@ export declare function sendContactEmail({ contactEmailRequest }: {
|
|
|
3159
3150
|
export declare function validateCampaignCode({ code }: {
|
|
3160
3151
|
code: string;
|
|
3161
3152
|
}, opts?: Oazapfts.RequestOpts): Promise<CampaignAvailableResponse>;
|
|
3162
|
-
/**
|
|
3163
|
-
* Switch user to account passed in the body
|
|
3164
|
-
*/
|
|
3165
|
-
export declare function switchAccount({ switchAccountRequest }: {
|
|
3166
|
-
switchAccountRequest: SwitchAccountRequest;
|
|
3167
|
-
}, opts?: Oazapfts.RequestOpts): Promise<ExchangeAccountResponse>;
|
|
3168
3153
|
/**
|
|
3169
3154
|
* Get credentials from personal service client (create if not exists one to the logged user).
|
|
3170
3155
|
*/
|
|
@@ -3172,7 +3157,7 @@ export declare function getPersonalClientCredentials(opts?: Oazapfts.RequestOpts
|
|
|
3172
3157
|
/**
|
|
3173
3158
|
* Get an Access Token generated With Audience on logged user behalf, since previously authorized.
|
|
3174
3159
|
*/
|
|
3175
|
-
export declare function
|
|
3160
|
+
export declare function getPersonalAccessToken({ apiAuthorization, generateTokenFromPersonalAccountRequest }: {
|
|
3176
3161
|
apiAuthorization: string;
|
|
3177
3162
|
generateTokenFromPersonalAccountRequest?: GenerateTokenFromPersonalAccountRequest;
|
|
3178
3163
|
}, opts?: Oazapfts.RequestOpts): Promise<PersonalAccessTokenResponse>;
|
|
@@ -3239,7 +3224,7 @@ export declare function updateVisionOne({ updateVisionOneIntegrationRequest }: {
|
|
|
3239
3224
|
/**
|
|
3240
3225
|
* Finds and returns a list of accounts filtered by account type.
|
|
3241
3226
|
*/
|
|
3242
|
-
export declare function
|
|
3227
|
+
export declare function getAccounts({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3243
3228
|
size?: any;
|
|
3244
3229
|
page?: any;
|
|
3245
3230
|
sort?: string;
|
|
@@ -3267,12 +3252,6 @@ export declare function createTrialAccount({ accountTrialCreateRequest }: {
|
|
|
3267
3252
|
* Sets trial account to be removed after expiration.
|
|
3268
3253
|
*/
|
|
3269
3254
|
export declare function removeTrialAccount(opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3270
|
-
/**
|
|
3271
|
-
* Adds a collaborator to an account with a specified role.
|
|
3272
|
-
*/
|
|
3273
|
-
export declare function addCollaborator({ accountCollaboratorRequest }: {
|
|
3274
|
-
accountCollaboratorRequest: AccountCollaboratorRequest;
|
|
3275
|
-
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3276
3255
|
/**
|
|
3277
3256
|
* Retrieves a list of SSO group mappings.
|
|
3278
3257
|
*/
|
|
@@ -3421,10 +3400,48 @@ export declare function enableSecret({ secretId }: {
|
|
|
3421
3400
|
export declare function disableSecret({ secretId }: {
|
|
3422
3401
|
secretId: string;
|
|
3423
3402
|
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3403
|
+
/**
|
|
3404
|
+
* Cancel Secret delete
|
|
3405
|
+
*/
|
|
3406
|
+
export declare function cancelSecretDelete({ secretId }: {
|
|
3407
|
+
secretId: string;
|
|
3408
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3424
3409
|
/**
|
|
3425
3410
|
* Migrate Api Key Secrets to new version
|
|
3426
3411
|
*/
|
|
3427
3412
|
export declare function migrateApiKeySecretsToV2(opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3413
|
+
/**
|
|
3414
|
+
* Delete a resources review
|
|
3415
|
+
*/
|
|
3416
|
+
export declare function deleteReview({ reviewId, xMemberId }: {
|
|
3417
|
+
reviewId: string;
|
|
3418
|
+
xMemberId: string;
|
|
3419
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3420
|
+
/**
|
|
3421
|
+
* Update a resources review
|
|
3422
|
+
*/
|
|
3423
|
+
export declare function updateReview({ reviewId, xMemberId, updateResourceReviewRequest }: {
|
|
3424
|
+
reviewId: string;
|
|
3425
|
+
xMemberId: string;
|
|
3426
|
+
updateResourceReviewRequest: UpdateResourceReviewRequest;
|
|
3427
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3428
|
+
/**
|
|
3429
|
+
* Delete an answer to a review
|
|
3430
|
+
*/
|
|
3431
|
+
export declare function deleteReviewAnswer({ answerId, reviewId, xMemberId }: {
|
|
3432
|
+
answerId: string;
|
|
3433
|
+
reviewId: string;
|
|
3434
|
+
xMemberId: string;
|
|
3435
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3436
|
+
/**
|
|
3437
|
+
* Edit an evaluation comment
|
|
3438
|
+
*/
|
|
3439
|
+
export declare function editReviewAnswer({ reviewId, answerId, xMemberId, updateReviewAnswerRequest }: {
|
|
3440
|
+
reviewId: string;
|
|
3441
|
+
answerId: string;
|
|
3442
|
+
xMemberId: string;
|
|
3443
|
+
updateReviewAnswerRequest: UpdateReviewAnswerRequest;
|
|
3444
|
+
}, opts?: Oazapfts.RequestOpts): Promise<never>;
|
|
3428
3445
|
/**
|
|
3429
3446
|
* Retrieves the preferences of a specific member.
|
|
3430
3447
|
*/
|
|
@@ -3480,18 +3497,6 @@ export declare function deactivateFidoCredentials({ memberId }: {
|
|
|
3480
3497
|
export declare function enableFidoCredentials({ memberId }: {
|
|
3481
3498
|
memberId: string;
|
|
3482
3499
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3483
|
-
/**
|
|
3484
|
-
* Cancel a user invitation.
|
|
3485
|
-
*/
|
|
3486
|
-
export declare function cancelUserInvitation({ id }: {
|
|
3487
|
-
id: string;
|
|
3488
|
-
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3489
|
-
/**
|
|
3490
|
-
* Resends a user invitation for a specified account.
|
|
3491
|
-
*/
|
|
3492
|
-
export declare function resendUserInvitation({ id }: {
|
|
3493
|
-
id: string;
|
|
3494
|
-
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3495
3500
|
/**
|
|
3496
3501
|
* Get Group by ID
|
|
3497
3502
|
*/
|
|
@@ -3617,7 +3622,7 @@ export declare function updatePartnerAccountAdminData({ id, accountPartnerAdminD
|
|
|
3617
3622
|
/**
|
|
3618
3623
|
* Retrieves a list of SCM credentials associated with the current user's account, including secret names and provider details.
|
|
3619
3624
|
*/
|
|
3620
|
-
export declare function
|
|
3625
|
+
export declare function listScmCredentials2({ userId }: {
|
|
3621
3626
|
userId: string;
|
|
3622
3627
|
}, opts?: Oazapfts.RequestOpts): Promise<UserScmInfoResponse[]>;
|
|
3623
3628
|
/**
|
|
@@ -3635,7 +3640,7 @@ export declare function getServiceCredentialByIdRateLimit({ clientId }: {
|
|
|
3635
3640
|
/**
|
|
3636
3641
|
* Get Roles
|
|
3637
3642
|
*/
|
|
3638
|
-
export declare function
|
|
3643
|
+
export declare function getRoles3({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3639
3644
|
size?: any;
|
|
3640
3645
|
page?: any;
|
|
3641
3646
|
sort?: string;
|
|
@@ -3650,7 +3655,7 @@ export declare function getRoles({ size, page, sort, direction, search, filterMo
|
|
|
3650
3655
|
/**
|
|
3651
3656
|
* Get all Global Resources and Actions compared to role
|
|
3652
3657
|
*/
|
|
3653
|
-
export declare function
|
|
3658
|
+
export declare function getResourcesAndActionsWithStatus1({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3654
3659
|
roleId: string;
|
|
3655
3660
|
size?: any;
|
|
3656
3661
|
page?: any;
|
|
@@ -3666,7 +3671,7 @@ export declare function getResourcesAndActionsWithStatus({ roleId, size, page, s
|
|
|
3666
3671
|
/**
|
|
3667
3672
|
* Get role members
|
|
3668
3673
|
*/
|
|
3669
|
-
export declare function
|
|
3674
|
+
export declare function getRoleMembers1({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3670
3675
|
roleId: string;
|
|
3671
3676
|
size?: any;
|
|
3672
3677
|
page?: any;
|
|
@@ -3682,7 +3687,7 @@ export declare function getRoleMembers({ roleId, size, page, sort, direction, se
|
|
|
3682
3687
|
/**
|
|
3683
3688
|
* Get Groups from role
|
|
3684
3689
|
*/
|
|
3685
|
-
export declare function
|
|
3690
|
+
export declare function getRoleGroups1({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3686
3691
|
roleId: string;
|
|
3687
3692
|
size?: any;
|
|
3688
3693
|
page?: any;
|
|
@@ -3698,7 +3703,7 @@ export declare function getRoleGroups({ roleId, size, page, sort, direction, sea
|
|
|
3698
3703
|
/**
|
|
3699
3704
|
* Retrieves a list of resources.
|
|
3700
3705
|
*/
|
|
3701
|
-
export declare function
|
|
3706
|
+
export declare function getResources1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3702
3707
|
size?: any;
|
|
3703
3708
|
page?: any;
|
|
3704
3709
|
sort?: string;
|
|
@@ -3760,7 +3765,7 @@ export declare function getResourceTypes({ size, page, sort, direction, search,
|
|
|
3760
3765
|
/**
|
|
3761
3766
|
* Retrieves a list of account members.
|
|
3762
3767
|
*/
|
|
3763
|
-
export declare function
|
|
3768
|
+
export declare function getAccountMembers1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3764
3769
|
size?: any;
|
|
3765
3770
|
page?: any;
|
|
3766
3771
|
sort?: string;
|
|
@@ -3775,7 +3780,7 @@ export declare function getAccountMembers({ size, page, sort, direction, search,
|
|
|
3775
3780
|
/**
|
|
3776
3781
|
* Retrieves a list of roles associated with a specific member.
|
|
3777
3782
|
*/
|
|
3778
|
-
export declare function
|
|
3783
|
+
export declare function getRoles4({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3779
3784
|
memberId: string;
|
|
3780
3785
|
size?: any;
|
|
3781
3786
|
page?: any;
|
|
@@ -3791,7 +3796,7 @@ export declare function getRoles1({ memberId, size, page, sort, direction, searc
|
|
|
3791
3796
|
/**
|
|
3792
3797
|
* Retrieves a list of groups for a specified member.
|
|
3793
3798
|
*/
|
|
3794
|
-
export declare function
|
|
3799
|
+
export declare function getMemberGroups1({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3795
3800
|
memberId: string;
|
|
3796
3801
|
size?: any;
|
|
3797
3802
|
page?: any;
|
|
@@ -3807,7 +3812,7 @@ export declare function getMemberGroups({ memberId, size, page, sort, direction,
|
|
|
3807
3812
|
/**
|
|
3808
3813
|
* Get Groups
|
|
3809
3814
|
*/
|
|
3810
|
-
export declare function
|
|
3815
|
+
export declare function getGroups1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, includeDefaultGroup }: {
|
|
3811
3816
|
size?: any;
|
|
3812
3817
|
page?: any;
|
|
3813
3818
|
sort?: string;
|
|
@@ -3823,7 +3828,7 @@ export declare function getGroups({ size, page, sort, direction, search, filterM
|
|
|
3823
3828
|
/**
|
|
3824
3829
|
* Get Group roles
|
|
3825
3830
|
*/
|
|
3826
|
-
export declare function
|
|
3831
|
+
export declare function getRoles5({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3827
3832
|
groupId: string;
|
|
3828
3833
|
size?: any;
|
|
3829
3834
|
page?: any;
|
|
@@ -3839,7 +3844,7 @@ export declare function getRoles2({ groupId, size, page, sort, direction, search
|
|
|
3839
3844
|
/**
|
|
3840
3845
|
* Get Group Resources
|
|
3841
3846
|
*/
|
|
3842
|
-
export declare function
|
|
3847
|
+
export declare function getGroupResources1({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3843
3848
|
groupId: string;
|
|
3844
3849
|
size?: any;
|
|
3845
3850
|
page?: any;
|
|
@@ -3855,7 +3860,7 @@ export declare function getGroupResources({ groupId, size, page, sort, direction
|
|
|
3855
3860
|
/**
|
|
3856
3861
|
* Get Group members
|
|
3857
3862
|
*/
|
|
3858
|
-
export declare function
|
|
3863
|
+
export declare function getMembers1({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3859
3864
|
groupId: string;
|
|
3860
3865
|
size?: any;
|
|
3861
3866
|
page?: any;
|
|
@@ -3889,8 +3894,8 @@ export declare function isCreatedScmCredentials(opts?: Oazapfts.RequestOpts): Pr
|
|
|
3889
3894
|
/**
|
|
3890
3895
|
* Get Accounts
|
|
3891
3896
|
*/
|
|
3892
|
-
export declare function
|
|
3893
|
-
accountType?:
|
|
3897
|
+
export declare function getAccounts1({ accountType, slug, id }: {
|
|
3898
|
+
accountType?: "ENTERPRISE" | "PARTNER" | "FREEMIUM";
|
|
3894
3899
|
slug?: string;
|
|
3895
3900
|
id?: string;
|
|
3896
3901
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountDataReadResponse[]>;
|
|
@@ -3903,7 +3908,7 @@ export declare function getAccount({ id }: {
|
|
|
3903
3908
|
/**
|
|
3904
3909
|
* Get Account Members
|
|
3905
3910
|
*/
|
|
3906
|
-
export declare function
|
|
3911
|
+
export declare function getAccountMembers2({ id, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3907
3912
|
id: string;
|
|
3908
3913
|
size?: any;
|
|
3909
3914
|
page?: any;
|
|
@@ -3937,10 +3942,11 @@ export declare function getServiceCredentialGroups1({ id }: {
|
|
|
3937
3942
|
/**
|
|
3938
3943
|
* Retrieve secret value
|
|
3939
3944
|
*/
|
|
3940
|
-
export declare function getSecretValue({ xMemberId, xAccountId, xResourceSlug, secretId }: {
|
|
3945
|
+
export declare function getSecretValue({ xMemberId, xAccountId, xResourceSlug, xResourceTypeSlug, secretId }: {
|
|
3941
3946
|
xMemberId?: string;
|
|
3942
3947
|
xAccountId?: string;
|
|
3943
3948
|
xResourceSlug?: string;
|
|
3949
|
+
xResourceTypeSlug?: string;
|
|
3944
3950
|
secretId: string;
|
|
3945
3951
|
}, opts?: Oazapfts.RequestOpts): Promise<SecretResponse>;
|
|
3946
3952
|
/**
|
|
@@ -4052,21 +4058,6 @@ export declare function listMemberFavoritesByResource({ memberId, resourceType }
|
|
|
4052
4058
|
memberId: string;
|
|
4053
4059
|
resourceType: string;
|
|
4054
4060
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
4055
|
-
/**
|
|
4056
|
-
* Retrieves a list of account members and collaborators associated with the current user's account.
|
|
4057
|
-
*/
|
|
4058
|
-
export declare function getAccountMembersToCollaborators({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
4059
|
-
size?: any;
|
|
4060
|
-
page?: any;
|
|
4061
|
-
sort?: string;
|
|
4062
|
-
direction?: "ASC" | "DESC";
|
|
4063
|
-
search?: string;
|
|
4064
|
-
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
4065
|
-
filterBy?: string;
|
|
4066
|
-
filterValue?: string;
|
|
4067
|
-
multiFilterMode?: string;
|
|
4068
|
-
filterIn?: any;
|
|
4069
|
-
}, opts?: Oazapfts.RequestOpts): Promise<AccountMemberResponse[]>;
|
|
4070
4061
|
/**
|
|
4071
4062
|
* Returns a list of Feature Flags associated with the current user's account.
|
|
4072
4063
|
*/
|
|
@@ -4123,6 +4114,10 @@ export declare function getTrialSsoSettings(opts?: Oazapfts.RequestOpts): Promis
|
|
|
4123
4114
|
* Finds and returns personal account details.
|
|
4124
4115
|
*/
|
|
4125
4116
|
export declare function getPersonalAccountDetails(opts?: Oazapfts.RequestOpts): Promise<PersonalAccountDetailsResponse>;
|
|
4117
|
+
/**
|
|
4118
|
+
* Finds and returns personal account expiration data associated with the provided token.
|
|
4119
|
+
*/
|
|
4120
|
+
export declare function getPersonalAccountExpirationData(opts?: Oazapfts.RequestOpts): Promise<PersonalAccountExpirationDataResponse>;
|
|
4126
4121
|
/**
|
|
4127
4122
|
* Retrieves a list of SSO for the current account.
|
|
4128
4123
|
*/
|