@constructive-io/react 0.8.0 → 0.8.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 +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 +2 -2
- 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/README.md
CHANGED
|
@@ -4,14 +4,6 @@
|
|
|
4
4
|
<img height="120" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
-
<p align="center" width="100%">
|
|
8
|
-
<a href="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml">
|
|
9
|
-
<img height="20" src="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml/badge.svg" />
|
|
10
|
-
</a>
|
|
11
|
-
<a href="https://github.com/constructive-io/constructive/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
|
|
12
|
-
<a href="https://www.npmjs.com/package/@constructive-io/react"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/constructive?filename=sdk%2Fconstructive-react%2Fpackage.json"/></a>
|
|
13
|
-
</p>
|
|
14
|
-
|
|
15
7
|
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
|
|
16
8
|
|
|
17
9
|
## APIs
|
|
@@ -250,10 +250,6 @@ export interface AppPermission {
|
|
|
250
250
|
bitstr?: string | null;
|
|
251
251
|
/** Human-readable description of what this permission allows */
|
|
252
252
|
description?: string | null;
|
|
253
|
-
/** TRGM similarity when searching `description`. Returns null when no trgm search filter is active. */
|
|
254
|
-
descriptionTrgmSimilarity?: number | null;
|
|
255
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
256
|
-
searchScore?: number | null;
|
|
257
253
|
}
|
|
258
254
|
/** Defines available permissions as named bits within a bitmask, used by the RBAC system for access control */
|
|
259
255
|
export interface OrgPermission {
|
|
@@ -266,10 +262,6 @@ export interface OrgPermission {
|
|
|
266
262
|
bitstr?: string | null;
|
|
267
263
|
/** Human-readable description of what this permission allows */
|
|
268
264
|
description?: string | null;
|
|
269
|
-
/** TRGM similarity when searching `description`. Returns null when no trgm search filter is active. */
|
|
270
|
-
descriptionTrgmSimilarity?: number | null;
|
|
271
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
272
|
-
searchScore?: number | null;
|
|
273
265
|
}
|
|
274
266
|
/** Defines the specific requirements that must be met to achieve a level */
|
|
275
267
|
export interface AppLevelRequirement {
|
|
@@ -286,10 +278,6 @@ export interface AppLevelRequirement {
|
|
|
286
278
|
priority?: number | null;
|
|
287
279
|
createdAt?: string | null;
|
|
288
280
|
updatedAt?: string | null;
|
|
289
|
-
/** TRGM similarity when searching `description`. Returns null when no trgm search filter is active. */
|
|
290
|
-
descriptionTrgmSimilarity?: number | null;
|
|
291
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
292
|
-
searchScore?: number | null;
|
|
293
281
|
}
|
|
294
282
|
/** Simplified view of active members in an entity, used for listing who belongs to an org or group */
|
|
295
283
|
export interface OrgMember {
|
|
@@ -388,7 +376,7 @@ export interface OrgChartEdgeGrant {
|
|
|
388
376
|
childId?: string | null;
|
|
389
377
|
/** User ID of the manager being assigned; NULL for top-level positions */
|
|
390
378
|
parentId?: string | null;
|
|
391
|
-
/** User ID of the admin who performed this grant or revocation */
|
|
379
|
+
/** User ID of the admin who performed this grant or revocation; NULL if grantor was deleted */
|
|
392
380
|
grantorId?: string | null;
|
|
393
381
|
/** TRUE to add/update the edge, FALSE to remove it */
|
|
394
382
|
isGrant?: boolean | null;
|
|
@@ -398,10 +386,6 @@ export interface OrgChartEdgeGrant {
|
|
|
398
386
|
positionLevel?: number | null;
|
|
399
387
|
/** Timestamp when this grant or revocation was recorded */
|
|
400
388
|
createdAt?: string | null;
|
|
401
|
-
/** TRGM similarity when searching `positionTitle`. Returns null when no trgm search filter is active. */
|
|
402
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
403
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
404
|
-
searchScore?: number | null;
|
|
405
389
|
}
|
|
406
390
|
/** Defines the different scopes of membership (e.g. App Member, Organization Member, Group Member) */
|
|
407
391
|
export interface MembershipType {
|
|
@@ -413,12 +397,6 @@ export interface MembershipType {
|
|
|
413
397
|
description?: string | null;
|
|
414
398
|
/** Short prefix used to namespace tables and functions for this membership scope */
|
|
415
399
|
prefix?: string | null;
|
|
416
|
-
/** TRGM similarity when searching `description`. Returns null when no trgm search filter is active. */
|
|
417
|
-
descriptionTrgmSimilarity?: number | null;
|
|
418
|
-
/** TRGM similarity when searching `prefix`. Returns null when no trgm search filter is active. */
|
|
419
|
-
prefixTrgmSimilarity?: number | null;
|
|
420
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
421
|
-
searchScore?: number | null;
|
|
422
400
|
}
|
|
423
401
|
/** Tracks per-actor usage counts against configurable maximum limits */
|
|
424
402
|
export interface AppLimit {
|
|
@@ -547,10 +525,6 @@ export interface OrgChartEdge {
|
|
|
547
525
|
positionTitle?: string | null;
|
|
548
526
|
/** Numeric seniority level for this position (higher = more senior) */
|
|
549
527
|
positionLevel?: number | null;
|
|
550
|
-
/** TRGM similarity when searching `positionTitle`. Returns null when no trgm search filter is active. */
|
|
551
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
552
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
553
|
-
searchScore?: number | null;
|
|
554
528
|
}
|
|
555
529
|
/** Default membership settings per entity, controlling initial approval and verification state for new members */
|
|
556
530
|
export interface OrgMembershipDefault {
|
|
@@ -649,10 +623,6 @@ export interface Invite {
|
|
|
649
623
|
expiresAt?: string | null;
|
|
650
624
|
createdAt?: string | null;
|
|
651
625
|
updatedAt?: string | null;
|
|
652
|
-
/** TRGM similarity when searching `inviteToken`. Returns null when no trgm search filter is active. */
|
|
653
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
654
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
655
|
-
searchScore?: number | null;
|
|
656
626
|
}
|
|
657
627
|
/** Defines available levels that users can achieve by completing requirements */
|
|
658
628
|
export interface AppLevel {
|
|
@@ -667,10 +637,6 @@ export interface AppLevel {
|
|
|
667
637
|
ownerId?: string | null;
|
|
668
638
|
createdAt?: string | null;
|
|
669
639
|
updatedAt?: string | null;
|
|
670
|
-
/** TRGM similarity when searching `description`. Returns null when no trgm search filter is active. */
|
|
671
|
-
descriptionTrgmSimilarity?: number | null;
|
|
672
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
673
|
-
searchScore?: number | null;
|
|
674
640
|
}
|
|
675
641
|
/** Invitation records sent to prospective members via email, with token-based redemption and expiration */
|
|
676
642
|
export interface OrgInvite {
|
|
@@ -698,10 +664,6 @@ export interface OrgInvite {
|
|
|
698
664
|
createdAt?: string | null;
|
|
699
665
|
updatedAt?: string | null;
|
|
700
666
|
entityId?: string | null;
|
|
701
|
-
/** TRGM similarity when searching `inviteToken`. Returns null when no trgm search filter is active. */
|
|
702
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
703
|
-
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
704
|
-
searchScore?: number | null;
|
|
705
667
|
}
|
|
706
668
|
export interface ConnectionResult<T> {
|
|
707
669
|
nodes: T[];
|
|
@@ -824,8 +786,6 @@ export type AppPermissionSelect = {
|
|
|
824
786
|
bitnum?: boolean;
|
|
825
787
|
bitstr?: boolean;
|
|
826
788
|
description?: boolean;
|
|
827
|
-
descriptionTrgmSimilarity?: boolean;
|
|
828
|
-
searchScore?: boolean;
|
|
829
789
|
};
|
|
830
790
|
export type OrgPermissionSelect = {
|
|
831
791
|
id?: boolean;
|
|
@@ -833,8 +793,6 @@ export type OrgPermissionSelect = {
|
|
|
833
793
|
bitnum?: boolean;
|
|
834
794
|
bitstr?: boolean;
|
|
835
795
|
description?: boolean;
|
|
836
|
-
descriptionTrgmSimilarity?: boolean;
|
|
837
|
-
searchScore?: boolean;
|
|
838
796
|
};
|
|
839
797
|
export type AppLevelRequirementSelect = {
|
|
840
798
|
id?: boolean;
|
|
@@ -845,8 +803,6 @@ export type AppLevelRequirementSelect = {
|
|
|
845
803
|
priority?: boolean;
|
|
846
804
|
createdAt?: boolean;
|
|
847
805
|
updatedAt?: boolean;
|
|
848
|
-
descriptionTrgmSimilarity?: boolean;
|
|
849
|
-
searchScore?: boolean;
|
|
850
806
|
};
|
|
851
807
|
export type OrgMemberSelect = {
|
|
852
808
|
id?: boolean;
|
|
@@ -917,17 +873,12 @@ export type OrgChartEdgeGrantSelect = {
|
|
|
917
873
|
positionTitle?: boolean;
|
|
918
874
|
positionLevel?: boolean;
|
|
919
875
|
createdAt?: boolean;
|
|
920
|
-
positionTitleTrgmSimilarity?: boolean;
|
|
921
|
-
searchScore?: boolean;
|
|
922
876
|
};
|
|
923
877
|
export type MembershipTypeSelect = {
|
|
924
878
|
id?: boolean;
|
|
925
879
|
name?: boolean;
|
|
926
880
|
description?: boolean;
|
|
927
881
|
prefix?: boolean;
|
|
928
|
-
descriptionTrgmSimilarity?: boolean;
|
|
929
|
-
prefixTrgmSimilarity?: boolean;
|
|
930
|
-
searchScore?: boolean;
|
|
931
882
|
};
|
|
932
883
|
export type AppLimitSelect = {
|
|
933
884
|
id?: boolean;
|
|
@@ -1014,8 +965,6 @@ export type OrgChartEdgeSelect = {
|
|
|
1014
965
|
parentId?: boolean;
|
|
1015
966
|
positionTitle?: boolean;
|
|
1016
967
|
positionLevel?: boolean;
|
|
1017
|
-
positionTitleTrgmSimilarity?: boolean;
|
|
1018
|
-
searchScore?: boolean;
|
|
1019
968
|
};
|
|
1020
969
|
export type OrgMembershipDefaultSelect = {
|
|
1021
970
|
id?: boolean;
|
|
@@ -1077,8 +1026,6 @@ export type InviteSelect = {
|
|
|
1077
1026
|
expiresAt?: boolean;
|
|
1078
1027
|
createdAt?: boolean;
|
|
1079
1028
|
updatedAt?: boolean;
|
|
1080
|
-
inviteTokenTrgmSimilarity?: boolean;
|
|
1081
|
-
searchScore?: boolean;
|
|
1082
1029
|
};
|
|
1083
1030
|
export type AppLevelSelect = {
|
|
1084
1031
|
id?: boolean;
|
|
@@ -1088,8 +1035,6 @@ export type AppLevelSelect = {
|
|
|
1088
1035
|
ownerId?: boolean;
|
|
1089
1036
|
createdAt?: boolean;
|
|
1090
1037
|
updatedAt?: boolean;
|
|
1091
|
-
descriptionTrgmSimilarity?: boolean;
|
|
1092
|
-
searchScore?: boolean;
|
|
1093
1038
|
};
|
|
1094
1039
|
export type OrgInviteSelect = {
|
|
1095
1040
|
id?: boolean;
|
|
@@ -1106,8 +1051,6 @@ export type OrgInviteSelect = {
|
|
|
1106
1051
|
createdAt?: boolean;
|
|
1107
1052
|
updatedAt?: boolean;
|
|
1108
1053
|
entityId?: boolean;
|
|
1109
|
-
inviteTokenTrgmSimilarity?: boolean;
|
|
1110
|
-
searchScore?: boolean;
|
|
1111
1054
|
};
|
|
1112
1055
|
export interface OrgGetManagersRecordFilter {
|
|
1113
1056
|
userId?: UUIDFilter;
|
|
@@ -1129,8 +1072,6 @@ export interface AppPermissionFilter {
|
|
|
1129
1072
|
bitnum?: IntFilter;
|
|
1130
1073
|
bitstr?: BitStringFilter;
|
|
1131
1074
|
description?: StringFilter;
|
|
1132
|
-
descriptionTrgmSimilarity?: FloatFilter;
|
|
1133
|
-
searchScore?: FloatFilter;
|
|
1134
1075
|
and?: AppPermissionFilter[];
|
|
1135
1076
|
or?: AppPermissionFilter[];
|
|
1136
1077
|
not?: AppPermissionFilter;
|
|
@@ -1141,8 +1082,6 @@ export interface OrgPermissionFilter {
|
|
|
1141
1082
|
bitnum?: IntFilter;
|
|
1142
1083
|
bitstr?: BitStringFilter;
|
|
1143
1084
|
description?: StringFilter;
|
|
1144
|
-
descriptionTrgmSimilarity?: FloatFilter;
|
|
1145
|
-
searchScore?: FloatFilter;
|
|
1146
1085
|
and?: OrgPermissionFilter[];
|
|
1147
1086
|
or?: OrgPermissionFilter[];
|
|
1148
1087
|
not?: OrgPermissionFilter;
|
|
@@ -1156,8 +1095,6 @@ export interface AppLevelRequirementFilter {
|
|
|
1156
1095
|
priority?: IntFilter;
|
|
1157
1096
|
createdAt?: DatetimeFilter;
|
|
1158
1097
|
updatedAt?: DatetimeFilter;
|
|
1159
|
-
descriptionTrgmSimilarity?: FloatFilter;
|
|
1160
|
-
searchScore?: FloatFilter;
|
|
1161
1098
|
and?: AppLevelRequirementFilter[];
|
|
1162
1099
|
or?: AppLevelRequirementFilter[];
|
|
1163
1100
|
not?: AppLevelRequirementFilter;
|
|
@@ -1258,8 +1195,6 @@ export interface OrgChartEdgeGrantFilter {
|
|
|
1258
1195
|
positionTitle?: StringFilter;
|
|
1259
1196
|
positionLevel?: IntFilter;
|
|
1260
1197
|
createdAt?: DatetimeFilter;
|
|
1261
|
-
positionTitleTrgmSimilarity?: FloatFilter;
|
|
1262
|
-
searchScore?: FloatFilter;
|
|
1263
1198
|
and?: OrgChartEdgeGrantFilter[];
|
|
1264
1199
|
or?: OrgChartEdgeGrantFilter[];
|
|
1265
1200
|
not?: OrgChartEdgeGrantFilter;
|
|
@@ -1269,9 +1204,6 @@ export interface MembershipTypeFilter {
|
|
|
1269
1204
|
name?: StringFilter;
|
|
1270
1205
|
description?: StringFilter;
|
|
1271
1206
|
prefix?: StringFilter;
|
|
1272
|
-
descriptionTrgmSimilarity?: FloatFilter;
|
|
1273
|
-
prefixTrgmSimilarity?: FloatFilter;
|
|
1274
|
-
searchScore?: FloatFilter;
|
|
1275
1207
|
and?: MembershipTypeFilter[];
|
|
1276
1208
|
or?: MembershipTypeFilter[];
|
|
1277
1209
|
not?: MembershipTypeFilter;
|
|
@@ -1388,8 +1320,6 @@ export interface OrgChartEdgeFilter {
|
|
|
1388
1320
|
parentId?: UUIDFilter;
|
|
1389
1321
|
positionTitle?: StringFilter;
|
|
1390
1322
|
positionLevel?: IntFilter;
|
|
1391
|
-
positionTitleTrgmSimilarity?: FloatFilter;
|
|
1392
|
-
searchScore?: FloatFilter;
|
|
1393
1323
|
and?: OrgChartEdgeFilter[];
|
|
1394
1324
|
or?: OrgChartEdgeFilter[];
|
|
1395
1325
|
not?: OrgChartEdgeFilter;
|
|
@@ -1463,8 +1393,6 @@ export interface InviteFilter {
|
|
|
1463
1393
|
expiresAt?: DatetimeFilter;
|
|
1464
1394
|
createdAt?: DatetimeFilter;
|
|
1465
1395
|
updatedAt?: DatetimeFilter;
|
|
1466
|
-
inviteTokenTrgmSimilarity?: FloatFilter;
|
|
1467
|
-
searchScore?: FloatFilter;
|
|
1468
1396
|
and?: InviteFilter[];
|
|
1469
1397
|
or?: InviteFilter[];
|
|
1470
1398
|
not?: InviteFilter;
|
|
@@ -1477,8 +1405,6 @@ export interface AppLevelFilter {
|
|
|
1477
1405
|
ownerId?: UUIDFilter;
|
|
1478
1406
|
createdAt?: DatetimeFilter;
|
|
1479
1407
|
updatedAt?: DatetimeFilter;
|
|
1480
|
-
descriptionTrgmSimilarity?: FloatFilter;
|
|
1481
|
-
searchScore?: FloatFilter;
|
|
1482
1408
|
and?: AppLevelFilter[];
|
|
1483
1409
|
or?: AppLevelFilter[];
|
|
1484
1410
|
not?: AppLevelFilter;
|
|
@@ -1498,44 +1424,42 @@ export interface OrgInviteFilter {
|
|
|
1498
1424
|
createdAt?: DatetimeFilter;
|
|
1499
1425
|
updatedAt?: DatetimeFilter;
|
|
1500
1426
|
entityId?: UUIDFilter;
|
|
1501
|
-
inviteTokenTrgmSimilarity?: FloatFilter;
|
|
1502
|
-
searchScore?: FloatFilter;
|
|
1503
1427
|
and?: OrgInviteFilter[];
|
|
1504
1428
|
or?: OrgInviteFilter[];
|
|
1505
1429
|
not?: OrgInviteFilter;
|
|
1506
1430
|
}
|
|
1507
1431
|
export type OrgGetManagersRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
|
|
1508
1432
|
export type OrgGetSubordinatesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
|
|
1509
|
-
export type AppPermissionOrderBy = '
|
|
1510
|
-
export type OrgPermissionOrderBy = '
|
|
1511
|
-
export type AppLevelRequirementOrderBy = '
|
|
1512
|
-
export type OrgMemberOrderBy = '
|
|
1513
|
-
export type AppPermissionDefaultOrderBy = '
|
|
1514
|
-
export type OrgPermissionDefaultOrderBy = '
|
|
1515
|
-
export type AppAdminGrantOrderBy = '
|
|
1516
|
-
export type AppOwnerGrantOrderBy = '
|
|
1517
|
-
export type OrgAdminGrantOrderBy = '
|
|
1518
|
-
export type OrgOwnerGrantOrderBy = '
|
|
1519
|
-
export type AppLimitDefaultOrderBy = '
|
|
1520
|
-
export type OrgLimitDefaultOrderBy = '
|
|
1521
|
-
export type OrgChartEdgeGrantOrderBy = '
|
|
1522
|
-
export type MembershipTypeOrderBy = '
|
|
1523
|
-
export type AppLimitOrderBy = '
|
|
1524
|
-
export type AppAchievementOrderBy = '
|
|
1525
|
-
export type AppStepOrderBy = '
|
|
1526
|
-
export type ClaimedInviteOrderBy = '
|
|
1527
|
-
export type AppGrantOrderBy = '
|
|
1528
|
-
export type AppMembershipDefaultOrderBy = '
|
|
1529
|
-
export type OrgLimitOrderBy = '
|
|
1530
|
-
export type OrgClaimedInviteOrderBy = '
|
|
1531
|
-
export type OrgGrantOrderBy = '
|
|
1532
|
-
export type OrgChartEdgeOrderBy = '
|
|
1533
|
-
export type OrgMembershipDefaultOrderBy = '
|
|
1534
|
-
export type AppMembershipOrderBy = '
|
|
1535
|
-
export type OrgMembershipOrderBy = '
|
|
1536
|
-
export type InviteOrderBy = '
|
|
1537
|
-
export type AppLevelOrderBy = '
|
|
1538
|
-
export type OrgInviteOrderBy = '
|
|
1433
|
+
export type AppPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC';
|
|
1434
|
+
export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC';
|
|
1435
|
+
export type AppLevelRequirementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1436
|
+
export type OrgMemberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1437
|
+
export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
1438
|
+
export type OrgPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1439
|
+
export type AppAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1440
|
+
export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1441
|
+
export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1442
|
+
export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1443
|
+
export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1444
|
+
export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1445
|
+
export type OrgChartEdgeGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC';
|
|
1446
|
+
export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1447
|
+
export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
|
|
1448
|
+
export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1449
|
+
export type AppStepOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1450
|
+
export type ClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1451
|
+
export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1452
|
+
export type AppMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
1453
|
+
export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1454
|
+
export type OrgClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1455
|
+
export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1456
|
+
export type OrgChartEdgeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC';
|
|
1457
|
+
export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1458
|
+
export type AppMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
1459
|
+
export type OrgMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
1460
|
+
export type InviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1461
|
+
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1462
|
+
export type OrgInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1539
1463
|
export interface CreateOrgGetManagersRecordInput {
|
|
1540
1464
|
clientMutationId?: string;
|
|
1541
1465
|
orgGetManagersRecord: {
|
|
@@ -1590,8 +1514,6 @@ export interface AppPermissionPatch {
|
|
|
1590
1514
|
bitnum?: number | null;
|
|
1591
1515
|
bitstr?: string | null;
|
|
1592
1516
|
description?: string | null;
|
|
1593
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1594
|
-
searchScore?: number | null;
|
|
1595
1517
|
}
|
|
1596
1518
|
export interface UpdateAppPermissionInput {
|
|
1597
1519
|
clientMutationId?: string;
|
|
@@ -1616,8 +1538,6 @@ export interface OrgPermissionPatch {
|
|
|
1616
1538
|
bitnum?: number | null;
|
|
1617
1539
|
bitstr?: string | null;
|
|
1618
1540
|
description?: string | null;
|
|
1619
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1620
|
-
searchScore?: number | null;
|
|
1621
1541
|
}
|
|
1622
1542
|
export interface UpdateOrgPermissionInput {
|
|
1623
1543
|
clientMutationId?: string;
|
|
@@ -1644,8 +1564,6 @@ export interface AppLevelRequirementPatch {
|
|
|
1644
1564
|
description?: string | null;
|
|
1645
1565
|
requiredCount?: number | null;
|
|
1646
1566
|
priority?: number | null;
|
|
1647
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1648
|
-
searchScore?: number | null;
|
|
1649
1567
|
}
|
|
1650
1568
|
export interface UpdateAppLevelRequirementInput {
|
|
1651
1569
|
clientMutationId?: string;
|
|
@@ -1854,7 +1772,7 @@ export interface CreateOrgChartEdgeGrantInput {
|
|
|
1854
1772
|
entityId: string;
|
|
1855
1773
|
childId: string;
|
|
1856
1774
|
parentId?: string;
|
|
1857
|
-
grantorId
|
|
1775
|
+
grantorId?: string;
|
|
1858
1776
|
isGrant?: boolean;
|
|
1859
1777
|
positionTitle?: string;
|
|
1860
1778
|
positionLevel?: number;
|
|
@@ -1868,8 +1786,6 @@ export interface OrgChartEdgeGrantPatch {
|
|
|
1868
1786
|
isGrant?: boolean | null;
|
|
1869
1787
|
positionTitle?: string | null;
|
|
1870
1788
|
positionLevel?: number | null;
|
|
1871
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
1872
|
-
searchScore?: number | null;
|
|
1873
1789
|
}
|
|
1874
1790
|
export interface UpdateOrgChartEdgeGrantInput {
|
|
1875
1791
|
clientMutationId?: string;
|
|
@@ -1892,9 +1808,6 @@ export interface MembershipTypePatch {
|
|
|
1892
1808
|
name?: string | null;
|
|
1893
1809
|
description?: string | null;
|
|
1894
1810
|
prefix?: string | null;
|
|
1895
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1896
|
-
prefixTrgmSimilarity?: number | null;
|
|
1897
|
-
searchScore?: number | null;
|
|
1898
1811
|
}
|
|
1899
1812
|
export interface UpdateMembershipTypeInput {
|
|
1900
1813
|
clientMutationId?: string;
|
|
@@ -2135,8 +2048,6 @@ export interface OrgChartEdgePatch {
|
|
|
2135
2048
|
parentId?: string | null;
|
|
2136
2049
|
positionTitle?: string | null;
|
|
2137
2050
|
positionLevel?: number | null;
|
|
2138
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
2139
|
-
searchScore?: number | null;
|
|
2140
2051
|
}
|
|
2141
2052
|
export interface UpdateOrgChartEdgeInput {
|
|
2142
2053
|
clientMutationId?: string;
|
|
@@ -2283,8 +2194,6 @@ export interface InvitePatch {
|
|
|
2283
2194
|
multiple?: boolean | null;
|
|
2284
2195
|
data?: Record<string, unknown> | null;
|
|
2285
2196
|
expiresAt?: string | null;
|
|
2286
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
2287
|
-
searchScore?: number | null;
|
|
2288
2197
|
}
|
|
2289
2198
|
export interface UpdateInviteInput {
|
|
2290
2199
|
clientMutationId?: string;
|
|
@@ -2309,8 +2218,7 @@ export interface AppLevelPatch {
|
|
|
2309
2218
|
description?: string | null;
|
|
2310
2219
|
image?: ConstructiveInternalTypeImage | null;
|
|
2311
2220
|
ownerId?: string | null;
|
|
2312
|
-
|
|
2313
|
-
searchScore?: number | null;
|
|
2221
|
+
imageUpload?: File | null;
|
|
2314
2222
|
}
|
|
2315
2223
|
export interface UpdateAppLevelInput {
|
|
2316
2224
|
clientMutationId?: string;
|
|
@@ -2349,8 +2257,6 @@ export interface OrgInvitePatch {
|
|
|
2349
2257
|
data?: Record<string, unknown> | null;
|
|
2350
2258
|
expiresAt?: string | null;
|
|
2351
2259
|
entityId?: string | null;
|
|
2352
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
2353
|
-
searchScore?: number | null;
|
|
2354
2260
|
}
|
|
2355
2261
|
export interface UpdateOrgInviteInput {
|
|
2356
2262
|
clientMutationId?: string;
|