@constructive-io/sdk 0.10.0 → 0.10.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/README.md +0 -8
- package/admin/orm/input-types.d.ts +19 -95
- package/auth/orm/index.d.ts +6 -6
- package/auth/orm/index.js +6 -6
- package/auth/orm/input-types.d.ts +276 -311
- package/auth/orm/input-types.js +9 -1
- package/auth/orm/models/index.d.ts +3 -3
- package/auth/orm/models/index.js +7 -7
- package/esm/admin/orm/input-types.d.ts +19 -95
- package/esm/auth/orm/index.d.ts +6 -6
- package/esm/auth/orm/index.js +6 -6
- package/esm/auth/orm/input-types.d.ts +276 -311
- package/esm/auth/orm/input-types.js +9 -1
- package/esm/auth/orm/models/index.d.ts +3 -3
- package/esm/auth/orm/models/index.js +3 -3
- package/esm/objects/orm/input-types.d.ts +3 -27
- package/esm/public/orm/index.d.ts +81 -48
- package/esm/public/orm/index.js +26 -18
- package/esm/public/orm/input-types.d.ts +2318 -2557
- package/esm/public/orm/input-types.js +26 -1
- package/esm/public/orm/models/blueprint.d.ts +56 -0
- package/esm/public/orm/models/blueprint.js +94 -0
- package/esm/public/orm/models/blueprintTemplate.d.ts +56 -0
- package/esm/public/orm/models/blueprintTemplate.js +94 -0
- package/esm/public/orm/models/databaseTransfer.d.ts +56 -0
- package/esm/public/orm/models/databaseTransfer.js +94 -0
- package/esm/public/orm/models/embeddingChunk.d.ts +56 -0
- package/esm/public/orm/models/embeddingChunk.js +94 -0
- package/esm/public/orm/models/enum.d.ts +56 -0
- package/esm/public/orm/models/{uuidModule.js → enum.js} +23 -23
- package/esm/public/orm/models/index.d.ts +13 -9
- package/esm/public/orm/models/index.js +13 -9
- package/esm/public/orm/mutation/index.d.ts +98 -50
- package/esm/public/orm/mutation/index.js +126 -66
- package/index.js +8 -8
- package/objects/orm/input-types.d.ts +3 -27
- package/package.json +2 -2
- package/public/orm/index.d.ts +81 -48
- package/public/orm/index.js +26 -18
- package/public/orm/input-types.d.ts +2318 -2557
- package/public/orm/input-types.js +26 -1
- package/public/orm/models/blueprint.d.ts +56 -0
- package/public/orm/models/blueprint.js +98 -0
- package/public/orm/models/blueprintTemplate.d.ts +56 -0
- package/public/orm/models/blueprintTemplate.js +98 -0
- package/public/orm/models/databaseTransfer.d.ts +56 -0
- package/public/orm/models/databaseTransfer.js +98 -0
- package/public/orm/models/embeddingChunk.d.ts +56 -0
- package/public/orm/models/embeddingChunk.js +98 -0
- package/public/orm/models/enum.d.ts +56 -0
- package/public/orm/models/{uuidModule.js → enum.js} +25 -25
- package/public/orm/models/index.d.ts +13 -9
- package/public/orm/models/index.js +29 -21
- package/public/orm/mutation/index.d.ts +98 -50
- package/public/orm/mutation/index.js +126 -66
- package/esm/public/orm/models/uuidModule.d.ts +0 -56
- package/public/orm/models/uuidModule.d.ts +0 -56
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
|
|
2
|
+
import { connectionFieldsMap } from '../input-types';
|
|
3
|
+
export class EmbeddingChunkModel {
|
|
4
|
+
client;
|
|
5
|
+
constructor(client) {
|
|
6
|
+
this.client = client;
|
|
7
|
+
}
|
|
8
|
+
findMany(args) {
|
|
9
|
+
const { document, variables } = buildFindManyDocument('EmbeddingChunk', 'embeddingChunks', args.select, {
|
|
10
|
+
where: args?.where,
|
|
11
|
+
orderBy: args?.orderBy,
|
|
12
|
+
first: args?.first,
|
|
13
|
+
last: args?.last,
|
|
14
|
+
after: args?.after,
|
|
15
|
+
before: args?.before,
|
|
16
|
+
offset: args?.offset,
|
|
17
|
+
}, 'EmbeddingChunkFilter', 'EmbeddingChunkOrderBy', connectionFieldsMap);
|
|
18
|
+
return new QueryBuilder({
|
|
19
|
+
client: this.client,
|
|
20
|
+
operation: 'query',
|
|
21
|
+
operationName: 'EmbeddingChunk',
|
|
22
|
+
fieldName: 'embeddingChunks',
|
|
23
|
+
document,
|
|
24
|
+
variables,
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
findFirst(args) {
|
|
28
|
+
const { document, variables } = buildFindFirstDocument('EmbeddingChunk', 'embeddingChunks', args.select, {
|
|
29
|
+
where: args?.where,
|
|
30
|
+
}, 'EmbeddingChunkFilter', connectionFieldsMap);
|
|
31
|
+
return new QueryBuilder({
|
|
32
|
+
client: this.client,
|
|
33
|
+
operation: 'query',
|
|
34
|
+
operationName: 'EmbeddingChunk',
|
|
35
|
+
fieldName: 'embeddingChunks',
|
|
36
|
+
document,
|
|
37
|
+
variables,
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
findOne(args) {
|
|
41
|
+
const { document, variables } = buildFindManyDocument('EmbeddingChunk', 'embeddingChunks', args.select, {
|
|
42
|
+
where: {
|
|
43
|
+
id: {
|
|
44
|
+
equalTo: args.id,
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
first: 1,
|
|
48
|
+
}, 'EmbeddingChunkFilter', 'EmbeddingChunkOrderBy', connectionFieldsMap);
|
|
49
|
+
return new QueryBuilder({
|
|
50
|
+
client: this.client,
|
|
51
|
+
operation: 'query',
|
|
52
|
+
operationName: 'EmbeddingChunk',
|
|
53
|
+
fieldName: 'embeddingChunk',
|
|
54
|
+
document,
|
|
55
|
+
variables,
|
|
56
|
+
transform: (data) => ({
|
|
57
|
+
embeddingChunk: data.embeddingChunks?.nodes?.[0] ?? null,
|
|
58
|
+
}),
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
create(args) {
|
|
62
|
+
const { document, variables } = buildCreateDocument('EmbeddingChunk', 'createEmbeddingChunk', 'embeddingChunk', args.select, args.data, 'CreateEmbeddingChunkInput', connectionFieldsMap);
|
|
63
|
+
return new QueryBuilder({
|
|
64
|
+
client: this.client,
|
|
65
|
+
operation: 'mutation',
|
|
66
|
+
operationName: 'EmbeddingChunk',
|
|
67
|
+
fieldName: 'createEmbeddingChunk',
|
|
68
|
+
document,
|
|
69
|
+
variables,
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
update(args) {
|
|
73
|
+
const { document, variables } = buildUpdateByPkDocument('EmbeddingChunk', 'updateEmbeddingChunk', 'embeddingChunk', args.select, args.where.id, args.data, 'UpdateEmbeddingChunkInput', 'id', 'embeddingChunkPatch', connectionFieldsMap);
|
|
74
|
+
return new QueryBuilder({
|
|
75
|
+
client: this.client,
|
|
76
|
+
operation: 'mutation',
|
|
77
|
+
operationName: 'EmbeddingChunk',
|
|
78
|
+
fieldName: 'updateEmbeddingChunk',
|
|
79
|
+
document,
|
|
80
|
+
variables,
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
delete(args) {
|
|
84
|
+
const { document, variables } = buildDeleteByPkDocument('EmbeddingChunk', 'deleteEmbeddingChunk', 'embeddingChunk', args.where.id, 'DeleteEmbeddingChunkInput', 'id', args.select, connectionFieldsMap);
|
|
85
|
+
return new QueryBuilder({
|
|
86
|
+
client: this.client,
|
|
87
|
+
operation: 'mutation',
|
|
88
|
+
operationName: 'EmbeddingChunk',
|
|
89
|
+
fieldName: 'deleteEmbeddingChunk',
|
|
90
|
+
document,
|
|
91
|
+
variables,
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enum 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, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { EnumWithRelations, EnumSelect, EnumFilter, EnumOrderBy, CreateEnumInput, EnumPatch } from '../input-types';
|
|
10
|
+
export declare class EnumModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends EnumSelect>(args: FindManyArgs<S, EnumFilter, never, EnumOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, EnumSelect>): QueryBuilder<{
|
|
16
|
+
enums: ConnectionResult<InferSelectResult<EnumWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends EnumSelect>(args: FindFirstArgs<S, EnumFilter> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, EnumSelect>): QueryBuilder<{
|
|
21
|
+
enums: {
|
|
22
|
+
nodes: InferSelectResult<EnumWithRelations, S>[];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
findOne<S extends EnumSelect>(args: {
|
|
26
|
+
id: string;
|
|
27
|
+
select: S;
|
|
28
|
+
} & StrictSelect<S, EnumSelect>): QueryBuilder<{
|
|
29
|
+
enum: InferSelectResult<EnumWithRelations, S> | null;
|
|
30
|
+
}>;
|
|
31
|
+
create<S extends EnumSelect>(args: CreateArgs<S, CreateEnumInput['enum']> & {
|
|
32
|
+
select: S;
|
|
33
|
+
} & StrictSelect<S, EnumSelect>): QueryBuilder<{
|
|
34
|
+
createEnum: {
|
|
35
|
+
enum: InferSelectResult<EnumWithRelations, S>;
|
|
36
|
+
};
|
|
37
|
+
}>;
|
|
38
|
+
update<S extends EnumSelect>(args: UpdateArgs<S, {
|
|
39
|
+
id: string;
|
|
40
|
+
}, EnumPatch> & {
|
|
41
|
+
select: S;
|
|
42
|
+
} & StrictSelect<S, EnumSelect>): QueryBuilder<{
|
|
43
|
+
updateEnum: {
|
|
44
|
+
enum: InferSelectResult<EnumWithRelations, S>;
|
|
45
|
+
};
|
|
46
|
+
}>;
|
|
47
|
+
delete<S extends EnumSelect>(args: DeleteArgs<{
|
|
48
|
+
id: string;
|
|
49
|
+
}, S> & {
|
|
50
|
+
select: S;
|
|
51
|
+
} & StrictSelect<S, EnumSelect>): QueryBuilder<{
|
|
52
|
+
deleteEnum: {
|
|
53
|
+
enum: InferSelectResult<EnumWithRelations, S>;
|
|
54
|
+
};
|
|
55
|
+
}>;
|
|
56
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
|
|
2
2
|
import { connectionFieldsMap } from '../input-types';
|
|
3
|
-
export class
|
|
3
|
+
export class EnumModel {
|
|
4
4
|
client;
|
|
5
5
|
constructor(client) {
|
|
6
6
|
this.client = client;
|
|
7
7
|
}
|
|
8
8
|
findMany(args) {
|
|
9
|
-
const { document, variables } = buildFindManyDocument('
|
|
9
|
+
const { document, variables } = buildFindManyDocument('Enum', 'enums', args.select, {
|
|
10
10
|
where: args?.where,
|
|
11
11
|
orderBy: args?.orderBy,
|
|
12
12
|
first: args?.first,
|
|
@@ -14,79 +14,79 @@ export class UuidModuleModel {
|
|
|
14
14
|
after: args?.after,
|
|
15
15
|
before: args?.before,
|
|
16
16
|
offset: args?.offset,
|
|
17
|
-
}, '
|
|
17
|
+
}, 'EnumFilter', 'EnumOrderBy', connectionFieldsMap);
|
|
18
18
|
return new QueryBuilder({
|
|
19
19
|
client: this.client,
|
|
20
20
|
operation: 'query',
|
|
21
|
-
operationName: '
|
|
22
|
-
fieldName: '
|
|
21
|
+
operationName: 'Enum',
|
|
22
|
+
fieldName: 'enums',
|
|
23
23
|
document,
|
|
24
24
|
variables,
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
27
|
findFirst(args) {
|
|
28
|
-
const { document, variables } = buildFindFirstDocument('
|
|
28
|
+
const { document, variables } = buildFindFirstDocument('Enum', 'enums', args.select, {
|
|
29
29
|
where: args?.where,
|
|
30
|
-
}, '
|
|
30
|
+
}, 'EnumFilter', connectionFieldsMap);
|
|
31
31
|
return new QueryBuilder({
|
|
32
32
|
client: this.client,
|
|
33
33
|
operation: 'query',
|
|
34
|
-
operationName: '
|
|
35
|
-
fieldName: '
|
|
34
|
+
operationName: 'Enum',
|
|
35
|
+
fieldName: 'enums',
|
|
36
36
|
document,
|
|
37
37
|
variables,
|
|
38
38
|
});
|
|
39
39
|
}
|
|
40
40
|
findOne(args) {
|
|
41
|
-
const { document, variables } = buildFindManyDocument('
|
|
41
|
+
const { document, variables } = buildFindManyDocument('Enum', 'enums', args.select, {
|
|
42
42
|
where: {
|
|
43
43
|
id: {
|
|
44
44
|
equalTo: args.id,
|
|
45
45
|
},
|
|
46
46
|
},
|
|
47
47
|
first: 1,
|
|
48
|
-
}, '
|
|
48
|
+
}, 'EnumFilter', 'EnumOrderBy', connectionFieldsMap);
|
|
49
49
|
return new QueryBuilder({
|
|
50
50
|
client: this.client,
|
|
51
51
|
operation: 'query',
|
|
52
|
-
operationName: '
|
|
53
|
-
fieldName: '
|
|
52
|
+
operationName: 'Enum',
|
|
53
|
+
fieldName: 'enum',
|
|
54
54
|
document,
|
|
55
55
|
variables,
|
|
56
56
|
transform: (data) => ({
|
|
57
|
-
|
|
57
|
+
enum: data.enums?.nodes?.[0] ?? null,
|
|
58
58
|
}),
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
create(args) {
|
|
62
|
-
const { document, variables } = buildCreateDocument('
|
|
62
|
+
const { document, variables } = buildCreateDocument('Enum', 'createEnum', 'enum', args.select, args.data, 'CreateEnumInput', connectionFieldsMap);
|
|
63
63
|
return new QueryBuilder({
|
|
64
64
|
client: this.client,
|
|
65
65
|
operation: 'mutation',
|
|
66
|
-
operationName: '
|
|
67
|
-
fieldName: '
|
|
66
|
+
operationName: 'Enum',
|
|
67
|
+
fieldName: 'createEnum',
|
|
68
68
|
document,
|
|
69
69
|
variables,
|
|
70
70
|
});
|
|
71
71
|
}
|
|
72
72
|
update(args) {
|
|
73
|
-
const { document, variables } = buildUpdateByPkDocument('
|
|
73
|
+
const { document, variables } = buildUpdateByPkDocument('Enum', 'updateEnum', 'enum', args.select, args.where.id, args.data, 'UpdateEnumInput', 'id', 'enumPatch', connectionFieldsMap);
|
|
74
74
|
return new QueryBuilder({
|
|
75
75
|
client: this.client,
|
|
76
76
|
operation: 'mutation',
|
|
77
|
-
operationName: '
|
|
78
|
-
fieldName: '
|
|
77
|
+
operationName: 'Enum',
|
|
78
|
+
fieldName: 'updateEnum',
|
|
79
79
|
document,
|
|
80
80
|
variables,
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
delete(args) {
|
|
84
|
-
const { document, variables } = buildDeleteByPkDocument('
|
|
84
|
+
const { document, variables } = buildDeleteByPkDocument('Enum', 'deleteEnum', 'enum', args.where.id, 'DeleteEnumInput', 'id', args.select, connectionFieldsMap);
|
|
85
85
|
return new QueryBuilder({
|
|
86
86
|
client: this.client,
|
|
87
87
|
operation: 'mutation',
|
|
88
|
-
operationName: '
|
|
89
|
-
fieldName: '
|
|
88
|
+
operationName: 'Enum',
|
|
89
|
+
fieldName: 'deleteEnum',
|
|
90
90
|
document,
|
|
91
91
|
variables,
|
|
92
92
|
});
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export { GetAllRecordModel } from './getAllRecord';
|
|
6
7
|
export { OrgGetManagersRecordModel } from './orgGetManagersRecord';
|
|
7
8
|
export { OrgGetSubordinatesRecordModel } from './orgGetSubordinatesRecord';
|
|
8
|
-
export { GetAllRecordModel } from './getAllRecord';
|
|
9
9
|
export { ObjectModel } from './object';
|
|
10
10
|
export { AppPermissionModel } from './appPermission';
|
|
11
11
|
export { OrgPermissionModel } from './orgPermission';
|
|
@@ -27,11 +27,13 @@ export { ViewModel } from './view';
|
|
|
27
27
|
export { ViewTableModel } from './viewTable';
|
|
28
28
|
export { ViewGrantModel } from './viewGrant';
|
|
29
29
|
export { ViewRuleModel } from './viewRule';
|
|
30
|
+
export { EmbeddingChunkModel } from './embeddingChunk';
|
|
30
31
|
export { TableTemplateModuleModel } from './tableTemplateModule';
|
|
31
32
|
export { SecureTableProvisionModel } from './secureTableProvision';
|
|
32
33
|
export { RelationProvisionModel } from './relationProvision';
|
|
33
34
|
export { SchemaGrantModel } from './schemaGrant';
|
|
34
35
|
export { DefaultPrivilegeModel } from './defaultPrivilege';
|
|
36
|
+
export { EnumModel } from './enum';
|
|
35
37
|
export { ApiSchemaModel } from './apiSchema';
|
|
36
38
|
export { ApiModuleModel } from './apiModule';
|
|
37
39
|
export { DomainModel } from './domain';
|
|
@@ -39,6 +41,7 @@ export { SiteMetadatumModel } from './siteMetadatum';
|
|
|
39
41
|
export { SiteModuleModel } from './siteModule';
|
|
40
42
|
export { SiteThemeModel } from './siteTheme';
|
|
41
43
|
export { TriggerFunctionModel } from './triggerFunction';
|
|
44
|
+
export { DatabaseTransferModel } from './databaseTransfer';
|
|
42
45
|
export { ApiModel } from './api';
|
|
43
46
|
export { SiteModel } from './site';
|
|
44
47
|
export { AppModel } from './app';
|
|
@@ -62,7 +65,8 @@ export { SecretsModuleModel } from './secretsModule';
|
|
|
62
65
|
export { SessionsModuleModel } from './sessionsModule';
|
|
63
66
|
export { UserAuthModuleModel } from './userAuthModule';
|
|
64
67
|
export { UsersModuleModel } from './usersModule';
|
|
65
|
-
export {
|
|
68
|
+
export { BlueprintModel } from './blueprint';
|
|
69
|
+
export { BlueprintTemplateModel } from './blueprintTemplate';
|
|
66
70
|
export { DatabaseProvisionModuleModel } from './databaseProvisionModule';
|
|
67
71
|
export { AppAdminGrantModel } from './appAdminGrant';
|
|
68
72
|
export { AppOwnerGrantModel } from './appOwnerGrant';
|
|
@@ -74,34 +78,34 @@ export { OrgOwnerGrantModel } from './orgOwnerGrant';
|
|
|
74
78
|
export { OrgGrantModel } from './orgGrant';
|
|
75
79
|
export { OrgChartEdgeModel } from './orgChartEdge';
|
|
76
80
|
export { OrgChartEdgeGrantModel } from './orgChartEdgeGrant';
|
|
81
|
+
export { OrgPermissionDefaultModel } from './orgPermissionDefault';
|
|
77
82
|
export { AppLimitModel } from './appLimit';
|
|
78
83
|
export { OrgLimitModel } from './orgLimit';
|
|
79
84
|
export { AppStepModel } from './appStep';
|
|
80
85
|
export { AppAchievementModel } from './appAchievement';
|
|
86
|
+
export { AppLevelModel } from './appLevel';
|
|
87
|
+
export { EmailModel } from './email';
|
|
88
|
+
export { PhoneNumberModel } from './phoneNumber';
|
|
89
|
+
export { CryptoAddressModel } from './cryptoAddress';
|
|
90
|
+
export { ConnectedAccountModel } from './connectedAccount';
|
|
81
91
|
export { InviteModel } from './invite';
|
|
82
92
|
export { ClaimedInviteModel } from './claimedInvite';
|
|
83
93
|
export { OrgInviteModel } from './orgInvite';
|
|
84
94
|
export { OrgClaimedInviteModel } from './orgClaimedInvite';
|
|
95
|
+
export { AuditLogModel } from './auditLog';
|
|
85
96
|
export { RefModel } from './ref';
|
|
86
97
|
export { StoreModel } from './store';
|
|
87
98
|
export { AppPermissionDefaultModel } from './appPermissionDefault';
|
|
88
|
-
export { CryptoAddressModel } from './cryptoAddress';
|
|
89
99
|
export { RoleTypeModel } from './roleType';
|
|
90
|
-
export { OrgPermissionDefaultModel } from './orgPermissionDefault';
|
|
91
|
-
export { PhoneNumberModel } from './phoneNumber';
|
|
92
100
|
export { AppLimitDefaultModel } from './appLimitDefault';
|
|
93
101
|
export { OrgLimitDefaultModel } from './orgLimitDefault';
|
|
94
|
-
export { ConnectedAccountModel } from './connectedAccount';
|
|
95
102
|
export { NodeTypeRegistryModel } from './nodeTypeRegistry';
|
|
96
103
|
export { MembershipTypeModel } from './membershipType';
|
|
97
104
|
export { CommitModel } from './commit';
|
|
98
105
|
export { AppMembershipDefaultModel } from './appMembershipDefault';
|
|
99
106
|
export { RlsModuleModel } from './rlsModule';
|
|
100
107
|
export { OrgMembershipDefaultModel } from './orgMembershipDefault';
|
|
101
|
-
export { AuditLogModel } from './auditLog';
|
|
102
|
-
export { AppLevelModel } from './appLevel';
|
|
103
108
|
export { SqlMigrationModel } from './sqlMigration';
|
|
104
|
-
export { EmailModel } from './email';
|
|
105
109
|
export { UserModel } from './user';
|
|
106
110
|
export { AstMigrationModel } from './astMigration';
|
|
107
111
|
export { AppMembershipModel } from './appMembership';
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export { GetAllRecordModel } from './getAllRecord';
|
|
6
7
|
export { OrgGetManagersRecordModel } from './orgGetManagersRecord';
|
|
7
8
|
export { OrgGetSubordinatesRecordModel } from './orgGetSubordinatesRecord';
|
|
8
|
-
export { GetAllRecordModel } from './getAllRecord';
|
|
9
9
|
export { ObjectModel } from './object';
|
|
10
10
|
export { AppPermissionModel } from './appPermission';
|
|
11
11
|
export { OrgPermissionModel } from './orgPermission';
|
|
@@ -27,11 +27,13 @@ export { ViewModel } from './view';
|
|
|
27
27
|
export { ViewTableModel } from './viewTable';
|
|
28
28
|
export { ViewGrantModel } from './viewGrant';
|
|
29
29
|
export { ViewRuleModel } from './viewRule';
|
|
30
|
+
export { EmbeddingChunkModel } from './embeddingChunk';
|
|
30
31
|
export { TableTemplateModuleModel } from './tableTemplateModule';
|
|
31
32
|
export { SecureTableProvisionModel } from './secureTableProvision';
|
|
32
33
|
export { RelationProvisionModel } from './relationProvision';
|
|
33
34
|
export { SchemaGrantModel } from './schemaGrant';
|
|
34
35
|
export { DefaultPrivilegeModel } from './defaultPrivilege';
|
|
36
|
+
export { EnumModel } from './enum';
|
|
35
37
|
export { ApiSchemaModel } from './apiSchema';
|
|
36
38
|
export { ApiModuleModel } from './apiModule';
|
|
37
39
|
export { DomainModel } from './domain';
|
|
@@ -39,6 +41,7 @@ export { SiteMetadatumModel } from './siteMetadatum';
|
|
|
39
41
|
export { SiteModuleModel } from './siteModule';
|
|
40
42
|
export { SiteThemeModel } from './siteTheme';
|
|
41
43
|
export { TriggerFunctionModel } from './triggerFunction';
|
|
44
|
+
export { DatabaseTransferModel } from './databaseTransfer';
|
|
42
45
|
export { ApiModel } from './api';
|
|
43
46
|
export { SiteModel } from './site';
|
|
44
47
|
export { AppModel } from './app';
|
|
@@ -62,7 +65,8 @@ export { SecretsModuleModel } from './secretsModule';
|
|
|
62
65
|
export { SessionsModuleModel } from './sessionsModule';
|
|
63
66
|
export { UserAuthModuleModel } from './userAuthModule';
|
|
64
67
|
export { UsersModuleModel } from './usersModule';
|
|
65
|
-
export {
|
|
68
|
+
export { BlueprintModel } from './blueprint';
|
|
69
|
+
export { BlueprintTemplateModel } from './blueprintTemplate';
|
|
66
70
|
export { DatabaseProvisionModuleModel } from './databaseProvisionModule';
|
|
67
71
|
export { AppAdminGrantModel } from './appAdminGrant';
|
|
68
72
|
export { AppOwnerGrantModel } from './appOwnerGrant';
|
|
@@ -74,34 +78,34 @@ export { OrgOwnerGrantModel } from './orgOwnerGrant';
|
|
|
74
78
|
export { OrgGrantModel } from './orgGrant';
|
|
75
79
|
export { OrgChartEdgeModel } from './orgChartEdge';
|
|
76
80
|
export { OrgChartEdgeGrantModel } from './orgChartEdgeGrant';
|
|
81
|
+
export { OrgPermissionDefaultModel } from './orgPermissionDefault';
|
|
77
82
|
export { AppLimitModel } from './appLimit';
|
|
78
83
|
export { OrgLimitModel } from './orgLimit';
|
|
79
84
|
export { AppStepModel } from './appStep';
|
|
80
85
|
export { AppAchievementModel } from './appAchievement';
|
|
86
|
+
export { AppLevelModel } from './appLevel';
|
|
87
|
+
export { EmailModel } from './email';
|
|
88
|
+
export { PhoneNumberModel } from './phoneNumber';
|
|
89
|
+
export { CryptoAddressModel } from './cryptoAddress';
|
|
90
|
+
export { ConnectedAccountModel } from './connectedAccount';
|
|
81
91
|
export { InviteModel } from './invite';
|
|
82
92
|
export { ClaimedInviteModel } from './claimedInvite';
|
|
83
93
|
export { OrgInviteModel } from './orgInvite';
|
|
84
94
|
export { OrgClaimedInviteModel } from './orgClaimedInvite';
|
|
95
|
+
export { AuditLogModel } from './auditLog';
|
|
85
96
|
export { RefModel } from './ref';
|
|
86
97
|
export { StoreModel } from './store';
|
|
87
98
|
export { AppPermissionDefaultModel } from './appPermissionDefault';
|
|
88
|
-
export { CryptoAddressModel } from './cryptoAddress';
|
|
89
99
|
export { RoleTypeModel } from './roleType';
|
|
90
|
-
export { OrgPermissionDefaultModel } from './orgPermissionDefault';
|
|
91
|
-
export { PhoneNumberModel } from './phoneNumber';
|
|
92
100
|
export { AppLimitDefaultModel } from './appLimitDefault';
|
|
93
101
|
export { OrgLimitDefaultModel } from './orgLimitDefault';
|
|
94
|
-
export { ConnectedAccountModel } from './connectedAccount';
|
|
95
102
|
export { NodeTypeRegistryModel } from './nodeTypeRegistry';
|
|
96
103
|
export { MembershipTypeModel } from './membershipType';
|
|
97
104
|
export { CommitModel } from './commit';
|
|
98
105
|
export { AppMembershipDefaultModel } from './appMembershipDefault';
|
|
99
106
|
export { RlsModuleModel } from './rlsModule';
|
|
100
107
|
export { OrgMembershipDefaultModel } from './orgMembershipDefault';
|
|
101
|
-
export { AuditLogModel } from './auditLog';
|
|
102
|
-
export { AppLevelModel } from './appLevel';
|
|
103
108
|
export { SqlMigrationModel } from './sqlMigration';
|
|
104
|
-
export { EmailModel } from './email';
|
|
105
109
|
export { UserModel } from './user';
|
|
106
110
|
export { AstMigrationModel } from './astMigration';
|
|
107
111
|
export { AppMembershipModel } from './appMembership';
|