@adminide-stack/core 9.2.1-alpha.5 → 9.2.1-alpha.51
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/constants/configuration.d.ts +1 -0
- package/lib/constants/configuration.js +2 -1
- package/lib/constants/configuration.js.map +1 -1
- package/lib/core/configurations/configuration.js.map +1 -1
- package/lib/core/configurations/models/ConfigurationModel.d.ts +1 -0
- package/lib/core/configurations/models/ConfigurationModel.js +7 -0
- package/lib/core/configurations/models/ConfigurationModel.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/interfaces/apollo-context.d.ts +2 -1
- package/lib/interfaces/configuration/configuration-server-service.d.ts +2 -2
- package/lib/interfaces/configuration/configuration.d.ts +8 -25
- package/lib/interfaces/configuration/configuration.js.map +1 -1
- package/lib/interfaces/configuration/configurationRegistry.d.ts +57 -37
- package/lib/interfaces/configuration/defaultSettingSnapshot.d.ts +9 -0
- package/lib/interfaces/configuration/index.d.ts +1 -0
- package/lib/interfaces/contex-key-service.d.ts +2 -2
- package/lib/interfaces/generated/generated-models.d.ts +829 -187
- package/lib/interfaces/generated/generated-models.js +986 -672
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/preferences-service.d.ts +7 -5
- 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/utils/cdecodeUri.d.ts +10 -18
- package/lib/utils/cdecodeUri.js +71 -7
- package/lib/utils/cdecodeUri.js.map +1 -1
- package/lib/utils/configuration-utils.d.ts +11 -3
- package/lib/utils/configuration-utils.js +12 -2
- package/lib/utils/configuration-utils.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/getUserAlias.d.ts +2 -0
- package/lib/utils/getUserAlias.js +9 -0
- package/lib/utils/getUserAlias.js.map +1 -0
- package/lib/utils/index.d.ts +6 -1
- package/lib/utils/nodeContext.d.ts +7 -0
- package/lib/utils/nodeContext.js +18 -0
- package/lib/utils/nodeContext.js.map +1 -0
- 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 +80 -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/reviveUri.js +13 -0
- package/lib/utils/reviveUri.js.map +1 -0
- package/package.json +4 -4
- package/lib/utils/uri.js +0 -24
- package/lib/utils/uri.js.map +0 -1
- /package/lib/utils/{uri.d.ts → resourceUriConversion.d.ts} +0 -0
@@ -2,6 +2,7 @@ export{ConfigurationTarget}from'../configuration/configuration.js';import*as Apo
|
|
2
2
|
var IAccountServiceAction;
|
3
3
|
(function (IAccountServiceAction) {
|
4
4
|
IAccountServiceAction["AccountOnBoarding"] = "accountOnBoarding";
|
5
|
+
IAccountServiceAction["AddAccountsLoginHistoryRecords"] = "addAccountsLoginHistoryRecords";
|
5
6
|
IAccountServiceAction["AddUserToken"] = "addUserToken";
|
6
7
|
IAccountServiceAction["CreateAccount"] = "createAccount";
|
7
8
|
IAccountServiceAction["CreateDefaultAccount"] = "createDefaultAccount";
|
@@ -12,6 +13,7 @@ var IAccountServiceAction;
|
|
12
13
|
IAccountServiceAction["FindAccountByEmail"] = "findAccountByEmail";
|
13
14
|
IAccountServiceAction["FindAccountById"] = "findAccountById";
|
14
15
|
IAccountServiceAction["FindAccountByUser"] = "findAccountByUser";
|
16
|
+
IAccountServiceAction["GetAccountsLoginRecords"] = "getAccountsLoginRecords";
|
15
17
|
IAccountServiceAction["GetAllUserTokens"] = "getAllUserTokens";
|
16
18
|
IAccountServiceAction["GetUserAccountByEmail"] = "getUserAccountByEmail";
|
17
19
|
IAccountServiceAction["GetUserTokenDetails"] = "getUserTokenDetails";
|
@@ -31,6 +33,7 @@ var IAccountServiceAction;
|
|
31
33
|
IAccountServiceAction["UpdateAccount"] = "updateAccount";
|
32
34
|
IAccountServiceAction["UpdateUserAccount"] = "updateUserAccount";
|
33
35
|
IAccountServiceAction["UpdateUserAccountAliases"] = "updateUserAccountAliases";
|
36
|
+
IAccountServiceAction["UpdateUserProfile"] = "updateUserProfile";
|
34
37
|
IAccountServiceAction["ValidateEmailVerificationCode"] = "validateEmailVerificationCode";
|
35
38
|
IAccountServiceAction["VerifyUserEmailVerificationToken"] = "verifyUserEmailVerificationToken";
|
36
39
|
})(IAccountServiceAction || (IAccountServiceAction = {}));
|
@@ -128,7 +131,6 @@ var IClientContainerService;
|
|
128
131
|
IClientContainerService["IOrganizationContextService"] = "IOrganizationContextService";
|
129
132
|
IClientContainerService["IPermissionService"] = "IPermissionService";
|
130
133
|
IClientContainerService["IPreferenceService"] = "IPreferenceService";
|
131
|
-
IClientContainerService["ITeamKeyContextService"] = "ITeamKeyContextService";
|
132
134
|
IClientContainerService["IUserOrgKeyContextService"] = "IUserOrgKeyContextService";
|
133
135
|
})(IClientContainerService || (IClientContainerService = {}));
|
134
136
|
var IClientTypes;
|
@@ -151,6 +153,13 @@ var IConfigCollectionName;
|
|
151
153
|
IConfigCollectionName["Teams"] = "teams";
|
152
154
|
IConfigCollectionName["Workspaces"] = "workspaces";
|
153
155
|
})(IConfigCollectionName || (IConfigCollectionName = {}));
|
156
|
+
var IConfigExtensionName;
|
157
|
+
(function (IConfigExtensionName) {
|
158
|
+
IConfigExtensionName["Permissions"] = "permissions";
|
159
|
+
IConfigExtensionName["Policies"] = "policies";
|
160
|
+
IConfigExtensionName["Settings"] = "settings";
|
161
|
+
IConfigExtensionName["Userrole"] = "userrole";
|
162
|
+
})(IConfigExtensionName || (IConfigExtensionName = {}));
|
154
163
|
var IConfigFragmentName;
|
155
164
|
(function (IConfigFragmentName) {
|
156
165
|
IConfigFragmentName["ApplicationPolicies"] = "applicationPolicies";
|
@@ -159,6 +168,7 @@ var IConfigFragmentName;
|
|
159
168
|
IConfigFragmentName["ContributionRoles"] = "contributionRoles";
|
160
169
|
/** Organization Members Document with role value */
|
161
170
|
IConfigFragmentName["OrgMembers"] = "orgMembers";
|
171
|
+
IConfigFragmentName["Permissions"] = "permissions";
|
162
172
|
IConfigFragmentName["Policies"] = "policies";
|
163
173
|
IConfigFragmentName["Resources"] = "resources";
|
164
174
|
IConfigFragmentName["Roles"] = "roles";
|
@@ -168,12 +178,26 @@ var IConfigFragmentName;
|
|
168
178
|
})(IConfigFragmentName || (IConfigFragmentName = {}));
|
169
179
|
var IConfigurationContributionNames;
|
170
180
|
(function (IConfigurationContributionNames) {
|
171
|
-
IConfigurationContributionNames["DefaultPermissions"] = "defaultPermissions";
|
172
|
-
IConfigurationContributionNames["DefaultPolicies"] = "defaultPolicies";
|
173
|
-
IConfigurationContributionNames["DefaultSettings"] = "defaultSettings";
|
174
181
|
/** Integration settings */
|
175
182
|
IConfigurationContributionNames["Integration"] = "integration";
|
183
|
+
IConfigurationContributionNames["Permissions"] = "permissions";
|
184
|
+
IConfigurationContributionNames["Policies"] = "policies";
|
185
|
+
IConfigurationContributionNames["Settings"] = "settings";
|
186
|
+
IConfigurationContributionNames["Userrole"] = "userrole";
|
176
187
|
})(IConfigurationContributionNames || (IConfigurationContributionNames = {}));
|
188
|
+
var IConfigurationExtSourceType;
|
189
|
+
(function (IConfigurationExtSourceType) {
|
190
|
+
IConfigurationExtSourceType["ExtensionInfo"] = "EXTENSION_INFO";
|
191
|
+
IConfigurationExtSourceType["StringValue"] = "STRING_VALUE";
|
192
|
+
})(IConfigurationExtSourceType || (IConfigurationExtSourceType = {}));
|
193
|
+
var IConfigurationSchemaId;
|
194
|
+
(function (IConfigurationSchemaId) {
|
195
|
+
IConfigurationSchemaId["Configuration"] = "configuration";
|
196
|
+
IConfigurationSchemaId["Integration"] = "integration";
|
197
|
+
IConfigurationSchemaId["Permission"] = "permission";
|
198
|
+
IConfigurationSchemaId["Policy"] = "policy";
|
199
|
+
IConfigurationSchemaId["UserRole"] = "userRole";
|
200
|
+
})(IConfigurationSchemaId || (IConfigurationSchemaId = {}));
|
177
201
|
var IConfigurationServiceAction;
|
178
202
|
(function (IConfigurationServiceAction) {
|
179
203
|
IConfigurationServiceAction["GetAllConfigurationData"] = "getAllConfigurationData";
|
@@ -388,11 +412,9 @@ var IPreferenceProjectIntegrationStatus;
|
|
388
412
|
/** Registry Extensions */
|
389
413
|
var IRegistryExtensions;
|
390
414
|
(function (IRegistryExtensions) {
|
391
|
-
IRegistryExtensions["
|
415
|
+
IRegistryExtensions["DefaultConfiguration"] = "DefaultConfiguration";
|
392
416
|
IRegistryExtensions["JsonContribution"] = "JSONContribution";
|
393
|
-
IRegistryExtensions["
|
394
|
-
IRegistryExtensions["Policies"] = "Policies";
|
395
|
-
IRegistryExtensions["UserRole"] = "UserRole";
|
417
|
+
IRegistryExtensions["Integration"] = "integration";
|
396
418
|
})(IRegistryExtensions || (IRegistryExtensions = {}));
|
397
419
|
var IResourceAuthority;
|
398
420
|
(function (IResourceAuthority) {
|
@@ -529,12 +551,6 @@ const AllContextFragmentDoc = {
|
|
529
551
|
selectionSet: {
|
530
552
|
kind: 'SelectionSet',
|
531
553
|
selections: [{
|
532
|
-
kind: 'Field',
|
533
|
-
name: {
|
534
|
-
kind: 'Name',
|
535
|
-
value: 'teamResource'
|
536
|
-
}
|
537
|
-
}, {
|
538
554
|
kind: 'Field',
|
539
555
|
name: {
|
540
556
|
kind: 'Name',
|
@@ -1420,12 +1436,6 @@ const OrgUserIdContextFragmentDoc = {
|
|
1420
1436
|
kind: 'Name',
|
1421
1437
|
value: 'userId'
|
1422
1438
|
}
|
1423
|
-
}, {
|
1424
|
-
kind: 'Field',
|
1425
|
-
name: {
|
1426
|
-
kind: 'Name',
|
1427
|
-
value: 'teamName'
|
1428
|
-
}
|
1429
1439
|
}]
|
1430
1440
|
}
|
1431
1441
|
}]
|
@@ -1601,99 +1611,6 @@ const RoleTargetFragmentDoc = {
|
|
1601
1611
|
}
|
1602
1612
|
}]
|
1603
1613
|
};
|
1604
|
-
const TeamNameInContextFragmentDoc = {
|
1605
|
-
kind: 'Document',
|
1606
|
-
definitions: [{
|
1607
|
-
kind: 'FragmentDefinition',
|
1608
|
-
name: {
|
1609
|
-
kind: 'Name',
|
1610
|
-
value: 'TeamNameInContext'
|
1611
|
-
},
|
1612
|
-
typeCondition: {
|
1613
|
-
kind: 'NamedType',
|
1614
|
-
name: {
|
1615
|
-
kind: 'Name',
|
1616
|
-
value: 'Context'
|
1617
|
-
}
|
1618
|
-
},
|
1619
|
-
selectionSet: {
|
1620
|
-
kind: 'SelectionSet',
|
1621
|
-
selections: [{
|
1622
|
-
kind: 'Field',
|
1623
|
-
name: {
|
1624
|
-
kind: 'Name',
|
1625
|
-
value: 'teamName'
|
1626
|
-
}
|
1627
|
-
}]
|
1628
|
-
}
|
1629
|
-
}]
|
1630
|
-
};
|
1631
|
-
const TeamContextFragmentDoc = {
|
1632
|
-
kind: 'Document',
|
1633
|
-
definitions: [{
|
1634
|
-
kind: 'FragmentDefinition',
|
1635
|
-
name: {
|
1636
|
-
kind: 'Name',
|
1637
|
-
value: 'TeamContext'
|
1638
|
-
},
|
1639
|
-
typeCondition: {
|
1640
|
-
kind: 'NamedType',
|
1641
|
-
name: {
|
1642
|
-
kind: 'Name',
|
1643
|
-
value: 'Context'
|
1644
|
-
}
|
1645
|
-
},
|
1646
|
-
selectionSet: {
|
1647
|
-
kind: 'SelectionSet',
|
1648
|
-
selections: [{
|
1649
|
-
kind: 'Field',
|
1650
|
-
name: {
|
1651
|
-
kind: 'Name',
|
1652
|
-
value: 'teamName'
|
1653
|
-
}
|
1654
|
-
}, {
|
1655
|
-
kind: 'Field',
|
1656
|
-
name: {
|
1657
|
-
kind: 'Name',
|
1658
|
-
value: 'teamUri'
|
1659
|
-
}
|
1660
|
-
}]
|
1661
|
-
}
|
1662
|
-
}]
|
1663
|
-
};
|
1664
|
-
const TeamWithOrgOnContextFragmentDoc = {
|
1665
|
-
kind: 'Document',
|
1666
|
-
definitions: [{
|
1667
|
-
kind: 'FragmentDefinition',
|
1668
|
-
name: {
|
1669
|
-
kind: 'Name',
|
1670
|
-
value: 'TeamWithOrgOnContext'
|
1671
|
-
},
|
1672
|
-
typeCondition: {
|
1673
|
-
kind: 'NamedType',
|
1674
|
-
name: {
|
1675
|
-
kind: 'Name',
|
1676
|
-
value: 'Context'
|
1677
|
-
}
|
1678
|
-
},
|
1679
|
-
selectionSet: {
|
1680
|
-
kind: 'SelectionSet',
|
1681
|
-
selections: [{
|
1682
|
-
kind: 'Field',
|
1683
|
-
name: {
|
1684
|
-
kind: 'Name',
|
1685
|
-
value: 'orgName'
|
1686
|
-
}
|
1687
|
-
}, {
|
1688
|
-
kind: 'Field',
|
1689
|
-
name: {
|
1690
|
-
kind: 'Name',
|
1691
|
-
value: 'teamName'
|
1692
|
-
}
|
1693
|
-
}]
|
1694
|
-
}
|
1695
|
-
}]
|
1696
|
-
};
|
1697
1614
|
const AccountBillingPreferencesFragmentDoc = {
|
1698
1615
|
kind: 'Document',
|
1699
1616
|
definitions: [{
|
@@ -2109,6 +2026,118 @@ function useAccountOnBoardingMutation(baseOptions) {
|
|
2109
2026
|
};
|
2110
2027
|
return Apollo.useMutation(AccountOnBoardingDocument, options);
|
2111
2028
|
}
|
2029
|
+
const AddAccountLoginHistoryRecordDocument = {
|
2030
|
+
kind: 'Document',
|
2031
|
+
definitions: [{
|
2032
|
+
kind: 'OperationDefinition',
|
2033
|
+
operation: 'mutation',
|
2034
|
+
name: {
|
2035
|
+
kind: 'Name',
|
2036
|
+
value: 'AddAccountLoginHistoryRecord'
|
2037
|
+
},
|
2038
|
+
variableDefinitions: [{
|
2039
|
+
kind: 'VariableDefinition',
|
2040
|
+
variable: {
|
2041
|
+
kind: 'Variable',
|
2042
|
+
name: {
|
2043
|
+
kind: 'Name',
|
2044
|
+
value: 'accountId'
|
2045
|
+
}
|
2046
|
+
},
|
2047
|
+
type: {
|
2048
|
+
kind: 'NonNullType',
|
2049
|
+
type: {
|
2050
|
+
kind: 'NamedType',
|
2051
|
+
name: {
|
2052
|
+
kind: 'Name',
|
2053
|
+
value: 'String'
|
2054
|
+
}
|
2055
|
+
}
|
2056
|
+
}
|
2057
|
+
}, {
|
2058
|
+
kind: 'VariableDefinition',
|
2059
|
+
variable: {
|
2060
|
+
kind: 'Variable',
|
2061
|
+
name: {
|
2062
|
+
kind: 'Name',
|
2063
|
+
value: 'system'
|
2064
|
+
}
|
2065
|
+
},
|
2066
|
+
type: {
|
2067
|
+
kind: 'NonNullType',
|
2068
|
+
type: {
|
2069
|
+
kind: 'NamedType',
|
2070
|
+
name: {
|
2071
|
+
kind: 'Name',
|
2072
|
+
value: 'UserAccountLoginHistorySystemInput'
|
2073
|
+
}
|
2074
|
+
}
|
2075
|
+
}
|
2076
|
+
}],
|
2077
|
+
selectionSet: {
|
2078
|
+
kind: 'SelectionSet',
|
2079
|
+
selections: [{
|
2080
|
+
kind: 'Field',
|
2081
|
+
name: {
|
2082
|
+
kind: 'Name',
|
2083
|
+
value: 'addAccountLoginHistoryRecord'
|
2084
|
+
},
|
2085
|
+
arguments: [{
|
2086
|
+
kind: 'Argument',
|
2087
|
+
name: {
|
2088
|
+
kind: 'Name',
|
2089
|
+
value: 'accountId'
|
2090
|
+
},
|
2091
|
+
value: {
|
2092
|
+
kind: 'Variable',
|
2093
|
+
name: {
|
2094
|
+
kind: 'Name',
|
2095
|
+
value: 'accountId'
|
2096
|
+
}
|
2097
|
+
}
|
2098
|
+
}, {
|
2099
|
+
kind: 'Argument',
|
2100
|
+
name: {
|
2101
|
+
kind: 'Name',
|
2102
|
+
value: 'system'
|
2103
|
+
},
|
2104
|
+
value: {
|
2105
|
+
kind: 'Variable',
|
2106
|
+
name: {
|
2107
|
+
kind: 'Name',
|
2108
|
+
value: 'system'
|
2109
|
+
}
|
2110
|
+
}
|
2111
|
+
}]
|
2112
|
+
}]
|
2113
|
+
}
|
2114
|
+
}]
|
2115
|
+
};
|
2116
|
+
/**
|
2117
|
+
* __useAddAccountLoginHistoryRecordMutation__
|
2118
|
+
*
|
2119
|
+
* To run a mutation, you first call `useAddAccountLoginHistoryRecordMutation` within a React component and pass it any options that fit your needs.
|
2120
|
+
* When your component renders, `useAddAccountLoginHistoryRecordMutation` returns a tuple that includes:
|
2121
|
+
* - A mutate function that you can call at any time to execute the mutation
|
2122
|
+
* - An object with fields that represent the current status of the mutation's execution
|
2123
|
+
*
|
2124
|
+
* @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;
|
2125
|
+
*
|
2126
|
+
* @example
|
2127
|
+
* const [addAccountLoginHistoryRecordMutation, { data, loading, error }] = useAddAccountLoginHistoryRecordMutation({
|
2128
|
+
* variables: {
|
2129
|
+
* accountId: // value for 'accountId'
|
2130
|
+
* system: // value for 'system'
|
2131
|
+
* },
|
2132
|
+
* });
|
2133
|
+
*/
|
2134
|
+
function useAddAccountLoginHistoryRecordMutation(baseOptions) {
|
2135
|
+
const options = {
|
2136
|
+
...defaultOptions,
|
2137
|
+
...baseOptions
|
2138
|
+
};
|
2139
|
+
return Apollo.useMutation(AddAccountLoginHistoryRecordDocument, options);
|
2140
|
+
}
|
2112
2141
|
const AddTeamMembersDocument = {
|
2113
2142
|
kind: 'Document',
|
2114
2143
|
definitions: [{
|
@@ -2945,6 +2974,22 @@ const RegisterAccountUserDocument = {
|
|
2945
2974
|
value: 'UserAuth0UpdateFields'
|
2946
2975
|
}
|
2947
2976
|
}
|
2977
|
+
}, {
|
2978
|
+
kind: 'VariableDefinition',
|
2979
|
+
variable: {
|
2980
|
+
kind: 'Variable',
|
2981
|
+
name: {
|
2982
|
+
kind: 'Name',
|
2983
|
+
value: 'systemInfo'
|
2984
|
+
}
|
2985
|
+
},
|
2986
|
+
type: {
|
2987
|
+
kind: 'NamedType',
|
2988
|
+
name: {
|
2989
|
+
kind: 'Name',
|
2990
|
+
value: 'UserAccountLoginHistorySystemInput'
|
2991
|
+
}
|
2992
|
+
}
|
2948
2993
|
}],
|
2949
2994
|
selectionSet: {
|
2950
2995
|
kind: 'SelectionSet',
|
@@ -2967,6 +3012,19 @@ const RegisterAccountUserDocument = {
|
|
2967
3012
|
value: 'userInfo'
|
2968
3013
|
}
|
2969
3014
|
}
|
3015
|
+
}, {
|
3016
|
+
kind: 'Argument',
|
3017
|
+
name: {
|
3018
|
+
kind: 'Name',
|
3019
|
+
value: 'systemInfo'
|
3020
|
+
},
|
3021
|
+
value: {
|
3022
|
+
kind: 'Variable',
|
3023
|
+
name: {
|
3024
|
+
kind: 'Name',
|
3025
|
+
value: 'systemInfo'
|
3026
|
+
}
|
3027
|
+
}
|
2970
3028
|
}],
|
2971
3029
|
selectionSet: {
|
2972
3030
|
kind: 'SelectionSet',
|
@@ -3008,6 +3066,7 @@ const RegisterAccountUserDocument = {
|
|
3008
3066
|
* const [registerAccountUserMutation, { data, loading, error }] = useRegisterAccountUserMutation({
|
3009
3067
|
* variables: {
|
3010
3068
|
* userInfo: // value for 'userInfo'
|
3069
|
+
* systemInfo: // value for 'systemInfo'
|
3011
3070
|
* },
|
3012
3071
|
* });
|
3013
3072
|
*/
|
@@ -4171,14 +4230,14 @@ function useUpdateOrganizationMutation(baseOptions) {
|
|
4171
4230
|
};
|
4172
4231
|
return Apollo.useMutation(UpdateOrganizationDocument, options);
|
4173
4232
|
}
|
4174
|
-
const
|
4233
|
+
const UpdateUserProfileDocument = {
|
4175
4234
|
kind: 'Document',
|
4176
4235
|
definitions: [{
|
4177
4236
|
kind: 'OperationDefinition',
|
4178
4237
|
operation: 'mutation',
|
4179
4238
|
name: {
|
4180
4239
|
kind: 'Name',
|
4181
|
-
value: '
|
4240
|
+
value: 'UpdateUserProfile'
|
4182
4241
|
},
|
4183
4242
|
variableDefinitions: [{
|
4184
4243
|
kind: 'VariableDefinition',
|
@@ -4186,46 +4245,122 @@ const UpdateTeamConfigurationDocument = {
|
|
4186
4245
|
kind: 'Variable',
|
4187
4246
|
name: {
|
4188
4247
|
kind: 'Name',
|
4189
|
-
value: '
|
4248
|
+
value: 'input'
|
4190
4249
|
}
|
4191
4250
|
},
|
4192
4251
|
type: {
|
4193
|
-
kind: '
|
4194
|
-
type: {
|
4195
|
-
kind: 'NamedType',
|
4196
|
-
name: {
|
4197
|
-
kind: 'Name',
|
4198
|
-
value: 'String'
|
4199
|
-
}
|
4200
|
-
}
|
4201
|
-
}
|
4202
|
-
}, {
|
4203
|
-
kind: 'VariableDefinition',
|
4204
|
-
variable: {
|
4205
|
-
kind: 'Variable',
|
4252
|
+
kind: 'NamedType',
|
4206
4253
|
name: {
|
4207
4254
|
kind: 'Name',
|
4208
|
-
value: '
|
4209
|
-
}
|
4210
|
-
},
|
4211
|
-
type: {
|
4212
|
-
kind: 'NonNullType',
|
4213
|
-
type: {
|
4214
|
-
kind: 'NamedType',
|
4215
|
-
name: {
|
4216
|
-
kind: 'Name',
|
4217
|
-
value: 'AnyObject'
|
4218
|
-
}
|
4255
|
+
value: 'UpdateProfileInput'
|
4219
4256
|
}
|
4220
4257
|
}
|
4221
|
-
},
|
4222
|
-
|
4223
|
-
|
4224
|
-
|
4258
|
+
}],
|
4259
|
+
selectionSet: {
|
4260
|
+
kind: 'SelectionSet',
|
4261
|
+
selections: [{
|
4262
|
+
kind: 'Field',
|
4225
4263
|
name: {
|
4226
4264
|
kind: 'Name',
|
4227
|
-
value: '
|
4228
|
-
}
|
4265
|
+
value: 'updateUserProfile'
|
4266
|
+
},
|
4267
|
+
arguments: [{
|
4268
|
+
kind: 'Argument',
|
4269
|
+
name: {
|
4270
|
+
kind: 'Name',
|
4271
|
+
value: 'input'
|
4272
|
+
},
|
4273
|
+
value: {
|
4274
|
+
kind: 'Variable',
|
4275
|
+
name: {
|
4276
|
+
kind: 'Name',
|
4277
|
+
value: 'input'
|
4278
|
+
}
|
4279
|
+
}
|
4280
|
+
}]
|
4281
|
+
}]
|
4282
|
+
}
|
4283
|
+
}]
|
4284
|
+
};
|
4285
|
+
/**
|
4286
|
+
* __useUpdateUserProfileMutation__
|
4287
|
+
*
|
4288
|
+
* To run a mutation, you first call `useUpdateUserProfileMutation` within a React component and pass it any options that fit your needs.
|
4289
|
+
* When your component renders, `useUpdateUserProfileMutation` returns a tuple that includes:
|
4290
|
+
* - A mutate function that you can call at any time to execute the mutation
|
4291
|
+
* - An object with fields that represent the current status of the mutation's execution
|
4292
|
+
*
|
4293
|
+
* @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;
|
4294
|
+
*
|
4295
|
+
* @example
|
4296
|
+
* const [updateUserProfileMutation, { data, loading, error }] = useUpdateUserProfileMutation({
|
4297
|
+
* variables: {
|
4298
|
+
* input: // value for 'input'
|
4299
|
+
* },
|
4300
|
+
* });
|
4301
|
+
*/
|
4302
|
+
function useUpdateUserProfileMutation(baseOptions) {
|
4303
|
+
const options = {
|
4304
|
+
...defaultOptions,
|
4305
|
+
...baseOptions
|
4306
|
+
};
|
4307
|
+
return Apollo.useMutation(UpdateUserProfileDocument, options);
|
4308
|
+
}
|
4309
|
+
const UpdateTeamConfigurationDocument = {
|
4310
|
+
kind: 'Document',
|
4311
|
+
definitions: [{
|
4312
|
+
kind: 'OperationDefinition',
|
4313
|
+
operation: 'mutation',
|
4314
|
+
name: {
|
4315
|
+
kind: 'Name',
|
4316
|
+
value: 'updateTeamConfiguration'
|
4317
|
+
},
|
4318
|
+
variableDefinitions: [{
|
4319
|
+
kind: 'VariableDefinition',
|
4320
|
+
variable: {
|
4321
|
+
kind: 'Variable',
|
4322
|
+
name: {
|
4323
|
+
kind: 'Name',
|
4324
|
+
value: 'key'
|
4325
|
+
}
|
4326
|
+
},
|
4327
|
+
type: {
|
4328
|
+
kind: 'NonNullType',
|
4329
|
+
type: {
|
4330
|
+
kind: 'NamedType',
|
4331
|
+
name: {
|
4332
|
+
kind: 'Name',
|
4333
|
+
value: 'String'
|
4334
|
+
}
|
4335
|
+
}
|
4336
|
+
}
|
4337
|
+
}, {
|
4338
|
+
kind: 'VariableDefinition',
|
4339
|
+
variable: {
|
4340
|
+
kind: 'Variable',
|
4341
|
+
name: {
|
4342
|
+
kind: 'Name',
|
4343
|
+
value: 'value'
|
4344
|
+
}
|
4345
|
+
},
|
4346
|
+
type: {
|
4347
|
+
kind: 'NonNullType',
|
4348
|
+
type: {
|
4349
|
+
kind: 'NamedType',
|
4350
|
+
name: {
|
4351
|
+
kind: 'Name',
|
4352
|
+
value: 'AnyObject'
|
4353
|
+
}
|
4354
|
+
}
|
4355
|
+
}
|
4356
|
+
}, {
|
4357
|
+
kind: 'VariableDefinition',
|
4358
|
+
variable: {
|
4359
|
+
kind: 'Variable',
|
4360
|
+
name: {
|
4361
|
+
kind: 'Name',
|
4362
|
+
value: 'overrides'
|
4363
|
+
}
|
4229
4364
|
},
|
4230
4365
|
type: {
|
4231
4366
|
kind: 'NamedType',
|
@@ -5387,6 +5522,193 @@ function useGetAccountsSuspenseQuery(baseOptions) {
|
|
5387
5522
|
};
|
5388
5523
|
return Apollo.useSuspenseQuery(GetAccountsDocument, options);
|
5389
5524
|
}
|
5525
|
+
const GetAccountsLoginRecordsDocument = {
|
5526
|
+
kind: 'Document',
|
5527
|
+
definitions: [{
|
5528
|
+
kind: 'OperationDefinition',
|
5529
|
+
operation: 'query',
|
5530
|
+
name: {
|
5531
|
+
kind: 'Name',
|
5532
|
+
value: 'GetAccountsLoginRecords'
|
5533
|
+
},
|
5534
|
+
variableDefinitions: [{
|
5535
|
+
kind: 'VariableDefinition',
|
5536
|
+
variable: {
|
5537
|
+
kind: 'Variable',
|
5538
|
+
name: {
|
5539
|
+
kind: 'Name',
|
5540
|
+
value: 'skip'
|
5541
|
+
}
|
5542
|
+
},
|
5543
|
+
type: {
|
5544
|
+
kind: 'NonNullType',
|
5545
|
+
type: {
|
5546
|
+
kind: 'NamedType',
|
5547
|
+
name: {
|
5548
|
+
kind: 'Name',
|
5549
|
+
value: 'Int'
|
5550
|
+
}
|
5551
|
+
}
|
5552
|
+
}
|
5553
|
+
}, {
|
5554
|
+
kind: 'VariableDefinition',
|
5555
|
+
variable: {
|
5556
|
+
kind: 'Variable',
|
5557
|
+
name: {
|
5558
|
+
kind: 'Name',
|
5559
|
+
value: 'limit'
|
5560
|
+
}
|
5561
|
+
},
|
5562
|
+
type: {
|
5563
|
+
kind: 'NonNullType',
|
5564
|
+
type: {
|
5565
|
+
kind: 'NamedType',
|
5566
|
+
name: {
|
5567
|
+
kind: 'Name',
|
5568
|
+
value: 'Int'
|
5569
|
+
}
|
5570
|
+
}
|
5571
|
+
}
|
5572
|
+
}],
|
5573
|
+
selectionSet: {
|
5574
|
+
kind: 'SelectionSet',
|
5575
|
+
selections: [{
|
5576
|
+
kind: 'Field',
|
5577
|
+
name: {
|
5578
|
+
kind: 'Name',
|
5579
|
+
value: 'getAccountsLoginRecords'
|
5580
|
+
},
|
5581
|
+
arguments: [{
|
5582
|
+
kind: 'Argument',
|
5583
|
+
name: {
|
5584
|
+
kind: 'Name',
|
5585
|
+
value: 'skip'
|
5586
|
+
},
|
5587
|
+
value: {
|
5588
|
+
kind: 'Variable',
|
5589
|
+
name: {
|
5590
|
+
kind: 'Name',
|
5591
|
+
value: 'skip'
|
5592
|
+
}
|
5593
|
+
}
|
5594
|
+
}, {
|
5595
|
+
kind: 'Argument',
|
5596
|
+
name: {
|
5597
|
+
kind: 'Name',
|
5598
|
+
value: 'limit'
|
5599
|
+
},
|
5600
|
+
value: {
|
5601
|
+
kind: 'Variable',
|
5602
|
+
name: {
|
5603
|
+
kind: 'Name',
|
5604
|
+
value: 'limit'
|
5605
|
+
}
|
5606
|
+
}
|
5607
|
+
}],
|
5608
|
+
selectionSet: {
|
5609
|
+
kind: 'SelectionSet',
|
5610
|
+
selections: [{
|
5611
|
+
kind: 'Field',
|
5612
|
+
name: {
|
5613
|
+
kind: 'Name',
|
5614
|
+
value: 'id'
|
5615
|
+
}
|
5616
|
+
}, {
|
5617
|
+
kind: 'Field',
|
5618
|
+
name: {
|
5619
|
+
kind: 'Name',
|
5620
|
+
value: 'accountId'
|
5621
|
+
}
|
5622
|
+
}, {
|
5623
|
+
kind: 'Field',
|
5624
|
+
name: {
|
5625
|
+
kind: 'Name',
|
5626
|
+
value: 'username'
|
5627
|
+
}
|
5628
|
+
}, {
|
5629
|
+
kind: 'Field',
|
5630
|
+
name: {
|
5631
|
+
kind: 'Name',
|
5632
|
+
value: 'address'
|
5633
|
+
}
|
5634
|
+
}, {
|
5635
|
+
kind: 'Field',
|
5636
|
+
name: {
|
5637
|
+
kind: 'Name',
|
5638
|
+
value: 'ip'
|
5639
|
+
}
|
5640
|
+
}, {
|
5641
|
+
kind: 'Field',
|
5642
|
+
name: {
|
5643
|
+
kind: 'Name',
|
5644
|
+
value: 'loginTime'
|
5645
|
+
}
|
5646
|
+
}, {
|
5647
|
+
kind: 'Field',
|
5648
|
+
name: {
|
5649
|
+
kind: 'Name',
|
5650
|
+
value: 'system'
|
5651
|
+
},
|
5652
|
+
selectionSet: {
|
5653
|
+
kind: 'SelectionSet',
|
5654
|
+
selections: [{
|
5655
|
+
kind: 'Field',
|
5656
|
+
name: {
|
5657
|
+
kind: 'Name',
|
5658
|
+
value: 'os'
|
5659
|
+
}
|
5660
|
+
}, {
|
5661
|
+
kind: 'Field',
|
5662
|
+
name: {
|
5663
|
+
kind: 'Name',
|
5664
|
+
value: 'browser'
|
5665
|
+
}
|
5666
|
+
}]
|
5667
|
+
}
|
5668
|
+
}]
|
5669
|
+
}
|
5670
|
+
}]
|
5671
|
+
}
|
5672
|
+
}]
|
5673
|
+
};
|
5674
|
+
/**
|
5675
|
+
* __useGetAccountsLoginRecordsQuery__
|
5676
|
+
*
|
5677
|
+
* To run a query within a React component, call `useGetAccountsLoginRecordsQuery` and pass it any options that fit your needs.
|
5678
|
+
* When your component renders, `useGetAccountsLoginRecordsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
5679
|
+
* you can use to render your UI.
|
5680
|
+
*
|
5681
|
+
* @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;
|
5682
|
+
*
|
5683
|
+
* @example
|
5684
|
+
* const { data, loading, error } = useGetAccountsLoginRecordsQuery({
|
5685
|
+
* variables: {
|
5686
|
+
* skip: // value for 'skip'
|
5687
|
+
* limit: // value for 'limit'
|
5688
|
+
* },
|
5689
|
+
* });
|
5690
|
+
*/
|
5691
|
+
function useGetAccountsLoginRecordsQuery(baseOptions) {
|
5692
|
+
const options = {
|
5693
|
+
...defaultOptions,
|
5694
|
+
...baseOptions
|
5695
|
+
};
|
5696
|
+
return Apollo.useQuery(GetAccountsLoginRecordsDocument, options);
|
5697
|
+
}
|
5698
|
+
function useGetAccountsLoginRecordsLazyQuery(baseOptions) {
|
5699
|
+
const options = {
|
5700
|
+
...defaultOptions,
|
5701
|
+
...baseOptions
|
5702
|
+
};
|
5703
|
+
return Apollo.useLazyQuery(GetAccountsLoginRecordsDocument, options);
|
5704
|
+
}
|
5705
|
+
function useGetAccountsLoginRecordsSuspenseQuery(baseOptions) {
|
5706
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
5707
|
+
...defaultOptions,
|
5708
|
+
...baseOptions
|
5709
|
+
};
|
5710
|
+
return Apollo.useSuspenseQuery(GetAccountsLoginRecordsDocument, options);
|
5711
|
+
}
|
5390
5712
|
const GetAllCountriesDocument = {
|
5391
5713
|
kind: 'Document',
|
5392
5714
|
definitions: [{
|
@@ -6576,10 +6898,6 @@ const GetOrganizationTeamsDocument = {
|
|
6576
6898
|
}
|
6577
6899
|
}, {
|
6578
6900
|
kind: 'Field',
|
6579
|
-
alias: {
|
6580
|
-
kind: 'Name',
|
6581
|
-
value: 'teamMembers'
|
6582
|
-
},
|
6583
6901
|
name: {
|
6584
6902
|
kind: 'Name',
|
6585
6903
|
value: 'members'
|
@@ -6784,11 +7102,7 @@ const GetTeamDocument = {
|
|
6784
7102
|
}
|
6785
7103
|
}, {
|
6786
7104
|
kind: 'Field',
|
6787
|
-
|
6788
|
-
kind: 'Name',
|
6789
|
-
value: 'teamMembers'
|
6790
|
-
},
|
6791
|
-
name: {
|
7105
|
+
name: {
|
6792
7106
|
kind: 'Name',
|
6793
7107
|
value: 'members'
|
6794
7108
|
},
|
@@ -7011,10 +7325,6 @@ const GetTeamByNameDocument = {
|
|
7011
7325
|
}
|
7012
7326
|
}, {
|
7013
7327
|
kind: 'Field',
|
7014
|
-
alias: {
|
7015
|
-
kind: 'Name',
|
7016
|
-
value: 'teamMembers'
|
7017
|
-
},
|
7018
7328
|
name: {
|
7019
7329
|
kind: 'Name',
|
7020
7330
|
value: 'members'
|
@@ -8416,10 +8726,6 @@ const TeamDocument = {
|
|
8416
8726
|
}
|
8417
8727
|
}, {
|
8418
8728
|
kind: 'Field',
|
8419
|
-
alias: {
|
8420
|
-
kind: 'Name',
|
8421
|
-
value: 'teamMembers'
|
8422
|
-
},
|
8423
8729
|
name: {
|
8424
8730
|
kind: 'Name',
|
8425
8731
|
value: 'members'
|
@@ -8576,10 +8882,6 @@ const TeamsDocument = {
|
|
8576
8882
|
}
|
8577
8883
|
}, {
|
8578
8884
|
kind: 'Field',
|
8579
|
-
alias: {
|
8580
|
-
kind: 'Name',
|
8581
|
-
value: 'teamMembers'
|
8582
|
-
},
|
8583
8885
|
name: {
|
8584
8886
|
kind: 'Name',
|
8585
8887
|
value: 'members'
|
@@ -10010,125 +10312,6 @@ function useInitializeOrgNameInContextMutation(baseOptions) {
|
|
10010
10312
|
};
|
10011
10313
|
return Apollo.useMutation(InitializeOrgNameInContextDocument, options);
|
10012
10314
|
}
|
10013
|
-
const InitializeTeamInContextDocument = {
|
10014
|
-
kind: 'Document',
|
10015
|
-
definitions: [{
|
10016
|
-
kind: 'OperationDefinition',
|
10017
|
-
operation: 'mutation',
|
10018
|
-
name: {
|
10019
|
-
kind: 'Name',
|
10020
|
-
value: 'InitializeTeamInContext'
|
10021
|
-
},
|
10022
|
-
variableDefinitions: [{
|
10023
|
-
kind: 'VariableDefinition',
|
10024
|
-
variable: {
|
10025
|
-
kind: 'Variable',
|
10026
|
-
name: {
|
10027
|
-
kind: 'Name',
|
10028
|
-
value: 'teamName'
|
10029
|
-
}
|
10030
|
-
},
|
10031
|
-
type: {
|
10032
|
-
kind: 'NonNullType',
|
10033
|
-
type: {
|
10034
|
-
kind: 'NamedType',
|
10035
|
-
name: {
|
10036
|
-
kind: 'Name',
|
10037
|
-
value: 'String'
|
10038
|
-
}
|
10039
|
-
}
|
10040
|
-
}
|
10041
|
-
}, {
|
10042
|
-
kind: 'VariableDefinition',
|
10043
|
-
variable: {
|
10044
|
-
kind: 'Variable',
|
10045
|
-
name: {
|
10046
|
-
kind: 'Name',
|
10047
|
-
value: 'orgName'
|
10048
|
-
}
|
10049
|
-
},
|
10050
|
-
type: {
|
10051
|
-
kind: 'NonNullType',
|
10052
|
-
type: {
|
10053
|
-
kind: 'NamedType',
|
10054
|
-
name: {
|
10055
|
-
kind: 'Name',
|
10056
|
-
value: 'String'
|
10057
|
-
}
|
10058
|
-
}
|
10059
|
-
}
|
10060
|
-
}],
|
10061
|
-
selectionSet: {
|
10062
|
-
kind: 'SelectionSet',
|
10063
|
-
selections: [{
|
10064
|
-
kind: 'Field',
|
10065
|
-
name: {
|
10066
|
-
kind: 'Name',
|
10067
|
-
value: 'initializeTeamInContext'
|
10068
|
-
},
|
10069
|
-
arguments: [{
|
10070
|
-
kind: 'Argument',
|
10071
|
-
name: {
|
10072
|
-
kind: 'Name',
|
10073
|
-
value: 'teamName'
|
10074
|
-
},
|
10075
|
-
value: {
|
10076
|
-
kind: 'Variable',
|
10077
|
-
name: {
|
10078
|
-
kind: 'Name',
|
10079
|
-
value: 'teamName'
|
10080
|
-
}
|
10081
|
-
}
|
10082
|
-
}, {
|
10083
|
-
kind: 'Argument',
|
10084
|
-
name: {
|
10085
|
-
kind: 'Name',
|
10086
|
-
value: 'orgName'
|
10087
|
-
},
|
10088
|
-
value: {
|
10089
|
-
kind: 'Variable',
|
10090
|
-
name: {
|
10091
|
-
kind: 'Name',
|
10092
|
-
value: 'orgName'
|
10093
|
-
}
|
10094
|
-
}
|
10095
|
-
}],
|
10096
|
-
directives: [{
|
10097
|
-
kind: 'Directive',
|
10098
|
-
name: {
|
10099
|
-
kind: 'Name',
|
10100
|
-
value: 'client'
|
10101
|
-
}
|
10102
|
-
}]
|
10103
|
-
}]
|
10104
|
-
}
|
10105
|
-
}]
|
10106
|
-
};
|
10107
|
-
/**
|
10108
|
-
* __useInitializeTeamInContextMutation__
|
10109
|
-
*
|
10110
|
-
* To run a mutation, you first call `useInitializeTeamInContextMutation` within a React component and pass it any options that fit your needs.
|
10111
|
-
* When your component renders, `useInitializeTeamInContextMutation` returns a tuple that includes:
|
10112
|
-
* - A mutate function that you can call at any time to execute the mutation
|
10113
|
-
* - An object with fields that represent the current status of the mutation's execution
|
10114
|
-
*
|
10115
|
-
* @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;
|
10116
|
-
*
|
10117
|
-
* @example
|
10118
|
-
* const [initializeTeamInContextMutation, { data, loading, error }] = useInitializeTeamInContextMutation({
|
10119
|
-
* variables: {
|
10120
|
-
* teamName: // value for 'teamName'
|
10121
|
-
* orgName: // value for 'orgName'
|
10122
|
-
* },
|
10123
|
-
* });
|
10124
|
-
*/
|
10125
|
-
function useInitializeTeamInContextMutation(baseOptions) {
|
10126
|
-
const options = {
|
10127
|
-
...defaultOptions,
|
10128
|
-
...baseOptions
|
10129
|
-
};
|
10130
|
-
return Apollo.useMutation(InitializeTeamInContextDocument, options);
|
10131
|
-
}
|
10132
10315
|
const ReassignConfigurationDocument = {
|
10133
10316
|
kind: 'Document',
|
10134
10317
|
definitions: [{
|
@@ -10444,14 +10627,14 @@ function useUpdateConfigurationMutation(baseOptions) {
|
|
10444
10627
|
};
|
10445
10628
|
return Apollo.useMutation(UpdateConfigurationDocument, options);
|
10446
10629
|
}
|
10447
|
-
const
|
10630
|
+
const WriteSettingsDocument = {
|
10448
10631
|
kind: 'Document',
|
10449
10632
|
definitions: [{
|
10450
10633
|
kind: 'OperationDefinition',
|
10451
|
-
operation: '
|
10634
|
+
operation: 'mutation',
|
10452
10635
|
name: {
|
10453
10636
|
kind: 'Name',
|
10454
|
-
value: '
|
10637
|
+
value: 'WriteSettings'
|
10455
10638
|
},
|
10456
10639
|
variableDefinitions: [{
|
10457
10640
|
kind: 'VariableDefinition',
|
@@ -10459,17 +10642,78 @@ const GetApplicationPolicyDocument = {
|
|
10459
10642
|
kind: 'Variable',
|
10460
10643
|
name: {
|
10461
10644
|
kind: 'Name',
|
10462
|
-
value: '
|
10645
|
+
value: 'editingUri'
|
10463
10646
|
}
|
10464
10647
|
},
|
10465
10648
|
type: {
|
10466
|
-
kind: '
|
10467
|
-
|
10468
|
-
kind: '
|
10469
|
-
|
10470
|
-
|
10471
|
-
|
10472
|
-
|
10649
|
+
kind: 'NamedType',
|
10650
|
+
name: {
|
10651
|
+
kind: 'Name',
|
10652
|
+
value: 'URI'
|
10653
|
+
}
|
10654
|
+
}
|
10655
|
+
}, {
|
10656
|
+
kind: 'VariableDefinition',
|
10657
|
+
variable: {
|
10658
|
+
kind: 'Variable',
|
10659
|
+
name: {
|
10660
|
+
kind: 'Name',
|
10661
|
+
value: 'settings'
|
10662
|
+
}
|
10663
|
+
},
|
10664
|
+
type: {
|
10665
|
+
kind: 'NamedType',
|
10666
|
+
name: {
|
10667
|
+
kind: 'Name',
|
10668
|
+
value: 'AnyObject'
|
10669
|
+
}
|
10670
|
+
}
|
10671
|
+
}, {
|
10672
|
+
kind: 'VariableDefinition',
|
10673
|
+
variable: {
|
10674
|
+
kind: 'Variable',
|
10675
|
+
name: {
|
10676
|
+
kind: 'Name',
|
10677
|
+
value: 'overrides'
|
10678
|
+
}
|
10679
|
+
},
|
10680
|
+
type: {
|
10681
|
+
kind: 'NamedType',
|
10682
|
+
name: {
|
10683
|
+
kind: 'Name',
|
10684
|
+
value: 'ConfigurationOverridesInput'
|
10685
|
+
}
|
10686
|
+
}
|
10687
|
+
}, {
|
10688
|
+
kind: 'VariableDefinition',
|
10689
|
+
variable: {
|
10690
|
+
kind: 'Variable',
|
10691
|
+
name: {
|
10692
|
+
kind: 'Name',
|
10693
|
+
value: 'target'
|
10694
|
+
}
|
10695
|
+
},
|
10696
|
+
type: {
|
10697
|
+
kind: 'NamedType',
|
10698
|
+
name: {
|
10699
|
+
kind: 'Name',
|
10700
|
+
value: 'Int'
|
10701
|
+
}
|
10702
|
+
}
|
10703
|
+
}, {
|
10704
|
+
kind: 'VariableDefinition',
|
10705
|
+
variable: {
|
10706
|
+
kind: 'Variable',
|
10707
|
+
name: {
|
10708
|
+
kind: 'Name',
|
10709
|
+
value: 'donotNotifyError'
|
10710
|
+
}
|
10711
|
+
},
|
10712
|
+
type: {
|
10713
|
+
kind: 'NamedType',
|
10714
|
+
name: {
|
10715
|
+
kind: 'Name',
|
10716
|
+
value: 'Boolean'
|
10473
10717
|
}
|
10474
10718
|
}
|
10475
10719
|
}],
|
@@ -10479,67 +10723,202 @@ const GetApplicationPolicyDocument = {
|
|
10479
10723
|
kind: 'Field',
|
10480
10724
|
name: {
|
10481
10725
|
kind: 'Name',
|
10482
|
-
value: '
|
10726
|
+
value: 'writeSettings'
|
10483
10727
|
},
|
10484
10728
|
arguments: [{
|
10485
10729
|
kind: 'Argument',
|
10486
10730
|
name: {
|
10487
10731
|
kind: 'Name',
|
10488
|
-
value: '
|
10732
|
+
value: 'editingUri'
|
10489
10733
|
},
|
10490
10734
|
value: {
|
10491
10735
|
kind: 'Variable',
|
10492
10736
|
name: {
|
10493
10737
|
kind: 'Name',
|
10494
|
-
value: '
|
10738
|
+
value: 'editingUri'
|
10495
10739
|
}
|
10496
10740
|
}
|
10497
|
-
}
|
10498
|
-
|
10499
|
-
|
10500
|
-
|
10501
|
-
|
10502
|
-
|
10503
|
-
|
10504
|
-
|
10505
|
-
|
10506
|
-
|
10507
|
-
|
10508
|
-
},
|
10509
|
-
selectionSet: {
|
10510
|
-
kind: 'SelectionSet',
|
10511
|
-
selections: [{
|
10512
|
-
kind: 'FragmentSpread',
|
10513
|
-
name: {
|
10514
|
-
kind: 'Name',
|
10515
|
-
value: 'Configuration'
|
10516
|
-
}
|
10517
|
-
}]
|
10518
|
-
}
|
10519
|
-
}, {
|
10520
|
-
kind: 'InlineFragment',
|
10521
|
-
typeCondition: {
|
10522
|
-
kind: 'NamedType',
|
10523
|
-
name: {
|
10524
|
-
kind: 'Name',
|
10525
|
-
value: 'DefaultPolicy'
|
10526
|
-
}
|
10527
|
-
},
|
10528
|
-
selectionSet: {
|
10529
|
-
kind: 'SelectionSet',
|
10530
|
-
selections: [{
|
10531
|
-
kind: 'FragmentSpread',
|
10532
|
-
name: {
|
10533
|
-
kind: 'Name',
|
10534
|
-
value: 'Configuration'
|
10535
|
-
}
|
10536
|
-
}]
|
10741
|
+
}, {
|
10742
|
+
kind: 'Argument',
|
10743
|
+
name: {
|
10744
|
+
kind: 'Name',
|
10745
|
+
value: 'settings'
|
10746
|
+
},
|
10747
|
+
value: {
|
10748
|
+
kind: 'Variable',
|
10749
|
+
name: {
|
10750
|
+
kind: 'Name',
|
10751
|
+
value: 'settings'
|
10537
10752
|
}
|
10538
|
-
}
|
10539
|
-
}
|
10540
|
-
|
10541
|
-
|
10542
|
-
|
10753
|
+
}
|
10754
|
+
}, {
|
10755
|
+
kind: 'Argument',
|
10756
|
+
name: {
|
10757
|
+
kind: 'Name',
|
10758
|
+
value: 'overrides'
|
10759
|
+
},
|
10760
|
+
value: {
|
10761
|
+
kind: 'Variable',
|
10762
|
+
name: {
|
10763
|
+
kind: 'Name',
|
10764
|
+
value: 'overrides'
|
10765
|
+
}
|
10766
|
+
}
|
10767
|
+
}, {
|
10768
|
+
kind: 'Argument',
|
10769
|
+
name: {
|
10770
|
+
kind: 'Name',
|
10771
|
+
value: 'target'
|
10772
|
+
},
|
10773
|
+
value: {
|
10774
|
+
kind: 'Variable',
|
10775
|
+
name: {
|
10776
|
+
kind: 'Name',
|
10777
|
+
value: 'target'
|
10778
|
+
}
|
10779
|
+
}
|
10780
|
+
}, {
|
10781
|
+
kind: 'Argument',
|
10782
|
+
name: {
|
10783
|
+
kind: 'Name',
|
10784
|
+
value: 'donotNotifyError'
|
10785
|
+
},
|
10786
|
+
value: {
|
10787
|
+
kind: 'Variable',
|
10788
|
+
name: {
|
10789
|
+
kind: 'Name',
|
10790
|
+
value: 'donotNotifyError'
|
10791
|
+
}
|
10792
|
+
}
|
10793
|
+
}]
|
10794
|
+
}]
|
10795
|
+
}
|
10796
|
+
}]
|
10797
|
+
};
|
10798
|
+
/**
|
10799
|
+
* __useWriteSettingsMutation__
|
10800
|
+
*
|
10801
|
+
* To run a mutation, you first call `useWriteSettingsMutation` within a React component and pass it any options that fit your needs.
|
10802
|
+
* When your component renders, `useWriteSettingsMutation` returns a tuple that includes:
|
10803
|
+
* - A mutate function that you can call at any time to execute the mutation
|
10804
|
+
* - An object with fields that represent the current status of the mutation's execution
|
10805
|
+
*
|
10806
|
+
* @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;
|
10807
|
+
*
|
10808
|
+
* @example
|
10809
|
+
* const [writeSettingsMutation, { data, loading, error }] = useWriteSettingsMutation({
|
10810
|
+
* variables: {
|
10811
|
+
* editingUri: // value for 'editingUri'
|
10812
|
+
* settings: // value for 'settings'
|
10813
|
+
* overrides: // value for 'overrides'
|
10814
|
+
* target: // value for 'target'
|
10815
|
+
* donotNotifyError: // value for 'donotNotifyError'
|
10816
|
+
* },
|
10817
|
+
* });
|
10818
|
+
*/
|
10819
|
+
function useWriteSettingsMutation(baseOptions) {
|
10820
|
+
const options = {
|
10821
|
+
...defaultOptions,
|
10822
|
+
...baseOptions
|
10823
|
+
};
|
10824
|
+
return Apollo.useMutation(WriteSettingsDocument, options);
|
10825
|
+
}
|
10826
|
+
const GetApplicationPolicyDocument = {
|
10827
|
+
kind: 'Document',
|
10828
|
+
definitions: [{
|
10829
|
+
kind: 'OperationDefinition',
|
10830
|
+
operation: 'query',
|
10831
|
+
name: {
|
10832
|
+
kind: 'Name',
|
10833
|
+
value: 'GetApplicationPolicy'
|
10834
|
+
},
|
10835
|
+
variableDefinitions: [{
|
10836
|
+
kind: 'VariableDefinition',
|
10837
|
+
variable: {
|
10838
|
+
kind: 'Variable',
|
10839
|
+
name: {
|
10840
|
+
kind: 'Name',
|
10841
|
+
value: 'input'
|
10842
|
+
}
|
10843
|
+
},
|
10844
|
+
type: {
|
10845
|
+
kind: 'ListType',
|
10846
|
+
type: {
|
10847
|
+
kind: 'NamedType',
|
10848
|
+
name: {
|
10849
|
+
kind: 'Name',
|
10850
|
+
value: 'ConfigurationInput'
|
10851
|
+
}
|
10852
|
+
}
|
10853
|
+
}
|
10854
|
+
}],
|
10855
|
+
selectionSet: {
|
10856
|
+
kind: 'SelectionSet',
|
10857
|
+
selections: [{
|
10858
|
+
kind: 'Field',
|
10859
|
+
name: {
|
10860
|
+
kind: 'Name',
|
10861
|
+
value: 'getConfigurationPolicies'
|
10862
|
+
},
|
10863
|
+
arguments: [{
|
10864
|
+
kind: 'Argument',
|
10865
|
+
name: {
|
10866
|
+
kind: 'Name',
|
10867
|
+
value: 'input'
|
10868
|
+
},
|
10869
|
+
value: {
|
10870
|
+
kind: 'Variable',
|
10871
|
+
name: {
|
10872
|
+
kind: 'Name',
|
10873
|
+
value: 'input'
|
10874
|
+
}
|
10875
|
+
}
|
10876
|
+
}],
|
10877
|
+
selectionSet: {
|
10878
|
+
kind: 'SelectionSet',
|
10879
|
+
selections: [{
|
10880
|
+
kind: 'InlineFragment',
|
10881
|
+
typeCondition: {
|
10882
|
+
kind: 'NamedType',
|
10883
|
+
name: {
|
10884
|
+
kind: 'Name',
|
10885
|
+
value: 'ApplicationPolicy'
|
10886
|
+
}
|
10887
|
+
},
|
10888
|
+
selectionSet: {
|
10889
|
+
kind: 'SelectionSet',
|
10890
|
+
selections: [{
|
10891
|
+
kind: 'FragmentSpread',
|
10892
|
+
name: {
|
10893
|
+
kind: 'Name',
|
10894
|
+
value: 'Configuration'
|
10895
|
+
}
|
10896
|
+
}]
|
10897
|
+
}
|
10898
|
+
}, {
|
10899
|
+
kind: 'InlineFragment',
|
10900
|
+
typeCondition: {
|
10901
|
+
kind: 'NamedType',
|
10902
|
+
name: {
|
10903
|
+
kind: 'Name',
|
10904
|
+
value: 'DefaultPolicy'
|
10905
|
+
}
|
10906
|
+
},
|
10907
|
+
selectionSet: {
|
10908
|
+
kind: 'SelectionSet',
|
10909
|
+
selections: [{
|
10910
|
+
kind: 'FragmentSpread',
|
10911
|
+
name: {
|
10912
|
+
kind: 'Name',
|
10913
|
+
value: 'Configuration'
|
10914
|
+
}
|
10915
|
+
}]
|
10916
|
+
}
|
10917
|
+
}]
|
10918
|
+
}
|
10919
|
+
}]
|
10920
|
+
}
|
10921
|
+
}, {
|
10543
10922
|
kind: 'FragmentDefinition',
|
10544
10923
|
name: {
|
10545
10924
|
kind: 'Name',
|
@@ -11406,13 +11785,7 @@ const GetContextDataDocument = {
|
|
11406
11785
|
kind: 'Field',
|
11407
11786
|
name: {
|
11408
11787
|
kind: 'Name',
|
11409
|
-
value: '
|
11410
|
-
}
|
11411
|
-
}, {
|
11412
|
-
kind: 'Field',
|
11413
|
-
name: {
|
11414
|
-
kind: 'Name',
|
11415
|
-
value: 'resourceUri'
|
11788
|
+
value: 'cdecodeUri'
|
11416
11789
|
}
|
11417
11790
|
}]
|
11418
11791
|
}
|
@@ -12242,347 +12615,71 @@ const GetDefaultPolicySettingsDocument = {
|
|
12242
12615
|
}
|
12243
12616
|
}, {
|
12244
12617
|
kind: 'Field',
|
12245
|
-
name: {
|
12246
|
-
kind: 'Name',
|
12247
|
-
value: 'minLength'
|
12248
|
-
}
|
12249
|
-
}, {
|
12250
|
-
kind: 'Field',
|
12251
|
-
name: {
|
12252
|
-
kind: 'Name',
|
12253
|
-
value: 'maxItems'
|
12254
|
-
}
|
12255
|
-
}, {
|
12256
|
-
kind: 'Field',
|
12257
|
-
name: {
|
12258
|
-
kind: 'Name',
|
12259
|
-
value: 'minItems'
|
12260
|
-
}
|
12261
|
-
}]
|
12262
|
-
}
|
12263
|
-
}]
|
12264
|
-
};
|
12265
|
-
/**
|
12266
|
-
* __useGetDefaultPolicySettingsQuery__
|
12267
|
-
*
|
12268
|
-
* To run a query within a React component, call `useGetDefaultPolicySettingsQuery` and pass it any options that fit your needs.
|
12269
|
-
* When your component renders, `useGetDefaultPolicySettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12270
|
-
* you can use to render your UI.
|
12271
|
-
*
|
12272
|
-
* @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;
|
12273
|
-
*
|
12274
|
-
* @example
|
12275
|
-
* const { data, loading, error } = useGetDefaultPolicySettingsQuery({
|
12276
|
-
* variables: {
|
12277
|
-
* target: // value for 'target'
|
12278
|
-
* },
|
12279
|
-
* });
|
12280
|
-
*/
|
12281
|
-
function useGetDefaultPolicySettingsQuery(baseOptions) {
|
12282
|
-
const options = {
|
12283
|
-
...defaultOptions,
|
12284
|
-
...baseOptions
|
12285
|
-
};
|
12286
|
-
return Apollo.useQuery(GetDefaultPolicySettingsDocument, options);
|
12287
|
-
}
|
12288
|
-
function useGetDefaultPolicySettingsLazyQuery(baseOptions) {
|
12289
|
-
const options = {
|
12290
|
-
...defaultOptions,
|
12291
|
-
...baseOptions
|
12292
|
-
};
|
12293
|
-
return Apollo.useLazyQuery(GetDefaultPolicySettingsDocument, options);
|
12294
|
-
}
|
12295
|
-
function useGetDefaultPolicySettingsSuspenseQuery(baseOptions) {
|
12296
|
-
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12297
|
-
...defaultOptions,
|
12298
|
-
...baseOptions
|
12299
|
-
};
|
12300
|
-
return Apollo.useSuspenseQuery(GetDefaultPolicySettingsDocument, options);
|
12301
|
-
}
|
12302
|
-
const GetDefaultRoleDocument = {
|
12303
|
-
kind: 'Document',
|
12304
|
-
definitions: [{
|
12305
|
-
kind: 'OperationDefinition',
|
12306
|
-
operation: 'query',
|
12307
|
-
name: {
|
12308
|
-
kind: 'Name',
|
12309
|
-
value: 'GetDefaultRole'
|
12310
|
-
},
|
12311
|
-
selectionSet: {
|
12312
|
-
kind: 'SelectionSet',
|
12313
|
-
selections: [{
|
12314
|
-
kind: 'Field',
|
12315
|
-
name: {
|
12316
|
-
kind: 'Name',
|
12317
|
-
value: 'getRoles'
|
12318
|
-
},
|
12319
|
-
arguments: [{
|
12320
|
-
kind: 'Argument',
|
12321
|
-
name: {
|
12322
|
-
kind: 'Name',
|
12323
|
-
value: 'input'
|
12324
|
-
},
|
12325
|
-
value: {
|
12326
|
-
kind: 'ListValue',
|
12327
|
-
values: [{
|
12328
|
-
kind: 'ObjectValue',
|
12329
|
-
fields: [{
|
12330
|
-
kind: 'ObjectField',
|
12331
|
-
name: {
|
12332
|
-
kind: 'Name',
|
12333
|
-
value: 'target'
|
12334
|
-
},
|
12335
|
-
value: {
|
12336
|
-
kind: 'IntValue',
|
12337
|
-
value: '6'
|
12338
|
-
}
|
12339
|
-
}]
|
12340
|
-
}]
|
12341
|
-
}
|
12342
|
-
}],
|
12343
|
-
selectionSet: {
|
12344
|
-
kind: 'SelectionSet',
|
12345
|
-
selections: [{
|
12346
|
-
kind: 'InlineFragment',
|
12347
|
-
typeCondition: {
|
12348
|
-
kind: 'NamedType',
|
12349
|
-
name: {
|
12350
|
-
kind: 'Name',
|
12351
|
-
value: 'DefaultRole'
|
12352
|
-
}
|
12353
|
-
},
|
12354
|
-
selectionSet: {
|
12355
|
-
kind: 'SelectionSet',
|
12356
|
-
selections: [{
|
12357
|
-
kind: 'FragmentSpread',
|
12358
|
-
name: {
|
12359
|
-
kind: 'Name',
|
12360
|
-
value: 'Configuration'
|
12361
|
-
}
|
12362
|
-
}]
|
12363
|
-
}
|
12364
|
-
}]
|
12365
|
-
}
|
12366
|
-
}]
|
12367
|
-
}
|
12368
|
-
}, {
|
12369
|
-
kind: 'FragmentDefinition',
|
12370
|
-
name: {
|
12371
|
-
kind: 'Name',
|
12372
|
-
value: 'Configuration'
|
12373
|
-
},
|
12374
|
-
typeCondition: {
|
12375
|
-
kind: 'NamedType',
|
12376
|
-
name: {
|
12377
|
-
kind: 'Name',
|
12378
|
-
value: 'IConfigurationModel'
|
12379
|
-
}
|
12380
|
-
},
|
12381
|
-
selectionSet: {
|
12382
|
-
kind: 'SelectionSet',
|
12383
|
-
selections: [{
|
12384
|
-
kind: 'Field',
|
12385
|
-
name: {
|
12386
|
-
kind: 'Name',
|
12387
|
-
value: 'resource'
|
12388
|
-
}
|
12389
|
-
}, {
|
12390
|
-
kind: 'Field',
|
12391
|
-
name: {
|
12392
|
-
kind: 'Name',
|
12393
|
-
value: 'target'
|
12394
|
-
}
|
12395
|
-
}, {
|
12396
|
-
kind: 'Field',
|
12397
|
-
name: {
|
12398
|
-
kind: 'Name',
|
12399
|
-
value: 'contents'
|
12400
|
-
}
|
12401
|
-
}, {
|
12402
|
-
kind: 'Field',
|
12403
|
-
name: {
|
12404
|
-
kind: 'Name',
|
12405
|
-
value: 'keys'
|
12406
|
-
}
|
12407
|
-
}, {
|
12408
|
-
kind: 'Field',
|
12409
|
-
name: {
|
12410
|
-
kind: 'Name',
|
12411
|
-
value: 'overrides'
|
12412
|
-
},
|
12413
|
-
selectionSet: {
|
12414
|
-
kind: 'SelectionSet',
|
12415
|
-
selections: [{
|
12416
|
-
kind: 'Field',
|
12417
|
-
name: {
|
12418
|
-
kind: 'Name',
|
12419
|
-
value: 'contents'
|
12420
|
-
}
|
12421
|
-
}, {
|
12422
|
-
kind: 'Field',
|
12423
|
-
name: {
|
12424
|
-
kind: 'Name',
|
12425
|
-
value: 'identifiers'
|
12426
|
-
}
|
12427
|
-
}]
|
12428
|
-
}
|
12429
|
-
}, {
|
12430
|
-
kind: 'Field',
|
12431
|
-
name: {
|
12432
|
-
kind: 'Name',
|
12433
|
-
value: '__typename'
|
12434
|
-
}
|
12435
|
-
}]
|
12436
|
-
}
|
12437
|
-
}]
|
12438
|
-
};
|
12439
|
-
/**
|
12440
|
-
* __useGetDefaultRoleQuery__
|
12441
|
-
*
|
12442
|
-
* To run a query within a React component, call `useGetDefaultRoleQuery` and pass it any options that fit your needs.
|
12443
|
-
* When your component renders, `useGetDefaultRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12444
|
-
* you can use to render your UI.
|
12445
|
-
*
|
12446
|
-
* @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;
|
12447
|
-
*
|
12448
|
-
* @example
|
12449
|
-
* const { data, loading, error } = useGetDefaultRoleQuery({
|
12450
|
-
* variables: {
|
12451
|
-
* },
|
12452
|
-
* });
|
12453
|
-
*/
|
12454
|
-
function useGetDefaultRoleQuery(baseOptions) {
|
12455
|
-
const options = {
|
12456
|
-
...defaultOptions,
|
12457
|
-
...baseOptions
|
12458
|
-
};
|
12459
|
-
return Apollo.useQuery(GetDefaultRoleDocument, options);
|
12460
|
-
}
|
12461
|
-
function useGetDefaultRoleLazyQuery(baseOptions) {
|
12462
|
-
const options = {
|
12463
|
-
...defaultOptions,
|
12464
|
-
...baseOptions
|
12465
|
-
};
|
12466
|
-
return Apollo.useLazyQuery(GetDefaultRoleDocument, options);
|
12467
|
-
}
|
12468
|
-
function useGetDefaultRoleSuspenseQuery(baseOptions) {
|
12469
|
-
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12470
|
-
...defaultOptions,
|
12471
|
-
...baseOptions
|
12472
|
-
};
|
12473
|
-
return Apollo.useSuspenseQuery(GetDefaultRoleDocument, options);
|
12474
|
-
}
|
12475
|
-
const GetTeamContextDocument = {
|
12476
|
-
kind: 'Document',
|
12477
|
-
definitions: [{
|
12478
|
-
kind: 'OperationDefinition',
|
12479
|
-
operation: 'query',
|
12480
|
-
name: {
|
12481
|
-
kind: 'Name',
|
12482
|
-
value: 'GetTeamContext'
|
12483
|
-
},
|
12484
|
-
selectionSet: {
|
12485
|
-
kind: 'SelectionSet',
|
12486
|
-
selections: [{
|
12487
|
-
kind: 'Field',
|
12488
|
-
name: {
|
12489
|
-
kind: 'Name',
|
12490
|
-
value: 'getTeamContext'
|
12491
|
-
},
|
12492
|
-
directives: [{
|
12493
|
-
kind: 'Directive',
|
12494
|
-
name: {
|
12495
|
-
kind: 'Name',
|
12496
|
-
value: 'client'
|
12497
|
-
}
|
12498
|
-
}],
|
12499
|
-
selectionSet: {
|
12500
|
-
kind: 'SelectionSet',
|
12501
|
-
selections: [{
|
12502
|
-
kind: 'FragmentSpread',
|
12503
|
-
name: {
|
12504
|
-
kind: 'Name',
|
12505
|
-
value: 'TeamContext'
|
12506
|
-
}
|
12507
|
-
}]
|
12508
|
-
}
|
12509
|
-
}]
|
12510
|
-
}
|
12511
|
-
}, {
|
12512
|
-
kind: 'FragmentDefinition',
|
12513
|
-
name: {
|
12514
|
-
kind: 'Name',
|
12515
|
-
value: 'TeamContext'
|
12516
|
-
},
|
12517
|
-
typeCondition: {
|
12518
|
-
kind: 'NamedType',
|
12519
|
-
name: {
|
12520
|
-
kind: 'Name',
|
12521
|
-
value: 'Context'
|
12522
|
-
}
|
12523
|
-
},
|
12524
|
-
selectionSet: {
|
12525
|
-
kind: 'SelectionSet',
|
12526
|
-
selections: [{
|
12618
|
+
name: {
|
12619
|
+
kind: 'Name',
|
12620
|
+
value: 'minLength'
|
12621
|
+
}
|
12622
|
+
}, {
|
12527
12623
|
kind: 'Field',
|
12528
12624
|
name: {
|
12529
12625
|
kind: 'Name',
|
12530
|
-
value: '
|
12626
|
+
value: 'maxItems'
|
12531
12627
|
}
|
12532
12628
|
}, {
|
12533
12629
|
kind: 'Field',
|
12534
12630
|
name: {
|
12535
12631
|
kind: 'Name',
|
12536
|
-
value: '
|
12632
|
+
value: 'minItems'
|
12537
12633
|
}
|
12538
12634
|
}]
|
12539
12635
|
}
|
12540
12636
|
}]
|
12541
12637
|
};
|
12542
12638
|
/**
|
12543
|
-
*
|
12639
|
+
* __useGetDefaultPolicySettingsQuery__
|
12544
12640
|
*
|
12545
|
-
* To run a query within a React component, call `
|
12546
|
-
* When your component renders, `
|
12641
|
+
* To run a query within a React component, call `useGetDefaultPolicySettingsQuery` and pass it any options that fit your needs.
|
12642
|
+
* When your component renders, `useGetDefaultPolicySettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12547
12643
|
* you can use to render your UI.
|
12548
12644
|
*
|
12549
12645
|
* @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;
|
12550
12646
|
*
|
12551
12647
|
* @example
|
12552
|
-
* const { data, loading, error } =
|
12648
|
+
* const { data, loading, error } = useGetDefaultPolicySettingsQuery({
|
12553
12649
|
* variables: {
|
12650
|
+
* target: // value for 'target'
|
12554
12651
|
* },
|
12555
12652
|
* });
|
12556
12653
|
*/
|
12557
|
-
function
|
12654
|
+
function useGetDefaultPolicySettingsQuery(baseOptions) {
|
12558
12655
|
const options = {
|
12559
12656
|
...defaultOptions,
|
12560
12657
|
...baseOptions
|
12561
12658
|
};
|
12562
|
-
return Apollo.useQuery(
|
12659
|
+
return Apollo.useQuery(GetDefaultPolicySettingsDocument, options);
|
12563
12660
|
}
|
12564
|
-
function
|
12661
|
+
function useGetDefaultPolicySettingsLazyQuery(baseOptions) {
|
12565
12662
|
const options = {
|
12566
12663
|
...defaultOptions,
|
12567
12664
|
...baseOptions
|
12568
12665
|
};
|
12569
|
-
return Apollo.useLazyQuery(
|
12666
|
+
return Apollo.useLazyQuery(GetDefaultPolicySettingsDocument, options);
|
12570
12667
|
}
|
12571
|
-
function
|
12668
|
+
function useGetDefaultPolicySettingsSuspenseQuery(baseOptions) {
|
12572
12669
|
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12573
12670
|
...defaultOptions,
|
12574
12671
|
...baseOptions
|
12575
12672
|
};
|
12576
|
-
return Apollo.useSuspenseQuery(
|
12673
|
+
return Apollo.useSuspenseQuery(GetDefaultPolicySettingsDocument, options);
|
12577
12674
|
}
|
12578
|
-
const
|
12675
|
+
const GetDefaultRoleDocument = {
|
12579
12676
|
kind: 'Document',
|
12580
12677
|
definitions: [{
|
12581
12678
|
kind: 'OperationDefinition',
|
12582
12679
|
operation: 'query',
|
12583
12680
|
name: {
|
12584
12681
|
kind: 'Name',
|
12585
|
-
value: '
|
12682
|
+
value: 'GetDefaultRole'
|
12586
12683
|
},
|
12587
12684
|
selectionSet: {
|
12588
12685
|
kind: 'SelectionSet',
|
@@ -12590,22 +12687,52 @@ const GetTeamNameFromContextDocument = {
|
|
12590
12687
|
kind: 'Field',
|
12591
12688
|
name: {
|
12592
12689
|
kind: 'Name',
|
12593
|
-
value: '
|
12690
|
+
value: 'getRoles'
|
12594
12691
|
},
|
12595
|
-
|
12596
|
-
kind: '
|
12692
|
+
arguments: [{
|
12693
|
+
kind: 'Argument',
|
12597
12694
|
name: {
|
12598
12695
|
kind: 'Name',
|
12599
|
-
value: '
|
12696
|
+
value: 'input'
|
12697
|
+
},
|
12698
|
+
value: {
|
12699
|
+
kind: 'ListValue',
|
12700
|
+
values: [{
|
12701
|
+
kind: 'ObjectValue',
|
12702
|
+
fields: [{
|
12703
|
+
kind: 'ObjectField',
|
12704
|
+
name: {
|
12705
|
+
kind: 'Name',
|
12706
|
+
value: 'target'
|
12707
|
+
},
|
12708
|
+
value: {
|
12709
|
+
kind: 'IntValue',
|
12710
|
+
value: '6'
|
12711
|
+
}
|
12712
|
+
}]
|
12713
|
+
}]
|
12600
12714
|
}
|
12601
12715
|
}],
|
12602
12716
|
selectionSet: {
|
12603
12717
|
kind: 'SelectionSet',
|
12604
12718
|
selections: [{
|
12605
|
-
kind: '
|
12606
|
-
|
12607
|
-
kind: '
|
12608
|
-
|
12719
|
+
kind: 'InlineFragment',
|
12720
|
+
typeCondition: {
|
12721
|
+
kind: 'NamedType',
|
12722
|
+
name: {
|
12723
|
+
kind: 'Name',
|
12724
|
+
value: 'DefaultRole'
|
12725
|
+
}
|
12726
|
+
},
|
12727
|
+
selectionSet: {
|
12728
|
+
kind: 'SelectionSet',
|
12729
|
+
selections: [{
|
12730
|
+
kind: 'FragmentSpread',
|
12731
|
+
name: {
|
12732
|
+
kind: 'Name',
|
12733
|
+
value: 'Configuration'
|
12734
|
+
}
|
12735
|
+
}]
|
12609
12736
|
}
|
12610
12737
|
}]
|
12611
12738
|
}
|
@@ -12615,13 +12742,13 @@ const GetTeamNameFromContextDocument = {
|
|
12615
12742
|
kind: 'FragmentDefinition',
|
12616
12743
|
name: {
|
12617
12744
|
kind: 'Name',
|
12618
|
-
value: '
|
12745
|
+
value: 'Configuration'
|
12619
12746
|
},
|
12620
12747
|
typeCondition: {
|
12621
12748
|
kind: 'NamedType',
|
12622
12749
|
name: {
|
12623
12750
|
kind: 'Name',
|
12624
|
-
value: '
|
12751
|
+
value: 'IConfigurationModel'
|
12625
12752
|
}
|
12626
12753
|
},
|
12627
12754
|
selectionSet: {
|
@@ -12630,47 +12757,93 @@ const GetTeamNameFromContextDocument = {
|
|
12630
12757
|
kind: 'Field',
|
12631
12758
|
name: {
|
12632
12759
|
kind: 'Name',
|
12633
|
-
value: '
|
12760
|
+
value: 'resource'
|
12761
|
+
}
|
12762
|
+
}, {
|
12763
|
+
kind: 'Field',
|
12764
|
+
name: {
|
12765
|
+
kind: 'Name',
|
12766
|
+
value: 'target'
|
12767
|
+
}
|
12768
|
+
}, {
|
12769
|
+
kind: 'Field',
|
12770
|
+
name: {
|
12771
|
+
kind: 'Name',
|
12772
|
+
value: 'contents'
|
12773
|
+
}
|
12774
|
+
}, {
|
12775
|
+
kind: 'Field',
|
12776
|
+
name: {
|
12777
|
+
kind: 'Name',
|
12778
|
+
value: 'keys'
|
12779
|
+
}
|
12780
|
+
}, {
|
12781
|
+
kind: 'Field',
|
12782
|
+
name: {
|
12783
|
+
kind: 'Name',
|
12784
|
+
value: 'overrides'
|
12785
|
+
},
|
12786
|
+
selectionSet: {
|
12787
|
+
kind: 'SelectionSet',
|
12788
|
+
selections: [{
|
12789
|
+
kind: 'Field',
|
12790
|
+
name: {
|
12791
|
+
kind: 'Name',
|
12792
|
+
value: 'contents'
|
12793
|
+
}
|
12794
|
+
}, {
|
12795
|
+
kind: 'Field',
|
12796
|
+
name: {
|
12797
|
+
kind: 'Name',
|
12798
|
+
value: 'identifiers'
|
12799
|
+
}
|
12800
|
+
}]
|
12801
|
+
}
|
12802
|
+
}, {
|
12803
|
+
kind: 'Field',
|
12804
|
+
name: {
|
12805
|
+
kind: 'Name',
|
12806
|
+
value: '__typename'
|
12634
12807
|
}
|
12635
12808
|
}]
|
12636
12809
|
}
|
12637
12810
|
}]
|
12638
12811
|
};
|
12639
12812
|
/**
|
12640
|
-
*
|
12813
|
+
* __useGetDefaultRoleQuery__
|
12641
12814
|
*
|
12642
|
-
* To run a query within a React component, call `
|
12643
|
-
* When your component renders, `
|
12815
|
+
* To run a query within a React component, call `useGetDefaultRoleQuery` and pass it any options that fit your needs.
|
12816
|
+
* When your component renders, `useGetDefaultRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
12644
12817
|
* you can use to render your UI.
|
12645
12818
|
*
|
12646
12819
|
* @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;
|
12647
12820
|
*
|
12648
12821
|
* @example
|
12649
|
-
* const { data, loading, error } =
|
12822
|
+
* const { data, loading, error } = useGetDefaultRoleQuery({
|
12650
12823
|
* variables: {
|
12651
12824
|
* },
|
12652
12825
|
* });
|
12653
12826
|
*/
|
12654
|
-
function
|
12827
|
+
function useGetDefaultRoleQuery(baseOptions) {
|
12655
12828
|
const options = {
|
12656
12829
|
...defaultOptions,
|
12657
12830
|
...baseOptions
|
12658
12831
|
};
|
12659
|
-
return Apollo.useQuery(
|
12832
|
+
return Apollo.useQuery(GetDefaultRoleDocument, options);
|
12660
12833
|
}
|
12661
|
-
function
|
12834
|
+
function useGetDefaultRoleLazyQuery(baseOptions) {
|
12662
12835
|
const options = {
|
12663
12836
|
...defaultOptions,
|
12664
12837
|
...baseOptions
|
12665
12838
|
};
|
12666
|
-
return Apollo.useLazyQuery(
|
12839
|
+
return Apollo.useLazyQuery(GetDefaultRoleDocument, options);
|
12667
12840
|
}
|
12668
|
-
function
|
12841
|
+
function useGetDefaultRoleSuspenseQuery(baseOptions) {
|
12669
12842
|
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
12670
12843
|
...defaultOptions,
|
12671
12844
|
...baseOptions
|
12672
12845
|
};
|
12673
|
-
return Apollo.useSuspenseQuery(
|
12846
|
+
return Apollo.useSuspenseQuery(GetDefaultRoleDocument, options);
|
12674
12847
|
}
|
12675
12848
|
const GetUserAccessRoleDocument = {
|
12676
12849
|
kind: 'Document',
|
@@ -14375,6 +14548,111 @@ function useGetOrgWithResourcesRoleSuspenseQuery(baseOptions) {
|
|
14375
14548
|
};
|
14376
14549
|
return Apollo.useSuspenseQuery(GetOrgWithResourcesRoleDocument, options);
|
14377
14550
|
}
|
14551
|
+
const GetPageSettingsDocument = {
|
14552
|
+
kind: 'Document',
|
14553
|
+
definitions: [{
|
14554
|
+
kind: 'OperationDefinition',
|
14555
|
+
operation: 'query',
|
14556
|
+
name: {
|
14557
|
+
kind: 'Name',
|
14558
|
+
value: 'GetPageSettings'
|
14559
|
+
},
|
14560
|
+
variableDefinitions: [{
|
14561
|
+
kind: 'VariableDefinition',
|
14562
|
+
variable: {
|
14563
|
+
kind: 'Variable',
|
14564
|
+
name: {
|
14565
|
+
kind: 'Name',
|
14566
|
+
value: 'resourceUri'
|
14567
|
+
}
|
14568
|
+
},
|
14569
|
+
type: {
|
14570
|
+
kind: 'NamedType',
|
14571
|
+
name: {
|
14572
|
+
kind: 'Name',
|
14573
|
+
value: 'URIInput'
|
14574
|
+
}
|
14575
|
+
}
|
14576
|
+
}],
|
14577
|
+
selectionSet: {
|
14578
|
+
kind: 'SelectionSet',
|
14579
|
+
selections: [{
|
14580
|
+
kind: 'Field',
|
14581
|
+
name: {
|
14582
|
+
kind: 'Name',
|
14583
|
+
value: 'pageSettings'
|
14584
|
+
},
|
14585
|
+
arguments: [{
|
14586
|
+
kind: 'Argument',
|
14587
|
+
name: {
|
14588
|
+
kind: 'Name',
|
14589
|
+
value: 'resourceUri'
|
14590
|
+
},
|
14591
|
+
value: {
|
14592
|
+
kind: 'Variable',
|
14593
|
+
name: {
|
14594
|
+
kind: 'Name',
|
14595
|
+
value: 'resourceUri'
|
14596
|
+
}
|
14597
|
+
}
|
14598
|
+
}],
|
14599
|
+
selectionSet: {
|
14600
|
+
kind: 'SelectionSet',
|
14601
|
+
selections: [{
|
14602
|
+
kind: 'Field',
|
14603
|
+
name: {
|
14604
|
+
kind: 'Name',
|
14605
|
+
value: 'settings'
|
14606
|
+
}
|
14607
|
+
}, {
|
14608
|
+
kind: 'Field',
|
14609
|
+
name: {
|
14610
|
+
kind: 'Name',
|
14611
|
+
value: 'resourceUri'
|
14612
|
+
}
|
14613
|
+
}]
|
14614
|
+
}
|
14615
|
+
}]
|
14616
|
+
}
|
14617
|
+
}]
|
14618
|
+
};
|
14619
|
+
/**
|
14620
|
+
* __useGetPageSettingsQuery__
|
14621
|
+
*
|
14622
|
+
* To run a query within a React component, call `useGetPageSettingsQuery` and pass it any options that fit your needs.
|
14623
|
+
* When your component renders, `useGetPageSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
14624
|
+
* you can use to render your UI.
|
14625
|
+
*
|
14626
|
+
* @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;
|
14627
|
+
*
|
14628
|
+
* @example
|
14629
|
+
* const { data, loading, error } = useGetPageSettingsQuery({
|
14630
|
+
* variables: {
|
14631
|
+
* resourceUri: // value for 'resourceUri'
|
14632
|
+
* },
|
14633
|
+
* });
|
14634
|
+
*/
|
14635
|
+
function useGetPageSettingsQuery(baseOptions) {
|
14636
|
+
const options = {
|
14637
|
+
...defaultOptions,
|
14638
|
+
...baseOptions
|
14639
|
+
};
|
14640
|
+
return Apollo.useQuery(GetPageSettingsDocument, options);
|
14641
|
+
}
|
14642
|
+
function useGetPageSettingsLazyQuery(baseOptions) {
|
14643
|
+
const options = {
|
14644
|
+
...defaultOptions,
|
14645
|
+
...baseOptions
|
14646
|
+
};
|
14647
|
+
return Apollo.useLazyQuery(GetPageSettingsDocument, options);
|
14648
|
+
}
|
14649
|
+
function useGetPageSettingsSuspenseQuery(baseOptions) {
|
14650
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : {
|
14651
|
+
...defaultOptions,
|
14652
|
+
...baseOptions
|
14653
|
+
};
|
14654
|
+
return Apollo.useSuspenseQuery(GetPageSettingsDocument, options);
|
14655
|
+
}
|
14378
14656
|
const ResolveConfigurationDocument = {
|
14379
14657
|
kind: 'Document',
|
14380
14658
|
definitions: [{
|
@@ -14970,10 +15248,32 @@ const DefaultSettingsDocument = {
|
|
14970
15248
|
}
|
14971
15249
|
},
|
14972
15250
|
type: {
|
14973
|
-
kind: '
|
15251
|
+
kind: 'NonNullType',
|
15252
|
+
type: {
|
15253
|
+
kind: 'NamedType',
|
15254
|
+
name: {
|
15255
|
+
kind: 'Name',
|
15256
|
+
value: 'Int'
|
15257
|
+
}
|
15258
|
+
}
|
15259
|
+
}
|
15260
|
+
}, {
|
15261
|
+
kind: 'VariableDefinition',
|
15262
|
+
variable: {
|
15263
|
+
kind: 'Variable',
|
14974
15264
|
name: {
|
14975
15265
|
kind: 'Name',
|
14976
|
-
value: '
|
15266
|
+
value: 'options'
|
15267
|
+
}
|
15268
|
+
},
|
15269
|
+
type: {
|
15270
|
+
kind: 'NonNullType',
|
15271
|
+
type: {
|
15272
|
+
kind: 'NamedType',
|
15273
|
+
name: {
|
15274
|
+
kind: 'Name',
|
15275
|
+
value: 'PreferencesOpenOptionsInput'
|
15276
|
+
}
|
14977
15277
|
}
|
14978
15278
|
}
|
14979
15279
|
}],
|
@@ -14998,6 +15298,19 @@ const DefaultSettingsDocument = {
|
|
14998
15298
|
value: 'target'
|
14999
15299
|
}
|
15000
15300
|
}
|
15301
|
+
}, {
|
15302
|
+
kind: 'Argument',
|
15303
|
+
name: {
|
15304
|
+
kind: 'Name',
|
15305
|
+
value: 'options'
|
15306
|
+
},
|
15307
|
+
value: {
|
15308
|
+
kind: 'Variable',
|
15309
|
+
name: {
|
15310
|
+
kind: 'Name',
|
15311
|
+
value: 'options'
|
15312
|
+
}
|
15313
|
+
}
|
15001
15314
|
}],
|
15002
15315
|
selectionSet: {
|
15003
15316
|
kind: 'SelectionSet',
|
@@ -15259,6 +15572,7 @@ const DefaultSettingsDocument = {
|
|
15259
15572
|
* const { data, loading, error } = useDefaultSettingsQuery({
|
15260
15573
|
* variables: {
|
15261
15574
|
* target: // value for 'target'
|
15575
|
+
* options: // value for 'options'
|
15262
15576
|
* },
|
15263
15577
|
* });
|
15264
15578
|
*/
|
@@ -18842,4 +19156,4 @@ function useViewerSettingsSuspenseQuery(baseOptions) {
|
|
18842
19156
|
...baseOptions
|
18843
19157
|
};
|
18844
19158
|
return Apollo.useSuspenseQuery(ViewerSettingsDocument, options);
|
18845
|
-
}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,GetResourcesConfigurationDocument,GetRoleDocument,GetTeamByNameDocument,GetTeamContextDocument,GetTeamDocument,GetTeamNameFromContextDocument,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,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,UserOrgContextFragmentDoc,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,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,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,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
|
19159
|
+
}export{AcceptOrganizationInvitationDocument,AccountBillingPreferencesFragmentDoc,AccountOnBoardingDocument,AddAccountLoginHistoryRecordDocument,AddContributionRoleDocument,AddResourceToContextDocument,AddTeamMembersDocument,AllContextFragmentDoc,ChangeMemberRoleDocument,ChangeOrgMemberRoleDocument,ChangeOrganizationDocument,ConfigurationFragmentDoc,ConfigurationModelFragmentDoc,ConfigurationUpdateEventFragmentDoc,ContextConfigurationFragmentDoc,CreateOrganizationDocument,CreateTeamDocument,DeclineOrganizationInvitationDocument,DecodeOrganizationInvitationDocument,DecodeOrganizationSharedTokenDocument,DefaultContextFragmentDoc,DefaultResolveSettingsDocument,DefaultSettingFragmentDoc,DefaultSettingsDocument,DeleteUserAccountDocument,FilterIntegrationConfigurationDocument,GetAccountsApplicationPoliciesDocument,GetAccountsDocument,GetAccountsLoginRecordsDocument,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,IConfigExtensionName,IConfigFragmentName,IConfigurationContributionNames,IConfigurationExtSourceType,IConfigurationSchemaId,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,UpdateUserProfileDocument,UserCreationEventFragmentDoc,UserOrgContextFragmentDoc,ValidatePasswordResetOtpDocument,ValidateUserEmailVerificationDocument,VerifyPhoneOtpDocument,ViewerSettingsDocument,WriteSettingsDocument,useAcceptOrganizationInvitationMutation,useAccountOnBoardingMutation,useAddAccountLoginHistoryRecordMutation,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,useGetAccountsLoginRecordsLazyQuery,useGetAccountsLoginRecordsQuery,useGetAccountsLoginRecordsSuspenseQuery,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,useUpdateUserProfileMutation,useValidatePasswordResetOtpMutation,useValidateUserEmailVerificationMutation,useVerifyPhoneOtpMutation,useViewerSettingsLazyQuery,useViewerSettingsQuery,useViewerSettingsSuspenseQuery,useWriteSettingsMutation};//# sourceMappingURL=generated-models.js.map
|