@adminide-stack/core 1.1.1-alpha.361 → 1.1.1-alpha.379
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.
@@ -545,7 +545,8 @@ export declare type IContext = {
|
|
545
545
|
export declare const enum IContextServiceAction {
|
546
546
|
onResourceCreated = "onResourceCreated",
|
547
547
|
onResourceUpdated = "onResourceUpdated",
|
548
|
-
onResourceDeleted = "onResourceDeleted"
|
548
|
+
onResourceDeleted = "onResourceDeleted",
|
549
|
+
onResourceDeactivated = "onResourceDeactivated"
|
549
550
|
}
|
550
551
|
/** Contributed Roles added by the user to customize the role's permissions */
|
551
552
|
export declare type IContributionRoles = {
|
@@ -1785,6 +1786,14 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1785
1786
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1786
1787
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1787
1788
|
};
|
1789
|
+
export declare type IOrganizationsDeactivatedEvent = {
|
1790
|
+
__typename?: 'OrganizationsDeactivatedEvent';
|
1791
|
+
deactivatedOrganizationsIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1792
|
+
};
|
1793
|
+
export declare type IOrganizationsDeletedEvent = {
|
1794
|
+
__typename?: 'OrganizationsDeletedEvent';
|
1795
|
+
deletedOrganizationIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1796
|
+
};
|
1788
1797
|
export declare type IOrganizationService = {
|
1789
1798
|
__typename?: 'OrganizationService';
|
1790
1799
|
getOrganization?: Maybe<IOrganization>;
|
@@ -1835,6 +1844,8 @@ export declare const enum IOrganizationServiceAction {
|
|
1835
1844
|
onOrganizationCreated = "onOrganizationCreated",
|
1836
1845
|
onOrganizationUpdated = "onOrganizationUpdated",
|
1837
1846
|
onOrganizationDeleted = "onOrganizationDeleted",
|
1847
|
+
onOrganizationsDeleted = "onOrganizationsDeleted",
|
1848
|
+
onOrganizationsDeactivated = "onOrganizationsDeactivated",
|
1838
1849
|
onUserJoinedOrganization = "onUserJoinedOrganization",
|
1839
1850
|
onUserInvitationSend = "onUserInvitationSend",
|
1840
1851
|
onUserInvitationResend = "onUserInvitationResend",
|
@@ -8665,6 +8676,8 @@ export declare type IResolversTypes = {
|
|
8665
8676
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
8666
8677
|
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
8667
8678
|
OrganizationServiceAction: IOrganizationServiceAction;
|
8679
|
+
OrganizationsDeactivatedEvent: ResolverTypeWrapper<IOrganizationsDeactivatedEvent>;
|
8680
|
+
OrganizationsDeletedEvent: ResolverTypeWrapper<IOrganizationsDeletedEvent>;
|
8668
8681
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
8669
8682
|
PermissionAction: IPermissionAction;
|
8670
8683
|
PermissionResource: IPermissionResource;
|
@@ -8945,6 +8958,8 @@ export declare type IResolversParentTypes = {
|
|
8945
8958
|
OrganizationIdentifier: IOrganizationIdentifier;
|
8946
8959
|
OrganizationMember: IOrganizationMember;
|
8947
8960
|
OrganizationService: IOrganizationService;
|
8961
|
+
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
8962
|
+
OrganizationsDeletedEvent: IOrganizationsDeletedEvent;
|
8948
8963
|
PageInfo: IPageInfo;
|
8949
8964
|
PreferenceItem: IPreferenceItem;
|
8950
8965
|
ProjectCreatedEvent: IProjectCreatedEvent;
|
@@ -9826,6 +9841,14 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
9826
9841
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
9827
9842
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9828
9843
|
};
|
9844
|
+
export declare type IOrganizationsDeactivatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeactivatedEvent'] = IResolversParentTypes['OrganizationsDeactivatedEvent']> = {
|
9845
|
+
deactivatedOrganizationsIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9846
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9847
|
+
};
|
9848
|
+
export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeletedEvent'] = IResolversParentTypes['OrganizationsDeletedEvent']> = {
|
9849
|
+
deletedOrganizationIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9850
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9851
|
+
};
|
9829
9852
|
export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
|
9830
9853
|
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServicegetOrganizationArgs, never>>;
|
9831
9854
|
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServicecreateDefaultOrganizationArgs, never>>;
|
@@ -10543,6 +10566,8 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10543
10566
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
10544
10567
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
10545
10568
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
10569
|
+
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
10570
|
+
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
10546
10571
|
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
10547
10572
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
10548
10573
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
@@ -186,6 +186,7 @@ var IContextServiceAction;
|
|
186
186
|
IContextServiceAction["onResourceCreated"] = "onResourceCreated";
|
187
187
|
IContextServiceAction["onResourceUpdated"] = "onResourceUpdated";
|
188
188
|
IContextServiceAction["onResourceDeleted"] = "onResourceDeleted";
|
189
|
+
IContextServiceAction["onResourceDeactivated"] = "onResourceDeactivated";
|
189
190
|
})(IContextServiceAction = exports.IContextServiceAction || (exports.IContextServiceAction = {}));
|
190
191
|
;
|
191
192
|
var IEActivityScopes;
|
@@ -314,6 +315,8 @@ var IOrganizationServiceAction;
|
|
314
315
|
IOrganizationServiceAction["onOrganizationCreated"] = "onOrganizationCreated";
|
315
316
|
IOrganizationServiceAction["onOrganizationUpdated"] = "onOrganizationUpdated";
|
316
317
|
IOrganizationServiceAction["onOrganizationDeleted"] = "onOrganizationDeleted";
|
318
|
+
IOrganizationServiceAction["onOrganizationsDeleted"] = "onOrganizationsDeleted";
|
319
|
+
IOrganizationServiceAction["onOrganizationsDeactivated"] = "onOrganizationsDeactivated";
|
317
320
|
IOrganizationServiceAction["onUserJoinedOrganization"] = "onUserJoinedOrganization";
|
318
321
|
IOrganizationServiceAction["onUserInvitationSend"] = "onUserInvitationSend";
|
319
322
|
IOrganizationServiceAction["onUserInvitationResend"] = "onUserInvitationResend";
|