@stack-spot/portal-network 0.71.0 → 0.72.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 +7 -0
- package/dist/api/account.d.ts +519 -85
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +337 -22
- package/dist/api/account.js.map +1 -1
- package/dist/client/account.d.ts +178 -2
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +115 -16
- package/dist/client/account.js.map +1 -1
- package/package.json +1 -1
- package/src/api/account.ts +1127 -293
- package/src/client/account.ts +74 -19
package/dist/api/account.d.ts
CHANGED
|
@@ -106,22 +106,35 @@ export type UpdateAccountRoleRequest = {
|
|
|
106
106
|
/** List of new permissions to add to the role. */
|
|
107
107
|
permissionIds?: string[];
|
|
108
108
|
};
|
|
109
|
-
export type
|
|
109
|
+
export type ResourceActionResponse = {
|
|
110
|
+
/** Action id. */
|
|
110
111
|
id: string;
|
|
111
|
-
|
|
112
|
+
/** Action Client id. */
|
|
113
|
+
clientId?: string;
|
|
114
|
+
/** Action name. */
|
|
112
115
|
name: string;
|
|
116
|
+
/** Action description. */
|
|
113
117
|
description: string;
|
|
114
|
-
|
|
118
|
+
/** Action creation date. */
|
|
119
|
+
createdAt: string;
|
|
120
|
+
/** Action status. */
|
|
115
121
|
active?: boolean;
|
|
116
122
|
};
|
|
117
|
-
export type
|
|
123
|
+
export type RoleResourceResponse = {
|
|
124
|
+
/** Id of resource. */
|
|
118
125
|
id: string;
|
|
126
|
+
/** Name of resource. */
|
|
119
127
|
name: string;
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
128
|
+
/** Description of resource. */
|
|
129
|
+
description?: string;
|
|
130
|
+
/** Type of resource. */
|
|
131
|
+
resourceTypeId: string;
|
|
132
|
+
/** Creation date of resource. */
|
|
133
|
+
createdAt: string;
|
|
134
|
+
/** Global resource id of resource. */
|
|
135
|
+
globalResourceId: string;
|
|
136
|
+
/** Creation date of resource. */
|
|
137
|
+
actions?: ResourceActionResponse[];
|
|
125
138
|
};
|
|
126
139
|
export type IamCreateStatementRequest = {
|
|
127
140
|
actions: string[];
|
|
@@ -343,28 +356,6 @@ export type AccountGroupMappingUpdateRequest = {
|
|
|
343
356
|
/** Group Mapping name */
|
|
344
357
|
name: string;
|
|
345
358
|
};
|
|
346
|
-
export type ServiceCredentialCreateRequestV2 = {
|
|
347
|
-
/** Service credential name */
|
|
348
|
-
name: string;
|
|
349
|
-
/** Service credential expiration days */
|
|
350
|
-
description?: string;
|
|
351
|
-
/** Service credential expiration days */
|
|
352
|
-
expirationDays?: number;
|
|
353
|
-
/** Service credential statements */
|
|
354
|
-
scopes?: string[];
|
|
355
|
-
};
|
|
356
|
-
export type ServiceCredentialCreateResponseV2 = {
|
|
357
|
-
/** Client ID service credential */
|
|
358
|
-
clientId: string;
|
|
359
|
-
/** Client Secret service credential */
|
|
360
|
-
clientSecret?: string;
|
|
361
|
-
/** Service credential scopes */
|
|
362
|
-
scopes: string[];
|
|
363
|
-
/** Service credential expiration date */
|
|
364
|
-
expirationDate?: string;
|
|
365
|
-
/** Account tenant */
|
|
366
|
-
tenant: string;
|
|
367
|
-
};
|
|
368
359
|
export type ServiceCredentialResponse = {
|
|
369
360
|
/** Service credential id */
|
|
370
361
|
id: string;
|
|
@@ -387,6 +378,40 @@ export type ServiceCredentialResponse = {
|
|
|
387
378
|
/** Service credential status */
|
|
388
379
|
status: "ACTIVE" | "DISABLED" | "REVOKED" | "EXPIRED";
|
|
389
380
|
};
|
|
381
|
+
export type PageResponseServiceCredentialResponse = {
|
|
382
|
+
/** Current page content */
|
|
383
|
+
items?: ServiceCredentialResponse[];
|
|
384
|
+
/** Total elements found */
|
|
385
|
+
totalElements: number;
|
|
386
|
+
/** Current page number */
|
|
387
|
+
page: number;
|
|
388
|
+
/** Length of current page items */
|
|
389
|
+
size: number;
|
|
390
|
+
/** Total pages found */
|
|
391
|
+
totalPages: number;
|
|
392
|
+
};
|
|
393
|
+
export type ServiceCredentialCreateRequestV2 = {
|
|
394
|
+
/** Service credential name */
|
|
395
|
+
name: string;
|
|
396
|
+
/** Service credential expiration days */
|
|
397
|
+
description?: string;
|
|
398
|
+
/** Service credential expiration days */
|
|
399
|
+
expirationDays?: number;
|
|
400
|
+
/** Service credential statements */
|
|
401
|
+
scopes?: string[];
|
|
402
|
+
};
|
|
403
|
+
export type ServiceCredentialCreateResponseV2 = {
|
|
404
|
+
/** Client ID service credential */
|
|
405
|
+
clientId: string;
|
|
406
|
+
/** Client Secret service credential */
|
|
407
|
+
clientSecret?: string;
|
|
408
|
+
/** Service credential scopes */
|
|
409
|
+
scopes: string[];
|
|
410
|
+
/** Service credential expiration date */
|
|
411
|
+
expirationDate?: string;
|
|
412
|
+
/** Account tenant */
|
|
413
|
+
tenant: string;
|
|
414
|
+
};
|
|
390
415
|
export type StatementRequest = {
|
|
391
416
|
/** Resource id */
|
|
392
417
|
resource: string;
|
|
@@ -870,6 +895,8 @@ export type PageResponseAccountResponse = {
|
|
|
870
895
|
page: number;
|
|
871
896
|
/** Length of current page items */
|
|
872
897
|
size: number;
|
|
898
|
+
/** Total pages found */
|
|
899
|
+
totalPages: number;
|
|
873
900
|
};
|
|
874
901
|
export type CreateAccountOrderRequest = {
|
|
875
902
|
/** The account's name. Example: Zup IT Innovation */
|
|
@@ -900,6 +927,8 @@ export type PageResponseAccountSsoGroupMappingResponse = {
|
|
|
900
927
|
page: number;
|
|
901
928
|
/** Length of current page items */
|
|
902
929
|
size: number;
|
|
930
|
+
/** Total pages found */
|
|
931
|
+
totalPages: number;
|
|
903
932
|
};
|
|
904
933
|
export type AccountGroupMappingCreateRequest = {
|
|
905
934
|
/** Group Mapping externalUserAttribute */
|
|
@@ -1158,6 +1187,183 @@ export type AccountPartnerAdminDataUpdateRequest = {
|
|
|
1158
1187
|
/** Admin email */
|
|
1159
1188
|
email: string;
|
|
1160
1189
|
};
|
|
1190
|
+
export type PageResponseGroupReadResponse = {
|
|
1191
|
+
/** Current page content */
|
|
1192
|
+
items?: GroupReadResponse[];
|
|
1193
|
+
/** Total elements found */
|
|
1194
|
+
totalElements: number;
|
|
1195
|
+
/** Current page number */
|
|
1196
|
+
page: number;
|
|
1197
|
+
/** Length of current page items */
|
|
1198
|
+
size: number;
|
|
1199
|
+
/** Total pages found */
|
|
1200
|
+
totalPages: number;
|
|
1201
|
+
};
|
|
1202
|
+
export type PageResponseRoleResponse = {
|
|
1203
|
+
/** Current page content */
|
|
1204
|
+
items?: RoleResponse[];
|
|
1205
|
+
/** Total elements found */
|
|
1206
|
+
totalElements: number;
|
|
1207
|
+
/** Current page number */
|
|
1208
|
+
page: number;
|
|
1209
|
+
/** Length of current page items */
|
|
1210
|
+
size: number;
|
|
1211
|
+
/** Total pages found */
|
|
1212
|
+
totalPages: number;
|
|
1213
|
+
};
|
|
1214
|
+
export type PageResponseRoleResourceResponse = {
|
|
1215
|
+
/** Current page content */
|
|
1216
|
+
items?: RoleResourceResponse[];
|
|
1217
|
+
/** Total elements found */
|
|
1218
|
+
totalElements: number;
|
|
1219
|
+
/** Current page number */
|
|
1220
|
+
page: number;
|
|
1221
|
+
/** Length of current page items */
|
|
1222
|
+
size: number;
|
|
1223
|
+
/** Total pages found */
|
|
1224
|
+
totalPages: number;
|
|
1225
|
+
};
|
|
1226
|
+
export type PageResponseRoleMemberResponse = {
|
|
1227
|
+
/** Current page content */
|
|
1228
|
+
items?: RoleMemberResponse[];
|
|
1229
|
+
/** Total elements found */
|
|
1230
|
+
totalElements: number;
|
|
1231
|
+
/** Current page number */
|
|
1232
|
+
page: number;
|
|
1233
|
+
/** Length of current page items */
|
|
1234
|
+
size: number;
|
|
1235
|
+
/** Total pages found */
|
|
1236
|
+
totalPages: number;
|
|
1237
|
+
};
|
|
1238
|
+
export type PageResponseRoleGroupResponse = {
|
|
1239
|
+
/** Current page content */
|
|
1240
|
+
items?: RoleGroupResponse[];
|
|
1241
|
+
/** Total elements found */
|
|
1242
|
+
totalElements: number;
|
|
1243
|
+
/** Current page number */
|
|
1244
|
+
page: number;
|
|
1245
|
+
/** Length of current page items */
|
|
1246
|
+
size: number;
|
|
1247
|
+
/** Total pages found */
|
|
1248
|
+
totalPages: number;
|
|
1249
|
+
};
|
|
1250
|
+
export type PageResponseResourceResponse = {
|
|
1251
|
+
/** Current page content */
|
|
1252
|
+
items?: ResourceResponse[];
|
|
1253
|
+
/** Total elements found */
|
|
1254
|
+
totalElements: number;
|
|
1255
|
+
/** Current page number */
|
|
1256
|
+
page: number;
|
|
1257
|
+
/** Length of current page items */
|
|
1258
|
+
size: number;
|
|
1259
|
+
/** Total pages found */
|
|
1260
|
+
totalPages: number;
|
|
1261
|
+
};
|
|
1262
|
+
export type MembersFromResourceResponse = {
|
|
1263
|
+
/** Member ID */
|
|
1264
|
+
id: string;
|
|
1265
|
+
/** Member username */
|
|
1266
|
+
username: string;
|
|
1267
|
+
/** Member company email */
|
|
1268
|
+
email: string;
|
|
1269
|
+
/** Member name */
|
|
1270
|
+
name?: string;
|
|
1271
|
+
/** Member permission actions */
|
|
1272
|
+
actions: string[];
|
|
1273
|
+
};
|
|
1274
|
+
export type PageResponseMembersFromResourceResponse = {
|
|
1275
|
+
/** Current page content */
|
|
1276
|
+
items?: MembersFromResourceResponse[];
|
|
1277
|
+
/** Total elements found */
|
|
1278
|
+
totalElements: number;
|
|
1279
|
+
/** Current page number */
|
|
1280
|
+
page: number;
|
|
1281
|
+
/** Length of current page items */
|
|
1282
|
+
size: number;
|
|
1283
|
+
/** Total pages found */
|
|
1284
|
+
totalPages: number;
|
|
1285
|
+
};
|
|
1286
|
+
export type GroupsFromResourceResponse = {
|
|
1287
|
+
/** Group ID */
|
|
1288
|
+
id: string;
|
|
1289
|
+
/** Group name */
|
|
1290
|
+
name: string;
|
|
1291
|
+
/** Group description */
|
|
1292
|
+
description?: string;
|
|
1293
|
+
/** Group slug */
|
|
1294
|
+
slug: string;
|
|
1295
|
+
/** Group member count */
|
|
1296
|
+
memberCount: number;
|
|
1297
|
+
/** Group permission actions */
|
|
1298
|
+
actions: string[];
|
|
1299
|
+
};
|
|
1300
|
+
export type PageResponseGroupsFromResourceResponse = {
|
|
1301
|
+
/** Current page content */
|
|
1302
|
+
items?: GroupsFromResourceResponse[];
|
|
1303
|
+
/** Total elements found */
|
|
1304
|
+
totalElements: number;
|
|
1305
|
+
/** Current page number */
|
|
1306
|
+
page: number;
|
|
1307
|
+
/** Length of current page items */
|
|
1308
|
+
size: number;
|
|
1309
|
+
/** Total pages found */
|
|
1310
|
+
totalPages: number;
|
|
1311
|
+
};
|
|
1312
|
+
export type ResourceTypeResponse = {
|
|
1313
|
+
id: string;
|
|
1314
|
+
name: string;
|
|
1315
|
+
slug: string;
|
|
1316
|
+
description: string;
|
|
1317
|
+
createdAt: string;
|
|
1318
|
+
};
|
|
1319
|
+
export type PageResponseResourceTypeResponse = {
|
|
1320
|
+
/** Current page content */
|
|
1321
|
+
items?: ResourceTypeResponse[];
|
|
1322
|
+
/** Total elements found */
|
|
1323
|
+
totalElements: number;
|
|
1324
|
+
/** Current page number */
|
|
1325
|
+
page: number;
|
|
1326
|
+
/** Length of current page items */
|
|
1327
|
+
size: number;
|
|
1328
|
+
/** Total pages found */
|
|
1329
|
+
totalPages: number;
|
|
1330
|
+
};
|
|
1331
|
+
export type PageResponseAccountMemberResponse = {
|
|
1332
|
+
/** Current page content */
|
|
1333
|
+
items?: AccountMemberResponse[];
|
|
1334
|
+
/** Total elements found */
|
|
1335
|
+
totalElements: number;
|
|
1336
|
+
/** Current page number */
|
|
1337
|
+
page: number;
|
|
1338
|
+
/** Length of current page items */
|
|
1339
|
+
size: number;
|
|
1340
|
+
/** Total pages found */
|
|
1341
|
+
totalPages: number;
|
|
1342
|
+
};
|
|
1343
|
+
export type PageResponseReadMemberRoleResponse = {
|
|
1344
|
+
/** Current page content */
|
|
1345
|
+
items?: ReadMemberRoleResponse[];
|
|
1346
|
+
/** Total elements found */
|
|
1347
|
+
totalElements: number;
|
|
1348
|
+
/** Current page number */
|
|
1349
|
+
page: number;
|
|
1350
|
+
/** Length of current page items */
|
|
1351
|
+
size: number;
|
|
1352
|
+
/** Total pages found */
|
|
1353
|
+
totalPages: number;
|
|
1354
|
+
};
|
|
1355
|
+
export type PageResponseReadGroupMembersResponse = {
|
|
1356
|
+
/** Current page content */
|
|
1357
|
+
items?: ReadGroupMembersResponse[];
|
|
1358
|
+
/** Total elements found */
|
|
1359
|
+
totalElements: number;
|
|
1360
|
+
/** Current page number */
|
|
1361
|
+
page: number;
|
|
1362
|
+
/** Length of current page items */
|
|
1363
|
+
size: number;
|
|
1364
|
+
/** Total pages found */
|
|
1365
|
+
totalPages: number;
|
|
1366
|
+
};
|
|
1161
1367
|
export type AccountCollaborationInfoResponse = {
|
|
1162
1368
|
/** Account ID */
|
|
1163
1369
|
id: string;
|
|
@@ -1256,39 +1462,6 @@ export type RolePermissionResponse = {
|
|
|
1256
1462
|
/** The statements defined in the permission */
|
|
1257
1463
|
statements: PermissionStatementResponse[];
|
|
1258
1464
|
};
|
|
1259
|
-
export type MembersFromResourceResponse = {
|
|
1260
|
-
/** Member ID */
|
|
1261
|
-
id: string;
|
|
1262
|
-
/** Member username */
|
|
1263
|
-
username: string;
|
|
1264
|
-
/** Member company email */
|
|
1265
|
-
email: string;
|
|
1266
|
-
/** Member name */
|
|
1267
|
-
name?: string;
|
|
1268
|
-
/** Member permission actions */
|
|
1269
|
-
actions: string[];
|
|
1270
|
-
};
|
|
1271
|
-
export type GroupsFromResourceResponse = {
|
|
1272
|
-
/** Group ID */
|
|
1273
|
-
id: string;
|
|
1274
|
-
/** Group name */
|
|
1275
|
-
name: string;
|
|
1276
|
-
/** Group description */
|
|
1277
|
-
description?: string;
|
|
1278
|
-
/** Group slug */
|
|
1279
|
-
slug: string;
|
|
1280
|
-
/** Group member count */
|
|
1281
|
-
memberCount: number;
|
|
1282
|
-
/** Group permission actions */
|
|
1283
|
-
actions: string[];
|
|
1284
|
-
};
|
|
1285
|
-
export type ResourceTypeResponse = {
|
|
1286
|
-
id: string;
|
|
1287
|
-
name: string;
|
|
1288
|
-
slug: string;
|
|
1289
|
-
description: string;
|
|
1290
|
-
createdAt: string;
|
|
1291
|
-
};
|
|
1292
1465
|
export type ResourceDto = {
|
|
1293
1466
|
id: string;
|
|
1294
1467
|
name: string;
|
|
@@ -1350,6 +1523,8 @@ export type PageResponseAccountSsoResponse = {
|
|
|
1350
1523
|
page: number;
|
|
1351
1524
|
/** Length of current page items */
|
|
1352
1525
|
size: number;
|
|
1526
|
+
/** Total pages found */
|
|
1527
|
+
totalPages: number;
|
|
1353
1528
|
};
|
|
1354
1529
|
export type AccountDataAvailableResponse = {
|
|
1355
1530
|
/** Account data (name and slug) is available to be registered */
|
|
@@ -1438,9 +1613,9 @@ export declare function deleteAccountRole({ roleId }: {
|
|
|
1438
1613
|
roleId: string;
|
|
1439
1614
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1440
1615
|
/**
|
|
1441
|
-
* Get all Global
|
|
1616
|
+
* Get all Global Resources and Actions compared to role
|
|
1442
1617
|
*/
|
|
1443
|
-
export declare function
|
|
1618
|
+
export declare function getResourcesAndActionsWithStatus1({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1444
1619
|
roleId: string;
|
|
1445
1620
|
size?: any;
|
|
1446
1621
|
page?: any;
|
|
@@ -1452,7 +1627,7 @@ export declare function getResourcesAndActionsWithStatus({ roleId, size, page, s
|
|
|
1452
1627
|
filterValue?: string;
|
|
1453
1628
|
multiFilterMode?: string;
|
|
1454
1629
|
filterIn?: any;
|
|
1455
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1630
|
+
}, opts?: Oazapfts.RequestOpts): Promise<RoleResourceResponse[]>;
|
|
1456
1631
|
/**
|
|
1457
1632
|
* Update role with new resource and actions
|
|
1458
1633
|
*/
|
|
@@ -1563,6 +1738,23 @@ export declare function deleteGroupMapping({ id, attributeImporterId }: {
|
|
|
1563
1738
|
id: string;
|
|
1564
1739
|
attributeImporterId: string;
|
|
1565
1740
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1741
|
+
/**
|
|
1742
|
+
* Get Service Credentials
|
|
1743
|
+
*/
|
|
1744
|
+
export declare function getServiceCredentials({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, name, status }: {
|
|
1745
|
+
size?: any;
|
|
1746
|
+
page?: any;
|
|
1747
|
+
sort?: string;
|
|
1748
|
+
direction?: "ASC" | "DESC";
|
|
1749
|
+
search?: string;
|
|
1750
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
1751
|
+
filterBy?: string;
|
|
1752
|
+
filterValue?: string;
|
|
1753
|
+
multiFilterMode?: string;
|
|
1754
|
+
filterIn?: any;
|
|
1755
|
+
name?: string;
|
|
1756
|
+
status?: string;
|
|
1757
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseServiceCredentialResponse>;
|
|
1566
1758
|
/**
|
|
1567
1759
|
* Create Service Credential v2
|
|
1568
1760
|
*/
|
|
@@ -1572,7 +1764,7 @@ export declare function createServiceCredential({ serviceCredentialCreateRequest
|
|
|
1572
1764
|
/**
|
|
1573
1765
|
* Get Service Credentials
|
|
1574
1766
|
*/
|
|
1575
|
-
export declare function
|
|
1767
|
+
export declare function getServiceCredentials1({ name, status, page, size }: {
|
|
1576
1768
|
name?: string;
|
|
1577
1769
|
status?: string;
|
|
1578
1770
|
page?: string;
|
|
@@ -1605,7 +1797,7 @@ export declare function createScope({ iamCreateScopeRequest }: {
|
|
|
1605
1797
|
/**
|
|
1606
1798
|
* Get Roles
|
|
1607
1799
|
*/
|
|
1608
|
-
export declare function
|
|
1800
|
+
export declare function getRoles3({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1609
1801
|
size?: any;
|
|
1610
1802
|
page?: any;
|
|
1611
1803
|
sort?: string;
|
|
@@ -1626,7 +1818,7 @@ export declare function createAccountRole({ createAccountRoleRequest }: {
|
|
|
1626
1818
|
/**
|
|
1627
1819
|
* Get role members
|
|
1628
1820
|
*/
|
|
1629
|
-
export declare function
|
|
1821
|
+
export declare function getRoleMembers1({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1630
1822
|
roleId: string;
|
|
1631
1823
|
size?: any;
|
|
1632
1824
|
page?: any;
|
|
@@ -1649,7 +1841,7 @@ export declare function addRoleToMember({ roleId, addRoleToMemberRequest }: {
|
|
|
1649
1841
|
/**
|
|
1650
1842
|
* Get Groups from role
|
|
1651
1843
|
*/
|
|
1652
|
-
export declare function
|
|
1844
|
+
export declare function getRoleGroups1({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1653
1845
|
roleId: string;
|
|
1654
1846
|
size?: any;
|
|
1655
1847
|
page?: any;
|
|
@@ -1672,7 +1864,7 @@ export declare function bindRoleGroups({ roleId, roleGroupIdsRequest }: {
|
|
|
1672
1864
|
/**
|
|
1673
1865
|
* Get Resources
|
|
1674
1866
|
*/
|
|
1675
|
-
export declare function
|
|
1867
|
+
export declare function getResources1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1676
1868
|
size?: any;
|
|
1677
1869
|
page?: any;
|
|
1678
1870
|
sort?: string;
|
|
@@ -1693,7 +1885,7 @@ export declare function createResource({ createResourceRequest }: {
|
|
|
1693
1885
|
/**
|
|
1694
1886
|
* Get Account Members
|
|
1695
1887
|
*/
|
|
1696
|
-
export declare function
|
|
1888
|
+
export declare function getAccountMembers2({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1697
1889
|
size?: any;
|
|
1698
1890
|
page?: any;
|
|
1699
1891
|
sort?: string;
|
|
@@ -1714,7 +1906,7 @@ export declare function createUser({ createUserRequest }: {
|
|
|
1714
1906
|
/**
|
|
1715
1907
|
* Get member roles
|
|
1716
1908
|
*/
|
|
1717
|
-
export declare function
|
|
1909
|
+
export declare function getRoles4({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1718
1910
|
memberId: string;
|
|
1719
1911
|
size?: any;
|
|
1720
1912
|
page?: any;
|
|
@@ -1743,7 +1935,7 @@ export declare function resetOtp({ memberId }: {
|
|
|
1743
1935
|
/**
|
|
1744
1936
|
* Get member Groups
|
|
1745
1937
|
*/
|
|
1746
|
-
export declare function
|
|
1938
|
+
export declare function getMemberGroups1({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1747
1939
|
memberId: string;
|
|
1748
1940
|
size?: any;
|
|
1749
1941
|
page?: any;
|
|
@@ -1806,7 +1998,7 @@ export declare function createUserInvitation({ createUserInvitationRequest }: {
|
|
|
1806
1998
|
/**
|
|
1807
1999
|
* Get Groups
|
|
1808
2000
|
*/
|
|
1809
|
-
export declare function
|
|
2001
|
+
export declare function getGroups1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, includeDefaultGroup }: {
|
|
1810
2002
|
size?: any;
|
|
1811
2003
|
page?: any;
|
|
1812
2004
|
sort?: string;
|
|
@@ -1828,7 +2020,7 @@ export declare function save({ newGroupRequest }: {
|
|
|
1828
2020
|
/**
|
|
1829
2021
|
* Get Group members
|
|
1830
2022
|
*/
|
|
1831
|
-
export declare function
|
|
2023
|
+
export declare function getRoles5({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1832
2024
|
groupId: string;
|
|
1833
2025
|
size?: any;
|
|
1834
2026
|
page?: any;
|
|
@@ -1851,7 +2043,7 @@ export declare function bindRoles({ groupId, groupRoleIdsRequest }: {
|
|
|
1851
2043
|
/**
|
|
1852
2044
|
* Get Group Resources
|
|
1853
2045
|
*/
|
|
1854
|
-
export declare function
|
|
2046
|
+
export declare function getGroupResources1({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1855
2047
|
groupId: string;
|
|
1856
2048
|
size?: any;
|
|
1857
2049
|
page?: any;
|
|
@@ -1874,7 +2066,7 @@ export declare function addResourcesToGroup({ groupId, addResourcesToGroupReques
|
|
|
1874
2066
|
/**
|
|
1875
2067
|
* Get Group members
|
|
1876
2068
|
*/
|
|
1877
|
-
export declare function
|
|
2069
|
+
export declare function getMembers1({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
1878
2070
|
groupId: string;
|
|
1879
2071
|
size?: any;
|
|
1880
2072
|
page?: any;
|
|
@@ -2232,6 +2424,248 @@ export declare function updatePartnerAccountAdminData({ id, accountPartnerAdminD
|
|
|
2232
2424
|
id: string;
|
|
2233
2425
|
accountPartnerAdminDataUpdateRequest: AccountPartnerAdminDataUpdateRequest;
|
|
2234
2426
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
2427
|
+
/**
|
|
2428
|
+
* List service credential groups
|
|
2429
|
+
*/
|
|
2430
|
+
export declare function getServiceCredentialGroups({ id }: {
|
|
2431
|
+
id: string;
|
|
2432
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupReadResponse>;
|
|
2433
|
+
/**
|
|
2434
|
+
* Get Roles
|
|
2435
|
+
*/
|
|
2436
|
+
export declare function getRoles({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2437
|
+
size?: any;
|
|
2438
|
+
page?: any;
|
|
2439
|
+
sort?: string;
|
|
2440
|
+
direction?: "ASC" | "DESC";
|
|
2441
|
+
search?: string;
|
|
2442
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2443
|
+
filterBy?: string;
|
|
2444
|
+
filterValue?: string;
|
|
2445
|
+
multiFilterMode?: string;
|
|
2446
|
+
filterIn?: any;
|
|
2447
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleResponse>;
|
|
2448
|
+
/**
|
|
2449
|
+
* Get all Global Resources and Actions compared to role
|
|
2450
|
+
*/
|
|
2451
|
+
export declare function getResourcesAndActionsWithStatus({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2452
|
+
roleId: string;
|
|
2453
|
+
size?: any;
|
|
2454
|
+
page?: any;
|
|
2455
|
+
sort?: string;
|
|
2456
|
+
direction?: "ASC" | "DESC";
|
|
2457
|
+
search?: string;
|
|
2458
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2459
|
+
filterBy?: string;
|
|
2460
|
+
filterValue?: string;
|
|
2461
|
+
multiFilterMode?: string;
|
|
2462
|
+
filterIn?: any;
|
|
2463
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleResourceResponse>;
|
|
2464
|
+
/**
|
|
2465
|
+
* Get role members
|
|
2466
|
+
*/
|
|
2467
|
+
export declare function getRoleMembers({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2468
|
+
roleId: string;
|
|
2469
|
+
size?: any;
|
|
2470
|
+
page?: any;
|
|
2471
|
+
sort?: string;
|
|
2472
|
+
direction?: "ASC" | "DESC";
|
|
2473
|
+
search?: string;
|
|
2474
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2475
|
+
filterBy?: string;
|
|
2476
|
+
filterValue?: string;
|
|
2477
|
+
multiFilterMode?: string;
|
|
2478
|
+
filterIn?: any;
|
|
2479
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleMemberResponse>;
|
|
2480
|
+
/**
|
|
2481
|
+
* Get Groups from role
|
|
2482
|
+
*/
|
|
2483
|
+
export declare function getRoleGroups({ roleId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2484
|
+
roleId: string;
|
|
2485
|
+
size?: any;
|
|
2486
|
+
page?: any;
|
|
2487
|
+
sort?: string;
|
|
2488
|
+
direction?: "ASC" | "DESC";
|
|
2489
|
+
search?: string;
|
|
2490
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2491
|
+
filterBy?: string;
|
|
2492
|
+
filterValue?: string;
|
|
2493
|
+
multiFilterMode?: string;
|
|
2494
|
+
filterIn?: any;
|
|
2495
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleGroupResponse>;
|
|
2496
|
+
/**
|
|
2497
|
+
* Get Resources
|
|
2498
|
+
*/
|
|
2499
|
+
export declare function getResources({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2500
|
+
size?: any;
|
|
2501
|
+
page?: any;
|
|
2502
|
+
sort?: string;
|
|
2503
|
+
direction?: "ASC" | "DESC";
|
|
2504
|
+
search?: string;
|
|
2505
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2506
|
+
filterBy?: string;
|
|
2507
|
+
filterValue?: string;
|
|
2508
|
+
multiFilterMode?: string;
|
|
2509
|
+
filterIn?: any;
|
|
2510
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseResourceResponse>;
|
|
2511
|
+
/**
|
|
2512
|
+
* Get Members from Resource
|
|
2513
|
+
*/
|
|
2514
|
+
export declare function getResourceMembers({ resourceId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2515
|
+
resourceId: string;
|
|
2516
|
+
size?: any;
|
|
2517
|
+
page?: any;
|
|
2518
|
+
sort?: string;
|
|
2519
|
+
direction?: "ASC" | "DESC";
|
|
2520
|
+
search?: string;
|
|
2521
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2522
|
+
filterBy?: string;
|
|
2523
|
+
filterValue?: string;
|
|
2524
|
+
multiFilterMode?: string;
|
|
2525
|
+
filterIn?: any;
|
|
2526
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseMembersFromResourceResponse>;
|
|
2527
|
+
/**
|
|
2528
|
+
* Get Groups from Resource
|
|
2529
|
+
*/
|
|
2530
|
+
export declare function getResourceGroups({ resourceId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2531
|
+
resourceId: string;
|
|
2532
|
+
size?: any;
|
|
2533
|
+
page?: any;
|
|
2534
|
+
sort?: string;
|
|
2535
|
+
direction?: "ASC" | "DESC";
|
|
2536
|
+
search?: string;
|
|
2537
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2538
|
+
filterBy?: string;
|
|
2539
|
+
filterValue?: string;
|
|
2540
|
+
multiFilterMode?: string;
|
|
2541
|
+
filterIn?: any;
|
|
2542
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupsFromResourceResponse>;
|
|
2543
|
+
/**
|
|
2544
|
+
* Get Resource Types
|
|
2545
|
+
*/
|
|
2546
|
+
export declare function getResourceTypes({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2547
|
+
size?: any;
|
|
2548
|
+
page?: any;
|
|
2549
|
+
sort?: string;
|
|
2550
|
+
direction?: "ASC" | "DESC";
|
|
2551
|
+
search?: string;
|
|
2552
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2553
|
+
filterBy?: string;
|
|
2554
|
+
filterValue?: string;
|
|
2555
|
+
multiFilterMode?: string;
|
|
2556
|
+
filterIn?: any;
|
|
2557
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseResourceTypeResponse>;
|
|
2558
|
+
/**
|
|
2559
|
+
* Get Account Members
|
|
2560
|
+
*/
|
|
2561
|
+
export declare function getAccountMembers({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2562
|
+
size?: any;
|
|
2563
|
+
page?: any;
|
|
2564
|
+
sort?: string;
|
|
2565
|
+
direction?: "ASC" | "DESC";
|
|
2566
|
+
search?: string;
|
|
2567
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2568
|
+
filterBy?: string;
|
|
2569
|
+
filterValue?: string;
|
|
2570
|
+
multiFilterMode?: string;
|
|
2571
|
+
filterIn?: any;
|
|
2572
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseAccountMemberResponse>;
|
|
2573
|
+
/**
|
|
2574
|
+
* Get member roles
|
|
2575
|
+
*/
|
|
2576
|
+
export declare function getRoles1({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2577
|
+
memberId: string;
|
|
2578
|
+
size?: any;
|
|
2579
|
+
page?: any;
|
|
2580
|
+
sort?: string;
|
|
2581
|
+
direction?: "ASC" | "DESC";
|
|
2582
|
+
search?: string;
|
|
2583
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2584
|
+
filterBy?: string;
|
|
2585
|
+
filterValue?: string;
|
|
2586
|
+
multiFilterMode?: string;
|
|
2587
|
+
filterIn?: any;
|
|
2588
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseReadMemberRoleResponse>;
|
|
2589
|
+
/**
|
|
2590
|
+
* Get member Groups
|
|
2591
|
+
*/
|
|
2592
|
+
export declare function getMemberGroups({ memberId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2593
|
+
memberId: string;
|
|
2594
|
+
size?: any;
|
|
2595
|
+
page?: any;
|
|
2596
|
+
sort?: string;
|
|
2597
|
+
direction?: "ASC" | "DESC";
|
|
2598
|
+
search?: string;
|
|
2599
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2600
|
+
filterBy?: string;
|
|
2601
|
+
filterValue?: string;
|
|
2602
|
+
multiFilterMode?: string;
|
|
2603
|
+
filterIn?: any;
|
|
2604
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupReadResponse>;
|
|
2605
|
+
/**
|
|
2606
|
+
* Get Groups
|
|
2607
|
+
*/
|
|
2608
|
+
export declare function getGroups({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn, includeDefaultGroup }: {
|
|
2609
|
+
size?: any;
|
|
2610
|
+
page?: any;
|
|
2611
|
+
sort?: string;
|
|
2612
|
+
direction?: "ASC" | "DESC";
|
|
2613
|
+
search?: string;
|
|
2614
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2615
|
+
filterBy?: string;
|
|
2616
|
+
filterValue?: string;
|
|
2617
|
+
multiFilterMode?: string;
|
|
2618
|
+
filterIn?: any;
|
|
2619
|
+
includeDefaultGroup?: boolean;
|
|
2620
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseGroupReadResponse>;
|
|
2621
|
+
/**
|
|
2622
|
+
* Get Group roles
|
|
2623
|
+
*/
|
|
2624
|
+
export declare function getRoles2({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2625
|
+
groupId: string;
|
|
2626
|
+
size?: any;
|
|
2627
|
+
page?: any;
|
|
2628
|
+
sort?: string;
|
|
2629
|
+
direction?: "ASC" | "DESC";
|
|
2630
|
+
search?: string;
|
|
2631
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2632
|
+
filterBy?: string;
|
|
2633
|
+
filterValue?: string;
|
|
2634
|
+
multiFilterMode?: string;
|
|
2635
|
+
filterIn?: any;
|
|
2636
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseRoleResponse>;
|
|
2637
|
+
/**
|
|
2638
|
+
* Get Group Resources
|
|
2639
|
+
*/
|
|
2640
|
+
export declare function getGroupResources({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2641
|
+
groupId: string;
|
|
2642
|
+
size?: any;
|
|
2643
|
+
page?: any;
|
|
2644
|
+
sort?: string;
|
|
2645
|
+
direction?: "ASC" | "DESC";
|
|
2646
|
+
search?: string;
|
|
2647
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2648
|
+
filterBy?: string;
|
|
2649
|
+
filterValue?: string;
|
|
2650
|
+
multiFilterMode?: string;
|
|
2651
|
+
filterIn?: any;
|
|
2652
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseResourceResponse>;
|
|
2653
|
+
/**
|
|
2654
|
+
* Get Group members
|
|
2655
|
+
*/
|
|
2656
|
+
export declare function getMembers({ groupId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2657
|
+
groupId: string;
|
|
2658
|
+
size?: any;
|
|
2659
|
+
page?: any;
|
|
2660
|
+
sort?: string;
|
|
2661
|
+
direction?: "ASC" | "DESC";
|
|
2662
|
+
search?: string;
|
|
2663
|
+
filterMode?: "MATCH" | "CONTAINS" | "IN";
|
|
2664
|
+
filterBy?: string;
|
|
2665
|
+
filterValue?: string;
|
|
2666
|
+
multiFilterMode?: string;
|
|
2667
|
+
filterIn?: any;
|
|
2668
|
+
}, opts?: Oazapfts.RequestOpts): Promise<PageResponseReadGroupMembersResponse>;
|
|
2235
2669
|
/**
|
|
2236
2670
|
* Verify User repository credential configuration status.
|
|
2237
2671
|
*/
|
|
@@ -2257,7 +2691,7 @@ export declare function getAccount({ id }: {
|
|
|
2257
2691
|
/**
|
|
2258
2692
|
* Get Account Members
|
|
2259
2693
|
*/
|
|
2260
|
-
export declare function
|
|
2694
|
+
export declare function getAccountMembers1({ id, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2261
2695
|
id: string;
|
|
2262
2696
|
size?: any;
|
|
2263
2697
|
page?: any;
|
|
@@ -2285,7 +2719,7 @@ export declare function getServiceCredentialPermissions({ id }: {
|
|
|
2285
2719
|
/**
|
|
2286
2720
|
* List service credential groups
|
|
2287
2721
|
*/
|
|
2288
|
-
export declare function
|
|
2722
|
+
export declare function getServiceCredentialGroups1({ id }: {
|
|
2289
2723
|
id: string;
|
|
2290
2724
|
}, opts?: Oazapfts.RequestOpts): Promise<GroupReadResponse[]>;
|
|
2291
2725
|
/**
|
|
@@ -2315,7 +2749,7 @@ export declare function getPermissionsWithStatus({ roleId, size, page, sort, dir
|
|
|
2315
2749
|
/**
|
|
2316
2750
|
* Get Members from Resource
|
|
2317
2751
|
*/
|
|
2318
|
-
export declare function
|
|
2752
|
+
export declare function getResourceMembers1({ resourceId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2319
2753
|
resourceId: string;
|
|
2320
2754
|
size?: any;
|
|
2321
2755
|
page?: any;
|
|
@@ -2331,7 +2765,7 @@ export declare function getResourceMembers({ resourceId, size, page, sort, direc
|
|
|
2331
2765
|
/**
|
|
2332
2766
|
* Get Groups from Resource
|
|
2333
2767
|
*/
|
|
2334
|
-
export declare function
|
|
2768
|
+
export declare function getResourceGroups1({ resourceId, size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2335
2769
|
resourceId: string;
|
|
2336
2770
|
size?: any;
|
|
2337
2771
|
page?: any;
|
|
@@ -2347,7 +2781,7 @@ export declare function getResourceGroups({ resourceId, size, page, sort, direct
|
|
|
2347
2781
|
/**
|
|
2348
2782
|
* Get Resource Types
|
|
2349
2783
|
*/
|
|
2350
|
-
export declare function
|
|
2784
|
+
export declare function getResourceTypes1({ size, page, sort, direction, search, filterMode, filterBy, filterValue, multiFilterMode, filterIn }: {
|
|
2351
2785
|
size?: any;
|
|
2352
2786
|
page?: any;
|
|
2353
2787
|
sort?: string;
|
|
@@ -2371,7 +2805,7 @@ export declare function getAccess({ resourceType, resource, action, attribute }:
|
|
|
2371
2805
|
/**
|
|
2372
2806
|
* Get Resources Members
|
|
2373
2807
|
*/
|
|
2374
|
-
export declare function
|
|
2808
|
+
export declare function getResources2({ memberId }: {
|
|
2375
2809
|
memberId: string;
|
|
2376
2810
|
}, opts?: Oazapfts.RequestOpts): Promise<ResourceDto[]>;
|
|
2377
2811
|
/**
|