@stack-spot/portal-network 0.116.3 → 0.117.0
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/client/account.d.ts +32 -18
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +37 -10
- package/dist/client/account.js.map +1 -1
- package/package.json +1 -1
- package/src/api/account.ts +304 -235
- package/src/client/account.ts +26 -7
package/dist/api/account.d.ts
CHANGED
|
@@ -9,11 +9,29 @@ export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
|
|
|
9
9
|
export declare const servers: {
|
|
10
10
|
generatedServerUrl: string;
|
|
11
11
|
};
|
|
12
|
-
export type
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
export type RateLimitValue = {
|
|
13
|
+
"type": "ACCOUNT" | "SERVICE_CREDENTIAL";
|
|
14
|
+
value: number;
|
|
15
|
+
};
|
|
16
|
+
export type ServiceCredentialRateLimitResponse = {
|
|
17
|
+
/** Service credential ID */
|
|
18
|
+
id: string;
|
|
19
|
+
/** Service credential name */
|
|
20
|
+
name: string;
|
|
21
|
+
scMaxPerMin: RateLimitValue;
|
|
22
|
+
scMaxPerDay: RateLimitValue;
|
|
23
|
+
};
|
|
24
|
+
export type PageResponseServiceCredentialRateLimitResponse = {
|
|
25
|
+
/** Current page content */
|
|
26
|
+
items?: ServiceCredentialRateLimitResponse[];
|
|
27
|
+
/** Total elements found */
|
|
28
|
+
totalElements: number;
|
|
29
|
+
/** Current page number */
|
|
30
|
+
page: number;
|
|
31
|
+
/** Length of current page items */
|
|
32
|
+
size: number;
|
|
33
|
+
/** Total pages found */
|
|
34
|
+
totalPages: number;
|
|
17
35
|
};
|
|
18
36
|
export type ValidationDetails = {
|
|
19
37
|
code: string;
|
|
@@ -27,6 +45,20 @@ export type ErrorResponse = {
|
|
|
27
45
|
details: string;
|
|
28
46
|
validationDetails?: ValidationDetails[];
|
|
29
47
|
};
|
|
48
|
+
export type ServiceCredentialRateLimitRequest = {
|
|
49
|
+
/** Maximum number of executions allowed per minute. Use -1 for no limit. */
|
|
50
|
+
scMaxPerMin?: number;
|
|
51
|
+
/** Maximum number of executions allowed per day. Use -1 for no limit. */
|
|
52
|
+
scMaxPerDay?: number;
|
|
53
|
+
/** List of service credential IDs */
|
|
54
|
+
serviceCredentialIds: string[];
|
|
55
|
+
};
|
|
56
|
+
export type UserScmInfoResponse = {
|
|
57
|
+
/** Secrets name */
|
|
58
|
+
secretName: string;
|
|
59
|
+
/** Provider type */
|
|
60
|
+
provider: "GITHUB" | "GITLAB" | "BITBUCKET" | "AZURE" | "GITLAB_ONPRM";
|
|
61
|
+
};
|
|
30
62
|
export type UserScmInfoRequest = {
|
|
31
63
|
/** Repository Username */
|
|
32
64
|
user: string;
|
|
@@ -624,9 +656,9 @@ export type IamCreateScopeRequest = {
|
|
|
624
656
|
};
|
|
625
657
|
};
|
|
626
658
|
export type PermissionActionResponse = {
|
|
627
|
-
/** The action
|
|
659
|
+
/** The action ID */
|
|
628
660
|
id: string;
|
|
629
|
-
/** The client ID
|
|
661
|
+
/** The client ID */
|
|
630
662
|
clientId?: string;
|
|
631
663
|
/** Action's name */
|
|
632
664
|
name: string;
|
|
@@ -636,9 +668,9 @@ export type PermissionActionResponse = {
|
|
|
636
668
|
createdAt: string;
|
|
637
669
|
};
|
|
638
670
|
export type PermissionTypeResponse = {
|
|
639
|
-
/** Resource type ID
|
|
671
|
+
/** Resource type ID */
|
|
640
672
|
id: string;
|
|
641
|
-
/** Resource type client ID
|
|
673
|
+
/** Resource type client ID */
|
|
642
674
|
clientId?: string;
|
|
643
675
|
/** Resource type name */
|
|
644
676
|
name: string;
|
|
@@ -648,9 +680,9 @@ export type PermissionTypeResponse = {
|
|
|
648
680
|
createdAt: string;
|
|
649
681
|
};
|
|
650
682
|
export type PermissionResourceResponse = {
|
|
651
|
-
/** Resource ID
|
|
683
|
+
/** Resource ID */
|
|
652
684
|
id: string;
|
|
653
|
-
/** Resource's client ID
|
|
685
|
+
/** Resource's client ID */
|
|
654
686
|
clientId?: string;
|
|
655
687
|
/** Resource's name */
|
|
656
688
|
name: string;
|
|
@@ -665,7 +697,7 @@ export type PermissionStatementResponse = {
|
|
|
665
697
|
resource: PermissionResourceResponse;
|
|
666
698
|
};
|
|
667
699
|
export type PermissionResponse = {
|
|
668
|
-
/** Permission ID
|
|
700
|
+
/** Permission ID */
|
|
669
701
|
id: string;
|
|
670
702
|
/** Permission's name */
|
|
671
703
|
name: string;
|
|
@@ -677,7 +709,7 @@ export type PermissionResponse = {
|
|
|
677
709
|
statements: PermissionStatementResponse[];
|
|
678
710
|
};
|
|
679
711
|
export type RoleResponse = {
|
|
680
|
-
/** Role id
|
|
712
|
+
/** Role id */
|
|
681
713
|
id: string;
|
|
682
714
|
/** Role name */
|
|
683
715
|
name: string;
|
|
@@ -1228,6 +1260,24 @@ export type CreateAccountOrderRequest = {
|
|
|
1228
1260
|
/** Email list of the sales representatives responsible for this request. */
|
|
1229
1261
|
salesRepresentatives: string[];
|
|
1230
1262
|
};
|
|
1263
|
+
export type UpdateTrialSsoSettingsRequest = {
|
|
1264
|
+
/** github */
|
|
1265
|
+
github: boolean;
|
|
1266
|
+
/** microsoft */
|
|
1267
|
+
microsoft: boolean;
|
|
1268
|
+
/** google */
|
|
1269
|
+
google: boolean;
|
|
1270
|
+
};
|
|
1271
|
+
export type UpdateTrialSsoSettingsResponse = {
|
|
1272
|
+
/** Entity id */
|
|
1273
|
+
id: number;
|
|
1274
|
+
/** Is github SSO enabled */
|
|
1275
|
+
github: boolean;
|
|
1276
|
+
/** Is microsoft SSO enabled */
|
|
1277
|
+
microsoft: boolean;
|
|
1278
|
+
/** Is google SSO enabled */
|
|
1279
|
+
google: boolean;
|
|
1280
|
+
};
|
|
1231
1281
|
export type AccountTrialCreateRequest = {
|
|
1232
1282
|
/** The slug to use in URL as unique identifying part representing the account (https://developer.mozilla.org/en-US/docs/Glossary/Slug). Example: zup */
|
|
1233
1283
|
slug: string;
|
|
@@ -1246,6 +1296,16 @@ export type AccountTrialCreateRequest = {
|
|
|
1246
1296
|
/** The custom channel used for the trial user to reach Stackspot */
|
|
1247
1297
|
customReachedBy?: string;
|
|
1248
1298
|
};
|
|
1299
|
+
export type PersonalAccountExpirationDataResponse = {
|
|
1300
|
+
/** Account id */
|
|
1301
|
+
accountId: string;
|
|
1302
|
+
/** Account name */
|
|
1303
|
+
name: string;
|
|
1304
|
+
/** Account remaining trial days */
|
|
1305
|
+
remainingTrialDays: number;
|
|
1306
|
+
/** Date that trial Account will be blocked */
|
|
1307
|
+
validUntil: string;
|
|
1308
|
+
};
|
|
1249
1309
|
export type AccountCollaboratorRequest = {
|
|
1250
1310
|
/** The API id of account requester */
|
|
1251
1311
|
accountApiId: string;
|
|
@@ -1379,44 +1439,6 @@ export type UpdateServiceCredentialScopesRequest = {
|
|
|
1379
1439
|
/** Service credential statements */
|
|
1380
1440
|
scopes: string[];
|
|
1381
1441
|
};
|
|
1382
|
-
export type ServiceCredentialRateLimitResponse = {
|
|
1383
|
-
/** Service credential ID */
|
|
1384
|
-
serviceCredentialId: string;
|
|
1385
|
-
/** Service credential name */
|
|
1386
|
-
name: string;
|
|
1387
|
-
/** When was created */
|
|
1388
|
-
createdAt?: string;
|
|
1389
|
-
/** Who created */
|
|
1390
|
-
createdBy?: string;
|
|
1391
|
-
/** Who updated */
|
|
1392
|
-
updatedBy?: string;
|
|
1393
|
-
/** When was updated */
|
|
1394
|
-
updatedAt?: string;
|
|
1395
|
-
/** Limit of executions per minute */
|
|
1396
|
-
scMaxPerMin: number;
|
|
1397
|
-
/** Limit of executions per day */
|
|
1398
|
-
scMaxPerDay: number;
|
|
1399
|
-
};
|
|
1400
|
-
export type PageResponseServiceCredentialRateLimitResponse = {
|
|
1401
|
-
/** Current page content */
|
|
1402
|
-
items?: ServiceCredentialRateLimitResponse[];
|
|
1403
|
-
/** Total elements found */
|
|
1404
|
-
totalElements: number;
|
|
1405
|
-
/** Current page number */
|
|
1406
|
-
page: number;
|
|
1407
|
-
/** Length of current page items */
|
|
1408
|
-
size: number;
|
|
1409
|
-
/** Total pages found */
|
|
1410
|
-
totalPages: number;
|
|
1411
|
-
};
|
|
1412
|
-
export type ServiceCredentialRateLimitRequest = {
|
|
1413
|
-
/** Limit of executions per minute */
|
|
1414
|
-
scMaxPerMin?: number;
|
|
1415
|
-
/** Limit of executions per day */
|
|
1416
|
-
scMaxPerDay?: number;
|
|
1417
|
-
/** List of service credentials IDs */
|
|
1418
|
-
serviceCredentialIds: string[];
|
|
1419
|
-
};
|
|
1420
1442
|
export type DeleteMemberPermissionsRequest = {
|
|
1421
1443
|
/** Permission Action */
|
|
1422
1444
|
actionName: string;
|
|
@@ -1442,7 +1464,7 @@ export type DeleteGroupPermissionsRequest = {
|
|
|
1442
1464
|
resourceSlug: string;
|
|
1443
1465
|
};
|
|
1444
1466
|
export type UpdateGroupPermissionsRequest = {
|
|
1445
|
-
/** Permission Action */
|
|
1467
|
+
/** Permission Action name */
|
|
1446
1468
|
actionName: string;
|
|
1447
1469
|
/** Slug from resource type */
|
|
1448
1470
|
resourceTypeSlug: string;
|
|
@@ -1584,15 +1606,15 @@ export type RateLimitResponse = {
|
|
|
1584
1606
|
scMaxPerDay: number;
|
|
1585
1607
|
};
|
|
1586
1608
|
export type UpdateRateLimitRequest = {
|
|
1587
|
-
/** Maximum number of executions per day */
|
|
1609
|
+
/** Maximum number of executions allowed per day for Personal Access Tokens (PAT). Set to -1 for unlimited executions. */
|
|
1588
1610
|
patMaxExecPerDay?: number;
|
|
1589
|
-
/**
|
|
1611
|
+
/** Default maximum number of executions allowed per minute for Service Clients (SC). */
|
|
1590
1612
|
scDefaultMaxPerMin?: number;
|
|
1591
|
-
/**
|
|
1613
|
+
/** Default maximum number of executions allowed per day for Service Clients (SC). */
|
|
1592
1614
|
scDefaultMaxPerDay?: number;
|
|
1593
|
-
/** number of executions per
|
|
1615
|
+
/** Maximum number of executions allowed per minute for a specific Service Client (SC). Set to -1 for unlimited executions. */
|
|
1594
1616
|
scMaxPerMin?: number;
|
|
1595
|
-
/** number of executions per
|
|
1617
|
+
/** Maximum number of executions allowed per day for a specific Service Client (SC). Set to -1 for unlimited executions. */
|
|
1596
1618
|
scMaxPerDay?: number;
|
|
1597
1619
|
};
|
|
1598
1620
|
export type AccountPartnerAccountDataUpdateRequest = {
|
|
@@ -1873,7 +1895,7 @@ export type AccountScmStatusResponse = {
|
|
|
1873
1895
|
};
|
|
1874
1896
|
export type RolePermissionResponse = {
|
|
1875
1897
|
status?: boolean;
|
|
1876
|
-
/** Permission ID
|
|
1898
|
+
/** Permission ID */
|
|
1877
1899
|
id: string;
|
|
1878
1900
|
/** Permission's name */
|
|
1879
1901
|
name: string;
|
|
@@ -1936,6 +1958,14 @@ export type AccountSlugResponse = {
|
|
|
1936
1958
|
/** Account slug */
|
|
1937
1959
|
slug: string;
|
|
1938
1960
|
};
|
|
1961
|
+
export type TrialSsoSettingsResponse = {
|
|
1962
|
+
/** Is github SSO enabled */
|
|
1963
|
+
github: boolean;
|
|
1964
|
+
/** Is microsoft SSO enabled */
|
|
1965
|
+
microsoft: boolean;
|
|
1966
|
+
/** Is google SSO enabled */
|
|
1967
|
+
google: boolean;
|
|
1968
|
+
};
|
|
1939
1969
|
export type PersonalAccountDetailsResponse = {
|
|
1940
1970
|
/** Unique identifier of the personal account. */
|
|
1941
1971
|
id: number;
|
|
@@ -1958,20 +1988,6 @@ export type PersonalAccountDetailsResponse = {
|
|
|
1958
1988
|
/** Date and time until the account is valid. */
|
|
1959
1989
|
validUntil: string;
|
|
1960
1990
|
};
|
|
1961
|
-
export type PersonalAccountExpirationDataResponse = {
|
|
1962
|
-
/** Account id */
|
|
1963
|
-
accountId: string;
|
|
1964
|
-
/** Account name */
|
|
1965
|
-
name: string;
|
|
1966
|
-
/** Account remaining trial days */
|
|
1967
|
-
remainingTrialDays: number;
|
|
1968
|
-
/** Date that trial Account will be blocked */
|
|
1969
|
-
validUntil: string;
|
|
1970
|
-
};
|
|
1971
|
-
export type AccountDataAvailableResponse = {
|
|
1972
|
-
/** Account data (name and slug) is available to be registered */
|
|
1973
|
-
available: boolean;
|
|
1974
|
-
};
|
|
1975
1991
|
export type AccountSsoResponse = {
|
|
1976
1992
|
/** SSO configuration name */
|
|
1977
1993
|
name: string;
|
|
@@ -2019,6 +2035,22 @@ export type AccountPartnerResponse = {
|
|
|
2019
2035
|
/** Account current status */
|
|
2020
2036
|
isActive: boolean;
|
|
2021
2037
|
};
|
|
2038
|
+
/**
|
|
2039
|
+
* Retrieves a list of rate limit with the associated service credential.
|
|
2040
|
+
*/
|
|
2041
|
+
export declare function getAllServiceCredentialRateLimit({ size, page, sort, direction, search }: {
|
|
2042
|
+
size?: number;
|
|
2043
|
+
page?: number;
|
|
2044
|
+
sort?: string;
|
|
2045
|
+
direction: "ASC" | "DESC";
|
|
2046
|
+
search?: string;
|
|
2047
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseServiceCredentialRateLimitResponse>;
|
|
2048
|
+
/**
|
|
2049
|
+
* Updates the rate limit of a service credential.
|
|
2050
|
+
*/
|
|
2051
|
+
export declare function updateServiceCredentialRateLimit({ serviceCredentialRateLimitRequest }: {
|
|
2052
|
+
serviceCredentialRateLimitRequest: ServiceCredentialRateLimitRequest;
|
|
2053
|
+
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2022
2054
|
/**
|
|
2023
2055
|
* Retrieves a list of SCM credentials associated with the current user's account, including secret names and provider details.
|
|
2024
2056
|
*/
|
|
@@ -2256,7 +2288,7 @@ export declare function createServiceCredential({ serviceCredentialCreateRequest
|
|
|
2256
2288
|
serviceCredentialCreateRequestV2: ServiceCredentialCreateRequestV2;
|
|
2257
2289
|
}, opts?: Oazapfts.RequestOpts): Promise<ServiceCredentialCreateResponseV2>;
|
|
2258
2290
|
/**
|
|
2259
|
-
*
|
|
2291
|
+
* Retrieves a list of service credentials with their associated owner information if available.
|
|
2260
2292
|
*/
|
|
2261
2293
|
export declare function getServiceCredentials1({ name, status, page, size }: {
|
|
2262
2294
|
name?: string;
|
|
@@ -2265,13 +2297,13 @@ export declare function getServiceCredentials1({ name, status, page, size }: {
|
|
|
2265
2297
|
size?: string;
|
|
2266
2298
|
}, opts?: Oazapfts.RequestOpts): Promise<ServiceCredentialResponse[]>;
|
|
2267
2299
|
/**
|
|
2268
|
-
*
|
|
2300
|
+
* Creates a new service credential for an account.
|
|
2269
2301
|
*/
|
|
2270
2302
|
export declare function createServiceCredential1({ serviceCredentialCreateRequest }: {
|
|
2271
2303
|
serviceCredentialCreateRequest: ServiceCredentialCreateRequest;
|
|
2272
2304
|
}, opts?: Oazapfts.RequestOpts): Promise<ServiceCredentialCreateResponse>;
|
|
2273
2305
|
/**
|
|
2274
|
-
*
|
|
2306
|
+
* Notifies the user about the expiration of the service credential via email.
|
|
2275
2307
|
*/
|
|
2276
2308
|
export declare function notifyServiceCredentialExpiration({ serviceCredentialExpirationRequest }: {
|
|
2277
2309
|
serviceCredentialExpirationRequest: ServiceCredentialExpirationNotifyRequest;
|
|
@@ -2477,13 +2509,13 @@ export declare function bindToGroups({ memberId, memberIdsCommonRequest }: {
|
|
|
2477
2509
|
memberIdsCommonRequest: MemberIdsCommonRequest;
|
|
2478
2510
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2479
2511
|
/**
|
|
2480
|
-
*
|
|
2512
|
+
* Lists all favorite resources associated with a specific member.
|
|
2481
2513
|
*/
|
|
2482
2514
|
export declare function listAccountMemberFavorites({ memberId }: {
|
|
2483
2515
|
memberId: string;
|
|
2484
2516
|
}, opts?: Oazapfts.RequestOpts): Promise<FavoriteResourcesResponse[]>;
|
|
2485
2517
|
/**
|
|
2486
|
-
*
|
|
2518
|
+
* Adds a favorite resource to a member.
|
|
2487
2519
|
*/
|
|
2488
2520
|
export declare function addAccountMemberFavorite({ memberId, createFavoriteResourceRequest }: {
|
|
2489
2521
|
memberId: string;
|
|
@@ -2529,7 +2561,7 @@ export declare function createUserInvitation({ createUserInvitationRequest }: {
|
|
|
2529
2561
|
createUserInvitationRequest: CreateUserInvitationRequest;
|
|
2530
2562
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2531
2563
|
/**
|
|
2532
|
-
*
|
|
2564
|
+
* Returns a list of group information.
|
|
2533
2565
|
*/
|
|
2534
2566
|
export declare function getGroups1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, includeDefaultGroup }: {
|
|
2535
2567
|
size?: any;
|
|
@@ -2545,13 +2577,13 @@ export declare function getGroups1({ size, page, sort, direction, search, filter
|
|
|
2545
2577
|
includeDefaultGroup?: boolean;
|
|
2546
2578
|
}, opts?: Oazapfts.RequestOpts): Promise<GroupReadResponse[]>;
|
|
2547
2579
|
/**
|
|
2548
|
-
*
|
|
2580
|
+
* Creates a new group.
|
|
2549
2581
|
*/
|
|
2550
2582
|
export declare function save({ newGroupRequest }: {
|
|
2551
2583
|
newGroupRequest: NewGroupRequest;
|
|
2552
2584
|
}, opts?: Oazapfts.RequestOpts): Promise<IamIdResponse>;
|
|
2553
2585
|
/**
|
|
2554
|
-
*
|
|
2586
|
+
* Retrieves a list of roles for a specified group.
|
|
2555
2587
|
*/
|
|
2556
2588
|
export declare function getRoles5({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2557
2589
|
groupId: string;
|
|
@@ -2567,14 +2599,14 @@ export declare function getRoles5({ groupId, size, page, sort, direction, search
|
|
|
2567
2599
|
filterIn?: any;
|
|
2568
2600
|
}, opts?: Oazapfts.RequestOpts): Promise<RoleResponse[]>;
|
|
2569
2601
|
/**
|
|
2570
|
-
*
|
|
2602
|
+
* Binds a list of roles to a specified group.
|
|
2571
2603
|
*/
|
|
2572
2604
|
export declare function bindRoles({ groupId, groupRoleIdsRequest }: {
|
|
2573
2605
|
groupId: string;
|
|
2574
2606
|
groupRoleIdsRequest: GroupRoleIdsRequest;
|
|
2575
2607
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2576
2608
|
/**
|
|
2577
|
-
*
|
|
2609
|
+
* Retrieves a list of resource associated with a specific group.
|
|
2578
2610
|
*/
|
|
2579
2611
|
export declare function getGroupResources1({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2580
2612
|
groupId: string;
|
|
@@ -2590,14 +2622,14 @@ export declare function getGroupResources1({ groupId, size, page, sort, directio
|
|
|
2590
2622
|
filterIn?: any;
|
|
2591
2623
|
}, opts?: Oazapfts.RequestOpts): Promise<ResourceResponse[]>;
|
|
2592
2624
|
/**
|
|
2593
|
-
*
|
|
2625
|
+
* Adds a list of resources to a specified group.
|
|
2594
2626
|
*/
|
|
2595
2627
|
export declare function addResourcesToGroup({ groupId, addResourcesToGroupRequest }: {
|
|
2596
2628
|
groupId: string;
|
|
2597
2629
|
addResourcesToGroupRequest: AddResourcesToGroupRequest;
|
|
2598
2630
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2599
2631
|
/**
|
|
2600
|
-
*
|
|
2632
|
+
* Retrieves a list of members fir a specific group.
|
|
2601
2633
|
*/
|
|
2602
2634
|
export declare function getMembers1({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2603
2635
|
groupId: string;
|
|
@@ -2613,7 +2645,7 @@ export declare function getMembers1({ groupId, size, page, sort, direction, sear
|
|
|
2613
2645
|
filterIn?: any;
|
|
2614
2646
|
}, opts?: Oazapfts.RequestOpts): Promise<ReadGroupMembersResponse[]>;
|
|
2615
2647
|
/**
|
|
2616
|
-
* Bind
|
|
2648
|
+
* Bind members to a specified group.
|
|
2617
2649
|
*/
|
|
2618
2650
|
export declare function bindGroupMembers({ groupId, groupMemberIdsRequest }: {
|
|
2619
2651
|
groupId: string;
|
|
@@ -2630,23 +2662,23 @@ export declare function create({ createFeatureFlagRequest }: {
|
|
|
2630
2662
|
createFeatureFlagRequest: CreateFeatureFlagRequest;
|
|
2631
2663
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2632
2664
|
/**
|
|
2633
|
-
*
|
|
2665
|
+
* Retrieves a list of extensions associated with the current user's account.
|
|
2634
2666
|
*/
|
|
2635
2667
|
export declare function listExtensions(opts?: Oazapfts.RequestOpts): Promise<ExtensionReadResponse[]>;
|
|
2636
2668
|
/**
|
|
2637
|
-
*
|
|
2669
|
+
* Creates a new extension for the account.
|
|
2638
2670
|
*/
|
|
2639
2671
|
export declare function createExtension({ extensionCreateRequest }: {
|
|
2640
2672
|
extensionCreateRequest: ExtensionCreateRequest;
|
|
2641
2673
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2642
2674
|
/**
|
|
2643
|
-
*
|
|
2675
|
+
* Retrieves a list of available versions for a specified extension.
|
|
2644
2676
|
*/
|
|
2645
2677
|
export declare function listExtensionVersions({ slug }: {
|
|
2646
2678
|
slug: string;
|
|
2647
2679
|
}, opts?: Oazapfts.RequestOpts): Promise<ExtensionVersionResumedReadResponse[]>;
|
|
2648
2680
|
/**
|
|
2649
|
-
*
|
|
2681
|
+
* Creates a new version of an extension.
|
|
2650
2682
|
*/
|
|
2651
2683
|
export declare function createExtensionVersion({ slug, name, body }: {
|
|
2652
2684
|
slug: string;
|
|
@@ -2656,7 +2688,7 @@ export declare function createExtensionVersion({ slug, name, body }: {
|
|
|
2656
2688
|
};
|
|
2657
2689
|
}, opts?: Oazapfts.RequestOpts): Promise<ExtensionVersionCreateResponse>;
|
|
2658
2690
|
/**
|
|
2659
|
-
*
|
|
2691
|
+
* Lists all account's extension links.
|
|
2660
2692
|
*/
|
|
2661
2693
|
export declare function listExtensionLinks({ workspaceId, $type, extensionSlug, showOnlyActive }: {
|
|
2662
2694
|
workspaceId?: string;
|
|
@@ -2665,35 +2697,35 @@ export declare function listExtensionLinks({ workspaceId, $type, extensionSlug,
|
|
|
2665
2697
|
showOnlyActive?: any;
|
|
2666
2698
|
}, opts?: Oazapfts.RequestOpts): Promise<ExtensionLinkReadResponse[]>;
|
|
2667
2699
|
/**
|
|
2668
|
-
*
|
|
2700
|
+
* Creates a new extension link for the account.
|
|
2669
2701
|
*/
|
|
2670
2702
|
export declare function createExtensionLink({ extensionLinkCreateRequest }: {
|
|
2671
2703
|
extensionLinkCreateRequest: ExtensionLinkCreateRequest;
|
|
2672
2704
|
}, opts?: Oazapfts.RequestOpts): Promise<ExtensionLinkCreateResponse>;
|
|
2673
2705
|
/**
|
|
2674
|
-
*
|
|
2706
|
+
* Sends a welcome email to a new user.
|
|
2675
2707
|
*/
|
|
2676
2708
|
export declare function sendWelcomeEmail({ welcomeEmailRequest }: {
|
|
2677
2709
|
welcomeEmailRequest: WelcomeEmailRequest;
|
|
2678
2710
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2679
2711
|
/**
|
|
2680
|
-
*
|
|
2712
|
+
* Sends a download email to the current user.
|
|
2681
2713
|
*/
|
|
2682
2714
|
export declare function sendDownloadEmail(opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2683
2715
|
/**
|
|
2684
|
-
*
|
|
2716
|
+
* Sends a contact email.
|
|
2685
2717
|
*/
|
|
2686
2718
|
export declare function sendContactEmail({ contactEmailRequest }: {
|
|
2687
2719
|
contactEmailRequest: ContactEmailRequest;
|
|
2688
2720
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2689
2721
|
/**
|
|
2690
|
-
*
|
|
2722
|
+
* Switches the user to the account specified in the body.
|
|
2691
2723
|
*/
|
|
2692
2724
|
export declare function switchAccount({ switchAccountRequest }: {
|
|
2693
2725
|
switchAccountRequest: SwitchAccountRequest;
|
|
2694
2726
|
}, opts?: Oazapfts.RequestOpts): Promise<ExchangeAccountResponse>;
|
|
2695
2727
|
/**
|
|
2696
|
-
*
|
|
2728
|
+
* Gets credentials from personal service client (create if not exists one to the logged user).
|
|
2697
2729
|
*/
|
|
2698
2730
|
export declare function getPersonalClientCredentials(opts?: Oazapfts.RequestOpts): Promise<PersonalClientCredentialsResponse>;
|
|
2699
2731
|
/**
|
|
@@ -2704,23 +2736,23 @@ export declare function getPersonalAccessToken1({ apiAuthorization, generateToke
|
|
|
2704
2736
|
generateTokenFromPersonalAccountRequest?: GenerateTokenFromPersonalAccountRequest;
|
|
2705
2737
|
}, opts?: Oazapfts.RequestOpts): Promise<PersonalAccessTokenResponse>;
|
|
2706
2738
|
/**
|
|
2707
|
-
*
|
|
2739
|
+
* Disables the client that generates Personal Access Tokens.
|
|
2708
2740
|
*/
|
|
2709
2741
|
export declare function disablePersonalAccessTokenGeneration(opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2710
2742
|
/**
|
|
2711
|
-
*
|
|
2743
|
+
* Checks whether a client exists and is authorized to generate an Access Token on behalf of the logged-in user.
|
|
2712
2744
|
*/
|
|
2713
2745
|
export declare function personalAccessTokenAuthorization(opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2714
2746
|
/**
|
|
2715
|
-
*
|
|
2747
|
+
* Authorizes the creation of a client to generate Personal Access Tokens on your behalf.
|
|
2716
2748
|
*/
|
|
2717
2749
|
export declare function createPersonalAccessToken(opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2718
2750
|
/**
|
|
2719
|
-
*
|
|
2751
|
+
* Retrieves an Access Token generated on behalf of the logged-in user's service account, provided that prior authorization has been granted.
|
|
2720
2752
|
*/
|
|
2721
2753
|
export declare function getPersonalAccessTokenFromServiceAccountOnly(opts?: Oazapfts.RequestOpts): Promise<PersonalAccessTokenResponse>;
|
|
2722
2754
|
/**
|
|
2723
|
-
*
|
|
2755
|
+
* Generates a device code data for a user.
|
|
2724
2756
|
*/
|
|
2725
2757
|
export declare function deviceCode({ email, freemiumAccess, codeChallenge, body }: {
|
|
2726
2758
|
email: string;
|
|
@@ -2749,12 +2781,18 @@ export declare function getAccounts1({ size, page, sort, direction, search, filt
|
|
|
2749
2781
|
export declare function create1({ createAccountOrderRequest }: {
|
|
2750
2782
|
createAccountOrderRequest: CreateAccountOrderRequest;
|
|
2751
2783
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2784
|
+
/**
|
|
2785
|
+
* Allows to enable or disable trial SSO integrations.
|
|
2786
|
+
*/
|
|
2787
|
+
export declare function updateTrialSsoSettings({ updateTrialSsoSettingsRequest }: {
|
|
2788
|
+
updateTrialSsoSettingsRequest: UpdateTrialSsoSettingsRequest;
|
|
2789
|
+
}, opts?: Oazapfts.RequestOpts): Promise<UpdateTrialSsoSettingsResponse>;
|
|
2752
2790
|
/**
|
|
2753
2791
|
* Creates a Trial account.
|
|
2754
2792
|
*/
|
|
2755
2793
|
export declare function createTrialAccount({ accountTrialCreateRequest }: {
|
|
2756
2794
|
accountTrialCreateRequest: AccountTrialCreateRequest;
|
|
2757
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
2795
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PersonalAccountExpirationDataResponse>;
|
|
2758
2796
|
/**
|
|
2759
2797
|
* Sets trial account to be removed after expiration.
|
|
2760
2798
|
*/
|
|
@@ -2807,13 +2845,13 @@ export declare function ssoParseConfigurationFile({ protocol, body }: {
|
|
|
2807
2845
|
};
|
|
2808
2846
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountSsoParserResponse>;
|
|
2809
2847
|
/**
|
|
2810
|
-
*
|
|
2848
|
+
* Creates a partner account order.
|
|
2811
2849
|
*/
|
|
2812
2850
|
export declare function createPartner({ createAccountPartnerOrderRequest }: {
|
|
2813
2851
|
createAccountPartnerOrderRequest: CreateAccountPartnerOrderRequest;
|
|
2814
2852
|
}, opts?: Oazapfts.RequestOpts): Promise<IdDefaultResponse>;
|
|
2815
2853
|
/**
|
|
2816
|
-
*
|
|
2854
|
+
* Validates new Partner account data.
|
|
2817
2855
|
*/
|
|
2818
2856
|
export declare function validateNewPartnerData({ validateAccountPartnerDataRequest }: {
|
|
2819
2857
|
validateAccountPartnerDataRequest: ValidateAccountPartnerDataRequest;
|
|
@@ -2838,27 +2876,6 @@ export declare function updateServiceCredentialScopes({ id, updateServiceCredent
|
|
|
2838
2876
|
export declare function revokeServiceCredential({ id }: {
|
|
2839
2877
|
id: string;
|
|
2840
2878
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2841
|
-
/**
|
|
2842
|
-
* Retrieves a list of rate limit with the associated service credential.
|
|
2843
|
-
*/
|
|
2844
|
-
export declare function getAllServiceCredentialRateLimit({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2845
|
-
size?: any;
|
|
2846
|
-
page?: any;
|
|
2847
|
-
sort?: string;
|
|
2848
|
-
direction?: "ASC" | "DESC";
|
|
2849
|
-
search?: string;
|
|
2850
|
-
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2851
|
-
filterBy?: string;
|
|
2852
|
-
filterValue?: string;
|
|
2853
|
-
multiFilterMode?: string;
|
|
2854
|
-
filterIn?: any;
|
|
2855
|
-
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseServiceCredentialRateLimitResponse>;
|
|
2856
|
-
/**
|
|
2857
|
-
* Updates the rate limit of a service credential.
|
|
2858
|
-
*/
|
|
2859
|
-
export declare function updateServiceCredentialRateLimit({ serviceCredentialRateLimitRequest }: {
|
|
2860
|
-
serviceCredentialRateLimitRequest: ServiceCredentialRateLimitRequest;
|
|
2861
|
-
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2862
2879
|
/**
|
|
2863
2880
|
* Delete a member permissions
|
|
2864
2881
|
*/
|
|
@@ -2874,14 +2891,14 @@ export declare function updateMemberPermissions({ memberId, body }: {
|
|
|
2874
2891
|
body: UpdateMemberPermissionsRequest[];
|
|
2875
2892
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2876
2893
|
/**
|
|
2877
|
-
*
|
|
2894
|
+
* Deletes specific permissions from a group.
|
|
2878
2895
|
*/
|
|
2879
2896
|
export declare function deleteGroupPermissions({ groupId, body }: {
|
|
2880
2897
|
groupId: string;
|
|
2881
2898
|
body: DeleteGroupPermissionsRequest[];
|
|
2882
2899
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2883
2900
|
/**
|
|
2884
|
-
*
|
|
2901
|
+
* Updates the permissions of a specified group.
|
|
2885
2902
|
*/
|
|
2886
2903
|
export declare function updateGroupPermissions({ groupId, body }: {
|
|
2887
2904
|
groupId: string;
|
|
@@ -2895,7 +2912,7 @@ export declare function associateGroupToServiceCredential({ id, serviceCredentia
|
|
|
2895
2912
|
serviceCredentialAssociateGroupRequest: ServiceCredentialAssociateGroupRequest;
|
|
2896
2913
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2897
2914
|
/**
|
|
2898
|
-
*
|
|
2915
|
+
* Revokes a service credential.
|
|
2899
2916
|
*/
|
|
2900
2917
|
export declare function revokeServiceCredential1({ id }: {
|
|
2901
2918
|
id: string;
|
|
@@ -2980,33 +2997,33 @@ export declare function resendUserInvitation({ id }: {
|
|
|
2980
2997
|
id: string;
|
|
2981
2998
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2982
2999
|
/**
|
|
2983
|
-
*
|
|
3000
|
+
* Retrieves information about a specific group by its ID.
|
|
2984
3001
|
*/
|
|
2985
3002
|
export declare function getGroupById({ groupId }: {
|
|
2986
3003
|
groupId: string;
|
|
2987
3004
|
}, opts?: Oazapfts.RequestOpts): Promise<GroupReadDetailResponse>;
|
|
2988
3005
|
/**
|
|
2989
|
-
*
|
|
3006
|
+
* Deletes a group by its ID.
|
|
2990
3007
|
*/
|
|
2991
3008
|
export declare function deleteV1GroupsByGroupId({ groupId }: {
|
|
2992
3009
|
groupId: string;
|
|
2993
3010
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2994
3011
|
/**
|
|
2995
|
-
*
|
|
3012
|
+
* Updates an existing group.
|
|
2996
3013
|
*/
|
|
2997
3014
|
export declare function update1({ groupId, updateGroupRequest }: {
|
|
2998
3015
|
groupId: string;
|
|
2999
3016
|
updateGroupRequest: UpdateGroupRequest;
|
|
3000
3017
|
}, opts?: Oazapfts.RequestOpts): Promise<IamIdResponse>;
|
|
3001
3018
|
/**
|
|
3002
|
-
*
|
|
3019
|
+
* Deletes specific permissions from a group.
|
|
3003
3020
|
*/
|
|
3004
3021
|
export declare function deleteGroupPermissions1({ groupId, deleteGroupPermissionsRequest }: {
|
|
3005
3022
|
groupId: string;
|
|
3006
3023
|
deleteGroupPermissionsRequest: DeleteGroupPermissionsRequest;
|
|
3007
3024
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3008
3025
|
/**
|
|
3009
|
-
*
|
|
3026
|
+
* Updates the permissions of a specified group.
|
|
3010
3027
|
*/
|
|
3011
3028
|
export declare function updateGroupPermissions1({ groupId, updateGroupPermissionsRequest }: {
|
|
3012
3029
|
groupId: string;
|
|
@@ -3025,26 +3042,26 @@ export declare function disable({ id }: {
|
|
|
3025
3042
|
id: number;
|
|
3026
3043
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3027
3044
|
/**
|
|
3028
|
-
*
|
|
3045
|
+
* Deletes an account's extension.
|
|
3029
3046
|
*/
|
|
3030
3047
|
export declare function deleteExtension({ slug }: {
|
|
3031
3048
|
slug: string;
|
|
3032
3049
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3033
3050
|
/**
|
|
3034
|
-
*
|
|
3051
|
+
* Updates an account's extension.
|
|
3035
3052
|
*/
|
|
3036
3053
|
export declare function updateExtension({ slug, extensionUpdateRequest }: {
|
|
3037
3054
|
slug: string;
|
|
3038
3055
|
extensionUpdateRequest: ExtensionUpdateRequest;
|
|
3039
3056
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3040
3057
|
/**
|
|
3041
|
-
*
|
|
3058
|
+
* Deletes an extension link by its ID.
|
|
3042
3059
|
*/
|
|
3043
3060
|
export declare function deleteExtensionLink({ id }: {
|
|
3044
3061
|
id: string;
|
|
3045
3062
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3046
3063
|
/**
|
|
3047
|
-
*
|
|
3064
|
+
* Updates a specified account's extension link.
|
|
3048
3065
|
*/
|
|
3049
3066
|
export declare function updateExtensionLink({ id, extensionLinkUpdateRequest }: {
|
|
3050
3067
|
id: string;
|
|
@@ -3088,26 +3105,26 @@ export declare function updateRateLimit({ updateRateLimitRequest }: {
|
|
|
3088
3105
|
updateRateLimitRequest: UpdateRateLimitRequest;
|
|
3089
3106
|
}, opts?: Oazapfts.RequestOpts): Promise<RateLimitResponse>;
|
|
3090
3107
|
/**
|
|
3091
|
-
*
|
|
3108
|
+
* Retrieves partner account details by account Id.
|
|
3092
3109
|
*/
|
|
3093
3110
|
export declare function getPartnerAccount({ id }: {
|
|
3094
3111
|
id: string;
|
|
3095
3112
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountResponse>;
|
|
3096
3113
|
/**
|
|
3097
|
-
*
|
|
3114
|
+
* Inactivates a partner account by disabling its associated tenant and updating its status.
|
|
3098
3115
|
*/
|
|
3099
3116
|
export declare function deletePartner({ id }: {
|
|
3100
3117
|
id: string;
|
|
3101
3118
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3102
3119
|
/**
|
|
3103
|
-
*
|
|
3120
|
+
* Updates the partner account data.
|
|
3104
3121
|
*/
|
|
3105
3122
|
export declare function updatePartnerAccountData({ id, accountPartnerAccountDataUpdateRequest }: {
|
|
3106
3123
|
id: string;
|
|
3107
3124
|
accountPartnerAccountDataUpdateRequest: AccountPartnerAccountDataUpdateRequest;
|
|
3108
3125
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3109
3126
|
/**
|
|
3110
|
-
*
|
|
3127
|
+
* Updates the partner admin data for a specific account.
|
|
3111
3128
|
*/
|
|
3112
3129
|
export declare function updatePartnerAccountAdminData({ id, accountPartnerAdminDataUpdateRequest }: {
|
|
3113
3130
|
id: string;
|
|
@@ -3126,7 +3143,7 @@ export declare function getServiceCredentialByIdRateLimit({ clientId }: {
|
|
|
3126
3143
|
clientId: string;
|
|
3127
3144
|
}, opts?: Oazapfts.RequestOpts): Promise<ServiceCredentialRateLimitResponse>;
|
|
3128
3145
|
/**
|
|
3129
|
-
*
|
|
3146
|
+
* Retrieves a list of roles for the current tenant.
|
|
3130
3147
|
*/
|
|
3131
3148
|
export declare function getRoles({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3132
3149
|
size?: any;
|
|
@@ -3141,7 +3158,7 @@ export declare function getRoles({ size, page, sort, direction, search, filterMo
|
|
|
3141
3158
|
filterIn?: any;
|
|
3142
3159
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleResponse>;
|
|
3143
3160
|
/**
|
|
3144
|
-
*
|
|
3161
|
+
* Retrieves a list of all global resources and their associated actions for a specified role.
|
|
3145
3162
|
*/
|
|
3146
3163
|
export declare function getResourcesAndActionsWithStatus({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3147
3164
|
roleId: string;
|
|
@@ -3157,7 +3174,7 @@ export declare function getResourcesAndActionsWithStatus({ roleId, size, page, s
|
|
|
3157
3174
|
filterIn?: any;
|
|
3158
3175
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleResourceResponse>;
|
|
3159
3176
|
/**
|
|
3160
|
-
*
|
|
3177
|
+
* Retrieves a list of members associated with a specific role.
|
|
3161
3178
|
*/
|
|
3162
3179
|
export declare function getRoleMembers({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3163
3180
|
roleId: string;
|
|
@@ -3173,7 +3190,7 @@ export declare function getRoleMembers({ roleId, size, page, sort, direction, se
|
|
|
3173
3190
|
filterIn?: any;
|
|
3174
3191
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleMemberResponse>;
|
|
3175
3192
|
/**
|
|
3176
|
-
*
|
|
3193
|
+
* Retrieves a list of role groups associated with a specific role ID.
|
|
3177
3194
|
*/
|
|
3178
3195
|
export declare function getRoleGroups({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3179
3196
|
roleId: string;
|
|
@@ -3236,7 +3253,7 @@ export declare function getResourceGroups({ resourceId, size, page, sort, direct
|
|
|
3236
3253
|
filterIn?: any;
|
|
3237
3254
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupsFromResourceResponse>;
|
|
3238
3255
|
/**
|
|
3239
|
-
*
|
|
3256
|
+
* Finds and retrieves a list of resource types for the current account.
|
|
3240
3257
|
*/
|
|
3241
3258
|
export declare function getResourceTypes({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3242
3259
|
size?: any;
|
|
@@ -3298,7 +3315,7 @@ export declare function getMemberGroups({ memberId, size, page, sort, direction,
|
|
|
3298
3315
|
filterIn?: any;
|
|
3299
3316
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupReadResponse>;
|
|
3300
3317
|
/**
|
|
3301
|
-
*
|
|
3318
|
+
* Returns a list of group details.
|
|
3302
3319
|
*/
|
|
3303
3320
|
export declare function getGroups({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, includeDefaultGroup }: {
|
|
3304
3321
|
size?: any;
|
|
@@ -3314,7 +3331,7 @@ export declare function getGroups({ size, page, sort, direction, search, filterM
|
|
|
3314
3331
|
includeDefaultGroup?: boolean;
|
|
3315
3332
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupReadResponse>;
|
|
3316
3333
|
/**
|
|
3317
|
-
*
|
|
3334
|
+
* Retrieves a list of roles for a specified group.
|
|
3318
3335
|
*/
|
|
3319
3336
|
export declare function getRoles2({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3320
3337
|
groupId: string;
|
|
@@ -3330,7 +3347,7 @@ export declare function getRoles2({ groupId, size, page, sort, direction, search
|
|
|
3330
3347
|
filterIn?: any;
|
|
3331
3348
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleResponse>;
|
|
3332
3349
|
/**
|
|
3333
|
-
*
|
|
3350
|
+
* Finds and returns a list of resources associated with a specific group.
|
|
3334
3351
|
*/
|
|
3335
3352
|
export declare function getGroupResources({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3336
3353
|
groupId: string;
|
|
@@ -3346,7 +3363,7 @@ export declare function getGroupResources({ groupId, size, page, sort, direction
|
|
|
3346
3363
|
filterIn?: any;
|
|
3347
3364
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseResourceResponse>;
|
|
3348
3365
|
/**
|
|
3349
|
-
*
|
|
3366
|
+
* Returns a list of members from a specified group.
|
|
3350
3367
|
*/
|
|
3351
3368
|
export declare function getMembers({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3352
3369
|
groupId: string;
|
|
@@ -3370,7 +3387,7 @@ export declare function isCreatedScmCredentials(opts?: Oazapfts.RequestOpts): Pr
|
|
|
3370
3387
|
*/
|
|
3371
3388
|
export declare function getUserAccountWithRole(opts?: Oazapfts.RequestOpts): Promise<AccountCollaborationInfoResponse[]>;
|
|
3372
3389
|
/**
|
|
3373
|
-
*
|
|
3390
|
+
* Finds and returns a list of active accounts.
|
|
3374
3391
|
*/
|
|
3375
3392
|
export declare function getAccounts({ accountType, slug, id }: {
|
|
3376
3393
|
accountType?: string;
|
|
@@ -3378,13 +3395,13 @@ export declare function getAccounts({ accountType, slug, id }: {
|
|
|
3378
3395
|
id?: string;
|
|
3379
3396
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountDataReadResponse[]>;
|
|
3380
3397
|
/**
|
|
3381
|
-
*
|
|
3398
|
+
* Finds and retrieves active account details by the provided account ID.
|
|
3382
3399
|
*/
|
|
3383
3400
|
export declare function getAccount({ id }: {
|
|
3384
3401
|
id: string;
|
|
3385
3402
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountDataReadResponse>;
|
|
3386
3403
|
/**
|
|
3387
|
-
*
|
|
3404
|
+
* Returns a list of account members for a specified account.
|
|
3388
3405
|
*/
|
|
3389
3406
|
export declare function getAccountMembers1({ id, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3390
3407
|
id: string;
|
|
@@ -3400,7 +3417,7 @@ export declare function getAccountMembers1({ id, size, page, sort, direction, se
|
|
|
3400
3417
|
filterIn?: any;
|
|
3401
3418
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountMemberResponse[]>;
|
|
3402
3419
|
/**
|
|
3403
|
-
*
|
|
3420
|
+
* Retrieves the service credential details for a given client ID.
|
|
3404
3421
|
*/
|
|
3405
3422
|
export declare function getServiceCredential({ id }: {
|
|
3406
3423
|
id: string;
|
|
@@ -3412,7 +3429,7 @@ export declare function getServiceCredentialPermissions({ id }: {
|
|
|
3412
3429
|
id: string;
|
|
3413
3430
|
}, opts?: Oazapfts.RequestOpts): Promise<FullResourceResponse[]>;
|
|
3414
3431
|
/**
|
|
3415
|
-
*
|
|
3432
|
+
* Retrieves a list of service credential groups associated with a specific client ID.
|
|
3416
3433
|
*/
|
|
3417
3434
|
export declare function getServiceCredentialGroups1({ id }: {
|
|
3418
3435
|
id: string;
|
|
@@ -3480,7 +3497,7 @@ export declare function getResourceGroups1({ resourceId, size, page, sort, direc
|
|
|
3480
3497
|
filterIn?: any;
|
|
3481
3498
|
}, opts?: Oazapfts.RequestOpts): Promise<GroupsFromResourceResponse[]>;
|
|
3482
3499
|
/**
|
|
3483
|
-
*
|
|
3500
|
+
* Finds and retrieves a list of resource types for the current account.
|
|
3484
3501
|
*/
|
|
3485
3502
|
export declare function getResourceTypes1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
3486
3503
|
size?: any;
|
|
@@ -3495,7 +3512,7 @@ export declare function getResourceTypes1({ size, page, sort, direction, search,
|
|
|
3495
3512
|
filterIn?: any;
|
|
3496
3513
|
}, opts?: Oazapfts.RequestOpts): Promise<ResourceTypeResponse[]>;
|
|
3497
3514
|
/**
|
|
3498
|
-
*
|
|
3515
|
+
* Validates user permission access for resources.
|
|
3499
3516
|
*/
|
|
3500
3517
|
export declare function getAccess({ resourceType, resource, action, attribute }: {
|
|
3501
3518
|
resourceType: string;
|
|
@@ -3510,12 +3527,18 @@ export declare function getResources2({ memberId }: {
|
|
|
3510
3527
|
memberId: string;
|
|
3511
3528
|
}, opts?: Oazapfts.RequestOpts): Promise<ResourceDto[]>;
|
|
3512
3529
|
/**
|
|
3513
|
-
*
|
|
3530
|
+
* Retrieves a magic link to create a new FIDO key.
|
|
3531
|
+
*/
|
|
3532
|
+
export declare function getFidoMagicLink({ memberId }: {
|
|
3533
|
+
memberId: string;
|
|
3534
|
+
}, opts?: Oazapfts.RequestOpts): Promise<string>;
|
|
3535
|
+
/**
|
|
3536
|
+
* Lists the IDs of a member's favorite resources of a specified type.
|
|
3514
3537
|
*/
|
|
3515
3538
|
export declare function listMemberFavoritesByResource({ memberId, resourceType }: {
|
|
3516
3539
|
memberId: string;
|
|
3517
3540
|
resourceType: string;
|
|
3518
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
3541
|
+
}, opts?: Oazapfts.RequestOpts): Promise<string[]>;
|
|
3519
3542
|
/**
|
|
3520
3543
|
* Retrieves a list of account members and collaborators associated with the current user's account.
|
|
3521
3544
|
*/
|
|
@@ -3532,27 +3555,27 @@ export declare function getAccountMembersToCollaborators({ size, page, sort, dir
|
|
|
3532
3555
|
filterIn?: any;
|
|
3533
3556
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountMemberResponse[]>;
|
|
3534
3557
|
/**
|
|
3535
|
-
*
|
|
3558
|
+
* Retrieves the details of a specific extension version.
|
|
3536
3559
|
*/
|
|
3537
3560
|
export declare function getExtensionVersion({ slug, versionName }: {
|
|
3538
3561
|
slug: string;
|
|
3539
3562
|
versionName: string;
|
|
3540
3563
|
}, opts?: Oazapfts.RequestOpts): Promise<ExtensionVersionResponse>;
|
|
3541
3564
|
/**
|
|
3542
|
-
*
|
|
3565
|
+
* Deletes a specific version of an extension.
|
|
3543
3566
|
*/
|
|
3544
3567
|
export declare function deleteExtensionVersion({ slug, versionName }: {
|
|
3545
3568
|
slug: string;
|
|
3546
3569
|
versionName: string;
|
|
3547
3570
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3548
3571
|
/**
|
|
3549
|
-
*
|
|
3572
|
+
* Retrieves the details of the extension's active version.
|
|
3550
3573
|
*/
|
|
3551
3574
|
export declare function getActiveExtensionVersion({ slug }: {
|
|
3552
3575
|
slug: string;
|
|
3553
3576
|
}, opts?: Oazapfts.RequestOpts): Promise<ExtensionVersionResponse>;
|
|
3554
3577
|
/**
|
|
3555
|
-
*
|
|
3578
|
+
* Gets the Authentication Configuration for an account.
|
|
3556
3579
|
*/
|
|
3557
3580
|
export declare function getAuthenticationConfig({ tenantSlug }: {
|
|
3558
3581
|
tenantSlug: string;
|
|
@@ -3575,6 +3598,10 @@ export declare function getAccountDataByEmail({ email }: {
|
|
|
3575
3598
|
export declare function getAccountSlug({ accountId }: {
|
|
3576
3599
|
accountId: string;
|
|
3577
3600
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountSlugResponse>;
|
|
3601
|
+
/**
|
|
3602
|
+
* Retrieves the current status of trial SSO integrations.
|
|
3603
|
+
*/
|
|
3604
|
+
export declare function getTrialSsoSettings(opts?: Oazapfts.RequestOpts): Promise<TrialSsoSettingsResponse>;
|
|
3578
3605
|
/**
|
|
3579
3606
|
* Finds and returns personal account details.
|
|
3580
3607
|
*/
|
|
@@ -3583,13 +3610,6 @@ export declare function getPersonalAccountDetails(opts?: Oazapfts.RequestOpts):
|
|
|
3583
3610
|
* Finds and returns personal account expiration data associated with the provided token.
|
|
3584
3611
|
*/
|
|
3585
3612
|
export declare function getPersonalAccountExpirationData(opts?: Oazapfts.RequestOpts): Promise<PersonalAccountExpirationDataResponse>;
|
|
3586
|
-
/**
|
|
3587
|
-
* Determines whether account data is available for registration based on the provided name and slug.
|
|
3588
|
-
*/
|
|
3589
|
-
export declare function accountDataIsAvailable({ name, slug }: {
|
|
3590
|
-
name: string;
|
|
3591
|
-
slug: string;
|
|
3592
|
-
}, opts?: Oazapfts.RequestOpts): Promise<AccountDataAvailableResponse>;
|
|
3593
3613
|
/**
|
|
3594
3614
|
* Retrieves a list of SSO for the current account.
|
|
3595
3615
|
*/
|
|
@@ -3606,23 +3626,23 @@ export declare function getAllAccountSso({ size, page, sort, direction, search,
|
|
|
3606
3626
|
filterIn?: any;
|
|
3607
3627
|
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseAccountSsoResponse>;
|
|
3608
3628
|
/**
|
|
3609
|
-
*
|
|
3629
|
+
* Finds and returns a list of partners who are sharing content.
|
|
3610
3630
|
*/
|
|
3611
3631
|
export declare function getSharingPartners({ name }: {
|
|
3612
3632
|
name?: string;
|
|
3613
3633
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountPartnerResponse[]>;
|
|
3614
3634
|
/**
|
|
3615
|
-
*
|
|
3635
|
+
* Finds and returns a list of partners with whom sharing content is allowed.
|
|
3616
3636
|
*/
|
|
3617
3637
|
export declare function getPartnersSharingAllowed({ name }: {
|
|
3618
3638
|
name?: string;
|
|
3619
3639
|
}, opts?: Oazapfts.RequestOpts): Promise<AccountPartnerResponse[]>;
|
|
3620
3640
|
/**
|
|
3621
|
-
*
|
|
3641
|
+
* Validates Partner association limit.
|
|
3622
3642
|
*/
|
|
3623
3643
|
export declare function validatePartnerAssociationLimit(opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3624
3644
|
/**
|
|
3625
|
-
*
|
|
3645
|
+
* Disassociates a group from a service credential.
|
|
3626
3646
|
*/
|
|
3627
3647
|
export declare function disassociateGroupToServiceCredential({ id, groupId }: {
|
|
3628
3648
|
id: string;
|
|
@@ -3648,7 +3668,14 @@ export declare function deleteProfileImage({ memberId }: {
|
|
|
3648
3668
|
memberId: string;
|
|
3649
3669
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3650
3670
|
/**
|
|
3651
|
-
*
|
|
3671
|
+
* Deletes a specific FIDO key.
|
|
3672
|
+
*/
|
|
3673
|
+
export declare function deleteFidoKey({ memberId, keyId }: {
|
|
3674
|
+
memberId: string;
|
|
3675
|
+
keyId: number;
|
|
3676
|
+
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3677
|
+
/**
|
|
3678
|
+
* Removes a specified resource from a member favorites.
|
|
3652
3679
|
*/
|
|
3653
3680
|
export declare function deleteMemberFavorite({ memberId, resourceType, resourceId }: {
|
|
3654
3681
|
memberId: string;
|
|
@@ -3656,21 +3683,21 @@ export declare function deleteMemberFavorite({ memberId, resourceType, resourceI
|
|
|
3656
3683
|
resourceId: string;
|
|
3657
3684
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3658
3685
|
/**
|
|
3659
|
-
*
|
|
3686
|
+
* Deletes a specific role from a group.
|
|
3660
3687
|
*/
|
|
3661
3688
|
export declare function deleteRole({ groupId, roleId }: {
|
|
3662
3689
|
groupId: string;
|
|
3663
3690
|
roleId: string;
|
|
3664
3691
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3665
3692
|
/**
|
|
3666
|
-
*
|
|
3693
|
+
* Removes a resource from a specified group.
|
|
3667
3694
|
*/
|
|
3668
3695
|
export declare function deleteResourceFromGroup({ groupId, resourceId }: {
|
|
3669
3696
|
groupId: string;
|
|
3670
3697
|
resourceId: string;
|
|
3671
3698
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
3672
3699
|
/**
|
|
3673
|
-
*
|
|
3700
|
+
* Deletes a member from a specified group.
|
|
3674
3701
|
*/
|
|
3675
3702
|
export declare function deleteMember({ groupId, memberId }: {
|
|
3676
3703
|
groupId: string;
|