@adminide-stack/core 9.2.1-alpha.44 → 9.2.1-alpha.47

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.
Files changed (29) hide show
  1. package/lib/constants/configuration.d.ts +1 -0
  2. package/lib/constants/configuration.js +2 -1
  3. package/lib/constants/configuration.js.map +1 -1
  4. package/lib/core/configurations/models/ConfigurationModel.d.ts +1 -0
  5. package/lib/core/configurations/models/ConfigurationModel.js +7 -0
  6. package/lib/core/configurations/models/ConfigurationModel.js.map +1 -1
  7. package/lib/index.js +1 -1
  8. package/lib/interfaces/apollo-context.d.ts +2 -1
  9. package/lib/interfaces/configuration/configuration-server-service.d.ts +2 -2
  10. package/lib/interfaces/configuration/configuration.d.ts +8 -25
  11. package/lib/interfaces/configuration/configuration.js.map +1 -1
  12. package/lib/interfaces/configuration/configurationRegistry.d.ts +57 -37
  13. package/lib/interfaces/configuration/defaultSettingSnapshot.d.ts +9 -0
  14. package/lib/interfaces/configuration/index.d.ts +1 -0
  15. package/lib/interfaces/generated/generated-models.d.ts +424 -11
  16. package/lib/interfaces/generated/generated-models.js +24 -5
  17. package/lib/interfaces/generated/generated-models.js.map +1 -1
  18. package/lib/interfaces/preferences-service.d.ts +6 -6
  19. package/lib/utils/cdecodeUri.d.ts +1 -1
  20. package/lib/utils/cdecodeUri.js +1 -15
  21. package/lib/utils/cdecodeUri.js.map +1 -1
  22. package/lib/utils/configuration-utils.d.ts +11 -3
  23. package/lib/utils/configuration-utils.js +12 -2
  24. package/lib/utils/configuration-utils.js.map +1 -1
  25. package/lib/utils/index.d.ts +1 -0
  26. package/lib/utils/nodeContext.d.ts +7 -0
  27. package/lib/utils/nodeContext.js +18 -0
  28. package/lib/utils/nodeContext.js.map +1 -0
  29. package/package.json +2 -2
@@ -642,7 +642,6 @@ export type ICdecodeParsedUri = {
642
642
  pathSegments: ICdecodeUriPathSegment;
643
643
  queryData?: Maybe<Scalars['JSON']['output']>;
644
644
  scheme: Scalars['String']['output'];
645
- tenantId: Scalars['String']['output'];
646
645
  };
647
646
  export type ICdecodeUriPathSegment = {
648
647
  __typename?: 'CdecodeURIPathSegment';
@@ -774,6 +773,12 @@ export declare enum IConfigCollectionName {
774
773
  Teams = "teams",
775
774
  Workspaces = "workspaces"
776
775
  }
776
+ export declare enum IConfigExtensionName {
777
+ Permissions = "permissions",
778
+ Policies = "policies",
779
+ Settings = "settings",
780
+ Userrole = "userrole"
781
+ }
777
782
  export declare enum IConfigFragmentName {
778
783
  ApplicationPolicies = "applicationPolicies",
779
784
  /** Billing */
@@ -795,7 +800,8 @@ export declare enum IConfigurationContributionNames {
795
800
  Integration = "integration",
796
801
  Permissions = "permissions",
797
802
  Policies = "policies",
798
- Settings = "settings"
803
+ Settings = "settings",
804
+ Userrole = "userrole"
799
805
  }
800
806
  export type IConfigurationData = {
801
807
  __typename?: 'ConfigurationData';
@@ -808,9 +814,28 @@ export type IConfigurationData = {
808
814
  resources?: Maybe<Array<Maybe<IIConfigurationModel>>>;
809
815
  user?: Maybe<IIConfigurationModel>;
810
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
+ }
811
830
  export type IConfigurationExtensionInfo = {
812
831
  __typename?: 'ConfigurationExtensionInfo';
813
- id?: Maybe<Scalars['String']['output']>;
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'];
814
839
  };
815
840
  export type IConfigurationInput = {
816
841
  resource?: InputMaybe<Scalars['URIInput']['input']>;
@@ -827,6 +852,67 @@ export type IConfigurationModel = {
827
852
  keys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
828
853
  overrides?: Maybe<Array<Maybe<IOverrides>>>;
829
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
+ };
830
916
  export type IConfigurationOverrides = {
831
917
  __typename?: 'ConfigurationOverrides';
832
918
  externalResource?: Maybe<Scalars['URI']['output']>;
@@ -840,7 +926,17 @@ export type IConfigurationOverridesInput = {
840
926
  resource?: InputMaybe<Scalars['URI']['input']>;
841
927
  };
842
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
+ }
843
936
  export { ConfigurationScope };
937
+ export type IConfigurationScopeInput = {
938
+ scope?: InputMaybe<ConfigurationScope>;
939
+ };
844
940
  export declare enum IConfigurationServiceAction {
845
941
  GetAllConfigurationData = "getAllConfigurationData",
846
942
  GetConfiguration = "getConfiguration",
@@ -850,6 +946,17 @@ export declare enum IConfigurationServiceAction {
850
946
  ReadFile = "readFile",
851
947
  UpdateValue = "updateValue"
852
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
+ };
853
960
  export { ConfigurationTarget };
854
961
  export type IConfigurationUpdateEvent = {
855
962
  __typename?: 'ConfigurationUpdateEvent';
@@ -1005,6 +1112,15 @@ export type ICreateAccessTokenResult = {
1005
1112
  */
1006
1113
  token: Scalars['String']['output'];
1007
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
+ };
1008
1124
  export type IDefaultConfiguration = IIConfigurationModel & {
1009
1125
  __typename?: 'DefaultConfiguration';
1010
1126
  contents?: Maybe<Scalars['AnyObject']['output']>;
@@ -1443,6 +1559,24 @@ export declare enum IInviteStatus {
1443
1559
  Declined = "DECLINED",
1444
1560
  Pending = "PENDING"
1445
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
+ };
1446
1580
  /**
1447
1581
  * A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
1448
1582
  * KeyPathSegment must be non-null.
@@ -1615,9 +1749,16 @@ export type IMutation = {
1615
1749
  */
1616
1750
  createAccessToken: ICreateAccessTokenResult;
1617
1751
  createCity: ICity;
1752
+ /** Create a new configuration registry document. */
1753
+ createConfigurationNodeRegistry: IConfigurationNodeRegistry;
1618
1754
  createCountry: ICountry;
1619
1755
  createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
1620
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>;
1621
1762
  createOrganization?: Maybe<IOrganization>;
1622
1763
  createState: IState;
1623
1764
  createTeam?: Maybe<IAccountTeam>;
@@ -1652,8 +1793,12 @@ export type IMutation = {
1652
1793
  reassignRole?: Maybe<Scalars['Boolean']['output']>;
1653
1794
  registerAccountUser?: Maybe<IUserAccount>;
1654
1795
  registerUserInAuth0?: Maybe<IUserProfile>;
1796
+ /** Remove a configuration registry from the DB. */
1797
+ removeConfigurationNodeRegistry: Scalars['Boolean']['output'];
1655
1798
  removeOrgMember?: Maybe<Scalars['Boolean']['output']>;
1656
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']>;
1657
1802
  removeTeam?: Maybe<Scalars['Boolean']['output']>;
1658
1803
  removeTeamMember?: Maybe<Scalars['Boolean']['output']>;
1659
1804
  removeUserAuthSession?: Maybe<Scalars['Boolean']['output']>;
@@ -1665,10 +1810,16 @@ export type IMutation = {
1665
1810
  sendOrganizationInvitation?: Maybe<Scalars['Boolean']['output']>;
1666
1811
  sendPhoneOTP: Scalars['Boolean']['output'];
1667
1812
  sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']['output']>;
1813
+ setupTenant: ITenantInfo;
1668
1814
  /** Triggers onUserLoggedIn events */
1669
1815
  updateAuth0UserPassword?: Maybe<Scalars['Boolean']['output']>;
1670
1816
  updateCity: ICity;
1671
1817
  updateConfiguration?: Maybe<Scalars['Boolean']['output']>;
1818
+ /**
1819
+ * Update an existing configuration record, identified by
1820
+ * (tenantId, schemaId, extensionName).
1821
+ */
1822
+ updateConfigurationNodeRegistry: IConfigurationNodeRegistry;
1672
1823
  updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']['output']>;
1673
1824
  updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']['output']>;
1674
1825
  /**
@@ -1741,6 +1892,10 @@ export type IMutationCreateAccessTokenArgs = {
1741
1892
  export type IMutationCreateCityArgs = {
1742
1893
  propertyCity: ICityInput;
1743
1894
  };
1895
+ export type IMutationCreateConfigurationNodeRegistryArgs = {
1896
+ context: IConfigurationNodeContextInput;
1897
+ data: ICreateConfigurationNodeRegistryInput;
1898
+ };
1744
1899
  export type IMutationCreateCountryArgs = {
1745
1900
  country: ICountryInput;
1746
1901
  };
@@ -1750,6 +1905,9 @@ export type IMutationCreateIntegrationConfigurationArgs = {
1750
1905
  export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
1751
1906
  data?: InputMaybe<IIntegrationConfigurationCreateOrUpdateInput>;
1752
1907
  };
1908
+ export type IMutationCreateOrUpdateSchemaArgs = {
1909
+ input: IJsonContributionInput;
1910
+ };
1753
1911
  export type IMutationCreateOrganizationArgs = {
1754
1912
  organization: IOrganizationCreateRequest;
1755
1913
  };
@@ -1814,12 +1972,18 @@ export type IMutationRegisterUserInAuth0Args = {
1814
1972
  email: Scalars['String']['input'];
1815
1973
  password: Scalars['String']['input'];
1816
1974
  };
1975
+ export type IMutationRemoveConfigurationNodeRegistryArgs = {
1976
+ context: IConfigurationNodeContextInput;
1977
+ };
1817
1978
  export type IMutationRemoveOrgMemberArgs = {
1818
1979
  memberId: Scalars['String']['input'];
1819
1980
  };
1820
1981
  export type IMutationRemoveOrganizationArgs = {
1821
1982
  organization: IOrganizationRemoveRequest;
1822
1983
  };
1984
+ export type IMutationRemoveSchemaArgs = {
1985
+ id: Scalars['ID']['input'];
1986
+ };
1823
1987
  export type IMutationRemoveTeamArgs = {
1824
1988
  teamId: Scalars['String']['input'];
1825
1989
  };
@@ -1857,6 +2021,9 @@ export type IMutationSendPhoneOtpArgs = {
1857
2021
  export type IMutationSendUserPasswordResetEmailArgs = {
1858
2022
  email: Scalars['String']['input'];
1859
2023
  };
2024
+ export type IMutationSetupTenantArgs = {
2025
+ input: ISetupTenantInput;
2026
+ };
1860
2027
  export type IMutationUpdateAuth0UserPasswordArgs = {
1861
2028
  email?: InputMaybe<Scalars['String']['input']>;
1862
2029
  oldPassword?: InputMaybe<Scalars['String']['input']>;
@@ -1875,6 +2042,10 @@ export type IMutationUpdateConfigurationArgs = {
1875
2042
  target?: InputMaybe<Scalars['Int']['input']>;
1876
2043
  value: Scalars['AnyObject']['input'];
1877
2044
  };
2045
+ export type IMutationUpdateConfigurationNodeRegistryArgs = {
2046
+ context: IConfigurationNodeContextInput;
2047
+ data: IUpdateConfigurationNodeRegistryInput;
2048
+ };
1878
2049
  export type IMutationUpdateConfigurationPolicyValueArgs = {
1879
2050
  donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
1880
2051
  key: Scalars['String']['input'];
@@ -2704,8 +2875,12 @@ export type IQuery = {
2704
2875
  defaultViewerSettingsSubject: IDefaultSettings;
2705
2876
  /** A list of external accounts that are associated with the user. */
2706
2877
  externalAccounts: IExternalAccountConnection;
2878
+ /** Retrieve all JSON contributions for a specific tenant. */
2879
+ fetchAllSchemas?: Maybe<Array<IJsonContribution>>;
2707
2880
  /** Fetches a User from Auth0 Service */
2708
2881
  fetchAuth0User?: Maybe<IUserProfile>;
2882
+ /** Retrieve a single JSON contribution by tenantId + normalizedUri. */
2883
+ fetchSchema?: Maybe<IJsonContribution>;
2709
2884
  /** @deprecated Field no longer supported */
2710
2885
  fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
2711
2886
  fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
@@ -2719,6 +2894,8 @@ export type IQuery = {
2719
2894
  getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
2720
2895
  getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
2721
2896
  getConfigurationData?: Maybe<IConfigurationData>;
2897
+ /** Retrieve a single configuration registry by (tenantId, schemaId, extensionName). */
2898
+ getConfigurationNodeRegistry?: Maybe<IConfigurationNodeRegistry>;
2722
2899
  getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
2723
2900
  getConfigurationTarget?: Maybe<Scalars['Int']['output']>;
2724
2901
  getContextData?: Maybe<IContext>;
@@ -2743,6 +2920,8 @@ export type IQuery = {
2743
2920
  getRole?: Maybe<IAccessRole>;
2744
2921
  getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
2745
2922
  getTeam?: Maybe<IAccountTeam>;
2923
+ getTenantByAccountId?: Maybe<ITenantInfo>;
2924
+ getTenantByAppName?: Maybe<ITenantInfo>;
2746
2925
  getUserAccessRole?: Maybe<IResourceAccessRole>;
2747
2926
  getUserAccount?: Maybe<IUserAccount>;
2748
2927
  getUserAccountByAuth0Id?: Maybe<IUserAccount>;
@@ -2779,6 +2958,7 @@ export type IQuery = {
2779
2958
  team?: Maybe<IAccountTeam>;
2780
2959
  teams?: Maybe<Array<Maybe<IAccountTeam>>>;
2781
2960
  userResourceRole?: Maybe<IResourceUser>;
2961
+ validateTenantAccess: Scalars['Boolean']['output'];
2782
2962
  /** The policies for the viewer. */
2783
2963
  viewerPolicies?: Maybe<IPolicySubject>;
2784
2964
  /**
@@ -2835,9 +3015,16 @@ export type IQueryDefaultViewerSettingsSubjectArgs = {
2835
3015
  export type IQueryExternalAccountsArgs = {
2836
3016
  first?: InputMaybe<Scalars['Int']['input']>;
2837
3017
  };
3018
+ export type IQueryFetchAllSchemasArgs = {
3019
+ tenantId: Scalars['String']['input'];
3020
+ };
2838
3021
  export type IQueryFetchAuth0UserArgs = {
2839
3022
  authUserId: Scalars['String']['input'];
2840
3023
  };
3024
+ export type IQueryFetchSchemaArgs = {
3025
+ normalizedUri: Scalars['String']['input'];
3026
+ tenantId: Scalars['String']['input'];
3027
+ };
2841
3028
  export type IQueryFetchUserAuthorizedDevicesArgs = {
2842
3029
  authUserId: Scalars['String']['input'];
2843
3030
  };
@@ -2876,6 +3063,9 @@ export type IQueryGetAllUsersTokensArgs = {
2876
3063
  export type IQueryGetConfigurationArgs = {
2877
3064
  input?: InputMaybe<Array<InputMaybe<IConfigurationInput>>>;
2878
3065
  };
3066
+ export type IQueryGetConfigurationNodeRegistryArgs = {
3067
+ context: IConfigurationNodeContextInput;
3068
+ };
2879
3069
  export type IQueryGetConfigurationPoliciesArgs = {
2880
3070
  input?: InputMaybe<Array<InputMaybe<IConfigurationInput>>>;
2881
3071
  };
@@ -2936,6 +3126,12 @@ export type IQueryGetTeamArgs = {
2936
3126
  orgName: Scalars['String']['input'];
2937
3127
  teamName: Scalars['String']['input'];
2938
3128
  };
3129
+ export type IQueryGetTenantByAccountIdArgs = {
3130
+ accountId: Scalars['String']['input'];
3131
+ };
3132
+ export type IQueryGetTenantByAppNameArgs = {
3133
+ appName: Scalars['String']['input'];
3134
+ };
2939
3135
  export type IQueryGetUserAccessRoleArgs = {
2940
3136
  input?: InputMaybe<Array<InputMaybe<IRoleInput>>>;
2941
3137
  };
@@ -3007,6 +3203,10 @@ export type IQueryUserResourceRoleArgs = {
3007
3203
  orgName: Scalars['String']['input'];
3008
3204
  userId?: InputMaybe<Scalars['String']['input']>;
3009
3205
  };
3206
+ export type IQueryValidateTenantAccessArgs = {
3207
+ accountId: Scalars['String']['input'];
3208
+ appName: Scalars['String']['input'];
3209
+ };
3010
3210
  export type IQueryViewerPoliciesArgs = {
3011
3211
  input: IViewerPoliciesInput;
3012
3212
  };
@@ -3037,13 +3237,38 @@ export type IRange = {
3037
3237
  /** @editor - Line number on which the range starts (starts at 1). */
3038
3238
  startLineNumber?: Maybe<Scalars['Int']['output']>;
3039
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
+ };
3040
3267
  /** Registry Extensions */
3041
3268
  export declare enum IRegistryExtensions {
3042
- Configuration = "Configuration",
3269
+ DefaultConfiguration = "DefaultConfiguration",
3043
3270
  JsonContribution = "JSONContribution",
3044
- Permissions = "Permissions",
3045
- Policies = "Policies",
3046
- UserRole = "UserRole"
3271
+ Integration = "integration"
3047
3272
  }
3048
3273
  export type IRenewAuthUsingRefreshToken = {
3049
3274
  __typename?: 'RenewAuthUsingRefreshToken';
@@ -3153,6 +3378,21 @@ export declare enum IRouteParams {
3153
3378
  OrgName = "orgName",
3154
3379
  TeamName = "teamName"
3155
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
+ };
3156
3396
  export type ISettingPermissions = {
3157
3397
  __typename?: 'SettingPermissions';
3158
3398
  edit?: Maybe<IPermissionType>;
@@ -3214,6 +3454,11 @@ export type ISettingsSection = {
3214
3454
  titleRange?: Maybe<IRange>;
3215
3455
  };
3216
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
+ };
3217
3462
  export type ISort = {
3218
3463
  key: Scalars['String']['input'];
3219
3464
  value: ISortEnum;
@@ -3392,6 +3637,13 @@ export type ITeamUpdateRequest = {
3392
3637
  payload?: InputMaybe<IAccountTeamInput>;
3393
3638
  requestedUserId?: InputMaybe<Scalars['String']['input']>;
3394
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
+ };
3395
3647
  /** Address State Create Input */
3396
3648
  export type ITerritorialStateInput = {
3397
3649
  /** ID of Country to associate */
@@ -3420,6 +3672,16 @@ export declare enum ITokenTypesEnum {
3420
3672
  EmailVerification = "EMAIL_VERIFICATION",
3421
3673
  PasswordReset = "PASSWORD_RESET"
3422
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
+ };
3423
3685
  export type IUpdateProfileInput = {
3424
3686
  familyName?: InputMaybe<Scalars['String']['input']>;
3425
3687
  id: Scalars['ID']['input'];
@@ -3649,7 +3911,6 @@ export type IUserContext = {
3649
3911
  __typename?: 'UserContext';
3650
3912
  accountId?: Maybe<Scalars['String']['output']>;
3651
3913
  accountsRoles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
3652
- dummy?: Maybe<Scalars['String']['output']>;
3653
3914
  emailId?: Maybe<Scalars['String']['output']>;
3654
3915
  identity?: Maybe<Scalars['AnyObject']['output']>;
3655
3916
  namespace?: Maybe<Scalars['String']['output']>;
@@ -3665,6 +3926,7 @@ export type IUserContext = {
3665
3926
  resourceSettingUri?: Maybe<Scalars['URI']['output']>;
3666
3927
  teamId?: Maybe<Scalars['String']['output']>;
3667
3928
  teamSettingUri?: Maybe<Scalars['URI']['output']>;
3929
+ tenantId?: Maybe<Scalars['String']['output']>;
3668
3930
  userAlias?: Maybe<Scalars['String']['output']>;
3669
3931
  userSettingUri?: Maybe<Scalars['URI']['output']>;
3670
3932
  };
@@ -10830,6 +11092,7 @@ export type IResolversTypes = {
10830
11092
  ClientPermissions: ResolverTypeWrapper<IClientPermissions>;
10831
11093
  ClientTypes: IClientTypes;
10832
11094
  ConfigCollectionName: IConfigCollectionName;
11095
+ ConfigExtensionName: IConfigExtensionName;
10833
11096
  ConfigFragmentName: IConfigFragmentName;
10834
11097
  Configuration: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['Configuration']>;
10835
11098
  ConfigurationContributionNames: IConfigurationContributionNames;
@@ -10842,14 +11105,28 @@ export type IResolversTypes = {
10842
11105
  resources?: Maybe<Array<Maybe<IResolversTypes['IConfigurationModel']>>>;
10843
11106
  user?: Maybe<IResolversTypes['IConfigurationModel']>;
10844
11107
  }>;
11108
+ ConfigurationDefaults: ResolverTypeWrapper<IConfigurationDefaults>;
11109
+ ConfigurationDefaultsInput: IConfigurationDefaultsInput;
11110
+ ConfigurationExtSourceType: IConfigurationExtSourceType;
10845
11111
  ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
11112
+ ConfigurationExtensionInfoInput: IConfigurationExtensionInfoInput;
10846
11113
  ConfigurationInput: IConfigurationInput;
10847
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;
10848
11121
  ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
10849
11122
  ConfigurationOverridesInput: IConfigurationOverridesInput;
10850
11123
  ConfigurationPolicy: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['ConfigurationPolicy']>;
11124
+ ConfigurationSchemaId: IConfigurationSchemaId;
10851
11125
  ConfigurationScope: ConfigurationScope;
11126
+ ConfigurationScopeInput: IConfigurationScopeInput;
10852
11127
  ConfigurationServiceAction: IConfigurationServiceAction;
11128
+ ConfigurationSource: ResolverTypeWrapper<IConfigurationSource>;
11129
+ ConfigurationSourceInput: IConfigurationSourceInput;
10853
11130
  ConfigurationTarget: ConfigurationTarget;
10854
11131
  ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
10855
11132
  Context: ResolverTypeWrapper<IContext>;
@@ -10864,6 +11141,7 @@ export type IResolversTypes = {
10864
11141
  CountryInput: ICountryInput;
10865
11142
  CountryWithPhoneCode: ResolverTypeWrapper<ICountryWithPhoneCode>;
10866
11143
  CreateAccessTokenResult: ResolverTypeWrapper<ICreateAccessTokenResult>;
11144
+ CreateConfigurationNodeRegistryInput: ICreateConfigurationNodeRegistryInput;
10867
11145
  Date: ResolverTypeWrapper<Scalars['Date']['output']>;
10868
11146
  DateTime: ResolverTypeWrapper<Scalars['DateTime']['output']>;
10869
11147
  DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
@@ -10935,6 +11213,8 @@ export type IResolversTypes = {
10935
11213
  InviteStatus: IInviteStatus;
10936
11214
  JSON: ResolverTypeWrapper<Scalars['JSON']['output']>;
10937
11215
  JSONObject: ResolverTypeWrapper<Scalars['JSONObject']['output']>;
11216
+ JsonContribution: ResolverTypeWrapper<IJsonContribution>;
11217
+ JsonContributionInput: IJsonContributionInput;
10938
11218
  KeyPathSegment: IKeyPathSegment;
10939
11219
  LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
10940
11220
  LoginDeviceCredential: ResolverTypeWrapper<ILoginDeviceCredential>;
@@ -11051,6 +11331,10 @@ export type IResolversTypes = {
11051
11331
  ProjectStatusPermissions: ResolverTypeWrapper<IProjectStatusPermissions>;
11052
11332
  Query: ResolverTypeWrapper<{}>;
11053
11333
  Range: ResolverTypeWrapper<IRange>;
11334
+ RealmConfiguration: ResolverTypeWrapper<IRealmConfiguration>;
11335
+ RealmConfigurationInput: IRealmConfigurationInput;
11336
+ RealmUser: ResolverTypeWrapper<IRealmUser>;
11337
+ RealmUserInput: IRealmUserInput;
11054
11338
  RegistryExtensions: IRegistryExtensions;
11055
11339
  RenewAuthUsingRefreshToken: ResolverTypeWrapper<IRenewAuthUsingRefreshToken>;
11056
11340
  ReportPermissions: ResolverTypeWrapper<IReportPermissions>;
@@ -11072,6 +11356,8 @@ export type IResolversTypes = {
11072
11356
  RolesTargetInput: IRolesTargetInput;
11073
11357
  RouteData: ResolverTypeWrapper<IRouteData>;
11074
11358
  RouteParams: IRouteParams;
11359
+ ServerConfiguration: ResolverTypeWrapper<IServerConfiguration>;
11360
+ ServerConfigurationInput: IServerConfigurationInput;
11075
11361
  SettingPermissions: ResolverTypeWrapper<ISettingPermissions>;
11076
11362
  SettingValueType: ISettingValueType;
11077
11363
  Settings: ResolverTypeWrapper<ISettings>;
@@ -11081,6 +11367,7 @@ export type IResolversTypes = {
11081
11367
  SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
11082
11368
  SettingsSection: ResolverTypeWrapper<ISettingsSection>;
11083
11369
  SettingsSubject: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['SettingsSubject']>;
11370
+ SetupTenantInput: ISetupTenantInput;
11084
11371
  Sort: ISort;
11085
11372
  SortEnum: ISortEnum;
11086
11373
  State: ResolverTypeWrapper<IState>;
@@ -11105,6 +11392,7 @@ export type IResolversTypes = {
11105
11392
  TeamServiceAction: ITeamServiceAction;
11106
11393
  TeamType: ITeamType;
11107
11394
  TeamUpdateRequest: ITeamUpdateRequest;
11395
+ TenantInfo: ResolverTypeWrapper<ITenantInfo>;
11108
11396
  TerritorialStateInput: ITerritorialStateInput;
11109
11397
  TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
11110
11398
  ThreadsPermissions: ResolverTypeWrapper<IThreadsPermissions>;
@@ -11113,6 +11401,7 @@ export type IResolversTypes = {
11113
11401
  TokenTypesEnum: ITokenTypesEnum;
11114
11402
  URI: ResolverTypeWrapper<Scalars['URI']['output']>;
11115
11403
  URIInput: ResolverTypeWrapper<Scalars['URIInput']['output']>;
11404
+ UpdateConfigurationNodeRegistryInput: IUpdateConfigurationNodeRegistryInput;
11116
11405
  UpdateProfileInput: IUpdateProfileInput;
11117
11406
  UpdateUserAccountAliasesInput: IUpdateUserAccountAliasesInput;
11118
11407
  Upload: ResolverTypeWrapper<Scalars['Upload']['output']>;
@@ -11215,12 +11504,24 @@ export type IResolversParentTypes = {
11215
11504
  resources?: Maybe<Array<Maybe<IResolversParentTypes['IConfigurationModel']>>>;
11216
11505
  user?: Maybe<IResolversParentTypes['IConfigurationModel']>;
11217
11506
  };
11507
+ ConfigurationDefaults: IConfigurationDefaults;
11508
+ ConfigurationDefaultsInput: IConfigurationDefaultsInput;
11218
11509
  ConfigurationExtensionInfo: IConfigurationExtensionInfo;
11510
+ ConfigurationExtensionInfoInput: IConfigurationExtensionInfoInput;
11219
11511
  ConfigurationInput: IConfigurationInput;
11220
11512
  ConfigurationModel: IConfigurationModel;
11513
+ ConfigurationNode: IConfigurationNode;
11514
+ ConfigurationNodeContextInput: IConfigurationNodeContextInput;
11515
+ ConfigurationNodeInput: IConfigurationNodeInput;
11516
+ ConfigurationNodeRegistry: IConfigurationNodeRegistry;
11517
+ ConfigurationOverrideEntry: IConfigurationOverrideEntry;
11518
+ ConfigurationOverrideEntryInput: IConfigurationOverrideEntryInput;
11221
11519
  ConfigurationOverrides: IConfigurationOverrides;
11222
11520
  ConfigurationOverridesInput: IConfigurationOverridesInput;
11223
11521
  ConfigurationPolicy: IResolversUnionTypes<IResolversParentTypes>['ConfigurationPolicy'];
11522
+ ConfigurationScopeInput: IConfigurationScopeInput;
11523
+ ConfigurationSource: IConfigurationSource;
11524
+ ConfigurationSourceInput: IConfigurationSourceInput;
11224
11525
  ConfigurationUpdateEvent: IConfigurationUpdateEvent;
11225
11526
  Context: IContext;
11226
11527
  ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
@@ -11233,6 +11534,7 @@ export type IResolversParentTypes = {
11233
11534
  CountryInput: ICountryInput;
11234
11535
  CountryWithPhoneCode: ICountryWithPhoneCode;
11235
11536
  CreateAccessTokenResult: ICreateAccessTokenResult;
11537
+ CreateConfigurationNodeRegistryInput: ICreateConfigurationNodeRegistryInput;
11236
11538
  Date: Scalars['Date']['output'];
11237
11539
  DateTime: Scalars['DateTime']['output'];
11238
11540
  DefaultConfiguration: IDefaultConfiguration;
@@ -11297,6 +11599,8 @@ export type IResolversParentTypes = {
11297
11599
  InviteMember: IInviteMember;
11298
11600
  JSON: Scalars['JSON']['output'];
11299
11601
  JSONObject: Scalars['JSONObject']['output'];
11602
+ JsonContribution: IJsonContribution;
11603
+ JsonContributionInput: IJsonContributionInput;
11300
11604
  KeyPathSegment: IKeyPathSegment;
11301
11605
  LinkedIdentity: ILinkedIdentity;
11302
11606
  LoginDeviceCredential: ILoginDeviceCredential;
@@ -11399,6 +11703,10 @@ export type IResolversParentTypes = {
11399
11703
  ProjectStatusPermissions: IProjectStatusPermissions;
11400
11704
  Query: {};
11401
11705
  Range: IRange;
11706
+ RealmConfiguration: IRealmConfiguration;
11707
+ RealmConfigurationInput: IRealmConfigurationInput;
11708
+ RealmUser: IRealmUser;
11709
+ RealmUserInput: IRealmUserInput;
11402
11710
  RenewAuthUsingRefreshToken: IRenewAuthUsingRefreshToken;
11403
11711
  ReportPermissions: IReportPermissions;
11404
11712
  ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
@@ -11416,6 +11724,8 @@ export type IResolversParentTypes = {
11416
11724
  RolesTarget: IRolesTarget;
11417
11725
  RolesTargetInput: IRolesTargetInput;
11418
11726
  RouteData: IRouteData;
11727
+ ServerConfiguration: IServerConfiguration;
11728
+ ServerConfigurationInput: IServerConfigurationInput;
11419
11729
  SettingPermissions: ISettingPermissions;
11420
11730
  Settings: ISettings;
11421
11731
  SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
@@ -11424,6 +11734,7 @@ export type IResolversParentTypes = {
11424
11734
  SettingsGroup: ISettingsGroup;
11425
11735
  SettingsSection: ISettingsSection;
11426
11736
  SettingsSubject: IResolversUnionTypes<IResolversParentTypes>['SettingsSubject'];
11737
+ SetupTenantInput: ISetupTenantInput;
11427
11738
  Sort: ISort;
11428
11739
  State: IState;
11429
11740
  StateInput: IStateInput;
@@ -11446,6 +11757,7 @@ export type IResolversParentTypes = {
11446
11757
  TeamRemoveRequest: ITeamRemoveRequest;
11447
11758
  TeamType: ITeamType;
11448
11759
  TeamUpdateRequest: ITeamUpdateRequest;
11760
+ TenantInfo: ITenantInfo;
11449
11761
  TerritorialStateInput: ITerritorialStateInput;
11450
11762
  TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
11451
11763
  ThreadsPermissions: IThreadsPermissions;
@@ -11453,6 +11765,7 @@ export type IResolversParentTypes = {
11453
11765
  Timestamp: Scalars['Timestamp']['output'];
11454
11766
  URI: Scalars['URI']['output'];
11455
11767
  URIInput: Scalars['URIInput']['output'];
11768
+ UpdateConfigurationNodeRegistryInput: IUpdateConfigurationNodeRegistryInput;
11456
11769
  UpdateProfileInput: IUpdateProfileInput;
11457
11770
  UpdateUserAccountAliasesInput: IUpdateUserAccountAliasesInput;
11458
11771
  Upload: Scalars['Upload']['output'];
@@ -11704,7 +12017,6 @@ export type ICdecodeParsedUriResolvers<ContextType = MyContext, ParentType exten
11704
12017
  pathSegments?: Resolver<IResolversTypes['CdecodeURIPathSegment'], ParentType, ContextType>;
11705
12018
  queryData?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
11706
12019
  scheme?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
11707
- tenantId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
11708
12020
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11709
12021
  };
11710
12022
  export type ICdecodeUriPathSegmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CdecodeURIPathSegment'] = IResolversParentTypes['CdecodeURIPathSegment']> = {
@@ -11755,8 +12067,14 @@ export type IConfigurationDataResolvers<ContextType = MyContext, ParentType exte
11755
12067
  user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
11756
12068
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11757
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
+ };
11758
12075
  export type IConfigurationExtensionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationExtensionInfo'] = IResolversParentTypes['ConfigurationExtensionInfo']> = {
11759
- id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12076
+ displayName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12077
+ id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
11760
12078
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11761
12079
  };
11762
12080
  export type IConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationModel'] = IResolversParentTypes['ConfigurationModel']> = {
@@ -11765,6 +12083,36 @@ export type IConfigurationModelResolvers<ContextType = MyContext, ParentType ext
11765
12083
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
11766
12084
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11767
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
+ };
11768
12116
  export type IConfigurationOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationOverrides'] = IResolversParentTypes['ConfigurationOverrides']> = {
11769
12117
  externalResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
11770
12118
  overrideIdentifier?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -11780,6 +12128,12 @@ export type IConfigurationScopeResolvers = EnumResolverSignature<{
11780
12128
  RESOURCE?: any;
11781
12129
  WINDOW?: any;
11782
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
+ };
11783
12137
  export type IConfigurationTargetResolvers = EnumResolverSignature<{
11784
12138
  APPLICATION?: any;
11785
12139
  DEFAULT?: any;
@@ -12223,6 +12577,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
12223
12577
  export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
12224
12578
  name: 'JSONObject';
12225
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
+ };
12226
12587
  export type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
12227
12588
  connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12228
12589
  isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -12303,9 +12664,11 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12303
12664
  changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, 'orgName'>>;
12304
12665
  createAccessToken?: Resolver<IResolversTypes['CreateAccessTokenResult'], ParentType, ContextType, RequireFields<IMutationCreateAccessTokenArgs, 'note' | 'scopes' | 'user'>>;
12305
12666
  createCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationCreateCityArgs, 'propertyCity'>>;
12667
+ createConfigurationNodeRegistry?: Resolver<IResolversTypes['ConfigurationNodeRegistry'], ParentType, ContextType, RequireFields<IMutationCreateConfigurationNodeRegistryArgs, 'context' | 'data'>>;
12306
12668
  createCountry?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IMutationCreateCountryArgs, 'country'>>;
12307
12669
  createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateIntegrationConfigurationArgs>>;
12308
12670
  createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateOrUpdateIntegrationConfigurationArgs>>;
12671
+ createOrUpdateSchema?: Resolver<Maybe<IResolversTypes['JsonContribution']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateSchemaArgs, 'input'>>;
12309
12672
  createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
12310
12673
  createState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationCreateStateArgs, 'state'>>;
12311
12674
  createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
@@ -12328,8 +12691,10 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12328
12691
  reassignRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
12329
12692
  registerAccountUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IMutationRegisterAccountUserArgs>>;
12330
12693
  registerUserInAuth0?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IMutationRegisterUserInAuth0Args, 'email' | 'password'>>;
12694
+ removeConfigurationNodeRegistry?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationRemoveConfigurationNodeRegistryArgs, 'context'>>;
12331
12695
  removeOrgMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveOrgMemberArgs, 'memberId'>>;
12332
12696
  removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveOrganizationArgs, 'organization'>>;
12697
+ removeSchema?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveSchemaArgs, 'id'>>;
12333
12698
  removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveTeamArgs, 'teamId'>>;
12334
12699
  removeTeamMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveTeamMemberArgs, 'memberId' | 'orgName' | 'teamName'>>;
12335
12700
  removeUserAuthSession?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationRemoveUserAuthSessionArgs>>;
@@ -12341,9 +12706,11 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12341
12706
  sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationSendOrganizationInvitationArgs>>;
12342
12707
  sendPhoneOTP?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSendPhoneOtpArgs, 'phoneNumber'>>;
12343
12708
  sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
12709
+ setupTenant?: Resolver<IResolversTypes['TenantInfo'], ParentType, ContextType, RequireFields<IMutationSetupTenantArgs, 'input'>>;
12344
12710
  updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateAuth0UserPasswordArgs>>;
12345
12711
  updateCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationUpdateCityArgs, 'id' | 'propertyCity'>>;
12346
12712
  updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
12713
+ updateConfigurationNodeRegistry?: Resolver<IResolversTypes['ConfigurationNodeRegistry'], ParentType, ContextType, RequireFields<IMutationUpdateConfigurationNodeRegistryArgs, 'context' | 'data'>>;
12347
12714
  updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
12348
12715
  updateConfigurationPolicyValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueByUriArgs, 'key' | 'value'>>;
12349
12716
  updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Configuration']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueArgs, 'key' | 'value'>>;
@@ -12791,7 +13158,9 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
12791
13158
  defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
12792
13159
  defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<IQueryDefaultViewerSettingsSubjectArgs, 'options' | 'target'>>;
12793
13160
  externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, Partial<IQueryExternalAccountsArgs>>;
13161
+ fetchAllSchemas?: Resolver<Maybe<Array<IResolversTypes['JsonContribution']>>, ParentType, ContextType, RequireFields<IQueryFetchAllSchemasArgs, 'tenantId'>>;
12794
13162
  fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'authUserId'>>;
13163
+ fetchSchema?: Resolver<Maybe<IResolversTypes['JsonContribution']>, ParentType, ContextType, RequireFields<IQueryFetchSchemaArgs, 'normalizedUri' | 'tenantId'>>;
12795
13164
  fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'authUserId'>>;
12796
13165
  fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
12797
13166
  fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
@@ -12804,6 +13173,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
12804
13173
  getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
12805
13174
  getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, Partial<IQueryGetConfigurationArgs>>;
12806
13175
  getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
13176
+ getConfigurationNodeRegistry?: Resolver<Maybe<IResolversTypes['ConfigurationNodeRegistry']>, ParentType, ContextType, RequireFields<IQueryGetConfigurationNodeRegistryArgs, 'context'>>;
12807
13177
  getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, Partial<IQueryGetConfigurationPoliciesArgs>>;
12808
13178
  getConfigurationTarget?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType, Partial<IQueryGetConfigurationTargetArgs>>;
12809
13179
  getContextData?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
@@ -12828,6 +13198,8 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
12828
13198
  getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, Partial<IQueryGetRoleArgs>>;
12829
13199
  getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, Partial<IQueryGetRolesArgs>>;
12830
13200
  getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryGetTeamArgs, 'orgName' | 'teamName'>>;
13201
+ getTenantByAccountId?: Resolver<Maybe<IResolversTypes['TenantInfo']>, ParentType, ContextType, RequireFields<IQueryGetTenantByAccountIdArgs, 'accountId'>>;
13202
+ getTenantByAppName?: Resolver<Maybe<IResolversTypes['TenantInfo']>, ParentType, ContextType, RequireFields<IQueryGetTenantByAppNameArgs, 'appName'>>;
12831
13203
  getUserAccessRole?: Resolver<Maybe<IResolversTypes['ResourceAccessRole']>, ParentType, ContextType, Partial<IQueryGetUserAccessRoleArgs>>;
12832
13204
  getUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IQueryGetUserAccountArgs, 'userId'>>;
12833
13205
  getUserAccountByAuth0Id?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IQueryGetUserAccountByAuth0IdArgs>>;
@@ -12853,6 +13225,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
12853
13225
  team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
12854
13226
  teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
12855
13227
  userResourceRole?: Resolver<Maybe<IResolversTypes['ResourceUser']>, ParentType, ContextType, RequireFields<IQueryUserResourceRoleArgs, 'orgName'>>;
13228
+ validateTenantAccess?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IQueryValidateTenantAccessArgs, 'accountId' | 'appName'>>;
12856
13229
  viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
12857
13230
  viewerSettings?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, Partial<IQueryViewerSettingsArgs>>;
12858
13231
  viewerSettings2?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, Partial<IQueryViewerSettings2Args>>;
@@ -12866,6 +13239,21 @@ export type IRangeResolvers<ContextType = MyContext, ParentType extends IResolve
12866
13239
  startLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
12867
13240
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
12868
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
+ };
12869
13257
  export type IRenewAuthUsingRefreshTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RenewAuthUsingRefreshToken'] = IResolversParentTypes['RenewAuthUsingRefreshToken']> = {
12870
13258
  accessToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12871
13259
  expiresIn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
@@ -12936,6 +13324,14 @@ export type IRouteDataResolvers<ContextType = MyContext, ParentType extends IRes
12936
13324
  tab?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12937
13325
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
12938
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
+ };
12939
13335
  export type ISettingPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SettingPermissions'] = IResolversParentTypes['SettingPermissions']> = {
12940
13336
  edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
12941
13337
  view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
@@ -13049,6 +13445,13 @@ export type ITeamPermissionsResolvers<ContextType = MyContext, ParentType extend
13049
13445
  viewOthers?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
13050
13446
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
13051
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
+ };
13052
13455
  export type IThreadsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ThreadsPermissions'] = IResolversParentTypes['ThreadsPermissions']> = {
13053
13456
  assignThreads?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
13054
13457
  delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
@@ -13170,7 +13573,6 @@ export type IUserConfigurationResolvers<ContextType = MyContext, ParentType exte
13170
13573
  export type IUserContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserContext'] = IResolversParentTypes['UserContext']> = {
13171
13574
  accountId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13172
13575
  accountsRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
13173
- dummy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13174
13576
  emailId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13175
13577
  identity?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
13176
13578
  namespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -13186,6 +13588,7 @@ export type IUserContextResolvers<ContextType = MyContext, ParentType extends IR
13186
13588
  resourceSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
13187
13589
  teamId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13188
13590
  teamSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
13591
+ tenantId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13189
13592
  userAlias?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13190
13593
  userSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
13191
13594
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -13341,11 +13744,16 @@ export type IResolvers<ContextType = MyContext> = {
13341
13744
  ClientPermissions?: IClientPermissionsResolvers<ContextType>;
13342
13745
  Configuration?: IConfigurationResolvers<ContextType>;
13343
13746
  ConfigurationData?: IConfigurationDataResolvers<ContextType>;
13747
+ ConfigurationDefaults?: IConfigurationDefaultsResolvers<ContextType>;
13344
13748
  ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
13345
13749
  ConfigurationModel?: IConfigurationModelResolvers<ContextType>;
13750
+ ConfigurationNode?: IConfigurationNodeResolvers<ContextType>;
13751
+ ConfigurationNodeRegistry?: IConfigurationNodeRegistryResolvers<ContextType>;
13752
+ ConfigurationOverrideEntry?: IConfigurationOverrideEntryResolvers<ContextType>;
13346
13753
  ConfigurationOverrides?: IConfigurationOverridesResolvers<ContextType>;
13347
13754
  ConfigurationPolicy?: IConfigurationPolicyResolvers<ContextType>;
13348
13755
  ConfigurationScope?: IConfigurationScopeResolvers;
13756
+ ConfigurationSource?: IConfigurationSourceResolvers<ContextType>;
13349
13757
  ConfigurationTarget?: IConfigurationTargetResolvers;
13350
13758
  ConfigurationUpdateEvent?: IConfigurationUpdateEventResolvers<ContextType>;
13351
13759
  Context?: IContextResolvers<ContextType>;
@@ -13399,6 +13807,7 @@ export type IResolvers<ContextType = MyContext> = {
13399
13807
  InviteMember?: IInviteMemberResolvers<ContextType>;
13400
13808
  JSON?: GraphQLScalarType;
13401
13809
  JSONObject?: GraphQLScalarType;
13810
+ JsonContribution?: IJsonContributionResolvers<ContextType>;
13402
13811
  LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
13403
13812
  LoginDeviceCredential?: ILoginDeviceCredentialResolvers<ContextType>;
13404
13813
  LoginError?: ILoginErrorResolvers<ContextType>;
@@ -13469,6 +13878,8 @@ export type IResolvers<ContextType = MyContext> = {
13469
13878
  ProjectStatusPermissions?: IProjectStatusPermissionsResolvers<ContextType>;
13470
13879
  Query?: IQueryResolvers<ContextType>;
13471
13880
  Range?: IRangeResolvers<ContextType>;
13881
+ RealmConfiguration?: IRealmConfigurationResolvers<ContextType>;
13882
+ RealmUser?: IRealmUserResolvers<ContextType>;
13472
13883
  RenewAuthUsingRefreshToken?: IRenewAuthUsingRefreshTokenResolvers<ContextType>;
13473
13884
  ReportPermissions?: IReportPermissionsResolvers<ContextType>;
13474
13885
  ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
@@ -13481,6 +13892,7 @@ export type IResolvers<ContextType = MyContext> = {
13481
13892
  RolePermissions?: IRolePermissionsResolvers<ContextType>;
13482
13893
  RolesTarget?: IRolesTargetResolvers<ContextType>;
13483
13894
  RouteData?: IRouteDataResolvers<ContextType>;
13895
+ ServerConfiguration?: IServerConfigurationResolvers<ContextType>;
13484
13896
  SettingPermissions?: ISettingPermissionsResolvers<ContextType>;
13485
13897
  Settings?: ISettingsResolvers<ContextType>;
13486
13898
  SettingsCascade?: ISettingsCascadeResolvers<ContextType>;
@@ -13497,6 +13909,7 @@ export type IResolvers<ContextType = MyContext> = {
13497
13909
  TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
13498
13910
  TeamMember?: ITeamMemberResolvers<ContextType>;
13499
13911
  TeamPermissions?: ITeamPermissionsResolvers<ContextType>;
13912
+ TenantInfo?: ITenantInfoResolvers<ContextType>;
13500
13913
  ThreadsPermissions?: IThreadsPermissionsResolvers<ContextType>;
13501
13914
  Time?: GraphQLScalarType;
13502
13915
  Timestamp?: GraphQLScalarType;