@constructive-io/sdk 0.7.6 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/orm/input-types.d.ts +31 -49
- package/auth/orm/input-types.d.ts +8 -21
- package/esm/admin/orm/input-types.d.ts +31 -49
- package/esm/auth/orm/input-types.d.ts +8 -21
- package/esm/objects/orm/input-types.d.ts +17 -24
- package/esm/public/orm/input-types.d.ts +230 -524
- package/objects/orm/input-types.d.ts +17 -24
- package/package.json +7 -4
- package/public/orm/input-types.d.ts +230 -524
|
@@ -1506,36 +1506,36 @@ export interface OrgInviteFilter {
|
|
|
1506
1506
|
}
|
|
1507
1507
|
export type OrgGetManagersRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
|
|
1508
1508
|
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 = '
|
|
1509
|
+
export type AppPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1510
|
+
export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1511
|
+
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' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1512
|
+
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';
|
|
1513
|
+
export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
1514
|
+
export type OrgPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
1515
|
+
export type AppAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1516
|
+
export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1517
|
+
export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | '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';
|
|
1518
|
+
export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | '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';
|
|
1519
|
+
export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1520
|
+
export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1521
|
+
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' | 'POSITION_TITLE_TRGM_SIMILARITY_ASC' | 'POSITION_TITLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1522
|
+
export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1523
|
+
export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
|
|
1524
|
+
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';
|
|
1525
|
+
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';
|
|
1526
|
+
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';
|
|
1527
|
+
export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1528
|
+
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';
|
|
1529
|
+
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';
|
|
1530
|
+
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';
|
|
1531
|
+
export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | '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';
|
|
1532
|
+
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' | 'POSITION_TITLE_TRGM_SIMILARITY_ASC' | 'POSITION_TITLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1533
|
+
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';
|
|
1534
|
+
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';
|
|
1535
|
+
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';
|
|
1536
|
+
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' | 'INVITE_TOKEN_TRGM_SIMILARITY_ASC' | 'INVITE_TOKEN_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1537
|
+
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1538
|
+
export type OrgInviteOrderBy = '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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'INVITE_TOKEN_TRGM_SIMILARITY_ASC' | 'INVITE_TOKEN_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1539
1539
|
export interface CreateOrgGetManagersRecordInput {
|
|
1540
1540
|
clientMutationId?: string;
|
|
1541
1541
|
orgGetManagersRecord: {
|
|
@@ -1590,8 +1590,6 @@ export interface AppPermissionPatch {
|
|
|
1590
1590
|
bitnum?: number | null;
|
|
1591
1591
|
bitstr?: string | null;
|
|
1592
1592
|
description?: string | null;
|
|
1593
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1594
|
-
searchScore?: number | null;
|
|
1595
1593
|
}
|
|
1596
1594
|
export interface UpdateAppPermissionInput {
|
|
1597
1595
|
clientMutationId?: string;
|
|
@@ -1616,8 +1614,6 @@ export interface OrgPermissionPatch {
|
|
|
1616
1614
|
bitnum?: number | null;
|
|
1617
1615
|
bitstr?: string | null;
|
|
1618
1616
|
description?: string | null;
|
|
1619
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1620
|
-
searchScore?: number | null;
|
|
1621
1617
|
}
|
|
1622
1618
|
export interface UpdateOrgPermissionInput {
|
|
1623
1619
|
clientMutationId?: string;
|
|
@@ -1644,8 +1640,6 @@ export interface AppLevelRequirementPatch {
|
|
|
1644
1640
|
description?: string | null;
|
|
1645
1641
|
requiredCount?: number | null;
|
|
1646
1642
|
priority?: number | null;
|
|
1647
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1648
|
-
searchScore?: number | null;
|
|
1649
1643
|
}
|
|
1650
1644
|
export interface UpdateAppLevelRequirementInput {
|
|
1651
1645
|
clientMutationId?: string;
|
|
@@ -1868,8 +1862,6 @@ export interface OrgChartEdgeGrantPatch {
|
|
|
1868
1862
|
isGrant?: boolean | null;
|
|
1869
1863
|
positionTitle?: string | null;
|
|
1870
1864
|
positionLevel?: number | null;
|
|
1871
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
1872
|
-
searchScore?: number | null;
|
|
1873
1865
|
}
|
|
1874
1866
|
export interface UpdateOrgChartEdgeGrantInput {
|
|
1875
1867
|
clientMutationId?: string;
|
|
@@ -1892,9 +1884,6 @@ export interface MembershipTypePatch {
|
|
|
1892
1884
|
name?: string | null;
|
|
1893
1885
|
description?: string | null;
|
|
1894
1886
|
prefix?: string | null;
|
|
1895
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1896
|
-
prefixTrgmSimilarity?: number | null;
|
|
1897
|
-
searchScore?: number | null;
|
|
1898
1887
|
}
|
|
1899
1888
|
export interface UpdateMembershipTypeInput {
|
|
1900
1889
|
clientMutationId?: string;
|
|
@@ -2135,8 +2124,6 @@ export interface OrgChartEdgePatch {
|
|
|
2135
2124
|
parentId?: string | null;
|
|
2136
2125
|
positionTitle?: string | null;
|
|
2137
2126
|
positionLevel?: number | null;
|
|
2138
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
2139
|
-
searchScore?: number | null;
|
|
2140
2127
|
}
|
|
2141
2128
|
export interface UpdateOrgChartEdgeInput {
|
|
2142
2129
|
clientMutationId?: string;
|
|
@@ -2283,8 +2270,6 @@ export interface InvitePatch {
|
|
|
2283
2270
|
multiple?: boolean | null;
|
|
2284
2271
|
data?: Record<string, unknown> | null;
|
|
2285
2272
|
expiresAt?: string | null;
|
|
2286
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
2287
|
-
searchScore?: number | null;
|
|
2288
2273
|
}
|
|
2289
2274
|
export interface UpdateInviteInput {
|
|
2290
2275
|
clientMutationId?: string;
|
|
@@ -2309,8 +2294,7 @@ export interface AppLevelPatch {
|
|
|
2309
2294
|
description?: string | null;
|
|
2310
2295
|
image?: ConstructiveInternalTypeImage | null;
|
|
2311
2296
|
ownerId?: string | null;
|
|
2312
|
-
|
|
2313
|
-
searchScore?: number | null;
|
|
2297
|
+
imageUpload?: File | null;
|
|
2314
2298
|
}
|
|
2315
2299
|
export interface UpdateAppLevelInput {
|
|
2316
2300
|
clientMutationId?: string;
|
|
@@ -2349,8 +2333,6 @@ export interface OrgInvitePatch {
|
|
|
2349
2333
|
data?: Record<string, unknown> | null;
|
|
2350
2334
|
expiresAt?: string | null;
|
|
2351
2335
|
entityId?: string | null;
|
|
2352
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
2353
|
-
searchScore?: number | null;
|
|
2354
2336
|
}
|
|
2355
2337
|
export interface UpdateOrgInviteInput {
|
|
2356
2338
|
clientMutationId?: string;
|
|
@@ -573,13 +573,13 @@ export interface UserFilter {
|
|
|
573
573
|
or?: UserFilter[];
|
|
574
574
|
not?: UserFilter;
|
|
575
575
|
}
|
|
576
|
-
export type CryptoAddressOrderBy = '
|
|
577
|
-
export type RoleTypeOrderBy = '
|
|
578
|
-
export type PhoneNumberOrderBy = '
|
|
579
|
-
export type ConnectedAccountOrderBy = '
|
|
580
|
-
export type AuditLogOrderBy = '
|
|
581
|
-
export type EmailOrderBy = '
|
|
582
|
-
export type UserOrderBy = '
|
|
576
|
+
export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ADDRESS_TRGM_SIMILARITY_ASC' | 'ADDRESS_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
577
|
+
export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
578
|
+
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CC_TRGM_SIMILARITY_ASC' | 'CC_TRGM_SIMILARITY_DESC' | 'NUMBER_TRGM_SIMILARITY_ASC' | 'NUMBER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
579
|
+
export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SERVICE_TRGM_SIMILARITY_ASC' | 'SERVICE_TRGM_SIMILARITY_DESC' | 'IDENTIFIER_TRGM_SIMILARITY_ASC' | 'IDENTIFIER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
580
|
+
export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'USER_AGENT_TRGM_SIMILARITY_ASC' | 'USER_AGENT_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
581
|
+
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
582
|
+
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
583
583
|
export interface CreateCryptoAddressInput {
|
|
584
584
|
clientMutationId?: string;
|
|
585
585
|
cryptoAddress: {
|
|
@@ -594,8 +594,6 @@ export interface CryptoAddressPatch {
|
|
|
594
594
|
address?: string | null;
|
|
595
595
|
isVerified?: boolean | null;
|
|
596
596
|
isPrimary?: boolean | null;
|
|
597
|
-
addressTrgmSimilarity?: number | null;
|
|
598
|
-
searchScore?: number | null;
|
|
599
597
|
}
|
|
600
598
|
export interface UpdateCryptoAddressInput {
|
|
601
599
|
clientMutationId?: string;
|
|
@@ -640,9 +638,6 @@ export interface PhoneNumberPatch {
|
|
|
640
638
|
number?: string | null;
|
|
641
639
|
isVerified?: boolean | null;
|
|
642
640
|
isPrimary?: boolean | null;
|
|
643
|
-
ccTrgmSimilarity?: number | null;
|
|
644
|
-
numberTrgmSimilarity?: number | null;
|
|
645
|
-
searchScore?: number | null;
|
|
646
641
|
}
|
|
647
642
|
export interface UpdatePhoneNumberInput {
|
|
648
643
|
clientMutationId?: string;
|
|
@@ -669,9 +664,6 @@ export interface ConnectedAccountPatch {
|
|
|
669
664
|
identifier?: string | null;
|
|
670
665
|
details?: Record<string, unknown> | null;
|
|
671
666
|
isVerified?: boolean | null;
|
|
672
|
-
serviceTrgmSimilarity?: number | null;
|
|
673
|
-
identifierTrgmSimilarity?: number | null;
|
|
674
|
-
searchScore?: number | null;
|
|
675
667
|
}
|
|
676
668
|
export interface UpdateConnectedAccountInput {
|
|
677
669
|
clientMutationId?: string;
|
|
@@ -700,8 +692,6 @@ export interface AuditLogPatch {
|
|
|
700
692
|
userAgent?: string | null;
|
|
701
693
|
ipAddress?: string | null;
|
|
702
694
|
success?: boolean | null;
|
|
703
|
-
userAgentTrgmSimilarity?: number | null;
|
|
704
|
-
searchScore?: number | null;
|
|
705
695
|
}
|
|
706
696
|
export interface UpdateAuditLogInput {
|
|
707
697
|
clientMutationId?: string;
|
|
@@ -749,11 +739,8 @@ export interface UserPatch {
|
|
|
749
739
|
username?: string | null;
|
|
750
740
|
displayName?: string | null;
|
|
751
741
|
profilePicture?: ConstructiveInternalTypeImage | null;
|
|
752
|
-
searchTsv?: string | null;
|
|
753
742
|
type?: number | null;
|
|
754
|
-
|
|
755
|
-
displayNameTrgmSimilarity?: number | null;
|
|
756
|
-
searchScore?: number | null;
|
|
743
|
+
profilePictureUpload?: File | null;
|
|
757
744
|
}
|
|
758
745
|
export interface UpdateUserInput {
|
|
759
746
|
clientMutationId?: string;
|
|
@@ -1506,36 +1506,36 @@ export interface OrgInviteFilter {
|
|
|
1506
1506
|
}
|
|
1507
1507
|
export type OrgGetManagersRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
|
|
1508
1508
|
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 = '
|
|
1509
|
+
export type AppPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1510
|
+
export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1511
|
+
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' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1512
|
+
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';
|
|
1513
|
+
export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
1514
|
+
export type OrgPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
1515
|
+
export type AppAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1516
|
+
export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1517
|
+
export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | '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';
|
|
1518
|
+
export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | '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';
|
|
1519
|
+
export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1520
|
+
export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
1521
|
+
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' | 'POSITION_TITLE_TRGM_SIMILARITY_ASC' | 'POSITION_TITLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1522
|
+
export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1523
|
+
export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
|
|
1524
|
+
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';
|
|
1525
|
+
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';
|
|
1526
|
+
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';
|
|
1527
|
+
export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1528
|
+
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';
|
|
1529
|
+
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';
|
|
1530
|
+
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';
|
|
1531
|
+
export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | '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';
|
|
1532
|
+
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' | 'POSITION_TITLE_TRGM_SIMILARITY_ASC' | 'POSITION_TITLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1533
|
+
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';
|
|
1534
|
+
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';
|
|
1535
|
+
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';
|
|
1536
|
+
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' | 'INVITE_TOKEN_TRGM_SIMILARITY_ASC' | 'INVITE_TOKEN_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1537
|
+
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1538
|
+
export type OrgInviteOrderBy = '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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'INVITE_TOKEN_TRGM_SIMILARITY_ASC' | 'INVITE_TOKEN_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
1539
1539
|
export interface CreateOrgGetManagersRecordInput {
|
|
1540
1540
|
clientMutationId?: string;
|
|
1541
1541
|
orgGetManagersRecord: {
|
|
@@ -1590,8 +1590,6 @@ export interface AppPermissionPatch {
|
|
|
1590
1590
|
bitnum?: number | null;
|
|
1591
1591
|
bitstr?: string | null;
|
|
1592
1592
|
description?: string | null;
|
|
1593
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1594
|
-
searchScore?: number | null;
|
|
1595
1593
|
}
|
|
1596
1594
|
export interface UpdateAppPermissionInput {
|
|
1597
1595
|
clientMutationId?: string;
|
|
@@ -1616,8 +1614,6 @@ export interface OrgPermissionPatch {
|
|
|
1616
1614
|
bitnum?: number | null;
|
|
1617
1615
|
bitstr?: string | null;
|
|
1618
1616
|
description?: string | null;
|
|
1619
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1620
|
-
searchScore?: number | null;
|
|
1621
1617
|
}
|
|
1622
1618
|
export interface UpdateOrgPermissionInput {
|
|
1623
1619
|
clientMutationId?: string;
|
|
@@ -1644,8 +1640,6 @@ export interface AppLevelRequirementPatch {
|
|
|
1644
1640
|
description?: string | null;
|
|
1645
1641
|
requiredCount?: number | null;
|
|
1646
1642
|
priority?: number | null;
|
|
1647
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1648
|
-
searchScore?: number | null;
|
|
1649
1643
|
}
|
|
1650
1644
|
export interface UpdateAppLevelRequirementInput {
|
|
1651
1645
|
clientMutationId?: string;
|
|
@@ -1868,8 +1862,6 @@ export interface OrgChartEdgeGrantPatch {
|
|
|
1868
1862
|
isGrant?: boolean | null;
|
|
1869
1863
|
positionTitle?: string | null;
|
|
1870
1864
|
positionLevel?: number | null;
|
|
1871
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
1872
|
-
searchScore?: number | null;
|
|
1873
1865
|
}
|
|
1874
1866
|
export interface UpdateOrgChartEdgeGrantInput {
|
|
1875
1867
|
clientMutationId?: string;
|
|
@@ -1892,9 +1884,6 @@ export interface MembershipTypePatch {
|
|
|
1892
1884
|
name?: string | null;
|
|
1893
1885
|
description?: string | null;
|
|
1894
1886
|
prefix?: string | null;
|
|
1895
|
-
descriptionTrgmSimilarity?: number | null;
|
|
1896
|
-
prefixTrgmSimilarity?: number | null;
|
|
1897
|
-
searchScore?: number | null;
|
|
1898
1887
|
}
|
|
1899
1888
|
export interface UpdateMembershipTypeInput {
|
|
1900
1889
|
clientMutationId?: string;
|
|
@@ -2135,8 +2124,6 @@ export interface OrgChartEdgePatch {
|
|
|
2135
2124
|
parentId?: string | null;
|
|
2136
2125
|
positionTitle?: string | null;
|
|
2137
2126
|
positionLevel?: number | null;
|
|
2138
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
2139
|
-
searchScore?: number | null;
|
|
2140
2127
|
}
|
|
2141
2128
|
export interface UpdateOrgChartEdgeInput {
|
|
2142
2129
|
clientMutationId?: string;
|
|
@@ -2283,8 +2270,6 @@ export interface InvitePatch {
|
|
|
2283
2270
|
multiple?: boolean | null;
|
|
2284
2271
|
data?: Record<string, unknown> | null;
|
|
2285
2272
|
expiresAt?: string | null;
|
|
2286
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
2287
|
-
searchScore?: number | null;
|
|
2288
2273
|
}
|
|
2289
2274
|
export interface UpdateInviteInput {
|
|
2290
2275
|
clientMutationId?: string;
|
|
@@ -2309,8 +2294,7 @@ export interface AppLevelPatch {
|
|
|
2309
2294
|
description?: string | null;
|
|
2310
2295
|
image?: ConstructiveInternalTypeImage | null;
|
|
2311
2296
|
ownerId?: string | null;
|
|
2312
|
-
|
|
2313
|
-
searchScore?: number | null;
|
|
2297
|
+
imageUpload?: File | null;
|
|
2314
2298
|
}
|
|
2315
2299
|
export interface UpdateAppLevelInput {
|
|
2316
2300
|
clientMutationId?: string;
|
|
@@ -2349,8 +2333,6 @@ export interface OrgInvitePatch {
|
|
|
2349
2333
|
data?: Record<string, unknown> | null;
|
|
2350
2334
|
expiresAt?: string | null;
|
|
2351
2335
|
entityId?: string | null;
|
|
2352
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
2353
|
-
searchScore?: number | null;
|
|
2354
2336
|
}
|
|
2355
2337
|
export interface UpdateOrgInviteInput {
|
|
2356
2338
|
clientMutationId?: string;
|
|
@@ -573,13 +573,13 @@ export interface UserFilter {
|
|
|
573
573
|
or?: UserFilter[];
|
|
574
574
|
not?: UserFilter;
|
|
575
575
|
}
|
|
576
|
-
export type CryptoAddressOrderBy = '
|
|
577
|
-
export type RoleTypeOrderBy = '
|
|
578
|
-
export type PhoneNumberOrderBy = '
|
|
579
|
-
export type ConnectedAccountOrderBy = '
|
|
580
|
-
export type AuditLogOrderBy = '
|
|
581
|
-
export type EmailOrderBy = '
|
|
582
|
-
export type UserOrderBy = '
|
|
576
|
+
export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ADDRESS_TRGM_SIMILARITY_ASC' | 'ADDRESS_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
577
|
+
export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
578
|
+
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CC_TRGM_SIMILARITY_ASC' | 'CC_TRGM_SIMILARITY_DESC' | 'NUMBER_TRGM_SIMILARITY_ASC' | 'NUMBER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
579
|
+
export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SERVICE_TRGM_SIMILARITY_ASC' | 'SERVICE_TRGM_SIMILARITY_DESC' | 'IDENTIFIER_TRGM_SIMILARITY_ASC' | 'IDENTIFIER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
580
|
+
export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'USER_AGENT_TRGM_SIMILARITY_ASC' | 'USER_AGENT_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
581
|
+
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
582
|
+
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
583
583
|
export interface CreateCryptoAddressInput {
|
|
584
584
|
clientMutationId?: string;
|
|
585
585
|
cryptoAddress: {
|
|
@@ -594,8 +594,6 @@ export interface CryptoAddressPatch {
|
|
|
594
594
|
address?: string | null;
|
|
595
595
|
isVerified?: boolean | null;
|
|
596
596
|
isPrimary?: boolean | null;
|
|
597
|
-
addressTrgmSimilarity?: number | null;
|
|
598
|
-
searchScore?: number | null;
|
|
599
597
|
}
|
|
600
598
|
export interface UpdateCryptoAddressInput {
|
|
601
599
|
clientMutationId?: string;
|
|
@@ -640,9 +638,6 @@ export interface PhoneNumberPatch {
|
|
|
640
638
|
number?: string | null;
|
|
641
639
|
isVerified?: boolean | null;
|
|
642
640
|
isPrimary?: boolean | null;
|
|
643
|
-
ccTrgmSimilarity?: number | null;
|
|
644
|
-
numberTrgmSimilarity?: number | null;
|
|
645
|
-
searchScore?: number | null;
|
|
646
641
|
}
|
|
647
642
|
export interface UpdatePhoneNumberInput {
|
|
648
643
|
clientMutationId?: string;
|
|
@@ -669,9 +664,6 @@ export interface ConnectedAccountPatch {
|
|
|
669
664
|
identifier?: string | null;
|
|
670
665
|
details?: Record<string, unknown> | null;
|
|
671
666
|
isVerified?: boolean | null;
|
|
672
|
-
serviceTrgmSimilarity?: number | null;
|
|
673
|
-
identifierTrgmSimilarity?: number | null;
|
|
674
|
-
searchScore?: number | null;
|
|
675
667
|
}
|
|
676
668
|
export interface UpdateConnectedAccountInput {
|
|
677
669
|
clientMutationId?: string;
|
|
@@ -700,8 +692,6 @@ export interface AuditLogPatch {
|
|
|
700
692
|
userAgent?: string | null;
|
|
701
693
|
ipAddress?: string | null;
|
|
702
694
|
success?: boolean | null;
|
|
703
|
-
userAgentTrgmSimilarity?: number | null;
|
|
704
|
-
searchScore?: number | null;
|
|
705
695
|
}
|
|
706
696
|
export interface UpdateAuditLogInput {
|
|
707
697
|
clientMutationId?: string;
|
|
@@ -749,11 +739,8 @@ export interface UserPatch {
|
|
|
749
739
|
username?: string | null;
|
|
750
740
|
displayName?: string | null;
|
|
751
741
|
profilePicture?: ConstructiveInternalTypeImage | null;
|
|
752
|
-
searchTsv?: string | null;
|
|
753
742
|
type?: number | null;
|
|
754
|
-
|
|
755
|
-
displayNameTrgmSimilarity?: number | null;
|
|
756
|
-
searchScore?: number | null;
|
|
743
|
+
profilePictureUpload?: File | null;
|
|
757
744
|
}
|
|
758
745
|
export interface UpdateUserInput {
|
|
759
746
|
clientMutationId?: string;
|