@adminide-stack/core 9.2.1-alpha.45 → 9.2.1-alpha.48

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 +318 -30
  16. package/lib/interfaces/generated/generated-models.js +34 -15
  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
@@ -185,9 +185,9 @@ export declare enum IAccountServiceAction {
185
185
  ResetUserPassword = "resetUserPassword",
186
186
  SendEmailVerificationCode = "sendEmailVerificationCode",
187
187
  UpdateAccount = "updateAccount",
188
- UpdateProfile = "updateProfile",
189
188
  UpdateUserAccount = "updateUserAccount",
190
189
  UpdateUserAccountAliases = "updateUserAccountAliases",
190
+ UpdateUserProfile = "updateUserProfile",
191
191
  ValidateEmailVerificationCode = "validateEmailVerificationCode",
192
192
  VerifyUserEmailVerificationToken = "verifyUserEmailVerificationToken"
193
193
  }
@@ -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']>;
@@ -1670,6 +1815,11 @@ export type IMutation = {
1670
1815
  updateAuth0UserPassword?: Maybe<Scalars['Boolean']['output']>;
1671
1816
  updateCity: ICity;
1672
1817
  updateConfiguration?: Maybe<Scalars['Boolean']['output']>;
1818
+ /**
1819
+ * Update an existing configuration record, identified by
1820
+ * (tenantId, schemaId, extensionName).
1821
+ */
1822
+ updateConfigurationNodeRegistry: IConfigurationNodeRegistry;
1673
1823
  updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']['output']>;
1674
1824
  updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']['output']>;
1675
1825
  /**
@@ -1685,12 +1835,12 @@ export type IMutation = {
1685
1835
  updateOrganizationContextAddResources?: Maybe<Array<Maybe<IResourceData>>>;
1686
1836
  updateOrganizationContextRemoveResources?: Maybe<Array<Maybe<IResourceData>>>;
1687
1837
  updateOrganizationContextUpdateResources?: Maybe<Array<Maybe<IResourceData>>>;
1688
- updateProfile?: Maybe<Scalars['Boolean']['output']>;
1689
1838
  updateRoleValue?: Maybe<Scalars['Boolean']['output']>;
1690
1839
  updateSelectedOrgResource?: Maybe<Scalars['Boolean']['output']>;
1691
1840
  updateState: IState;
1692
1841
  updateUserAccount?: Maybe<Scalars['Boolean']['output']>;
1693
1842
  updateUserAccountAliases?: Maybe<IUserAccount>;
1843
+ updateUserProfile?: Maybe<Scalars['Boolean']['output']>;
1694
1844
  validatePasswordResetOtp?: Maybe<Scalars['Boolean']['output']>;
1695
1845
  validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']['output']>;
1696
1846
  verifyPhoneOtp?: Maybe<Scalars['Boolean']['output']>;
@@ -1742,6 +1892,10 @@ export type IMutationCreateAccessTokenArgs = {
1742
1892
  export type IMutationCreateCityArgs = {
1743
1893
  propertyCity: ICityInput;
1744
1894
  };
1895
+ export type IMutationCreateConfigurationNodeRegistryArgs = {
1896
+ context: IConfigurationNodeContextInput;
1897
+ data: ICreateConfigurationNodeRegistryInput;
1898
+ };
1745
1899
  export type IMutationCreateCountryArgs = {
1746
1900
  country: ICountryInput;
1747
1901
  };
@@ -1751,6 +1905,9 @@ export type IMutationCreateIntegrationConfigurationArgs = {
1751
1905
  export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
1752
1906
  data?: InputMaybe<IIntegrationConfigurationCreateOrUpdateInput>;
1753
1907
  };
1908
+ export type IMutationCreateOrUpdateSchemaArgs = {
1909
+ input: IJsonContributionInput;
1910
+ };
1754
1911
  export type IMutationCreateOrganizationArgs = {
1755
1912
  organization: IOrganizationCreateRequest;
1756
1913
  };
@@ -1815,12 +1972,18 @@ export type IMutationRegisterUserInAuth0Args = {
1815
1972
  email: Scalars['String']['input'];
1816
1973
  password: Scalars['String']['input'];
1817
1974
  };
1975
+ export type IMutationRemoveConfigurationNodeRegistryArgs = {
1976
+ context: IConfigurationNodeContextInput;
1977
+ };
1818
1978
  export type IMutationRemoveOrgMemberArgs = {
1819
1979
  memberId: Scalars['String']['input'];
1820
1980
  };
1821
1981
  export type IMutationRemoveOrganizationArgs = {
1822
1982
  organization: IOrganizationRemoveRequest;
1823
1983
  };
1984
+ export type IMutationRemoveSchemaArgs = {
1985
+ id: Scalars['ID']['input'];
1986
+ };
1824
1987
  export type IMutationRemoveTeamArgs = {
1825
1988
  teamId: Scalars['String']['input'];
1826
1989
  };
@@ -1879,6 +2042,10 @@ export type IMutationUpdateConfigurationArgs = {
1879
2042
  target?: InputMaybe<Scalars['Int']['input']>;
1880
2043
  value: Scalars['AnyObject']['input'];
1881
2044
  };
2045
+ export type IMutationUpdateConfigurationNodeRegistryArgs = {
2046
+ context: IConfigurationNodeContextInput;
2047
+ data: IUpdateConfigurationNodeRegistryInput;
2048
+ };
1882
2049
  export type IMutationUpdateConfigurationPolicyValueArgs = {
1883
2050
  donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
1884
2051
  key: Scalars['String']['input'];
@@ -1939,9 +2106,6 @@ export type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
1939
2106
  resourcesToAdd: Array<InputMaybe<IResourceCreationDataInput>>;
1940
2107
  resourcesToRemove: Array<InputMaybe<Scalars['URI']['input']>>;
1941
2108
  };
1942
- export type IMutationUpdateProfileArgs = {
1943
- input?: InputMaybe<IUpdateProfileInput>;
1944
- };
1945
2109
  export type IMutationUpdateRoleValueArgs = {
1946
2110
  donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
1947
2111
  key: Scalars['String']['input'];
@@ -1962,6 +2126,9 @@ export type IMutationUpdateUserAccountArgs = {
1962
2126
  export type IMutationUpdateUserAccountAliasesArgs = {
1963
2127
  input?: InputMaybe<IUpdateUserAccountAliasesInput>;
1964
2128
  };
2129
+ export type IMutationUpdateUserProfileArgs = {
2130
+ input?: InputMaybe<IUpdateProfileInput>;
2131
+ };
1965
2132
  export type IMutationValidatePasswordResetOtpArgs = {
1966
2133
  code: Scalars['String']['input'];
1967
2134
  email: Scalars['String']['input'];
@@ -2708,8 +2875,12 @@ export type IQuery = {
2708
2875
  defaultViewerSettingsSubject: IDefaultSettings;
2709
2876
  /** A list of external accounts that are associated with the user. */
2710
2877
  externalAccounts: IExternalAccountConnection;
2878
+ /** Retrieve all JSON contributions for a specific tenant. */
2879
+ fetchAllSchemas?: Maybe<Array<IJsonContribution>>;
2711
2880
  /** Fetches a User from Auth0 Service */
2712
2881
  fetchAuth0User?: Maybe<IUserProfile>;
2882
+ /** Retrieve a single JSON contribution by tenantId + normalizedUri. */
2883
+ fetchSchema?: Maybe<IJsonContribution>;
2713
2884
  /** @deprecated Field no longer supported */
2714
2885
  fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
2715
2886
  fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
@@ -2723,6 +2894,8 @@ export type IQuery = {
2723
2894
  getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
2724
2895
  getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
2725
2896
  getConfigurationData?: Maybe<IConfigurationData>;
2897
+ /** Retrieve a single configuration registry by (tenantId, schemaId, extensionName). */
2898
+ getConfigurationNodeRegistry?: Maybe<IConfigurationNodeRegistry>;
2726
2899
  getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
2727
2900
  getConfigurationTarget?: Maybe<Scalars['Int']['output']>;
2728
2901
  getContextData?: Maybe<IContext>;
@@ -2842,9 +3015,16 @@ export type IQueryDefaultViewerSettingsSubjectArgs = {
2842
3015
  export type IQueryExternalAccountsArgs = {
2843
3016
  first?: InputMaybe<Scalars['Int']['input']>;
2844
3017
  };
3018
+ export type IQueryFetchAllSchemasArgs = {
3019
+ tenantId: Scalars['String']['input'];
3020
+ };
2845
3021
  export type IQueryFetchAuth0UserArgs = {
2846
3022
  authUserId: Scalars['String']['input'];
2847
3023
  };
3024
+ export type IQueryFetchSchemaArgs = {
3025
+ normalizedUri: Scalars['String']['input'];
3026
+ tenantId: Scalars['String']['input'];
3027
+ };
2848
3028
  export type IQueryFetchUserAuthorizedDevicesArgs = {
2849
3029
  authUserId: Scalars['String']['input'];
2850
3030
  };
@@ -2883,6 +3063,9 @@ export type IQueryGetAllUsersTokensArgs = {
2883
3063
  export type IQueryGetConfigurationArgs = {
2884
3064
  input?: InputMaybe<Array<InputMaybe<IConfigurationInput>>>;
2885
3065
  };
3066
+ export type IQueryGetConfigurationNodeRegistryArgs = {
3067
+ context: IConfigurationNodeContextInput;
3068
+ };
2886
3069
  export type IQueryGetConfigurationPoliciesArgs = {
2887
3070
  input?: InputMaybe<Array<InputMaybe<IConfigurationInput>>>;
2888
3071
  };
@@ -3083,11 +3266,9 @@ export type IRealmUserInput = {
3083
3266
  };
3084
3267
  /** Registry Extensions */
3085
3268
  export declare enum IRegistryExtensions {
3086
- Configuration = "Configuration",
3269
+ DefaultConfiguration = "DefaultConfiguration",
3087
3270
  JsonContribution = "JSONContribution",
3088
- Permissions = "Permissions",
3089
- Policies = "Policies",
3090
- UserRole = "UserRole"
3271
+ Integration = "integration"
3091
3272
  }
3092
3273
  export type IRenewAuthUsingRefreshToken = {
3093
3274
  __typename?: 'RenewAuthUsingRefreshToken';
@@ -3491,6 +3672,16 @@ export declare enum ITokenTypesEnum {
3491
3672
  EmailVerification = "EMAIL_VERIFICATION",
3492
3673
  PasswordReset = "PASSWORD_RESET"
3493
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
+ };
3494
3685
  export type IUpdateProfileInput = {
3495
3686
  familyName?: InputMaybe<Scalars['String']['input']>;
3496
3687
  id: Scalars['ID']['input'];
@@ -3720,7 +3911,6 @@ export type IUserContext = {
3720
3911
  __typename?: 'UserContext';
3721
3912
  accountId?: Maybe<Scalars['String']['output']>;
3722
3913
  accountsRoles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
3723
- dummy?: Maybe<Scalars['String']['output']>;
3724
3914
  emailId?: Maybe<Scalars['String']['output']>;
3725
3915
  identity?: Maybe<Scalars['AnyObject']['output']>;
3726
3916
  namespace?: Maybe<Scalars['String']['output']>;
@@ -3736,6 +3926,7 @@ export type IUserContext = {
3736
3926
  resourceSettingUri?: Maybe<Scalars['URI']['output']>;
3737
3927
  teamId?: Maybe<Scalars['String']['output']>;
3738
3928
  teamSettingUri?: Maybe<Scalars['URI']['output']>;
3929
+ tenantId?: Maybe<Scalars['String']['output']>;
3739
3930
  userAlias?: Maybe<Scalars['String']['output']>;
3740
3931
  userSettingUri?: Maybe<Scalars['URI']['output']>;
3741
3932
  };
@@ -4208,12 +4399,12 @@ export type IUpdateOrganizationMutation = {
4208
4399
  orgUserCount?: number | null;
4209
4400
  } | null;
4210
4401
  };
4211
- export type IUpdateProfileMutationVariables = Exact<{
4402
+ export type IUpdateUserProfileMutationVariables = Exact<{
4212
4403
  input?: InputMaybe<IUpdateProfileInput>;
4213
4404
  }>;
4214
- export type IUpdateProfileMutation = {
4405
+ export type IUpdateUserProfileMutation = {
4215
4406
  __typename?: 'Mutation';
4216
- updateProfile?: boolean | null;
4407
+ updateUserProfile?: boolean | null;
4217
4408
  };
4218
4409
  export type IUpdateTeamConfigurationMutationVariables = Exact<{
4219
4410
  key: Scalars['String']['input'];
@@ -7930,31 +8121,31 @@ export declare function useUpdateOrganizationMutation(baseOptions?: Apollo.Mutat
7930
8121
  export type UpdateOrganizationMutationHookResult = ReturnType<typeof useUpdateOrganizationMutation>;
7931
8122
  export type UpdateOrganizationMutationResult = Apollo.MutationResult<IUpdateOrganizationMutation>;
7932
8123
  export type UpdateOrganizationMutationOptions = Apollo.BaseMutationOptions<IUpdateOrganizationMutation, IUpdateOrganizationMutationVariables>;
7933
- export declare const UpdateProfileDocument: DocumentNode;
7934
- export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMutation, IUpdateProfileMutationVariables>;
8124
+ export declare const UpdateUserProfileDocument: DocumentNode;
8125
+ export type IUpdateUserProfileMutationFn = Apollo.MutationFunction<IUpdateUserProfileMutation, IUpdateUserProfileMutationVariables>;
7935
8126
  /**
7936
- * __useUpdateProfileMutation__
8127
+ * __useUpdateUserProfileMutation__
7937
8128
  *
7938
- * To run a mutation, you first call `useUpdateProfileMutation` within a React component and pass it any options that fit your needs.
7939
- * When your component renders, `useUpdateProfileMutation` returns a tuple that includes:
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:
7940
8131
  * - A mutate function that you can call at any time to execute the mutation
7941
8132
  * - An object with fields that represent the current status of the mutation's execution
7942
8133
  *
7943
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;
7944
8135
  *
7945
8136
  * @example
7946
- * const [updateProfileMutation, { data, loading, error }] = useUpdateProfileMutation({
8137
+ * const [updateUserProfileMutation, { data, loading, error }] = useUpdateUserProfileMutation({
7947
8138
  * variables: {
7948
8139
  * input: // value for 'input'
7949
8140
  * },
7950
8141
  * });
7951
8142
  */
7952
- export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
8143
+ export declare function useUpdateUserProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateUserProfileMutation, IUpdateUserProfileMutationVariables>): Apollo.MutationTuple<IUpdateUserProfileMutation, Exact<{
7953
8144
  input?: InputMaybe<IUpdateProfileInput>;
7954
8145
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
7955
- export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
7956
- export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
7957
- export type UpdateProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>;
8146
+ export type UpdateUserProfileMutationHookResult = ReturnType<typeof useUpdateUserProfileMutation>;
8147
+ export type UpdateUserProfileMutationResult = Apollo.MutationResult<IUpdateUserProfileMutation>;
8148
+ export type UpdateUserProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateUserProfileMutation, IUpdateUserProfileMutationVariables>;
7958
8149
  export declare const UpdateTeamConfigurationDocument: DocumentNode;
7959
8150
  export type IUpdateTeamConfigurationMutationFn = Apollo.MutationFunction<IUpdateTeamConfigurationMutation, IUpdateTeamConfigurationMutationVariables>;
7960
8151
  /**
@@ -10901,6 +11092,7 @@ export type IResolversTypes = {
10901
11092
  ClientPermissions: ResolverTypeWrapper<IClientPermissions>;
10902
11093
  ClientTypes: IClientTypes;
10903
11094
  ConfigCollectionName: IConfigCollectionName;
11095
+ ConfigExtensionName: IConfigExtensionName;
10904
11096
  ConfigFragmentName: IConfigFragmentName;
10905
11097
  Configuration: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['Configuration']>;
10906
11098
  ConfigurationContributionNames: IConfigurationContributionNames;
@@ -10913,14 +11105,28 @@ export type IResolversTypes = {
10913
11105
  resources?: Maybe<Array<Maybe<IResolversTypes['IConfigurationModel']>>>;
10914
11106
  user?: Maybe<IResolversTypes['IConfigurationModel']>;
10915
11107
  }>;
11108
+ ConfigurationDefaults: ResolverTypeWrapper<IConfigurationDefaults>;
11109
+ ConfigurationDefaultsInput: IConfigurationDefaultsInput;
11110
+ ConfigurationExtSourceType: IConfigurationExtSourceType;
10916
11111
  ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
11112
+ ConfigurationExtensionInfoInput: IConfigurationExtensionInfoInput;
10917
11113
  ConfigurationInput: IConfigurationInput;
10918
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;
10919
11121
  ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
10920
11122
  ConfigurationOverridesInput: IConfigurationOverridesInput;
10921
11123
  ConfigurationPolicy: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['ConfigurationPolicy']>;
11124
+ ConfigurationSchemaId: IConfigurationSchemaId;
10922
11125
  ConfigurationScope: ConfigurationScope;
11126
+ ConfigurationScopeInput: IConfigurationScopeInput;
10923
11127
  ConfigurationServiceAction: IConfigurationServiceAction;
11128
+ ConfigurationSource: ResolverTypeWrapper<IConfigurationSource>;
11129
+ ConfigurationSourceInput: IConfigurationSourceInput;
10924
11130
  ConfigurationTarget: ConfigurationTarget;
10925
11131
  ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
10926
11132
  Context: ResolverTypeWrapper<IContext>;
@@ -10935,6 +11141,7 @@ export type IResolversTypes = {
10935
11141
  CountryInput: ICountryInput;
10936
11142
  CountryWithPhoneCode: ResolverTypeWrapper<ICountryWithPhoneCode>;
10937
11143
  CreateAccessTokenResult: ResolverTypeWrapper<ICreateAccessTokenResult>;
11144
+ CreateConfigurationNodeRegistryInput: ICreateConfigurationNodeRegistryInput;
10938
11145
  Date: ResolverTypeWrapper<Scalars['Date']['output']>;
10939
11146
  DateTime: ResolverTypeWrapper<Scalars['DateTime']['output']>;
10940
11147
  DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
@@ -11006,6 +11213,8 @@ export type IResolversTypes = {
11006
11213
  InviteStatus: IInviteStatus;
11007
11214
  JSON: ResolverTypeWrapper<Scalars['JSON']['output']>;
11008
11215
  JSONObject: ResolverTypeWrapper<Scalars['JSONObject']['output']>;
11216
+ JsonContribution: ResolverTypeWrapper<IJsonContribution>;
11217
+ JsonContributionInput: IJsonContributionInput;
11009
11218
  KeyPathSegment: IKeyPathSegment;
11010
11219
  LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
11011
11220
  LoginDeviceCredential: ResolverTypeWrapper<ILoginDeviceCredential>;
@@ -11192,6 +11401,7 @@ export type IResolversTypes = {
11192
11401
  TokenTypesEnum: ITokenTypesEnum;
11193
11402
  URI: ResolverTypeWrapper<Scalars['URI']['output']>;
11194
11403
  URIInput: ResolverTypeWrapper<Scalars['URIInput']['output']>;
11404
+ UpdateConfigurationNodeRegistryInput: IUpdateConfigurationNodeRegistryInput;
11195
11405
  UpdateProfileInput: IUpdateProfileInput;
11196
11406
  UpdateUserAccountAliasesInput: IUpdateUserAccountAliasesInput;
11197
11407
  Upload: ResolverTypeWrapper<Scalars['Upload']['output']>;
@@ -11294,12 +11504,24 @@ export type IResolversParentTypes = {
11294
11504
  resources?: Maybe<Array<Maybe<IResolversParentTypes['IConfigurationModel']>>>;
11295
11505
  user?: Maybe<IResolversParentTypes['IConfigurationModel']>;
11296
11506
  };
11507
+ ConfigurationDefaults: IConfigurationDefaults;
11508
+ ConfigurationDefaultsInput: IConfigurationDefaultsInput;
11297
11509
  ConfigurationExtensionInfo: IConfigurationExtensionInfo;
11510
+ ConfigurationExtensionInfoInput: IConfigurationExtensionInfoInput;
11298
11511
  ConfigurationInput: IConfigurationInput;
11299
11512
  ConfigurationModel: IConfigurationModel;
11513
+ ConfigurationNode: IConfigurationNode;
11514
+ ConfigurationNodeContextInput: IConfigurationNodeContextInput;
11515
+ ConfigurationNodeInput: IConfigurationNodeInput;
11516
+ ConfigurationNodeRegistry: IConfigurationNodeRegistry;
11517
+ ConfigurationOverrideEntry: IConfigurationOverrideEntry;
11518
+ ConfigurationOverrideEntryInput: IConfigurationOverrideEntryInput;
11300
11519
  ConfigurationOverrides: IConfigurationOverrides;
11301
11520
  ConfigurationOverridesInput: IConfigurationOverridesInput;
11302
11521
  ConfigurationPolicy: IResolversUnionTypes<IResolversParentTypes>['ConfigurationPolicy'];
11522
+ ConfigurationScopeInput: IConfigurationScopeInput;
11523
+ ConfigurationSource: IConfigurationSource;
11524
+ ConfigurationSourceInput: IConfigurationSourceInput;
11303
11525
  ConfigurationUpdateEvent: IConfigurationUpdateEvent;
11304
11526
  Context: IContext;
11305
11527
  ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
@@ -11312,6 +11534,7 @@ export type IResolversParentTypes = {
11312
11534
  CountryInput: ICountryInput;
11313
11535
  CountryWithPhoneCode: ICountryWithPhoneCode;
11314
11536
  CreateAccessTokenResult: ICreateAccessTokenResult;
11537
+ CreateConfigurationNodeRegistryInput: ICreateConfigurationNodeRegistryInput;
11315
11538
  Date: Scalars['Date']['output'];
11316
11539
  DateTime: Scalars['DateTime']['output'];
11317
11540
  DefaultConfiguration: IDefaultConfiguration;
@@ -11376,6 +11599,8 @@ export type IResolversParentTypes = {
11376
11599
  InviteMember: IInviteMember;
11377
11600
  JSON: Scalars['JSON']['output'];
11378
11601
  JSONObject: Scalars['JSONObject']['output'];
11602
+ JsonContribution: IJsonContribution;
11603
+ JsonContributionInput: IJsonContributionInput;
11379
11604
  KeyPathSegment: IKeyPathSegment;
11380
11605
  LinkedIdentity: ILinkedIdentity;
11381
11606
  LoginDeviceCredential: ILoginDeviceCredential;
@@ -11540,6 +11765,7 @@ export type IResolversParentTypes = {
11540
11765
  Timestamp: Scalars['Timestamp']['output'];
11541
11766
  URI: Scalars['URI']['output'];
11542
11767
  URIInput: Scalars['URIInput']['output'];
11768
+ UpdateConfigurationNodeRegistryInput: IUpdateConfigurationNodeRegistryInput;
11543
11769
  UpdateProfileInput: IUpdateProfileInput;
11544
11770
  UpdateUserAccountAliasesInput: IUpdateUserAccountAliasesInput;
11545
11771
  Upload: Scalars['Upload']['output'];
@@ -11791,7 +12017,6 @@ export type ICdecodeParsedUriResolvers<ContextType = MyContext, ParentType exten
11791
12017
  pathSegments?: Resolver<IResolversTypes['CdecodeURIPathSegment'], ParentType, ContextType>;
11792
12018
  queryData?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
11793
12019
  scheme?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
11794
- tenantId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
11795
12020
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11796
12021
  };
11797
12022
  export type ICdecodeUriPathSegmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CdecodeURIPathSegment'] = IResolversParentTypes['CdecodeURIPathSegment']> = {
@@ -11842,8 +12067,14 @@ export type IConfigurationDataResolvers<ContextType = MyContext, ParentType exte
11842
12067
  user?: Resolver<Maybe<IResolversTypes['IConfigurationModel']>, ParentType, ContextType>;
11843
12068
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11844
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
+ };
11845
12075
  export type IConfigurationExtensionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationExtensionInfo'] = IResolversParentTypes['ConfigurationExtensionInfo']> = {
11846
- id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12076
+ displayName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12077
+ id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
11847
12078
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11848
12079
  };
11849
12080
  export type IConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationModel'] = IResolversParentTypes['ConfigurationModel']> = {
@@ -11852,6 +12083,36 @@ export type IConfigurationModelResolvers<ContextType = MyContext, ParentType ext
11852
12083
  overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
11853
12084
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
11854
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
+ };
11855
12116
  export type IConfigurationOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ConfigurationOverrides'] = IResolversParentTypes['ConfigurationOverrides']> = {
11856
12117
  externalResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
11857
12118
  overrideIdentifier?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -11867,6 +12128,12 @@ export type IConfigurationScopeResolvers = EnumResolverSignature<{
11867
12128
  RESOURCE?: any;
11868
12129
  WINDOW?: any;
11869
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
+ };
11870
12137
  export type IConfigurationTargetResolvers = EnumResolverSignature<{
11871
12138
  APPLICATION?: any;
11872
12139
  DEFAULT?: any;
@@ -12310,6 +12577,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
12310
12577
  export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
12311
12578
  name: 'JSONObject';
12312
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
+ };
12313
12587
  export type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
12314
12588
  connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
12315
12589
  isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -12390,9 +12664,11 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12390
12664
  changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, 'orgName'>>;
12391
12665
  createAccessToken?: Resolver<IResolversTypes['CreateAccessTokenResult'], ParentType, ContextType, RequireFields<IMutationCreateAccessTokenArgs, 'note' | 'scopes' | 'user'>>;
12392
12666
  createCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationCreateCityArgs, 'propertyCity'>>;
12667
+ createConfigurationNodeRegistry?: Resolver<IResolversTypes['ConfigurationNodeRegistry'], ParentType, ContextType, RequireFields<IMutationCreateConfigurationNodeRegistryArgs, 'context' | 'data'>>;
12393
12668
  createCountry?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IMutationCreateCountryArgs, 'country'>>;
12394
12669
  createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateIntegrationConfigurationArgs>>;
12395
12670
  createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateOrUpdateIntegrationConfigurationArgs>>;
12671
+ createOrUpdateSchema?: Resolver<Maybe<IResolversTypes['JsonContribution']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateSchemaArgs, 'input'>>;
12396
12672
  createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
12397
12673
  createState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationCreateStateArgs, 'state'>>;
12398
12674
  createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
@@ -12415,8 +12691,10 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12415
12691
  reassignRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
12416
12692
  registerAccountUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IMutationRegisterAccountUserArgs>>;
12417
12693
  registerUserInAuth0?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IMutationRegisterUserInAuth0Args, 'email' | 'password'>>;
12694
+ removeConfigurationNodeRegistry?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationRemoveConfigurationNodeRegistryArgs, 'context'>>;
12418
12695
  removeOrgMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveOrgMemberArgs, 'memberId'>>;
12419
12696
  removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveOrganizationArgs, 'organization'>>;
12697
+ removeSchema?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveSchemaArgs, 'id'>>;
12420
12698
  removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveTeamArgs, 'teamId'>>;
12421
12699
  removeTeamMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveTeamMemberArgs, 'memberId' | 'orgName' | 'teamName'>>;
12422
12700
  removeUserAuthSession?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationRemoveUserAuthSessionArgs>>;
@@ -12432,6 +12710,7 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12432
12710
  updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateAuth0UserPasswordArgs>>;
12433
12711
  updateCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationUpdateCityArgs, 'id' | 'propertyCity'>>;
12434
12712
  updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
12713
+ updateConfigurationNodeRegistry?: Resolver<IResolversTypes['ConfigurationNodeRegistry'], ParentType, ContextType, RequireFields<IMutationUpdateConfigurationNodeRegistryArgs, 'context' | 'data'>>;
12435
12714
  updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
12436
12715
  updateConfigurationPolicyValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueByUriArgs, 'key' | 'value'>>;
12437
12716
  updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Configuration']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueArgs, 'key' | 'value'>>;
@@ -12443,12 +12722,12 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
12443
12722
  updateOrganizationContextAddResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextAddResourcesArgs, 'resourcesToAdd'>>;
12444
12723
  updateOrganizationContextRemoveResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextRemoveResourcesArgs, 'resourcesToRemove'>>;
12445
12724
  updateOrganizationContextUpdateResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextUpdateResourcesArgs, 'resourcesToAdd' | 'resourcesToRemove'>>;
12446
- updateProfile?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateProfileArgs>>;
12447
12725
  updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
12448
12726
  updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
12449
12727
  updateState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationUpdateStateArgs, 'id' | 'state'>>;
12450
12728
  updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateUserAccountArgs>>;
12451
12729
  updateUserAccountAliases?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IMutationUpdateUserAccountAliasesArgs>>;
12730
+ updateUserProfile?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateUserProfileArgs>>;
12452
12731
  validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'code' | 'email'>>;
12453
12732
  validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
12454
12733
  verifyPhoneOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationVerifyPhoneOtpArgs, 'otp' | 'phoneNumber'>>;
@@ -12879,7 +13158,9 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
12879
13158
  defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
12880
13159
  defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<IQueryDefaultViewerSettingsSubjectArgs, 'options' | 'target'>>;
12881
13160
  externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, Partial<IQueryExternalAccountsArgs>>;
13161
+ fetchAllSchemas?: Resolver<Maybe<Array<IResolversTypes['JsonContribution']>>, ParentType, ContextType, RequireFields<IQueryFetchAllSchemasArgs, 'tenantId'>>;
12882
13162
  fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'authUserId'>>;
13163
+ fetchSchema?: Resolver<Maybe<IResolversTypes['JsonContribution']>, ParentType, ContextType, RequireFields<IQueryFetchSchemaArgs, 'normalizedUri' | 'tenantId'>>;
12883
13164
  fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'authUserId'>>;
12884
13165
  fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
12885
13166
  fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
@@ -12892,6 +13173,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
12892
13173
  getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
12893
13174
  getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, Partial<IQueryGetConfigurationArgs>>;
12894
13175
  getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
13176
+ getConfigurationNodeRegistry?: Resolver<Maybe<IResolversTypes['ConfigurationNodeRegistry']>, ParentType, ContextType, RequireFields<IQueryGetConfigurationNodeRegistryArgs, 'context'>>;
12895
13177
  getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, Partial<IQueryGetConfigurationPoliciesArgs>>;
12896
13178
  getConfigurationTarget?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType, Partial<IQueryGetConfigurationTargetArgs>>;
12897
13179
  getContextData?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
@@ -13291,7 +13573,6 @@ export type IUserConfigurationResolvers<ContextType = MyContext, ParentType exte
13291
13573
  export type IUserContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserContext'] = IResolversParentTypes['UserContext']> = {
13292
13574
  accountId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13293
13575
  accountsRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
13294
- dummy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13295
13576
  emailId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13296
13577
  identity?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
13297
13578
  namespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -13307,6 +13588,7 @@ export type IUserContextResolvers<ContextType = MyContext, ParentType extends IR
13307
13588
  resourceSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
13308
13589
  teamId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13309
13590
  teamSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
13591
+ tenantId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13310
13592
  userAlias?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
13311
13593
  userSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
13312
13594
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -13462,11 +13744,16 @@ export type IResolvers<ContextType = MyContext> = {
13462
13744
  ClientPermissions?: IClientPermissionsResolvers<ContextType>;
13463
13745
  Configuration?: IConfigurationResolvers<ContextType>;
13464
13746
  ConfigurationData?: IConfigurationDataResolvers<ContextType>;
13747
+ ConfigurationDefaults?: IConfigurationDefaultsResolvers<ContextType>;
13465
13748
  ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
13466
13749
  ConfigurationModel?: IConfigurationModelResolvers<ContextType>;
13750
+ ConfigurationNode?: IConfigurationNodeResolvers<ContextType>;
13751
+ ConfigurationNodeRegistry?: IConfigurationNodeRegistryResolvers<ContextType>;
13752
+ ConfigurationOverrideEntry?: IConfigurationOverrideEntryResolvers<ContextType>;
13467
13753
  ConfigurationOverrides?: IConfigurationOverridesResolvers<ContextType>;
13468
13754
  ConfigurationPolicy?: IConfigurationPolicyResolvers<ContextType>;
13469
13755
  ConfigurationScope?: IConfigurationScopeResolvers;
13756
+ ConfigurationSource?: IConfigurationSourceResolvers<ContextType>;
13470
13757
  ConfigurationTarget?: IConfigurationTargetResolvers;
13471
13758
  ConfigurationUpdateEvent?: IConfigurationUpdateEventResolvers<ContextType>;
13472
13759
  Context?: IContextResolvers<ContextType>;
@@ -13520,6 +13807,7 @@ export type IResolvers<ContextType = MyContext> = {
13520
13807
  InviteMember?: IInviteMemberResolvers<ContextType>;
13521
13808
  JSON?: GraphQLScalarType;
13522
13809
  JSONObject?: GraphQLScalarType;
13810
+ JsonContribution?: IJsonContributionResolvers<ContextType>;
13523
13811
  LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
13524
13812
  LoginDeviceCredential?: ILoginDeviceCredentialResolvers<ContextType>;
13525
13813
  LoginError?: ILoginErrorResolvers<ContextType>;