@adminide-stack/core 9.1.1-alpha.48 → 9.1.1-alpha.52
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.
@@ -678,7 +678,6 @@ export declare enum IClientCacheTypeNames {
|
|
678
678
|
Environment = "Environment",
|
679
679
|
ExternalResourceData = "ExternalResourceData",
|
680
680
|
MachineConfiguration = "MachineConfiguration",
|
681
|
-
OrgMember = "OrgMember",
|
682
681
|
OrgUser = "OrgUser",
|
683
682
|
Organization = "Organization",
|
684
683
|
OrganizationConfiguration = "OrganizationConfiguration",
|
@@ -1967,7 +1966,7 @@ export type IOrgMember = {
|
|
1967
1966
|
};
|
1968
1967
|
export type IOrgMembersOutput = {
|
1969
1968
|
__typename?: 'OrgMembersOutput';
|
1970
|
-
data?: Maybe<Array<Maybe<
|
1969
|
+
data?: Maybe<Array<Maybe<IOrgUser>>>;
|
1971
1970
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
1972
1971
|
};
|
1973
1972
|
export type IOrgType = {
|
@@ -1981,6 +1980,7 @@ export type IOrgUser = IIOrgUser & {
|
|
1981
1980
|
isSelf: Scalars['Boolean']['output'];
|
1982
1981
|
orgName: Scalars['String']['output'];
|
1983
1982
|
role?: Maybe<IApplicationRoles>;
|
1983
|
+
teamNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
1984
1984
|
user: IUserAccount;
|
1985
1985
|
userId: Scalars['String']['output'];
|
1986
1986
|
};
|
@@ -3393,6 +3393,7 @@ export type IUserAccount = INode & {
|
|
3393
3393
|
phoneNumber?: Maybe<Array<IPhoneNumber>>;
|
3394
3394
|
picture?: Maybe<Scalars['String']['output']>;
|
3395
3395
|
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
3396
|
+
userFormattedName?: Maybe<Scalars['String']['output']>;
|
3396
3397
|
username?: Maybe<Scalars['String']['output']>;
|
3397
3398
|
};
|
3398
3399
|
/**
|
@@ -3435,6 +3436,7 @@ export type IUserAccountCreateRequest = {
|
|
3435
3436
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
3436
3437
|
picture?: InputMaybe<Scalars['String']['input']>;
|
3437
3438
|
tokens?: InputMaybe<Array<InputMaybe<IUserTokenInput>>>;
|
3439
|
+
userFormattedName?: InputMaybe<Scalars['String']['input']>;
|
3438
3440
|
username: Scalars['String']['input'];
|
3439
3441
|
workEmail?: InputMaybe<Scalars['String']['input']>;
|
3440
3442
|
};
|
@@ -4275,6 +4277,7 @@ export type IGetOrganizationMembersWithNameQuery = {
|
|
4275
4277
|
emailVerified?: boolean | null;
|
4276
4278
|
familyName?: string | null;
|
4277
4279
|
givenName?: string | null;
|
4280
|
+
userFormattedName?: string | null;
|
4278
4281
|
};
|
4279
4282
|
} | null> | null;
|
4280
4283
|
} | null;
|
@@ -4449,12 +4452,10 @@ export type IGetOrganizationMembersQuery = {
|
|
4449
4452
|
__typename?: 'OrgMembersOutput';
|
4450
4453
|
totalCount?: number | null;
|
4451
4454
|
data?: Array<{
|
4452
|
-
__typename?: '
|
4453
|
-
userId
|
4454
|
-
isSelf
|
4455
|
+
__typename?: 'OrgUser';
|
4456
|
+
userId: string;
|
4457
|
+
isSelf: boolean;
|
4455
4458
|
role?: IApplicationRoles | null;
|
4456
|
-
name?: string | null;
|
4457
|
-
email?: string | null;
|
4458
4459
|
teamNames?: Array<string | null> | null;
|
4459
4460
|
crossCheckEmail?: string | null;
|
4460
4461
|
user: {
|
@@ -4464,6 +4465,7 @@ export type IGetOrganizationMembersQuery = {
|
|
4464
4465
|
username?: string | null;
|
4465
4466
|
alias?: Array<string | null> | null;
|
4466
4467
|
email?: string | null;
|
4468
|
+
userFormattedName?: string | null;
|
4467
4469
|
};
|
4468
4470
|
} | null> | null;
|
4469
4471
|
} | null;
|
@@ -10519,10 +10521,10 @@ export type NextResolverFn<T> = () => Promise<T>;
|
|
10519
10521
|
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
10520
10522
|
/** Mapping of union types */
|
10521
10523
|
export type IResolversUnionTypes<_RefType extends Record<string, unknown>> = {
|
10522
|
-
AccessRole:
|
10523
|
-
Configuration:
|
10524
|
-
ConfigurationPolicy:
|
10525
|
-
ResourceData:
|
10524
|
+
AccessRole: IApplicationRole | IDefaultRole | IOrganizationRole | IResourceRole | IUserRole;
|
10525
|
+
Configuration: IApplicationConfiguration | IDefaultConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration | IPolicyConfiguration | IUserConfiguration;
|
10526
|
+
ConfigurationPolicy: IApplicationPolicy | IDefaultPolicy | IOrganizationPolicy | IResourcePolicy;
|
10527
|
+
ResourceData: IExternalResourceData | IOrganizationResourceData;
|
10526
10528
|
SettingsSubject: (Omit<IApplicationSettings, 'settingsCascade'> & {
|
10527
10529
|
settingsCascade: _RefType['SettingsCascade'];
|
10528
10530
|
}) | (Omit<IDefaultSettings, 'settingsCascade'> & {
|
@@ -10543,26 +10545,26 @@ export type IResolversUnionTypes<_RefType extends Record<string, unknown>> = {
|
|
10543
10545
|
};
|
10544
10546
|
/** Mapping of interface types */
|
10545
10547
|
export type IResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
|
10546
|
-
IAssetFileInfo:
|
10548
|
+
IAssetFileInfo: Omit<IFileInfo, 'createdBy'> & {
|
10547
10549
|
createdBy?: Maybe<_RefType['Node']>;
|
10548
|
-
}
|
10550
|
+
};
|
10549
10551
|
IAuth0Identity: never;
|
10550
|
-
IAuth0Token:
|
10551
|
-
IAuth0User:
|
10552
|
-
IAuth0UserProfile:
|
10553
|
-
ICity:
|
10554
|
-
IConfigurationModel:
|
10552
|
+
IAuth0Token: IUserProfile;
|
10553
|
+
IAuth0User: IUserProfile;
|
10554
|
+
IAuth0UserProfile: IUserProfile;
|
10555
|
+
ICity: ICity;
|
10556
|
+
IConfigurationModel: IApplicationConfiguration | IApplicationPolicy | IApplicationRole | IDefaultConfiguration | IDefaultPolicy | IDefaultRole | IMachineConfiguration | IOrganizationConfiguration | IOrganizationPolicy | IOrganizationResourceConfiguration | IOrganizationRole | IPolicyConfiguration | IResourcePolicy | IResourceRole | IUserConfiguration | IUserRole;
|
10555
10557
|
IConfigurationService: never;
|
10556
|
-
ICountry:
|
10558
|
+
ICountry: ICountry;
|
10557
10559
|
IEventWithContext: (Omit<IOrganizationCreatedEvent, 'userContext'> & {
|
10558
10560
|
userContext?: Maybe<_RefType['UserContext']>;
|
10559
10561
|
}) | (Omit<IOrganizationDeletedEvent, 'userContext'> & {
|
10560
10562
|
userContext?: Maybe<_RefType['UserContext']>;
|
10561
10563
|
});
|
10562
|
-
IOrgUser:
|
10563
|
-
IOrganization:
|
10564
|
-
IResourceData:
|
10565
|
-
IResourceUserRole:
|
10564
|
+
IOrgUser: IOrgUser;
|
10565
|
+
IOrganization: IOrganization;
|
10566
|
+
IResourceData: IExternalResourceData | IOrganizationResourceData;
|
10567
|
+
IResourceUserRole: IResourceUser;
|
10566
10568
|
IResourceUtilizationSettings: never;
|
10567
10569
|
ISettingsSubject: (Omit<IApplicationSettings, 'settingsCascade'> & {
|
10568
10570
|
settingsCascade: _RefType['SettingsCascade'];
|
@@ -10581,10 +10583,10 @@ export type IResolversInterfaceTypes<_RefType extends Record<string, unknown>> =
|
|
10581
10583
|
}) | (Omit<IUserSettings, 'settingsCascade'> & {
|
10582
10584
|
settingsCascade: _RefType['SettingsCascade'];
|
10583
10585
|
});
|
10584
|
-
ITerritorialState:
|
10585
|
-
IUser:
|
10586
|
-
IUserMetadata:
|
10587
|
-
Node:
|
10586
|
+
ITerritorialState: IState;
|
10587
|
+
IUser: IAuthUser;
|
10588
|
+
IUserMetadata: IUserMetadata;
|
10589
|
+
Node: IAccessToken | IApiExternalAccount | IApiManagement | IUserAccount;
|
10588
10590
|
};
|
10589
10591
|
/** Mapping between all available schema types and the resolvers types */
|
10590
10592
|
export type IResolversTypes = {
|
@@ -12152,7 +12154,7 @@ export type IOrgMemberResolvers<ContextType = MyContext, ParentType extends IRes
|
|
12152
12154
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12153
12155
|
};
|
12154
12156
|
export type IOrgMembersOutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgMembersOutput'] = IResolversParentTypes['OrgMembersOutput']> = {
|
12155
|
-
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['
|
12157
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrgUser']>>>, ParentType, ContextType>;
|
12156
12158
|
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
12157
12159
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12158
12160
|
};
|
@@ -12162,6 +12164,7 @@ export type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResol
|
|
12162
12164
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
12163
12165
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12164
12166
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
12167
|
+
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12165
12168
|
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
12166
12169
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12167
12170
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -12745,11 +12748,11 @@ export type ISubscribedOrganizationDataResolvers<ContextType = MyContext, Parent
|
|
12745
12748
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12746
12749
|
};
|
12747
12750
|
export type ISubscriptionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
|
12748
|
-
SubscribeToConfigurationUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>,
|
12749
|
-
SubscribeToOrganizationContext?: SubscriptionResolver<Maybe<IResolversTypes['SubscribedOrganizationData']>,
|
12750
|
-
SubscribeToPermissionUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>,
|
12751
|
-
SubscribeToPolicyUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>,
|
12752
|
-
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>,
|
12751
|
+
SubscribeToConfigurationUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, 'SubscribeToConfigurationUpdate', ParentType, ContextType, RequireFields<ISubscriptionSubscribeToConfigurationUpdateArgs, 'orgName'>>;
|
12752
|
+
SubscribeToOrganizationContext?: SubscriptionResolver<Maybe<IResolversTypes['SubscribedOrganizationData']>, 'SubscribeToOrganizationContext', ParentType, ContextType, Partial<ISubscriptionSubscribeToOrganizationContextArgs>>;
|
12753
|
+
SubscribeToPermissionUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, 'SubscribeToPermissionUpdate', ParentType, ContextType, Partial<ISubscriptionSubscribeToPermissionUpdateArgs>>;
|
12754
|
+
SubscribeToPolicyUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, 'SubscribeToPolicyUpdate', ParentType, ContextType, Partial<ISubscriptionSubscribeToPolicyUpdateArgs>>;
|
12755
|
+
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, 'dummy', ParentType, ContextType>;
|
12753
12756
|
};
|
12754
12757
|
export type ISubscriptionsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SubscriptionsPermissions'] = IResolversParentTypes['SubscriptionsPermissions']> = {
|
12755
12758
|
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
@@ -12840,6 +12843,7 @@ export type IUserAccountResolvers<ContextType = MyContext, ParentType extends IR
|
|
12840
12843
|
phoneNumber?: Resolver<Maybe<Array<IResolversTypes['PhoneNumber']>>, ParentType, ContextType>;
|
12841
12844
|
picture?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12842
12845
|
tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
|
12846
|
+
userFormattedName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12843
12847
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12844
12848
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12845
12849
|
};
|