@constructive-io/react 0.6.3 → 0.6.5
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/hooks/queries/index.d.ts +1 -1
- package/admin/hooks/queries/index.js +1 -1
- package/admin/hooks/query-keys.d.ts +2 -2
- package/admin/hooks/query-keys.js +1 -1
- package/admin/orm/index.d.ts +5 -5
- package/admin/orm/query/index.d.ts +9 -9
- package/admin/orm/query/index.js +16 -16
- package/auth/orm/input-types.d.ts +0 -1
- package/auth/schema-types.d.ts +1 -3
- package/esm/admin/hooks/queries/index.d.ts +1 -1
- package/esm/admin/hooks/queries/index.js +1 -1
- package/esm/admin/hooks/query-keys.d.ts +2 -2
- package/esm/admin/hooks/query-keys.js +1 -1
- package/esm/admin/orm/index.d.ts +5 -5
- package/esm/admin/orm/query/index.d.ts +9 -9
- package/esm/admin/orm/query/index.js +16 -16
- package/esm/auth/orm/input-types.d.ts +0 -1
- package/esm/auth/schema-types.d.ts +1 -3
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +18 -18
- package/esm/public/hooks/invalidation.js +49 -49
- package/esm/public/hooks/mutation-keys.d.ts +48 -48
- package/esm/public/hooks/mutation-keys.js +39 -39
- package/esm/public/hooks/mutations/index.d.ts +15 -15
- package/esm/public/hooks/mutations/index.js +15 -15
- package/esm/public/hooks/queries/index.d.ts +8 -8
- package/esm/public/hooks/queries/index.js +8 -8
- package/esm/public/hooks/query-keys.d.ts +46 -46
- package/esm/public/hooks/query-keys.js +26 -26
- package/esm/public/orm/index.d.ts +44 -44
- package/esm/public/orm/index.js +6 -6
- package/esm/public/orm/input-types.d.ts +570 -571
- package/esm/public/orm/models/index.d.ts +3 -3
- package/esm/public/orm/models/index.js +3 -3
- package/esm/public/orm/mutation/index.d.ts +46 -46
- package/esm/public/orm/mutation/index.js +66 -66
- package/esm/public/orm/query/index.d.ts +28 -28
- package/esm/public/orm/query/index.js +48 -48
- package/esm/public/schema-types.d.ts +752 -754
- package/esm/public/types.d.ts +36 -36
- package/package.json +6 -6
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +18 -18
- package/public/hooks/invalidation.js +48 -48
- package/public/hooks/mutation-keys.d.ts +48 -48
- package/public/hooks/mutation-keys.js +42 -42
- package/public/hooks/mutations/index.d.ts +15 -15
- package/public/hooks/mutations/index.js +15 -15
- package/public/hooks/queries/index.d.ts +8 -8
- package/public/hooks/queries/index.js +8 -8
- package/public/hooks/query-keys.d.ts +46 -46
- package/public/hooks/query-keys.js +29 -29
- package/public/orm/index.d.ts +44 -44
- package/public/orm/index.js +6 -6
- package/public/orm/input-types.d.ts +570 -571
- package/public/orm/models/index.d.ts +3 -3
- package/public/orm/models/index.js +9 -9
- package/public/orm/mutation/index.d.ts +46 -46
- package/public/orm/mutation/index.js +66 -66
- package/public/orm/query/index.d.ts +28 -28
- package/public/orm/query/index.js +48 -48
- package/public/schema-types.d.ts +752 -754
- package/public/types.d.ts +36 -36
package/public/orm/index.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import type { OrmClientConfig } from './client';
|
|
|
2
2
|
import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
3
3
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
4
4
|
import { GetAllRecordModel } from './models/getAllRecord';
|
|
5
|
+
import { ObjectModel } from './models/object';
|
|
5
6
|
import { AppPermissionModel } from './models/appPermission';
|
|
6
7
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
7
|
-
import { ObjectModel } from './models/object';
|
|
8
8
|
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
9
9
|
import { DatabaseModel } from './models/database';
|
|
10
10
|
import { SchemaModel } from './models/schema';
|
|
@@ -90,17 +90,17 @@ import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
|
90
90
|
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
91
91
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
92
92
|
import { MembershipTypeModel } from './models/membershipType';
|
|
93
|
+
import { CommitModel } from './models/commit';
|
|
93
94
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
94
95
|
import { RlsModuleModel } from './models/rlsModule';
|
|
95
|
-
import { CommitModel } from './models/commit';
|
|
96
96
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
97
97
|
import { AuditLogModel } from './models/auditLog';
|
|
98
98
|
import { AppLevelModel } from './models/appLevel';
|
|
99
99
|
import { SqlMigrationModel } from './models/sqlMigration';
|
|
100
100
|
import { EmailModel } from './models/email';
|
|
101
|
+
import { UserModel } from './models/user';
|
|
101
102
|
import { AstMigrationModel } from './models/astMigration';
|
|
102
103
|
import { AppMembershipModel } from './models/appMembership';
|
|
103
|
-
import { UserModel } from './models/user';
|
|
104
104
|
import { HierarchyModuleModel } from './models/hierarchyModule';
|
|
105
105
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
106
106
|
export { GraphQLRequestError } from './client';
|
|
@@ -136,9 +136,9 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
136
136
|
orgGetManagersRecord: OrgGetManagersRecordModel;
|
|
137
137
|
orgGetSubordinatesRecord: OrgGetSubordinatesRecordModel;
|
|
138
138
|
getAllRecord: GetAllRecordModel;
|
|
139
|
+
object: ObjectModel;
|
|
139
140
|
appPermission: AppPermissionModel;
|
|
140
141
|
orgPermission: OrgPermissionModel;
|
|
141
|
-
object: ObjectModel;
|
|
142
142
|
appLevelRequirement: AppLevelRequirementModel;
|
|
143
143
|
database: DatabaseModel;
|
|
144
144
|
schema: SchemaModel;
|
|
@@ -224,17 +224,17 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
224
224
|
connectedAccount: ConnectedAccountModel;
|
|
225
225
|
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
226
226
|
membershipType: MembershipTypeModel;
|
|
227
|
+
commit: CommitModel;
|
|
227
228
|
appMembershipDefault: AppMembershipDefaultModel;
|
|
228
229
|
rlsModule: RlsModuleModel;
|
|
229
|
-
commit: CommitModel;
|
|
230
230
|
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
231
231
|
auditLog: AuditLogModel;
|
|
232
232
|
appLevel: AppLevelModel;
|
|
233
233
|
sqlMigration: SqlMigrationModel;
|
|
234
234
|
email: EmailModel;
|
|
235
|
+
user: UserModel;
|
|
235
236
|
astMigration: AstMigrationModel;
|
|
236
237
|
appMembership: AppMembershipModel;
|
|
237
|
-
user: UserModel;
|
|
238
238
|
hierarchyModule: HierarchyModuleModel;
|
|
239
239
|
query: {
|
|
240
240
|
currentUserId: (options?: {
|
|
@@ -297,16 +297,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
297
297
|
}) => import("./query-builder").QueryBuilder<{
|
|
298
298
|
orgPermissionsGetMaskByNames: string | null;
|
|
299
299
|
}>;
|
|
300
|
-
appPermissionsGetByMask: (args: import("./query").AppPermissionsGetByMaskVariables, options?: {
|
|
301
|
-
select?: Record<string, unknown>;
|
|
302
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
303
|
-
appPermissionsGetByMask: import("./input-types").AppPermissionConnection | null;
|
|
304
|
-
}>;
|
|
305
|
-
orgPermissionsGetByMask: (args: import("./query").OrgPermissionsGetByMaskVariables, options?: {
|
|
306
|
-
select?: Record<string, unknown>;
|
|
307
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
308
|
-
orgPermissionsGetByMask: import("./input-types").OrgPermissionConnection | null;
|
|
309
|
-
}>;
|
|
310
300
|
getAllObjectsFromRoot: (args: import("./query").GetAllObjectsFromRootVariables, options?: {
|
|
311
301
|
select?: Record<string, unknown>;
|
|
312
302
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -322,6 +312,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
322
312
|
} & import("./select-types").StrictSelect<S, import("./input-types").ObjectSelect>) => import("./query-builder").QueryBuilder<{
|
|
323
313
|
getObjectAtPath: import("./select-types").InferSelectResult<import("./input-types").Object, S> | null;
|
|
324
314
|
}>;
|
|
315
|
+
appPermissionsGetByMask: (args: import("./query").AppPermissionsGetByMaskVariables, options?: {
|
|
316
|
+
select?: Record<string, unknown>;
|
|
317
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
318
|
+
appPermissionsGetByMask: import("./input-types").AppPermissionConnection | null;
|
|
319
|
+
}>;
|
|
320
|
+
orgPermissionsGetByMask: (args: import("./query").OrgPermissionsGetByMaskVariables, options?: {
|
|
321
|
+
select?: Record<string, unknown>;
|
|
322
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
323
|
+
orgPermissionsGetByMask: import("./input-types").OrgPermissionConnection | null;
|
|
324
|
+
}>;
|
|
325
325
|
stepsRequired: (args: import("./query").StepsRequiredVariables, options?: {
|
|
326
326
|
select?: Record<string, unknown>;
|
|
327
327
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -384,6 +384,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
384
384
|
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
385
385
|
verifyEmail: import("./select-types").InferSelectResult<import("./input-types").VerifyEmailPayload, S> | null;
|
|
386
386
|
}>;
|
|
387
|
+
removeNodeAtPath: <S extends import("./input-types").RemoveNodeAtPathPayloadSelect>(args: import("./mutation").RemoveNodeAtPathVariables, options: {
|
|
388
|
+
select: S;
|
|
389
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").RemoveNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
390
|
+
removeNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").RemoveNodeAtPathPayload, S> | null;
|
|
391
|
+
}>;
|
|
387
392
|
resetPassword: <S extends import("./input-types").ResetPasswordPayloadSelect>(args: import("./mutation").ResetPasswordVariables, options: {
|
|
388
393
|
select: S;
|
|
389
394
|
} & import("./select-types").StrictSelect<S, import("./input-types").ResetPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -394,10 +399,10 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
394
399
|
} & import("./select-types").StrictSelect<S, import("./input-types").BootstrapUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
395
400
|
bootstrapUser: import("./select-types").InferSelectResult<import("./input-types").BootstrapUserPayload, S> | null;
|
|
396
401
|
}>;
|
|
397
|
-
|
|
402
|
+
setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
|
|
398
403
|
select: S;
|
|
399
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
400
|
-
|
|
404
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
405
|
+
setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
|
|
401
406
|
}>;
|
|
402
407
|
setDataAtPath: <S extends import("./input-types").SetDataAtPathPayloadSelect>(args: import("./mutation").SetDataAtPathVariables, options: {
|
|
403
408
|
select: S;
|
|
@@ -414,6 +419,26 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
414
419
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionDatabaseWithUserPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
415
420
|
provisionDatabaseWithUser: import("./select-types").InferSelectResult<import("./input-types").ProvisionDatabaseWithUserPayload, S> | null;
|
|
416
421
|
}>;
|
|
422
|
+
insertNodeAtPath: <S extends import("./input-types").InsertNodeAtPathPayloadSelect>(args: import("./mutation").InsertNodeAtPathVariables, options: {
|
|
423
|
+
select: S;
|
|
424
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
425
|
+
insertNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").InsertNodeAtPathPayload, S> | null;
|
|
426
|
+
}>;
|
|
427
|
+
updateNodeAtPath: <S extends import("./input-types").UpdateNodeAtPathPayloadSelect>(args: import("./mutation").UpdateNodeAtPathVariables, options: {
|
|
428
|
+
select: S;
|
|
429
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").UpdateNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
430
|
+
updateNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").UpdateNodeAtPathPayload, S> | null;
|
|
431
|
+
}>;
|
|
432
|
+
setAndCommit: <S extends import("./input-types").SetAndCommitPayloadSelect>(args: import("./mutation").SetAndCommitVariables, options: {
|
|
433
|
+
select: S;
|
|
434
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SetAndCommitPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
435
|
+
setAndCommit: import("./select-types").InferSelectResult<import("./input-types").SetAndCommitPayload, S> | null;
|
|
436
|
+
}>;
|
|
437
|
+
applyRls: <S extends import("./input-types").ApplyRlsPayloadSelect>(args: import("./mutation").ApplyRlsVariables, options: {
|
|
438
|
+
select: S;
|
|
439
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ApplyRlsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
440
|
+
applyRls: import("./select-types").InferSelectResult<import("./input-types").ApplyRlsPayload, S> | null;
|
|
441
|
+
}>;
|
|
417
442
|
signInOneTimeToken: <S extends import("./input-types").SignInOneTimeTokenPayloadSelect>(args: import("./mutation").SignInOneTimeTokenVariables, options: {
|
|
418
443
|
select: S;
|
|
419
444
|
} & import("./select-types").StrictSelect<S, import("./input-types").SignInOneTimeTokenPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -439,36 +464,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
439
464
|
} & import("./select-types").StrictSelect<S, import("./input-types").SignUpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
440
465
|
signUp: import("./select-types").InferSelectResult<import("./input-types").SignUpPayload, S> | null;
|
|
441
466
|
}>;
|
|
442
|
-
setFieldOrder: <S extends import("./input-types").SetFieldOrderPayloadSelect>(args: import("./mutation").SetFieldOrderVariables, options: {
|
|
443
|
-
select: S;
|
|
444
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SetFieldOrderPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
445
|
-
setFieldOrder: import("./select-types").InferSelectResult<import("./input-types").SetFieldOrderPayload, S> | null;
|
|
446
|
-
}>;
|
|
447
467
|
oneTimeToken: <S extends import("./input-types").OneTimeTokenPayloadSelect>(args: import("./mutation").OneTimeTokenVariables, options: {
|
|
448
468
|
select: S;
|
|
449
469
|
} & import("./select-types").StrictSelect<S, import("./input-types").OneTimeTokenPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
450
470
|
oneTimeToken: import("./select-types").InferSelectResult<import("./input-types").OneTimeTokenPayload, S> | null;
|
|
451
471
|
}>;
|
|
452
|
-
insertNodeAtPath: <S extends import("./input-types").InsertNodeAtPathPayloadSelect>(args: import("./mutation").InsertNodeAtPathVariables, options: {
|
|
453
|
-
select: S;
|
|
454
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
455
|
-
insertNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").InsertNodeAtPathPayload, S> | null;
|
|
456
|
-
}>;
|
|
457
|
-
updateNodeAtPath: <S extends import("./input-types").UpdateNodeAtPathPayloadSelect>(args: import("./mutation").UpdateNodeAtPathVariables, options: {
|
|
458
|
-
select: S;
|
|
459
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").UpdateNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
460
|
-
updateNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").UpdateNodeAtPathPayload, S> | null;
|
|
461
|
-
}>;
|
|
462
|
-
setAndCommit: <S extends import("./input-types").SetAndCommitPayloadSelect>(args: import("./mutation").SetAndCommitVariables, options: {
|
|
463
|
-
select: S;
|
|
464
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SetAndCommitPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
465
|
-
setAndCommit: import("./select-types").InferSelectResult<import("./input-types").SetAndCommitPayload, S> | null;
|
|
466
|
-
}>;
|
|
467
|
-
applyRls: <S extends import("./input-types").ApplyRlsPayloadSelect>(args: import("./mutation").ApplyRlsVariables, options: {
|
|
468
|
-
select: S;
|
|
469
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ApplyRlsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
470
|
-
applyRls: import("./select-types").InferSelectResult<import("./input-types").ApplyRlsPayload, S> | null;
|
|
471
|
-
}>;
|
|
472
472
|
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
473
473
|
select: S;
|
|
474
474
|
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/public/orm/index.js
CHANGED
|
@@ -25,9 +25,9 @@ const client_1 = require("./client");
|
|
|
25
25
|
const orgGetManagersRecord_1 = require("./models/orgGetManagersRecord");
|
|
26
26
|
const orgGetSubordinatesRecord_1 = require("./models/orgGetSubordinatesRecord");
|
|
27
27
|
const getAllRecord_1 = require("./models/getAllRecord");
|
|
28
|
+
const object_1 = require("./models/object");
|
|
28
29
|
const appPermission_1 = require("./models/appPermission");
|
|
29
30
|
const orgPermission_1 = require("./models/orgPermission");
|
|
30
|
-
const object_1 = require("./models/object");
|
|
31
31
|
const appLevelRequirement_1 = require("./models/appLevelRequirement");
|
|
32
32
|
const database_1 = require("./models/database");
|
|
33
33
|
const schema_1 = require("./models/schema");
|
|
@@ -113,17 +113,17 @@ const orgLimitDefault_1 = require("./models/orgLimitDefault");
|
|
|
113
113
|
const connectedAccount_1 = require("./models/connectedAccount");
|
|
114
114
|
const nodeTypeRegistry_1 = require("./models/nodeTypeRegistry");
|
|
115
115
|
const membershipType_1 = require("./models/membershipType");
|
|
116
|
+
const commit_1 = require("./models/commit");
|
|
116
117
|
const appMembershipDefault_1 = require("./models/appMembershipDefault");
|
|
117
118
|
const rlsModule_1 = require("./models/rlsModule");
|
|
118
|
-
const commit_1 = require("./models/commit");
|
|
119
119
|
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
120
120
|
const auditLog_1 = require("./models/auditLog");
|
|
121
121
|
const appLevel_1 = require("./models/appLevel");
|
|
122
122
|
const sqlMigration_1 = require("./models/sqlMigration");
|
|
123
123
|
const email_1 = require("./models/email");
|
|
124
|
+
const user_1 = require("./models/user");
|
|
124
125
|
const astMigration_1 = require("./models/astMigration");
|
|
125
126
|
const appMembership_1 = require("./models/appMembership");
|
|
126
|
-
const user_1 = require("./models/user");
|
|
127
127
|
const hierarchyModule_1 = require("./models/hierarchyModule");
|
|
128
128
|
const query_1 = require("./query");
|
|
129
129
|
const mutation_1 = require("./mutation");
|
|
@@ -166,9 +166,9 @@ function createClient(config) {
|
|
|
166
166
|
orgGetManagersRecord: new orgGetManagersRecord_1.OrgGetManagersRecordModel(client),
|
|
167
167
|
orgGetSubordinatesRecord: new orgGetSubordinatesRecord_1.OrgGetSubordinatesRecordModel(client),
|
|
168
168
|
getAllRecord: new getAllRecord_1.GetAllRecordModel(client),
|
|
169
|
+
object: new object_1.ObjectModel(client),
|
|
169
170
|
appPermission: new appPermission_1.AppPermissionModel(client),
|
|
170
171
|
orgPermission: new orgPermission_1.OrgPermissionModel(client),
|
|
171
|
-
object: new object_1.ObjectModel(client),
|
|
172
172
|
appLevelRequirement: new appLevelRequirement_1.AppLevelRequirementModel(client),
|
|
173
173
|
database: new database_1.DatabaseModel(client),
|
|
174
174
|
schema: new schema_1.SchemaModel(client),
|
|
@@ -254,17 +254,17 @@ function createClient(config) {
|
|
|
254
254
|
connectedAccount: new connectedAccount_1.ConnectedAccountModel(client),
|
|
255
255
|
nodeTypeRegistry: new nodeTypeRegistry_1.NodeTypeRegistryModel(client),
|
|
256
256
|
membershipType: new membershipType_1.MembershipTypeModel(client),
|
|
257
|
+
commit: new commit_1.CommitModel(client),
|
|
257
258
|
appMembershipDefault: new appMembershipDefault_1.AppMembershipDefaultModel(client),
|
|
258
259
|
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
259
|
-
commit: new commit_1.CommitModel(client),
|
|
260
260
|
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
261
261
|
auditLog: new auditLog_1.AuditLogModel(client),
|
|
262
262
|
appLevel: new appLevel_1.AppLevelModel(client),
|
|
263
263
|
sqlMigration: new sqlMigration_1.SqlMigrationModel(client),
|
|
264
264
|
email: new email_1.EmailModel(client),
|
|
265
|
+
user: new user_1.UserModel(client),
|
|
265
266
|
astMigration: new astMigration_1.AstMigrationModel(client),
|
|
266
267
|
appMembership: new appMembership_1.AppMembershipModel(client),
|
|
267
|
-
user: new user_1.UserModel(client),
|
|
268
268
|
hierarchyModule: new hierarchyModule_1.HierarchyModuleModel(client),
|
|
269
269
|
query: (0, query_1.createQueryOperations)(client),
|
|
270
270
|
mutation: (0, mutation_1.createMutationOperations)(client),
|