@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
|
@@ -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/esm/public/orm/index.js
CHANGED
|
@@ -7,9 +7,9 @@ import { OrmClient } from './client';
|
|
|
7
7
|
import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
8
8
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
9
9
|
import { GetAllRecordModel } from './models/getAllRecord';
|
|
10
|
+
import { ObjectModel } from './models/object';
|
|
10
11
|
import { AppPermissionModel } from './models/appPermission';
|
|
11
12
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
12
|
-
import { ObjectModel } from './models/object';
|
|
13
13
|
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
14
14
|
import { DatabaseModel } from './models/database';
|
|
15
15
|
import { SchemaModel } from './models/schema';
|
|
@@ -95,17 +95,17 @@ import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
|
95
95
|
import { ConnectedAccountModel } from './models/connectedAccount';
|
|
96
96
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
97
97
|
import { MembershipTypeModel } from './models/membershipType';
|
|
98
|
+
import { CommitModel } from './models/commit';
|
|
98
99
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
99
100
|
import { RlsModuleModel } from './models/rlsModule';
|
|
100
|
-
import { CommitModel } from './models/commit';
|
|
101
101
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
102
102
|
import { AuditLogModel } from './models/auditLog';
|
|
103
103
|
import { AppLevelModel } from './models/appLevel';
|
|
104
104
|
import { SqlMigrationModel } from './models/sqlMigration';
|
|
105
105
|
import { EmailModel } from './models/email';
|
|
106
|
+
import { UserModel } from './models/user';
|
|
106
107
|
import { AstMigrationModel } from './models/astMigration';
|
|
107
108
|
import { AppMembershipModel } from './models/appMembership';
|
|
108
|
-
import { UserModel } from './models/user';
|
|
109
109
|
import { HierarchyModuleModel } from './models/hierarchyModule';
|
|
110
110
|
import { createQueryOperations } from './query';
|
|
111
111
|
import { createMutationOperations } from './mutation';
|
|
@@ -144,9 +144,9 @@ export function createClient(config) {
|
|
|
144
144
|
orgGetManagersRecord: new OrgGetManagersRecordModel(client),
|
|
145
145
|
orgGetSubordinatesRecord: new OrgGetSubordinatesRecordModel(client),
|
|
146
146
|
getAllRecord: new GetAllRecordModel(client),
|
|
147
|
+
object: new ObjectModel(client),
|
|
147
148
|
appPermission: new AppPermissionModel(client),
|
|
148
149
|
orgPermission: new OrgPermissionModel(client),
|
|
149
|
-
object: new ObjectModel(client),
|
|
150
150
|
appLevelRequirement: new AppLevelRequirementModel(client),
|
|
151
151
|
database: new DatabaseModel(client),
|
|
152
152
|
schema: new SchemaModel(client),
|
|
@@ -232,17 +232,17 @@ export function createClient(config) {
|
|
|
232
232
|
connectedAccount: new ConnectedAccountModel(client),
|
|
233
233
|
nodeTypeRegistry: new NodeTypeRegistryModel(client),
|
|
234
234
|
membershipType: new MembershipTypeModel(client),
|
|
235
|
+
commit: new CommitModel(client),
|
|
235
236
|
appMembershipDefault: new AppMembershipDefaultModel(client),
|
|
236
237
|
rlsModule: new RlsModuleModel(client),
|
|
237
|
-
commit: new CommitModel(client),
|
|
238
238
|
orgMembershipDefault: new OrgMembershipDefaultModel(client),
|
|
239
239
|
auditLog: new AuditLogModel(client),
|
|
240
240
|
appLevel: new AppLevelModel(client),
|
|
241
241
|
sqlMigration: new SqlMigrationModel(client),
|
|
242
242
|
email: new EmailModel(client),
|
|
243
|
+
user: new UserModel(client),
|
|
243
244
|
astMigration: new AstMigrationModel(client),
|
|
244
245
|
appMembership: new AppMembershipModel(client),
|
|
245
|
-
user: new UserModel(client),
|
|
246
246
|
hierarchyModule: new HierarchyModuleModel(client),
|
|
247
247
|
query: createQueryOperations(client),
|
|
248
248
|
mutation: createMutationOperations(client),
|