@constructive-io/react 0.8.0 → 0.8.2
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 +33 -127
- package/admin/schema-types.d.ts +20 -110
- package/admin/types.d.ts +0 -19
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +16 -16
- package/auth/hooks/invalidation.js +33 -33
- package/auth/hooks/mutation-keys.d.ts +32 -32
- package/auth/hooks/mutation-keys.js +20 -20
- package/auth/hooks/mutations/index.d.ts +9 -9
- package/auth/hooks/mutations/index.js +9 -9
- package/auth/hooks/queries/index.d.ts +6 -6
- package/auth/hooks/queries/index.js +6 -6
- package/auth/hooks/query-keys.d.ts +38 -38
- package/auth/hooks/query-keys.js +23 -23
- package/auth/orm/index.d.ts +6 -6
- package/auth/orm/index.js +6 -6
- package/auth/orm/input-types.d.ts +279 -327
- 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/auth/schema-types.d.ts +276 -188
- package/auth/types.d.ts +14 -24
- package/esm/admin/orm/input-types.d.ts +33 -127
- package/esm/admin/schema-types.d.ts +20 -110
- package/esm/admin/types.d.ts +0 -19
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +16 -16
- package/esm/auth/hooks/invalidation.js +34 -34
- package/esm/auth/hooks/mutation-keys.d.ts +32 -32
- package/esm/auth/hooks/mutation-keys.js +19 -19
- package/esm/auth/hooks/mutations/index.d.ts +9 -9
- package/esm/auth/hooks/mutations/index.js +9 -9
- package/esm/auth/hooks/queries/index.d.ts +6 -6
- package/esm/auth/hooks/queries/index.js +6 -6
- package/esm/auth/hooks/query-keys.d.ts +38 -38
- package/esm/auth/hooks/query-keys.js +22 -22
- 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 +279 -327
- 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/auth/schema-types.d.ts +276 -188
- package/esm/auth/types.d.ts +14 -24
- package/esm/index.d.ts +5 -1
- package/esm/index.js +5 -1
- package/esm/objects/orm/input-types.d.ts +17 -48
- package/esm/objects/schema-types.d.ts +3 -37
- package/esm/objects/types.d.ts +0 -6
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +77 -53
- package/esm/public/hooks/invalidation.js +202 -138
- package/esm/public/hooks/mutation-keys.d.ts +180 -122
- package/esm/public/hooks/mutation-keys.js +129 -86
- package/esm/public/hooks/mutations/index.d.ts +50 -33
- package/esm/public/hooks/mutations/index.js +50 -33
- package/esm/public/hooks/mutations/useAcceptDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useAcceptDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useCancelDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCancelDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useConstructBlueprintMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useConstructBlueprintMutation.js +23 -0
- package/esm/public/hooks/mutations/useCopyTemplateToBlueprintMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCopyTemplateToBlueprintMutation.js +23 -0
- package/esm/public/hooks/mutations/useCreateBlueprintMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBlueprintMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateBlueprintTemplateMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBlueprintTemplateMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateDatabaseTransferMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateDatabaseTransferMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateEmbeddingChunkMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateEmbeddingChunkMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateEnumMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateUuidModuleMutation.js → useCreateEnumMutation.js} +7 -7
- package/esm/public/hooks/mutations/useDeleteBlueprintMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintTemplateMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintTemplateMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteDatabaseTransferMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteDatabaseTransferMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteEmbeddingChunkMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteEmbeddingChunkMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteEnumMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteUuidModuleMutation.js → useDeleteEnumMutation.js} +8 -8
- package/esm/public/hooks/mutations/useRejectDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRejectDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintTemplateMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintTemplateMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateDatabaseTransferMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateDatabaseTransferMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateEmbeddingChunkMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateEmbeddingChunkMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateEnumMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateUuidModuleMutation.js → useUpdateEnumMutation.js} +10 -10
- package/esm/public/hooks/queries/index.d.ts +25 -17
- package/esm/public/hooks/queries/index.js +25 -17
- package/esm/public/hooks/queries/useBlueprintQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBlueprintQuery.js +47 -0
- package/esm/public/hooks/queries/useBlueprintTemplateQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBlueprintTemplateQuery.js +47 -0
- package/esm/public/hooks/queries/useBlueprintTemplatesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBlueprintTemplatesQuery.js +32 -0
- package/esm/public/hooks/queries/useBlueprintsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBlueprintsQuery.js +32 -0
- package/esm/public/hooks/queries/useDatabaseTransferQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useDatabaseTransferQuery.js +47 -0
- package/esm/public/hooks/queries/useDatabaseTransfersQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useDatabaseTransfersQuery.js +32 -0
- package/esm/public/hooks/queries/useEmbeddingChunkQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useEmbeddingChunkQuery.js +47 -0
- package/esm/public/hooks/queries/useEmbeddingChunksQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useEmbeddingChunksQuery.js +32 -0
- package/esm/public/hooks/queries/useEnumQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useUuidModuleQuery.js → useEnumQuery.js} +11 -11
- package/esm/public/hooks/queries/useEnumsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useUuidModulesQuery.js → useEnumsQuery.js} +11 -11
- package/esm/public/hooks/query-keys.d.ts +180 -124
- package/esm/public/hooks/query-keys.js +103 -71
- 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 +2447 -2980
- 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/esm/public/schema-types.d.ts +2328 -2206
- package/esm/public/types.d.ts +161 -379
- package/index.d.ts +5 -1
- package/index.js +5 -1
- package/objects/orm/input-types.d.ts +17 -48
- package/objects/schema-types.d.ts +3 -37
- package/objects/types.d.ts +0 -6
- package/package.json +3 -3
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +77 -53
- package/public/hooks/invalidation.js +201 -137
- package/public/hooks/mutation-keys.d.ts +180 -122
- package/public/hooks/mutation-keys.js +132 -89
- package/public/hooks/mutations/index.d.ts +50 -33
- package/public/hooks/mutations/index.js +50 -33
- package/public/hooks/mutations/useAcceptDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useAcceptDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useCancelDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useCancelDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useConstructBlueprintMutation.d.ts +20 -0
- package/public/hooks/mutations/useConstructBlueprintMutation.js +26 -0
- package/public/hooks/mutations/useCopyTemplateToBlueprintMutation.d.ts +20 -0
- package/public/hooks/mutations/useCopyTemplateToBlueprintMutation.js +26 -0
- package/public/hooks/mutations/useCreateBlueprintMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateBlueprintMutation.js +34 -0
- package/public/hooks/mutations/useCreateBlueprintTemplateMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateBlueprintTemplateMutation.js +34 -0
- package/public/hooks/mutations/useCreateDatabaseTransferMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateDatabaseTransferMutation.js +34 -0
- package/public/hooks/mutations/useCreateEmbeddingChunkMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateEmbeddingChunkMutation.js +34 -0
- package/public/hooks/mutations/useCreateEnumMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateUuidModuleMutation.js → useCreateEnumMutation.js} +6 -6
- package/public/hooks/mutations/useDeleteBlueprintMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBlueprintMutation.js +39 -0
- package/public/hooks/mutations/useDeleteBlueprintTemplateMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBlueprintTemplateMutation.js +39 -0
- package/public/hooks/mutations/useDeleteDatabaseTransferMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteDatabaseTransferMutation.js +39 -0
- package/public/hooks/mutations/useDeleteEmbeddingChunkMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteEmbeddingChunkMutation.js +39 -0
- package/public/hooks/mutations/useDeleteEnumMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteUuidModuleMutation.js → useDeleteEnumMutation.js} +7 -7
- package/public/hooks/mutations/useRejectDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useRejectDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useUpdateBlueprintMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBlueprintMutation.js +40 -0
- package/public/hooks/mutations/useUpdateBlueprintTemplateMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBlueprintTemplateMutation.js +40 -0
- package/public/hooks/mutations/useUpdateDatabaseTransferMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateDatabaseTransferMutation.js +40 -0
- package/public/hooks/mutations/useUpdateEmbeddingChunkMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateEmbeddingChunkMutation.js +40 -0
- package/public/hooks/mutations/useUpdateEnumMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateUuidModuleMutation.js → useUpdateEnumMutation.js} +9 -9
- package/public/hooks/queries/index.d.ts +25 -17
- package/public/hooks/queries/index.js +25 -17
- package/public/hooks/queries/useBlueprintQuery.d.ts +65 -0
- package/public/hooks/queries/useBlueprintQuery.js +53 -0
- package/public/hooks/queries/useBlueprintTemplateQuery.d.ts +65 -0
- package/public/hooks/queries/useBlueprintTemplateQuery.js +53 -0
- package/public/hooks/queries/useBlueprintTemplatesQuery.d.ts +69 -0
- package/public/hooks/queries/useBlueprintTemplatesQuery.js +38 -0
- package/public/hooks/queries/useBlueprintsQuery.d.ts +69 -0
- package/public/hooks/queries/useBlueprintsQuery.js +38 -0
- package/public/hooks/queries/useDatabaseTransferQuery.d.ts +65 -0
- package/public/hooks/queries/useDatabaseTransferQuery.js +53 -0
- package/public/hooks/queries/useDatabaseTransfersQuery.d.ts +69 -0
- package/public/hooks/queries/useDatabaseTransfersQuery.js +38 -0
- package/public/hooks/queries/useEmbeddingChunkQuery.d.ts +65 -0
- package/public/hooks/queries/useEmbeddingChunkQuery.js +53 -0
- package/public/hooks/queries/useEmbeddingChunksQuery.d.ts +69 -0
- package/public/hooks/queries/useEmbeddingChunksQuery.js +38 -0
- package/public/hooks/queries/useEnumQuery.d.ts +65 -0
- package/public/hooks/queries/{useUuidModuleQuery.js → useEnumQuery.js} +14 -14
- package/public/hooks/queries/useEnumsQuery.d.ts +69 -0
- package/public/hooks/queries/{useUuidModulesQuery.js → useEnumsQuery.js} +14 -14
- package/public/hooks/query-keys.d.ts +180 -124
- package/public/hooks/query-keys.js +106 -74
- package/public/orm/index.d.ts +81 -48
- package/public/orm/index.js +26 -18
- package/public/orm/input-types.d.ts +2447 -2980
- 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/public/schema-types.d.ts +2328 -2206
- package/public/types.d.ts +161 -379
- package/esm/public/hooks/mutations/useCreateUuidModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useDeleteUuidModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useUpdateUuidModuleMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useUuidModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useUuidModulesQuery.d.ts +0 -69
- package/esm/public/orm/models/uuidModule.d.ts +0 -56
- package/public/hooks/mutations/useCreateUuidModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useDeleteUuidModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useUpdateUuidModuleMutation.d.ts +0 -40
- package/public/hooks/queries/useUuidModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useUuidModulesQuery.d.ts +0 -69
- package/public/orm/models/uuidModule.d.ts +0 -56
package/esm/public/types.d.ts
CHANGED
|
@@ -10,6 +10,10 @@ export type ConstructiveInternalTypeHostname = unknown;
|
|
|
10
10
|
export type ConstructiveInternalTypeImage = unknown;
|
|
11
11
|
export type ConstructiveInternalTypeOrigin = unknown;
|
|
12
12
|
export type ConstructiveInternalTypeUrl = unknown;
|
|
13
|
+
export interface GetAllRecord {
|
|
14
|
+
path: string[] | null;
|
|
15
|
+
data: unknown | null;
|
|
16
|
+
}
|
|
13
17
|
export interface OrgGetManagersRecord {
|
|
14
18
|
userId: string | null;
|
|
15
19
|
depth: number | null;
|
|
@@ -18,10 +22,6 @@ export interface OrgGetSubordinatesRecord {
|
|
|
18
22
|
userId: string | null;
|
|
19
23
|
depth: number | null;
|
|
20
24
|
}
|
|
21
|
-
export interface GetAllRecord {
|
|
22
|
-
path: string[] | null;
|
|
23
|
-
data: unknown | null;
|
|
24
|
-
}
|
|
25
25
|
export interface Object {
|
|
26
26
|
hashUuid: string | null;
|
|
27
27
|
id: string | null;
|
|
@@ -38,8 +38,6 @@ export interface AppPermission {
|
|
|
38
38
|
bitnum: number | null;
|
|
39
39
|
bitstr: string | null;
|
|
40
40
|
description: string | null;
|
|
41
|
-
descriptionTrgmSimilarity: number | null;
|
|
42
|
-
searchScore: number | null;
|
|
43
41
|
}
|
|
44
42
|
export interface OrgPermission {
|
|
45
43
|
id: string | null;
|
|
@@ -47,8 +45,6 @@ export interface OrgPermission {
|
|
|
47
45
|
bitnum: number | null;
|
|
48
46
|
bitstr: string | null;
|
|
49
47
|
description: string | null;
|
|
50
|
-
descriptionTrgmSimilarity: number | null;
|
|
51
|
-
searchScore: number | null;
|
|
52
48
|
}
|
|
53
49
|
export interface AppLevelRequirement {
|
|
54
50
|
id: string | null;
|
|
@@ -59,8 +55,6 @@ export interface AppLevelRequirement {
|
|
|
59
55
|
priority: number | null;
|
|
60
56
|
createdAt: string | null;
|
|
61
57
|
updatedAt: string | null;
|
|
62
|
-
descriptionTrgmSimilarity: number | null;
|
|
63
|
-
searchScore: number | null;
|
|
64
58
|
}
|
|
65
59
|
export interface Database {
|
|
66
60
|
id: string | null;
|
|
@@ -71,10 +65,6 @@ export interface Database {
|
|
|
71
65
|
hash: string | null;
|
|
72
66
|
createdAt: string | null;
|
|
73
67
|
updatedAt: string | null;
|
|
74
|
-
schemaHashTrgmSimilarity: number | null;
|
|
75
|
-
nameTrgmSimilarity: number | null;
|
|
76
|
-
labelTrgmSimilarity: number | null;
|
|
77
|
-
searchScore: number | null;
|
|
78
68
|
}
|
|
79
69
|
export interface Schema {
|
|
80
70
|
id: string | null;
|
|
@@ -91,12 +81,6 @@ export interface Schema {
|
|
|
91
81
|
isPublic: boolean | null;
|
|
92
82
|
createdAt: string | null;
|
|
93
83
|
updatedAt: string | null;
|
|
94
|
-
nameTrgmSimilarity: number | null;
|
|
95
|
-
schemaNameTrgmSimilarity: number | null;
|
|
96
|
-
labelTrgmSimilarity: number | null;
|
|
97
|
-
descriptionTrgmSimilarity: number | null;
|
|
98
|
-
moduleTrgmSimilarity: number | null;
|
|
99
|
-
searchScore: number | null;
|
|
100
84
|
}
|
|
101
85
|
export interface Table {
|
|
102
86
|
id: string | null;
|
|
@@ -118,13 +102,6 @@ export interface Table {
|
|
|
118
102
|
inheritsId: string | null;
|
|
119
103
|
createdAt: string | null;
|
|
120
104
|
updatedAt: string | null;
|
|
121
|
-
nameTrgmSimilarity: number | null;
|
|
122
|
-
labelTrgmSimilarity: number | null;
|
|
123
|
-
descriptionTrgmSimilarity: number | null;
|
|
124
|
-
moduleTrgmSimilarity: number | null;
|
|
125
|
-
pluralNameTrgmSimilarity: number | null;
|
|
126
|
-
singularNameTrgmSimilarity: number | null;
|
|
127
|
-
searchScore: number | null;
|
|
128
105
|
}
|
|
129
106
|
export interface CheckConstraint {
|
|
130
107
|
id: string | null;
|
|
@@ -141,10 +118,6 @@ export interface CheckConstraint {
|
|
|
141
118
|
tags: string[] | null;
|
|
142
119
|
createdAt: string | null;
|
|
143
120
|
updatedAt: string | null;
|
|
144
|
-
nameTrgmSimilarity: number | null;
|
|
145
|
-
typeTrgmSimilarity: number | null;
|
|
146
|
-
moduleTrgmSimilarity: number | null;
|
|
147
|
-
searchScore: number | null;
|
|
148
121
|
}
|
|
149
122
|
export interface Field {
|
|
150
123
|
id: string | null;
|
|
@@ -155,6 +128,7 @@ export interface Field {
|
|
|
155
128
|
description: string | null;
|
|
156
129
|
smartTags: unknown | null;
|
|
157
130
|
isRequired: boolean | null;
|
|
131
|
+
apiRequired: boolean | null;
|
|
158
132
|
defaultValue: string | null;
|
|
159
133
|
defaultValueAst: unknown | null;
|
|
160
134
|
isHidden: boolean | null;
|
|
@@ -171,13 +145,6 @@ export interface Field {
|
|
|
171
145
|
scope: number | null;
|
|
172
146
|
createdAt: string | null;
|
|
173
147
|
updatedAt: string | null;
|
|
174
|
-
nameTrgmSimilarity: number | null;
|
|
175
|
-
labelTrgmSimilarity: number | null;
|
|
176
|
-
descriptionTrgmSimilarity: number | null;
|
|
177
|
-
defaultValueTrgmSimilarity: number | null;
|
|
178
|
-
regexpTrgmSimilarity: number | null;
|
|
179
|
-
moduleTrgmSimilarity: number | null;
|
|
180
|
-
searchScore: number | null;
|
|
181
148
|
}
|
|
182
149
|
export interface ForeignKeyConstraint {
|
|
183
150
|
id: string | null;
|
|
@@ -198,13 +165,6 @@ export interface ForeignKeyConstraint {
|
|
|
198
165
|
tags: string[] | null;
|
|
199
166
|
createdAt: string | null;
|
|
200
167
|
updatedAt: string | null;
|
|
201
|
-
nameTrgmSimilarity: number | null;
|
|
202
|
-
descriptionTrgmSimilarity: number | null;
|
|
203
|
-
typeTrgmSimilarity: number | null;
|
|
204
|
-
deleteActionTrgmSimilarity: number | null;
|
|
205
|
-
updateActionTrgmSimilarity: number | null;
|
|
206
|
-
moduleTrgmSimilarity: number | null;
|
|
207
|
-
searchScore: number | null;
|
|
208
168
|
}
|
|
209
169
|
export interface FullTextSearch {
|
|
210
170
|
id: string | null;
|
|
@@ -237,10 +197,6 @@ export interface Index {
|
|
|
237
197
|
tags: string[] | null;
|
|
238
198
|
createdAt: string | null;
|
|
239
199
|
updatedAt: string | null;
|
|
240
|
-
nameTrgmSimilarity: number | null;
|
|
241
|
-
accessMethodTrgmSimilarity: number | null;
|
|
242
|
-
moduleTrgmSimilarity: number | null;
|
|
243
|
-
searchScore: number | null;
|
|
244
200
|
}
|
|
245
201
|
export interface Policy {
|
|
246
202
|
id: string | null;
|
|
@@ -260,12 +216,6 @@ export interface Policy {
|
|
|
260
216
|
tags: string[] | null;
|
|
261
217
|
createdAt: string | null;
|
|
262
218
|
updatedAt: string | null;
|
|
263
|
-
nameTrgmSimilarity: number | null;
|
|
264
|
-
granteeNameTrgmSimilarity: number | null;
|
|
265
|
-
privilegeTrgmSimilarity: number | null;
|
|
266
|
-
policyTypeTrgmSimilarity: number | null;
|
|
267
|
-
moduleTrgmSimilarity: number | null;
|
|
268
|
-
searchScore: number | null;
|
|
269
219
|
}
|
|
270
220
|
export interface PrimaryKeyConstraint {
|
|
271
221
|
id: string | null;
|
|
@@ -281,10 +231,6 @@ export interface PrimaryKeyConstraint {
|
|
|
281
231
|
tags: string[] | null;
|
|
282
232
|
createdAt: string | null;
|
|
283
233
|
updatedAt: string | null;
|
|
284
|
-
nameTrgmSimilarity: number | null;
|
|
285
|
-
typeTrgmSimilarity: number | null;
|
|
286
|
-
moduleTrgmSimilarity: number | null;
|
|
287
|
-
searchScore: number | null;
|
|
288
234
|
}
|
|
289
235
|
export interface TableGrant {
|
|
290
236
|
id: string | null;
|
|
@@ -296,9 +242,6 @@ export interface TableGrant {
|
|
|
296
242
|
isGrant: boolean | null;
|
|
297
243
|
createdAt: string | null;
|
|
298
244
|
updatedAt: string | null;
|
|
299
|
-
privilegeTrgmSimilarity: number | null;
|
|
300
|
-
granteeNameTrgmSimilarity: number | null;
|
|
301
|
-
searchScore: number | null;
|
|
302
245
|
}
|
|
303
246
|
export interface Trigger {
|
|
304
247
|
id: string | null;
|
|
@@ -314,11 +257,6 @@ export interface Trigger {
|
|
|
314
257
|
tags: string[] | null;
|
|
315
258
|
createdAt: string | null;
|
|
316
259
|
updatedAt: string | null;
|
|
317
|
-
nameTrgmSimilarity: number | null;
|
|
318
|
-
eventTrgmSimilarity: number | null;
|
|
319
|
-
functionNameTrgmSimilarity: number | null;
|
|
320
|
-
moduleTrgmSimilarity: number | null;
|
|
321
|
-
searchScore: number | null;
|
|
322
260
|
}
|
|
323
261
|
export interface UniqueConstraint {
|
|
324
262
|
id: string | null;
|
|
@@ -335,11 +273,6 @@ export interface UniqueConstraint {
|
|
|
335
273
|
tags: string[] | null;
|
|
336
274
|
createdAt: string | null;
|
|
337
275
|
updatedAt: string | null;
|
|
338
|
-
nameTrgmSimilarity: number | null;
|
|
339
|
-
descriptionTrgmSimilarity: number | null;
|
|
340
|
-
typeTrgmSimilarity: number | null;
|
|
341
|
-
moduleTrgmSimilarity: number | null;
|
|
342
|
-
searchScore: number | null;
|
|
343
276
|
}
|
|
344
277
|
export interface View {
|
|
345
278
|
id: string | null;
|
|
@@ -358,11 +291,6 @@ export interface View {
|
|
|
358
291
|
module: string | null;
|
|
359
292
|
scope: number | null;
|
|
360
293
|
tags: string[] | null;
|
|
361
|
-
nameTrgmSimilarity: number | null;
|
|
362
|
-
viewTypeTrgmSimilarity: number | null;
|
|
363
|
-
filterTypeTrgmSimilarity: number | null;
|
|
364
|
-
moduleTrgmSimilarity: number | null;
|
|
365
|
-
searchScore: number | null;
|
|
366
294
|
}
|
|
367
295
|
export interface ViewTable {
|
|
368
296
|
id: string | null;
|
|
@@ -378,9 +306,6 @@ export interface ViewGrant {
|
|
|
378
306
|
privilege: string | null;
|
|
379
307
|
withGrantOption: boolean | null;
|
|
380
308
|
isGrant: boolean | null;
|
|
381
|
-
granteeNameTrgmSimilarity: number | null;
|
|
382
|
-
privilegeTrgmSimilarity: number | null;
|
|
383
|
-
searchScore: number | null;
|
|
384
309
|
}
|
|
385
310
|
export interface ViewRule {
|
|
386
311
|
id: string | null;
|
|
@@ -389,10 +314,26 @@ export interface ViewRule {
|
|
|
389
314
|
name: string | null;
|
|
390
315
|
event: string | null;
|
|
391
316
|
action: string | null;
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
317
|
+
}
|
|
318
|
+
export interface EmbeddingChunk {
|
|
319
|
+
id: string | null;
|
|
320
|
+
databaseId: string | null;
|
|
321
|
+
tableId: string | null;
|
|
322
|
+
embeddingFieldId: string | null;
|
|
323
|
+
chunksTableId: string | null;
|
|
324
|
+
chunksTableName: string | null;
|
|
325
|
+
contentFieldName: string | null;
|
|
326
|
+
dimensions: number | null;
|
|
327
|
+
metric: string | null;
|
|
328
|
+
chunkSize: number | null;
|
|
329
|
+
chunkOverlap: number | null;
|
|
330
|
+
chunkStrategy: string | null;
|
|
331
|
+
metadataFields: unknown | null;
|
|
332
|
+
enqueueChunkingJob: boolean | null;
|
|
333
|
+
chunkingTaskName: string | null;
|
|
334
|
+
parentFkFieldId: string | null;
|
|
335
|
+
createdAt: string | null;
|
|
336
|
+
updatedAt: string | null;
|
|
396
337
|
}
|
|
397
338
|
export interface TableTemplateModule {
|
|
398
339
|
id: string | null;
|
|
@@ -404,9 +345,6 @@ export interface TableTemplateModule {
|
|
|
404
345
|
tableName: string | null;
|
|
405
346
|
nodeType: string | null;
|
|
406
347
|
data: unknown | null;
|
|
407
|
-
tableNameTrgmSimilarity: number | null;
|
|
408
|
-
nodeTypeTrgmSimilarity: number | null;
|
|
409
|
-
searchScore: number | null;
|
|
410
348
|
}
|
|
411
349
|
export interface SecureTableProvision {
|
|
412
350
|
id: string | null;
|
|
@@ -417,9 +355,9 @@ export interface SecureTableProvision {
|
|
|
417
355
|
nodeType: string | null;
|
|
418
356
|
useRls: boolean | null;
|
|
419
357
|
nodeData: unknown | null;
|
|
420
|
-
fields: unknown | null;
|
|
358
|
+
fields: unknown[] | null;
|
|
421
359
|
grantRoles: string[] | null;
|
|
422
|
-
grantPrivileges: unknown | null;
|
|
360
|
+
grantPrivileges: unknown[] | null;
|
|
423
361
|
policyType: string | null;
|
|
424
362
|
policyPrivileges: string[] | null;
|
|
425
363
|
policyRole: string | null;
|
|
@@ -427,12 +365,6 @@ export interface SecureTableProvision {
|
|
|
427
365
|
policyName: string | null;
|
|
428
366
|
policyData: unknown | null;
|
|
429
367
|
outFields: string[] | null;
|
|
430
|
-
tableNameTrgmSimilarity: number | null;
|
|
431
|
-
nodeTypeTrgmSimilarity: number | null;
|
|
432
|
-
policyTypeTrgmSimilarity: number | null;
|
|
433
|
-
policyRoleTrgmSimilarity: number | null;
|
|
434
|
-
policyNameTrgmSimilarity: number | null;
|
|
435
|
-
searchScore: number | null;
|
|
436
368
|
}
|
|
437
369
|
export interface RelationProvision {
|
|
438
370
|
id: string | null;
|
|
@@ -443,16 +375,19 @@ export interface RelationProvision {
|
|
|
443
375
|
fieldName: string | null;
|
|
444
376
|
deleteAction: string | null;
|
|
445
377
|
isRequired: boolean | null;
|
|
378
|
+
apiRequired: boolean | null;
|
|
446
379
|
junctionTableId: string | null;
|
|
447
380
|
junctionTableName: string | null;
|
|
448
381
|
junctionSchemaId: string | null;
|
|
449
382
|
sourceFieldName: string | null;
|
|
450
383
|
targetFieldName: string | null;
|
|
451
384
|
useCompositeKey: boolean | null;
|
|
385
|
+
createIndex: boolean | null;
|
|
386
|
+
exposeInApi: boolean | null;
|
|
452
387
|
nodeType: string | null;
|
|
453
388
|
nodeData: unknown | null;
|
|
454
389
|
grantRoles: string[] | null;
|
|
455
|
-
grantPrivileges: unknown | null;
|
|
390
|
+
grantPrivileges: unknown[] | null;
|
|
456
391
|
policyType: string | null;
|
|
457
392
|
policyPrivileges: string[] | null;
|
|
458
393
|
policyRole: string | null;
|
|
@@ -463,17 +398,6 @@ export interface RelationProvision {
|
|
|
463
398
|
outJunctionTableId: string | null;
|
|
464
399
|
outSourceFieldId: string | null;
|
|
465
400
|
outTargetFieldId: string | null;
|
|
466
|
-
relationTypeTrgmSimilarity: number | null;
|
|
467
|
-
fieldNameTrgmSimilarity: number | null;
|
|
468
|
-
deleteActionTrgmSimilarity: number | null;
|
|
469
|
-
junctionTableNameTrgmSimilarity: number | null;
|
|
470
|
-
sourceFieldNameTrgmSimilarity: number | null;
|
|
471
|
-
targetFieldNameTrgmSimilarity: number | null;
|
|
472
|
-
nodeTypeTrgmSimilarity: number | null;
|
|
473
|
-
policyTypeTrgmSimilarity: number | null;
|
|
474
|
-
policyRoleTrgmSimilarity: number | null;
|
|
475
|
-
policyNameTrgmSimilarity: number | null;
|
|
476
|
-
searchScore: number | null;
|
|
477
401
|
}
|
|
478
402
|
export interface SchemaGrant {
|
|
479
403
|
id: string | null;
|
|
@@ -482,8 +406,6 @@ export interface SchemaGrant {
|
|
|
482
406
|
granteeName: string | null;
|
|
483
407
|
createdAt: string | null;
|
|
484
408
|
updatedAt: string | null;
|
|
485
|
-
granteeNameTrgmSimilarity: number | null;
|
|
486
|
-
searchScore: number | null;
|
|
487
409
|
}
|
|
488
410
|
export interface DefaultPrivilege {
|
|
489
411
|
id: string | null;
|
|
@@ -493,10 +415,20 @@ export interface DefaultPrivilege {
|
|
|
493
415
|
privilege: string | null;
|
|
494
416
|
granteeName: string | null;
|
|
495
417
|
isGrant: boolean | null;
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
418
|
+
}
|
|
419
|
+
export interface Enum {
|
|
420
|
+
id: string | null;
|
|
421
|
+
databaseId: string | null;
|
|
422
|
+
schemaId: string | null;
|
|
423
|
+
name: string | null;
|
|
424
|
+
label: string | null;
|
|
425
|
+
description: string | null;
|
|
426
|
+
values: string[] | null;
|
|
427
|
+
smartTags: unknown | null;
|
|
428
|
+
category: ObjectCategory | null;
|
|
429
|
+
module: string | null;
|
|
430
|
+
scope: number | null;
|
|
431
|
+
tags: string[] | null;
|
|
500
432
|
}
|
|
501
433
|
export interface ApiSchema {
|
|
502
434
|
id: string | null;
|
|
@@ -510,8 +442,6 @@ export interface ApiModule {
|
|
|
510
442
|
apiId: string | null;
|
|
511
443
|
name: string | null;
|
|
512
444
|
data: unknown | null;
|
|
513
|
-
nameTrgmSimilarity: number | null;
|
|
514
|
-
searchScore: number | null;
|
|
515
445
|
}
|
|
516
446
|
export interface Domain {
|
|
517
447
|
id: string | null;
|
|
@@ -528,9 +458,6 @@ export interface SiteMetadatum {
|
|
|
528
458
|
title: string | null;
|
|
529
459
|
description: string | null;
|
|
530
460
|
ogImage: ConstructiveInternalTypeImage | null;
|
|
531
|
-
titleTrgmSimilarity: number | null;
|
|
532
|
-
descriptionTrgmSimilarity: number | null;
|
|
533
|
-
searchScore: number | null;
|
|
534
461
|
}
|
|
535
462
|
export interface SiteModule {
|
|
536
463
|
id: string | null;
|
|
@@ -538,8 +465,6 @@ export interface SiteModule {
|
|
|
538
465
|
siteId: string | null;
|
|
539
466
|
name: string | null;
|
|
540
467
|
data: unknown | null;
|
|
541
|
-
nameTrgmSimilarity: number | null;
|
|
542
|
-
searchScore: number | null;
|
|
543
468
|
}
|
|
544
469
|
export interface SiteTheme {
|
|
545
470
|
id: string | null;
|
|
@@ -554,9 +479,22 @@ export interface TriggerFunction {
|
|
|
554
479
|
code: string | null;
|
|
555
480
|
createdAt: string | null;
|
|
556
481
|
updatedAt: string | null;
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
482
|
+
}
|
|
483
|
+
export interface DatabaseTransfer {
|
|
484
|
+
id: string | null;
|
|
485
|
+
databaseId: string | null;
|
|
486
|
+
targetOwnerId: string | null;
|
|
487
|
+
sourceApproved: boolean | null;
|
|
488
|
+
targetApproved: boolean | null;
|
|
489
|
+
sourceApprovedAt: string | null;
|
|
490
|
+
targetApprovedAt: string | null;
|
|
491
|
+
status: string | null;
|
|
492
|
+
initiatedBy: string | null;
|
|
493
|
+
notes: string | null;
|
|
494
|
+
expiresAt: string | null;
|
|
495
|
+
createdAt: string | null;
|
|
496
|
+
updatedAt: string | null;
|
|
497
|
+
completedAt: string | null;
|
|
560
498
|
}
|
|
561
499
|
export interface Api {
|
|
562
500
|
id: string | null;
|
|
@@ -566,11 +504,6 @@ export interface Api {
|
|
|
566
504
|
roleName: string | null;
|
|
567
505
|
anonRole: string | null;
|
|
568
506
|
isPublic: boolean | null;
|
|
569
|
-
nameTrgmSimilarity: number | null;
|
|
570
|
-
dbnameTrgmSimilarity: number | null;
|
|
571
|
-
roleNameTrgmSimilarity: number | null;
|
|
572
|
-
anonRoleTrgmSimilarity: number | null;
|
|
573
|
-
searchScore: number | null;
|
|
574
507
|
}
|
|
575
508
|
export interface Site {
|
|
576
509
|
id: string | null;
|
|
@@ -582,10 +515,6 @@ export interface Site {
|
|
|
582
515
|
appleTouchIcon: ConstructiveInternalTypeImage | null;
|
|
583
516
|
logo: ConstructiveInternalTypeImage | null;
|
|
584
517
|
dbname: string | null;
|
|
585
|
-
titleTrgmSimilarity: number | null;
|
|
586
|
-
descriptionTrgmSimilarity: number | null;
|
|
587
|
-
dbnameTrgmSimilarity: number | null;
|
|
588
|
-
searchScore: number | null;
|
|
589
518
|
}
|
|
590
519
|
export interface App {
|
|
591
520
|
id: string | null;
|
|
@@ -597,10 +526,6 @@ export interface App {
|
|
|
597
526
|
appStoreId: string | null;
|
|
598
527
|
appIdPrefix: string | null;
|
|
599
528
|
playStoreLink: ConstructiveInternalTypeUrl | null;
|
|
600
|
-
nameTrgmSimilarity: number | null;
|
|
601
|
-
appStoreIdTrgmSimilarity: number | null;
|
|
602
|
-
appIdPrefixTrgmSimilarity: number | null;
|
|
603
|
-
searchScore: number | null;
|
|
604
529
|
}
|
|
605
530
|
export interface ConnectedAccountsModule {
|
|
606
531
|
id: string | null;
|
|
@@ -610,8 +535,6 @@ export interface ConnectedAccountsModule {
|
|
|
610
535
|
tableId: string | null;
|
|
611
536
|
ownerTableId: string | null;
|
|
612
537
|
tableName: string | null;
|
|
613
|
-
tableNameTrgmSimilarity: number | null;
|
|
614
|
-
searchScore: number | null;
|
|
615
538
|
}
|
|
616
539
|
export interface CryptoAddressesModule {
|
|
617
540
|
id: string | null;
|
|
@@ -622,9 +545,6 @@ export interface CryptoAddressesModule {
|
|
|
622
545
|
ownerTableId: string | null;
|
|
623
546
|
tableName: string | null;
|
|
624
547
|
cryptoNetwork: string | null;
|
|
625
|
-
tableNameTrgmSimilarity: number | null;
|
|
626
|
-
cryptoNetworkTrgmSimilarity: number | null;
|
|
627
|
-
searchScore: number | null;
|
|
628
548
|
}
|
|
629
549
|
export interface CryptoAuthModule {
|
|
630
550
|
id: string | null;
|
|
@@ -641,13 +561,6 @@ export interface CryptoAuthModule {
|
|
|
641
561
|
signInRecordFailure: string | null;
|
|
642
562
|
signUpWithKey: string | null;
|
|
643
563
|
signInWithChallenge: string | null;
|
|
644
|
-
userFieldTrgmSimilarity: number | null;
|
|
645
|
-
cryptoNetworkTrgmSimilarity: number | null;
|
|
646
|
-
signInRequestChallengeTrgmSimilarity: number | null;
|
|
647
|
-
signInRecordFailureTrgmSimilarity: number | null;
|
|
648
|
-
signUpWithKeyTrgmSimilarity: number | null;
|
|
649
|
-
signInWithChallengeTrgmSimilarity: number | null;
|
|
650
|
-
searchScore: number | null;
|
|
651
564
|
}
|
|
652
565
|
export interface DefaultIdsModule {
|
|
653
566
|
id: string | null;
|
|
@@ -666,8 +579,6 @@ export interface DenormalizedTableField {
|
|
|
666
579
|
updateDefaults: boolean | null;
|
|
667
580
|
funcName: string | null;
|
|
668
581
|
funcOrder: number | null;
|
|
669
|
-
funcNameTrgmSimilarity: number | null;
|
|
670
|
-
searchScore: number | null;
|
|
671
582
|
}
|
|
672
583
|
export interface EmailsModule {
|
|
673
584
|
id: string | null;
|
|
@@ -677,8 +588,6 @@ export interface EmailsModule {
|
|
|
677
588
|
tableId: string | null;
|
|
678
589
|
ownerTableId: string | null;
|
|
679
590
|
tableName: string | null;
|
|
680
|
-
tableNameTrgmSimilarity: number | null;
|
|
681
|
-
searchScore: number | null;
|
|
682
591
|
}
|
|
683
592
|
export interface EncryptedSecretsModule {
|
|
684
593
|
id: string | null;
|
|
@@ -686,8 +595,6 @@ export interface EncryptedSecretsModule {
|
|
|
686
595
|
schemaId: string | null;
|
|
687
596
|
tableId: string | null;
|
|
688
597
|
tableName: string | null;
|
|
689
|
-
tableNameTrgmSimilarity: number | null;
|
|
690
|
-
searchScore: number | null;
|
|
691
598
|
}
|
|
692
599
|
export interface FieldModule {
|
|
693
600
|
id: string | null;
|
|
@@ -699,8 +606,6 @@ export interface FieldModule {
|
|
|
699
606
|
data: unknown | null;
|
|
700
607
|
triggers: string[] | null;
|
|
701
608
|
functions: string[] | null;
|
|
702
|
-
nodeTypeTrgmSimilarity: number | null;
|
|
703
|
-
searchScore: number | null;
|
|
704
609
|
}
|
|
705
610
|
export interface InvitesModule {
|
|
706
611
|
id: string | null;
|
|
@@ -717,11 +622,6 @@ export interface InvitesModule {
|
|
|
717
622
|
prefix: string | null;
|
|
718
623
|
membershipType: number | null;
|
|
719
624
|
entityTableId: string | null;
|
|
720
|
-
invitesTableNameTrgmSimilarity: number | null;
|
|
721
|
-
claimedInvitesTableNameTrgmSimilarity: number | null;
|
|
722
|
-
submitInviteCodeFunctionTrgmSimilarity: number | null;
|
|
723
|
-
prefixTrgmSimilarity: number | null;
|
|
724
|
-
searchScore: number | null;
|
|
725
625
|
}
|
|
726
626
|
export interface LevelsModule {
|
|
727
627
|
id: string | null;
|
|
@@ -750,22 +650,6 @@ export interface LevelsModule {
|
|
|
750
650
|
membershipType: number | null;
|
|
751
651
|
entityTableId: string | null;
|
|
752
652
|
actorTableId: string | null;
|
|
753
|
-
stepsTableNameTrgmSimilarity: number | null;
|
|
754
|
-
achievementsTableNameTrgmSimilarity: number | null;
|
|
755
|
-
levelsTableNameTrgmSimilarity: number | null;
|
|
756
|
-
levelRequirementsTableNameTrgmSimilarity: number | null;
|
|
757
|
-
completedStepTrgmSimilarity: number | null;
|
|
758
|
-
incompletedStepTrgmSimilarity: number | null;
|
|
759
|
-
tgAchievementTrgmSimilarity: number | null;
|
|
760
|
-
tgAchievementToggleTrgmSimilarity: number | null;
|
|
761
|
-
tgAchievementToggleBooleanTrgmSimilarity: number | null;
|
|
762
|
-
tgAchievementBooleanTrgmSimilarity: number | null;
|
|
763
|
-
upsertAchievementTrgmSimilarity: number | null;
|
|
764
|
-
tgUpdateAchievementsTrgmSimilarity: number | null;
|
|
765
|
-
stepsRequiredTrgmSimilarity: number | null;
|
|
766
|
-
levelAchievedTrgmSimilarity: number | null;
|
|
767
|
-
prefixTrgmSimilarity: number | null;
|
|
768
|
-
searchScore: number | null;
|
|
769
653
|
}
|
|
770
654
|
export interface LimitsModule {
|
|
771
655
|
id: string | null;
|
|
@@ -786,16 +670,6 @@ export interface LimitsModule {
|
|
|
786
670
|
membershipType: number | null;
|
|
787
671
|
entityTableId: string | null;
|
|
788
672
|
actorTableId: string | null;
|
|
789
|
-
tableNameTrgmSimilarity: number | null;
|
|
790
|
-
defaultTableNameTrgmSimilarity: number | null;
|
|
791
|
-
limitIncrementFunctionTrgmSimilarity: number | null;
|
|
792
|
-
limitDecrementFunctionTrgmSimilarity: number | null;
|
|
793
|
-
limitIncrementTriggerTrgmSimilarity: number | null;
|
|
794
|
-
limitDecrementTriggerTrgmSimilarity: number | null;
|
|
795
|
-
limitUpdateTriggerTrgmSimilarity: number | null;
|
|
796
|
-
limitCheckFunctionTrgmSimilarity: number | null;
|
|
797
|
-
prefixTrgmSimilarity: number | null;
|
|
798
|
-
searchScore: number | null;
|
|
799
673
|
}
|
|
800
674
|
export interface MembershipTypesModule {
|
|
801
675
|
id: string | null;
|
|
@@ -803,8 +677,6 @@ export interface MembershipTypesModule {
|
|
|
803
677
|
schemaId: string | null;
|
|
804
678
|
tableId: string | null;
|
|
805
679
|
tableName: string | null;
|
|
806
|
-
tableNameTrgmSimilarity: number | null;
|
|
807
|
-
searchScore: number | null;
|
|
808
680
|
}
|
|
809
681
|
export interface MembershipsModule {
|
|
810
682
|
id: string | null;
|
|
@@ -838,19 +710,6 @@ export interface MembershipsModule {
|
|
|
838
710
|
entityIdsByMask: string | null;
|
|
839
711
|
entityIdsByPerm: string | null;
|
|
840
712
|
entityIdsFunction: string | null;
|
|
841
|
-
membershipsTableNameTrgmSimilarity: number | null;
|
|
842
|
-
membersTableNameTrgmSimilarity: number | null;
|
|
843
|
-
membershipDefaultsTableNameTrgmSimilarity: number | null;
|
|
844
|
-
grantsTableNameTrgmSimilarity: number | null;
|
|
845
|
-
adminGrantsTableNameTrgmSimilarity: number | null;
|
|
846
|
-
ownerGrantsTableNameTrgmSimilarity: number | null;
|
|
847
|
-
prefixTrgmSimilarity: number | null;
|
|
848
|
-
actorMaskCheckTrgmSimilarity: number | null;
|
|
849
|
-
actorPermCheckTrgmSimilarity: number | null;
|
|
850
|
-
entityIdsByMaskTrgmSimilarity: number | null;
|
|
851
|
-
entityIdsByPermTrgmSimilarity: number | null;
|
|
852
|
-
entityIdsFunctionTrgmSimilarity: number | null;
|
|
853
|
-
searchScore: number | null;
|
|
854
713
|
}
|
|
855
714
|
export interface PermissionsModule {
|
|
856
715
|
id: string | null;
|
|
@@ -870,14 +729,6 @@ export interface PermissionsModule {
|
|
|
870
729
|
getMask: string | null;
|
|
871
730
|
getByMask: string | null;
|
|
872
731
|
getMaskByName: string | null;
|
|
873
|
-
tableNameTrgmSimilarity: number | null;
|
|
874
|
-
defaultTableNameTrgmSimilarity: number | null;
|
|
875
|
-
prefixTrgmSimilarity: number | null;
|
|
876
|
-
getPaddedMaskTrgmSimilarity: number | null;
|
|
877
|
-
getMaskTrgmSimilarity: number | null;
|
|
878
|
-
getByMaskTrgmSimilarity: number | null;
|
|
879
|
-
getMaskByNameTrgmSimilarity: number | null;
|
|
880
|
-
searchScore: number | null;
|
|
881
732
|
}
|
|
882
733
|
export interface PhoneNumbersModule {
|
|
883
734
|
id: string | null;
|
|
@@ -887,8 +738,6 @@ export interface PhoneNumbersModule {
|
|
|
887
738
|
tableId: string | null;
|
|
888
739
|
ownerTableId: string | null;
|
|
889
740
|
tableName: string | null;
|
|
890
|
-
tableNameTrgmSimilarity: number | null;
|
|
891
|
-
searchScore: number | null;
|
|
892
741
|
}
|
|
893
742
|
export interface ProfilesModule {
|
|
894
743
|
id: string | null;
|
|
@@ -909,12 +758,6 @@ export interface ProfilesModule {
|
|
|
909
758
|
permissionsTableId: string | null;
|
|
910
759
|
membershipsTableId: string | null;
|
|
911
760
|
prefix: string | null;
|
|
912
|
-
tableNameTrgmSimilarity: number | null;
|
|
913
|
-
profilePermissionsTableNameTrgmSimilarity: number | null;
|
|
914
|
-
profileGrantsTableNameTrgmSimilarity: number | null;
|
|
915
|
-
profileDefinitionGrantsTableNameTrgmSimilarity: number | null;
|
|
916
|
-
prefixTrgmSimilarity: number | null;
|
|
917
|
-
searchScore: number | null;
|
|
918
761
|
}
|
|
919
762
|
export interface SecretsModule {
|
|
920
763
|
id: string | null;
|
|
@@ -922,8 +765,6 @@ export interface SecretsModule {
|
|
|
922
765
|
schemaId: string | null;
|
|
923
766
|
tableId: string | null;
|
|
924
767
|
tableName: string | null;
|
|
925
|
-
tableNameTrgmSimilarity: number | null;
|
|
926
|
-
searchScore: number | null;
|
|
927
768
|
}
|
|
928
769
|
export interface SessionsModule {
|
|
929
770
|
id: string | null;
|
|
@@ -937,10 +778,6 @@ export interface SessionsModule {
|
|
|
937
778
|
sessionsTable: string | null;
|
|
938
779
|
sessionCredentialsTable: string | null;
|
|
939
780
|
authSettingsTable: string | null;
|
|
940
|
-
sessionsTableTrgmSimilarity: number | null;
|
|
941
|
-
sessionCredentialsTableTrgmSimilarity: number | null;
|
|
942
|
-
authSettingsTableTrgmSimilarity: number | null;
|
|
943
|
-
searchScore: number | null;
|
|
944
781
|
}
|
|
945
782
|
export interface UserAuthModule {
|
|
946
783
|
id: string | null;
|
|
@@ -969,23 +806,6 @@ export interface UserAuthModule {
|
|
|
969
806
|
signInOneTimeTokenFunction: string | null;
|
|
970
807
|
oneTimeTokenFunction: string | null;
|
|
971
808
|
extendTokenExpires: string | null;
|
|
972
|
-
auditsTableNameTrgmSimilarity: number | null;
|
|
973
|
-
signInFunctionTrgmSimilarity: number | null;
|
|
974
|
-
signUpFunctionTrgmSimilarity: number | null;
|
|
975
|
-
signOutFunctionTrgmSimilarity: number | null;
|
|
976
|
-
setPasswordFunctionTrgmSimilarity: number | null;
|
|
977
|
-
resetPasswordFunctionTrgmSimilarity: number | null;
|
|
978
|
-
forgotPasswordFunctionTrgmSimilarity: number | null;
|
|
979
|
-
sendVerificationEmailFunctionTrgmSimilarity: number | null;
|
|
980
|
-
verifyEmailFunctionTrgmSimilarity: number | null;
|
|
981
|
-
verifyPasswordFunctionTrgmSimilarity: number | null;
|
|
982
|
-
checkPasswordFunctionTrgmSimilarity: number | null;
|
|
983
|
-
sendAccountDeletionEmailFunctionTrgmSimilarity: number | null;
|
|
984
|
-
deleteAccountFunctionTrgmSimilarity: number | null;
|
|
985
|
-
signInOneTimeTokenFunctionTrgmSimilarity: number | null;
|
|
986
|
-
oneTimeTokenFunctionTrgmSimilarity: number | null;
|
|
987
|
-
extendTokenExpiresTrgmSimilarity: number | null;
|
|
988
|
-
searchScore: number | null;
|
|
989
809
|
}
|
|
990
810
|
export interface UsersModule {
|
|
991
811
|
id: string | null;
|
|
@@ -995,19 +815,47 @@ export interface UsersModule {
|
|
|
995
815
|
tableName: string | null;
|
|
996
816
|
typeTableId: string | null;
|
|
997
817
|
typeTableName: string | null;
|
|
998
|
-
tableNameTrgmSimilarity: number | null;
|
|
999
|
-
typeTableNameTrgmSimilarity: number | null;
|
|
1000
|
-
searchScore: number | null;
|
|
1001
818
|
}
|
|
1002
|
-
export interface
|
|
819
|
+
export interface Blueprint {
|
|
1003
820
|
id: string | null;
|
|
821
|
+
ownerId: string | null;
|
|
1004
822
|
databaseId: string | null;
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
823
|
+
name: string | null;
|
|
824
|
+
displayName: string | null;
|
|
825
|
+
description: string | null;
|
|
826
|
+
definition: unknown | null;
|
|
827
|
+
templateId: string | null;
|
|
828
|
+
status: string | null;
|
|
829
|
+
constructedAt: string | null;
|
|
830
|
+
errorDetails: string | null;
|
|
831
|
+
refMap: unknown | null;
|
|
832
|
+
constructedDefinition: unknown | null;
|
|
833
|
+
definitionHash: string | null;
|
|
834
|
+
tableHashes: unknown | null;
|
|
835
|
+
createdAt: string | null;
|
|
836
|
+
updatedAt: string | null;
|
|
837
|
+
}
|
|
838
|
+
export interface BlueprintTemplate {
|
|
839
|
+
id: string | null;
|
|
840
|
+
name: string | null;
|
|
841
|
+
version: string | null;
|
|
842
|
+
displayName: string | null;
|
|
843
|
+
description: string | null;
|
|
844
|
+
ownerId: string | null;
|
|
845
|
+
visibility: string | null;
|
|
846
|
+
categories: string[] | null;
|
|
847
|
+
tags: string[] | null;
|
|
848
|
+
definition: unknown | null;
|
|
849
|
+
definitionSchemaVersion: string | null;
|
|
850
|
+
source: string | null;
|
|
851
|
+
complexity: string | null;
|
|
852
|
+
copyCount: number | null;
|
|
853
|
+
forkCount: number | null;
|
|
854
|
+
forkedFromId: string | null;
|
|
855
|
+
definitionHash: string | null;
|
|
856
|
+
tableHashes: unknown | null;
|
|
857
|
+
createdAt: string | null;
|
|
858
|
+
updatedAt: string | null;
|
|
1011
859
|
}
|
|
1012
860
|
export interface DatabaseProvisionModule {
|
|
1013
861
|
id: string | null;
|
|
@@ -1024,12 +872,6 @@ export interface DatabaseProvisionModule {
|
|
|
1024
872
|
createdAt: string | null;
|
|
1025
873
|
updatedAt: string | null;
|
|
1026
874
|
completedAt: string | null;
|
|
1027
|
-
databaseNameTrgmSimilarity: number | null;
|
|
1028
|
-
subdomainTrgmSimilarity: number | null;
|
|
1029
|
-
domainTrgmSimilarity: number | null;
|
|
1030
|
-
statusTrgmSimilarity: number | null;
|
|
1031
|
-
errorMessageTrgmSimilarity: number | null;
|
|
1032
|
-
searchScore: number | null;
|
|
1033
875
|
}
|
|
1034
876
|
export interface AppAdminGrant {
|
|
1035
877
|
id: string | null;
|
|
@@ -1117,8 +959,6 @@ export interface OrgChartEdge {
|
|
|
1117
959
|
parentId: string | null;
|
|
1118
960
|
positionTitle: string | null;
|
|
1119
961
|
positionLevel: number | null;
|
|
1120
|
-
positionTitleTrgmSimilarity: number | null;
|
|
1121
|
-
searchScore: number | null;
|
|
1122
962
|
}
|
|
1123
963
|
export interface OrgChartEdgeGrant {
|
|
1124
964
|
id: string | null;
|
|
@@ -1130,8 +970,11 @@ export interface OrgChartEdgeGrant {
|
|
|
1130
970
|
positionTitle: string | null;
|
|
1131
971
|
positionLevel: number | null;
|
|
1132
972
|
createdAt: string | null;
|
|
1133
|
-
|
|
1134
|
-
|
|
973
|
+
}
|
|
974
|
+
export interface OrgPermissionDefault {
|
|
975
|
+
id: string | null;
|
|
976
|
+
permissions: string | null;
|
|
977
|
+
entityId: string | null;
|
|
1135
978
|
}
|
|
1136
979
|
export interface AppLimit {
|
|
1137
980
|
id: string | null;
|
|
@@ -1164,6 +1007,53 @@ export interface AppAchievement {
|
|
|
1164
1007
|
createdAt: string | null;
|
|
1165
1008
|
updatedAt: string | null;
|
|
1166
1009
|
}
|
|
1010
|
+
export interface AppLevel {
|
|
1011
|
+
id: string | null;
|
|
1012
|
+
name: string | null;
|
|
1013
|
+
description: string | null;
|
|
1014
|
+
image: ConstructiveInternalTypeImage | null;
|
|
1015
|
+
ownerId: string | null;
|
|
1016
|
+
createdAt: string | null;
|
|
1017
|
+
updatedAt: string | null;
|
|
1018
|
+
}
|
|
1019
|
+
export interface Email {
|
|
1020
|
+
id: string | null;
|
|
1021
|
+
ownerId: string | null;
|
|
1022
|
+
email: ConstructiveInternalTypeEmail | null;
|
|
1023
|
+
isVerified: boolean | null;
|
|
1024
|
+
isPrimary: boolean | null;
|
|
1025
|
+
createdAt: string | null;
|
|
1026
|
+
updatedAt: string | null;
|
|
1027
|
+
}
|
|
1028
|
+
export interface PhoneNumber {
|
|
1029
|
+
id: string | null;
|
|
1030
|
+
ownerId: string | null;
|
|
1031
|
+
cc: string | null;
|
|
1032
|
+
number: string | null;
|
|
1033
|
+
isVerified: boolean | null;
|
|
1034
|
+
isPrimary: boolean | null;
|
|
1035
|
+
createdAt: string | null;
|
|
1036
|
+
updatedAt: string | null;
|
|
1037
|
+
}
|
|
1038
|
+
export interface CryptoAddress {
|
|
1039
|
+
id: string | null;
|
|
1040
|
+
ownerId: string | null;
|
|
1041
|
+
address: string | null;
|
|
1042
|
+
isVerified: boolean | null;
|
|
1043
|
+
isPrimary: boolean | null;
|
|
1044
|
+
createdAt: string | null;
|
|
1045
|
+
updatedAt: string | null;
|
|
1046
|
+
}
|
|
1047
|
+
export interface ConnectedAccount {
|
|
1048
|
+
id: string | null;
|
|
1049
|
+
ownerId: string | null;
|
|
1050
|
+
service: string | null;
|
|
1051
|
+
identifier: string | null;
|
|
1052
|
+
details: unknown | null;
|
|
1053
|
+
isVerified: boolean | null;
|
|
1054
|
+
createdAt: string | null;
|
|
1055
|
+
updatedAt: string | null;
|
|
1056
|
+
}
|
|
1167
1057
|
export interface Invite {
|
|
1168
1058
|
id: string | null;
|
|
1169
1059
|
email: ConstructiveInternalTypeEmail | null;
|
|
@@ -1177,8 +1067,6 @@ export interface Invite {
|
|
|
1177
1067
|
expiresAt: string | null;
|
|
1178
1068
|
createdAt: string | null;
|
|
1179
1069
|
updatedAt: string | null;
|
|
1180
|
-
inviteTokenTrgmSimilarity: number | null;
|
|
1181
|
-
searchScore: number | null;
|
|
1182
1070
|
}
|
|
1183
1071
|
export interface ClaimedInvite {
|
|
1184
1072
|
id: string | null;
|
|
@@ -1203,8 +1091,6 @@ export interface OrgInvite {
|
|
|
1203
1091
|
createdAt: string | null;
|
|
1204
1092
|
updatedAt: string | null;
|
|
1205
1093
|
entityId: string | null;
|
|
1206
|
-
inviteTokenTrgmSimilarity: number | null;
|
|
1207
|
-
searchScore: number | null;
|
|
1208
1094
|
}
|
|
1209
1095
|
export interface OrgClaimedInvite {
|
|
1210
1096
|
id: string | null;
|
|
@@ -1215,14 +1101,22 @@ export interface OrgClaimedInvite {
|
|
|
1215
1101
|
updatedAt: string | null;
|
|
1216
1102
|
entityId: string | null;
|
|
1217
1103
|
}
|
|
1104
|
+
export interface AuditLog {
|
|
1105
|
+
id: string | null;
|
|
1106
|
+
event: string | null;
|
|
1107
|
+
actorId: string | null;
|
|
1108
|
+
origin: ConstructiveInternalTypeOrigin | null;
|
|
1109
|
+
userAgent: string | null;
|
|
1110
|
+
ipAddress: string | null;
|
|
1111
|
+
success: boolean | null;
|
|
1112
|
+
createdAt: string | null;
|
|
1113
|
+
}
|
|
1218
1114
|
export interface Ref {
|
|
1219
1115
|
id: string | null;
|
|
1220
1116
|
name: string | null;
|
|
1221
1117
|
databaseId: string | null;
|
|
1222
1118
|
storeId: string | null;
|
|
1223
1119
|
commitId: string | null;
|
|
1224
|
-
nameTrgmSimilarity: number | null;
|
|
1225
|
-
searchScore: number | null;
|
|
1226
1120
|
}
|
|
1227
1121
|
export interface Store {
|
|
1228
1122
|
id: string | null;
|
|
@@ -1230,46 +1124,15 @@ export interface Store {
|
|
|
1230
1124
|
databaseId: string | null;
|
|
1231
1125
|
hash: string | null;
|
|
1232
1126
|
createdAt: string | null;
|
|
1233
|
-
nameTrgmSimilarity: number | null;
|
|
1234
|
-
searchScore: number | null;
|
|
1235
1127
|
}
|
|
1236
1128
|
export interface AppPermissionDefault {
|
|
1237
1129
|
id: string | null;
|
|
1238
1130
|
permissions: string | null;
|
|
1239
1131
|
}
|
|
1240
|
-
export interface CryptoAddress {
|
|
1241
|
-
id: string | null;
|
|
1242
|
-
ownerId: string | null;
|
|
1243
|
-
address: string | null;
|
|
1244
|
-
isVerified: boolean | null;
|
|
1245
|
-
isPrimary: boolean | null;
|
|
1246
|
-
createdAt: string | null;
|
|
1247
|
-
updatedAt: string | null;
|
|
1248
|
-
addressTrgmSimilarity: number | null;
|
|
1249
|
-
searchScore: number | null;
|
|
1250
|
-
}
|
|
1251
1132
|
export interface RoleType {
|
|
1252
1133
|
id: number | null;
|
|
1253
1134
|
name: string | null;
|
|
1254
1135
|
}
|
|
1255
|
-
export interface OrgPermissionDefault {
|
|
1256
|
-
id: string | null;
|
|
1257
|
-
permissions: string | null;
|
|
1258
|
-
entityId: string | null;
|
|
1259
|
-
}
|
|
1260
|
-
export interface PhoneNumber {
|
|
1261
|
-
id: string | null;
|
|
1262
|
-
ownerId: string | null;
|
|
1263
|
-
cc: string | null;
|
|
1264
|
-
number: string | null;
|
|
1265
|
-
isVerified: boolean | null;
|
|
1266
|
-
isPrimary: boolean | null;
|
|
1267
|
-
createdAt: string | null;
|
|
1268
|
-
updatedAt: string | null;
|
|
1269
|
-
ccTrgmSimilarity: number | null;
|
|
1270
|
-
numberTrgmSimilarity: number | null;
|
|
1271
|
-
searchScore: number | null;
|
|
1272
|
-
}
|
|
1273
1136
|
export interface AppLimitDefault {
|
|
1274
1137
|
id: string | null;
|
|
1275
1138
|
name: string | null;
|
|
@@ -1280,19 +1143,6 @@ export interface OrgLimitDefault {
|
|
|
1280
1143
|
name: string | null;
|
|
1281
1144
|
max: number | null;
|
|
1282
1145
|
}
|
|
1283
|
-
export interface ConnectedAccount {
|
|
1284
|
-
id: string | null;
|
|
1285
|
-
ownerId: string | null;
|
|
1286
|
-
service: string | null;
|
|
1287
|
-
identifier: string | null;
|
|
1288
|
-
details: unknown | null;
|
|
1289
|
-
isVerified: boolean | null;
|
|
1290
|
-
createdAt: string | null;
|
|
1291
|
-
updatedAt: string | null;
|
|
1292
|
-
serviceTrgmSimilarity: number | null;
|
|
1293
|
-
identifierTrgmSimilarity: number | null;
|
|
1294
|
-
searchScore: number | null;
|
|
1295
|
-
}
|
|
1296
1146
|
export interface NodeTypeRegistry {
|
|
1297
1147
|
name: string | null;
|
|
1298
1148
|
slug: string | null;
|
|
@@ -1303,21 +1153,12 @@ export interface NodeTypeRegistry {
|
|
|
1303
1153
|
tags: string[] | null;
|
|
1304
1154
|
createdAt: string | null;
|
|
1305
1155
|
updatedAt: string | null;
|
|
1306
|
-
nameTrgmSimilarity: number | null;
|
|
1307
|
-
slugTrgmSimilarity: number | null;
|
|
1308
|
-
categoryTrgmSimilarity: number | null;
|
|
1309
|
-
displayNameTrgmSimilarity: number | null;
|
|
1310
|
-
descriptionTrgmSimilarity: number | null;
|
|
1311
|
-
searchScore: number | null;
|
|
1312
1156
|
}
|
|
1313
1157
|
export interface MembershipType {
|
|
1314
1158
|
id: number | null;
|
|
1315
1159
|
name: string | null;
|
|
1316
1160
|
description: string | null;
|
|
1317
1161
|
prefix: string | null;
|
|
1318
|
-
descriptionTrgmSimilarity: number | null;
|
|
1319
|
-
prefixTrgmSimilarity: number | null;
|
|
1320
|
-
searchScore: number | null;
|
|
1321
1162
|
}
|
|
1322
1163
|
export interface Commit {
|
|
1323
1164
|
id: string | null;
|
|
@@ -1329,8 +1170,6 @@ export interface Commit {
|
|
|
1329
1170
|
committerId: string | null;
|
|
1330
1171
|
treeId: string | null;
|
|
1331
1172
|
date: string | null;
|
|
1332
|
-
messageTrgmSimilarity: number | null;
|
|
1333
|
-
searchScore: number | null;
|
|
1334
1173
|
}
|
|
1335
1174
|
export interface AppMembershipDefault {
|
|
1336
1175
|
id: string | null;
|
|
@@ -1353,11 +1192,6 @@ export interface RlsModule {
|
|
|
1353
1192
|
authenticateStrict: string | null;
|
|
1354
1193
|
currentRole: string | null;
|
|
1355
1194
|
currentRoleId: string | null;
|
|
1356
|
-
authenticateTrgmSimilarity: number | null;
|
|
1357
|
-
authenticateStrictTrgmSimilarity: number | null;
|
|
1358
|
-
currentRoleTrgmSimilarity: number | null;
|
|
1359
|
-
currentRoleIdTrgmSimilarity: number | null;
|
|
1360
|
-
searchScore: number | null;
|
|
1361
1195
|
}
|
|
1362
1196
|
export interface OrgMembershipDefault {
|
|
1363
1197
|
id: string | null;
|
|
@@ -1370,29 +1204,6 @@ export interface OrgMembershipDefault {
|
|
|
1370
1204
|
deleteMemberCascadeGroups: boolean | null;
|
|
1371
1205
|
createGroupsCascadeMembers: boolean | null;
|
|
1372
1206
|
}
|
|
1373
|
-
export interface AuditLog {
|
|
1374
|
-
id: string | null;
|
|
1375
|
-
event: string | null;
|
|
1376
|
-
actorId: string | null;
|
|
1377
|
-
origin: ConstructiveInternalTypeOrigin | null;
|
|
1378
|
-
userAgent: string | null;
|
|
1379
|
-
ipAddress: string | null;
|
|
1380
|
-
success: boolean | null;
|
|
1381
|
-
createdAt: string | null;
|
|
1382
|
-
userAgentTrgmSimilarity: number | null;
|
|
1383
|
-
searchScore: number | null;
|
|
1384
|
-
}
|
|
1385
|
-
export interface AppLevel {
|
|
1386
|
-
id: string | null;
|
|
1387
|
-
name: string | null;
|
|
1388
|
-
description: string | null;
|
|
1389
|
-
image: ConstructiveInternalTypeImage | null;
|
|
1390
|
-
ownerId: string | null;
|
|
1391
|
-
createdAt: string | null;
|
|
1392
|
-
updatedAt: string | null;
|
|
1393
|
-
descriptionTrgmSimilarity: number | null;
|
|
1394
|
-
searchScore: number | null;
|
|
1395
|
-
}
|
|
1396
1207
|
export interface SqlMigration {
|
|
1397
1208
|
id: number | null;
|
|
1398
1209
|
name: string | null;
|
|
@@ -1407,22 +1218,6 @@ export interface SqlMigration {
|
|
|
1407
1218
|
action: string | null;
|
|
1408
1219
|
actionId: string | null;
|
|
1409
1220
|
actorId: string | null;
|
|
1410
|
-
nameTrgmSimilarity: number | null;
|
|
1411
|
-
deployTrgmSimilarity: number | null;
|
|
1412
|
-
contentTrgmSimilarity: number | null;
|
|
1413
|
-
revertTrgmSimilarity: number | null;
|
|
1414
|
-
verifyTrgmSimilarity: number | null;
|
|
1415
|
-
actionTrgmSimilarity: number | null;
|
|
1416
|
-
searchScore: number | null;
|
|
1417
|
-
}
|
|
1418
|
-
export interface Email {
|
|
1419
|
-
id: string | null;
|
|
1420
|
-
ownerId: string | null;
|
|
1421
|
-
email: ConstructiveInternalTypeEmail | null;
|
|
1422
|
-
isVerified: boolean | null;
|
|
1423
|
-
isPrimary: boolean | null;
|
|
1424
|
-
createdAt: string | null;
|
|
1425
|
-
updatedAt: string | null;
|
|
1426
1221
|
}
|
|
1427
1222
|
export interface User {
|
|
1428
1223
|
id: string | null;
|
|
@@ -1451,8 +1246,6 @@ export interface AstMigration {
|
|
|
1451
1246
|
action: string | null;
|
|
1452
1247
|
actionId: string | null;
|
|
1453
1248
|
actorId: string | null;
|
|
1454
|
-
actionTrgmSimilarity: number | null;
|
|
1455
|
-
searchScore: number | null;
|
|
1456
1249
|
}
|
|
1457
1250
|
export interface AppMembership {
|
|
1458
1251
|
id: string | null;
|
|
@@ -1493,17 +1286,6 @@ export interface HierarchyModule {
|
|
|
1493
1286
|
getManagersFunction: string | null;
|
|
1494
1287
|
isManagerOfFunction: string | null;
|
|
1495
1288
|
createdAt: string | null;
|
|
1496
|
-
chartEdgesTableNameTrgmSimilarity: number | null;
|
|
1497
|
-
hierarchySprtTableNameTrgmSimilarity: number | null;
|
|
1498
|
-
chartEdgeGrantsTableNameTrgmSimilarity: number | null;
|
|
1499
|
-
prefixTrgmSimilarity: number | null;
|
|
1500
|
-
privateSchemaNameTrgmSimilarity: number | null;
|
|
1501
|
-
sprtTableNameTrgmSimilarity: number | null;
|
|
1502
|
-
rebuildHierarchyFunctionTrgmSimilarity: number | null;
|
|
1503
|
-
getSubordinatesFunctionTrgmSimilarity: number | null;
|
|
1504
|
-
getManagersFunctionTrgmSimilarity: number | null;
|
|
1505
|
-
isManagerOfFunctionTrgmSimilarity: number | null;
|
|
1506
|
-
searchScore: number | null;
|
|
1507
1289
|
}
|
|
1508
1290
|
export interface StringFilter {
|
|
1509
1291
|
isNull?: boolean;
|