@constructive-io/sdk 0.13.4 → 0.14.1
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/admin/orm/index.d.ts +6 -4
- package/admin/orm/index.js +6 -4
- package/admin/orm/input-types.d.ts +503 -295
- package/admin/orm/models/index.d.ts +3 -2
- package/admin/orm/models/index.js +7 -5
- package/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/{auth/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +26 -26
- package/auth/orm/index.d.ts +45 -15
- package/auth/orm/index.js +2 -2
- package/auth/orm/input-types.d.ts +186 -251
- package/auth/orm/input-types.js +0 -1
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/auth/orm/models/userConnectedAccount.js +76 -0
- package/auth/orm/mutation/index.d.ts +56 -16
- package/auth/orm/mutation/index.js +78 -18
- package/auth/orm/query/index.d.ts +12 -4
- package/auth/orm/query/index.js +19 -7
- package/esm/admin/orm/index.d.ts +6 -4
- package/esm/admin/orm/index.js +6 -4
- package/esm/admin/orm/input-types.d.ts +503 -295
- package/esm/admin/orm/models/index.d.ts +3 -2
- package/esm/admin/orm/models/index.js +3 -2
- package/esm/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/{public/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +24 -24
- package/esm/auth/orm/index.d.ts +45 -15
- package/esm/auth/orm/index.js +2 -2
- package/esm/auth/orm/input-types.d.ts +186 -251
- package/esm/auth/orm/input-types.js +0 -1
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/auth/orm/models/userConnectedAccount.js +72 -0
- package/esm/auth/orm/mutation/index.d.ts +56 -16
- package/esm/auth/orm/mutation/index.js +78 -18
- package/esm/auth/orm/query/index.d.ts +12 -4
- package/esm/auth/orm/query/index.js +19 -7
- package/esm/public/orm/index.d.ts +69 -19
- package/esm/public/orm/index.js +16 -6
- package/esm/public/orm/input-types.d.ts +2047 -640
- package/esm/public/orm/input-types.js +15 -6
- package/esm/public/orm/models/devicesModule.d.ts +56 -0
- package/esm/public/orm/models/devicesModule.js +96 -0
- package/esm/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/esm/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +24 -24
- package/esm/public/orm/models/index.d.ts +8 -3
- package/esm/public/orm/models/index.js +8 -3
- package/esm/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/{auth/orm/models/connectedAccount.js → public/orm/models/orgMemberProfile.js} +24 -24
- package/esm/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/esm/public/orm/models/sessionSecretsModule.js +96 -0
- package/esm/public/orm/models/spatialRelation.d.ts +56 -0
- package/esm/public/orm/models/spatialRelation.js +96 -0
- package/esm/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/public/orm/models/userConnectedAccount.js +72 -0
- package/esm/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/esm/public/orm/models/webauthnCredentialsModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +72 -20
- package/esm/public/orm/mutation/index.js +96 -24
- package/esm/public/orm/query/index.d.ts +24 -2
- package/esm/public/orm/query/index.js +36 -4
- package/package.json +5 -5
- package/public/orm/index.d.ts +69 -19
- package/public/orm/index.js +16 -6
- package/public/orm/input-types.d.ts +2047 -640
- package/public/orm/input-types.js +15 -6
- package/public/orm/models/devicesModule.d.ts +56 -0
- package/public/orm/models/devicesModule.js +100 -0
- package/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +26 -26
- package/public/orm/models/index.d.ts +8 -3
- package/public/orm/models/index.js +19 -9
- package/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/public/orm/models/{connectedAccount.js → orgMemberProfile.js} +26 -26
- package/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/public/orm/models/sessionSecretsModule.js +100 -0
- package/public/orm/models/spatialRelation.d.ts +56 -0
- package/public/orm/models/spatialRelation.js +100 -0
- package/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/public/orm/models/userConnectedAccount.js +76 -0
- package/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/public/orm/models/webauthnCredentialsModule.js +100 -0
- package/public/orm/mutation/index.d.ts +72 -20
- package/public/orm/mutation/index.js +96 -24
- package/public/orm/query/index.d.ts +24 -2
- package/public/orm/query/index.js +36 -4
- package/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/orm/models/tableTemplateModule.d.ts +0 -56
- package/public/orm/models/connectedAccount.d.ts +0 -56
- package/public/orm/models/tableTemplateModule.d.ts +0 -56
package/auth/orm/input-types.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
export { EmailModel } from './email';
|
|
7
7
|
export { PhoneNumberModel } from './phoneNumber';
|
|
8
8
|
export { CryptoAddressModel } from './cryptoAddress';
|
|
9
|
-
export { ConnectedAccountModel } from './connectedAccount';
|
|
10
9
|
export { AuditLogModel } from './auditLog';
|
|
11
10
|
export { RoleTypeModel } from './roleType';
|
|
11
|
+
export { UserConnectedAccountModel } from './userConnectedAccount';
|
|
12
12
|
export { UserModel } from './user';
|
package/auth/orm/models/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserModel = exports.
|
|
3
|
+
exports.UserModel = exports.UserConnectedAccountModel = exports.RoleTypeModel = exports.AuditLogModel = exports.CryptoAddressModel = exports.PhoneNumberModel = exports.EmailModel = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Models barrel export
|
|
6
6
|
* @generated by @constructive-io/graphql-codegen
|
|
@@ -12,11 +12,11 @@ var phoneNumber_1 = require("./phoneNumber");
|
|
|
12
12
|
Object.defineProperty(exports, "PhoneNumberModel", { enumerable: true, get: function () { return phoneNumber_1.PhoneNumberModel; } });
|
|
13
13
|
var cryptoAddress_1 = require("./cryptoAddress");
|
|
14
14
|
Object.defineProperty(exports, "CryptoAddressModel", { enumerable: true, get: function () { return cryptoAddress_1.CryptoAddressModel; } });
|
|
15
|
-
var connectedAccount_1 = require("./connectedAccount");
|
|
16
|
-
Object.defineProperty(exports, "ConnectedAccountModel", { enumerable: true, get: function () { return connectedAccount_1.ConnectedAccountModel; } });
|
|
17
15
|
var auditLog_1 = require("./auditLog");
|
|
18
16
|
Object.defineProperty(exports, "AuditLogModel", { enumerable: true, get: function () { return auditLog_1.AuditLogModel; } });
|
|
19
17
|
var roleType_1 = require("./roleType");
|
|
20
18
|
Object.defineProperty(exports, "RoleTypeModel", { enumerable: true, get: function () { return roleType_1.RoleTypeModel; } });
|
|
19
|
+
var userConnectedAccount_1 = require("./userConnectedAccount");
|
|
20
|
+
Object.defineProperty(exports, "UserConnectedAccountModel", { enumerable: true, get: function () { return userConnectedAccount_1.UserConnectedAccountModel; } });
|
|
21
21
|
var user_1 = require("./user");
|
|
22
22
|
Object.defineProperty(exports, "UserModel", { enumerable: true, get: function () { return user_1.UserModel; } });
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UserConnectedAccount model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { UserConnectedAccountWithRelations, UserConnectedAccountSelect, UserConnectedAccountFilter, UserConnectedAccountOrderBy, CreateUserConnectedAccountInput } from '../input-types';
|
|
10
|
+
export declare class UserConnectedAccountModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends UserConnectedAccountSelect>(args: FindManyArgs<S, UserConnectedAccountFilter, UserConnectedAccountOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, UserConnectedAccountSelect>): QueryBuilder<{
|
|
16
|
+
userConnectedAccounts: ConnectionResult<InferSelectResult<UserConnectedAccountWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends UserConnectedAccountSelect>(args: FindFirstArgs<S, UserConnectedAccountFilter> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, UserConnectedAccountSelect>): QueryBuilder<{
|
|
21
|
+
userConnectedAccounts: {
|
|
22
|
+
nodes: InferSelectResult<UserConnectedAccountWithRelations, S>[];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
findOne<S extends UserConnectedAccountSelect>(args: {
|
|
26
|
+
id: string;
|
|
27
|
+
select: S;
|
|
28
|
+
} & StrictSelect<S, UserConnectedAccountSelect>): QueryBuilder<{
|
|
29
|
+
userConnectedAccount: InferSelectResult<UserConnectedAccountWithRelations, S> | null;
|
|
30
|
+
}>;
|
|
31
|
+
create<S extends UserConnectedAccountSelect>(args: CreateArgs<S, CreateUserConnectedAccountInput['userConnectedAccount']> & {
|
|
32
|
+
select: S;
|
|
33
|
+
} & StrictSelect<S, UserConnectedAccountSelect>): QueryBuilder<{
|
|
34
|
+
createUserConnectedAccount: {
|
|
35
|
+
userConnectedAccount: InferSelectResult<UserConnectedAccountWithRelations, S>;
|
|
36
|
+
};
|
|
37
|
+
}>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserConnectedAccountModel = void 0;
|
|
4
|
+
const query_builder_1 = require("../query-builder");
|
|
5
|
+
const input_types_1 = require("../input-types");
|
|
6
|
+
class UserConnectedAccountModel {
|
|
7
|
+
client;
|
|
8
|
+
constructor(client) {
|
|
9
|
+
this.client = client;
|
|
10
|
+
}
|
|
11
|
+
findMany(args) {
|
|
12
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('UserConnectedAccount', 'userConnectedAccounts', args.select, {
|
|
13
|
+
where: args?.where,
|
|
14
|
+
orderBy: args?.orderBy,
|
|
15
|
+
first: args?.first,
|
|
16
|
+
last: args?.last,
|
|
17
|
+
after: args?.after,
|
|
18
|
+
before: args?.before,
|
|
19
|
+
offset: args?.offset,
|
|
20
|
+
}, 'UserConnectedAccountFilter', 'UserConnectedAccountOrderBy', input_types_1.connectionFieldsMap);
|
|
21
|
+
return new query_builder_1.QueryBuilder({
|
|
22
|
+
client: this.client,
|
|
23
|
+
operation: 'query',
|
|
24
|
+
operationName: 'UserConnectedAccount',
|
|
25
|
+
fieldName: 'userConnectedAccounts',
|
|
26
|
+
document,
|
|
27
|
+
variables,
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
findFirst(args) {
|
|
31
|
+
const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('UserConnectedAccount', 'userConnectedAccounts', args.select, {
|
|
32
|
+
where: args?.where,
|
|
33
|
+
}, 'UserConnectedAccountFilter', input_types_1.connectionFieldsMap);
|
|
34
|
+
return new query_builder_1.QueryBuilder({
|
|
35
|
+
client: this.client,
|
|
36
|
+
operation: 'query',
|
|
37
|
+
operationName: 'UserConnectedAccount',
|
|
38
|
+
fieldName: 'userConnectedAccounts',
|
|
39
|
+
document,
|
|
40
|
+
variables,
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
findOne(args) {
|
|
44
|
+
const { document, variables } = (0, query_builder_1.buildFindManyDocument)('UserConnectedAccount', 'userConnectedAccounts', args.select, {
|
|
45
|
+
where: {
|
|
46
|
+
id: {
|
|
47
|
+
equalTo: args.id,
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
first: 1,
|
|
51
|
+
}, 'UserConnectedAccountFilter', 'UserConnectedAccountOrderBy', input_types_1.connectionFieldsMap);
|
|
52
|
+
return new query_builder_1.QueryBuilder({
|
|
53
|
+
client: this.client,
|
|
54
|
+
operation: 'query',
|
|
55
|
+
operationName: 'UserConnectedAccount',
|
|
56
|
+
fieldName: 'userConnectedAccount',
|
|
57
|
+
document,
|
|
58
|
+
variables,
|
|
59
|
+
transform: (data) => ({
|
|
60
|
+
userConnectedAccount: data.userConnectedAccounts?.nodes?.[0] ?? null,
|
|
61
|
+
}),
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
create(args) {
|
|
65
|
+
const { document, variables } = (0, query_builder_1.buildCreateDocument)('UserConnectedAccount', 'createUserConnectedAccount', 'userConnectedAccount', args.select, args.data, 'CreateUserConnectedAccountInput', input_types_1.connectionFieldsMap);
|
|
66
|
+
return new query_builder_1.QueryBuilder({
|
|
67
|
+
client: this.client,
|
|
68
|
+
operation: 'mutation',
|
|
69
|
+
operationName: 'UserConnectedAccount',
|
|
70
|
+
fieldName: 'createUserConnectedAccount',
|
|
71
|
+
document,
|
|
72
|
+
variables,
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
exports.UserConnectedAccountModel = UserConnectedAccountModel;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ResetPasswordInput,
|
|
9
|
+
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ProvisionNewUserInput, ResetPasswordInput, CreateApiKeyInput, SignInCrossOriginInput, SignUpInput, RequestCrossOriginTokenInput, SignInInput, ExtendTokenExpiresInput, ForgotPasswordInput, SendVerificationEmailInput, RequestUploadUrlInput, ConfirmUploadInput, ProvisionBucketInput, SignOutPayload, SendAccountDeletionEmailPayload, CheckPasswordPayload, DisconnectAccountPayload, RevokeApiKeyPayload, RevokeSessionPayload, VerifyPasswordPayload, VerifyTotpPayload, ConfirmDeleteAccountPayload, SetPasswordPayload, VerifyEmailPayload, ProvisionNewUserPayload, ResetPasswordPayload, CreateApiKeyPayload, SignInCrossOriginPayload, SignUpPayload, RequestCrossOriginTokenPayload, SignInPayload, ExtendTokenExpiresPayload, ForgotPasswordPayload, SendVerificationEmailPayload, RequestUploadUrlPayload, ConfirmUploadPayload, ProvisionBucketPayload, SignOutPayloadSelect, SendAccountDeletionEmailPayloadSelect, CheckPasswordPayloadSelect, DisconnectAccountPayloadSelect, RevokeApiKeyPayloadSelect, RevokeSessionPayloadSelect, VerifyPasswordPayloadSelect, VerifyTotpPayloadSelect, ConfirmDeleteAccountPayloadSelect, SetPasswordPayloadSelect, VerifyEmailPayloadSelect, ProvisionNewUserPayloadSelect, ResetPasswordPayloadSelect, CreateApiKeyPayloadSelect, SignInCrossOriginPayloadSelect, SignUpPayloadSelect, RequestCrossOriginTokenPayloadSelect, SignInPayloadSelect, ExtendTokenExpiresPayloadSelect, ForgotPasswordPayloadSelect, SendVerificationEmailPayloadSelect, RequestUploadUrlPayloadSelect, ConfirmUploadPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface SignOutVariables {
|
|
11
11
|
input: SignOutInput;
|
|
12
12
|
}
|
|
@@ -16,6 +16,15 @@ export interface SendAccountDeletionEmailVariables {
|
|
|
16
16
|
export interface CheckPasswordVariables {
|
|
17
17
|
input: CheckPasswordInput;
|
|
18
18
|
}
|
|
19
|
+
export interface DisconnectAccountVariables {
|
|
20
|
+
input: DisconnectAccountInput;
|
|
21
|
+
}
|
|
22
|
+
export interface RevokeApiKeyVariables {
|
|
23
|
+
input: RevokeApiKeyInput;
|
|
24
|
+
}
|
|
25
|
+
export interface RevokeSessionVariables {
|
|
26
|
+
input: RevokeSessionInput;
|
|
27
|
+
}
|
|
19
28
|
export interface VerifyPasswordVariables {
|
|
20
29
|
input: VerifyPasswordInput;
|
|
21
30
|
}
|
|
@@ -31,20 +40,26 @@ export interface SetPasswordVariables {
|
|
|
31
40
|
export interface VerifyEmailVariables {
|
|
32
41
|
input: VerifyEmailInput;
|
|
33
42
|
}
|
|
43
|
+
export interface ProvisionNewUserVariables {
|
|
44
|
+
input: ProvisionNewUserInput;
|
|
45
|
+
}
|
|
34
46
|
export interface ResetPasswordVariables {
|
|
35
47
|
input: ResetPasswordInput;
|
|
36
48
|
}
|
|
37
|
-
export interface
|
|
38
|
-
input:
|
|
49
|
+
export interface CreateApiKeyVariables {
|
|
50
|
+
input: CreateApiKeyInput;
|
|
39
51
|
}
|
|
40
|
-
export interface
|
|
41
|
-
input:
|
|
52
|
+
export interface SignInCrossOriginVariables {
|
|
53
|
+
input: SignInCrossOriginInput;
|
|
42
54
|
}
|
|
43
55
|
export interface SignUpVariables {
|
|
44
56
|
input: SignUpInput;
|
|
45
57
|
}
|
|
46
|
-
export interface
|
|
47
|
-
input:
|
|
58
|
+
export interface RequestCrossOriginTokenVariables {
|
|
59
|
+
input: RequestCrossOriginTokenInput;
|
|
60
|
+
}
|
|
61
|
+
export interface SignInVariables {
|
|
62
|
+
input: SignInInput;
|
|
48
63
|
}
|
|
49
64
|
export interface ExtendTokenExpiresVariables {
|
|
50
65
|
input: ExtendTokenExpiresInput;
|
|
@@ -100,6 +115,21 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
100
115
|
} & StrictSelect<S, CheckPasswordPayloadSelect>) => QueryBuilder<{
|
|
101
116
|
checkPassword: InferSelectResult<CheckPasswordPayload, S> | null;
|
|
102
117
|
}>;
|
|
118
|
+
disconnectAccount: <S extends DisconnectAccountPayloadSelect>(args: DisconnectAccountVariables, options: {
|
|
119
|
+
select: S;
|
|
120
|
+
} & StrictSelect<S, DisconnectAccountPayloadSelect>) => QueryBuilder<{
|
|
121
|
+
disconnectAccount: InferSelectResult<DisconnectAccountPayload, S> | null;
|
|
122
|
+
}>;
|
|
123
|
+
revokeApiKey: <S extends RevokeApiKeyPayloadSelect>(args: RevokeApiKeyVariables, options: {
|
|
124
|
+
select: S;
|
|
125
|
+
} & StrictSelect<S, RevokeApiKeyPayloadSelect>) => QueryBuilder<{
|
|
126
|
+
revokeApiKey: InferSelectResult<RevokeApiKeyPayload, S> | null;
|
|
127
|
+
}>;
|
|
128
|
+
revokeSession: <S extends RevokeSessionPayloadSelect>(args: RevokeSessionVariables, options: {
|
|
129
|
+
select: S;
|
|
130
|
+
} & StrictSelect<S, RevokeSessionPayloadSelect>) => QueryBuilder<{
|
|
131
|
+
revokeSession: InferSelectResult<RevokeSessionPayload, S> | null;
|
|
132
|
+
}>;
|
|
103
133
|
verifyPassword: <S extends VerifyPasswordPayloadSelect>(args: VerifyPasswordVariables, options: {
|
|
104
134
|
select: S;
|
|
105
135
|
} & StrictSelect<S, VerifyPasswordPayloadSelect>) => QueryBuilder<{
|
|
@@ -125,30 +155,40 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
125
155
|
} & StrictSelect<S, VerifyEmailPayloadSelect>) => QueryBuilder<{
|
|
126
156
|
verifyEmail: InferSelectResult<VerifyEmailPayload, S> | null;
|
|
127
157
|
}>;
|
|
158
|
+
provisionNewUser: <S extends ProvisionNewUserPayloadSelect>(args: ProvisionNewUserVariables, options: {
|
|
159
|
+
select: S;
|
|
160
|
+
} & StrictSelect<S, ProvisionNewUserPayloadSelect>) => QueryBuilder<{
|
|
161
|
+
provisionNewUser: InferSelectResult<ProvisionNewUserPayload, S> | null;
|
|
162
|
+
}>;
|
|
128
163
|
resetPassword: <S extends ResetPasswordPayloadSelect>(args: ResetPasswordVariables, options: {
|
|
129
164
|
select: S;
|
|
130
165
|
} & StrictSelect<S, ResetPasswordPayloadSelect>) => QueryBuilder<{
|
|
131
166
|
resetPassword: InferSelectResult<ResetPasswordPayload, S> | null;
|
|
132
167
|
}>;
|
|
133
|
-
|
|
168
|
+
createApiKey: <S extends CreateApiKeyPayloadSelect>(args: CreateApiKeyVariables, options: {
|
|
134
169
|
select: S;
|
|
135
|
-
} & StrictSelect<S,
|
|
136
|
-
|
|
170
|
+
} & StrictSelect<S, CreateApiKeyPayloadSelect>) => QueryBuilder<{
|
|
171
|
+
createApiKey: InferSelectResult<CreateApiKeyPayload, S> | null;
|
|
137
172
|
}>;
|
|
138
|
-
|
|
173
|
+
signInCrossOrigin: <S extends SignInCrossOriginPayloadSelect>(args: SignInCrossOriginVariables, options: {
|
|
139
174
|
select: S;
|
|
140
|
-
} & StrictSelect<S,
|
|
141
|
-
|
|
175
|
+
} & StrictSelect<S, SignInCrossOriginPayloadSelect>) => QueryBuilder<{
|
|
176
|
+
signInCrossOrigin: InferSelectResult<SignInCrossOriginPayload, S> | null;
|
|
142
177
|
}>;
|
|
143
178
|
signUp: <S extends SignUpPayloadSelect>(args: SignUpVariables, options: {
|
|
144
179
|
select: S;
|
|
145
180
|
} & StrictSelect<S, SignUpPayloadSelect>) => QueryBuilder<{
|
|
146
181
|
signUp: InferSelectResult<SignUpPayload, S> | null;
|
|
147
182
|
}>;
|
|
148
|
-
|
|
183
|
+
requestCrossOriginToken: <S extends RequestCrossOriginTokenPayloadSelect>(args: RequestCrossOriginTokenVariables, options: {
|
|
184
|
+
select: S;
|
|
185
|
+
} & StrictSelect<S, RequestCrossOriginTokenPayloadSelect>) => QueryBuilder<{
|
|
186
|
+
requestCrossOriginToken: InferSelectResult<RequestCrossOriginTokenPayload, S> | null;
|
|
187
|
+
}>;
|
|
188
|
+
signIn: <S extends SignInPayloadSelect>(args: SignInVariables, options: {
|
|
149
189
|
select: S;
|
|
150
|
-
} & StrictSelect<S,
|
|
151
|
-
|
|
190
|
+
} & StrictSelect<S, SignInPayloadSelect>) => QueryBuilder<{
|
|
191
|
+
signIn: InferSelectResult<SignInPayload, S> | null;
|
|
152
192
|
}>;
|
|
153
193
|
extendTokenExpires: <S extends ExtendTokenExpiresPayloadSelect>(args: ExtendTokenExpiresVariables, options: {
|
|
154
194
|
select: S;
|
|
@@ -41,6 +41,42 @@ function createMutationOperations(client) {
|
|
|
41
41
|
},
|
|
42
42
|
], input_types_1.connectionFieldsMap, 'CheckPasswordPayload'),
|
|
43
43
|
}),
|
|
44
|
+
disconnectAccount: (args, options) => new query_builder_1.QueryBuilder({
|
|
45
|
+
client,
|
|
46
|
+
operation: 'mutation',
|
|
47
|
+
operationName: 'DisconnectAccount',
|
|
48
|
+
fieldName: 'disconnectAccount',
|
|
49
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'DisconnectAccount', 'disconnectAccount', options.select, args, [
|
|
50
|
+
{
|
|
51
|
+
name: 'input',
|
|
52
|
+
type: 'DisconnectAccountInput!',
|
|
53
|
+
},
|
|
54
|
+
], input_types_1.connectionFieldsMap, 'DisconnectAccountPayload'),
|
|
55
|
+
}),
|
|
56
|
+
revokeApiKey: (args, options) => new query_builder_1.QueryBuilder({
|
|
57
|
+
client,
|
|
58
|
+
operation: 'mutation',
|
|
59
|
+
operationName: 'RevokeApiKey',
|
|
60
|
+
fieldName: 'revokeApiKey',
|
|
61
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'RevokeApiKey', 'revokeApiKey', options.select, args, [
|
|
62
|
+
{
|
|
63
|
+
name: 'input',
|
|
64
|
+
type: 'RevokeApiKeyInput!',
|
|
65
|
+
},
|
|
66
|
+
], input_types_1.connectionFieldsMap, 'RevokeApiKeyPayload'),
|
|
67
|
+
}),
|
|
68
|
+
revokeSession: (args, options) => new query_builder_1.QueryBuilder({
|
|
69
|
+
client,
|
|
70
|
+
operation: 'mutation',
|
|
71
|
+
operationName: 'RevokeSession',
|
|
72
|
+
fieldName: 'revokeSession',
|
|
73
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'RevokeSession', 'revokeSession', options.select, args, [
|
|
74
|
+
{
|
|
75
|
+
name: 'input',
|
|
76
|
+
type: 'RevokeSessionInput!',
|
|
77
|
+
},
|
|
78
|
+
], input_types_1.connectionFieldsMap, 'RevokeSessionPayload'),
|
|
79
|
+
}),
|
|
44
80
|
verifyPassword: (args, options) => new query_builder_1.QueryBuilder({
|
|
45
81
|
client,
|
|
46
82
|
operation: 'mutation',
|
|
@@ -101,6 +137,18 @@ function createMutationOperations(client) {
|
|
|
101
137
|
},
|
|
102
138
|
], input_types_1.connectionFieldsMap, 'VerifyEmailPayload'),
|
|
103
139
|
}),
|
|
140
|
+
provisionNewUser: (args, options) => new query_builder_1.QueryBuilder({
|
|
141
|
+
client,
|
|
142
|
+
operation: 'mutation',
|
|
143
|
+
operationName: 'ProvisionNewUser',
|
|
144
|
+
fieldName: 'provisionNewUser',
|
|
145
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'ProvisionNewUser', 'provisionNewUser', options.select, args, [
|
|
146
|
+
{
|
|
147
|
+
name: 'input',
|
|
148
|
+
type: 'ProvisionNewUserInput!',
|
|
149
|
+
},
|
|
150
|
+
], input_types_1.connectionFieldsMap, 'ProvisionNewUserPayload'),
|
|
151
|
+
}),
|
|
104
152
|
resetPassword: (args, options) => new query_builder_1.QueryBuilder({
|
|
105
153
|
client,
|
|
106
154
|
operation: 'mutation',
|
|
@@ -113,29 +161,29 @@ function createMutationOperations(client) {
|
|
|
113
161
|
},
|
|
114
162
|
], input_types_1.connectionFieldsMap, 'ResetPasswordPayload'),
|
|
115
163
|
}),
|
|
116
|
-
|
|
164
|
+
createApiKey: (args, options) => new query_builder_1.QueryBuilder({
|
|
117
165
|
client,
|
|
118
166
|
operation: 'mutation',
|
|
119
|
-
operationName: '
|
|
120
|
-
fieldName: '
|
|
121
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', '
|
|
167
|
+
operationName: 'CreateApiKey',
|
|
168
|
+
fieldName: 'createApiKey',
|
|
169
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'CreateApiKey', 'createApiKey', options.select, args, [
|
|
122
170
|
{
|
|
123
171
|
name: 'input',
|
|
124
|
-
type: '
|
|
172
|
+
type: 'CreateApiKeyInput!',
|
|
125
173
|
},
|
|
126
|
-
], input_types_1.connectionFieldsMap, '
|
|
174
|
+
], input_types_1.connectionFieldsMap, 'CreateApiKeyPayload'),
|
|
127
175
|
}),
|
|
128
|
-
|
|
176
|
+
signInCrossOrigin: (args, options) => new query_builder_1.QueryBuilder({
|
|
129
177
|
client,
|
|
130
178
|
operation: 'mutation',
|
|
131
|
-
operationName: '
|
|
132
|
-
fieldName: '
|
|
133
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', '
|
|
179
|
+
operationName: 'SignInCrossOrigin',
|
|
180
|
+
fieldName: 'signInCrossOrigin',
|
|
181
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'SignInCrossOrigin', 'signInCrossOrigin', options.select, args, [
|
|
134
182
|
{
|
|
135
183
|
name: 'input',
|
|
136
|
-
type: '
|
|
184
|
+
type: 'SignInCrossOriginInput!',
|
|
137
185
|
},
|
|
138
|
-
], input_types_1.connectionFieldsMap, '
|
|
186
|
+
], input_types_1.connectionFieldsMap, 'SignInCrossOriginPayload'),
|
|
139
187
|
}),
|
|
140
188
|
signUp: (args, options) => new query_builder_1.QueryBuilder({
|
|
141
189
|
client,
|
|
@@ -149,17 +197,29 @@ function createMutationOperations(client) {
|
|
|
149
197
|
},
|
|
150
198
|
], input_types_1.connectionFieldsMap, 'SignUpPayload'),
|
|
151
199
|
}),
|
|
152
|
-
|
|
200
|
+
requestCrossOriginToken: (args, options) => new query_builder_1.QueryBuilder({
|
|
153
201
|
client,
|
|
154
202
|
operation: 'mutation',
|
|
155
|
-
operationName: '
|
|
156
|
-
fieldName: '
|
|
157
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', '
|
|
203
|
+
operationName: 'RequestCrossOriginToken',
|
|
204
|
+
fieldName: 'requestCrossOriginToken',
|
|
205
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'RequestCrossOriginToken', 'requestCrossOriginToken', options.select, args, [
|
|
158
206
|
{
|
|
159
207
|
name: 'input',
|
|
160
|
-
type: '
|
|
208
|
+
type: 'RequestCrossOriginTokenInput!',
|
|
161
209
|
},
|
|
162
|
-
], input_types_1.connectionFieldsMap, '
|
|
210
|
+
], input_types_1.connectionFieldsMap, 'RequestCrossOriginTokenPayload'),
|
|
211
|
+
}),
|
|
212
|
+
signIn: (args, options) => new query_builder_1.QueryBuilder({
|
|
213
|
+
client,
|
|
214
|
+
operation: 'mutation',
|
|
215
|
+
operationName: 'SignIn',
|
|
216
|
+
fieldName: 'signIn',
|
|
217
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'SignIn', 'signIn', options.select, args, [
|
|
218
|
+
{
|
|
219
|
+
name: 'input',
|
|
220
|
+
type: 'SignInInput!',
|
|
221
|
+
},
|
|
222
|
+
], input_types_1.connectionFieldsMap, 'SignInPayload'),
|
|
163
223
|
}),
|
|
164
224
|
extendTokenExpires: (args, options) => new query_builder_1.QueryBuilder({
|
|
165
225
|
client,
|
|
@@ -7,22 +7,30 @@ import { OrmClient } from '../client';
|
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
9
|
import type { User, UserSelect } from '../input-types';
|
|
10
|
+
export interface RequireStepUpVariables {
|
|
11
|
+
stepUpType?: string;
|
|
12
|
+
}
|
|
10
13
|
export declare function createQueryOperations(client: OrmClient): {
|
|
11
|
-
|
|
14
|
+
currentUserAgent: (options?: {
|
|
12
15
|
select?: Record<string, unknown>;
|
|
13
16
|
}) => QueryBuilder<{
|
|
14
|
-
|
|
17
|
+
currentUserAgent: string | null;
|
|
15
18
|
}>;
|
|
16
|
-
|
|
19
|
+
currentIpAddress: (options?: {
|
|
17
20
|
select?: Record<string, unknown>;
|
|
18
21
|
}) => QueryBuilder<{
|
|
19
|
-
|
|
22
|
+
currentIpAddress: string | null;
|
|
20
23
|
}>;
|
|
21
24
|
currentUserId: (options?: {
|
|
22
25
|
select?: Record<string, unknown>;
|
|
23
26
|
}) => QueryBuilder<{
|
|
24
27
|
currentUserId: string | null;
|
|
25
28
|
}>;
|
|
29
|
+
requireStepUp: (args: RequireStepUpVariables, options?: {
|
|
30
|
+
select?: Record<string, unknown>;
|
|
31
|
+
}) => QueryBuilder<{
|
|
32
|
+
requireStepUp: boolean | null;
|
|
33
|
+
}>;
|
|
26
34
|
currentUser: <S extends UserSelect>(options: {
|
|
27
35
|
select: S;
|
|
28
36
|
} & StrictSelect<S, UserSelect>) => QueryBuilder<{
|
package/auth/orm/query/index.js
CHANGED
|
@@ -5,13 +5,6 @@ const query_builder_1 = require("../query-builder");
|
|
|
5
5
|
const input_types_1 = require("../input-types");
|
|
6
6
|
function createQueryOperations(client) {
|
|
7
7
|
return {
|
|
8
|
-
currentIpAddress: (options) => new query_builder_1.QueryBuilder({
|
|
9
|
-
client,
|
|
10
|
-
operation: 'query',
|
|
11
|
-
operationName: 'CurrentIpAddress',
|
|
12
|
-
fieldName: 'currentIpAddress',
|
|
13
|
-
...(0, query_builder_1.buildCustomDocument)('query', 'CurrentIpAddress', 'currentIpAddress', options?.select, undefined, [], input_types_1.connectionFieldsMap, undefined),
|
|
14
|
-
}),
|
|
15
8
|
currentUserAgent: (options) => new query_builder_1.QueryBuilder({
|
|
16
9
|
client,
|
|
17
10
|
operation: 'query',
|
|
@@ -19,6 +12,13 @@ function createQueryOperations(client) {
|
|
|
19
12
|
fieldName: 'currentUserAgent',
|
|
20
13
|
...(0, query_builder_1.buildCustomDocument)('query', 'CurrentUserAgent', 'currentUserAgent', options?.select, undefined, [], input_types_1.connectionFieldsMap, undefined),
|
|
21
14
|
}),
|
|
15
|
+
currentIpAddress: (options) => new query_builder_1.QueryBuilder({
|
|
16
|
+
client,
|
|
17
|
+
operation: 'query',
|
|
18
|
+
operationName: 'CurrentIpAddress',
|
|
19
|
+
fieldName: 'currentIpAddress',
|
|
20
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'CurrentIpAddress', 'currentIpAddress', options?.select, undefined, [], input_types_1.connectionFieldsMap, undefined),
|
|
21
|
+
}),
|
|
22
22
|
currentUserId: (options) => new query_builder_1.QueryBuilder({
|
|
23
23
|
client,
|
|
24
24
|
operation: 'query',
|
|
@@ -26,6 +26,18 @@ function createQueryOperations(client) {
|
|
|
26
26
|
fieldName: 'currentUserId',
|
|
27
27
|
...(0, query_builder_1.buildCustomDocument)('query', 'CurrentUserId', 'currentUserId', options?.select, undefined, [], input_types_1.connectionFieldsMap, undefined),
|
|
28
28
|
}),
|
|
29
|
+
requireStepUp: (args, options) => new query_builder_1.QueryBuilder({
|
|
30
|
+
client,
|
|
31
|
+
operation: 'query',
|
|
32
|
+
operationName: 'RequireStepUp',
|
|
33
|
+
fieldName: 'requireStepUp',
|
|
34
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'RequireStepUp', 'requireStepUp', options?.select, args, [
|
|
35
|
+
{
|
|
36
|
+
name: 'stepUpType',
|
|
37
|
+
type: 'String',
|
|
38
|
+
},
|
|
39
|
+
], input_types_1.connectionFieldsMap, undefined),
|
|
40
|
+
}),
|
|
29
41
|
currentUser: (options) => new query_builder_1.QueryBuilder({
|
|
30
42
|
client,
|
|
31
43
|
operation: 'query',
|
package/esm/admin/orm/index.d.ts
CHANGED
|
@@ -13,24 +13,25 @@ import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
|
13
13
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
14
14
|
import { OrgAdminGrantModel } from './models/orgAdminGrant';
|
|
15
15
|
import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
|
|
16
|
-
import { MembershipTypeModel } from './models/membershipType';
|
|
17
16
|
import { AppLimitModel } from './models/appLimit';
|
|
18
17
|
import { AppAchievementModel } from './models/appAchievement';
|
|
19
18
|
import { AppStepModel } from './models/appStep';
|
|
20
19
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
21
20
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
22
21
|
import { OrgLimitModel } from './models/orgLimit';
|
|
22
|
+
import { MembershipTypeModel } from './models/membershipType';
|
|
23
23
|
import { AppGrantModel } from './models/appGrant';
|
|
24
24
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
25
25
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
26
26
|
import { OrgGrantModel } from './models/orgGrant';
|
|
27
27
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
28
28
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
29
|
+
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
29
30
|
import { AppLevelModel } from './models/appLevel';
|
|
30
31
|
import { AppInviteModel } from './models/appInvite';
|
|
32
|
+
import { OrgInviteModel } from './models/orgInvite';
|
|
31
33
|
import { AppMembershipModel } from './models/appMembership';
|
|
32
34
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
33
|
-
import { OrgInviteModel } from './models/orgInvite';
|
|
34
35
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
35
36
|
export { GraphQLRequestError } from './client';
|
|
36
37
|
export { QueryBuilder } from './query-builder';
|
|
@@ -76,24 +77,25 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
76
77
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
77
78
|
orgAdminGrant: OrgAdminGrantModel;
|
|
78
79
|
orgOwnerGrant: OrgOwnerGrantModel;
|
|
79
|
-
membershipType: MembershipTypeModel;
|
|
80
80
|
appLimit: AppLimitModel;
|
|
81
81
|
appAchievement: AppAchievementModel;
|
|
82
82
|
appStep: AppStepModel;
|
|
83
83
|
appClaimedInvite: AppClaimedInviteModel;
|
|
84
84
|
orgChartEdgeGrant: OrgChartEdgeGrantModel;
|
|
85
85
|
orgLimit: OrgLimitModel;
|
|
86
|
+
membershipType: MembershipTypeModel;
|
|
86
87
|
appGrant: AppGrantModel;
|
|
87
88
|
appMembershipDefault: AppMembershipDefaultModel;
|
|
88
89
|
orgClaimedInvite: OrgClaimedInviteModel;
|
|
89
90
|
orgGrant: OrgGrantModel;
|
|
90
91
|
orgChartEdge: OrgChartEdgeModel;
|
|
91
92
|
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
93
|
+
orgMemberProfile: OrgMemberProfileModel;
|
|
92
94
|
appLevel: AppLevelModel;
|
|
93
95
|
appInvite: AppInviteModel;
|
|
96
|
+
orgInvite: OrgInviteModel;
|
|
94
97
|
appMembership: AppMembershipModel;
|
|
95
98
|
orgMembership: OrgMembershipModel;
|
|
96
|
-
orgInvite: OrgInviteModel;
|
|
97
99
|
query: {
|
|
98
100
|
appPermissionsGetPaddedMask: (args: import("./query").AppPermissionsGetPaddedMaskVariables, options?: {
|
|
99
101
|
select?: Record<string, unknown>;
|
package/esm/admin/orm/index.js
CHANGED
|
@@ -18,24 +18,25 @@ import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
|
18
18
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
19
19
|
import { OrgAdminGrantModel } from './models/orgAdminGrant';
|
|
20
20
|
import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
|
|
21
|
-
import { MembershipTypeModel } from './models/membershipType';
|
|
22
21
|
import { AppLimitModel } from './models/appLimit';
|
|
23
22
|
import { AppAchievementModel } from './models/appAchievement';
|
|
24
23
|
import { AppStepModel } from './models/appStep';
|
|
25
24
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
26
25
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
27
26
|
import { OrgLimitModel } from './models/orgLimit';
|
|
27
|
+
import { MembershipTypeModel } from './models/membershipType';
|
|
28
28
|
import { AppGrantModel } from './models/appGrant';
|
|
29
29
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
30
30
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
31
31
|
import { OrgGrantModel } from './models/orgGrant';
|
|
32
32
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
33
33
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
34
|
+
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
34
35
|
import { AppLevelModel } from './models/appLevel';
|
|
35
36
|
import { AppInviteModel } from './models/appInvite';
|
|
37
|
+
import { OrgInviteModel } from './models/orgInvite';
|
|
36
38
|
import { AppMembershipModel } from './models/appMembership';
|
|
37
39
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
38
|
-
import { OrgInviteModel } from './models/orgInvite';
|
|
39
40
|
import { createQueryOperations } from './query';
|
|
40
41
|
import { createMutationOperations } from './mutation';
|
|
41
42
|
export { GraphQLRequestError } from './client';
|
|
@@ -84,24 +85,25 @@ export function createClient(config) {
|
|
|
84
85
|
orgLimitDefault: new OrgLimitDefaultModel(client),
|
|
85
86
|
orgAdminGrant: new OrgAdminGrantModel(client),
|
|
86
87
|
orgOwnerGrant: new OrgOwnerGrantModel(client),
|
|
87
|
-
membershipType: new MembershipTypeModel(client),
|
|
88
88
|
appLimit: new AppLimitModel(client),
|
|
89
89
|
appAchievement: new AppAchievementModel(client),
|
|
90
90
|
appStep: new AppStepModel(client),
|
|
91
91
|
appClaimedInvite: new AppClaimedInviteModel(client),
|
|
92
92
|
orgChartEdgeGrant: new OrgChartEdgeGrantModel(client),
|
|
93
93
|
orgLimit: new OrgLimitModel(client),
|
|
94
|
+
membershipType: new MembershipTypeModel(client),
|
|
94
95
|
appGrant: new AppGrantModel(client),
|
|
95
96
|
appMembershipDefault: new AppMembershipDefaultModel(client),
|
|
96
97
|
orgClaimedInvite: new OrgClaimedInviteModel(client),
|
|
97
98
|
orgGrant: new OrgGrantModel(client),
|
|
98
99
|
orgChartEdge: new OrgChartEdgeModel(client),
|
|
99
100
|
orgMembershipDefault: new OrgMembershipDefaultModel(client),
|
|
101
|
+
orgMemberProfile: new OrgMemberProfileModel(client),
|
|
100
102
|
appLevel: new AppLevelModel(client),
|
|
101
103
|
appInvite: new AppInviteModel(client),
|
|
104
|
+
orgInvite: new OrgInviteModel(client),
|
|
102
105
|
appMembership: new AppMembershipModel(client),
|
|
103
106
|
orgMembership: new OrgMembershipModel(client),
|
|
104
|
-
orgInvite: new OrgInviteModel(client),
|
|
105
107
|
query: createQueryOperations(client),
|
|
106
108
|
mutation: createMutationOperations(client),
|
|
107
109
|
};
|