@things-factory/auth-base 6.2.114 → 6.2.120
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.
- package/dist-server/service/app-binding/index.d.ts +1 -1
- package/dist-server/service/appliance/index.d.ts +1 -1
- package/dist-server/service/application/index.d.ts +1 -1
- package/dist-server/service/granted-role/index.d.ts +1 -1
- package/dist-server/service/index.d.ts +1 -1
- package/dist-server/service/invitation/index.d.ts +1 -1
- package/dist-server/service/partner/index.d.ts +1 -1
- package/dist-server/service/privilege/index.d.ts +1 -1
- package/dist-server/service/role/index.d.ts +1 -1
- package/dist-server/service/user/index.d.ts +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
@@ -1,3 +1,3 @@
|
|
1
1
|
import { AppBindingQuery } from './app-binding-query';
|
2
2
|
import { AppBindingMutation } from './app-binding-mutation';
|
3
|
-
export declare const resolvers: (typeof
|
3
|
+
export declare const resolvers: (typeof AppBindingMutation | typeof AppBindingQuery)[];
|
@@ -2,4 +2,4 @@ import { Appliance } from './appliance';
|
|
2
2
|
import { ApplianceQuery } from './appliance-query';
|
3
3
|
import { ApplianceMutation } from './appliance-mutation';
|
4
4
|
export declare const entities: (typeof Appliance)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof ApplianceMutation | typeof ApplianceQuery)[];
|
@@ -2,4 +2,4 @@ import { Application } from './application';
|
|
2
2
|
import { ApplicationQuery } from './application-query';
|
3
3
|
import { ApplicationMutation } from './application-mutation';
|
4
4
|
export declare const entities: (typeof Application)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof ApplicationMutation | typeof ApplicationQuery)[];
|
@@ -2,4 +2,4 @@ import { GrantedRole } from './granted-role';
|
|
2
2
|
import { GrantedRoleQuery } from './granted-role-query';
|
3
3
|
import { GrantedRoleMutation } from './granted-role-mutation';
|
4
4
|
export declare const entities: (typeof GrantedRole)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof GrantedRoleMutation | typeof GrantedRoleQuery)[];
|
@@ -21,7 +21,7 @@ export * from './partner/partner-types';
|
|
21
21
|
export * from './privilege/privilege-types';
|
22
22
|
export * from './role/role-types';
|
23
23
|
export * from './user/user-types';
|
24
|
-
export declare const entities: (typeof import("./
|
24
|
+
export declare const entities: (typeof import("./privilege/privilege").Privilege | typeof import("./user/user").User | typeof import("./role/role").Role | typeof import("./partner/partner").Partner | typeof import("./login-history/login-history").LoginHistory | typeof import("./invitation/invitation").Invitation | typeof import("./granted-role/granted-role").GrantedRole | typeof import("./application/application").Application | typeof import("./appliance/appliance").Appliance | typeof import("./auth-provider/auth-provider").AuthProvider | typeof import("./verification-token/verification-token").VerificationToken | typeof import("./verification-token/verification-token").VerificationTokenType | typeof import("./password-history/password-history").PasswordHistory | typeof import("./users-auth-providers/users-auth-providers").UsersAuthProviders)[];
|
25
25
|
export declare const schema: {
|
26
26
|
typeDefs: {
|
27
27
|
privilegeDirectiveTypeDefs: import("graphql").DocumentNode;
|
@@ -2,4 +2,4 @@ import { Invitation } from './invitation';
|
|
2
2
|
import { InvitationQuery } from './invitation-query';
|
3
3
|
import { InvitationMutation } from './invitation-mutation';
|
4
4
|
export declare const entities: (typeof Invitation)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof InvitationMutation | typeof InvitationQuery)[];
|
@@ -2,4 +2,4 @@ import { Partner } from './partner';
|
|
2
2
|
import { PartnerQuery } from './partner-query';
|
3
3
|
import { PartnerMutation } from './partner-mutation';
|
4
4
|
export declare const entities: (typeof Partner)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof PartnerMutation | typeof PartnerQuery)[];
|
@@ -2,4 +2,4 @@ import { Privilege } from './privilege';
|
|
2
2
|
import { PrivilegeQuery } from './privilege-query';
|
3
3
|
import { PrivilegeMutation } from './privilege-mutation';
|
4
4
|
export declare const entities: (typeof Privilege)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof PrivilegeMutation | typeof PrivilegeQuery)[];
|
@@ -2,4 +2,4 @@ import { Role } from './role';
|
|
2
2
|
import { RoleQuery } from './role-query';
|
3
3
|
import { RoleMutation } from './role-mutation';
|
4
4
|
export declare const entities: (typeof Role)[];
|
5
|
-
export declare const resolvers: (typeof
|
5
|
+
export declare const resolvers: (typeof RoleMutation | typeof RoleQuery)[];
|
@@ -3,4 +3,4 @@ import { UserQuery } from './user-query';
|
|
3
3
|
import { UserMutation } from './user-mutation';
|
4
4
|
import { DomainQuery } from './domain-query';
|
5
5
|
export declare const entities: (typeof User)[];
|
6
|
-
export declare const resolvers: (typeof
|
6
|
+
export declare const resolvers: (typeof DomainQuery | typeof UserMutation | typeof UserQuery)[];
|