@adminide-stack/core 7.0.1-alpha.44 → 7.0.1-alpha.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9828,7 +9828,7 @@ export type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TConte
|
|
9828
9828
|
export type NextResolverFn<T> = () => Promise<T>;
|
9829
9829
|
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
9830
9830
|
/** Mapping of union types */
|
9831
|
-
export type IResolversUnionTypes<
|
9831
|
+
export type IResolversUnionTypes<_RefType extends Record<string, unknown>> = {
|
9832
9832
|
AccessRole: (IApplicationRole) | (IDefaultRole) | (IOrganizationRole) | (IResourceRole);
|
9833
9833
|
Configuration: (IApplicationConfiguration) | (IDefaultConfiguration) | (IMachineConfiguration) | (IOrganizationConfiguration) | (IOrganizationResourceConfiguration) | (IPolicyConfiguration) | (IUserConfiguration);
|
9834
9834
|
ConfigurationPolicy: (IApplicationPolicy) | (IDefaultPolicy) | (IOrganizationPolicy) | (IResourcePolicy);
|
@@ -9836,7 +9836,7 @@ export type IResolversUnionTypes<RefType extends Record<string, unknown>> = {
|
|
9836
9836
|
SettingsSubject: (IApplicationSettings) | (IDefaultSettings) | (IGlobalSettings) | (IMachineSettings) | (IMemorySettings) | (IOrganizationResourceSettings) | (IOrganizationSettings) | (IUserSettings);
|
9837
9837
|
};
|
9838
9838
|
/** Mapping of interface types */
|
9839
|
-
export type IResolversInterfaceTypes<
|
9839
|
+
export type IResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
|
9840
9840
|
IAuth0Identity: never;
|
9841
9841
|
IAuth0Token: (IUserProfile);
|
9842
9842
|
IAuth0User: (IUserProfile);
|
@@ -9900,7 +9900,15 @@ export type IResolversTypes = {
|
|
9900
9900
|
ConfigFragmentName: IConfigFragmentName;
|
9901
9901
|
Configuration: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['Configuration']>;
|
9902
9902
|
ConfigurationContributionNames: IConfigurationContributionNames;
|
9903
|
-
ConfigurationData: ResolverTypeWrapper<IConfigurationData
|
9903
|
+
ConfigurationData: ResolverTypeWrapper<Omit<IConfigurationData, 'application' | 'defaults' | 'machine' | 'organization' | 'policy' | 'resources' | 'user'> & {
|
9904
|
+
application?: Maybe<IResolversTypes['IConfigurationModel']>;
|
9905
|
+
defaults?: Maybe<IResolversTypes['IConfigurationModel']>;
|
9906
|
+
machine?: Maybe<IResolversTypes['IConfigurationModel']>;
|
9907
|
+
organization?: Maybe<IResolversTypes['IConfigurationModel']>;
|
9908
|
+
policy?: Maybe<IResolversTypes['IConfigurationModel']>;
|
9909
|
+
resources?: Maybe<Array<Maybe<IResolversTypes['IConfigurationModel']>>>;
|
9910
|
+
user?: Maybe<IResolversTypes['IConfigurationModel']>;
|
9911
|
+
}>;
|
9904
9912
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
9905
9913
|
ConfigurationInput: IConfigurationInput;
|
9906
9914
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
@@ -10179,7 +10187,15 @@ export type IResolversParentTypes = {
|
|
10179
10187
|
CityInput: ICityInput;
|
10180
10188
|
CityUpdateInput: ICityUpdateInput;
|
10181
10189
|
Configuration: IResolversUnionTypes<IResolversParentTypes>['Configuration'];
|
10182
|
-
ConfigurationData: IConfigurationData
|
10190
|
+
ConfigurationData: Omit<IConfigurationData, 'application' | 'defaults' | 'machine' | 'organization' | 'policy' | 'resources' | 'user'> & {
|
10191
|
+
application?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
10192
|
+
defaults?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
10193
|
+
machine?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
10194
|
+
organization?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
10195
|
+
policy?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
10196
|
+
resources?: Maybe<Array<Maybe<IResolversParentTypes['IConfigurationModel']>>>;
|
10197
|
+
user?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
10198
|
+
};
|
10183
10199
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
10184
10200
|
ConfigurationInput: IConfigurationInput;
|
10185
10201
|
ConfigurationModel: IConfigurationModel;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/core",
|
3
|
-
"version": "7.0.1-alpha.
|
3
|
+
"version": "7.0.1-alpha.51",
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"typescript": {
|
37
37
|
"definition": "lib/index.d.ts"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "46e4a6f9123ac4f45f57e1ea8fe127346b118993"
|
40
40
|
}
|