@adminide-stack/core 7.0.1-alpha.44 → 7.0.3-alpha.0

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<RefType extends Record<string, unknown>> = {
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<RefType extends Record<string, unknown>> = {
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;
@@ -11142,10 +11158,8 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
11142
11158
  };
11143
11159
  export type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
11144
11160
  __resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
11145
- id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
11146
11161
  };
11147
11162
  export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
11148
- name: 'Observable';
11149
11163
  }
11150
11164
  export type IOrgInvitationMembersResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgInvitationMembers'] = IResolversParentTypes['OrgInvitationMembers']> = {
11151
11165
  data?: Resolver<Maybe<Array<Maybe<IResolversTypes['InviteMember']>>>, ParentType, ContextType>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminide-stack/core",
3
- "version": "7.0.1-alpha.44",
3
+ "version": "7.0.3-alpha.0",
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": "bd43061bd4ada3d784dedb00abcea934d1d6378a"
39
+ "gitHead": "a4ce6a8af0fb6e698a496c84e6d641db499efba1"
40
40
  }