@adminide-stack/core 9.2.1-alpha.3 → 9.2.1-alpha.35
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/lib/core/configurations/configuration.d.ts +1 -2
- package/lib/core/configurations/configuration.js +8 -8
- package/lib/core/configurations/configuration.js.map +1 -1
- package/lib/core/configurations/models/ConfigurationModel.js +1 -1
- package/lib/core/configurations/models/ConfigurationModel.js.map +1 -1
- package/lib/core/organization/configuration.d.ts +1 -1
- package/lib/core/organization/configuration.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/interfaces/apollo-context.d.ts +1 -0
- package/lib/interfaces/contex-key-service.d.ts +2 -2
- package/lib/interfaces/generated/generated-models.d.ts +334 -255
- package/lib/interfaces/generated/generated-models.js +559 -614
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/interfaces/organization-key-context.d.ts +12 -0
- package/lib/interfaces/preferences-service.d.ts +5 -3
- package/lib/interfaces/workbench-exports.d.ts +1 -1
- package/lib/services/abstract-configuration.js +2 -1
- package/lib/services/abstract-configuration.js.map +1 -1
- package/lib/services/abstract-organization-context-service.js.map +1 -1
- package/lib/utils/cdecodeUri.d.ts +21 -29
- package/lib/utils/cdecodeUri.js +97 -19
- package/lib/utils/cdecodeUri.js.map +1 -1
- package/lib/utils/flatten-utils.d.ts +1 -0
- package/lib/utils/flatten-utils.js +19 -1
- package/lib/utils/flatten-utils.js.map +1 -1
- package/lib/utils/generate-uri.d.ts +5 -3
- package/lib/utils/generate-uri.js +22 -2
- package/lib/utils/generate-uri.js.map +1 -1
- package/lib/utils/generate-uri.test.d.ts +1 -0
- package/lib/utils/generated-settings-id.js +2 -2
- package/lib/utils/generated-settings-id.js.map +1 -1
- package/lib/utils/getLogger.d.ts +1 -0
- package/lib/utils/getLogger.js +8 -0
- package/lib/utils/getLogger.js.map +1 -0
- package/lib/utils/index.d.ts +4 -1
- package/lib/utils/preferenceUri.d.ts +18 -0
- package/lib/utils/preferenceUri.js +107 -0
- package/lib/utils/preferenceUri.js.map +1 -0
- package/lib/utils/preferenceUri.test.d.ts +1 -0
- package/lib/utils/resourceUriConversion.js +68 -0
- package/lib/utils/resourceUriConversion.js.map +1 -0
- package/lib/utils/resourceUriConversion.test.d.ts +1 -0
- package/lib/utils/reviveUri.d.ts +2 -0
- package/lib/utils/{uri.js → reviveUri.js} +2 -4
- package/lib/utils/reviveUri.js.map +1 -0
- package/package.json +4 -4
- package/lib/utils/uri.js.map +0 -1
- /package/lib/utils/{uri.d.ts → resourceUriConversion.d.ts} +0 -0
@@ -102,6 +102,7 @@ var IClientCacheTypeNames;
|
|
102
102
|
IClientCacheTypeNames["OrganizationResourceConfiguration"] = "OrganizationResourceConfiguration";
|
103
103
|
IClientCacheTypeNames["OrganizationResourceData"] = "OrganizationResourceData";
|
104
104
|
IClientCacheTypeNames["OrganizationRole"] = "OrganizationRole";
|
105
|
+
IClientCacheTypeNames["PageResourcePermission"] = "PageResourcePermission";
|
105
106
|
IClientCacheTypeNames["PolicyConfiguration"] = "PolicyConfiguration";
|
106
107
|
IClientCacheTypeNames["ResourcePolicy"] = "ResourcePolicy";
|
107
108
|
IClientCacheTypeNames["ResourceRole"] = "ResourceRole";
|
@@ -117,6 +118,7 @@ var IClientContainerService;
|
|
117
118
|
IClientContainerService["ApolloErrorHandler"] = "ApolloErrorHandler";
|
118
119
|
IClientContainerService["Auth0Authentication"] = "Auth0Authentication";
|
119
120
|
IClientContainerService["IConfigurationFileService"] = "IConfigurationFileService";
|
121
|
+
IClientContainerService["IConfigurationPermissionService"] = "IConfigurationPermissionService";
|
120
122
|
IClientContainerService["IConfigurationPolicyService"] = "IConfigurationPolicyService";
|
121
123
|
IClientContainerService["IConfigurationService"] = "IConfigurationService";
|
122
124
|
IClientContainerService["IContextKeyService"] = "IContextKeyService";
|
@@ -124,10 +126,9 @@ var IClientContainerService;
|
|
124
126
|
IClientContainerService["ILifecycleService"] = "ILifecycleService";
|
125
127
|
IClientContainerService["IOrganizationContext"] = "IOrganizationContext";
|
126
128
|
IClientContainerService["IOrganizationContextService"] = "IOrganizationContextService";
|
127
|
-
IClientContainerService["IOrganizationKeyContextService"] = "IOrganizationKeyContextService";
|
128
129
|
IClientContainerService["IPermissionService"] = "IPermissionService";
|
129
130
|
IClientContainerService["IPreferenceService"] = "IPreferenceService";
|
130
|
-
IClientContainerService["
|
131
|
+
IClientContainerService["IUserOrgKeyContextService"] = "IUserOrgKeyContextService";
|
131
132
|
})(IClientContainerService || (IClientContainerService = {}));
|
132
133
|
var IClientTypes;
|
133
134
|
(function (IClientTypes) {
|
@@ -157,6 +158,7 @@ var IConfigFragmentName;
|
|
157
158
|
IConfigFragmentName["ContributionRoles"] = "contributionRoles";
|
158
159
|
/** Organization Members Document with role value */
|
159
160
|
IConfigFragmentName["OrgMembers"] = "orgMembers";
|
161
|
+
IConfigFragmentName["Permissions"] = "permissions";
|
160
162
|
IConfigFragmentName["Policies"] = "policies";
|
161
163
|
IConfigFragmentName["Resources"] = "resources";
|
162
164
|
IConfigFragmentName["Roles"] = "roles";
|
@@ -166,11 +168,11 @@ var IConfigFragmentName;
|
|
166
168
|
})(IConfigFragmentName || (IConfigFragmentName = {}));
|
167
169
|
var IConfigurationContributionNames;
|
168
170
|
(function (IConfigurationContributionNames) {
|
169
|
-
IConfigurationContributionNames["DefaultPermissions"] = "defaultPermissions";
|
170
|
-
IConfigurationContributionNames["DefaultPolicies"] = "defaultPolicies";
|
171
|
-
IConfigurationContributionNames["DefaultSettings"] = "defaultSettings";
|
172
171
|
/** Integration settings */
|
173
172
|
IConfigurationContributionNames["Integration"] = "integration";
|
173
|
+
IConfigurationContributionNames["Permissions"] = "permissions";
|
174
|
+
IConfigurationContributionNames["Policies"] = "policies";
|
175
|
+
IConfigurationContributionNames["Settings"] = "settings";
|
174
176
|
})(IConfigurationContributionNames || (IConfigurationContributionNames = {}));
|
175
177
|
var IConfigurationServiceAction;
|
176
178
|
(function (IConfigurationServiceAction) {
|
@@ -527,12 +529,6 @@ const AllContextFragmentDoc = {
|
|
527
529
|
selectionSet: {
|
528
530
|
kind: 'SelectionSet',
|
529
531
|
selections: [{
|
530
|
-
kind: 'Field',
|
531
|
-
name: {
|
532
|
-
kind: 'Name',
|
533
|
-
value: 'teamResource'
|
534
|
-
}
|
535
|
-
}, {
|
536
532
|
kind: 'Field',
|
537
533
|
name: {
|
538
534
|
kind: 'Name',
|
@@ -1310,17 +1306,23 @@ const OrgResourceContextFragmentDoc = {
|
|
1310
1306
|
kind: 'Name',
|
1311
1307
|
value: 'resourceId'
|
1312
1308
|
}
|
1309
|
+
}, {
|
1310
|
+
kind: 'Field',
|
1311
|
+
name: {
|
1312
|
+
kind: 'Name',
|
1313
|
+
value: 'cdecodeUri'
|
1314
|
+
}
|
1313
1315
|
}]
|
1314
1316
|
}
|
1315
1317
|
}]
|
1316
1318
|
};
|
1317
|
-
const
|
1319
|
+
const UserOrgContextFragmentDoc = {
|
1318
1320
|
kind: 'Document',
|
1319
1321
|
definitions: [{
|
1320
1322
|
kind: 'FragmentDefinition',
|
1321
1323
|
name: {
|
1322
1324
|
kind: 'Name',
|
1323
|
-
value: '
|
1325
|
+
value: 'UserOrgContext'
|
1324
1326
|
},
|
1325
1327
|
typeCondition: {
|
1326
1328
|
kind: 'NamedType',
|
@@ -1343,6 +1345,12 @@ const OrgUserIdContextFragmentDoc = {
|
|
1343
1345
|
kind: 'Name',
|
1344
1346
|
value: 'orgUri'
|
1345
1347
|
}
|
1348
|
+
}, {
|
1349
|
+
kind: 'Field',
|
1350
|
+
name: {
|
1351
|
+
kind: 'Name',
|
1352
|
+
value: 'cdecodeUri'
|
1353
|
+
}
|
1346
1354
|
}, {
|
1347
1355
|
kind: 'Field',
|
1348
1356
|
name: {
|
@@ -1353,19 +1361,25 @@ const OrgUserIdContextFragmentDoc = {
|
|
1353
1361
|
kind: 'Field',
|
1354
1362
|
name: {
|
1355
1363
|
kind: 'Name',
|
1356
|
-
value: '
|
1364
|
+
value: 'projectId'
|
1365
|
+
}
|
1366
|
+
}, {
|
1367
|
+
kind: 'Field',
|
1368
|
+
name: {
|
1369
|
+
kind: 'Name',
|
1370
|
+
value: 'projectSlug'
|
1357
1371
|
}
|
1358
1372
|
}]
|
1359
1373
|
}
|
1360
1374
|
}]
|
1361
1375
|
};
|
1362
|
-
const
|
1376
|
+
const OrgUserIdContextFragmentDoc = {
|
1363
1377
|
kind: 'Document',
|
1364
1378
|
definitions: [{
|
1365
1379
|
kind: 'FragmentDefinition',
|
1366
1380
|
name: {
|
1367
1381
|
kind: 'Name',
|
1368
|
-
value: '
|
1382
|
+
value: 'OrgUserIdContext'
|
1369
1383
|
},
|
1370
1384
|
typeCondition: {
|
1371
1385
|
kind: 'NamedType',
|
@@ -1382,17 +1396,35 @@ const OrgNameInContextFragmentDoc = {
|
|
1382
1396
|
kind: 'Name',
|
1383
1397
|
value: 'orgName'
|
1384
1398
|
}
|
1399
|
+
}, {
|
1400
|
+
kind: 'Field',
|
1401
|
+
name: {
|
1402
|
+
kind: 'Name',
|
1403
|
+
value: 'orgUri'
|
1404
|
+
}
|
1405
|
+
}, {
|
1406
|
+
kind: 'Field',
|
1407
|
+
name: {
|
1408
|
+
kind: 'Name',
|
1409
|
+
value: 'cdecodeUri'
|
1410
|
+
}
|
1411
|
+
}, {
|
1412
|
+
kind: 'Field',
|
1413
|
+
name: {
|
1414
|
+
kind: 'Name',
|
1415
|
+
value: 'userId'
|
1416
|
+
}
|
1385
1417
|
}]
|
1386
1418
|
}
|
1387
1419
|
}]
|
1388
1420
|
};
|
1389
|
-
const
|
1421
|
+
const OrgNameInContextFragmentDoc = {
|
1390
1422
|
kind: 'Document',
|
1391
1423
|
definitions: [{
|
1392
1424
|
kind: 'FragmentDefinition',
|
1393
1425
|
name: {
|
1394
1426
|
kind: 'Name',
|
1395
|
-
value: '
|
1427
|
+
value: 'OrgNameInContext'
|
1396
1428
|
},
|
1397
1429
|
typeCondition: {
|
1398
1430
|
kind: 'NamedType',
|
@@ -1409,40 +1441,28 @@ const OrgContextFragmentDoc = {
|
|
1409
1441
|
kind: 'Name',
|
1410
1442
|
value: 'orgName'
|
1411
1443
|
}
|
1412
|
-
}, {
|
1413
|
-
kind: 'Field',
|
1414
|
-
name: {
|
1415
|
-
kind: 'Name',
|
1416
|
-
value: 'orgUri'
|
1417
|
-
}
|
1418
1444
|
}]
|
1419
1445
|
}
|
1420
1446
|
}]
|
1421
1447
|
};
|
1422
|
-
const
|
1448
|
+
const OrgContextFragmentDoc = {
|
1423
1449
|
kind: 'Document',
|
1424
1450
|
definitions: [{
|
1425
1451
|
kind: 'FragmentDefinition',
|
1426
1452
|
name: {
|
1427
1453
|
kind: 'Name',
|
1428
|
-
value: '
|
1454
|
+
value: 'OrgContext'
|
1429
1455
|
},
|
1430
1456
|
typeCondition: {
|
1431
1457
|
kind: 'NamedType',
|
1432
1458
|
name: {
|
1433
1459
|
kind: 'Name',
|
1434
|
-
value: '
|
1460
|
+
value: 'Context'
|
1435
1461
|
}
|
1436
1462
|
},
|
1437
1463
|
selectionSet: {
|
1438
1464
|
kind: 'SelectionSet',
|
1439
1465
|
selections: [{
|
1440
|
-
kind: 'Field',
|
1441
|
-
name: {
|
1442
|
-
kind: 'Name',
|
1443
|
-
value: 'role'
|
1444
|
-
}
|
1445
|
-
}, {
|
1446
1466
|
kind: 'Field',
|
1447
1467
|
name: {
|
1448
1468
|
kind: 'Name',
|
@@ -1452,25 +1472,25 @@ const OrganizationUserFragmentDoc = {
|
|
1452
1472
|
kind: 'Field',
|
1453
1473
|
name: {
|
1454
1474
|
kind: 'Name',
|
1455
|
-
value: '
|
1475
|
+
value: 'orgUri'
|
1456
1476
|
}
|
1457
1477
|
}]
|
1458
1478
|
}
|
1459
1479
|
}]
|
1460
1480
|
};
|
1461
|
-
const
|
1481
|
+
const OrganizationUserFragmentDoc = {
|
1462
1482
|
kind: 'Document',
|
1463
1483
|
definitions: [{
|
1464
1484
|
kind: 'FragmentDefinition',
|
1465
1485
|
name: {
|
1466
1486
|
kind: 'Name',
|
1467
|
-
value: '
|
1487
|
+
value: 'OrganizationUser'
|
1468
1488
|
},
|
1469
1489
|
typeCondition: {
|
1470
1490
|
kind: 'NamedType',
|
1471
1491
|
name: {
|
1472
1492
|
kind: 'Name',
|
1473
|
-
value: '
|
1493
|
+
value: 'IOrgUser'
|
1474
1494
|
}
|
1475
1495
|
},
|
1476
1496
|
selectionSet: {
|
@@ -1485,7 +1505,7 @@ const ResourceUserRoleFragmentDoc = {
|
|
1485
1505
|
kind: 'Field',
|
1486
1506
|
name: {
|
1487
1507
|
kind: 'Name',
|
1488
|
-
value: '
|
1508
|
+
value: 'orgName'
|
1489
1509
|
}
|
1490
1510
|
}, {
|
1491
1511
|
kind: 'Field',
|
@@ -1493,29 +1513,23 @@ const ResourceUserRoleFragmentDoc = {
|
|
1493
1513
|
kind: 'Name',
|
1494
1514
|
value: 'isSelf'
|
1495
1515
|
}
|
1496
|
-
}, {
|
1497
|
-
kind: 'Field',
|
1498
|
-
name: {
|
1499
|
-
kind: 'Name',
|
1500
|
-
value: 'orgName'
|
1501
|
-
}
|
1502
1516
|
}]
|
1503
1517
|
}
|
1504
1518
|
}]
|
1505
1519
|
};
|
1506
|
-
const
|
1520
|
+
const ResourceUserRoleFragmentDoc = {
|
1507
1521
|
kind: 'Document',
|
1508
1522
|
definitions: [{
|
1509
1523
|
kind: 'FragmentDefinition',
|
1510
1524
|
name: {
|
1511
1525
|
kind: 'Name',
|
1512
|
-
value: '
|
1526
|
+
value: 'ResourceUserRole'
|
1513
1527
|
},
|
1514
1528
|
typeCondition: {
|
1515
1529
|
kind: 'NamedType',
|
1516
1530
|
name: {
|
1517
1531
|
kind: 'Name',
|
1518
|
-
value: '
|
1532
|
+
value: 'ResourceUser'
|
1519
1533
|
}
|
1520
1534
|
},
|
1521
1535
|
selectionSet: {
|
@@ -1524,85 +1538,43 @@ const RoleTargetFragmentDoc = {
|
|
1524
1538
|
kind: 'Field',
|
1525
1539
|
name: {
|
1526
1540
|
kind: 'Name',
|
1527
|
-
value: '
|
1541
|
+
value: 'role'
|
1528
1542
|
}
|
1529
|
-
}
|
1530
|
-
}
|
1531
|
-
}]
|
1532
|
-
};
|
1533
|
-
const TeamNameInContextFragmentDoc = {
|
1534
|
-
kind: 'Document',
|
1535
|
-
definitions: [{
|
1536
|
-
kind: 'FragmentDefinition',
|
1537
|
-
name: {
|
1538
|
-
kind: 'Name',
|
1539
|
-
value: 'TeamNameInContext'
|
1540
|
-
},
|
1541
|
-
typeCondition: {
|
1542
|
-
kind: 'NamedType',
|
1543
|
-
name: {
|
1544
|
-
kind: 'Name',
|
1545
|
-
value: 'Context'
|
1546
|
-
}
|
1547
|
-
},
|
1548
|
-
selectionSet: {
|
1549
|
-
kind: 'SelectionSet',
|
1550
|
-
selections: [{
|
1543
|
+
}, {
|
1551
1544
|
kind: 'Field',
|
1552
1545
|
name: {
|
1553
1546
|
kind: 'Name',
|
1554
|
-
value: '
|
1547
|
+
value: 'name'
|
1555
1548
|
}
|
1556
|
-
}
|
1557
|
-
}
|
1558
|
-
}]
|
1559
|
-
};
|
1560
|
-
const TeamContextFragmentDoc = {
|
1561
|
-
kind: 'Document',
|
1562
|
-
definitions: [{
|
1563
|
-
kind: 'FragmentDefinition',
|
1564
|
-
name: {
|
1565
|
-
kind: 'Name',
|
1566
|
-
value: 'TeamContext'
|
1567
|
-
},
|
1568
|
-
typeCondition: {
|
1569
|
-
kind: 'NamedType',
|
1570
|
-
name: {
|
1571
|
-
kind: 'Name',
|
1572
|
-
value: 'Context'
|
1573
|
-
}
|
1574
|
-
},
|
1575
|
-
selectionSet: {
|
1576
|
-
kind: 'SelectionSet',
|
1577
|
-
selections: [{
|
1549
|
+
}, {
|
1578
1550
|
kind: 'Field',
|
1579
1551
|
name: {
|
1580
1552
|
kind: 'Name',
|
1581
|
-
value: '
|
1553
|
+
value: 'isSelf'
|
1582
1554
|
}
|
1583
1555
|
}, {
|
1584
1556
|
kind: 'Field',
|
1585
1557
|
name: {
|
1586
1558
|
kind: 'Name',
|
1587
|
-
value: '
|
1559
|
+
value: 'orgName'
|
1588
1560
|
}
|
1589
1561
|
}]
|
1590
1562
|
}
|
1591
1563
|
}]
|
1592
1564
|
};
|
1593
|
-
const
|
1565
|
+
const RoleTargetFragmentDoc = {
|
1594
1566
|
kind: 'Document',
|
1595
1567
|
definitions: [{
|
1596
1568
|
kind: 'FragmentDefinition',
|
1597
1569
|
name: {
|
1598
1570
|
kind: 'Name',
|
1599
|
-
value: '
|
1571
|
+
value: 'RoleTarget'
|
1600
1572
|
},
|
1601
1573
|
typeCondition: {
|
1602
1574
|
kind: 'NamedType',
|
1603
1575
|
name: {
|
1604
1576
|
kind: 'Name',
|
1605
|
-
value: '
|
1577
|
+
value: 'ContributionRoles'
|
1606
1578
|
}
|
1607
1579
|
},
|
1608
1580
|
selectionSet: {
|
@@ -1611,13 +1583,7 @@ const TeamWithOrgOnContextFragmentDoc = {
|
|
1611
1583
|
kind: 'Field',
|
1612
1584
|
name: {
|
1613
1585
|
kind: 'Name',
|
1614
|
-
value: '
|
1615
|
-
}
|
1616
|
-
}, {
|
1617
|
-
kind: 'Field',
|
1618
|
-
name: {
|
1619
|
-
kind: 'Name',
|
1620
|
-
value: 'teamName'
|
1586
|
+
value: 'target'
|
1621
1587
|
}
|
1622
1588
|
}]
|
1623
1589
|
}
|
@@ -6507,7 +6473,7 @@ const GetOrganizationTeamsDocument = {
|
|
6507
6473
|
kind: 'Field',
|
6508
6474
|
name: {
|
6509
6475
|
kind: 'Name',
|
6510
|
-
value: '
|
6476
|
+
value: 'members'
|
6511
6477
|
},
|
6512
6478
|
selectionSet: {
|
6513
6479
|
kind: 'SelectionSet',
|
@@ -6711,7 +6677,7 @@ const GetTeamDocument = {
|
|
6711
6677
|
kind: 'Field',
|
6712
6678
|
name: {
|
6713
6679
|
kind: 'Name',
|
6714
|
-
value: '
|
6680
|
+
value: 'members'
|
6715
6681
|
},
|
6716
6682
|
selectionSet: {
|
6717
6683
|
kind: 'SelectionSet',
|
@@ -6934,7 +6900,7 @@ const GetTeamByNameDocument = {
|
|
6934
6900
|
kind: 'Field',
|
6935
6901
|
name: {
|
6936
6902
|
kind: 'Name',
|
6937
|
-
value: '
|
6903
|
+
value: 'members'
|
6938
6904
|
},
|
6939
6905
|
selectionSet: {
|
6940
6906
|
kind: 'SelectionSet',
|
@@ -8335,7 +8301,7 @@ const TeamDocument = {
|
|
8335
8301
|
kind: 'Field',
|
8336
8302
|
name: {
|
8337
8303
|
kind: 'Name',
|
8338
|
-
value: '
|
8304
|
+
value: 'members'
|
8339
8305
|
},
|
8340
8306
|
selectionSet: {
|
8341
8307
|
kind: 'SelectionSet',
|
@@ -8491,7 +8457,7 @@ const TeamsDocument = {
|
|
8491
8457
|
kind: 'Field',
|
8492
8458
|
name: {
|
8493
8459
|
kind: 'Name',
|
8494
|
-
value: '
|
8460
|
+
value: 'members'
|
8495
8461
|
},
|
8496
8462
|
selectionSet: {
|
8497
8463
|
kind: 'SelectionSet',
|
@@ -9919,200 +9885,81 @@ function useInitializeOrgNameInContextMutation(baseOptions) {
|
|
9919
9885
|
};
|
9920
9886
|
return Apollo.useMutation(InitializeOrgNameInContextDocument, options);
|
9921
9887
|
}
|
9922
|
-
const
|
9888
|
+
const ReassignConfigurationDocument = {
|
9923
9889
|
kind: 'Document',
|
9924
9890
|
definitions: [{
|
9925
9891
|
kind: 'OperationDefinition',
|
9926
9892
|
operation: 'mutation',
|
9927
9893
|
name: {
|
9928
9894
|
kind: 'Name',
|
9929
|
-
value: '
|
9895
|
+
value: 'ReassignConfiguration'
|
9930
9896
|
},
|
9931
|
-
variableDefinitions: [{
|
9932
|
-
kind: 'VariableDefinition',
|
9933
|
-
variable: {
|
9934
|
-
kind: 'Variable',
|
9935
|
-
name: {
|
9936
|
-
kind: 'Name',
|
9937
|
-
value: 'teamName'
|
9938
|
-
}
|
9939
|
-
},
|
9940
|
-
type: {
|
9941
|
-
kind: 'NonNullType',
|
9942
|
-
type: {
|
9943
|
-
kind: 'NamedType',
|
9944
|
-
name: {
|
9945
|
-
kind: 'Name',
|
9946
|
-
value: 'String'
|
9947
|
-
}
|
9948
|
-
}
|
9949
|
-
}
|
9950
|
-
}, {
|
9951
|
-
kind: 'VariableDefinition',
|
9952
|
-
variable: {
|
9953
|
-
kind: 'Variable',
|
9954
|
-
name: {
|
9955
|
-
kind: 'Name',
|
9956
|
-
value: 'orgName'
|
9957
|
-
}
|
9958
|
-
},
|
9959
|
-
type: {
|
9960
|
-
kind: 'NonNullType',
|
9961
|
-
type: {
|
9962
|
-
kind: 'NamedType',
|
9963
|
-
name: {
|
9964
|
-
kind: 'Name',
|
9965
|
-
value: 'String'
|
9966
|
-
}
|
9967
|
-
}
|
9968
|
-
}
|
9969
|
-
}],
|
9970
9897
|
selectionSet: {
|
9971
9898
|
kind: 'SelectionSet',
|
9972
9899
|
selections: [{
|
9973
9900
|
kind: 'Field',
|
9974
9901
|
name: {
|
9975
9902
|
kind: 'Name',
|
9976
|
-
value: '
|
9903
|
+
value: 'reassignRole'
|
9977
9904
|
},
|
9978
|
-
|
9979
|
-
kind: '
|
9980
|
-
name: {
|
9981
|
-
kind: 'Name',
|
9982
|
-
value: 'teamName'
|
9983
|
-
},
|
9984
|
-
value: {
|
9985
|
-
kind: 'Variable',
|
9986
|
-
name: {
|
9987
|
-
kind: 'Name',
|
9988
|
-
value: 'teamName'
|
9989
|
-
}
|
9990
|
-
}
|
9991
|
-
}, {
|
9992
|
-
kind: 'Argument',
|
9905
|
+
directives: [{
|
9906
|
+
kind: 'Directive',
|
9993
9907
|
name: {
|
9994
9908
|
kind: 'Name',
|
9995
|
-
value: '
|
9909
|
+
value: 'client'
|
9996
9910
|
},
|
9997
|
-
|
9998
|
-
kind: '
|
9911
|
+
arguments: [{
|
9912
|
+
kind: 'Argument',
|
9999
9913
|
name: {
|
10000
9914
|
kind: 'Name',
|
10001
|
-
value: '
|
9915
|
+
value: 'always'
|
9916
|
+
},
|
9917
|
+
value: {
|
9918
|
+
kind: 'BooleanValue',
|
9919
|
+
value: true
|
10002
9920
|
}
|
10003
|
-
}
|
10004
|
-
}],
|
10005
|
-
directives: [{
|
10006
|
-
kind: 'Directive',
|
10007
|
-
name: {
|
10008
|
-
kind: 'Name',
|
10009
|
-
value: 'client'
|
10010
|
-
}
|
9921
|
+
}]
|
10011
9922
|
}]
|
10012
9923
|
}]
|
10013
9924
|
}
|
10014
9925
|
}]
|
10015
9926
|
};
|
10016
9927
|
/**
|
10017
|
-
*
|
9928
|
+
* __useReassignConfigurationMutation__
|
10018
9929
|
*
|
10019
|
-
* To run a mutation, you first call `
|
10020
|
-
* When your component renders, `
|
9930
|
+
* To run a mutation, you first call `useReassignConfigurationMutation` within a React component and pass it any options that fit your needs.
|
9931
|
+
* When your component renders, `useReassignConfigurationMutation` returns a tuple that includes:
|
10021
9932
|
* - A mutate function that you can call at any time to execute the mutation
|
10022
9933
|
* - An object with fields that represent the current status of the mutation's execution
|
10023
9934
|
*
|
10024
9935
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
10025
9936
|
*
|
10026
9937
|
* @example
|
10027
|
-
* const [
|
9938
|
+
* const [reassignConfigurationMutation, { data, loading, error }] = useReassignConfigurationMutation({
|
10028
9939
|
* variables: {
|
10029
|
-
* teamName: // value for 'teamName'
|
10030
|
-
* orgName: // value for 'orgName'
|
10031
9940
|
* },
|
10032
9941
|
* });
|
10033
9942
|
*/
|
10034
|
-
function
|
9943
|
+
function useReassignConfigurationMutation(baseOptions) {
|
10035
9944
|
const options = {
|
10036
9945
|
...defaultOptions,
|
10037
9946
|
...baseOptions
|
10038
9947
|
};
|
10039
|
-
return Apollo.useMutation(
|
9948
|
+
return Apollo.useMutation(ReassignConfigurationDocument, options);
|
10040
9949
|
}
|
10041
|
-
const
|
9950
|
+
const UpdateConfigurationDocument = {
|
10042
9951
|
kind: 'Document',
|
10043
9952
|
definitions: [{
|
10044
9953
|
kind: 'OperationDefinition',
|
10045
9954
|
operation: 'mutation',
|
10046
9955
|
name: {
|
10047
9956
|
kind: 'Name',
|
10048
|
-
value: '
|
9957
|
+
value: 'UpdateConfiguration'
|
10049
9958
|
},
|
10050
|
-
|
10051
|
-
kind: '
|
10052
|
-
|
10053
|
-
kind: '
|
10054
|
-
name: {
|
10055
|
-
kind: 'Name',
|
10056
|
-
value: 'reassignRole'
|
10057
|
-
},
|
10058
|
-
directives: [{
|
10059
|
-
kind: 'Directive',
|
10060
|
-
name: {
|
10061
|
-
kind: 'Name',
|
10062
|
-
value: 'client'
|
10063
|
-
},
|
10064
|
-
arguments: [{
|
10065
|
-
kind: 'Argument',
|
10066
|
-
name: {
|
10067
|
-
kind: 'Name',
|
10068
|
-
value: 'always'
|
10069
|
-
},
|
10070
|
-
value: {
|
10071
|
-
kind: 'BooleanValue',
|
10072
|
-
value: true
|
10073
|
-
}
|
10074
|
-
}]
|
10075
|
-
}]
|
10076
|
-
}]
|
10077
|
-
}
|
10078
|
-
}]
|
10079
|
-
};
|
10080
|
-
/**
|
10081
|
-
* __useReassignConfigurationMutation__
|
10082
|
-
*
|
10083
|
-
* To run a mutation, you first call `useReassignConfigurationMutation` within a React component and pass it any options that fit your needs.
|
10084
|
-
* When your component renders, `useReassignConfigurationMutation` returns a tuple that includes:
|
10085
|
-
* - A mutate function that you can call at any time to execute the mutation
|
10086
|
-
* - An object with fields that represent the current status of the mutation's execution
|
10087
|
-
*
|
10088
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
10089
|
-
*
|
10090
|
-
* @example
|
10091
|
-
* const [reassignConfigurationMutation, { data, loading, error }] = useReassignConfigurationMutation({
|
10092
|
-
* variables: {
|
10093
|
-
* },
|
10094
|
-
* });
|
10095
|
-
*/
|
10096
|
-
function useReassignConfigurationMutation(baseOptions) {
|
10097
|
-
const options = {
|
10098
|
-
...defaultOptions,
|
10099
|
-
...baseOptions
|
10100
|
-
};
|
10101
|
-
return Apollo.useMutation(ReassignConfigurationDocument, options);
|
10102
|
-
}
|
10103
|
-
const UpdateConfigurationDocument = {
|
10104
|
-
kind: 'Document',
|
10105
|
-
definitions: [{
|
10106
|
-
kind: 'OperationDefinition',
|
10107
|
-
operation: 'mutation',
|
10108
|
-
name: {
|
10109
|
-
kind: 'Name',
|
10110
|
-
value: 'UpdateConfiguration'
|
10111
|
-
},
|
10112
|
-
variableDefinitions: [{
|
10113
|
-
kind: 'VariableDefinition',
|
10114
|
-
variable: {
|
10115
|
-
kind: 'Variable',
|
9959
|
+
variableDefinitions: [{
|
9960
|
+
kind: 'VariableDefinition',
|
9961
|
+
variable: {
|
9962
|
+
kind: 'Variable',
|
10116
9963
|
name: {
|
10117
9964
|
kind: 'Name',
|
10118
9965
|
value: 'input'
|
@@ -10353,6 +10200,202 @@ function useUpdateConfigurationMutation(baseOptions) {
|
|
10353
10200
|
};
|
10354
10201
|
return Apollo.useMutation(UpdateConfigurationDocument, options);
|
10355
10202
|
}
|
10203
|
+
const WriteSettingsDocument = {
|
10204
|
+
kind: 'Document',
|
10205
|
+
definitions: [{
|
10206
|
+
kind: 'OperationDefinition',
|
10207
|
+
operation: 'mutation',
|
10208
|
+
name: {
|
10209
|
+
kind: 'Name',
|
10210
|
+
value: 'WriteSettings'
|
10211
|
+
},
|
10212
|
+
variableDefinitions: [{
|
10213
|
+
kind: 'VariableDefinition',
|
10214
|
+
variable: {
|
10215
|
+
kind: 'Variable',
|
10216
|
+
name: {
|
10217
|
+
kind: 'Name',
|
10218
|
+
value: 'editingUri'
|
10219
|
+
}
|
10220
|
+
},
|
10221
|
+
type: {
|
10222
|
+
kind: 'NamedType',
|
10223
|
+
name: {
|
10224
|
+
kind: 'Name',
|
10225
|
+
value: 'URI'
|
10226
|
+
}
|
10227
|
+
}
|
10228
|
+
}, {
|
10229
|
+
kind: 'VariableDefinition',
|
10230
|
+
variable: {
|
10231
|
+
kind: 'Variable',
|
10232
|
+
name: {
|
10233
|
+
kind: 'Name',
|
10234
|
+
value: 'settings'
|
10235
|
+
}
|
10236
|
+
},
|
10237
|
+
type: {
|
10238
|
+
kind: 'NamedType',
|
10239
|
+
name: {
|
10240
|
+
kind: 'Name',
|
10241
|
+
value: 'AnyObject'
|
10242
|
+
}
|
10243
|
+
}
|
10244
|
+
}, {
|
10245
|
+
kind: 'VariableDefinition',
|
10246
|
+
variable: {
|
10247
|
+
kind: 'Variable',
|
10248
|
+
name: {
|
10249
|
+
kind: 'Name',
|
10250
|
+
value: 'overrides'
|
10251
|
+
}
|
10252
|
+
},
|
10253
|
+
type: {
|
10254
|
+
kind: 'NamedType',
|
10255
|
+
name: {
|
10256
|
+
kind: 'Name',
|
10257
|
+
value: 'ConfigurationOverridesInput'
|
10258
|
+
}
|
10259
|
+
}
|
10260
|
+
}, {
|
10261
|
+
kind: 'VariableDefinition',
|
10262
|
+
variable: {
|
10263
|
+
kind: 'Variable',
|
10264
|
+
name: {
|
10265
|
+
kind: 'Name',
|
10266
|
+
value: 'target'
|
10267
|
+
}
|
10268
|
+
},
|
10269
|
+
type: {
|
10270
|
+
kind: 'NamedType',
|
10271
|
+
name: {
|
10272
|
+
kind: 'Name',
|
10273
|
+
value: 'Int'
|
10274
|
+
}
|
10275
|
+
}
|
10276
|
+
}, {
|
10277
|
+
kind: 'VariableDefinition',
|
10278
|
+
variable: {
|
10279
|
+
kind: 'Variable',
|
10280
|
+
name: {
|
10281
|
+
kind: 'Name',
|
10282
|
+
value: 'donotNotifyError'
|
10283
|
+
}
|
10284
|
+
},
|
10285
|
+
type: {
|
10286
|
+
kind: 'NamedType',
|
10287
|
+
name: {
|
10288
|
+
kind: 'Name',
|
10289
|
+
value: 'Boolean'
|
10290
|
+
}
|
10291
|
+
}
|
10292
|
+
}],
|
10293
|
+
selectionSet: {
|
10294
|
+
kind: 'SelectionSet',
|
10295
|
+
selections: [{
|
10296
|
+
kind: 'Field',
|
10297
|
+
name: {
|
10298
|
+
kind: 'Name',
|
10299
|
+
value: 'writeSettings'
|
10300
|
+
},
|
10301
|
+
arguments: [{
|
10302
|
+
kind: 'Argument',
|
10303
|
+
name: {
|
10304
|
+
kind: 'Name',
|
10305
|
+
value: 'editingUri'
|
10306
|
+
},
|
10307
|
+
value: {
|
10308
|
+
kind: 'Variable',
|
10309
|
+
name: {
|
10310
|
+
kind: 'Name',
|
10311
|
+
value: 'editingUri'
|
10312
|
+
}
|
10313
|
+
}
|
10314
|
+
}, {
|
10315
|
+
kind: 'Argument',
|
10316
|
+
name: {
|
10317
|
+
kind: 'Name',
|
10318
|
+
value: 'settings'
|
10319
|
+
},
|
10320
|
+
value: {
|
10321
|
+
kind: 'Variable',
|
10322
|
+
name: {
|
10323
|
+
kind: 'Name',
|
10324
|
+
value: 'settings'
|
10325
|
+
}
|
10326
|
+
}
|
10327
|
+
}, {
|
10328
|
+
kind: 'Argument',
|
10329
|
+
name: {
|
10330
|
+
kind: 'Name',
|
10331
|
+
value: 'overrides'
|
10332
|
+
},
|
10333
|
+
value: {
|
10334
|
+
kind: 'Variable',
|
10335
|
+
name: {
|
10336
|
+
kind: 'Name',
|
10337
|
+
value: 'overrides'
|
10338
|
+
}
|
10339
|
+
}
|
10340
|
+
}, {
|
10341
|
+
kind: 'Argument',
|
10342
|
+
name: {
|
10343
|
+
kind: 'Name',
|
10344
|
+
value: 'target'
|
10345
|
+
},
|
10346
|
+
value: {
|
10347
|
+
kind: 'Variable',
|
10348
|
+
name: {
|
10349
|
+
kind: 'Name',
|
10350
|
+
value: 'target'
|
10351
|
+
}
|
10352
|
+
}
|
10353
|
+
}, {
|
10354
|
+
kind: 'Argument',
|
10355
|
+
name: {
|
10356
|
+
kind: 'Name',
|
10357
|
+
value: 'donotNotifyError'
|
10358
|
+
},
|
10359
|
+
value: {
|
10360
|
+
kind: 'Variable',
|
10361
|
+
name: {
|
10362
|
+
kind: 'Name',
|
10363
|
+
value: 'donotNotifyError'
|
10364
|
+
}
|
10365
|
+
}
|
10366
|
+
}]
|
10367
|
+
}]
|
10368
|
+
}
|
10369
|
+
}]
|
10370
|
+
};
|
10371
|
+
/**
|
10372
|
+
* __useWriteSettingsMutation__
|
10373
|
+
*
|
10374
|
+
* To run a mutation, you first call `useWriteSettingsMutation` within a React component and pass it any options that fit your needs.
|
10375
|
+
* When your component renders, `useWriteSettingsMutation` returns a tuple that includes:
|
10376
|
+
* - A mutate function that you can call at any time to execute the mutation
|
10377
|
+
* - An object with fields that represent the current status of the mutation's execution
|
10378
|
+
*
|
10379
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
10380
|
+
*
|
10381
|
+
* @example
|
10382
|
+
* const [writeSettingsMutation, { data, loading, error }] = useWriteSettingsMutation({
|
10383
|
+
* variables: {
|
10384
|
+
* editingUri: // value for 'editingUri'
|
10385
|
+
* settings: // value for 'settings'
|
10386
|
+
* overrides: // value for 'overrides'
|
10387
|
+
* target: // value for 'target'
|
10388
|
+
* donotNotifyError: // value for 'donotNotifyError'
|
10389
|
+
* },
|
10390
|
+
* });
|
10391
|
+
*/
|
10392
|
+
function useWriteSettingsMutation(baseOptions) {
|
10393
|
+
const options = {
|
10394
|
+
...defaultOptions,
|
10395
|
+
...baseOptions
|
10396
|
+
};
|
10397
|
+
return Apollo.useMutation(WriteSettingsDocument, options);
|
10398
|
+
}
|
10356
10399
|
const GetApplicationPolicyDocument = {
|
10357
10400
|
kind: 'Document',
|
10358
10401
|
definitions: [{
|
@@ -10740,6 +10783,111 @@ function useGetApplicationRoleSuspenseQuery(baseOptions) {
|
|
10740
10783
|
};
|
10741
10784
|
return Apollo.useSuspenseQuery(GetApplicationRoleDocument, options);
|
10742
10785
|
}
|
10786
|
+
const GetCurrentPagePermissionsDocument = {
|
10787
|
+
kind: 'Document',
|
10788
|
+
definitions: [{
|
10789
|
+
kind: 'OperationDefinition',
|
10790
|
+
operation: 'query',
|
10791
|
+
name: {
|
10792
|
+
kind: 'Name',
|
10793
|
+
value: 'GetCurrentPagePermissions'
|
10794
|
+
},
|
10795
|
+
variableDefinitions: [{
|
10796
|
+
kind: 'VariableDefinition',
|
10797
|
+
variable: {
|
10798
|
+
kind: 'Variable',
|
10799
|
+
name: {
|
10800
|
+
kind: 'Name',
|
10801
|
+
value: 'resourceUri'
|
10802
|
+
}
|
10803
|
+
},
|
10804
|
+
type: {
|
10805
|
+
kind: 'NamedType',
|
10806
|
+
name: {
|
10807
|
+
kind: 'Name',
|
10808
|
+
value: 'URIInput'
|
10809
|
+
}
|
10810
|
+
}
|
10811
|
+
}],
|
10812
|
+
selectionSet: {
|
10813
|
+
kind: 'SelectionSet',
|
10814
|
+
selections: [{
|
10815
|
+
kind: 'Field',
|
10816
|
+
name: {
|
10817
|
+
kind: 'Name',
|
10818
|
+
value: 'currentPagePermissions'
|
10819
|
+
},
|
10820
|
+
arguments: [{
|
10821
|
+
kind: 'Argument',
|
10822
|
+
name: {
|
10823
|
+
kind: 'Name',
|
10824
|
+
value: 'resourceUri'
|
10825
|
+
},
|
10826
|
+
value: {
|
10827
|
+
kind: 'Variable',
|
10828
|
+
name: {
|
10829
|
+
kind: 'Name',
|
10830
|
+
value: 'resourceUri'
|
10831
|
+
}
|
10832
|
+
}
|
10833
|
+
}],
|
10834
|
+
selectionSet: {
|
10835
|
+
kind: 'SelectionSet',
|
10836
|
+
selections: [{
|
10837
|
+
kind: 'Field',
|
10838
|
+
name: {
|
10839
|
+
kind: 'Name',
|
10840
|
+
value: 'permissions'
|
10841
|
+
}
|
10842
|
+
}, {
|
10843
|
+
kind: 'Field',
|
10844
|
+
name: {
|
10845
|
+
kind: 'Name',
|
10846
|
+
value: 'resourceUri'
|
10847
|
+
}
|
10848
|
+
}]
|
10849
|
+
}
|
10850
|
+
}]
|
10851
|
+
}
|
10852
|
+
}]
|
10853
|
+
};
|
10854
|
+
/**
|
10855
|
+
* __useGetCurrentPagePermissionsQuery__
|
10856
|
+
*
|
10857
|
+
* To run a query within a React component, call `useGetCurrentPagePermissionsQuery` and pass it any options that fit your needs.
|
10858
|
+
* When your component renders, `useGetCurrentPagePermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
10859
|
+
* you can use to render your UI.
|
10860
|
+
*
|
10861
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
10862
|
+
*
|
10863
|
+
* @example
|
10864
|
+
* const { data, loading, error } = useGetCurrentPagePermissionsQuery({
|
10865
|
+
* variables: {
|
10866
|
+
* resourceUri: // value for 'resourceUri'
|
10867
|
+
* },
|
10868
|
+
* });
|
10869
|
+
*/
|
10870
|
+
function useGetCurrentPagePermissionsQuery(baseOptions) {
|
10871
|
+
const options = {
|
10872
|
+
...defaultOptions,
|
10873
|
+
...baseOptions
|
10874
|
+
};
|
10875
|
+
return Apollo.useQuery(GetCurrentPagePermissionsDocument, options);
|
10876
|
+
}
|
10877
|
+
function useGetCurrentPagePermissionsLazyQuery(baseOptions) {
|
10878
|
+
const options = {
|
10879
|
+
...defaultOptions,
|
10880
|
+
...baseOptions
|
10881
|
+
};
|
10882
|
+
return Apollo.useLazyQuery(GetCurrentPagePermissionsDocument, options);
|
10883
|
+
}
|
10884
|
+
function useGetCurrentPagePermissionsSuspenseQuery(baseOptions) {
|
10885
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
10886
|
+
...defaultOptions,
|
10887
|
+
...baseOptions
|
10888
|
+
};
|
10889
|
+
return Apollo.useSuspenseQuery(GetCurrentPagePermissionsDocument, options);
|
10890
|
+
}
|
10743
10891
|
const DefaultResolveSettingsDocument = {
|
10744
10892
|
kind: 'Document',
|
10745
10893
|
definitions: [{
|
@@ -11210,13 +11358,7 @@ const GetContextDataDocument = {
|
|
11210
11358
|
kind: 'Field',
|
11211
11359
|
name: {
|
11212
11360
|
kind: 'Name',
|
11213
|
-
value: '
|
11214
|
-
}
|
11215
|
-
}, {
|
11216
|
-
kind: 'Field',
|
11217
|
-
name: {
|
11218
|
-
kind: 'Name',
|
11219
|
-
value: 'resourceUri'
|
11361
|
+
value: 'cdecodeUri'
|
11220
11362
|
}
|
11221
11363
|
}]
|
11222
11364
|
}
|
@@ -12241,240 +12383,40 @@ const GetDefaultRoleDocument = {
|
|
12241
12383
|
}]
|
12242
12384
|
};
|
12243
12385
|
/**
|
12244
|
-
* __useGetDefaultRoleQuery__
|
12245
|
-
*
|
12246
|
-
* To run a query within a React component, call `useGetDefaultRoleQuery` and pass it any options that fit your needs.
|
12247
|
-
* When your component renders, `useGetDefaultRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12248
|
-
* you can use to render your UI.
|
12249
|
-
*
|
12250
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
12251
|
-
*
|
12252
|
-
* @example
|
12253
|
-
* const { data, loading, error } = useGetDefaultRoleQuery({
|
12254
|
-
* variables: {
|
12255
|
-
* },
|
12256
|
-
* });
|
12257
|
-
*/
|
12258
|
-
function useGetDefaultRoleQuery(baseOptions) {
|
12259
|
-
const options = {
|
12260
|
-
...defaultOptions,
|
12261
|
-
...baseOptions
|
12262
|
-
};
|
12263
|
-
return Apollo.useQuery(GetDefaultRoleDocument, options);
|
12264
|
-
}
|
12265
|
-
function useGetDefaultRoleLazyQuery(baseOptions) {
|
12266
|
-
const options = {
|
12267
|
-
...defaultOptions,
|
12268
|
-
...baseOptions
|
12269
|
-
};
|
12270
|
-
return Apollo.useLazyQuery(GetDefaultRoleDocument, options);
|
12271
|
-
}
|
12272
|
-
function useGetDefaultRoleSuspenseQuery(baseOptions) {
|
12273
|
-
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12274
|
-
...defaultOptions,
|
12275
|
-
...baseOptions
|
12276
|
-
};
|
12277
|
-
return Apollo.useSuspenseQuery(GetDefaultRoleDocument, options);
|
12278
|
-
}
|
12279
|
-
const GetTeamContextDocument = {
|
12280
|
-
kind: 'Document',
|
12281
|
-
definitions: [{
|
12282
|
-
kind: 'OperationDefinition',
|
12283
|
-
operation: 'query',
|
12284
|
-
name: {
|
12285
|
-
kind: 'Name',
|
12286
|
-
value: 'GetTeamContext'
|
12287
|
-
},
|
12288
|
-
selectionSet: {
|
12289
|
-
kind: 'SelectionSet',
|
12290
|
-
selections: [{
|
12291
|
-
kind: 'Field',
|
12292
|
-
name: {
|
12293
|
-
kind: 'Name',
|
12294
|
-
value: 'getTeamContext'
|
12295
|
-
},
|
12296
|
-
directives: [{
|
12297
|
-
kind: 'Directive',
|
12298
|
-
name: {
|
12299
|
-
kind: 'Name',
|
12300
|
-
value: 'client'
|
12301
|
-
}
|
12302
|
-
}],
|
12303
|
-
selectionSet: {
|
12304
|
-
kind: 'SelectionSet',
|
12305
|
-
selections: [{
|
12306
|
-
kind: 'FragmentSpread',
|
12307
|
-
name: {
|
12308
|
-
kind: 'Name',
|
12309
|
-
value: 'TeamContext'
|
12310
|
-
}
|
12311
|
-
}]
|
12312
|
-
}
|
12313
|
-
}]
|
12314
|
-
}
|
12315
|
-
}, {
|
12316
|
-
kind: 'FragmentDefinition',
|
12317
|
-
name: {
|
12318
|
-
kind: 'Name',
|
12319
|
-
value: 'TeamContext'
|
12320
|
-
},
|
12321
|
-
typeCondition: {
|
12322
|
-
kind: 'NamedType',
|
12323
|
-
name: {
|
12324
|
-
kind: 'Name',
|
12325
|
-
value: 'Context'
|
12326
|
-
}
|
12327
|
-
},
|
12328
|
-
selectionSet: {
|
12329
|
-
kind: 'SelectionSet',
|
12330
|
-
selections: [{
|
12331
|
-
kind: 'Field',
|
12332
|
-
name: {
|
12333
|
-
kind: 'Name',
|
12334
|
-
value: 'teamName'
|
12335
|
-
}
|
12336
|
-
}, {
|
12337
|
-
kind: 'Field',
|
12338
|
-
name: {
|
12339
|
-
kind: 'Name',
|
12340
|
-
value: 'teamUri'
|
12341
|
-
}
|
12342
|
-
}]
|
12343
|
-
}
|
12344
|
-
}]
|
12345
|
-
};
|
12346
|
-
/**
|
12347
|
-
* __useGetTeamContextQuery__
|
12348
|
-
*
|
12349
|
-
* To run a query within a React component, call `useGetTeamContextQuery` and pass it any options that fit your needs.
|
12350
|
-
* When your component renders, `useGetTeamContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12351
|
-
* you can use to render your UI.
|
12352
|
-
*
|
12353
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
12354
|
-
*
|
12355
|
-
* @example
|
12356
|
-
* const { data, loading, error } = useGetTeamContextQuery({
|
12357
|
-
* variables: {
|
12358
|
-
* },
|
12359
|
-
* });
|
12360
|
-
*/
|
12361
|
-
function useGetTeamContextQuery(baseOptions) {
|
12362
|
-
const options = {
|
12363
|
-
...defaultOptions,
|
12364
|
-
...baseOptions
|
12365
|
-
};
|
12366
|
-
return Apollo.useQuery(GetTeamContextDocument, options);
|
12367
|
-
}
|
12368
|
-
function useGetTeamContextLazyQuery(baseOptions) {
|
12369
|
-
const options = {
|
12370
|
-
...defaultOptions,
|
12371
|
-
...baseOptions
|
12372
|
-
};
|
12373
|
-
return Apollo.useLazyQuery(GetTeamContextDocument, options);
|
12374
|
-
}
|
12375
|
-
function useGetTeamContextSuspenseQuery(baseOptions) {
|
12376
|
-
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12377
|
-
...defaultOptions,
|
12378
|
-
...baseOptions
|
12379
|
-
};
|
12380
|
-
return Apollo.useSuspenseQuery(GetTeamContextDocument, options);
|
12381
|
-
}
|
12382
|
-
const GetTeamNameFromContextDocument = {
|
12383
|
-
kind: 'Document',
|
12384
|
-
definitions: [{
|
12385
|
-
kind: 'OperationDefinition',
|
12386
|
-
operation: 'query',
|
12387
|
-
name: {
|
12388
|
-
kind: 'Name',
|
12389
|
-
value: 'GetTeamNameFromContext'
|
12390
|
-
},
|
12391
|
-
selectionSet: {
|
12392
|
-
kind: 'SelectionSet',
|
12393
|
-
selections: [{
|
12394
|
-
kind: 'Field',
|
12395
|
-
name: {
|
12396
|
-
kind: 'Name',
|
12397
|
-
value: 'getTeamNameFromContext'
|
12398
|
-
},
|
12399
|
-
directives: [{
|
12400
|
-
kind: 'Directive',
|
12401
|
-
name: {
|
12402
|
-
kind: 'Name',
|
12403
|
-
value: 'client'
|
12404
|
-
}
|
12405
|
-
}],
|
12406
|
-
selectionSet: {
|
12407
|
-
kind: 'SelectionSet',
|
12408
|
-
selections: [{
|
12409
|
-
kind: 'FragmentSpread',
|
12410
|
-
name: {
|
12411
|
-
kind: 'Name',
|
12412
|
-
value: 'TeamNameInContext'
|
12413
|
-
}
|
12414
|
-
}]
|
12415
|
-
}
|
12416
|
-
}]
|
12417
|
-
}
|
12418
|
-
}, {
|
12419
|
-
kind: 'FragmentDefinition',
|
12420
|
-
name: {
|
12421
|
-
kind: 'Name',
|
12422
|
-
value: 'TeamNameInContext'
|
12423
|
-
},
|
12424
|
-
typeCondition: {
|
12425
|
-
kind: 'NamedType',
|
12426
|
-
name: {
|
12427
|
-
kind: 'Name',
|
12428
|
-
value: 'Context'
|
12429
|
-
}
|
12430
|
-
},
|
12431
|
-
selectionSet: {
|
12432
|
-
kind: 'SelectionSet',
|
12433
|
-
selections: [{
|
12434
|
-
kind: 'Field',
|
12435
|
-
name: {
|
12436
|
-
kind: 'Name',
|
12437
|
-
value: 'teamName'
|
12438
|
-
}
|
12439
|
-
}]
|
12440
|
-
}
|
12441
|
-
}]
|
12442
|
-
};
|
12443
|
-
/**
|
12444
|
-
* __useGetTeamNameFromContextQuery__
|
12386
|
+
* __useGetDefaultRoleQuery__
|
12445
12387
|
*
|
12446
|
-
* To run a query within a React component, call `
|
12447
|
-
* When your component renders, `
|
12388
|
+
* To run a query within a React component, call `useGetDefaultRoleQuery` and pass it any options that fit your needs.
|
12389
|
+
* When your component renders, `useGetDefaultRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12448
12390
|
* you can use to render your UI.
|
12449
12391
|
*
|
12450
12392
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
12451
12393
|
*
|
12452
12394
|
* @example
|
12453
|
-
* const { data, loading, error } =
|
12395
|
+
* const { data, loading, error } = useGetDefaultRoleQuery({
|
12454
12396
|
* variables: {
|
12455
12397
|
* },
|
12456
12398
|
* });
|
12457
12399
|
*/
|
12458
|
-
function
|
12400
|
+
function useGetDefaultRoleQuery(baseOptions) {
|
12459
12401
|
const options = {
|
12460
12402
|
...defaultOptions,
|
12461
12403
|
...baseOptions
|
12462
12404
|
};
|
12463
|
-
return Apollo.useQuery(
|
12405
|
+
return Apollo.useQuery(GetDefaultRoleDocument, options);
|
12464
12406
|
}
|
12465
|
-
function
|
12407
|
+
function useGetDefaultRoleLazyQuery(baseOptions) {
|
12466
12408
|
const options = {
|
12467
12409
|
...defaultOptions,
|
12468
12410
|
...baseOptions
|
12469
12411
|
};
|
12470
|
-
return Apollo.useLazyQuery(
|
12412
|
+
return Apollo.useLazyQuery(GetDefaultRoleDocument, options);
|
12471
12413
|
}
|
12472
|
-
function
|
12414
|
+
function useGetDefaultRoleSuspenseQuery(baseOptions) {
|
12473
12415
|
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12474
12416
|
...defaultOptions,
|
12475
12417
|
...baseOptions
|
12476
12418
|
};
|
12477
|
-
return Apollo.useSuspenseQuery(
|
12419
|
+
return Apollo.useSuspenseQuery(GetDefaultRoleDocument, options);
|
12478
12420
|
}
|
12479
12421
|
const GetUserAccessRoleDocument = {
|
12480
12422
|
kind: 'Document',
|
@@ -12711,144 +12653,6 @@ function useGetUserAccessRoleSuspenseQuery(baseOptions) {
|
|
12711
12653
|
};
|
12712
12654
|
return Apollo.useSuspenseQuery(GetUserAccessRoleDocument, options);
|
12713
12655
|
}
|
12714
|
-
const GetUserPermissionsDocument = {
|
12715
|
-
kind: 'Document',
|
12716
|
-
definitions: [{
|
12717
|
-
kind: 'OperationDefinition',
|
12718
|
-
operation: 'query',
|
12719
|
-
name: {
|
12720
|
-
kind: 'Name',
|
12721
|
-
value: 'GetUserPermissions'
|
12722
|
-
},
|
12723
|
-
selectionSet: {
|
12724
|
-
kind: 'SelectionSet',
|
12725
|
-
selections: [{
|
12726
|
-
kind: 'Field',
|
12727
|
-
name: {
|
12728
|
-
kind: 'Name',
|
12729
|
-
value: 'getUserPermissions'
|
12730
|
-
},
|
12731
|
-
selectionSet: {
|
12732
|
-
kind: 'SelectionSet',
|
12733
|
-
selections: [{
|
12734
|
-
kind: 'Field',
|
12735
|
-
name: {
|
12736
|
-
kind: 'Name',
|
12737
|
-
value: 'name'
|
12738
|
-
}
|
12739
|
-
}, {
|
12740
|
-
kind: 'Field',
|
12741
|
-
name: {
|
12742
|
-
kind: 'Name',
|
12743
|
-
value: 'target'
|
12744
|
-
}
|
12745
|
-
}, {
|
12746
|
-
kind: 'Field',
|
12747
|
-
name: {
|
12748
|
-
kind: 'Name',
|
12749
|
-
value: 'id'
|
12750
|
-
}
|
12751
|
-
}, {
|
12752
|
-
kind: 'Field',
|
12753
|
-
name: {
|
12754
|
-
kind: 'Name',
|
12755
|
-
value: 'description'
|
12756
|
-
}
|
12757
|
-
}, {
|
12758
|
-
kind: 'Field',
|
12759
|
-
name: {
|
12760
|
-
kind: 'Name',
|
12761
|
-
value: 'permissions'
|
12762
|
-
},
|
12763
|
-
selectionSet: {
|
12764
|
-
kind: 'SelectionSet',
|
12765
|
-
selections: [{
|
12766
|
-
kind: 'InlineFragment',
|
12767
|
-
typeCondition: {
|
12768
|
-
kind: 'NamedType',
|
12769
|
-
name: {
|
12770
|
-
kind: 'Name',
|
12771
|
-
value: 'UserRole'
|
12772
|
-
}
|
12773
|
-
},
|
12774
|
-
selectionSet: {
|
12775
|
-
kind: 'SelectionSet',
|
12776
|
-
selections: [{
|
12777
|
-
kind: 'Field',
|
12778
|
-
name: {
|
12779
|
-
kind: 'Name',
|
12780
|
-
value: 'target'
|
12781
|
-
}
|
12782
|
-
}, {
|
12783
|
-
kind: 'Field',
|
12784
|
-
name: {
|
12785
|
-
kind: 'Name',
|
12786
|
-
value: 'keys'
|
12787
|
-
}
|
12788
|
-
}, {
|
12789
|
-
kind: 'Field',
|
12790
|
-
name: {
|
12791
|
-
kind: 'Name',
|
12792
|
-
value: 'contents'
|
12793
|
-
}
|
12794
|
-
}, {
|
12795
|
-
kind: 'Field',
|
12796
|
-
name: {
|
12797
|
-
kind: 'Name',
|
12798
|
-
value: 'resource'
|
12799
|
-
}
|
12800
|
-
}, {
|
12801
|
-
kind: 'Field',
|
12802
|
-
name: {
|
12803
|
-
kind: 'Name',
|
12804
|
-
value: 'target'
|
12805
|
-
}
|
12806
|
-
}]
|
12807
|
-
}
|
12808
|
-
}]
|
12809
|
-
}
|
12810
|
-
}]
|
12811
|
-
}
|
12812
|
-
}]
|
12813
|
-
}
|
12814
|
-
}]
|
12815
|
-
};
|
12816
|
-
/**
|
12817
|
-
* __useGetUserPermissionsQuery__
|
12818
|
-
*
|
12819
|
-
* To run a query within a React component, call `useGetUserPermissionsQuery` and pass it any options that fit your needs.
|
12820
|
-
* When your component renders, `useGetUserPermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12821
|
-
* you can use to render your UI.
|
12822
|
-
*
|
12823
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
12824
|
-
*
|
12825
|
-
* @example
|
12826
|
-
* const { data, loading, error } = useGetUserPermissionsQuery({
|
12827
|
-
* variables: {
|
12828
|
-
* },
|
12829
|
-
* });
|
12830
|
-
*/
|
12831
|
-
function useGetUserPermissionsQuery(baseOptions) {
|
12832
|
-
const options = {
|
12833
|
-
...defaultOptions,
|
12834
|
-
...baseOptions
|
12835
|
-
};
|
12836
|
-
return Apollo.useQuery(GetUserPermissionsDocument, options);
|
12837
|
-
}
|
12838
|
-
function useGetUserPermissionsLazyQuery(baseOptions) {
|
12839
|
-
const options = {
|
12840
|
-
...defaultOptions,
|
12841
|
-
...baseOptions
|
12842
|
-
};
|
12843
|
-
return Apollo.useLazyQuery(GetUserPermissionsDocument, options);
|
12844
|
-
}
|
12845
|
-
function useGetUserPermissionsSuspenseQuery(baseOptions) {
|
12846
|
-
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12847
|
-
...defaultOptions,
|
12848
|
-
...baseOptions
|
12849
|
-
};
|
12850
|
-
return Apollo.useSuspenseQuery(GetUserPermissionsDocument, options);
|
12851
|
-
}
|
12852
12656
|
const GetUserRoleDocument = {
|
12853
12657
|
kind: 'Document',
|
12854
12658
|
definitions: [{
|
@@ -13003,7 +12807,7 @@ const GetViewerPermissionsDocument = {
|
|
13003
12807
|
kind: 'NamedType',
|
13004
12808
|
name: {
|
13005
12809
|
kind: 'Name',
|
13006
|
-
value: '
|
12810
|
+
value: 'PreferenceRoleInput'
|
13007
12811
|
}
|
13008
12812
|
}
|
13009
12813
|
}],
|
@@ -14317,6 +14121,111 @@ function useGetOrgWithResourcesRoleSuspenseQuery(baseOptions) {
|
|
14317
14121
|
};
|
14318
14122
|
return Apollo.useSuspenseQuery(GetOrgWithResourcesRoleDocument, options);
|
14319
14123
|
}
|
14124
|
+
const GetPageSettingsDocument = {
|
14125
|
+
kind: 'Document',
|
14126
|
+
definitions: [{
|
14127
|
+
kind: 'OperationDefinition',
|
14128
|
+
operation: 'query',
|
14129
|
+
name: {
|
14130
|
+
kind: 'Name',
|
14131
|
+
value: 'GetPageSettings'
|
14132
|
+
},
|
14133
|
+
variableDefinitions: [{
|
14134
|
+
kind: 'VariableDefinition',
|
14135
|
+
variable: {
|
14136
|
+
kind: 'Variable',
|
14137
|
+
name: {
|
14138
|
+
kind: 'Name',
|
14139
|
+
value: 'resourceUri'
|
14140
|
+
}
|
14141
|
+
},
|
14142
|
+
type: {
|
14143
|
+
kind: 'NamedType',
|
14144
|
+
name: {
|
14145
|
+
kind: 'Name',
|
14146
|
+
value: 'URIInput'
|
14147
|
+
}
|
14148
|
+
}
|
14149
|
+
}],
|
14150
|
+
selectionSet: {
|
14151
|
+
kind: 'SelectionSet',
|
14152
|
+
selections: [{
|
14153
|
+
kind: 'Field',
|
14154
|
+
name: {
|
14155
|
+
kind: 'Name',
|
14156
|
+
value: 'pageSettings'
|
14157
|
+
},
|
14158
|
+
arguments: [{
|
14159
|
+
kind: 'Argument',
|
14160
|
+
name: {
|
14161
|
+
kind: 'Name',
|
14162
|
+
value: 'resourceUri'
|
14163
|
+
},
|
14164
|
+
value: {
|
14165
|
+
kind: 'Variable',
|
14166
|
+
name: {
|
14167
|
+
kind: 'Name',
|
14168
|
+
value: 'resourceUri'
|
14169
|
+
}
|
14170
|
+
}
|
14171
|
+
}],
|
14172
|
+
selectionSet: {
|
14173
|
+
kind: 'SelectionSet',
|
14174
|
+
selections: [{
|
14175
|
+
kind: 'Field',
|
14176
|
+
name: {
|
14177
|
+
kind: 'Name',
|
14178
|
+
value: 'settings'
|
14179
|
+
}
|
14180
|
+
}, {
|
14181
|
+
kind: 'Field',
|
14182
|
+
name: {
|
14183
|
+
kind: 'Name',
|
14184
|
+
value: 'resourceUri'
|
14185
|
+
}
|
14186
|
+
}]
|
14187
|
+
}
|
14188
|
+
}]
|
14189
|
+
}
|
14190
|
+
}]
|
14191
|
+
};
|
14192
|
+
/**
|
14193
|
+
* __useGetPageSettingsQuery__
|
14194
|
+
*
|
14195
|
+
* To run a query within a React component, call `useGetPageSettingsQuery` and pass it any options that fit your needs.
|
14196
|
+
* When your component renders, `useGetPageSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
14197
|
+
* you can use to render your UI.
|
14198
|
+
*
|
14199
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
14200
|
+
*
|
14201
|
+
* @example
|
14202
|
+
* const { data, loading, error } = useGetPageSettingsQuery({
|
14203
|
+
* variables: {
|
14204
|
+
* resourceUri: // value for 'resourceUri'
|
14205
|
+
* },
|
14206
|
+
* });
|
14207
|
+
*/
|
14208
|
+
function useGetPageSettingsQuery(baseOptions) {
|
14209
|
+
const options = {
|
14210
|
+
...defaultOptions,
|
14211
|
+
...baseOptions
|
14212
|
+
};
|
14213
|
+
return Apollo.useQuery(GetPageSettingsDocument, options);
|
14214
|
+
}
|
14215
|
+
function useGetPageSettingsLazyQuery(baseOptions) {
|
14216
|
+
const options = {
|
14217
|
+
...defaultOptions,
|
14218
|
+
...baseOptions
|
14219
|
+
};
|
14220
|
+
return Apollo.useLazyQuery(GetPageSettingsDocument, options);
|
14221
|
+
}
|
14222
|
+
function useGetPageSettingsSuspenseQuery(baseOptions) {
|
14223
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
14224
|
+
...defaultOptions,
|
14225
|
+
...baseOptions
|
14226
|
+
};
|
14227
|
+
return Apollo.useSuspenseQuery(GetPageSettingsDocument, options);
|
14228
|
+
}
|
14320
14229
|
const ResolveConfigurationDocument = {
|
14321
14230
|
kind: 'Document',
|
14322
14231
|
definitions: [{
|
@@ -14912,10 +14821,32 @@ const DefaultSettingsDocument = {
|
|
14912
14821
|
}
|
14913
14822
|
},
|
14914
14823
|
type: {
|
14915
|
-
kind: '
|
14824
|
+
kind: 'NonNullType',
|
14825
|
+
type: {
|
14826
|
+
kind: 'NamedType',
|
14827
|
+
name: {
|
14828
|
+
kind: 'Name',
|
14829
|
+
value: 'Int'
|
14830
|
+
}
|
14831
|
+
}
|
14832
|
+
}
|
14833
|
+
}, {
|
14834
|
+
kind: 'VariableDefinition',
|
14835
|
+
variable: {
|
14836
|
+
kind: 'Variable',
|
14916
14837
|
name: {
|
14917
14838
|
kind: 'Name',
|
14918
|
-
value: '
|
14839
|
+
value: 'options'
|
14840
|
+
}
|
14841
|
+
},
|
14842
|
+
type: {
|
14843
|
+
kind: 'NonNullType',
|
14844
|
+
type: {
|
14845
|
+
kind: 'NamedType',
|
14846
|
+
name: {
|
14847
|
+
kind: 'Name',
|
14848
|
+
value: 'PreferencesOpenOptionsInput'
|
14849
|
+
}
|
14919
14850
|
}
|
14920
14851
|
}
|
14921
14852
|
}],
|
@@ -14940,6 +14871,19 @@ const DefaultSettingsDocument = {
|
|
14940
14871
|
value: 'target'
|
14941
14872
|
}
|
14942
14873
|
}
|
14874
|
+
}, {
|
14875
|
+
kind: 'Argument',
|
14876
|
+
name: {
|
14877
|
+
kind: 'Name',
|
14878
|
+
value: 'options'
|
14879
|
+
},
|
14880
|
+
value: {
|
14881
|
+
kind: 'Variable',
|
14882
|
+
name: {
|
14883
|
+
kind: 'Name',
|
14884
|
+
value: 'options'
|
14885
|
+
}
|
14886
|
+
}
|
14943
14887
|
}],
|
14944
14888
|
selectionSet: {
|
14945
14889
|
kind: 'SelectionSet',
|
@@ -15201,6 +15145,7 @@ const DefaultSettingsDocument = {
|
|
15201
15145
|
* const { data, loading, error } = useDefaultSettingsQuery({
|
15202
15146
|
* variables: {
|
15203
15147
|
* target: // value for 'target'
|
15148
|
+
* options: // value for 'options'
|
15204
15149
|
* },
|
15205
15150
|
* });
|
15206
15151
|
*/
|
@@ -18784,4 +18729,4 @@ function useViewerSettingsSuspenseQuery(baseOptions) {
|
|
18784
18729
|
...baseOptions
|
18785
18730
|
};
|
18786
18731
|
return Apollo.useSuspenseQuery(ViewerSettingsDocument, options);
|
18787
|
-
}export{AcceptOrganizationInvitationDocument,AccountBillingPreferencesFragmentDoc,AccountOnBoardingDocument,AddContributionRoleDocument,AddResourceToContextDocument,AddTeamMembersDocument,AllContextFragmentDoc,ChangeMemberRoleDocument,ChangeOrgMemberRoleDocument,ChangeOrganizationDocument,ConfigurationFragmentDoc,ConfigurationModelFragmentDoc,ConfigurationUpdateEventFragmentDoc,ContextConfigurationFragmentDoc,CreateOrganizationDocument,CreateTeamDocument,DeclineOrganizationInvitationDocument,DecodeOrganizationInvitationDocument,DecodeOrganizationSharedTokenDocument,DefaultContextFragmentDoc,DefaultResolveSettingsDocument,DefaultSettingFragmentDoc,DefaultSettingsDocument,DeleteUserAccountDocument,FilterIntegrationConfigurationDocument,GetAccountsApplicationPoliciesDocument,GetAccountsDocument,GetAccountsViewerSettingsDocument,GetAllCountriesDocument,GetApplicationPolicyDocument,GetApplicationRoleDocument,GetConfigurationDataDocument,GetConfigurationTargetDocument,GetContextDataDocument,GetContextPropertyDocument,GetContributionRolesDocument,GetDefaultApplicationPermissionsDocument,GetDefaultPermissionsDocument,GetDefaultPolicySettingsDocument,GetDefaultRoleDocument,GetManageableOrganizationsDocument,GetOrgConfigurationDocument,GetOrgContextDocument,GetOrgInvitationMembersDocument,GetOrgMembersWithRolesDocument,GetOrgMembersWithRolesUnsecuredDocument,GetOrgNameFromContextDocument,GetOrgPolicyDocument,GetOrgRoleDocument,GetOrgTeamInvitationsDocument,GetOrgUserDocument,GetOrgWithResourcesConfigurationDocument,GetOrgWithResourcesPolicyDocument,GetOrgWithResourcesRoleDocument,GetOrganizationInvitationDocument,GetOrganizationMembersDocument,GetOrganizationMembersWithNameDocument,GetOrganizationTeamsDocument,GetResourcesConfigurationDocument,GetRoleDocument,GetTeamByNameDocument,GetTeamContextDocument,GetTeamDocument,GetTeamNameFromContextDocument,GetUserAccessRoleDocument,GetUserAccountByAuth0IdDocument,GetUserAccountDocument,GetUserConfigurationDocument,GetUserOrganizationsDocument,GetUserOrganizationsListDocument,GetUserOrganizationsWithRoleDocument,GetUserPermissionsDocument,GetUserRoleDocument,GetUserTokenDetailsDocument,GetUserWithDefaultConfigurationDocument,GetUsersDocument,GetViewerPermissionsDocument,GetViewerSettingsDocument,IAccountServiceAction,IApplicationBillingPlanPolicy,IApplicationRoles,IAuthErrorCodes,IAuthStrategyEnum,IClientCacheTypeNames,IClientContainerService,IClientTypes,IConfigCollectionName,IConfigFragmentName,IConfigurationContributionNames,IConfigurationServiceAction,IContextServiceAction,IDeviceInfoPlatform,IEditPresentationTypes,IFileRefType,IGlobalCurrencies,IGlobalLanguages,IIntegrationWorkflowServiceAction,IInviteStatus,IMailTemplateId,IMenuPosition,IMoleculerCronServiceName,IMoleculerServiceName,IOrgUserRole,IOrgainizationInvitationRole,IOrganizationContextPubSubEvents,IOrganizationServiceAction,IPermissionAction,IPermissionResource,IPermissionType,IPortalLanguage,IPreDefinedRole,IPreferenceProjectIntegrationStatus,IRegistryExtensions,IResourceAuthority,IRole,IRouteParams,ISettingValueType,ISortEnum,ITeamServiceAction,ITokenTypesEnum,IUserBroadcasterAction,IUserOrderBy,IUserServiceAction,IVisibility,InitializeOrgNameInContextDocument,InitializeTeamInContextDocument,InitiateConfigurationValueDocument,MachineConfigurationFragmentDoc,OpenPreferencesSettingsDocument,OrgContextFragmentDoc,OrgNameInContextFragmentDoc,OrgResourceContextFragmentDoc,OrgUserFragmentDoc,OrgUserIdContextFragmentDoc,OrganizationDataFragmentDoc,OrganizationResourceContextDocument,OrganizationUserFragmentDoc,OrganizationsDocument,OverWriteRoleValueFragmentDoc,ReassignConfigurationDocument,RegisterAccountUserDocument,RemoveOrgMemberDocument,RemoveOrganizationDocument,RemoveTeamDocument,RemoveTeamMemberDocument,ResendOrganizationInvitationDocument,ResetUserPasswordDocument,ResolveConfigurationDocument,ResourceDataFragmentDoc,ResourceUserRoleFragmentDoc,RoleTargetFragmentDoc,SendEmailVerificationDocument,SendOrganizationInvitationDocument,SendPhoneOtpDocument,SendUserPasswordResetEmailDocument,SubscribeToConfigurationUpdateDocument,SubscribeToOrganizationContextDocument,SubscribeToPermissionUpdateDocument,SubscribeToPolicyUpdateDocument,TeamContextFragmentDoc,TeamDocument,TeamNameInContextFragmentDoc,TeamWithOrgOnContextFragmentDoc,TeamsDocument,UpdateConfigurationDocument,UpdateConfigurationValueByUriDocument,UpdateConfigurationValueDocument,UpdateOrgMemberTeamsDocument,UpdateOrganizationContextAddResourcesDocument,UpdateOrganizationContextRemoveResourcesDocument,UpdateOrganizationContextUpdateResourcesDocument,UpdateOrganizationDocument,UpdatePolicyValueDocument,UpdateRoleValueDocument,UpdateTeamConfigurationDocument,UpdateUserAccountAliasesDocument,UpdateUserAccountDocument,UserCreationEventFragmentDoc,ValidatePasswordResetOtpDocument,ValidateUserEmailVerificationDocument,VerifyPhoneOtpDocument,ViewerSettingsDocument,useAcceptOrganizationInvitationMutation,useAccountOnBoardingMutation,useAddContributionRoleMutation,useAddResourceToContextMutation,useAddTeamMembersMutation,useChangeMemberRoleMutation,useChangeOrgMemberRoleMutation,useChangeOrganizationMutation,useCreateOrganizationMutation,useCreateTeamMutation,useDeclineOrganizationInvitationMutation,useDecodeOrganizationInvitationLazyQuery,useDecodeOrganizationInvitationQuery,useDecodeOrganizationInvitationSuspenseQuery,useDecodeOrganizationSharedTokenLazyQuery,useDecodeOrganizationSharedTokenQuery,useDecodeOrganizationSharedTokenSuspenseQuery,useDefaultResolveSettingsLazyQuery,useDefaultResolveSettingsQuery,useDefaultResolveSettingsSuspenseQuery,useDefaultSettingsLazyQuery,useDefaultSettingsQuery,useDefaultSettingsSuspenseQuery,useDeleteUserAccountMutation,useFilterIntegrationConfigurationLazyQuery,useFilterIntegrationConfigurationQuery,useFilterIntegrationConfigurationSuspenseQuery,useGetAccountsApplicationPoliciesLazyQuery,useGetAccountsApplicationPoliciesQuery,useGetAccountsApplicationPoliciesSuspenseQuery,useGetAccountsLazyQuery,useGetAccountsQuery,useGetAccountsSuspenseQuery,useGetAccountsViewerSettingsLazyQuery,useGetAccountsViewerSettingsQuery,useGetAccountsViewerSettingsSuspenseQuery,useGetAllCountriesLazyQuery,useGetAllCountriesQuery,useGetAllCountriesSuspenseQuery,useGetApplicationPolicyLazyQuery,useGetApplicationPolicyQuery,useGetApplicationPolicySuspenseQuery,useGetApplicationRoleLazyQuery,useGetApplicationRoleQuery,useGetApplicationRoleSuspenseQuery,useGetConfigurationDataLazyQuery,useGetConfigurationDataQuery,useGetConfigurationDataSuspenseQuery,useGetConfigurationTargetLazyQuery,useGetConfigurationTargetQuery,useGetConfigurationTargetSuspenseQuery,useGetContextDataLazyQuery,useGetContextDataQuery,useGetContextDataSuspenseQuery,useGetContextPropertyLazyQuery,useGetContextPropertyQuery,useGetContextPropertySuspenseQuery,useGetContributionRolesLazyQuery,useGetContributionRolesQuery,useGetContributionRolesSuspenseQuery,useGetDefaultApplicationPermissionsLazyQuery,useGetDefaultApplicationPermissionsQuery,useGetDefaultApplicationPermissionsSuspenseQuery,useGetDefaultPermissionsLazyQuery,useGetDefaultPermissionsQuery,useGetDefaultPermissionsSuspenseQuery,useGetDefaultPolicySettingsLazyQuery,useGetDefaultPolicySettingsQuery,useGetDefaultPolicySettingsSuspenseQuery,useGetDefaultRoleLazyQuery,useGetDefaultRoleQuery,useGetDefaultRoleSuspenseQuery,useGetManageableOrganizationsLazyQuery,useGetManageableOrganizationsQuery,useGetManageableOrganizationsSuspenseQuery,useGetOrgConfigurationLazyQuery,useGetOrgConfigurationQuery,useGetOrgConfigurationSuspenseQuery,useGetOrgContextLazyQuery,useGetOrgContextQuery,useGetOrgContextSuspenseQuery,useGetOrgInvitationMembersLazyQuery,useGetOrgInvitationMembersQuery,useGetOrgInvitationMembersSuspenseQuery,useGetOrgMembersWithRolesLazyQuery,useGetOrgMembersWithRolesQuery,useGetOrgMembersWithRolesSuspenseQuery,useGetOrgMembersWithRolesUnsecuredLazyQuery,useGetOrgMembersWithRolesUnsecuredQuery,useGetOrgMembersWithRolesUnsecuredSuspenseQuery,useGetOrgNameFromContextLazyQuery,useGetOrgNameFromContextQuery,useGetOrgNameFromContextSuspenseQuery,useGetOrgPolicyLazyQuery,useGetOrgPolicyQuery,useGetOrgPolicySuspenseQuery,useGetOrgRoleLazyQuery,useGetOrgRoleQuery,useGetOrgRoleSuspenseQuery,useGetOrgTeamInvitationsLazyQuery,useGetOrgTeamInvitationsQuery,useGetOrgTeamInvitationsSuspenseQuery,useGetOrgUserLazyQuery,useGetOrgUserQuery,useGetOrgUserSuspenseQuery,useGetOrgWithResourcesConfigurationLazyQuery,useGetOrgWithResourcesConfigurationQuery,useGetOrgWithResourcesConfigurationSuspenseQuery,useGetOrgWithResourcesPolicyLazyQuery,useGetOrgWithResourcesPolicyQuery,useGetOrgWithResourcesPolicySuspenseQuery,useGetOrgWithResourcesRoleLazyQuery,useGetOrgWithResourcesRoleQuery,useGetOrgWithResourcesRoleSuspenseQuery,useGetOrganizationInvitationLazyQuery,useGetOrganizationInvitationQuery,useGetOrganizationInvitationSuspenseQuery,useGetOrganizationMembersLazyQuery,useGetOrganizationMembersQuery,useGetOrganizationMembersSuspenseQuery,useGetOrganizationMembersWithNameLazyQuery,useGetOrganizationMembersWithNameQuery,useGetOrganizationMembersWithNameSuspenseQuery,useGetOrganizationTeamsLazyQuery,useGetOrganizationTeamsQuery,useGetOrganizationTeamsSuspenseQuery,useGetResourcesConfigurationLazyQuery,useGetResourcesConfigurationQuery,useGetResourcesConfigurationSuspenseQuery,useGetRoleLazyQuery,useGetRoleQuery,useGetRoleSuspenseQuery,useGetTeamByNameLazyQuery,useGetTeamByNameQuery,useGetTeamByNameSuspenseQuery,useGetTeamContextLazyQuery,useGetTeamContextQuery,useGetTeamContextSuspenseQuery,useGetTeamLazyQuery,useGetTeamNameFromContextLazyQuery,useGetTeamNameFromContextQuery,useGetTeamNameFromContextSuspenseQuery,useGetTeamQuery,useGetTeamSuspenseQuery,useGetUserAccessRoleLazyQuery,useGetUserAccessRoleQuery,useGetUserAccessRoleSuspenseQuery,useGetUserAccountByAuth0IdLazyQuery,useGetUserAccountByAuth0IdQuery,useGetUserAccountByAuth0IdSuspenseQuery,useGetUserAccountLazyQuery,useGetUserAccountQuery,useGetUserAccountSuspenseQuery,useGetUserConfigurationLazyQuery,useGetUserConfigurationQuery,useGetUserConfigurationSuspenseQuery,useGetUserOrganizationsLazyQuery,useGetUserOrganizationsListLazyQuery,useGetUserOrganizationsListQuery,useGetUserOrganizationsListSuspenseQuery,useGetUserOrganizationsQuery,useGetUserOrganizationsSuspenseQuery,useGetUserOrganizationsWithRoleLazyQuery,useGetUserOrganizationsWithRoleQuery,useGetUserOrganizationsWithRoleSuspenseQuery,useGetUserPermissionsLazyQuery,useGetUserPermissionsQuery,useGetUserPermissionsSuspenseQuery,useGetUserRoleLazyQuery,useGetUserRoleQuery,useGetUserRoleSuspenseQuery,useGetUserTokenDetailsLazyQuery,useGetUserTokenDetailsQuery,useGetUserTokenDetailsSuspenseQuery,useGetUserWithDefaultConfigurationLazyQuery,useGetUserWithDefaultConfigurationQuery,useGetUserWithDefaultConfigurationSuspenseQuery,useGetUsersLazyQuery,useGetUsersQuery,useGetUsersSuspenseQuery,useGetViewerPermissionsLazyQuery,useGetViewerPermissionsQuery,useGetViewerPermissionsSuspenseQuery,useGetViewerSettingsLazyQuery,useGetViewerSettingsQuery,useGetViewerSettingsSuspenseQuery,useInitializeOrgNameInContextMutation,useInitializeTeamInContextMutation,useInitiateConfigurationValueMutation,useOpenPreferencesSettingsLazyQuery,useOpenPreferencesSettingsQuery,useOpenPreferencesSettingsSuspenseQuery,useOrganizationResourceContextLazyQuery,useOrganizationResourceContextQuery,useOrganizationResourceContextSuspenseQuery,useOrganizationsLazyQuery,useOrganizationsQuery,useOrganizationsSuspenseQuery,useReassignConfigurationMutation,useRegisterAccountUserMutation,useRemoveOrgMemberMutation,useRemoveOrganizationMutation,useRemoveTeamMemberMutation,useRemoveTeamMutation,useResendOrganizationInvitationMutation,useResetUserPasswordMutation,useResolveConfigurationLazyQuery,useResolveConfigurationQuery,useResolveConfigurationSuspenseQuery,useSendEmailVerificationMutation,useSendOrganizationInvitationMutation,useSendPhoneOtpMutation,useSendUserPasswordResetEmailMutation,useSubscribeToConfigurationUpdateSubscription,useSubscribeToOrganizationContextSubscription,useSubscribeToPermissionUpdateSubscription,useSubscribeToPolicyUpdateSubscription,useTeamLazyQuery,useTeamQuery,useTeamSuspenseQuery,useTeamsLazyQuery,useTeamsQuery,useTeamsSuspenseQuery,useUpdateConfigurationMutation,useUpdateConfigurationValueByUriMutation,useUpdateConfigurationValueMutation,useUpdateOrgMemberTeamsMutation,useUpdateOrganizationContextAddResourcesMutation,useUpdateOrganizationContextRemoveResourcesMutation,useUpdateOrganizationContextUpdateResourcesMutation,useUpdateOrganizationMutation,useUpdatePolicyValueMutation,useUpdateRoleValueMutation,useUpdateTeamConfigurationMutation,useUpdateUserAccountAliasesMutation,useUpdateUserAccountMutation,useValidatePasswordResetOtpMutation,useValidateUserEmailVerificationMutation,useVerifyPhoneOtpMutation,useViewerSettingsLazyQuery,useViewerSettingsQuery,useViewerSettingsSuspenseQuery};//# sourceMappingURL=generated-models.js.map
|
18732
|
+
}export{AcceptOrganizationInvitationDocument,AccountBillingPreferencesFragmentDoc,AccountOnBoardingDocument,AddContributionRoleDocument,AddResourceToContextDocument,AddTeamMembersDocument,AllContextFragmentDoc,ChangeMemberRoleDocument,ChangeOrgMemberRoleDocument,ChangeOrganizationDocument,ConfigurationFragmentDoc,ConfigurationModelFragmentDoc,ConfigurationUpdateEventFragmentDoc,ContextConfigurationFragmentDoc,CreateOrganizationDocument,CreateTeamDocument,DeclineOrganizationInvitationDocument,DecodeOrganizationInvitationDocument,DecodeOrganizationSharedTokenDocument,DefaultContextFragmentDoc,DefaultResolveSettingsDocument,DefaultSettingFragmentDoc,DefaultSettingsDocument,DeleteUserAccountDocument,FilterIntegrationConfigurationDocument,GetAccountsApplicationPoliciesDocument,GetAccountsDocument,GetAccountsViewerSettingsDocument,GetAllCountriesDocument,GetApplicationPolicyDocument,GetApplicationRoleDocument,GetConfigurationDataDocument,GetConfigurationTargetDocument,GetContextDataDocument,GetContextPropertyDocument,GetContributionRolesDocument,GetCurrentPagePermissionsDocument,GetDefaultApplicationPermissionsDocument,GetDefaultPermissionsDocument,GetDefaultPolicySettingsDocument,GetDefaultRoleDocument,GetManageableOrganizationsDocument,GetOrgConfigurationDocument,GetOrgContextDocument,GetOrgInvitationMembersDocument,GetOrgMembersWithRolesDocument,GetOrgMembersWithRolesUnsecuredDocument,GetOrgNameFromContextDocument,GetOrgPolicyDocument,GetOrgRoleDocument,GetOrgTeamInvitationsDocument,GetOrgUserDocument,GetOrgWithResourcesConfigurationDocument,GetOrgWithResourcesPolicyDocument,GetOrgWithResourcesRoleDocument,GetOrganizationInvitationDocument,GetOrganizationMembersDocument,GetOrganizationMembersWithNameDocument,GetOrganizationTeamsDocument,GetPageSettingsDocument,GetResourcesConfigurationDocument,GetRoleDocument,GetTeamByNameDocument,GetTeamDocument,GetUserAccessRoleDocument,GetUserAccountByAuth0IdDocument,GetUserAccountDocument,GetUserConfigurationDocument,GetUserOrganizationsDocument,GetUserOrganizationsListDocument,GetUserOrganizationsWithRoleDocument,GetUserRoleDocument,GetUserTokenDetailsDocument,GetUserWithDefaultConfigurationDocument,GetUsersDocument,GetViewerPermissionsDocument,GetViewerSettingsDocument,IAccountServiceAction,IApplicationBillingPlanPolicy,IApplicationRoles,IAuthErrorCodes,IAuthStrategyEnum,IClientCacheTypeNames,IClientContainerService,IClientTypes,IConfigCollectionName,IConfigFragmentName,IConfigurationContributionNames,IConfigurationServiceAction,IContextServiceAction,IDeviceInfoPlatform,IEditPresentationTypes,IFileRefType,IGlobalCurrencies,IGlobalLanguages,IIntegrationWorkflowServiceAction,IInviteStatus,IMailTemplateId,IMenuPosition,IMoleculerCronServiceName,IMoleculerServiceName,IOrgUserRole,IOrgainizationInvitationRole,IOrganizationContextPubSubEvents,IOrganizationServiceAction,IPermissionAction,IPermissionResource,IPermissionType,IPortalLanguage,IPreDefinedRole,IPreferenceProjectIntegrationStatus,IRegistryExtensions,IResourceAuthority,IRole,IRouteParams,ISettingValueType,ISortEnum,ITeamServiceAction,ITokenTypesEnum,IUserBroadcasterAction,IUserOrderBy,IUserServiceAction,IVisibility,InitializeOrgNameInContextDocument,InitiateConfigurationValueDocument,MachineConfigurationFragmentDoc,OpenPreferencesSettingsDocument,OrgContextFragmentDoc,OrgNameInContextFragmentDoc,OrgResourceContextFragmentDoc,OrgUserFragmentDoc,OrgUserIdContextFragmentDoc,OrganizationDataFragmentDoc,OrganizationResourceContextDocument,OrganizationUserFragmentDoc,OrganizationsDocument,OverWriteRoleValueFragmentDoc,ReassignConfigurationDocument,RegisterAccountUserDocument,RemoveOrgMemberDocument,RemoveOrganizationDocument,RemoveTeamDocument,RemoveTeamMemberDocument,ResendOrganizationInvitationDocument,ResetUserPasswordDocument,ResolveConfigurationDocument,ResourceDataFragmentDoc,ResourceUserRoleFragmentDoc,RoleTargetFragmentDoc,SendEmailVerificationDocument,SendOrganizationInvitationDocument,SendPhoneOtpDocument,SendUserPasswordResetEmailDocument,SubscribeToConfigurationUpdateDocument,SubscribeToOrganizationContextDocument,SubscribeToPermissionUpdateDocument,SubscribeToPolicyUpdateDocument,TeamDocument,TeamsDocument,UpdateConfigurationDocument,UpdateConfigurationValueByUriDocument,UpdateConfigurationValueDocument,UpdateOrgMemberTeamsDocument,UpdateOrganizationContextAddResourcesDocument,UpdateOrganizationContextRemoveResourcesDocument,UpdateOrganizationContextUpdateResourcesDocument,UpdateOrganizationDocument,UpdatePolicyValueDocument,UpdateRoleValueDocument,UpdateTeamConfigurationDocument,UpdateUserAccountAliasesDocument,UpdateUserAccountDocument,UserCreationEventFragmentDoc,UserOrgContextFragmentDoc,ValidatePasswordResetOtpDocument,ValidateUserEmailVerificationDocument,VerifyPhoneOtpDocument,ViewerSettingsDocument,WriteSettingsDocument,useAcceptOrganizationInvitationMutation,useAccountOnBoardingMutation,useAddContributionRoleMutation,useAddResourceToContextMutation,useAddTeamMembersMutation,useChangeMemberRoleMutation,useChangeOrgMemberRoleMutation,useChangeOrganizationMutation,useCreateOrganizationMutation,useCreateTeamMutation,useDeclineOrganizationInvitationMutation,useDecodeOrganizationInvitationLazyQuery,useDecodeOrganizationInvitationQuery,useDecodeOrganizationInvitationSuspenseQuery,useDecodeOrganizationSharedTokenLazyQuery,useDecodeOrganizationSharedTokenQuery,useDecodeOrganizationSharedTokenSuspenseQuery,useDefaultResolveSettingsLazyQuery,useDefaultResolveSettingsQuery,useDefaultResolveSettingsSuspenseQuery,useDefaultSettingsLazyQuery,useDefaultSettingsQuery,useDefaultSettingsSuspenseQuery,useDeleteUserAccountMutation,useFilterIntegrationConfigurationLazyQuery,useFilterIntegrationConfigurationQuery,useFilterIntegrationConfigurationSuspenseQuery,useGetAccountsApplicationPoliciesLazyQuery,useGetAccountsApplicationPoliciesQuery,useGetAccountsApplicationPoliciesSuspenseQuery,useGetAccountsLazyQuery,useGetAccountsQuery,useGetAccountsSuspenseQuery,useGetAccountsViewerSettingsLazyQuery,useGetAccountsViewerSettingsQuery,useGetAccountsViewerSettingsSuspenseQuery,useGetAllCountriesLazyQuery,useGetAllCountriesQuery,useGetAllCountriesSuspenseQuery,useGetApplicationPolicyLazyQuery,useGetApplicationPolicyQuery,useGetApplicationPolicySuspenseQuery,useGetApplicationRoleLazyQuery,useGetApplicationRoleQuery,useGetApplicationRoleSuspenseQuery,useGetConfigurationDataLazyQuery,useGetConfigurationDataQuery,useGetConfigurationDataSuspenseQuery,useGetConfigurationTargetLazyQuery,useGetConfigurationTargetQuery,useGetConfigurationTargetSuspenseQuery,useGetContextDataLazyQuery,useGetContextDataQuery,useGetContextDataSuspenseQuery,useGetContextPropertyLazyQuery,useGetContextPropertyQuery,useGetContextPropertySuspenseQuery,useGetContributionRolesLazyQuery,useGetContributionRolesQuery,useGetContributionRolesSuspenseQuery,useGetCurrentPagePermissionsLazyQuery,useGetCurrentPagePermissionsQuery,useGetCurrentPagePermissionsSuspenseQuery,useGetDefaultApplicationPermissionsLazyQuery,useGetDefaultApplicationPermissionsQuery,useGetDefaultApplicationPermissionsSuspenseQuery,useGetDefaultPermissionsLazyQuery,useGetDefaultPermissionsQuery,useGetDefaultPermissionsSuspenseQuery,useGetDefaultPolicySettingsLazyQuery,useGetDefaultPolicySettingsQuery,useGetDefaultPolicySettingsSuspenseQuery,useGetDefaultRoleLazyQuery,useGetDefaultRoleQuery,useGetDefaultRoleSuspenseQuery,useGetManageableOrganizationsLazyQuery,useGetManageableOrganizationsQuery,useGetManageableOrganizationsSuspenseQuery,useGetOrgConfigurationLazyQuery,useGetOrgConfigurationQuery,useGetOrgConfigurationSuspenseQuery,useGetOrgContextLazyQuery,useGetOrgContextQuery,useGetOrgContextSuspenseQuery,useGetOrgInvitationMembersLazyQuery,useGetOrgInvitationMembersQuery,useGetOrgInvitationMembersSuspenseQuery,useGetOrgMembersWithRolesLazyQuery,useGetOrgMembersWithRolesQuery,useGetOrgMembersWithRolesSuspenseQuery,useGetOrgMembersWithRolesUnsecuredLazyQuery,useGetOrgMembersWithRolesUnsecuredQuery,useGetOrgMembersWithRolesUnsecuredSuspenseQuery,useGetOrgNameFromContextLazyQuery,useGetOrgNameFromContextQuery,useGetOrgNameFromContextSuspenseQuery,useGetOrgPolicyLazyQuery,useGetOrgPolicyQuery,useGetOrgPolicySuspenseQuery,useGetOrgRoleLazyQuery,useGetOrgRoleQuery,useGetOrgRoleSuspenseQuery,useGetOrgTeamInvitationsLazyQuery,useGetOrgTeamInvitationsQuery,useGetOrgTeamInvitationsSuspenseQuery,useGetOrgUserLazyQuery,useGetOrgUserQuery,useGetOrgUserSuspenseQuery,useGetOrgWithResourcesConfigurationLazyQuery,useGetOrgWithResourcesConfigurationQuery,useGetOrgWithResourcesConfigurationSuspenseQuery,useGetOrgWithResourcesPolicyLazyQuery,useGetOrgWithResourcesPolicyQuery,useGetOrgWithResourcesPolicySuspenseQuery,useGetOrgWithResourcesRoleLazyQuery,useGetOrgWithResourcesRoleQuery,useGetOrgWithResourcesRoleSuspenseQuery,useGetOrganizationInvitationLazyQuery,useGetOrganizationInvitationQuery,useGetOrganizationInvitationSuspenseQuery,useGetOrganizationMembersLazyQuery,useGetOrganizationMembersQuery,useGetOrganizationMembersSuspenseQuery,useGetOrganizationMembersWithNameLazyQuery,useGetOrganizationMembersWithNameQuery,useGetOrganizationMembersWithNameSuspenseQuery,useGetOrganizationTeamsLazyQuery,useGetOrganizationTeamsQuery,useGetOrganizationTeamsSuspenseQuery,useGetPageSettingsLazyQuery,useGetPageSettingsQuery,useGetPageSettingsSuspenseQuery,useGetResourcesConfigurationLazyQuery,useGetResourcesConfigurationQuery,useGetResourcesConfigurationSuspenseQuery,useGetRoleLazyQuery,useGetRoleQuery,useGetRoleSuspenseQuery,useGetTeamByNameLazyQuery,useGetTeamByNameQuery,useGetTeamByNameSuspenseQuery,useGetTeamLazyQuery,useGetTeamQuery,useGetTeamSuspenseQuery,useGetUserAccessRoleLazyQuery,useGetUserAccessRoleQuery,useGetUserAccessRoleSuspenseQuery,useGetUserAccountByAuth0IdLazyQuery,useGetUserAccountByAuth0IdQuery,useGetUserAccountByAuth0IdSuspenseQuery,useGetUserAccountLazyQuery,useGetUserAccountQuery,useGetUserAccountSuspenseQuery,useGetUserConfigurationLazyQuery,useGetUserConfigurationQuery,useGetUserConfigurationSuspenseQuery,useGetUserOrganizationsLazyQuery,useGetUserOrganizationsListLazyQuery,useGetUserOrganizationsListQuery,useGetUserOrganizationsListSuspenseQuery,useGetUserOrganizationsQuery,useGetUserOrganizationsSuspenseQuery,useGetUserOrganizationsWithRoleLazyQuery,useGetUserOrganizationsWithRoleQuery,useGetUserOrganizationsWithRoleSuspenseQuery,useGetUserRoleLazyQuery,useGetUserRoleQuery,useGetUserRoleSuspenseQuery,useGetUserTokenDetailsLazyQuery,useGetUserTokenDetailsQuery,useGetUserTokenDetailsSuspenseQuery,useGetUserWithDefaultConfigurationLazyQuery,useGetUserWithDefaultConfigurationQuery,useGetUserWithDefaultConfigurationSuspenseQuery,useGetUsersLazyQuery,useGetUsersQuery,useGetUsersSuspenseQuery,useGetViewerPermissionsLazyQuery,useGetViewerPermissionsQuery,useGetViewerPermissionsSuspenseQuery,useGetViewerSettingsLazyQuery,useGetViewerSettingsQuery,useGetViewerSettingsSuspenseQuery,useInitializeOrgNameInContextMutation,useInitiateConfigurationValueMutation,useOpenPreferencesSettingsLazyQuery,useOpenPreferencesSettingsQuery,useOpenPreferencesSettingsSuspenseQuery,useOrganizationResourceContextLazyQuery,useOrganizationResourceContextQuery,useOrganizationResourceContextSuspenseQuery,useOrganizationsLazyQuery,useOrganizationsQuery,useOrganizationsSuspenseQuery,useReassignConfigurationMutation,useRegisterAccountUserMutation,useRemoveOrgMemberMutation,useRemoveOrganizationMutation,useRemoveTeamMemberMutation,useRemoveTeamMutation,useResendOrganizationInvitationMutation,useResetUserPasswordMutation,useResolveConfigurationLazyQuery,useResolveConfigurationQuery,useResolveConfigurationSuspenseQuery,useSendEmailVerificationMutation,useSendOrganizationInvitationMutation,useSendPhoneOtpMutation,useSendUserPasswordResetEmailMutation,useSubscribeToConfigurationUpdateSubscription,useSubscribeToOrganizationContextSubscription,useSubscribeToPermissionUpdateSubscription,useSubscribeToPolicyUpdateSubscription,useTeamLazyQuery,useTeamQuery,useTeamSuspenseQuery,useTeamsLazyQuery,useTeamsQuery,useTeamsSuspenseQuery,useUpdateConfigurationMutation,useUpdateConfigurationValueByUriMutation,useUpdateConfigurationValueMutation,useUpdateOrgMemberTeamsMutation,useUpdateOrganizationContextAddResourcesMutation,useUpdateOrganizationContextRemoveResourcesMutation,useUpdateOrganizationContextUpdateResourcesMutation,useUpdateOrganizationMutation,useUpdatePolicyValueMutation,useUpdateRoleValueMutation,useUpdateTeamConfigurationMutation,useUpdateUserAccountAliasesMutation,useUpdateUserAccountMutation,useValidatePasswordResetOtpMutation,useValidateUserEmailVerificationMutation,useVerifyPhoneOtpMutation,useViewerSettingsLazyQuery,useViewerSettingsQuery,useViewerSettingsSuspenseQuery,useWriteSettingsMutation};//# sourceMappingURL=generated-models.js.map
|