@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
@@ -156,6 +156,7 @@ export type IAccessToken_Input = {
|
|
156
156
|
};
|
157
157
|
export declare enum IAccountServiceAction {
|
158
158
|
AccountOnBoarding = "accountOnBoarding",
|
159
|
+
AddAccountsLoginHistoryRecords = "addAccountsLoginHistoryRecords",
|
159
160
|
AddUserToken = "addUserToken",
|
160
161
|
CreateAccount = "createAccount",
|
161
162
|
CreateDefaultAccount = "createDefaultAccount",
|
@@ -166,6 +167,7 @@ export declare enum IAccountServiceAction {
|
|
166
167
|
FindAccountByEmail = "findAccountByEmail",
|
167
168
|
FindAccountById = "findAccountById",
|
168
169
|
FindAccountByUser = "findAccountByUser",
|
170
|
+
GetAccountsLoginRecords = "getAccountsLoginRecords",
|
169
171
|
GetAllUserTokens = "getAllUserTokens",
|
170
172
|
GetUserAccountByEmail = "getUserAccountByEmail",
|
171
173
|
GetUserTokenDetails = "getUserTokenDetails",
|
@@ -185,6 +187,7 @@ export declare enum IAccountServiceAction {
|
|
185
187
|
UpdateAccount = "updateAccount",
|
186
188
|
UpdateUserAccount = "updateUserAccount",
|
187
189
|
UpdateUserAccountAliases = "updateUserAccountAliases",
|
190
|
+
UpdateUserProfile = "updateUserProfile",
|
188
191
|
ValidateEmailVerificationCode = "validateEmailVerificationCode",
|
189
192
|
VerifyUserEmailVerificationToken = "verifyUserEmailVerificationToken"
|
190
193
|
}
|
@@ -413,6 +416,12 @@ export type IAuthUserInput = {
|
|
413
416
|
picture?: InputMaybe<Scalars['String']['input']>;
|
414
417
|
username?: InputMaybe<Scalars['String']['input']>;
|
415
418
|
};
|
419
|
+
export type IAuthorityComponent = {
|
420
|
+
__typename?: 'AuthorityComponent';
|
421
|
+
bucketOrAppName: Scalars['String']['output'];
|
422
|
+
domain: Scalars['String']['output'];
|
423
|
+
region: Scalars['String']['output'];
|
424
|
+
};
|
416
425
|
export type IBaseAccountService = {
|
417
426
|
__typename?: 'BaseAccountService';
|
418
427
|
accountOnBoarding?: Maybe<Scalars['Boolean']['output']>;
|
@@ -626,6 +635,25 @@ export type IBillingPermissions = {
|
|
626
635
|
paymentProfile?: Maybe<IPaymentProfilePermissions>;
|
627
636
|
subscriptions?: Maybe<ISubscriptionsPermissions>;
|
628
637
|
};
|
638
|
+
export type ICdecodeParsedUri = {
|
639
|
+
__typename?: 'CdecodeParsedUri';
|
640
|
+
authority: Scalars['String']['output'];
|
641
|
+
fragmentData?: Maybe<Scalars['JSON']['output']>;
|
642
|
+
pathSegments: ICdecodeUriPathSegment;
|
643
|
+
queryData?: Maybe<Scalars['JSON']['output']>;
|
644
|
+
scheme: Scalars['String']['output'];
|
645
|
+
};
|
646
|
+
export type ICdecodeUriPathSegment = {
|
647
|
+
__typename?: 'CdecodeURIPathSegment';
|
648
|
+
organization: Scalars['String']['output'];
|
649
|
+
resourceGroup?: Maybe<Scalars['String']['output']>;
|
650
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
651
|
+
resourceType?: Maybe<IConfigCollectionName>;
|
652
|
+
};
|
653
|
+
export type ICdecodeUriInput = {
|
654
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
655
|
+
uri?: InputMaybe<Scalars['URI']['input']>;
|
656
|
+
};
|
629
657
|
export type ICities = {
|
630
658
|
__typename?: 'Cities';
|
631
659
|
data?: Maybe<Array<Maybe<ICity>>>;
|
@@ -712,7 +740,6 @@ export declare enum IClientContainerService {
|
|
712
740
|
IOrganizationContextService = "IOrganizationContextService",
|
713
741
|
IPermissionService = "IPermissionService",
|
714
742
|
IPreferenceService = "IPreferenceService",
|
715
|
-
ITeamKeyContextService = "ITeamKeyContextService",
|
716
743
|
IUserOrgKeyContextService = "IUserOrgKeyContextService"
|
717
744
|
}
|
718
745
|
export type IClientLevelPermissions = {
|
@@ -746,6 +773,12 @@ export declare enum IConfigCollectionName {
|
|
746
773
|
Teams = "teams",
|
747
774
|
Workspaces = "workspaces"
|
748
775
|
}
|
776
|
+
export declare enum IConfigExtensionName {
|
777
|
+
Permissions = "permissions",
|
778
|
+
Policies = "policies",
|
779
|
+
Settings = "settings",
|
780
|
+
Userrole = "userrole"
|
781
|
+
}
|
749
782
|
export declare enum IConfigFragmentName {
|
750
783
|
ApplicationPolicies = "applicationPolicies",
|
751
784
|
/** Billing */
|
@@ -753,6 +786,7 @@ export declare enum IConfigFragmentName {
|
|
753
786
|
ContributionRoles = "contributionRoles",
|
754
787
|
/** Organization Members Document with role value */
|
755
788
|
OrgMembers = "orgMembers",
|
789
|
+
Permissions = "permissions",
|
756
790
|
Policies = "policies",
|
757
791
|
Resources = "resources",
|
758
792
|
Roles = "roles",
|
@@ -762,11 +796,12 @@ export declare enum IConfigFragmentName {
|
|
762
796
|
}
|
763
797
|
export type IConfiguration = IApplicationConfiguration | IDefaultConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration | IPolicyConfiguration | IUserConfiguration;
|
764
798
|
export declare enum IConfigurationContributionNames {
|
765
|
-
DefaultPermissions = "defaultPermissions",
|
766
|
-
DefaultPolicies = "defaultPolicies",
|
767
|
-
DefaultSettings = "defaultSettings",
|
768
799
|
/** Integration settings */
|
769
|
-
Integration = "integration"
|
800
|
+
Integration = "integration",
|
801
|
+
Permissions = "permissions",
|
802
|
+
Policies = "policies",
|
803
|
+
Settings = "settings",
|
804
|
+
Userrole = "userrole"
|
770
805
|
}
|
771
806
|
export type IConfigurationData = {
|
772
807
|
__typename?: 'ConfigurationData';
|
@@ -779,9 +814,28 @@ export type IConfigurationData = {
|
|
779
814
|
resources?: Maybe<Array<Maybe<IIConfigurationModel>>>;
|
780
815
|
user?: Maybe<IIConfigurationModel>;
|
781
816
|
};
|
817
|
+
export type IConfigurationDefaults = {
|
818
|
+
__typename?: 'ConfigurationDefaults';
|
819
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
820
|
+
source?: Maybe<IConfigurationExtensionInfo>;
|
821
|
+
};
|
822
|
+
export type IConfigurationDefaultsInput = {
|
823
|
+
overrides?: InputMaybe<Scalars['JSON']['input']>;
|
824
|
+
source?: InputMaybe<IConfigurationExtensionInfoInput>;
|
825
|
+
};
|
826
|
+
export declare enum IConfigurationExtSourceType {
|
827
|
+
ExtensionInfo = "EXTENSION_INFO",
|
828
|
+
StringValue = "STRING_VALUE"
|
829
|
+
}
|
782
830
|
export type IConfigurationExtensionInfo = {
|
783
831
|
__typename?: 'ConfigurationExtensionInfo';
|
784
|
-
|
832
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
833
|
+
id: Scalars['String']['output'];
|
834
|
+
};
|
835
|
+
/** Inputs for creating/updating */
|
836
|
+
export type IConfigurationExtensionInfoInput = {
|
837
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
838
|
+
id: Scalars['String']['input'];
|
785
839
|
};
|
786
840
|
export type IConfigurationInput = {
|
787
841
|
resource?: InputMaybe<Scalars['URIInput']['input']>;
|
@@ -798,6 +852,67 @@ export type IConfigurationModel = {
|
|
798
852
|
keys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
799
853
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
800
854
|
};
|
855
|
+
export type IConfigurationNode = {
|
856
|
+
__typename?: 'ConfigurationNode';
|
857
|
+
allOf?: Maybe<Array<Maybe<IConfigurationNode>>>;
|
858
|
+
description?: Maybe<Scalars['String']['output']>;
|
859
|
+
extensionInfo?: Maybe<IConfigurationExtensionInfo>;
|
860
|
+
id?: Maybe<Scalars['String']['output']>;
|
861
|
+
order?: Maybe<Scalars['Int']['output']>;
|
862
|
+
properties?: Maybe<Scalars['JSON']['output']>;
|
863
|
+
restrictedProperties?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
864
|
+
scope?: Maybe<ConfigurationScope>;
|
865
|
+
title?: Maybe<Scalars['String']['output']>;
|
866
|
+
type?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
867
|
+
};
|
868
|
+
export type IConfigurationNodeContextInput = {
|
869
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
870
|
+
extensionName?: InputMaybe<Scalars['String']['input']>;
|
871
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
872
|
+
orgName?: InputMaybe<Scalars['String']['input']>;
|
873
|
+
schemaId: Scalars['String']['input'];
|
874
|
+
tenantId: Scalars['String']['input'];
|
875
|
+
userAlias?: InputMaybe<Scalars['String']['input']>;
|
876
|
+
};
|
877
|
+
export type IConfigurationNodeInput = {
|
878
|
+
allOf?: InputMaybe<Array<InputMaybe<IConfigurationNodeInput>>>;
|
879
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
880
|
+
extensionInfo?: InputMaybe<IConfigurationExtensionInfoInput>;
|
881
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
882
|
+
order?: InputMaybe<Scalars['Int']['input']>;
|
883
|
+
properties?: InputMaybe<Scalars['JSON']['input']>;
|
884
|
+
restrictedProperties?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
885
|
+
scope?: InputMaybe<ConfigurationScope>;
|
886
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
887
|
+
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
888
|
+
};
|
889
|
+
/**
|
890
|
+
* Represents a single stored configuration record, separate from the
|
891
|
+
* 'Configuration' union you already use elsewhere.
|
892
|
+
* Identified by (tenantId, schemaId, extensionName).
|
893
|
+
*/
|
894
|
+
export type IConfigurationNodeRegistry = {
|
895
|
+
__typename?: 'ConfigurationNodeRegistry';
|
896
|
+
configurationDefaults?: Maybe<Array<Maybe<IConfigurationDefaults>>>;
|
897
|
+
configurationNodes?: Maybe<Array<Maybe<IConfigurationNode>>>;
|
898
|
+
excludedConfigurationProperties?: Maybe<Scalars['JSON']['output']>;
|
899
|
+
extensionName?: Maybe<Scalars['String']['output']>;
|
900
|
+
id: Scalars['ID']['output'];
|
901
|
+
overrideIdentifiers?: Maybe<Scalars['JSON']['output']>;
|
902
|
+
policyConfigs?: Maybe<Scalars['JSON']['output']>;
|
903
|
+
schemaId: Scalars['String']['output'];
|
904
|
+
tenantId: Scalars['String']['output'];
|
905
|
+
};
|
906
|
+
/** For overrides, we store key-value pairs likewise in an array */
|
907
|
+
export type IConfigurationOverrideEntry = {
|
908
|
+
__typename?: 'ConfigurationOverrideEntry';
|
909
|
+
key: Scalars['String']['output'];
|
910
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
911
|
+
};
|
912
|
+
export type IConfigurationOverrideEntryInput = {
|
913
|
+
key: Scalars['String']['input'];
|
914
|
+
value?: InputMaybe<Scalars['JSON']['input']>;
|
915
|
+
};
|
801
916
|
export type IConfigurationOverrides = {
|
802
917
|
__typename?: 'ConfigurationOverrides';
|
803
918
|
externalResource?: Maybe<Scalars['URI']['output']>;
|
@@ -811,7 +926,17 @@ export type IConfigurationOverridesInput = {
|
|
811
926
|
resource?: InputMaybe<Scalars['URI']['input']>;
|
812
927
|
};
|
813
928
|
export type IConfigurationPolicy = IApplicationPolicy | IDefaultPolicy | IOrganizationPolicy | IResourcePolicy;
|
929
|
+
export declare enum IConfigurationSchemaId {
|
930
|
+
Configuration = "configuration",
|
931
|
+
Integration = "integration",
|
932
|
+
Permission = "permission",
|
933
|
+
Policy = "policy",
|
934
|
+
UserRole = "userRole"
|
935
|
+
}
|
814
936
|
export { ConfigurationScope };
|
937
|
+
export type IConfigurationScopeInput = {
|
938
|
+
scope?: InputMaybe<ConfigurationScope>;
|
939
|
+
};
|
815
940
|
export declare enum IConfigurationServiceAction {
|
816
941
|
GetAllConfigurationData = "getAllConfigurationData",
|
817
942
|
GetConfiguration = "getConfiguration",
|
@@ -821,6 +946,17 @@ export declare enum IConfigurationServiceAction {
|
|
821
946
|
ReadFile = "readFile",
|
822
947
|
UpdateValue = "updateValue"
|
823
948
|
}
|
949
|
+
export type IConfigurationSource = {
|
950
|
+
__typename?: 'ConfigurationSource';
|
951
|
+
extensionInfo?: Maybe<IConfigurationExtensionInfo>;
|
952
|
+
kind: IConfigurationExtSourceType;
|
953
|
+
stringValue?: Maybe<Scalars['String']['output']>;
|
954
|
+
};
|
955
|
+
export type IConfigurationSourceInput = {
|
956
|
+
extensionInfo?: InputMaybe<IConfigurationExtensionInfoInput>;
|
957
|
+
kind: IConfigurationExtSourceType;
|
958
|
+
stringValue?: InputMaybe<Scalars['String']['input']>;
|
959
|
+
};
|
824
960
|
export { ConfigurationTarget };
|
825
961
|
export type IConfigurationUpdateEvent = {
|
826
962
|
__typename?: 'ConfigurationUpdateEvent';
|
@@ -846,10 +982,6 @@ export type IContext = {
|
|
846
982
|
projectSlug?: Maybe<Scalars['String']['output']>;
|
847
983
|
resource?: Maybe<Scalars['String']['output']>;
|
848
984
|
resourceId?: Maybe<Scalars['String']['output']>;
|
849
|
-
resourceUri?: Maybe<Scalars['URI']['output']>;
|
850
|
-
teamName?: Maybe<Scalars['String']['output']>;
|
851
|
-
teamResource?: Maybe<Scalars['URI']['output']>;
|
852
|
-
teamUri?: Maybe<Scalars['URI']['output']>;
|
853
985
|
userId?: Maybe<Scalars['String']['output']>;
|
854
986
|
};
|
855
987
|
export declare enum IContextServiceAction {
|
@@ -980,6 +1112,15 @@ export type ICreateAccessTokenResult = {
|
|
980
1112
|
*/
|
981
1113
|
token: Scalars['String']['output'];
|
982
1114
|
};
|
1115
|
+
/** Input for creating a new record. */
|
1116
|
+
export type ICreateConfigurationNodeRegistryInput = {
|
1117
|
+
configurationDefaults?: InputMaybe<Array<InputMaybe<IConfigurationDefaultsInput>>>;
|
1118
|
+
configurationNodes?: InputMaybe<Array<InputMaybe<IConfigurationNodeInput>>>;
|
1119
|
+
extensionName?: InputMaybe<Scalars['String']['input']>;
|
1120
|
+
policyConfigs?: InputMaybe<Scalars['JSON']['input']>;
|
1121
|
+
schemaId: Scalars['String']['input'];
|
1122
|
+
tenantId: Scalars['String']['input'];
|
1123
|
+
};
|
983
1124
|
export type IDefaultConfiguration = IIConfigurationModel & {
|
984
1125
|
__typename?: 'DefaultConfiguration';
|
985
1126
|
contents?: Maybe<Scalars['AnyObject']['output']>;
|
@@ -1418,6 +1559,24 @@ export declare enum IInviteStatus {
|
|
1418
1559
|
Declined = "DECLINED",
|
1419
1560
|
Pending = "PENDING"
|
1420
1561
|
}
|
1562
|
+
/** Represents a JSON contribution tied to a specific tenant & URI. */
|
1563
|
+
export type IJsonContribution = {
|
1564
|
+
__typename?: 'JsonContribution';
|
1565
|
+
/** Object ID from Mongo (often _id) mapped as an ID. */
|
1566
|
+
id: Scalars['ID']['output'];
|
1567
|
+
/** A normalized version of the URI (e.g., "file:///foo/bar.json"). */
|
1568
|
+
normalizedUri: Scalars['String']['output'];
|
1569
|
+
/** The actual JSON schema content. */
|
1570
|
+
schemaContent?: Maybe<Scalars['JSON']['output']>;
|
1571
|
+
/** The tenant identifier for this JSON schema. */
|
1572
|
+
tenantId: Scalars['String']['output'];
|
1573
|
+
};
|
1574
|
+
/** Input type for creating or updating JSON contributions. */
|
1575
|
+
export type IJsonContributionInput = {
|
1576
|
+
schemaContent?: InputMaybe<Scalars['JSON']['input']>;
|
1577
|
+
tenantId: Scalars['String']['input'];
|
1578
|
+
uri: Scalars['String']['input'];
|
1579
|
+
};
|
1421
1580
|
/**
|
1422
1581
|
* A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
|
1423
1582
|
* KeyPathSegment must be non-null.
|
@@ -1568,6 +1727,7 @@ export type IMutation = {
|
|
1568
1727
|
__typename?: 'Mutation';
|
1569
1728
|
acceptOrganizationInvitation?: Maybe<Scalars['Boolean']['output']>;
|
1570
1729
|
accountOnBoarding?: Maybe<Scalars['Boolean']['output']>;
|
1730
|
+
addAccountLoginHistoryRecord?: Maybe<Scalars['Boolean']['output']>;
|
1571
1731
|
addContributionRole?: Maybe<Scalars['Boolean']['output']>;
|
1572
1732
|
addResourceToContext?: Maybe<Scalars['Boolean']['output']>;
|
1573
1733
|
addTeamMembers?: Maybe<Scalars['Boolean']['output']>;
|
@@ -1589,9 +1749,16 @@ export type IMutation = {
|
|
1589
1749
|
*/
|
1590
1750
|
createAccessToken: ICreateAccessTokenResult;
|
1591
1751
|
createCity: ICity;
|
1752
|
+
/** Create a new configuration registry document. */
|
1753
|
+
createConfigurationNodeRegistry: IConfigurationNodeRegistry;
|
1592
1754
|
createCountry: ICountry;
|
1593
1755
|
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1594
1756
|
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1757
|
+
/**
|
1758
|
+
* Create or update a JSON contribution. If a record for (tenantId, normalizedUri)
|
1759
|
+
* already exists, it will be updated; otherwise it will be created.
|
1760
|
+
*/
|
1761
|
+
createOrUpdateSchema?: Maybe<IJsonContribution>;
|
1595
1762
|
createOrganization?: Maybe<IOrganization>;
|
1596
1763
|
createState: IState;
|
1597
1764
|
createTeam?: Maybe<IAccountTeam>;
|
@@ -1620,15 +1787,18 @@ export type IMutation = {
|
|
1620
1787
|
initializeAuthorizationCodeFlow?: Maybe<IAuthTokens>;
|
1621
1788
|
initializeOrgNameInContext?: Maybe<Scalars['Boolean']['output']>;
|
1622
1789
|
initializePopupIntegrationAuthorization?: Maybe<IPopupIntegrationAuthorization>;
|
1623
|
-
initializeTeamInContext?: Maybe<Scalars['Boolean']['output']>;
|
1624
1790
|
initializeUserSession?: Maybe<IUserSessionId>;
|
1625
1791
|
initiateConfigurationValue?: Maybe<Scalars['Boolean']['output']>;
|
1626
1792
|
initiatePolicyValue?: Maybe<Scalars['Boolean']['output']>;
|
1627
1793
|
reassignRole?: Maybe<Scalars['Boolean']['output']>;
|
1628
1794
|
registerAccountUser?: Maybe<IUserAccount>;
|
1629
1795
|
registerUserInAuth0?: Maybe<IUserProfile>;
|
1796
|
+
/** Remove a configuration registry from the DB. */
|
1797
|
+
removeConfigurationNodeRegistry: Scalars['Boolean']['output'];
|
1630
1798
|
removeOrgMember?: Maybe<Scalars['Boolean']['output']>;
|
1631
1799
|
removeOrganization?: Maybe<Scalars['Boolean']['output']>;
|
1800
|
+
/** Remove a JSON contribution by its database ID. Returns true if successful. */
|
1801
|
+
removeSchema?: Maybe<Scalars['Boolean']['output']>;
|
1632
1802
|
removeTeam?: Maybe<Scalars['Boolean']['output']>;
|
1633
1803
|
removeTeamMember?: Maybe<Scalars['Boolean']['output']>;
|
1634
1804
|
removeUserAuthSession?: Maybe<Scalars['Boolean']['output']>;
|
@@ -1640,11 +1810,16 @@ export type IMutation = {
|
|
1640
1810
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']['output']>;
|
1641
1811
|
sendPhoneOTP: Scalars['Boolean']['output'];
|
1642
1812
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']['output']>;
|
1643
|
-
|
1813
|
+
setupTenant: ITenantInfo;
|
1644
1814
|
/** Triggers onUserLoggedIn events */
|
1645
1815
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']['output']>;
|
1646
1816
|
updateCity: ICity;
|
1647
1817
|
updateConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
1818
|
+
/**
|
1819
|
+
* Update an existing configuration record, identified by
|
1820
|
+
* (tenantId, schemaId, extensionName).
|
1821
|
+
*/
|
1822
|
+
updateConfigurationNodeRegistry: IConfigurationNodeRegistry;
|
1648
1823
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']['output']>;
|
1649
1824
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1650
1825
|
/**
|
@@ -1665,9 +1840,11 @@ export type IMutation = {
|
|
1665
1840
|
updateState: IState;
|
1666
1841
|
updateUserAccount?: Maybe<Scalars['Boolean']['output']>;
|
1667
1842
|
updateUserAccountAliases?: Maybe<IUserAccount>;
|
1843
|
+
updateUserProfile?: Maybe<Scalars['Boolean']['output']>;
|
1668
1844
|
validatePasswordResetOtp?: Maybe<Scalars['Boolean']['output']>;
|
1669
1845
|
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']['output']>;
|
1670
1846
|
verifyPhoneOtp?: Maybe<Scalars['Boolean']['output']>;
|
1847
|
+
writeSettings?: Maybe<Scalars['Boolean']['output']>;
|
1671
1848
|
};
|
1672
1849
|
export type IMutationAcceptOrganizationInvitationArgs = {
|
1673
1850
|
id: Scalars['ID']['input'];
|
@@ -1676,6 +1853,10 @@ export type IMutationAcceptOrganizationInvitationArgs = {
|
|
1676
1853
|
export type IMutationAccountOnBoardingArgs = {
|
1677
1854
|
input?: InputMaybe<IIOnBoardingParams>;
|
1678
1855
|
};
|
1856
|
+
export type IMutationAddAccountLoginHistoryRecordArgs = {
|
1857
|
+
accountId: Scalars['String']['input'];
|
1858
|
+
system: IUserAccountLoginHistorySystemInput;
|
1859
|
+
};
|
1679
1860
|
export type IMutationAddContributionRoleArgs = {
|
1680
1861
|
description?: InputMaybe<Scalars['String']['input']>;
|
1681
1862
|
name: Scalars['String']['input'];
|
@@ -1711,6 +1892,10 @@ export type IMutationCreateAccessTokenArgs = {
|
|
1711
1892
|
export type IMutationCreateCityArgs = {
|
1712
1893
|
propertyCity: ICityInput;
|
1713
1894
|
};
|
1895
|
+
export type IMutationCreateConfigurationNodeRegistryArgs = {
|
1896
|
+
context: IConfigurationNodeContextInput;
|
1897
|
+
data: ICreateConfigurationNodeRegistryInput;
|
1898
|
+
};
|
1714
1899
|
export type IMutationCreateCountryArgs = {
|
1715
1900
|
country: ICountryInput;
|
1716
1901
|
};
|
@@ -1720,6 +1905,9 @@ export type IMutationCreateIntegrationConfigurationArgs = {
|
|
1720
1905
|
export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
1721
1906
|
data?: InputMaybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
1722
1907
|
};
|
1908
|
+
export type IMutationCreateOrUpdateSchemaArgs = {
|
1909
|
+
input: IJsonContributionInput;
|
1910
|
+
};
|
1723
1911
|
export type IMutationCreateOrganizationArgs = {
|
1724
1912
|
organization: IOrganizationCreateRequest;
|
1725
1913
|
};
|
@@ -1766,10 +1954,6 @@ export type IMutationInitializePopupIntegrationAuthorizationArgs = {
|
|
1766
1954
|
codeVerifier?: InputMaybe<Scalars['String']['input']>;
|
1767
1955
|
platform?: InputMaybe<IDeviceInfoPlatform>;
|
1768
1956
|
};
|
1769
|
-
export type IMutationInitializeTeamInContextArgs = {
|
1770
|
-
orgName?: InputMaybe<Scalars['String']['input']>;
|
1771
|
-
teamName?: InputMaybe<Scalars['String']['input']>;
|
1772
|
-
};
|
1773
1957
|
export type IMutationInitializeUserSessionArgs = {
|
1774
1958
|
deviceInfo: IDeviceInfoInput;
|
1775
1959
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
@@ -1781,18 +1965,25 @@ export type IMutationInitiatePolicyValueArgs = {
|
|
1781
1965
|
resource?: InputMaybe<Scalars['URI']['input']>;
|
1782
1966
|
};
|
1783
1967
|
export type IMutationRegisterAccountUserArgs = {
|
1968
|
+
systemInfo?: InputMaybe<IUserAccountLoginHistorySystemInput>;
|
1784
1969
|
userInfo?: InputMaybe<IUserAuth0UpdateFields>;
|
1785
1970
|
};
|
1786
1971
|
export type IMutationRegisterUserInAuth0Args = {
|
1787
1972
|
email: Scalars['String']['input'];
|
1788
1973
|
password: Scalars['String']['input'];
|
1789
1974
|
};
|
1975
|
+
export type IMutationRemoveConfigurationNodeRegistryArgs = {
|
1976
|
+
context: IConfigurationNodeContextInput;
|
1977
|
+
};
|
1790
1978
|
export type IMutationRemoveOrgMemberArgs = {
|
1791
1979
|
memberId: Scalars['String']['input'];
|
1792
1980
|
};
|
1793
1981
|
export type IMutationRemoveOrganizationArgs = {
|
1794
1982
|
organization: IOrganizationRemoveRequest;
|
1795
1983
|
};
|
1984
|
+
export type IMutationRemoveSchemaArgs = {
|
1985
|
+
id: Scalars['ID']['input'];
|
1986
|
+
};
|
1796
1987
|
export type IMutationRemoveTeamArgs = {
|
1797
1988
|
teamId: Scalars['String']['input'];
|
1798
1989
|
};
|
@@ -1830,10 +2021,8 @@ export type IMutationSendPhoneOtpArgs = {
|
|
1830
2021
|
export type IMutationSendUserPasswordResetEmailArgs = {
|
1831
2022
|
email: Scalars['String']['input'];
|
1832
2023
|
};
|
1833
|
-
export type
|
1834
|
-
|
1835
|
-
uri?: InputMaybe<Scalars['URI']['input']>;
|
1836
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
2024
|
+
export type IMutationSetupTenantArgs = {
|
2025
|
+
input: ISetupTenantInput;
|
1837
2026
|
};
|
1838
2027
|
export type IMutationUpdateAuth0UserPasswordArgs = {
|
1839
2028
|
email?: InputMaybe<Scalars['String']['input']>;
|
@@ -1853,6 +2042,10 @@ export type IMutationUpdateConfigurationArgs = {
|
|
1853
2042
|
target?: InputMaybe<Scalars['Int']['input']>;
|
1854
2043
|
value: Scalars['AnyObject']['input'];
|
1855
2044
|
};
|
2045
|
+
export type IMutationUpdateConfigurationNodeRegistryArgs = {
|
2046
|
+
context: IConfigurationNodeContextInput;
|
2047
|
+
data: IUpdateConfigurationNodeRegistryInput;
|
2048
|
+
};
|
1856
2049
|
export type IMutationUpdateConfigurationPolicyValueArgs = {
|
1857
2050
|
donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
|
1858
2051
|
key: Scalars['String']['input'];
|
@@ -1933,6 +2126,9 @@ export type IMutationUpdateUserAccountArgs = {
|
|
1933
2126
|
export type IMutationUpdateUserAccountAliasesArgs = {
|
1934
2127
|
input?: InputMaybe<IUpdateUserAccountAliasesInput>;
|
1935
2128
|
};
|
2129
|
+
export type IMutationUpdateUserProfileArgs = {
|
2130
|
+
input?: InputMaybe<IUpdateProfileInput>;
|
2131
|
+
};
|
1936
2132
|
export type IMutationValidatePasswordResetOtpArgs = {
|
1937
2133
|
code: Scalars['String']['input'];
|
1938
2134
|
email: Scalars['String']['input'];
|
@@ -1944,6 +2140,13 @@ export type IMutationVerifyPhoneOtpArgs = {
|
|
1944
2140
|
otp: Scalars['String']['input'];
|
1945
2141
|
phoneNumber: IPhoneNumberInput;
|
1946
2142
|
};
|
2143
|
+
export type IMutationWriteSettingsArgs = {
|
2144
|
+
donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
|
2145
|
+
editingUri?: InputMaybe<Scalars['URI']['input']>;
|
2146
|
+
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
2147
|
+
settings?: InputMaybe<Scalars['AnyObject']['input']>;
|
2148
|
+
target?: InputMaybe<Scalars['Int']['input']>;
|
2149
|
+
};
|
1947
2150
|
/** An object with an ID. */
|
1948
2151
|
export type INode = {
|
1949
2152
|
/** The ID of the node. */
|
@@ -2364,6 +2567,12 @@ export type IPageResourcePermission = {
|
|
2364
2567
|
resourceUri?: Maybe<Scalars['URI']['output']>;
|
2365
2568
|
updateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
2366
2569
|
};
|
2570
|
+
export type IPageResourceSetting = {
|
2571
|
+
__typename?: 'PageResourceSetting';
|
2572
|
+
resourceUri?: Maybe<Scalars['URI']['output']>;
|
2573
|
+
settings?: Maybe<Scalars['AnyObject']['output']>;
|
2574
|
+
updateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
2575
|
+
};
|
2367
2576
|
export type IPaymentMethodsPermissions = {
|
2368
2577
|
__typename?: 'PaymentMethodsPermissions';
|
2369
2578
|
create?: Maybe<IPermissionType>;
|
@@ -2587,6 +2796,8 @@ export type IPreferencesOpenOptionsInput = {
|
|
2587
2796
|
authority?: InputMaybe<Scalars['String']['input']>;
|
2588
2797
|
/** Default Fragment to filter the default value */
|
2589
2798
|
defaultFragment?: InputMaybe<Scalars['String']['input']>;
|
2799
|
+
/** Extension Name */
|
2800
|
+
extensionName?: InputMaybe<Scalars['String']['input']>;
|
2590
2801
|
/** If true, forces the path to exist by writing empty object. */
|
2591
2802
|
forceExist?: InputMaybe<Scalars['Boolean']['input']>;
|
2592
2803
|
/** Fragment of the data to filter */
|
@@ -2664,8 +2875,12 @@ export type IQuery = {
|
|
2664
2875
|
defaultViewerSettingsSubject: IDefaultSettings;
|
2665
2876
|
/** A list of external accounts that are associated with the user. */
|
2666
2877
|
externalAccounts: IExternalAccountConnection;
|
2878
|
+
/** Retrieve all JSON contributions for a specific tenant. */
|
2879
|
+
fetchAllSchemas?: Maybe<Array<IJsonContribution>>;
|
2667
2880
|
/** Fetches a User from Auth0 Service */
|
2668
2881
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2882
|
+
/** Retrieve a single JSON contribution by tenantId + normalizedUri. */
|
2883
|
+
fetchSchema?: Maybe<IJsonContribution>;
|
2669
2884
|
/** @deprecated Field no longer supported */
|
2670
2885
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
2671
2886
|
fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
|
@@ -2673,11 +2888,14 @@ export type IQuery = {
|
|
2673
2888
|
filesInfo: IFilesInfo;
|
2674
2889
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2675
2890
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2891
|
+
getAccountsLoginRecords?: Maybe<Array<Maybe<IUserAccountLoginHistory>>>;
|
2676
2892
|
getAllCountriesPhoneCode?: Maybe<Array<Maybe<ICountryWithPhoneCode>>>;
|
2677
2893
|
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
2678
2894
|
getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
2679
2895
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2680
2896
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2897
|
+
/** Retrieve a single configuration registry by (tenantId, schemaId, extensionName). */
|
2898
|
+
getConfigurationNodeRegistry?: Maybe<IConfigurationNodeRegistry>;
|
2681
2899
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
2682
2900
|
getConfigurationTarget?: Maybe<Scalars['Int']['output']>;
|
2683
2901
|
getContextData?: Maybe<IContext>;
|
@@ -2702,8 +2920,8 @@ export type IQuery = {
|
|
2702
2920
|
getRole?: Maybe<IAccessRole>;
|
2703
2921
|
getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
2704
2922
|
getTeam?: Maybe<IAccountTeam>;
|
2705
|
-
|
2706
|
-
|
2923
|
+
getTenantByAccountId?: Maybe<ITenantInfo>;
|
2924
|
+
getTenantByAppName?: Maybe<ITenantInfo>;
|
2707
2925
|
getUserAccessRole?: Maybe<IResourceAccessRole>;
|
2708
2926
|
getUserAccount?: Maybe<IUserAccount>;
|
2709
2927
|
getUserAccountByAuth0Id?: Maybe<IUserAccount>;
|
@@ -2725,7 +2943,7 @@ export type IQuery = {
|
|
2725
2943
|
node?: Maybe<INode>;
|
2726
2944
|
openPreferencesSettings?: Maybe<IPreferencesInput>;
|
2727
2945
|
organizations?: Maybe<Array<Maybe<IOrganization>>>;
|
2728
|
-
pageSettings?: Maybe<
|
2946
|
+
pageSettings?: Maybe<IPageResourceSetting>;
|
2729
2947
|
profile?: Maybe<IUserProfile>;
|
2730
2948
|
/**
|
2731
2949
|
* fetchUserAuthorizedDevices
|
@@ -2740,6 +2958,7 @@ export type IQuery = {
|
|
2740
2958
|
team?: Maybe<IAccountTeam>;
|
2741
2959
|
teams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2742
2960
|
userResourceRole?: Maybe<IResourceUser>;
|
2961
|
+
validateTenantAccess: Scalars['Boolean']['output'];
|
2743
2962
|
/** The policies for the viewer. */
|
2744
2963
|
viewerPolicies?: Maybe<IPolicySubject>;
|
2745
2964
|
/**
|
@@ -2747,6 +2966,7 @@ export type IQuery = {
|
|
2747
2966
|
* global settings) or an authenticated user (in which case viewer settings are the user's settings).
|
2748
2967
|
*/
|
2749
2968
|
viewerSettings: IViewerSettingsSubject;
|
2969
|
+
viewerSettings2: IViewerSettingsSubject;
|
2750
2970
|
};
|
2751
2971
|
export type IQueryAccessTokensArgs = {
|
2752
2972
|
after?: InputMaybe<Scalars['String']['input']>;
|
@@ -2789,14 +3009,22 @@ export type IQueryDefaultPoliciesArgs = {
|
|
2789
3009
|
target?: InputMaybe<Scalars['Int']['input']>;
|
2790
3010
|
};
|
2791
3011
|
export type IQueryDefaultViewerSettingsSubjectArgs = {
|
2792
|
-
|
3012
|
+
options: IPreferencesOpenOptionsInput;
|
3013
|
+
target: Scalars['Int']['input'];
|
2793
3014
|
};
|
2794
3015
|
export type IQueryExternalAccountsArgs = {
|
2795
3016
|
first?: InputMaybe<Scalars['Int']['input']>;
|
2796
3017
|
};
|
3018
|
+
export type IQueryFetchAllSchemasArgs = {
|
3019
|
+
tenantId: Scalars['String']['input'];
|
3020
|
+
};
|
2797
3021
|
export type IQueryFetchAuth0UserArgs = {
|
2798
3022
|
authUserId: Scalars['String']['input'];
|
2799
3023
|
};
|
3024
|
+
export type IQueryFetchSchemaArgs = {
|
3025
|
+
normalizedUri: Scalars['String']['input'];
|
3026
|
+
tenantId: Scalars['String']['input'];
|
3027
|
+
};
|
2800
3028
|
export type IQueryFetchUserAuthorizedDevicesArgs = {
|
2801
3029
|
authUserId: Scalars['String']['input'];
|
2802
3030
|
};
|
@@ -2815,6 +3043,10 @@ export type IQueryFilterIntegrationConfigurationArgs = {
|
|
2815
3043
|
export type IQueryGetAccountsArgs = {
|
2816
3044
|
where?: InputMaybe<IUserAccountWhere>;
|
2817
3045
|
};
|
3046
|
+
export type IQueryGetAccountsLoginRecordsArgs = {
|
3047
|
+
limit: Scalars['Int']['input'];
|
3048
|
+
skip: Scalars['Int']['input'];
|
3049
|
+
};
|
2818
3050
|
export type IQueryGetAllCountriesPhoneCodeArgs = {
|
2819
3051
|
criteria?: InputMaybe<Scalars['JSON']['input']>;
|
2820
3052
|
};
|
@@ -2831,6 +3063,9 @@ export type IQueryGetAllUsersTokensArgs = {
|
|
2831
3063
|
export type IQueryGetConfigurationArgs = {
|
2832
3064
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>>>;
|
2833
3065
|
};
|
3066
|
+
export type IQueryGetConfigurationNodeRegistryArgs = {
|
3067
|
+
context: IConfigurationNodeContextInput;
|
3068
|
+
};
|
2834
3069
|
export type IQueryGetConfigurationPoliciesArgs = {
|
2835
3070
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>>>;
|
2836
3071
|
};
|
@@ -2891,6 +3126,12 @@ export type IQueryGetTeamArgs = {
|
|
2891
3126
|
orgName: Scalars['String']['input'];
|
2892
3127
|
teamName: Scalars['String']['input'];
|
2893
3128
|
};
|
3129
|
+
export type IQueryGetTenantByAccountIdArgs = {
|
3130
|
+
accountId: Scalars['String']['input'];
|
3131
|
+
};
|
3132
|
+
export type IQueryGetTenantByAppNameArgs = {
|
3133
|
+
appName: Scalars['String']['input'];
|
3134
|
+
};
|
2894
3135
|
export type IQueryGetUserAccessRoleArgs = {
|
2895
3136
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>>>;
|
2896
3137
|
};
|
@@ -2932,7 +3173,7 @@ export type IQueryOpenPreferencesSettingsArgs = {
|
|
2932
3173
|
resource?: InputMaybe<Scalars['URI']['input']>;
|
2933
3174
|
};
|
2934
3175
|
export type IQueryPageSettingsArgs = {
|
2935
|
-
|
3176
|
+
resourceUri?: InputMaybe<Scalars['URIInput']['input']>;
|
2936
3177
|
};
|
2937
3178
|
export type IQueryRenewAuthUsingRefreshTokenArgs = {
|
2938
3179
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
@@ -2962,12 +3203,19 @@ export type IQueryUserResourceRoleArgs = {
|
|
2962
3203
|
orgName: Scalars['String']['input'];
|
2963
3204
|
userId?: InputMaybe<Scalars['String']['input']>;
|
2964
3205
|
};
|
3206
|
+
export type IQueryValidateTenantAccessArgs = {
|
3207
|
+
accountId: Scalars['String']['input'];
|
3208
|
+
appName: Scalars['String']['input'];
|
3209
|
+
};
|
2965
3210
|
export type IQueryViewerPoliciesArgs = {
|
2966
3211
|
input: IViewerPoliciesInput;
|
2967
3212
|
};
|
2968
3213
|
export type IQueryViewerSettingsArgs = {
|
2969
3214
|
input?: InputMaybe<IViewerSettingsInput>;
|
2970
3215
|
};
|
3216
|
+
export type IQueryViewerSettings2Args = {
|
3217
|
+
input?: InputMaybe<ICdecodeUriInput>;
|
3218
|
+
};
|
2971
3219
|
export type IRange = {
|
2972
3220
|
__typename?: 'Range';
|
2973
3221
|
/**
|
@@ -2989,13 +3237,38 @@ export type IRange = {
|
|
2989
3237
|
/** @editor - Line number on which the range starts (starts at 1). */
|
2990
3238
|
startLineNumber?: Maybe<Scalars['Int']['output']>;
|
2991
3239
|
};
|
3240
|
+
export type IRealmConfiguration = {
|
3241
|
+
__typename?: 'RealmConfiguration';
|
3242
|
+
clientId: Scalars['String']['output'];
|
3243
|
+
clientSecret: Scalars['String']['output'];
|
3244
|
+
domain: Scalars['String']['output'];
|
3245
|
+
realmName: Scalars['String']['output'];
|
3246
|
+
realmUrl: Scalars['String']['output'];
|
3247
|
+
realmUser: IRealmUser;
|
3248
|
+
};
|
3249
|
+
export type IRealmConfigurationInput = {
|
3250
|
+
clientId: Scalars['String']['input'];
|
3251
|
+
clientSecret: Scalars['String']['input'];
|
3252
|
+
domain: Scalars['String']['input'];
|
3253
|
+
realmName: Scalars['String']['input'];
|
3254
|
+
realmUser: IRealmUserInput;
|
3255
|
+
};
|
3256
|
+
export type IRealmUser = {
|
3257
|
+
__typename?: 'RealmUser';
|
3258
|
+
email: Scalars['String']['output'];
|
3259
|
+
password: Scalars['String']['output'];
|
3260
|
+
username: Scalars['String']['output'];
|
3261
|
+
};
|
3262
|
+
export type IRealmUserInput = {
|
3263
|
+
email: Scalars['String']['input'];
|
3264
|
+
password: Scalars['String']['input'];
|
3265
|
+
username: Scalars['String']['input'];
|
3266
|
+
};
|
2992
3267
|
/** Registry Extensions */
|
2993
3268
|
export declare enum IRegistryExtensions {
|
2994
|
-
|
3269
|
+
DefaultConfiguration = "DefaultConfiguration",
|
2995
3270
|
JsonContribution = "JSONContribution",
|
2996
|
-
|
2997
|
-
Policies = "Policies",
|
2998
|
-
UserRole = "UserRole"
|
3271
|
+
Integration = "integration"
|
2999
3272
|
}
|
3000
3273
|
export type IRenewAuthUsingRefreshToken = {
|
3001
3274
|
__typename?: 'RenewAuthUsingRefreshToken';
|
@@ -3105,6 +3378,21 @@ export declare enum IRouteParams {
|
|
3105
3378
|
OrgName = "orgName",
|
3106
3379
|
TeamName = "teamName"
|
3107
3380
|
}
|
3381
|
+
export type IServerConfiguration = {
|
3382
|
+
__typename?: 'ServerConfiguration';
|
3383
|
+
adminClientId?: Maybe<Scalars['String']['output']>;
|
3384
|
+
adminPassword?: Maybe<Scalars['String']['output']>;
|
3385
|
+
adminUsername?: Maybe<Scalars['String']['output']>;
|
3386
|
+
default: Scalars['Boolean']['output'];
|
3387
|
+
domain?: Maybe<Scalars['String']['output']>;
|
3388
|
+
};
|
3389
|
+
export type IServerConfigurationInput = {
|
3390
|
+
adminClientId?: InputMaybe<Scalars['String']['input']>;
|
3391
|
+
adminPassword?: InputMaybe<Scalars['String']['input']>;
|
3392
|
+
adminUsername?: InputMaybe<Scalars['String']['input']>;
|
3393
|
+
default: Scalars['Boolean']['input'];
|
3394
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
3395
|
+
};
|
3108
3396
|
export type ISettingPermissions = {
|
3109
3397
|
__typename?: 'SettingPermissions';
|
3110
3398
|
edit?: Maybe<IPermissionType>;
|
@@ -3166,6 +3454,11 @@ export type ISettingsSection = {
|
|
3166
3454
|
titleRange?: Maybe<IRange>;
|
3167
3455
|
};
|
3168
3456
|
export type ISettingsSubject = IApplicationSettings | IDefaultSettings | IGlobalSettings | IMachineSettings | IMemorySettings | IOrganizationResourceSettings | IOrganizationSettings | IUserSettings;
|
3457
|
+
export type ISetupTenantInput = {
|
3458
|
+
appName: Scalars['String']['input'];
|
3459
|
+
realmConfiguration: IRealmConfigurationInput;
|
3460
|
+
serverConfiguration: IServerConfigurationInput;
|
3461
|
+
};
|
3169
3462
|
export type ISort = {
|
3170
3463
|
key: Scalars['String']['input'];
|
3171
3464
|
value: ISortEnum;
|
@@ -3344,6 +3637,13 @@ export type ITeamUpdateRequest = {
|
|
3344
3637
|
payload?: InputMaybe<IAccountTeamInput>;
|
3345
3638
|
requestedUserId?: InputMaybe<Scalars['String']['input']>;
|
3346
3639
|
};
|
3640
|
+
export type ITenantInfo = {
|
3641
|
+
__typename?: 'TenantInfo';
|
3642
|
+
appName: Scalars['String']['output'];
|
3643
|
+
id: Scalars['ID']['output'];
|
3644
|
+
realmConfiguration: IRealmConfiguration;
|
3645
|
+
serverConfiguration: IServerConfiguration;
|
3646
|
+
};
|
3347
3647
|
/** Address State Create Input */
|
3348
3648
|
export type ITerritorialStateInput = {
|
3349
3649
|
/** ID of Country to associate */
|
@@ -3372,6 +3672,21 @@ export declare enum ITokenTypesEnum {
|
|
3372
3672
|
EmailVerification = "EMAIL_VERIFICATION",
|
3373
3673
|
PasswordReset = "PASSWORD_RESET"
|
3374
3674
|
}
|
3675
|
+
/**
|
3676
|
+
* Input for updating an existing record (fields are optional).
|
3677
|
+
* We identify which record to update by tenantId, schemaId, and optionally
|
3678
|
+
* extensionName in the mutation arguments.
|
3679
|
+
*/
|
3680
|
+
export type IUpdateConfigurationNodeRegistryInput = {
|
3681
|
+
configurationDefaults?: InputMaybe<Array<InputMaybe<IConfigurationDefaultsInput>>>;
|
3682
|
+
configurationNodes?: InputMaybe<Array<InputMaybe<IConfigurationNodeInput>>>;
|
3683
|
+
policyConfigs?: InputMaybe<Scalars['JSON']['input']>;
|
3684
|
+
};
|
3685
|
+
export type IUpdateProfileInput = {
|
3686
|
+
familyName?: InputMaybe<Scalars['String']['input']>;
|
3687
|
+
id: Scalars['ID']['input'];
|
3688
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
3689
|
+
};
|
3375
3690
|
export type IUpdateUserAccountAliasesInput = {
|
3376
3691
|
accountId: Scalars['String']['input'];
|
3377
3692
|
aliasesToAdd?: InputMaybe<Array<Scalars['String']['input']>>;
|
@@ -3415,6 +3730,7 @@ export type IUserAccount = INode & {
|
|
3415
3730
|
accessTokens: IAccessTokenConnection;
|
3416
3731
|
alias?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
3417
3732
|
contributionRoles?: Maybe<Scalars['AnyObject']['output']>;
|
3733
|
+
country?: Maybe<Scalars['String']['output']>;
|
3418
3734
|
email?: Maybe<Scalars['String']['output']>;
|
3419
3735
|
emailVerified?: Maybe<Scalars['Boolean']['output']>;
|
3420
3736
|
familyName?: Maybe<Scalars['String']['output']>;
|
@@ -3493,6 +3809,25 @@ export type IUserAccountInput = {
|
|
3493
3809
|
tokens?: InputMaybe<Array<InputMaybe<IUserTokenInput>>>;
|
3494
3810
|
username?: InputMaybe<Scalars['String']['input']>;
|
3495
3811
|
};
|
3812
|
+
export type IUserAccountLoginHistory = {
|
3813
|
+
__typename?: 'UserAccountLoginHistory';
|
3814
|
+
accountId: Scalars['String']['output'];
|
3815
|
+
address: Scalars['String']['output'];
|
3816
|
+
id: Scalars['String']['output'];
|
3817
|
+
ip: Scalars['String']['output'];
|
3818
|
+
loginTime: Scalars['DateTime']['output'];
|
3819
|
+
system?: Maybe<IUserAccountLoginHistorySystem>;
|
3820
|
+
username: Scalars['String']['output'];
|
3821
|
+
};
|
3822
|
+
export type IUserAccountLoginHistorySystem = {
|
3823
|
+
__typename?: 'UserAccountLoginHistorySystem';
|
3824
|
+
browser?: Maybe<Scalars['String']['output']>;
|
3825
|
+
os: Scalars['String']['output'];
|
3826
|
+
};
|
3827
|
+
export type IUserAccountLoginHistorySystemInput = {
|
3828
|
+
browser?: InputMaybe<Scalars['String']['input']>;
|
3829
|
+
os: Scalars['String']['input'];
|
3830
|
+
};
|
3496
3831
|
export type IUserAccountRemoveRequest = {
|
3497
3832
|
id?: InputMaybe<Scalars['String']['input']>;
|
3498
3833
|
};
|
@@ -3576,7 +3911,6 @@ export type IUserContext = {
|
|
3576
3911
|
__typename?: 'UserContext';
|
3577
3912
|
accountId?: Maybe<Scalars['String']['output']>;
|
3578
3913
|
accountsRoles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
3579
|
-
dummy?: Maybe<Scalars['String']['output']>;
|
3580
3914
|
emailId?: Maybe<Scalars['String']['output']>;
|
3581
3915
|
identity?: Maybe<Scalars['AnyObject']['output']>;
|
3582
3916
|
namespace?: Maybe<Scalars['String']['output']>;
|
@@ -3592,6 +3926,7 @@ export type IUserContext = {
|
|
3592
3926
|
resourceSettingUri?: Maybe<Scalars['URI']['output']>;
|
3593
3927
|
teamId?: Maybe<Scalars['String']['output']>;
|
3594
3928
|
teamSettingUri?: Maybe<Scalars['URI']['output']>;
|
3929
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
3595
3930
|
userAlias?: Maybe<Scalars['String']['output']>;
|
3596
3931
|
userSettingUri?: Maybe<Scalars['URI']['output']>;
|
3597
3932
|
};
|
@@ -3847,7 +4182,6 @@ export type IWhereDeleteAccessTokenInput = {
|
|
3847
4182
|
};
|
3848
4183
|
export type IAllContextFragment = {
|
3849
4184
|
__typename?: 'Context';
|
3850
|
-
teamResource?: URI | null;
|
3851
4185
|
orgResource?: URI | null;
|
3852
4186
|
orgResourceId?: string | null;
|
3853
4187
|
orgResourceName?: string | null;
|
@@ -3874,6 +4208,14 @@ export type IAccountOnBoardingMutation = {
|
|
3874
4208
|
__typename?: 'Mutation';
|
3875
4209
|
accountOnBoarding?: boolean | null;
|
3876
4210
|
};
|
4211
|
+
export type IAddAccountLoginHistoryRecordMutationVariables = Exact<{
|
4212
|
+
accountId: Scalars['String']['input'];
|
4213
|
+
system: IUserAccountLoginHistorySystemInput;
|
4214
|
+
}>;
|
4215
|
+
export type IAddAccountLoginHistoryRecordMutation = {
|
4216
|
+
__typename?: 'Mutation';
|
4217
|
+
addAccountLoginHistoryRecord?: boolean | null;
|
4218
|
+
};
|
3877
4219
|
export type IAddTeamMembersMutationVariables = Exact<{
|
3878
4220
|
orgName: Scalars['String']['input'];
|
3879
4221
|
teamName: Scalars['String']['input'];
|
@@ -3949,6 +4291,7 @@ export type IDeleteUserAccountMutation = {
|
|
3949
4291
|
};
|
3950
4292
|
export type IRegisterAccountUserMutationVariables = Exact<{
|
3951
4293
|
userInfo?: InputMaybe<IUserAuth0UpdateFields>;
|
4294
|
+
systemInfo?: InputMaybe<IUserAccountLoginHistorySystemInput>;
|
3952
4295
|
}>;
|
3953
4296
|
export type IRegisterAccountUserMutation = {
|
3954
4297
|
__typename?: 'Mutation';
|
@@ -4056,6 +4399,13 @@ export type IUpdateOrganizationMutation = {
|
|
4056
4399
|
orgUserCount?: number | null;
|
4057
4400
|
} | null;
|
4058
4401
|
};
|
4402
|
+
export type IUpdateUserProfileMutationVariables = Exact<{
|
4403
|
+
input?: InputMaybe<IUpdateProfileInput>;
|
4404
|
+
}>;
|
4405
|
+
export type IUpdateUserProfileMutation = {
|
4406
|
+
__typename?: 'Mutation';
|
4407
|
+
updateUserProfile?: boolean | null;
|
4408
|
+
};
|
4059
4409
|
export type IUpdateTeamConfigurationMutationVariables = Exact<{
|
4060
4410
|
key: Scalars['String']['input'];
|
4061
4411
|
value: Scalars['AnyObject']['input'];
|
@@ -4184,6 +4534,27 @@ export type IGetAccountsQuery = {
|
|
4184
4534
|
email?: string | null;
|
4185
4535
|
} | null> | null;
|
4186
4536
|
};
|
4537
|
+
export type IGetAccountsLoginRecordsQueryVariables = Exact<{
|
4538
|
+
skip: Scalars['Int']['input'];
|
4539
|
+
limit: Scalars['Int']['input'];
|
4540
|
+
}>;
|
4541
|
+
export type IGetAccountsLoginRecordsQuery = {
|
4542
|
+
__typename?: 'Query';
|
4543
|
+
getAccountsLoginRecords?: Array<{
|
4544
|
+
__typename?: 'UserAccountLoginHistory';
|
4545
|
+
id: string;
|
4546
|
+
accountId: string;
|
4547
|
+
username: string;
|
4548
|
+
address: string;
|
4549
|
+
ip: string;
|
4550
|
+
loginTime: any;
|
4551
|
+
system?: {
|
4552
|
+
__typename?: 'UserAccountLoginHistorySystem';
|
4553
|
+
os: string;
|
4554
|
+
browser?: string | null;
|
4555
|
+
} | null;
|
4556
|
+
} | null> | null;
|
4557
|
+
};
|
4187
4558
|
export type IGetAllCountriesQueryVariables = Exact<{
|
4188
4559
|
criteria?: InputMaybe<Scalars['JSON']['input']>;
|
4189
4560
|
}>;
|
@@ -4329,7 +4700,7 @@ export type IGetOrganizationTeamsQuery = {
|
|
4329
4700
|
updatedAt?: string | null;
|
4330
4701
|
description?: string | null;
|
4331
4702
|
settingsUri?: URI | null;
|
4332
|
-
|
4703
|
+
members?: Array<{
|
4333
4704
|
__typename?: 'TeamMember';
|
4334
4705
|
id?: string | null;
|
4335
4706
|
name?: string | null;
|
@@ -4353,7 +4724,7 @@ export type IGetTeamQuery = {
|
|
4353
4724
|
createdAt?: string | null;
|
4354
4725
|
updatedAt?: string | null;
|
4355
4726
|
settingsUri?: URI | null;
|
4356
|
-
|
4727
|
+
members?: Array<{
|
4357
4728
|
__typename?: 'TeamMember';
|
4358
4729
|
id?: string | null;
|
4359
4730
|
email?: string | null;
|
@@ -4380,7 +4751,7 @@ export type IGetTeamByNameQuery = {
|
|
4380
4751
|
description?: string | null;
|
4381
4752
|
createdAt?: string | null;
|
4382
4753
|
updatedAt?: string | null;
|
4383
|
-
|
4754
|
+
members?: Array<{
|
4384
4755
|
__typename?: 'TeamMember';
|
4385
4756
|
id?: string | null;
|
4386
4757
|
email?: string | null;
|
@@ -4546,7 +4917,7 @@ export type ITeamQuery = {
|
|
4546
4917
|
createdAt?: string | null;
|
4547
4918
|
updatedAt?: string | null;
|
4548
4919
|
settingsUri?: URI | null;
|
4549
|
-
|
4920
|
+
members?: Array<{
|
4550
4921
|
__typename?: 'TeamMember';
|
4551
4922
|
id?: string | null;
|
4552
4923
|
email?: string | null;
|
@@ -4572,7 +4943,7 @@ export type ITeamsQuery = {
|
|
4572
4943
|
updatedAt?: string | null;
|
4573
4944
|
description?: string | null;
|
4574
4945
|
settingsUri?: URI | null;
|
4575
|
-
|
4946
|
+
members?: Array<{
|
4576
4947
|
__typename?: 'TeamMember';
|
4577
4948
|
id?: string | null;
|
4578
4949
|
name?: string | null;
|
@@ -4997,7 +5368,6 @@ export type IOrgUserIdContextFragment = {
|
|
4997
5368
|
orgUri?: URI | null;
|
4998
5369
|
cdecodeUri?: URI | null;
|
4999
5370
|
userId?: string | null;
|
5000
|
-
teamName?: string | null;
|
5001
5371
|
};
|
5002
5372
|
export type IOrgNameInContextFragment = {
|
5003
5373
|
__typename?: 'Context';
|
@@ -5038,20 +5408,6 @@ export type IRoleTargetFragment = {
|
|
5038
5408
|
__typename?: 'ContributionRoles';
|
5039
5409
|
target?: number | null;
|
5040
5410
|
};
|
5041
|
-
export type ITeamNameInContextFragment = {
|
5042
|
-
__typename?: 'Context';
|
5043
|
-
teamName?: string | null;
|
5044
|
-
};
|
5045
|
-
export type ITeamContextFragment = {
|
5046
|
-
__typename?: 'Context';
|
5047
|
-
teamName?: string | null;
|
5048
|
-
teamUri?: URI | null;
|
5049
|
-
};
|
5050
|
-
export type ITeamWithOrgOnContextFragment = {
|
5051
|
-
__typename?: 'Context';
|
5052
|
-
orgName?: string | null;
|
5053
|
-
teamName?: string | null;
|
5054
|
-
};
|
5055
5411
|
export type IAddContributionRoleMutationVariables = Exact<{
|
5056
5412
|
name: Scalars['String']['input'];
|
5057
5413
|
description?: InputMaybe<Scalars['String']['input']>;
|
@@ -5089,14 +5445,6 @@ export type IInitializeOrgNameInContextMutation = {
|
|
5089
5445
|
__typename?: 'Mutation';
|
5090
5446
|
initializeOrgNameInContext?: boolean | null;
|
5091
5447
|
};
|
5092
|
-
export type IInitializeTeamInContextMutationVariables = Exact<{
|
5093
|
-
teamName: Scalars['String']['input'];
|
5094
|
-
orgName: Scalars['String']['input'];
|
5095
|
-
}>;
|
5096
|
-
export type IInitializeTeamInContextMutation = {
|
5097
|
-
__typename?: 'Mutation';
|
5098
|
-
initializeTeamInContext?: boolean | null;
|
5099
|
-
};
|
5100
5448
|
export type IReassignConfigurationMutationVariables = Exact<{
|
5101
5449
|
[key: string]: never;
|
5102
5450
|
}>;
|
@@ -5116,6 +5464,17 @@ export type IUpdateConfigurationMutation = {
|
|
5116
5464
|
__typename?: 'Mutation';
|
5117
5465
|
updateConfiguration?: boolean | null;
|
5118
5466
|
};
|
5467
|
+
export type IWriteSettingsMutationVariables = Exact<{
|
5468
|
+
editingUri?: InputMaybe<Scalars['URI']['input']>;
|
5469
|
+
settings?: InputMaybe<Scalars['AnyObject']['input']>;
|
5470
|
+
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
5471
|
+
target?: InputMaybe<Scalars['Int']['input']>;
|
5472
|
+
donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
|
5473
|
+
}>;
|
5474
|
+
export type IWriteSettingsMutation = {
|
5475
|
+
__typename?: 'Mutation';
|
5476
|
+
writeSettings?: boolean | null;
|
5477
|
+
};
|
5119
5478
|
export type IGetApplicationPolicyQueryVariables = Exact<{
|
5120
5479
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
5121
5480
|
}>;
|
@@ -5239,8 +5598,7 @@ export type IGetContextDataQuery = {
|
|
5239
5598
|
__typename?: 'Context';
|
5240
5599
|
orgUri?: URI | null;
|
5241
5600
|
userId?: string | null;
|
5242
|
-
|
5243
|
-
resourceUri?: URI | null;
|
5601
|
+
cdecodeUri?: URI | null;
|
5244
5602
|
} | null;
|
5245
5603
|
};
|
5246
5604
|
export type IGetContextPropertyQueryVariables = Exact<{
|
@@ -5377,27 +5735,6 @@ export type IGetDefaultRoleQuery = {
|
|
5377
5735
|
__typename?: 'UserRole';
|
5378
5736
|
} | null> | null;
|
5379
5737
|
};
|
5380
|
-
export type IGetTeamContextQueryVariables = Exact<{
|
5381
|
-
[key: string]: never;
|
5382
|
-
}>;
|
5383
|
-
export type IGetTeamContextQuery = {
|
5384
|
-
__typename?: 'Query';
|
5385
|
-
getTeamContext?: {
|
5386
|
-
__typename?: 'Context';
|
5387
|
-
teamName?: string | null;
|
5388
|
-
teamUri?: URI | null;
|
5389
|
-
} | null;
|
5390
|
-
};
|
5391
|
-
export type IGetTeamNameFromContextQueryVariables = Exact<{
|
5392
|
-
[key: string]: never;
|
5393
|
-
}>;
|
5394
|
-
export type IGetTeamNameFromContextQuery = {
|
5395
|
-
__typename?: 'Query';
|
5396
|
-
getTeamNameFromContext?: {
|
5397
|
-
__typename?: 'Context';
|
5398
|
-
teamName?: string | null;
|
5399
|
-
} | null;
|
5400
|
-
};
|
5401
5738
|
export type IGetUserAccessRoleQueryVariables = Exact<{
|
5402
5739
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
5403
5740
|
}>;
|
@@ -5670,6 +6007,17 @@ export type IGetOrgWithResourcesRoleQuery = {
|
|
5670
6007
|
} | null> | null;
|
5671
6008
|
} | null> | null;
|
5672
6009
|
};
|
6010
|
+
export type IGetPageSettingsQueryVariables = Exact<{
|
6011
|
+
resourceUri?: InputMaybe<Scalars['URIInput']['input']>;
|
6012
|
+
}>;
|
6013
|
+
export type IGetPageSettingsQuery = {
|
6014
|
+
__typename?: 'Query';
|
6015
|
+
pageSettings?: {
|
6016
|
+
__typename?: 'PageResourceSetting';
|
6017
|
+
settings?: any | null;
|
6018
|
+
resourceUri?: URI | null;
|
6019
|
+
} | null;
|
6020
|
+
};
|
5673
6021
|
export type IResolveConfigurationQueryVariables = Exact<{
|
5674
6022
|
input: IPreferencesInputInput;
|
5675
6023
|
key?: InputMaybe<Scalars['String']['input']>;
|
@@ -5758,7 +6106,8 @@ export type IGetUserConfigurationQuery = {
|
|
5758
6106
|
} | null> | null;
|
5759
6107
|
};
|
5760
6108
|
export type IDefaultSettingsQueryVariables = Exact<{
|
5761
|
-
target
|
6109
|
+
target: Scalars['Int']['input'];
|
6110
|
+
options: IPreferencesOpenOptionsInput;
|
5762
6111
|
}>;
|
5763
6112
|
export type IDefaultSettingsQuery = {
|
5764
6113
|
__typename?: 'Query';
|
@@ -7167,9 +7516,6 @@ export declare const OrgContextFragmentDoc: DocumentNode;
|
|
7167
7516
|
export declare const OrganizationUserFragmentDoc: DocumentNode;
|
7168
7517
|
export declare const ResourceUserRoleFragmentDoc: DocumentNode;
|
7169
7518
|
export declare const RoleTargetFragmentDoc: DocumentNode;
|
7170
|
-
export declare const TeamNameInContextFragmentDoc: DocumentNode;
|
7171
|
-
export declare const TeamContextFragmentDoc: DocumentNode;
|
7172
|
-
export declare const TeamWithOrgOnContextFragmentDoc: DocumentNode;
|
7173
7519
|
export declare const AccountBillingPreferencesFragmentDoc: DocumentNode;
|
7174
7520
|
export declare const ConfigurationModelFragmentDoc: DocumentNode;
|
7175
7521
|
export declare const OrganizationDataFragmentDoc: DocumentNode;
|
@@ -7225,6 +7571,33 @@ export declare function useAccountOnBoardingMutation(baseOptions?: Apollo.Mutati
|
|
7225
7571
|
export type AccountOnBoardingMutationHookResult = ReturnType<typeof useAccountOnBoardingMutation>;
|
7226
7572
|
export type AccountOnBoardingMutationResult = Apollo.MutationResult<IAccountOnBoardingMutation>;
|
7227
7573
|
export type AccountOnBoardingMutationOptions = Apollo.BaseMutationOptions<IAccountOnBoardingMutation, IAccountOnBoardingMutationVariables>;
|
7574
|
+
export declare const AddAccountLoginHistoryRecordDocument: DocumentNode;
|
7575
|
+
export type IAddAccountLoginHistoryRecordMutationFn = Apollo.MutationFunction<IAddAccountLoginHistoryRecordMutation, IAddAccountLoginHistoryRecordMutationVariables>;
|
7576
|
+
/**
|
7577
|
+
* __useAddAccountLoginHistoryRecordMutation__
|
7578
|
+
*
|
7579
|
+
* To run a mutation, you first call `useAddAccountLoginHistoryRecordMutation` within a React component and pass it any options that fit your needs.
|
7580
|
+
* When your component renders, `useAddAccountLoginHistoryRecordMutation` returns a tuple that includes:
|
7581
|
+
* - A mutate function that you can call at any time to execute the mutation
|
7582
|
+
* - An object with fields that represent the current status of the mutation's execution
|
7583
|
+
*
|
7584
|
+
* @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;
|
7585
|
+
*
|
7586
|
+
* @example
|
7587
|
+
* const [addAccountLoginHistoryRecordMutation, { data, loading, error }] = useAddAccountLoginHistoryRecordMutation({
|
7588
|
+
* variables: {
|
7589
|
+
* accountId: // value for 'accountId'
|
7590
|
+
* system: // value for 'system'
|
7591
|
+
* },
|
7592
|
+
* });
|
7593
|
+
*/
|
7594
|
+
export declare function useAddAccountLoginHistoryRecordMutation(baseOptions?: Apollo.MutationHookOptions<IAddAccountLoginHistoryRecordMutation, IAddAccountLoginHistoryRecordMutationVariables>): Apollo.MutationTuple<IAddAccountLoginHistoryRecordMutation, Exact<{
|
7595
|
+
accountId: Scalars["String"]["input"];
|
7596
|
+
system: IUserAccountLoginHistorySystemInput;
|
7597
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
7598
|
+
export type AddAccountLoginHistoryRecordMutationHookResult = ReturnType<typeof useAddAccountLoginHistoryRecordMutation>;
|
7599
|
+
export type AddAccountLoginHistoryRecordMutationResult = Apollo.MutationResult<IAddAccountLoginHistoryRecordMutation>;
|
7600
|
+
export type AddAccountLoginHistoryRecordMutationOptions = Apollo.BaseMutationOptions<IAddAccountLoginHistoryRecordMutation, IAddAccountLoginHistoryRecordMutationVariables>;
|
7228
7601
|
export declare const AddTeamMembersDocument: DocumentNode;
|
7229
7602
|
export type IAddTeamMembersMutationFn = Apollo.MutationFunction<IAddTeamMembersMutation, IAddTeamMembersMutationVariables>;
|
7230
7603
|
/**
|
@@ -7427,11 +7800,13 @@ export type IRegisterAccountUserMutationFn = Apollo.MutationFunction<IRegisterAc
|
|
7427
7800
|
* const [registerAccountUserMutation, { data, loading, error }] = useRegisterAccountUserMutation({
|
7428
7801
|
* variables: {
|
7429
7802
|
* userInfo: // value for 'userInfo'
|
7803
|
+
* systemInfo: // value for 'systemInfo'
|
7430
7804
|
* },
|
7431
7805
|
* });
|
7432
7806
|
*/
|
7433
7807
|
export declare function useRegisterAccountUserMutation(baseOptions?: Apollo.MutationHookOptions<IRegisterAccountUserMutation, IRegisterAccountUserMutationVariables>): Apollo.MutationTuple<IRegisterAccountUserMutation, Exact<{
|
7434
7808
|
userInfo?: InputMaybe<IUserAuth0UpdateFields>;
|
7809
|
+
systemInfo?: InputMaybe<IUserAccountLoginHistorySystemInput>;
|
7435
7810
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
7436
7811
|
export type RegisterAccountUserMutationHookResult = ReturnType<typeof useRegisterAccountUserMutation>;
|
7437
7812
|
export type RegisterAccountUserMutationResult = Apollo.MutationResult<IRegisterAccountUserMutation>;
|
@@ -7746,6 +8121,31 @@ export declare function useUpdateOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
7746
8121
|
export type UpdateOrganizationMutationHookResult = ReturnType<typeof useUpdateOrganizationMutation>;
|
7747
8122
|
export type UpdateOrganizationMutationResult = Apollo.MutationResult<IUpdateOrganizationMutation>;
|
7748
8123
|
export type UpdateOrganizationMutationOptions = Apollo.BaseMutationOptions<IUpdateOrganizationMutation, IUpdateOrganizationMutationVariables>;
|
8124
|
+
export declare const UpdateUserProfileDocument: DocumentNode;
|
8125
|
+
export type IUpdateUserProfileMutationFn = Apollo.MutationFunction<IUpdateUserProfileMutation, IUpdateUserProfileMutationVariables>;
|
8126
|
+
/**
|
8127
|
+
* __useUpdateUserProfileMutation__
|
8128
|
+
*
|
8129
|
+
* To run a mutation, you first call `useUpdateUserProfileMutation` within a React component and pass it any options that fit your needs.
|
8130
|
+
* When your component renders, `useUpdateUserProfileMutation` returns a tuple that includes:
|
8131
|
+
* - A mutate function that you can call at any time to execute the mutation
|
8132
|
+
* - An object with fields that represent the current status of the mutation's execution
|
8133
|
+
*
|
8134
|
+
* @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;
|
8135
|
+
*
|
8136
|
+
* @example
|
8137
|
+
* const [updateUserProfileMutation, { data, loading, error }] = useUpdateUserProfileMutation({
|
8138
|
+
* variables: {
|
8139
|
+
* input: // value for 'input'
|
8140
|
+
* },
|
8141
|
+
* });
|
8142
|
+
*/
|
8143
|
+
export declare function useUpdateUserProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateUserProfileMutation, IUpdateUserProfileMutationVariables>): Apollo.MutationTuple<IUpdateUserProfileMutation, Exact<{
|
8144
|
+
input?: InputMaybe<IUpdateProfileInput>;
|
8145
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
8146
|
+
export type UpdateUserProfileMutationHookResult = ReturnType<typeof useUpdateUserProfileMutation>;
|
8147
|
+
export type UpdateUserProfileMutationResult = Apollo.MutationResult<IUpdateUserProfileMutation>;
|
8148
|
+
export type UpdateUserProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateUserProfileMutation, IUpdateUserProfileMutationVariables>;
|
7749
8149
|
export declare const UpdateTeamConfigurationDocument: DocumentNode;
|
7750
8150
|
export type IUpdateTeamConfigurationMutationFn = Apollo.MutationFunction<IUpdateTeamConfigurationMutation, IUpdateTeamConfigurationMutationVariables>;
|
7751
8151
|
/**
|
@@ -8037,6 +8437,45 @@ export type GetAccountsQueryHookResult = ReturnType<typeof useGetAccountsQuery>;
|
|
8037
8437
|
export type GetAccountsLazyQueryHookResult = ReturnType<typeof useGetAccountsLazyQuery>;
|
8038
8438
|
export type GetAccountsSuspenseQueryHookResult = ReturnType<typeof useGetAccountsSuspenseQuery>;
|
8039
8439
|
export type GetAccountsQueryResult = Apollo.QueryResult<IGetAccountsQuery, IGetAccountsQueryVariables>;
|
8440
|
+
export declare const GetAccountsLoginRecordsDocument: DocumentNode;
|
8441
|
+
/**
|
8442
|
+
* __useGetAccountsLoginRecordsQuery__
|
8443
|
+
*
|
8444
|
+
* To run a query within a React component, call `useGetAccountsLoginRecordsQuery` and pass it any options that fit your needs.
|
8445
|
+
* When your component renders, `useGetAccountsLoginRecordsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
8446
|
+
* you can use to render your UI.
|
8447
|
+
*
|
8448
|
+
* @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;
|
8449
|
+
*
|
8450
|
+
* @example
|
8451
|
+
* const { data, loading, error } = useGetAccountsLoginRecordsQuery({
|
8452
|
+
* variables: {
|
8453
|
+
* skip: // value for 'skip'
|
8454
|
+
* limit: // value for 'limit'
|
8455
|
+
* },
|
8456
|
+
* });
|
8457
|
+
*/
|
8458
|
+
export declare function useGetAccountsLoginRecordsQuery(baseOptions: Apollo.QueryHookOptions<IGetAccountsLoginRecordsQuery, IGetAccountsLoginRecordsQueryVariables> & ({
|
8459
|
+
variables: IGetAccountsLoginRecordsQueryVariables;
|
8460
|
+
skip?: boolean;
|
8461
|
+
} | {
|
8462
|
+
skip: boolean;
|
8463
|
+
})): Apollo.QueryResult<IGetAccountsLoginRecordsQuery, Exact<{
|
8464
|
+
skip: Scalars["Int"]["input"];
|
8465
|
+
limit: Scalars["Int"]["input"];
|
8466
|
+
}>>;
|
8467
|
+
export declare function useGetAccountsLoginRecordsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsLoginRecordsQuery, IGetAccountsLoginRecordsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsLoginRecordsQuery, Exact<{
|
8468
|
+
skip: Scalars["Int"]["input"];
|
8469
|
+
limit: Scalars["Int"]["input"];
|
8470
|
+
}>>;
|
8471
|
+
export declare function useGetAccountsLoginRecordsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsLoginRecordsQuery, IGetAccountsLoginRecordsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsLoginRecordsQuery, Exact<{
|
8472
|
+
skip: Scalars["Int"]["input"];
|
8473
|
+
limit: Scalars["Int"]["input"];
|
8474
|
+
}>>;
|
8475
|
+
export type GetAccountsLoginRecordsQueryHookResult = ReturnType<typeof useGetAccountsLoginRecordsQuery>;
|
8476
|
+
export type GetAccountsLoginRecordsLazyQueryHookResult = ReturnType<typeof useGetAccountsLoginRecordsLazyQuery>;
|
8477
|
+
export type GetAccountsLoginRecordsSuspenseQueryHookResult = ReturnType<typeof useGetAccountsLoginRecordsSuspenseQuery>;
|
8478
|
+
export type GetAccountsLoginRecordsQueryResult = Apollo.QueryResult<IGetAccountsLoginRecordsQuery, IGetAccountsLoginRecordsQueryVariables>;
|
8040
8479
|
export declare const GetAllCountriesDocument: DocumentNode;
|
8041
8480
|
/**
|
8042
8481
|
* __useGetAllCountriesQuery__
|
@@ -9019,33 +9458,6 @@ export declare function useInitializeOrgNameInContextMutation(baseOptions?: Apol
|
|
9019
9458
|
export type InitializeOrgNameInContextMutationHookResult = ReturnType<typeof useInitializeOrgNameInContextMutation>;
|
9020
9459
|
export type InitializeOrgNameInContextMutationResult = Apollo.MutationResult<IInitializeOrgNameInContextMutation>;
|
9021
9460
|
export type InitializeOrgNameInContextMutationOptions = Apollo.BaseMutationOptions<IInitializeOrgNameInContextMutation, IInitializeOrgNameInContextMutationVariables>;
|
9022
|
-
export declare const InitializeTeamInContextDocument: DocumentNode;
|
9023
|
-
export type IInitializeTeamInContextMutationFn = Apollo.MutationFunction<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>;
|
9024
|
-
/**
|
9025
|
-
* __useInitializeTeamInContextMutation__
|
9026
|
-
*
|
9027
|
-
* To run a mutation, you first call `useInitializeTeamInContextMutation` within a React component and pass it any options that fit your needs.
|
9028
|
-
* When your component renders, `useInitializeTeamInContextMutation` returns a tuple that includes:
|
9029
|
-
* - A mutate function that you can call at any time to execute the mutation
|
9030
|
-
* - An object with fields that represent the current status of the mutation's execution
|
9031
|
-
*
|
9032
|
-
* @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;
|
9033
|
-
*
|
9034
|
-
* @example
|
9035
|
-
* const [initializeTeamInContextMutation, { data, loading, error }] = useInitializeTeamInContextMutation({
|
9036
|
-
* variables: {
|
9037
|
-
* teamName: // value for 'teamName'
|
9038
|
-
* orgName: // value for 'orgName'
|
9039
|
-
* },
|
9040
|
-
* });
|
9041
|
-
*/
|
9042
|
-
export declare function useInitializeTeamInContextMutation(baseOptions?: Apollo.MutationHookOptions<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>): Apollo.MutationTuple<IInitializeTeamInContextMutation, Exact<{
|
9043
|
-
teamName: Scalars["String"]["input"];
|
9044
|
-
orgName: Scalars["String"]["input"];
|
9045
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
9046
|
-
export type InitializeTeamInContextMutationHookResult = ReturnType<typeof useInitializeTeamInContextMutation>;
|
9047
|
-
export type InitializeTeamInContextMutationResult = Apollo.MutationResult<IInitializeTeamInContextMutation>;
|
9048
|
-
export type InitializeTeamInContextMutationOptions = Apollo.BaseMutationOptions<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>;
|
9049
9461
|
export declare const ReassignConfigurationDocument: DocumentNode;
|
9050
9462
|
export type IReassignConfigurationMutationFn = Apollo.MutationFunction<IReassignConfigurationMutation, IReassignConfigurationMutationVariables>;
|
9051
9463
|
/**
|
@@ -9105,6 +9517,39 @@ export declare function useUpdateConfigurationMutation(baseOptions?: Apollo.Muta
|
|
9105
9517
|
export type UpdateConfigurationMutationHookResult = ReturnType<typeof useUpdateConfigurationMutation>;
|
9106
9518
|
export type UpdateConfigurationMutationResult = Apollo.MutationResult<IUpdateConfigurationMutation>;
|
9107
9519
|
export type UpdateConfigurationMutationOptions = Apollo.BaseMutationOptions<IUpdateConfigurationMutation, IUpdateConfigurationMutationVariables>;
|
9520
|
+
export declare const WriteSettingsDocument: DocumentNode;
|
9521
|
+
export type IWriteSettingsMutationFn = Apollo.MutationFunction<IWriteSettingsMutation, IWriteSettingsMutationVariables>;
|
9522
|
+
/**
|
9523
|
+
* __useWriteSettingsMutation__
|
9524
|
+
*
|
9525
|
+
* To run a mutation, you first call `useWriteSettingsMutation` within a React component and pass it any options that fit your needs.
|
9526
|
+
* When your component renders, `useWriteSettingsMutation` returns a tuple that includes:
|
9527
|
+
* - A mutate function that you can call at any time to execute the mutation
|
9528
|
+
* - An object with fields that represent the current status of the mutation's execution
|
9529
|
+
*
|
9530
|
+
* @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;
|
9531
|
+
*
|
9532
|
+
* @example
|
9533
|
+
* const [writeSettingsMutation, { data, loading, error }] = useWriteSettingsMutation({
|
9534
|
+
* variables: {
|
9535
|
+
* editingUri: // value for 'editingUri'
|
9536
|
+
* settings: // value for 'settings'
|
9537
|
+
* overrides: // value for 'overrides'
|
9538
|
+
* target: // value for 'target'
|
9539
|
+
* donotNotifyError: // value for 'donotNotifyError'
|
9540
|
+
* },
|
9541
|
+
* });
|
9542
|
+
*/
|
9543
|
+
export declare function useWriteSettingsMutation(baseOptions?: Apollo.MutationHookOptions<IWriteSettingsMutation, IWriteSettingsMutationVariables>): Apollo.MutationTuple<IWriteSettingsMutation, Exact<{
|
9544
|
+
editingUri?: InputMaybe<Scalars["URI"]["input"]>;
|
9545
|
+
settings?: InputMaybe<Scalars["AnyObject"]["input"]>;
|
9546
|
+
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
9547
|
+
target?: InputMaybe<Scalars["Int"]["input"]>;
|
9548
|
+
donotNotifyError?: InputMaybe<Scalars["Boolean"]["input"]>;
|
9549
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
9550
|
+
export type WriteSettingsMutationHookResult = ReturnType<typeof useWriteSettingsMutation>;
|
9551
|
+
export type WriteSettingsMutationResult = Apollo.MutationResult<IWriteSettingsMutation>;
|
9552
|
+
export type WriteSettingsMutationOptions = Apollo.BaseMutationOptions<IWriteSettingsMutation, IWriteSettingsMutationVariables>;
|
9108
9553
|
export declare const GetApplicationPolicyDocument: DocumentNode;
|
9109
9554
|
/**
|
9110
9555
|
* __useGetApplicationPolicyQuery__
|
@@ -9442,64 +9887,6 @@ export type GetDefaultRoleQueryHookResult = ReturnType<typeof useGetDefaultRoleQ
|
|
9442
9887
|
export type GetDefaultRoleLazyQueryHookResult = ReturnType<typeof useGetDefaultRoleLazyQuery>;
|
9443
9888
|
export type GetDefaultRoleSuspenseQueryHookResult = ReturnType<typeof useGetDefaultRoleSuspenseQuery>;
|
9444
9889
|
export type GetDefaultRoleQueryResult = Apollo.QueryResult<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>;
|
9445
|
-
export declare const GetTeamContextDocument: DocumentNode;
|
9446
|
-
/**
|
9447
|
-
* __useGetTeamContextQuery__
|
9448
|
-
*
|
9449
|
-
* To run a query within a React component, call `useGetTeamContextQuery` and pass it any options that fit your needs.
|
9450
|
-
* When your component renders, `useGetTeamContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9451
|
-
* you can use to render your UI.
|
9452
|
-
*
|
9453
|
-
* @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;
|
9454
|
-
*
|
9455
|
-
* @example
|
9456
|
-
* const { data, loading, error } = useGetTeamContextQuery({
|
9457
|
-
* variables: {
|
9458
|
-
* },
|
9459
|
-
* });
|
9460
|
-
*/
|
9461
|
-
export declare function useGetTeamContextQuery(baseOptions?: Apollo.QueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.QueryResult<IGetTeamContextQuery, Exact<{
|
9462
|
-
[key: string]: never;
|
9463
|
-
}>>;
|
9464
|
-
export declare function useGetTeamContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamContextQuery, Exact<{
|
9465
|
-
[key: string]: never;
|
9466
|
-
}>>;
|
9467
|
-
export declare function useGetTeamContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamContextQuery, Exact<{
|
9468
|
-
[key: string]: never;
|
9469
|
-
}>>;
|
9470
|
-
export type GetTeamContextQueryHookResult = ReturnType<typeof useGetTeamContextQuery>;
|
9471
|
-
export type GetTeamContextLazyQueryHookResult = ReturnType<typeof useGetTeamContextLazyQuery>;
|
9472
|
-
export type GetTeamContextSuspenseQueryHookResult = ReturnType<typeof useGetTeamContextSuspenseQuery>;
|
9473
|
-
export type GetTeamContextQueryResult = Apollo.QueryResult<IGetTeamContextQuery, IGetTeamContextQueryVariables>;
|
9474
|
-
export declare const GetTeamNameFromContextDocument: DocumentNode;
|
9475
|
-
/**
|
9476
|
-
* __useGetTeamNameFromContextQuery__
|
9477
|
-
*
|
9478
|
-
* To run a query within a React component, call `useGetTeamNameFromContextQuery` and pass it any options that fit your needs.
|
9479
|
-
* When your component renders, `useGetTeamNameFromContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9480
|
-
* you can use to render your UI.
|
9481
|
-
*
|
9482
|
-
* @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;
|
9483
|
-
*
|
9484
|
-
* @example
|
9485
|
-
* const { data, loading, error } = useGetTeamNameFromContextQuery({
|
9486
|
-
* variables: {
|
9487
|
-
* },
|
9488
|
-
* });
|
9489
|
-
*/
|
9490
|
-
export declare function useGetTeamNameFromContextQuery(baseOptions?: Apollo.QueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.QueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9491
|
-
[key: string]: never;
|
9492
|
-
}>>;
|
9493
|
-
export declare function useGetTeamNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamNameFromContextQuery, Exact<{
|
9494
|
-
[key: string]: never;
|
9495
|
-
}>>;
|
9496
|
-
export declare function useGetTeamNameFromContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9497
|
-
[key: string]: never;
|
9498
|
-
}>>;
|
9499
|
-
export type GetTeamNameFromContextQueryHookResult = ReturnType<typeof useGetTeamNameFromContextQuery>;
|
9500
|
-
export type GetTeamNameFromContextLazyQueryHookResult = ReturnType<typeof useGetTeamNameFromContextLazyQuery>;
|
9501
|
-
export type GetTeamNameFromContextSuspenseQueryHookResult = ReturnType<typeof useGetTeamNameFromContextSuspenseQuery>;
|
9502
|
-
export type GetTeamNameFromContextQueryResult = Apollo.QueryResult<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>;
|
9503
9890
|
export declare const GetUserAccessRoleDocument: DocumentNode;
|
9504
9891
|
/**
|
9505
9892
|
* __useGetUserAccessRoleQuery__
|
@@ -9787,6 +10174,36 @@ export type GetOrgWithResourcesRoleQueryHookResult = ReturnType<typeof useGetOrg
|
|
9787
10174
|
export type GetOrgWithResourcesRoleLazyQueryHookResult = ReturnType<typeof useGetOrgWithResourcesRoleLazyQuery>;
|
9788
10175
|
export type GetOrgWithResourcesRoleSuspenseQueryHookResult = ReturnType<typeof useGetOrgWithResourcesRoleSuspenseQuery>;
|
9789
10176
|
export type GetOrgWithResourcesRoleQueryResult = Apollo.QueryResult<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>;
|
10177
|
+
export declare const GetPageSettingsDocument: DocumentNode;
|
10178
|
+
/**
|
10179
|
+
* __useGetPageSettingsQuery__
|
10180
|
+
*
|
10181
|
+
* To run a query within a React component, call `useGetPageSettingsQuery` and pass it any options that fit your needs.
|
10182
|
+
* When your component renders, `useGetPageSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
10183
|
+
* you can use to render your UI.
|
10184
|
+
*
|
10185
|
+
* @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;
|
10186
|
+
*
|
10187
|
+
* @example
|
10188
|
+
* const { data, loading, error } = useGetPageSettingsQuery({
|
10189
|
+
* variables: {
|
10190
|
+
* resourceUri: // value for 'resourceUri'
|
10191
|
+
* },
|
10192
|
+
* });
|
10193
|
+
*/
|
10194
|
+
export declare function useGetPageSettingsQuery(baseOptions?: Apollo.QueryHookOptions<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>): Apollo.QueryResult<IGetPageSettingsQuery, Exact<{
|
10195
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
10196
|
+
}>>;
|
10197
|
+
export declare function useGetPageSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetPageSettingsQuery, Exact<{
|
10198
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
10199
|
+
}>>;
|
10200
|
+
export declare function useGetPageSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetPageSettingsQuery, Exact<{
|
10201
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
10202
|
+
}>>;
|
10203
|
+
export type GetPageSettingsQueryHookResult = ReturnType<typeof useGetPageSettingsQuery>;
|
10204
|
+
export type GetPageSettingsLazyQueryHookResult = ReturnType<typeof useGetPageSettingsLazyQuery>;
|
10205
|
+
export type GetPageSettingsSuspenseQueryHookResult = ReturnType<typeof useGetPageSettingsSuspenseQuery>;
|
10206
|
+
export type GetPageSettingsQueryResult = Apollo.QueryResult<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>;
|
9790
10207
|
export declare const ResolveConfigurationDocument: DocumentNode;
|
9791
10208
|
/**
|
9792
10209
|
* __useResolveConfigurationQuery__
|
@@ -9904,17 +10321,26 @@ export declare const DefaultSettingsDocument: DocumentNode;
|
|
9904
10321
|
* const { data, loading, error } = useDefaultSettingsQuery({
|
9905
10322
|
* variables: {
|
9906
10323
|
* target: // value for 'target'
|
10324
|
+
* options: // value for 'options'
|
9907
10325
|
* },
|
9908
10326
|
* });
|
9909
10327
|
*/
|
9910
|
-
export declare function useDefaultSettingsQuery(baseOptions
|
9911
|
-
|
10328
|
+
export declare function useDefaultSettingsQuery(baseOptions: Apollo.QueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables> & ({
|
10329
|
+
variables: IDefaultSettingsQueryVariables;
|
10330
|
+
skip?: boolean;
|
10331
|
+
} | {
|
10332
|
+
skip: boolean;
|
10333
|
+
})): Apollo.QueryResult<IDefaultSettingsQuery, Exact<{
|
10334
|
+
target: Scalars["Int"]["input"];
|
10335
|
+
options: IPreferencesOpenOptionsInput;
|
9912
10336
|
}>>;
|
9913
10337
|
export declare function useDefaultSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IDefaultSettingsQuery, Exact<{
|
9914
|
-
target
|
10338
|
+
target: Scalars["Int"]["input"];
|
10339
|
+
options: IPreferencesOpenOptionsInput;
|
9915
10340
|
}>>;
|
9916
10341
|
export declare function useDefaultSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultSettingsQuery, Exact<{
|
9917
|
-
target
|
10342
|
+
target: Scalars["Int"]["input"];
|
10343
|
+
options: IPreferencesOpenOptionsInput;
|
9918
10344
|
}>>;
|
9919
10345
|
export type DefaultSettingsQueryHookResult = ReturnType<typeof useDefaultSettingsQuery>;
|
9920
10346
|
export type DefaultSettingsLazyQueryHookResult = ReturnType<typeof useDefaultSettingsLazyQuery>;
|
@@ -10645,11 +11071,15 @@ export type IResolversTypes = {
|
|
10645
11071
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
10646
11072
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
10647
11073
|
AuthUserInput: IAuthUserInput;
|
11074
|
+
AuthorityComponent: ResolverTypeWrapper<IAuthorityComponent>;
|
10648
11075
|
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
10649
11076
|
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
10650
11077
|
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
10651
11078
|
BillingPermissions: ResolverTypeWrapper<IBillingPermissions>;
|
10652
11079
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
11080
|
+
CdecodeParsedUri: ResolverTypeWrapper<ICdecodeParsedUri>;
|
11081
|
+
CdecodeURIPathSegment: ResolverTypeWrapper<ICdecodeUriPathSegment>;
|
11082
|
+
CdecodeUriInput: ICdecodeUriInput;
|
10653
11083
|
Cities: ResolverTypeWrapper<ICities>;
|
10654
11084
|
CitiesInput: ICitiesInput;
|
10655
11085
|
CitiesOptions: ICitiesOptions;
|
@@ -10662,6 +11092,7 @@ export type IResolversTypes = {
|
|
10662
11092
|
ClientPermissions: ResolverTypeWrapper<IClientPermissions>;
|
10663
11093
|
ClientTypes: IClientTypes;
|
10664
11094
|
ConfigCollectionName: IConfigCollectionName;
|
11095
|
+
ConfigExtensionName: IConfigExtensionName;
|
10665
11096
|
ConfigFragmentName: IConfigFragmentName;
|
10666
11097
|
Configuration: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['Configuration']>;
|
10667
11098
|
ConfigurationContributionNames: IConfigurationContributionNames;
|
@@ -10674,14 +11105,28 @@ export type IResolversTypes = {
|
|
10674
11105
|
resources?: Maybe<Array<Maybe<IResolversTypes['IConfigurationModel']>>>;
|
10675
11106
|
user?: Maybe<IResolversTypes['IConfigurationModel']>;
|
10676
11107
|
}>;
|
11108
|
+
ConfigurationDefaults: ResolverTypeWrapper<IConfigurationDefaults>;
|
11109
|
+
ConfigurationDefaultsInput: IConfigurationDefaultsInput;
|
11110
|
+
ConfigurationExtSourceType: IConfigurationExtSourceType;
|
10677
11111
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
11112
|
+
ConfigurationExtensionInfoInput: IConfigurationExtensionInfoInput;
|
10678
11113
|
ConfigurationInput: IConfigurationInput;
|
10679
11114
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
11115
|
+
ConfigurationNode: ResolverTypeWrapper<IConfigurationNode>;
|
11116
|
+
ConfigurationNodeContextInput: IConfigurationNodeContextInput;
|
11117
|
+
ConfigurationNodeInput: IConfigurationNodeInput;
|
11118
|
+
ConfigurationNodeRegistry: ResolverTypeWrapper<IConfigurationNodeRegistry>;
|
11119
|
+
ConfigurationOverrideEntry: ResolverTypeWrapper<IConfigurationOverrideEntry>;
|
11120
|
+
ConfigurationOverrideEntryInput: IConfigurationOverrideEntryInput;
|
10680
11121
|
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
10681
11122
|
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
10682
11123
|
ConfigurationPolicy: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['ConfigurationPolicy']>;
|
11124
|
+
ConfigurationSchemaId: IConfigurationSchemaId;
|
10683
11125
|
ConfigurationScope: ConfigurationScope;
|
11126
|
+
ConfigurationScopeInput: IConfigurationScopeInput;
|
10684
11127
|
ConfigurationServiceAction: IConfigurationServiceAction;
|
11128
|
+
ConfigurationSource: ResolverTypeWrapper<IConfigurationSource>;
|
11129
|
+
ConfigurationSourceInput: IConfigurationSourceInput;
|
10685
11130
|
ConfigurationTarget: ConfigurationTarget;
|
10686
11131
|
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
10687
11132
|
Context: ResolverTypeWrapper<IContext>;
|
@@ -10696,6 +11141,7 @@ export type IResolversTypes = {
|
|
10696
11141
|
CountryInput: ICountryInput;
|
10697
11142
|
CountryWithPhoneCode: ResolverTypeWrapper<ICountryWithPhoneCode>;
|
10698
11143
|
CreateAccessTokenResult: ResolverTypeWrapper<ICreateAccessTokenResult>;
|
11144
|
+
CreateConfigurationNodeRegistryInput: ICreateConfigurationNodeRegistryInput;
|
10699
11145
|
Date: ResolverTypeWrapper<Scalars['Date']['output']>;
|
10700
11146
|
DateTime: ResolverTypeWrapper<Scalars['DateTime']['output']>;
|
10701
11147
|
DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
|
@@ -10767,6 +11213,8 @@ export type IResolversTypes = {
|
|
10767
11213
|
InviteStatus: IInviteStatus;
|
10768
11214
|
JSON: ResolverTypeWrapper<Scalars['JSON']['output']>;
|
10769
11215
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']['output']>;
|
11216
|
+
JsonContribution: ResolverTypeWrapper<IJsonContribution>;
|
11217
|
+
JsonContributionInput: IJsonContributionInput;
|
10770
11218
|
KeyPathSegment: IKeyPathSegment;
|
10771
11219
|
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
10772
11220
|
LoginDeviceCredential: ResolverTypeWrapper<ILoginDeviceCredential>;
|
@@ -10839,6 +11287,7 @@ export type IResolversTypes = {
|
|
10839
11287
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
10840
11288
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
10841
11289
|
PageResourcePermission: ResolverTypeWrapper<IPageResourcePermission>;
|
11290
|
+
PageResourceSetting: ResolverTypeWrapper<IPageResourceSetting>;
|
10842
11291
|
PaymentMethodsPermissions: ResolverTypeWrapper<IPaymentMethodsPermissions>;
|
10843
11292
|
PaymentProfilePermissions: ResolverTypeWrapper<IPaymentProfilePermissions>;
|
10844
11293
|
PermissionAction: IPermissionAction;
|
@@ -10882,6 +11331,10 @@ export type IResolversTypes = {
|
|
10882
11331
|
ProjectStatusPermissions: ResolverTypeWrapper<IProjectStatusPermissions>;
|
10883
11332
|
Query: ResolverTypeWrapper<{}>;
|
10884
11333
|
Range: ResolverTypeWrapper<IRange>;
|
11334
|
+
RealmConfiguration: ResolverTypeWrapper<IRealmConfiguration>;
|
11335
|
+
RealmConfigurationInput: IRealmConfigurationInput;
|
11336
|
+
RealmUser: ResolverTypeWrapper<IRealmUser>;
|
11337
|
+
RealmUserInput: IRealmUserInput;
|
10885
11338
|
RegistryExtensions: IRegistryExtensions;
|
10886
11339
|
RenewAuthUsingRefreshToken: ResolverTypeWrapper<IRenewAuthUsingRefreshToken>;
|
10887
11340
|
ReportPermissions: ResolverTypeWrapper<IReportPermissions>;
|
@@ -10903,6 +11356,8 @@ export type IResolversTypes = {
|
|
10903
11356
|
RolesTargetInput: IRolesTargetInput;
|
10904
11357
|
RouteData: ResolverTypeWrapper<IRouteData>;
|
10905
11358
|
RouteParams: IRouteParams;
|
11359
|
+
ServerConfiguration: ResolverTypeWrapper<IServerConfiguration>;
|
11360
|
+
ServerConfigurationInput: IServerConfigurationInput;
|
10906
11361
|
SettingPermissions: ResolverTypeWrapper<ISettingPermissions>;
|
10907
11362
|
SettingValueType: ISettingValueType;
|
10908
11363
|
Settings: ResolverTypeWrapper<ISettings>;
|
@@ -10912,6 +11367,7 @@ export type IResolversTypes = {
|
|
10912
11367
|
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
10913
11368
|
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
10914
11369
|
SettingsSubject: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['SettingsSubject']>;
|
11370
|
+
SetupTenantInput: ISetupTenantInput;
|
10915
11371
|
Sort: ISort;
|
10916
11372
|
SortEnum: ISortEnum;
|
10917
11373
|
State: ResolverTypeWrapper<IState>;
|
@@ -10936,6 +11392,7 @@ export type IResolversTypes = {
|
|
10936
11392
|
TeamServiceAction: ITeamServiceAction;
|
10937
11393
|
TeamType: ITeamType;
|
10938
11394
|
TeamUpdateRequest: ITeamUpdateRequest;
|
11395
|
+
TenantInfo: ResolverTypeWrapper<ITenantInfo>;
|
10939
11396
|
TerritorialStateInput: ITerritorialStateInput;
|
10940
11397
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
10941
11398
|
ThreadsPermissions: ResolverTypeWrapper<IThreadsPermissions>;
|
@@ -10944,6 +11401,8 @@ export type IResolversTypes = {
|
|
10944
11401
|
TokenTypesEnum: ITokenTypesEnum;
|
10945
11402
|
URI: ResolverTypeWrapper<Scalars['URI']['output']>;
|
10946
11403
|
URIInput: ResolverTypeWrapper<Scalars['URIInput']['output']>;
|
11404
|
+
UpdateConfigurationNodeRegistryInput: IUpdateConfigurationNodeRegistryInput;
|
11405
|
+
UpdateProfileInput: IUpdateProfileInput;
|
10947
11406
|
UpdateUserAccountAliasesInput: IUpdateUserAccountAliasesInput;
|
10948
11407
|
Upload: ResolverTypeWrapper<Scalars['Upload']['output']>;
|
10949
11408
|
UploadedFileInput: IUploadedFileInput;
|
@@ -10952,6 +11411,9 @@ export type IResolversTypes = {
|
|
10952
11411
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
10953
11412
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
10954
11413
|
UserAccountInput: IUserAccountInput;
|
11414
|
+
UserAccountLoginHistory: ResolverTypeWrapper<IUserAccountLoginHistory>;
|
11415
|
+
UserAccountLoginHistorySystem: ResolverTypeWrapper<IUserAccountLoginHistorySystem>;
|
11416
|
+
UserAccountLoginHistorySystemInput: IUserAccountLoginHistorySystemInput;
|
10955
11417
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
10956
11418
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
10957
11419
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
@@ -11015,11 +11477,15 @@ export type IResolversParentTypes = {
|
|
11015
11477
|
AuthTokens: IAuthTokens;
|
11016
11478
|
AuthUser: IAuthUser;
|
11017
11479
|
AuthUserInput: IAuthUserInput;
|
11480
|
+
AuthorityComponent: IAuthorityComponent;
|
11018
11481
|
BaseAccountService: IBaseAccountService;
|
11019
11482
|
BaseOrganizationService: IBaseOrganizationService;
|
11020
11483
|
BaseTeamService: IBaseTeamService;
|
11021
11484
|
BillingPermissions: IBillingPermissions;
|
11022
11485
|
Boolean: Scalars['Boolean']['output'];
|
11486
|
+
CdecodeParsedUri: ICdecodeParsedUri;
|
11487
|
+
CdecodeURIPathSegment: ICdecodeUriPathSegment;
|
11488
|
+
CdecodeUriInput: ICdecodeUriInput;
|
11023
11489
|
Cities: ICities;
|
11024
11490
|
CitiesInput: ICitiesInput;
|
11025
11491
|
CitiesOptions: ICitiesOptions;
|
@@ -11038,12 +11504,24 @@ export type IResolversParentTypes = {
|
|
11038
11504
|
resources?: Maybe<Array<Maybe<IResolversParentTypes['IConfigurationModel']>>>;
|
11039
11505
|
user?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
11040
11506
|
};
|
11507
|
+
ConfigurationDefaults: IConfigurationDefaults;
|
11508
|
+
ConfigurationDefaultsInput: IConfigurationDefaultsInput;
|
11041
11509
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
11510
|
+
ConfigurationExtensionInfoInput: IConfigurationExtensionInfoInput;
|
11042
11511
|
ConfigurationInput: IConfigurationInput;
|
11043
11512
|
ConfigurationModel: IConfigurationModel;
|
11513
|
+
ConfigurationNode: IConfigurationNode;
|
11514
|
+
ConfigurationNodeContextInput: IConfigurationNodeContextInput;
|
11515
|
+
ConfigurationNodeInput: IConfigurationNodeInput;
|
11516
|
+
ConfigurationNodeRegistry: IConfigurationNodeRegistry;
|
11517
|
+
ConfigurationOverrideEntry: IConfigurationOverrideEntry;
|
11518
|
+
ConfigurationOverrideEntryInput: IConfigurationOverrideEntryInput;
|
11044
11519
|
ConfigurationOverrides: IConfigurationOverrides;
|
11045
11520
|
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
11046
11521
|
ConfigurationPolicy: IResolversUnionTypes<IResolversParentTypes>['ConfigurationPolicy'];
|
11522
|
+
ConfigurationScopeInput: IConfigurationScopeInput;
|
11523
|
+
ConfigurationSource: IConfigurationSource;
|
11524
|
+
ConfigurationSourceInput: IConfigurationSourceInput;
|
11047
11525
|
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
11048
11526
|
Context: IContext;
|
11049
11527
|
ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
|
@@ -11056,6 +11534,7 @@ export type IResolversParentTypes = {
|
|
11056
11534
|
CountryInput: ICountryInput;
|
11057
11535
|
CountryWithPhoneCode: ICountryWithPhoneCode;
|
11058
11536
|
CreateAccessTokenResult: ICreateAccessTokenResult;
|
11537
|
+
CreateConfigurationNodeRegistryInput: ICreateConfigurationNodeRegistryInput;
|
11059
11538
|
Date: Scalars['Date']['output'];
|
11060
11539
|
DateTime: Scalars['DateTime']['output'];
|
11061
11540
|
DefaultConfiguration: IDefaultConfiguration;
|
@@ -11120,6 +11599,8 @@ export type IResolversParentTypes = {
|
|
11120
11599
|
InviteMember: IInviteMember;
|
11121
11600
|
JSON: Scalars['JSON']['output'];
|
11122
11601
|
JSONObject: Scalars['JSONObject']['output'];
|
11602
|
+
JsonContribution: IJsonContribution;
|
11603
|
+
JsonContributionInput: IJsonContributionInput;
|
11123
11604
|
KeyPathSegment: IKeyPathSegment;
|
11124
11605
|
LinkedIdentity: ILinkedIdentity;
|
11125
11606
|
LoginDeviceCredential: ILoginDeviceCredential;
|
@@ -11184,6 +11665,7 @@ export type IResolversParentTypes = {
|
|
11184
11665
|
Overrides: IOverrides;
|
11185
11666
|
PageInfo: IPageInfo;
|
11186
11667
|
PageResourcePermission: IPageResourcePermission;
|
11668
|
+
PageResourceSetting: IPageResourceSetting;
|
11187
11669
|
PaymentMethodsPermissions: IPaymentMethodsPermissions;
|
11188
11670
|
PaymentProfilePermissions: IPaymentProfilePermissions;
|
11189
11671
|
PermissionPermissions: IPermissionPermissions;
|
@@ -11221,6 +11703,10 @@ export type IResolversParentTypes = {
|
|
11221
11703
|
ProjectStatusPermissions: IProjectStatusPermissions;
|
11222
11704
|
Query: {};
|
11223
11705
|
Range: IRange;
|
11706
|
+
RealmConfiguration: IRealmConfiguration;
|
11707
|
+
RealmConfigurationInput: IRealmConfigurationInput;
|
11708
|
+
RealmUser: IRealmUser;
|
11709
|
+
RealmUserInput: IRealmUserInput;
|
11224
11710
|
RenewAuthUsingRefreshToken: IRenewAuthUsingRefreshToken;
|
11225
11711
|
ReportPermissions: IReportPermissions;
|
11226
11712
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
@@ -11238,6 +11724,8 @@ export type IResolversParentTypes = {
|
|
11238
11724
|
RolesTarget: IRolesTarget;
|
11239
11725
|
RolesTargetInput: IRolesTargetInput;
|
11240
11726
|
RouteData: IRouteData;
|
11727
|
+
ServerConfiguration: IServerConfiguration;
|
11728
|
+
ServerConfigurationInput: IServerConfigurationInput;
|
11241
11729
|
SettingPermissions: ISettingPermissions;
|
11242
11730
|
Settings: ISettings;
|
11243
11731
|
SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
|
@@ -11246,6 +11734,7 @@ export type IResolversParentTypes = {
|
|
11246
11734
|
SettingsGroup: ISettingsGroup;
|
11247
11735
|
SettingsSection: ISettingsSection;
|
11248
11736
|
SettingsSubject: IResolversUnionTypes<IResolversParentTypes>['SettingsSubject'];
|
11737
|
+
SetupTenantInput: ISetupTenantInput;
|
11249
11738
|
Sort: ISort;
|
11250
11739
|
State: IState;
|
11251
11740
|
StateInput: IStateInput;
|
@@ -11268,6 +11757,7 @@ export type IResolversParentTypes = {
|
|
11268
11757
|
TeamRemoveRequest: ITeamRemoveRequest;
|
11269
11758
|
TeamType: ITeamType;
|
11270
11759
|
TeamUpdateRequest: ITeamUpdateRequest;
|
11760
|
+
TenantInfo: ITenantInfo;
|
11271
11761
|
TerritorialStateInput: ITerritorialStateInput;
|
11272
11762
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
11273
11763
|
ThreadsPermissions: IThreadsPermissions;
|
@@ -11275,6 +11765,8 @@ export type IResolversParentTypes = {
|
|
11275
11765
|
Timestamp: Scalars['Timestamp']['output'];
|
11276
11766
|
URI: Scalars['URI']['output'];
|
11277
11767
|
URIInput: Scalars['URIInput']['output'];
|
11768
|
+
UpdateConfigurationNodeRegistryInput: IUpdateConfigurationNodeRegistryInput;
|
11769
|
+
UpdateProfileInput: IUpdateProfileInput;
|
11278
11770
|
UpdateUserAccountAliasesInput: IUpdateUserAccountAliasesInput;
|
11279
11771
|
Upload: Scalars['Upload']['output'];
|
11280
11772
|
UploadedFileInput: IUploadedFileInput;
|
@@ -11283,6 +11775,9 @@ export type IResolversParentTypes = {
|
|
11283
11775
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
11284
11776
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
11285
11777
|
UserAccountInput: IUserAccountInput;
|
11778
|
+
UserAccountLoginHistory: IUserAccountLoginHistory;
|
11779
|
+
UserAccountLoginHistorySystem: IUserAccountLoginHistorySystem;
|
11780
|
+
UserAccountLoginHistorySystemInput: IUserAccountLoginHistorySystemInput;
|
11286
11781
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
11287
11782
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
11288
11783
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
@@ -11455,6 +11950,12 @@ export type IAuthUserResolvers<ContextType = MyContext, ParentType extends IReso
|
|
11455
11950
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11456
11951
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11457
11952
|
};
|
11953
|
+
export type IAuthorityComponentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthorityComponent'] = IResolversParentTypes['AuthorityComponent']> = {
|
11954
|
+
bucketOrAppName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11955
|
+
domain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11956
|
+
region?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11957
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11958
|
+
};
|
11458
11959
|
export type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
11459
11960
|
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'context' | 'input'>>;
|
11460
11961
|
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'token' | 'userId'>>;
|
@@ -11510,6 +12011,21 @@ export type IBillingPermissionsResolvers<ContextType = MyContext, ParentType ext
|
|
11510
12011
|
subscriptions?: Resolver<Maybe<IResolversTypes['SubscriptionsPermissions']>, ParentType, ContextType>;
|
11511
12012
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11512
12013
|
};
|
12014
|
+
export type ICdecodeParsedUriResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CdecodeParsedUri'] = IResolversParentTypes['CdecodeParsedUri']> = {
|
12015
|
+
authority?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12016
|
+
fragmentData?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12017
|
+
pathSegments?: Resolver<IResolversTypes['CdecodeURIPathSegment'], ParentType, ContextType>;
|
12018
|
+
queryData?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12019
|
+
scheme?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12020
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12021
|
+
};
|
12022
|
+
export type ICdecodeUriPathSegmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CdecodeURIPathSegment'] = IResolversParentTypes['CdecodeURIPathSegment']> = {
|
12023
|
+
organization?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12024
|
+
resourceGroup?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12025
|
+
resourceId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12026
|
+
resourceType?: Resolver<Maybe<IResolversTypes['ConfigCollectionName']>, ParentType, ContextType>;
|
12027
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12028
|
+
};
|
11513
12029
|
export type ICitiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Cities'] = IResolversParentTypes['Cities']> = {
|
11514
12030
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['City']>>>, ParentType, ContextType>;
|
11515
12031
|
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
@@ -11551,8 +12067,14 @@ export type IConfigurationDataResolvers<ContextType = MyContext, ParentType exte
|
|
11551
12067
|
user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
|
11552
12068
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11553
12069
|
};
|
12070
|
+
export type IConfigurationDefaultsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationDefaults'] = IResolversParentTypes['ConfigurationDefaults']> = {
|
12071
|
+
overrides?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12072
|
+
source?: Resolver<Maybe<IResolversTypes['ConfigurationExtensionInfo']>, ParentType, ContextType>;
|
12073
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12074
|
+
};
|
11554
12075
|
export type IConfigurationExtensionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationExtensionInfo'] = IResolversParentTypes['ConfigurationExtensionInfo']> = {
|
11555
|
-
|
12076
|
+
displayName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12077
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11556
12078
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11557
12079
|
};
|
11558
12080
|
export type IConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationModel'] = IResolversParentTypes['ConfigurationModel']> = {
|
@@ -11561,6 +12083,36 @@ export type IConfigurationModelResolvers<ContextType = MyContext, ParentType ext
|
|
11561
12083
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
11562
12084
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11563
12085
|
};
|
12086
|
+
export type IConfigurationNodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationNode'] = IResolversParentTypes['ConfigurationNode']> = {
|
12087
|
+
allOf?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationNode']>>>, ParentType, ContextType>;
|
12088
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12089
|
+
extensionInfo?: Resolver<Maybe<IResolversTypes['ConfigurationExtensionInfo']>, ParentType, ContextType>;
|
12090
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12091
|
+
order?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
12092
|
+
properties?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12093
|
+
restrictedProperties?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12094
|
+
scope?: Resolver<Maybe<IResolversTypes['ConfigurationScope']>, ParentType, ContextType>;
|
12095
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12096
|
+
type?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12097
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12098
|
+
};
|
12099
|
+
export type IConfigurationNodeRegistryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationNodeRegistry'] = IResolversParentTypes['ConfigurationNodeRegistry']> = {
|
12100
|
+
configurationDefaults?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationDefaults']>>>, ParentType, ContextType>;
|
12101
|
+
configurationNodes?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationNode']>>>, ParentType, ContextType>;
|
12102
|
+
excludedConfigurationProperties?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12103
|
+
extensionName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12104
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12105
|
+
overrideIdentifiers?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12106
|
+
policyConfigs?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12107
|
+
schemaId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12108
|
+
tenantId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12109
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12110
|
+
};
|
12111
|
+
export type IConfigurationOverrideEntryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationOverrideEntry'] = IResolversParentTypes['ConfigurationOverrideEntry']> = {
|
12112
|
+
key?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12113
|
+
value?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12114
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12115
|
+
};
|
11564
12116
|
export type IConfigurationOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationOverrides'] = IResolversParentTypes['ConfigurationOverrides']> = {
|
11565
12117
|
externalResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11566
12118
|
overrideIdentifier?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11576,6 +12128,12 @@ export type IConfigurationScopeResolvers = EnumResolverSignature<{
|
|
11576
12128
|
RESOURCE?: any;
|
11577
12129
|
WINDOW?: any;
|
11578
12130
|
}, IResolversTypes['ConfigurationScope']>;
|
12131
|
+
export type IConfigurationSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationSource'] = IResolversParentTypes['ConfigurationSource']> = {
|
12132
|
+
extensionInfo?: Resolver<Maybe<IResolversTypes['ConfigurationExtensionInfo']>, ParentType, ContextType>;
|
12133
|
+
kind?: Resolver<IResolversTypes['ConfigurationExtSourceType'], ParentType, ContextType>;
|
12134
|
+
stringValue?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12135
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12136
|
+
};
|
11579
12137
|
export type IConfigurationTargetResolvers = EnumResolverSignature<{
|
11580
12138
|
APPLICATION?: any;
|
11581
12139
|
DEFAULT?: any;
|
@@ -11610,10 +12168,6 @@ export type IContextResolvers<ContextType = MyContext, ParentType extends IResol
|
|
11610
12168
|
projectSlug?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11611
12169
|
resource?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11612
12170
|
resourceId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11613
|
-
resourceUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11614
|
-
teamName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11615
|
-
teamResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11616
|
-
teamUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11617
12171
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11618
12172
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11619
12173
|
};
|
@@ -12023,6 +12577,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
12023
12577
|
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
12024
12578
|
name: 'JSONObject';
|
12025
12579
|
}
|
12580
|
+
export type IJsonContributionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['JsonContribution'] = IResolversParentTypes['JsonContribution']> = {
|
12581
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12582
|
+
normalizedUri?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12583
|
+
schemaContent?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
12584
|
+
tenantId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12585
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12586
|
+
};
|
12026
12587
|
export type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
|
12027
12588
|
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12028
12589
|
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -12094,6 +12655,7 @@ export type IMenuItemResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12094
12655
|
export type IMutationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
12095
12656
|
acceptOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAcceptOrganizationInvitationArgs, 'id'>>;
|
12096
12657
|
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationAccountOnBoardingArgs>>;
|
12658
|
+
addAccountLoginHistoryRecord?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddAccountLoginHistoryRecordArgs, 'accountId' | 'system'>>;
|
12097
12659
|
addContributionRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddContributionRoleArgs, 'name'>>;
|
12098
12660
|
addResourceToContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddResourceToContextArgs, 'resourcesToAdd'>>;
|
12099
12661
|
addTeamMembers?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddTeamMembersArgs, 'memberIds' | 'orgName' | 'teamName'>>;
|
@@ -12102,9 +12664,11 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12102
12664
|
changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, 'orgName'>>;
|
12103
12665
|
createAccessToken?: Resolver<IResolversTypes['CreateAccessTokenResult'], ParentType, ContextType, RequireFields<IMutationCreateAccessTokenArgs, 'note' | 'scopes' | 'user'>>;
|
12104
12666
|
createCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationCreateCityArgs, 'propertyCity'>>;
|
12667
|
+
createConfigurationNodeRegistry?: Resolver<IResolversTypes['ConfigurationNodeRegistry'], ParentType, ContextType, RequireFields<IMutationCreateConfigurationNodeRegistryArgs, 'context' | 'data'>>;
|
12105
12668
|
createCountry?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IMutationCreateCountryArgs, 'country'>>;
|
12106
12669
|
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateIntegrationConfigurationArgs>>;
|
12107
12670
|
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateOrUpdateIntegrationConfigurationArgs>>;
|
12671
|
+
createOrUpdateSchema?: Resolver<Maybe<IResolversTypes['JsonContribution']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateSchemaArgs, 'input'>>;
|
12108
12672
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
|
12109
12673
|
createState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationCreateStateArgs, 'state'>>;
|
12110
12674
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
|
@@ -12121,15 +12685,16 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12121
12685
|
initializeAuthorizationCodeFlow?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationInitializeAuthorizationCodeFlowArgs, 'deviceInfo'>>;
|
12122
12686
|
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitializeOrgNameInContextArgs>>;
|
12123
12687
|
initializePopupIntegrationAuthorization?: Resolver<Maybe<IResolversTypes['PopupIntegrationAuthorization']>, ParentType, ContextType, Partial<IMutationInitializePopupIntegrationAuthorizationArgs>>;
|
12124
|
-
initializeTeamInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitializeTeamInContextArgs>>;
|
12125
12688
|
initializeUserSession?: Resolver<Maybe<IResolversTypes['UserSessionId']>, ParentType, ContextType, RequireFields<IMutationInitializeUserSessionArgs, 'deviceInfo'>>;
|
12126
12689
|
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitiateConfigurationValueArgs>>;
|
12127
12690
|
initiatePolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitiatePolicyValueArgs>>;
|
12128
12691
|
reassignRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12129
12692
|
registerAccountUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IMutationRegisterAccountUserArgs>>;
|
12130
12693
|
registerUserInAuth0?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IMutationRegisterUserInAuth0Args, 'email' | 'password'>>;
|
12694
|
+
removeConfigurationNodeRegistry?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationRemoveConfigurationNodeRegistryArgs, 'context'>>;
|
12131
12695
|
removeOrgMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveOrgMemberArgs, 'memberId'>>;
|
12132
12696
|
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveOrganizationArgs, 'organization'>>;
|
12697
|
+
removeSchema?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveSchemaArgs, 'id'>>;
|
12133
12698
|
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveTeamArgs, 'teamId'>>;
|
12134
12699
|
removeTeamMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveTeamMemberArgs, 'memberId' | 'orgName' | 'teamName'>>;
|
12135
12700
|
removeUserAuthSession?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationRemoveUserAuthSessionArgs>>;
|
@@ -12141,10 +12706,11 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12141
12706
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationSendOrganizationInvitationArgs>>;
|
12142
12707
|
sendPhoneOTP?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSendPhoneOtpArgs, 'phoneNumber'>>;
|
12143
12708
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
12144
|
-
|
12709
|
+
setupTenant?: Resolver<IResolversTypes['TenantInfo'], ParentType, ContextType, RequireFields<IMutationSetupTenantArgs, 'input'>>;
|
12145
12710
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateAuth0UserPasswordArgs>>;
|
12146
12711
|
updateCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationUpdateCityArgs, 'id' | 'propertyCity'>>;
|
12147
12712
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
12713
|
+
updateConfigurationNodeRegistry?: Resolver<IResolversTypes['ConfigurationNodeRegistry'], ParentType, ContextType, RequireFields<IMutationUpdateConfigurationNodeRegistryArgs, 'context' | 'data'>>;
|
12148
12714
|
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
12149
12715
|
updateConfigurationPolicyValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueByUriArgs, 'key' | 'value'>>;
|
12150
12716
|
updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Configuration']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueArgs, 'key' | 'value'>>;
|
@@ -12161,9 +12727,11 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12161
12727
|
updateState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationUpdateStateArgs, 'id' | 'state'>>;
|
12162
12728
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateUserAccountArgs>>;
|
12163
12729
|
updateUserAccountAliases?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IMutationUpdateUserAccountAliasesArgs>>;
|
12730
|
+
updateUserProfile?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateUserProfileArgs>>;
|
12164
12731
|
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'code' | 'email'>>;
|
12165
12732
|
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
12166
12733
|
verifyPhoneOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationVerifyPhoneOtpArgs, 'otp' | 'phoneNumber'>>;
|
12734
|
+
writeSettings?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationWriteSettingsArgs>>;
|
12167
12735
|
};
|
12168
12736
|
export type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
12169
12737
|
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
|
@@ -12393,6 +12961,12 @@ export type IPageResourcePermissionResolvers<ContextType = MyContext, ParentType
|
|
12393
12961
|
updateTimestamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
12394
12962
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12395
12963
|
};
|
12964
|
+
export type IPageResourceSettingResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PageResourceSetting'] = IResolversParentTypes['PageResourceSetting']> = {
|
12965
|
+
resourceUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12966
|
+
settings?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12967
|
+
updateTimestamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
12968
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12969
|
+
};
|
12396
12970
|
export type IPaymentMethodsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PaymentMethodsPermissions'] = IResolversParentTypes['PaymentMethodsPermissions']> = {
|
12397
12971
|
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12398
12972
|
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
@@ -12582,20 +13156,24 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12582
13156
|
defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, Partial<IQueryDefaultPoliciesArgs>>;
|
12583
13157
|
defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
|
12584
13158
|
defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
|
12585
|
-
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType,
|
13159
|
+
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<IQueryDefaultViewerSettingsSubjectArgs, 'options' | 'target'>>;
|
12586
13160
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, Partial<IQueryExternalAccountsArgs>>;
|
13161
|
+
fetchAllSchemas?: Resolver<Maybe<Array<IResolversTypes['JsonContribution']>>, ParentType, ContextType, RequireFields<IQueryFetchAllSchemasArgs, 'tenantId'>>;
|
12587
13162
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'authUserId'>>;
|
13163
|
+
fetchSchema?: Resolver<Maybe<IResolversTypes['JsonContribution']>, ParentType, ContextType, RequireFields<IQueryFetchSchemaArgs, 'normalizedUri' | 'tenantId'>>;
|
12588
13164
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'authUserId'>>;
|
12589
13165
|
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
12590
13166
|
fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
|
12591
13167
|
filesInfo?: Resolver<IResolversTypes['FilesInfo'], ParentType, ContextType, Partial<IQueryFilesInfoArgs>>;
|
12592
13168
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, Partial<IQueryFilterIntegrationConfigurationArgs>>;
|
12593
13169
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, Partial<IQueryGetAccountsArgs>>;
|
13170
|
+
getAccountsLoginRecords?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccountLoginHistory']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsLoginRecordsArgs, 'limit' | 'skip'>>;
|
12594
13171
|
getAllCountriesPhoneCode?: Resolver<Maybe<Array<Maybe<IResolversTypes['CountryWithPhoneCode']>>>, ParentType, ContextType, Partial<IQueryGetAllCountriesPhoneCodeArgs>>;
|
12595
13172
|
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, Partial<IQueryGetAllIntegrationConfigurationsArgs>>;
|
12596
13173
|
getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
|
12597
13174
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, Partial<IQueryGetConfigurationArgs>>;
|
12598
13175
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
13176
|
+
getConfigurationNodeRegistry?: Resolver<Maybe<IResolversTypes['ConfigurationNodeRegistry']>, ParentType, ContextType, RequireFields<IQueryGetConfigurationNodeRegistryArgs, 'context'>>;
|
12599
13177
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, Partial<IQueryGetConfigurationPoliciesArgs>>;
|
12600
13178
|
getConfigurationTarget?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType, Partial<IQueryGetConfigurationTargetArgs>>;
|
12601
13179
|
getContextData?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
@@ -12620,8 +13198,8 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12620
13198
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, Partial<IQueryGetRoleArgs>>;
|
12621
13199
|
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, Partial<IQueryGetRolesArgs>>;
|
12622
13200
|
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryGetTeamArgs, 'orgName' | 'teamName'>>;
|
12623
|
-
|
12624
|
-
|
13201
|
+
getTenantByAccountId?: Resolver<Maybe<IResolversTypes['TenantInfo']>, ParentType, ContextType, RequireFields<IQueryGetTenantByAccountIdArgs, 'accountId'>>;
|
13202
|
+
getTenantByAppName?: Resolver<Maybe<IResolversTypes['TenantInfo']>, ParentType, ContextType, RequireFields<IQueryGetTenantByAppNameArgs, 'appName'>>;
|
12625
13203
|
getUserAccessRole?: Resolver<Maybe<IResolversTypes['ResourceAccessRole']>, ParentType, ContextType, Partial<IQueryGetUserAccessRoleArgs>>;
|
12626
13204
|
getUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IQueryGetUserAccountArgs, 'userId'>>;
|
12627
13205
|
getUserAccountByAuth0Id?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IQueryGetUserAccountByAuth0IdArgs>>;
|
@@ -12636,7 +13214,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12636
13214
|
node?: Resolver<Maybe<IResolversTypes['Node']>, ParentType, ContextType, RequireFields<IQueryNodeArgs, 'id'>>;
|
12637
13215
|
openPreferencesSettings?: Resolver<Maybe<IResolversTypes['PreferencesInput']>, ParentType, ContextType, Partial<IQueryOpenPreferencesSettingsArgs>>;
|
12638
13216
|
organizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
12639
|
-
pageSettings?: Resolver<Maybe<IResolversTypes['
|
13217
|
+
pageSettings?: Resolver<Maybe<IResolversTypes['PageResourceSetting']>, ParentType, ContextType, Partial<IQueryPageSettingsArgs>>;
|
12640
13218
|
profile?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType>;
|
12641
13219
|
renewAuthUsingRefreshToken?: Resolver<Maybe<IResolversTypes['RenewAuthUsingRefreshToken']>, ParentType, ContextType, Partial<IQueryRenewAuthUsingRefreshTokenArgs>>;
|
12642
13220
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
@@ -12647,8 +13225,10 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12647
13225
|
team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
|
12648
13226
|
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
|
12649
13227
|
userResourceRole?: Resolver<Maybe<IResolversTypes['ResourceUser']>, ParentType, ContextType, RequireFields<IQueryUserResourceRoleArgs, 'orgName'>>;
|
13228
|
+
validateTenantAccess?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IQueryValidateTenantAccessArgs, 'accountId' | 'appName'>>;
|
12650
13229
|
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
12651
13230
|
viewerSettings?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, Partial<IQueryViewerSettingsArgs>>;
|
13231
|
+
viewerSettings2?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, Partial<IQueryViewerSettings2Args>>;
|
12652
13232
|
};
|
12653
13233
|
export type IRangeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Range'] = IResolversParentTypes['Range']> = {
|
12654
13234
|
end?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
@@ -12659,6 +13239,21 @@ export type IRangeResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12659
13239
|
startLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
12660
13240
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12661
13241
|
};
|
13242
|
+
export type IRealmConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RealmConfiguration'] = IResolversParentTypes['RealmConfiguration']> = {
|
13243
|
+
clientId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13244
|
+
clientSecret?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13245
|
+
domain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13246
|
+
realmName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13247
|
+
realmUrl?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13248
|
+
realmUser?: Resolver<IResolversTypes['RealmUser'], ParentType, ContextType>;
|
13249
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
13250
|
+
};
|
13251
|
+
export type IRealmUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RealmUser'] = IResolversParentTypes['RealmUser']> = {
|
13252
|
+
email?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13253
|
+
password?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13254
|
+
username?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13255
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
13256
|
+
};
|
12662
13257
|
export type IRenewAuthUsingRefreshTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RenewAuthUsingRefreshToken'] = IResolversParentTypes['RenewAuthUsingRefreshToken']> = {
|
12663
13258
|
accessToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12664
13259
|
expiresIn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -12729,6 +13324,14 @@ export type IRouteDataResolvers<ContextType = MyContext, ParentType extends IRes
|
|
12729
13324
|
tab?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12730
13325
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12731
13326
|
};
|
13327
|
+
export type IServerConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ServerConfiguration'] = IResolversParentTypes['ServerConfiguration']> = {
|
13328
|
+
adminClientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
13329
|
+
adminPassword?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
13330
|
+
adminUsername?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
13331
|
+
default?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
13332
|
+
domain?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
13333
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
13334
|
+
};
|
12732
13335
|
export type ISettingPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SettingPermissions'] = IResolversParentTypes['SettingPermissions']> = {
|
12733
13336
|
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12734
13337
|
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
@@ -12842,6 +13445,13 @@ export type ITeamPermissionsResolvers<ContextType = MyContext, ParentType extend
|
|
12842
13445
|
viewOthers?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12843
13446
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12844
13447
|
};
|
13448
|
+
export type ITenantInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TenantInfo'] = IResolversParentTypes['TenantInfo']> = {
|
13449
|
+
appName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13450
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
13451
|
+
realmConfiguration?: Resolver<IResolversTypes['RealmConfiguration'], ParentType, ContextType>;
|
13452
|
+
serverConfiguration?: Resolver<IResolversTypes['ServerConfiguration'], ParentType, ContextType>;
|
13453
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
13454
|
+
};
|
12845
13455
|
export type IThreadsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ThreadsPermissions'] = IResolversParentTypes['ThreadsPermissions']> = {
|
12846
13456
|
assignThreads?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12847
13457
|
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
@@ -12873,6 +13483,7 @@ export type IUserAccountResolvers<ContextType = MyContext, ParentType extends IR
|
|
12873
13483
|
accessTokens?: Resolver<IResolversTypes['AccessTokenConnection'], ParentType, ContextType, Partial<IUserAccountAccessTokensArgs>>;
|
12874
13484
|
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12875
13485
|
contributionRoles?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
13486
|
+
country?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12876
13487
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12877
13488
|
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12878
13489
|
familyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -12901,6 +13512,21 @@ export type IUserAccountCreatedEventResolvers<ContextType = MyContext, ParentTyp
|
|
12901
13512
|
sourceUser?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType>;
|
12902
13513
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12903
13514
|
};
|
13515
|
+
export type IUserAccountLoginHistoryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountLoginHistory'] = IResolversParentTypes['UserAccountLoginHistory']> = {
|
13516
|
+
accountId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13517
|
+
address?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13518
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13519
|
+
ip?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13520
|
+
loginTime?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
13521
|
+
system?: Resolver<Maybe<IResolversTypes['UserAccountLoginHistorySystem']>, ParentType, ContextType>;
|
13522
|
+
username?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13523
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
13524
|
+
};
|
13525
|
+
export type IUserAccountLoginHistorySystemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountLoginHistorySystem'] = IResolversParentTypes['UserAccountLoginHistorySystem']> = {
|
13526
|
+
browser?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
13527
|
+
os?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
13528
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
13529
|
+
};
|
12904
13530
|
export type IUserAccountRemovedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountRemovedEvent'] = IResolversParentTypes['UserAccountRemovedEvent']> = {
|
12905
13531
|
email?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12906
13532
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -12947,7 +13573,6 @@ export type IUserConfigurationResolvers<ContextType = MyContext, ParentType exte
|
|
12947
13573
|
export type IUserContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserContext'] = IResolversParentTypes['UserContext']> = {
|
12948
13574
|
accountId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12949
13575
|
accountsRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12950
|
-
dummy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12951
13576
|
emailId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12952
13577
|
identity?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12953
13578
|
namespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -12963,6 +13588,7 @@ export type IUserContextResolvers<ContextType = MyContext, ParentType extends IR
|
|
12963
13588
|
resourceSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12964
13589
|
teamId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12965
13590
|
teamSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
13591
|
+
tenantId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12966
13592
|
userAlias?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12967
13593
|
userSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12968
13594
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -13105,21 +13731,29 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13105
13731
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
13106
13732
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
13107
13733
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
13734
|
+
AuthorityComponent?: IAuthorityComponentResolvers<ContextType>;
|
13108
13735
|
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
13109
13736
|
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
13110
13737
|
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
13111
13738
|
BillingPermissions?: IBillingPermissionsResolvers<ContextType>;
|
13739
|
+
CdecodeParsedUri?: ICdecodeParsedUriResolvers<ContextType>;
|
13740
|
+
CdecodeURIPathSegment?: ICdecodeUriPathSegmentResolvers<ContextType>;
|
13112
13741
|
Cities?: ICitiesResolvers<ContextType>;
|
13113
13742
|
City?: ICityResolvers<ContextType>;
|
13114
13743
|
ClientLevelPermissions?: IClientLevelPermissionsResolvers<ContextType>;
|
13115
13744
|
ClientPermissions?: IClientPermissionsResolvers<ContextType>;
|
13116
13745
|
Configuration?: IConfigurationResolvers<ContextType>;
|
13117
13746
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
13747
|
+
ConfigurationDefaults?: IConfigurationDefaultsResolvers<ContextType>;
|
13118
13748
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
13119
13749
|
ConfigurationModel?: IConfigurationModelResolvers<ContextType>;
|
13750
|
+
ConfigurationNode?: IConfigurationNodeResolvers<ContextType>;
|
13751
|
+
ConfigurationNodeRegistry?: IConfigurationNodeRegistryResolvers<ContextType>;
|
13752
|
+
ConfigurationOverrideEntry?: IConfigurationOverrideEntryResolvers<ContextType>;
|
13120
13753
|
ConfigurationOverrides?: IConfigurationOverridesResolvers<ContextType>;
|
13121
13754
|
ConfigurationPolicy?: IConfigurationPolicyResolvers<ContextType>;
|
13122
13755
|
ConfigurationScope?: IConfigurationScopeResolvers;
|
13756
|
+
ConfigurationSource?: IConfigurationSourceResolvers<ContextType>;
|
13123
13757
|
ConfigurationTarget?: IConfigurationTargetResolvers;
|
13124
13758
|
ConfigurationUpdateEvent?: IConfigurationUpdateEventResolvers<ContextType>;
|
13125
13759
|
Context?: IContextResolvers<ContextType>;
|
@@ -13173,6 +13807,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13173
13807
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
13174
13808
|
JSON?: GraphQLScalarType;
|
13175
13809
|
JSONObject?: GraphQLScalarType;
|
13810
|
+
JsonContribution?: IJsonContributionResolvers<ContextType>;
|
13176
13811
|
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
13177
13812
|
LoginDeviceCredential?: ILoginDeviceCredentialResolvers<ContextType>;
|
13178
13813
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
@@ -13211,6 +13846,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13211
13846
|
Overrides?: IOverridesResolvers<ContextType>;
|
13212
13847
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
13213
13848
|
PageResourcePermission?: IPageResourcePermissionResolvers<ContextType>;
|
13849
|
+
PageResourceSetting?: IPageResourceSettingResolvers<ContextType>;
|
13214
13850
|
PaymentMethodsPermissions?: IPaymentMethodsPermissionsResolvers<ContextType>;
|
13215
13851
|
PaymentProfilePermissions?: IPaymentProfilePermissionsResolvers<ContextType>;
|
13216
13852
|
PermissionPermissions?: IPermissionPermissionsResolvers<ContextType>;
|
@@ -13242,6 +13878,8 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13242
13878
|
ProjectStatusPermissions?: IProjectStatusPermissionsResolvers<ContextType>;
|
13243
13879
|
Query?: IQueryResolvers<ContextType>;
|
13244
13880
|
Range?: IRangeResolvers<ContextType>;
|
13881
|
+
RealmConfiguration?: IRealmConfigurationResolvers<ContextType>;
|
13882
|
+
RealmUser?: IRealmUserResolvers<ContextType>;
|
13245
13883
|
RenewAuthUsingRefreshToken?: IRenewAuthUsingRefreshTokenResolvers<ContextType>;
|
13246
13884
|
ReportPermissions?: IReportPermissionsResolvers<ContextType>;
|
13247
13885
|
ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
|
@@ -13254,6 +13892,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13254
13892
|
RolePermissions?: IRolePermissionsResolvers<ContextType>;
|
13255
13893
|
RolesTarget?: IRolesTargetResolvers<ContextType>;
|
13256
13894
|
RouteData?: IRouteDataResolvers<ContextType>;
|
13895
|
+
ServerConfiguration?: IServerConfigurationResolvers<ContextType>;
|
13257
13896
|
SettingPermissions?: ISettingPermissionsResolvers<ContextType>;
|
13258
13897
|
Settings?: ISettingsResolvers<ContextType>;
|
13259
13898
|
SettingsCascade?: ISettingsCascadeResolvers<ContextType>;
|
@@ -13270,6 +13909,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13270
13909
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
13271
13910
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
13272
13911
|
TeamPermissions?: ITeamPermissionsResolvers<ContextType>;
|
13912
|
+
TenantInfo?: ITenantInfoResolvers<ContextType>;
|
13273
13913
|
ThreadsPermissions?: IThreadsPermissionsResolvers<ContextType>;
|
13274
13914
|
Time?: GraphQLScalarType;
|
13275
13915
|
Timestamp?: GraphQLScalarType;
|
@@ -13279,6 +13919,8 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13279
13919
|
UserAccount?: IUserAccountResolvers<ContextType>;
|
13280
13920
|
UserAccountCreatedDetailedEvent?: IUserAccountCreatedDetailedEventResolvers<ContextType>;
|
13281
13921
|
UserAccountCreatedEvent?: IUserAccountCreatedEventResolvers<ContextType>;
|
13922
|
+
UserAccountLoginHistory?: IUserAccountLoginHistoryResolvers<ContextType>;
|
13923
|
+
UserAccountLoginHistorySystem?: IUserAccountLoginHistorySystemResolvers<ContextType>;
|
13282
13924
|
UserAccountRemovedEvent?: IUserAccountRemovedEventResolvers<ContextType>;
|
13283
13925
|
UserAuth0Info?: IUserAuth0InfoResolvers<ContextType>;
|
13284
13926
|
UserAuth0Integrations?: IUserAuth0IntegrationsResolvers<ContextType>;
|