@constructive-io/sdk 0.13.3 → 0.13.4
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/index.d.ts +7 -7
- package/admin/orm/index.js +4 -4
- package/admin/orm/input-types.d.ts +99 -99
- package/admin/orm/models/appClaimedInvite.d.ts +56 -0
- package/{public/orm/models/claimedInvite.js → admin/orm/models/appClaimedInvite.js} +26 -26
- package/admin/orm/models/appInvite.d.ts +56 -0
- package/{public/orm/models/invite.js → admin/orm/models/appInvite.js} +26 -26
- package/admin/orm/models/index.d.ts +2 -2
- package/admin/orm/models/index.js +5 -5
- package/admin/orm/mutation/index.d.ts +6 -6
- package/admin/orm/mutation/index.js +6 -6
- package/admin/orm/query/index.d.ts +4 -4
- package/admin/orm/query/index.js +4 -4
- package/auth/orm/index.d.ts +10 -10
- package/auth/orm/input-types.d.ts +24 -72
- package/auth/orm/mutation/index.d.ts +17 -17
- package/auth/orm/mutation/index.js +24 -24
- package/esm/admin/orm/index.d.ts +7 -7
- package/esm/admin/orm/index.js +4 -4
- package/esm/admin/orm/input-types.d.ts +99 -99
- package/esm/admin/orm/models/appClaimedInvite.d.ts +56 -0
- package/esm/admin/orm/models/{claimedInvite.js → appClaimedInvite.js} +24 -24
- package/esm/admin/orm/models/appInvite.d.ts +56 -0
- package/esm/admin/orm/models/{invite.js → appInvite.js} +24 -24
- package/esm/admin/orm/models/index.d.ts +2 -2
- package/esm/admin/orm/models/index.js +2 -2
- package/esm/admin/orm/mutation/index.d.ts +6 -6
- package/esm/admin/orm/mutation/index.js +6 -6
- package/esm/admin/orm/query/index.d.ts +4 -4
- package/esm/admin/orm/query/index.js +4 -4
- package/esm/auth/orm/index.d.ts +10 -10
- package/esm/auth/orm/input-types.d.ts +24 -72
- package/esm/auth/orm/mutation/index.d.ts +17 -17
- package/esm/auth/orm/mutation/index.js +24 -24
- package/esm/public/orm/index.d.ts +19 -17
- package/esm/public/orm/index.js +6 -4
- package/esm/public/orm/input-types.d.ts +402 -230
- package/esm/public/orm/input-types.js +3 -3
- package/esm/public/orm/models/appClaimedInvite.d.ts +56 -0
- package/esm/public/orm/models/{claimedInvite.js → appClaimedInvite.js} +24 -24
- package/esm/public/orm/models/appInvite.d.ts +56 -0
- package/esm/public/orm/models/{invite.js → appInvite.js} +24 -24
- package/esm/public/orm/models/index.d.ts +3 -2
- package/esm/public/orm/models/index.js +3 -2
- package/esm/public/orm/models/rateLimitsModule.d.ts +56 -0
- package/esm/public/orm/models/rateLimitsModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +22 -22
- package/esm/public/orm/mutation/index.js +30 -30
- package/esm/public/orm/query/index.d.ts +4 -4
- package/esm/public/orm/query/index.js +4 -4
- package/package.json +2 -2
- package/public/orm/index.d.ts +19 -17
- package/public/orm/index.js +6 -4
- package/public/orm/input-types.d.ts +402 -230
- package/public/orm/input-types.js +3 -3
- package/public/orm/models/appClaimedInvite.d.ts +56 -0
- package/{admin/orm/models/claimedInvite.js → public/orm/models/appClaimedInvite.js} +26 -26
- package/public/orm/models/appInvite.d.ts +56 -0
- package/{admin/orm/models/invite.js → public/orm/models/appInvite.js} +26 -26
- package/public/orm/models/index.d.ts +3 -2
- package/public/orm/models/index.js +8 -6
- package/public/orm/models/rateLimitsModule.d.ts +56 -0
- package/public/orm/models/rateLimitsModule.js +100 -0
- package/public/orm/mutation/index.d.ts +22 -22
- package/public/orm/mutation/index.js +30 -30
- package/public/orm/query/index.d.ts +4 -4
- package/public/orm/query/index.js +4 -4
- package/admin/orm/models/claimedInvite.d.ts +0 -56
- package/admin/orm/models/invite.d.ts +0 -56
- package/esm/admin/orm/models/claimedInvite.d.ts +0 -56
- package/esm/admin/orm/models/invite.d.ts +0 -56
- package/esm/public/orm/models/claimedInvite.d.ts +0 -56
- package/esm/public/orm/models/invite.d.ts +0 -56
- package/public/orm/models/claimedInvite.d.ts +0 -56
- package/public/orm/models/invite.d.ts +0 -56
package/admin/orm/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import { MembershipTypeModel } from './models/membershipType';
|
|
|
17
17
|
import { AppLimitModel } from './models/appLimit';
|
|
18
18
|
import { AppAchievementModel } from './models/appAchievement';
|
|
19
19
|
import { AppStepModel } from './models/appStep';
|
|
20
|
-
import {
|
|
20
|
+
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
21
21
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
22
22
|
import { OrgLimitModel } from './models/orgLimit';
|
|
23
23
|
import { AppGrantModel } from './models/appGrant';
|
|
@@ -27,7 +27,7 @@ import { OrgGrantModel } from './models/orgGrant';
|
|
|
27
27
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
28
28
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
29
29
|
import { AppLevelModel } from './models/appLevel';
|
|
30
|
-
import {
|
|
30
|
+
import { AppInviteModel } from './models/appInvite';
|
|
31
31
|
import { AppMembershipModel } from './models/appMembership';
|
|
32
32
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
33
33
|
import { OrgInviteModel } from './models/orgInvite';
|
|
@@ -80,7 +80,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
80
80
|
appLimit: AppLimitModel;
|
|
81
81
|
appAchievement: AppAchievementModel;
|
|
82
82
|
appStep: AppStepModel;
|
|
83
|
-
|
|
83
|
+
appClaimedInvite: AppClaimedInviteModel;
|
|
84
84
|
orgChartEdgeGrant: OrgChartEdgeGrantModel;
|
|
85
85
|
orgLimit: OrgLimitModel;
|
|
86
86
|
appGrant: AppGrantModel;
|
|
@@ -90,7 +90,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
90
90
|
orgChartEdge: OrgChartEdgeModel;
|
|
91
91
|
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
92
92
|
appLevel: AppLevelModel;
|
|
93
|
-
|
|
93
|
+
appInvite: AppInviteModel;
|
|
94
94
|
appMembership: AppMembershipModel;
|
|
95
95
|
orgMembership: OrgMembershipModel;
|
|
96
96
|
orgInvite: OrgInviteModel;
|
|
@@ -152,10 +152,10 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
152
152
|
}>;
|
|
153
153
|
};
|
|
154
154
|
mutation: {
|
|
155
|
-
|
|
155
|
+
submitAppInviteCode: <S extends import("./input-types").SubmitAppInviteCodePayloadSelect>(args: import("./mutation").SubmitAppInviteCodeVariables, options: {
|
|
156
156
|
select: S;
|
|
157
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
158
|
-
|
|
157
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SubmitAppInviteCodePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
158
|
+
submitAppInviteCode: import("./select-types").InferSelectResult<import("./input-types").SubmitAppInviteCodePayload, S> | null;
|
|
159
159
|
}>;
|
|
160
160
|
submitOrgInviteCode: <S extends import("./input-types").SubmitOrgInviteCodePayloadSelect>(args: import("./mutation").SubmitOrgInviteCodeVariables, options: {
|
|
161
161
|
select: S;
|
package/admin/orm/index.js
CHANGED
|
@@ -40,7 +40,7 @@ const membershipType_1 = require("./models/membershipType");
|
|
|
40
40
|
const appLimit_1 = require("./models/appLimit");
|
|
41
41
|
const appAchievement_1 = require("./models/appAchievement");
|
|
42
42
|
const appStep_1 = require("./models/appStep");
|
|
43
|
-
const
|
|
43
|
+
const appClaimedInvite_1 = require("./models/appClaimedInvite");
|
|
44
44
|
const orgChartEdgeGrant_1 = require("./models/orgChartEdgeGrant");
|
|
45
45
|
const orgLimit_1 = require("./models/orgLimit");
|
|
46
46
|
const appGrant_1 = require("./models/appGrant");
|
|
@@ -50,7 +50,7 @@ const orgGrant_1 = require("./models/orgGrant");
|
|
|
50
50
|
const orgChartEdge_1 = require("./models/orgChartEdge");
|
|
51
51
|
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
52
52
|
const appLevel_1 = require("./models/appLevel");
|
|
53
|
-
const
|
|
53
|
+
const appInvite_1 = require("./models/appInvite");
|
|
54
54
|
const appMembership_1 = require("./models/appMembership");
|
|
55
55
|
const orgMembership_1 = require("./models/orgMembership");
|
|
56
56
|
const orgInvite_1 = require("./models/orgInvite");
|
|
@@ -110,7 +110,7 @@ function createClient(config) {
|
|
|
110
110
|
appLimit: new appLimit_1.AppLimitModel(client),
|
|
111
111
|
appAchievement: new appAchievement_1.AppAchievementModel(client),
|
|
112
112
|
appStep: new appStep_1.AppStepModel(client),
|
|
113
|
-
|
|
113
|
+
appClaimedInvite: new appClaimedInvite_1.AppClaimedInviteModel(client),
|
|
114
114
|
orgChartEdgeGrant: new orgChartEdgeGrant_1.OrgChartEdgeGrantModel(client),
|
|
115
115
|
orgLimit: new orgLimit_1.OrgLimitModel(client),
|
|
116
116
|
appGrant: new appGrant_1.AppGrantModel(client),
|
|
@@ -120,7 +120,7 @@ function createClient(config) {
|
|
|
120
120
|
orgChartEdge: new orgChartEdge_1.OrgChartEdgeModel(client),
|
|
121
121
|
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
122
122
|
appLevel: new appLevel_1.AppLevelModel(client),
|
|
123
|
-
|
|
123
|
+
appInvite: new appInvite_1.AppInviteModel(client),
|
|
124
124
|
appMembership: new appMembership_1.AppMembershipModel(client),
|
|
125
125
|
orgMembership: new orgMembership_1.OrgMembershipModel(client),
|
|
126
126
|
orgInvite: new orgInvite_1.OrgInviteModel(client),
|
|
@@ -413,7 +413,7 @@ export interface AppStep {
|
|
|
413
413
|
updatedAt?: string | null;
|
|
414
414
|
}
|
|
415
415
|
/** Records of successfully claimed invitations, linking senders to receivers */
|
|
416
|
-
export interface
|
|
416
|
+
export interface AppClaimedInvite {
|
|
417
417
|
id: string;
|
|
418
418
|
/** Optional JSON payload captured at the time the invite was claimed */
|
|
419
419
|
data?: Record<string, unknown> | null;
|
|
@@ -557,7 +557,7 @@ export interface AppLevel {
|
|
|
557
557
|
updatedAt?: string | null;
|
|
558
558
|
}
|
|
559
559
|
/** Invitation records sent to prospective members via email, with token-based redemption and expiration */
|
|
560
|
-
export interface
|
|
560
|
+
export interface AppInvite {
|
|
561
561
|
id: string;
|
|
562
562
|
/** Email address of the invited recipient */
|
|
563
563
|
email?: ConstructiveInternalTypeEmail | null;
|
|
@@ -712,7 +712,7 @@ export interface AppAchievementRelations {
|
|
|
712
712
|
}
|
|
713
713
|
export interface AppStepRelations {
|
|
714
714
|
}
|
|
715
|
-
export interface
|
|
715
|
+
export interface AppClaimedInviteRelations {
|
|
716
716
|
}
|
|
717
717
|
export interface OrgChartEdgeGrantRelations {
|
|
718
718
|
}
|
|
@@ -732,7 +732,7 @@ export interface OrgMembershipDefaultRelations {
|
|
|
732
732
|
}
|
|
733
733
|
export interface AppLevelRelations {
|
|
734
734
|
}
|
|
735
|
-
export interface
|
|
735
|
+
export interface AppInviteRelations {
|
|
736
736
|
}
|
|
737
737
|
export interface AppMembershipRelations {
|
|
738
738
|
}
|
|
@@ -758,7 +758,7 @@ export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelatio
|
|
|
758
758
|
export type AppLimitWithRelations = AppLimit & AppLimitRelations;
|
|
759
759
|
export type AppAchievementWithRelations = AppAchievement & AppAchievementRelations;
|
|
760
760
|
export type AppStepWithRelations = AppStep & AppStepRelations;
|
|
761
|
-
export type
|
|
761
|
+
export type AppClaimedInviteWithRelations = AppClaimedInvite & AppClaimedInviteRelations;
|
|
762
762
|
export type OrgChartEdgeGrantWithRelations = OrgChartEdgeGrant & OrgChartEdgeGrantRelations;
|
|
763
763
|
export type OrgLimitWithRelations = OrgLimit & OrgLimitRelations;
|
|
764
764
|
export type AppGrantWithRelations = AppGrant & AppGrantRelations;
|
|
@@ -768,7 +768,7 @@ export type OrgGrantWithRelations = OrgGrant & OrgGrantRelations;
|
|
|
768
768
|
export type OrgChartEdgeWithRelations = OrgChartEdge & OrgChartEdgeRelations;
|
|
769
769
|
export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
|
|
770
770
|
export type AppLevelWithRelations = AppLevel & AppLevelRelations;
|
|
771
|
-
export type
|
|
771
|
+
export type AppInviteWithRelations = AppInvite & AppInviteRelations;
|
|
772
772
|
export type AppMembershipWithRelations = AppMembership & AppMembershipRelations;
|
|
773
773
|
export type OrgMembershipWithRelations = OrgMembership & OrgMembershipRelations;
|
|
774
774
|
export type OrgInviteWithRelations = OrgInvite & OrgInviteRelations;
|
|
@@ -892,7 +892,7 @@ export type AppStepSelect = {
|
|
|
892
892
|
createdAt?: boolean;
|
|
893
893
|
updatedAt?: boolean;
|
|
894
894
|
};
|
|
895
|
-
export type
|
|
895
|
+
export type AppClaimedInviteSelect = {
|
|
896
896
|
id?: boolean;
|
|
897
897
|
data?: boolean;
|
|
898
898
|
senderId?: boolean;
|
|
@@ -986,7 +986,7 @@ export type AppLevelSelect = {
|
|
|
986
986
|
createdAt?: boolean;
|
|
987
987
|
updatedAt?: boolean;
|
|
988
988
|
};
|
|
989
|
-
export type
|
|
989
|
+
export type AppInviteSelect = {
|
|
990
990
|
id?: boolean;
|
|
991
991
|
email?: boolean;
|
|
992
992
|
senderId?: boolean;
|
|
@@ -1354,7 +1354,7 @@ export interface AppStepFilter {
|
|
|
1354
1354
|
/** Negates the expression. */
|
|
1355
1355
|
not?: AppStepFilter;
|
|
1356
1356
|
}
|
|
1357
|
-
export interface
|
|
1357
|
+
export interface AppClaimedInviteFilter {
|
|
1358
1358
|
/** Filter by the object’s `id` field. */
|
|
1359
1359
|
id?: UUIDFilter;
|
|
1360
1360
|
/** Filter by the object’s `senderId` field. */
|
|
@@ -1366,11 +1366,11 @@ export interface ClaimedInviteFilter {
|
|
|
1366
1366
|
/** Filter by the object’s `updatedAt` field. */
|
|
1367
1367
|
updatedAt?: DatetimeFilter;
|
|
1368
1368
|
/** Checks for all expressions in this list. */
|
|
1369
|
-
and?:
|
|
1369
|
+
and?: AppClaimedInviteFilter[];
|
|
1370
1370
|
/** Checks for any expressions in this list. */
|
|
1371
|
-
or?:
|
|
1371
|
+
or?: AppClaimedInviteFilter[];
|
|
1372
1372
|
/** Negates the expression. */
|
|
1373
|
-
not?:
|
|
1373
|
+
not?: AppClaimedInviteFilter;
|
|
1374
1374
|
}
|
|
1375
1375
|
export interface OrgChartEdgeGrantFilter {
|
|
1376
1376
|
/** Filter by the object’s `id` field. */
|
|
@@ -1578,7 +1578,7 @@ export interface AppLevelFilter {
|
|
|
1578
1578
|
/** Negates the expression. */
|
|
1579
1579
|
not?: AppLevelFilter;
|
|
1580
1580
|
}
|
|
1581
|
-
export interface
|
|
1581
|
+
export interface AppInviteFilter {
|
|
1582
1582
|
/** Filter by the object’s `id` field. */
|
|
1583
1583
|
id?: UUIDFilter;
|
|
1584
1584
|
/** Filter by the object’s `email` field. */
|
|
@@ -1602,11 +1602,11 @@ export interface InviteFilter {
|
|
|
1602
1602
|
/** Filter by the object’s `updatedAt` field. */
|
|
1603
1603
|
updatedAt?: DatetimeFilter;
|
|
1604
1604
|
/** Checks for all expressions in this list. */
|
|
1605
|
-
and?:
|
|
1605
|
+
and?: AppInviteFilter[];
|
|
1606
1606
|
/** Checks for any expressions in this list. */
|
|
1607
|
-
or?:
|
|
1607
|
+
or?: AppInviteFilter[];
|
|
1608
1608
|
/** Negates the expression. */
|
|
1609
|
-
not?:
|
|
1609
|
+
not?: AppInviteFilter;
|
|
1610
1610
|
}
|
|
1611
1611
|
export interface AppMembershipFilter {
|
|
1612
1612
|
/** Filter by the object’s `id` field. */
|
|
@@ -1740,7 +1740,7 @@ export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY
|
|
|
1740
1740
|
export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC';
|
|
1741
1741
|
export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1742
1742
|
export type AppStepOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1743
|
-
export type
|
|
1743
|
+
export type AppClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_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';
|
|
1744
1744
|
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' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
1745
1745
|
export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
1746
1746
|
export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_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';
|
|
@@ -1750,7 +1750,7 @@ export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
1750
1750
|
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_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC';
|
|
1751
1751
|
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' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_GROUPS_ASC' | 'DELETE_MEMBER_CASCADE_GROUPS_DESC' | 'CREATE_GROUPS_CASCADE_MEMBERS_ASC' | 'CREATE_GROUPS_CASCADE_MEMBERS_DESC';
|
|
1752
1752
|
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1753
|
-
export type
|
|
1753
|
+
export type AppInviteOrderBy = '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' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
1754
1754
|
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_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
1755
1755
|
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_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
1756
1756
|
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' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_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';
|
|
@@ -2150,25 +2150,25 @@ export interface DeleteAppStepInput {
|
|
|
2150
2150
|
clientMutationId?: string;
|
|
2151
2151
|
id: string;
|
|
2152
2152
|
}
|
|
2153
|
-
export interface
|
|
2153
|
+
export interface CreateAppClaimedInviteInput {
|
|
2154
2154
|
clientMutationId?: string;
|
|
2155
|
-
|
|
2155
|
+
appClaimedInvite: {
|
|
2156
2156
|
data?: Record<string, unknown>;
|
|
2157
2157
|
senderId?: string;
|
|
2158
2158
|
receiverId?: string;
|
|
2159
2159
|
};
|
|
2160
2160
|
}
|
|
2161
|
-
export interface
|
|
2161
|
+
export interface AppClaimedInvitePatch {
|
|
2162
2162
|
data?: Record<string, unknown> | null;
|
|
2163
2163
|
senderId?: string | null;
|
|
2164
2164
|
receiverId?: string | null;
|
|
2165
2165
|
}
|
|
2166
|
-
export interface
|
|
2166
|
+
export interface UpdateAppClaimedInviteInput {
|
|
2167
2167
|
clientMutationId?: string;
|
|
2168
2168
|
id: string;
|
|
2169
|
-
|
|
2169
|
+
appClaimedInvitePatch: AppClaimedInvitePatch;
|
|
2170
2170
|
}
|
|
2171
|
-
export interface
|
|
2171
|
+
export interface DeleteAppClaimedInviteInput {
|
|
2172
2172
|
clientMutationId?: string;
|
|
2173
2173
|
id: string;
|
|
2174
2174
|
}
|
|
@@ -2405,9 +2405,9 @@ export interface DeleteAppLevelInput {
|
|
|
2405
2405
|
clientMutationId?: string;
|
|
2406
2406
|
id: string;
|
|
2407
2407
|
}
|
|
2408
|
-
export interface
|
|
2408
|
+
export interface CreateAppInviteInput {
|
|
2409
2409
|
clientMutationId?: string;
|
|
2410
|
-
|
|
2410
|
+
appInvite: {
|
|
2411
2411
|
email?: ConstructiveInternalTypeEmail;
|
|
2412
2412
|
senderId?: string;
|
|
2413
2413
|
inviteToken?: string;
|
|
@@ -2419,7 +2419,7 @@ export interface CreateInviteInput {
|
|
|
2419
2419
|
expiresAt?: string;
|
|
2420
2420
|
};
|
|
2421
2421
|
}
|
|
2422
|
-
export interface
|
|
2422
|
+
export interface AppInvitePatch {
|
|
2423
2423
|
email?: ConstructiveInternalTypeEmail | null;
|
|
2424
2424
|
senderId?: string | null;
|
|
2425
2425
|
inviteToken?: string | null;
|
|
@@ -2430,12 +2430,12 @@ export interface InvitePatch {
|
|
|
2430
2430
|
data?: Record<string, unknown> | null;
|
|
2431
2431
|
expiresAt?: string | null;
|
|
2432
2432
|
}
|
|
2433
|
-
export interface
|
|
2433
|
+
export interface UpdateAppInviteInput {
|
|
2434
2434
|
clientMutationId?: string;
|
|
2435
2435
|
id: string;
|
|
2436
|
-
|
|
2436
|
+
appInvitePatch: AppInvitePatch;
|
|
2437
2437
|
}
|
|
2438
|
-
export interface
|
|
2438
|
+
export interface DeleteAppInviteInput {
|
|
2439
2439
|
clientMutationId?: string;
|
|
2440
2440
|
id: string;
|
|
2441
2441
|
}
|
|
@@ -2562,7 +2562,7 @@ export interface DeleteOrgInviteInput {
|
|
|
2562
2562
|
id: string;
|
|
2563
2563
|
}
|
|
2564
2564
|
export declare const connectionFieldsMap: Record<string, Record<string, string>>;
|
|
2565
|
-
export interface
|
|
2565
|
+
export interface SubmitAppInviteCodeInput {
|
|
2566
2566
|
clientMutationId?: string;
|
|
2567
2567
|
token?: string;
|
|
2568
2568
|
}
|
|
@@ -2759,11 +2759,11 @@ export type AppLevelRequirementConnectionSelect = {
|
|
|
2759
2759
|
};
|
|
2760
2760
|
totalCount?: boolean;
|
|
2761
2761
|
};
|
|
2762
|
-
export interface
|
|
2762
|
+
export interface SubmitAppInviteCodePayload {
|
|
2763
2763
|
clientMutationId?: string | null;
|
|
2764
2764
|
result?: boolean | null;
|
|
2765
2765
|
}
|
|
2766
|
-
export type
|
|
2766
|
+
export type SubmitAppInviteCodePayloadSelect = {
|
|
2767
2767
|
clientMutationId?: boolean;
|
|
2768
2768
|
result?: boolean;
|
|
2769
2769
|
};
|
|
@@ -3549,49 +3549,49 @@ export type DeleteAppStepPayloadSelect = {
|
|
|
3549
3549
|
select: AppStepEdgeSelect;
|
|
3550
3550
|
};
|
|
3551
3551
|
};
|
|
3552
|
-
export interface
|
|
3552
|
+
export interface CreateAppClaimedInvitePayload {
|
|
3553
3553
|
clientMutationId?: string | null;
|
|
3554
|
-
/** The `
|
|
3555
|
-
|
|
3556
|
-
|
|
3554
|
+
/** The `AppClaimedInvite` that was created by this mutation. */
|
|
3555
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
3556
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
3557
3557
|
}
|
|
3558
|
-
export type
|
|
3558
|
+
export type CreateAppClaimedInvitePayloadSelect = {
|
|
3559
3559
|
clientMutationId?: boolean;
|
|
3560
|
-
|
|
3561
|
-
select:
|
|
3560
|
+
appClaimedInvite?: {
|
|
3561
|
+
select: AppClaimedInviteSelect;
|
|
3562
3562
|
};
|
|
3563
|
-
|
|
3564
|
-
select:
|
|
3563
|
+
appClaimedInviteEdge?: {
|
|
3564
|
+
select: AppClaimedInviteEdgeSelect;
|
|
3565
3565
|
};
|
|
3566
3566
|
};
|
|
3567
|
-
export interface
|
|
3567
|
+
export interface UpdateAppClaimedInvitePayload {
|
|
3568
3568
|
clientMutationId?: string | null;
|
|
3569
|
-
/** The `
|
|
3570
|
-
|
|
3571
|
-
|
|
3569
|
+
/** The `AppClaimedInvite` that was updated by this mutation. */
|
|
3570
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
3571
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
3572
3572
|
}
|
|
3573
|
-
export type
|
|
3573
|
+
export type UpdateAppClaimedInvitePayloadSelect = {
|
|
3574
3574
|
clientMutationId?: boolean;
|
|
3575
|
-
|
|
3576
|
-
select:
|
|
3575
|
+
appClaimedInvite?: {
|
|
3576
|
+
select: AppClaimedInviteSelect;
|
|
3577
3577
|
};
|
|
3578
|
-
|
|
3579
|
-
select:
|
|
3578
|
+
appClaimedInviteEdge?: {
|
|
3579
|
+
select: AppClaimedInviteEdgeSelect;
|
|
3580
3580
|
};
|
|
3581
3581
|
};
|
|
3582
|
-
export interface
|
|
3582
|
+
export interface DeleteAppClaimedInvitePayload {
|
|
3583
3583
|
clientMutationId?: string | null;
|
|
3584
|
-
/** The `
|
|
3585
|
-
|
|
3586
|
-
|
|
3584
|
+
/** The `AppClaimedInvite` that was deleted by this mutation. */
|
|
3585
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
3586
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
3587
3587
|
}
|
|
3588
|
-
export type
|
|
3588
|
+
export type DeleteAppClaimedInvitePayloadSelect = {
|
|
3589
3589
|
clientMutationId?: boolean;
|
|
3590
|
-
|
|
3591
|
-
select:
|
|
3590
|
+
appClaimedInvite?: {
|
|
3591
|
+
select: AppClaimedInviteSelect;
|
|
3592
3592
|
};
|
|
3593
|
-
|
|
3594
|
-
select:
|
|
3593
|
+
appClaimedInviteEdge?: {
|
|
3594
|
+
select: AppClaimedInviteEdgeSelect;
|
|
3595
3595
|
};
|
|
3596
3596
|
};
|
|
3597
3597
|
export interface CreateOrgChartEdgeGrantPayload {
|
|
@@ -3999,49 +3999,49 @@ export type DeleteAppLevelPayloadSelect = {
|
|
|
3999
3999
|
select: AppLevelEdgeSelect;
|
|
4000
4000
|
};
|
|
4001
4001
|
};
|
|
4002
|
-
export interface
|
|
4002
|
+
export interface CreateAppInvitePayload {
|
|
4003
4003
|
clientMutationId?: string | null;
|
|
4004
|
-
/** The `
|
|
4005
|
-
|
|
4006
|
-
|
|
4004
|
+
/** The `AppInvite` that was created by this mutation. */
|
|
4005
|
+
appInvite?: AppInvite | null;
|
|
4006
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
4007
4007
|
}
|
|
4008
|
-
export type
|
|
4008
|
+
export type CreateAppInvitePayloadSelect = {
|
|
4009
4009
|
clientMutationId?: boolean;
|
|
4010
|
-
|
|
4011
|
-
select:
|
|
4010
|
+
appInvite?: {
|
|
4011
|
+
select: AppInviteSelect;
|
|
4012
4012
|
};
|
|
4013
|
-
|
|
4014
|
-
select:
|
|
4013
|
+
appInviteEdge?: {
|
|
4014
|
+
select: AppInviteEdgeSelect;
|
|
4015
4015
|
};
|
|
4016
4016
|
};
|
|
4017
|
-
export interface
|
|
4017
|
+
export interface UpdateAppInvitePayload {
|
|
4018
4018
|
clientMutationId?: string | null;
|
|
4019
|
-
/** The `
|
|
4020
|
-
|
|
4021
|
-
|
|
4019
|
+
/** The `AppInvite` that was updated by this mutation. */
|
|
4020
|
+
appInvite?: AppInvite | null;
|
|
4021
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
4022
4022
|
}
|
|
4023
|
-
export type
|
|
4023
|
+
export type UpdateAppInvitePayloadSelect = {
|
|
4024
4024
|
clientMutationId?: boolean;
|
|
4025
|
-
|
|
4026
|
-
select:
|
|
4025
|
+
appInvite?: {
|
|
4026
|
+
select: AppInviteSelect;
|
|
4027
4027
|
};
|
|
4028
|
-
|
|
4029
|
-
select:
|
|
4028
|
+
appInviteEdge?: {
|
|
4029
|
+
select: AppInviteEdgeSelect;
|
|
4030
4030
|
};
|
|
4031
4031
|
};
|
|
4032
|
-
export interface
|
|
4032
|
+
export interface DeleteAppInvitePayload {
|
|
4033
4033
|
clientMutationId?: string | null;
|
|
4034
|
-
/** The `
|
|
4035
|
-
|
|
4036
|
-
|
|
4034
|
+
/** The `AppInvite` that was deleted by this mutation. */
|
|
4035
|
+
appInvite?: AppInvite | null;
|
|
4036
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
4037
4037
|
}
|
|
4038
|
-
export type
|
|
4038
|
+
export type DeleteAppInvitePayloadSelect = {
|
|
4039
4039
|
clientMutationId?: boolean;
|
|
4040
|
-
|
|
4041
|
-
select:
|
|
4040
|
+
appInvite?: {
|
|
4041
|
+
select: AppInviteSelect;
|
|
4042
4042
|
};
|
|
4043
|
-
|
|
4044
|
-
select:
|
|
4043
|
+
appInviteEdge?: {
|
|
4044
|
+
select: AppInviteEdgeSelect;
|
|
4045
4045
|
};
|
|
4046
4046
|
};
|
|
4047
4047
|
export interface CreateAppMembershipPayload {
|
|
@@ -4388,16 +4388,16 @@ export type AppStepEdgeSelect = {
|
|
|
4388
4388
|
select: AppStepSelect;
|
|
4389
4389
|
};
|
|
4390
4390
|
};
|
|
4391
|
-
/** A `
|
|
4392
|
-
export interface
|
|
4391
|
+
/** A `AppClaimedInvite` edge in the connection. */
|
|
4392
|
+
export interface AppClaimedInviteEdge {
|
|
4393
4393
|
cursor?: string | null;
|
|
4394
|
-
/** The `
|
|
4395
|
-
node?:
|
|
4394
|
+
/** The `AppClaimedInvite` at the end of the edge. */
|
|
4395
|
+
node?: AppClaimedInvite | null;
|
|
4396
4396
|
}
|
|
4397
|
-
export type
|
|
4397
|
+
export type AppClaimedInviteEdgeSelect = {
|
|
4398
4398
|
cursor?: boolean;
|
|
4399
4399
|
node?: {
|
|
4400
|
-
select:
|
|
4400
|
+
select: AppClaimedInviteSelect;
|
|
4401
4401
|
};
|
|
4402
4402
|
};
|
|
4403
4403
|
/** A `OrgChartEdgeGrant` edge in the connection. */
|
|
@@ -4508,16 +4508,16 @@ export type AppLevelEdgeSelect = {
|
|
|
4508
4508
|
select: AppLevelSelect;
|
|
4509
4509
|
};
|
|
4510
4510
|
};
|
|
4511
|
-
/** A `
|
|
4512
|
-
export interface
|
|
4511
|
+
/** A `AppInvite` edge in the connection. */
|
|
4512
|
+
export interface AppInviteEdge {
|
|
4513
4513
|
cursor?: string | null;
|
|
4514
|
-
/** The `
|
|
4515
|
-
node?:
|
|
4514
|
+
/** The `AppInvite` at the end of the edge. */
|
|
4515
|
+
node?: AppInvite | null;
|
|
4516
4516
|
}
|
|
4517
|
-
export type
|
|
4517
|
+
export type AppInviteEdgeSelect = {
|
|
4518
4518
|
cursor?: boolean;
|
|
4519
4519
|
node?: {
|
|
4520
|
-
select:
|
|
4520
|
+
select: AppInviteSelect;
|
|
4521
4521
|
};
|
|
4522
4522
|
};
|
|
4523
4523
|
/** A `AppMembership` edge in the connection. */
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AppClaimedInvite model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { AppClaimedInviteWithRelations, AppClaimedInviteSelect, AppClaimedInviteFilter, AppClaimedInviteOrderBy, CreateAppClaimedInviteInput, AppClaimedInvitePatch } from '../input-types';
|
|
10
|
+
export declare class AppClaimedInviteModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends AppClaimedInviteSelect>(args: FindManyArgs<S, AppClaimedInviteFilter, AppClaimedInviteOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, AppClaimedInviteSelect>): QueryBuilder<{
|
|
16
|
+
appClaimedInvites: ConnectionResult<InferSelectResult<AppClaimedInviteWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends AppClaimedInviteSelect>(args: FindFirstArgs<S, AppClaimedInviteFilter> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, AppClaimedInviteSelect>): QueryBuilder<{
|
|
21
|
+
appClaimedInvites: {
|
|
22
|
+
nodes: InferSelectResult<AppClaimedInviteWithRelations, S>[];
|
|
23
|
+
};
|
|
24
|
+
}>;
|
|
25
|
+
findOne<S extends AppClaimedInviteSelect>(args: {
|
|
26
|
+
id: string;
|
|
27
|
+
select: S;
|
|
28
|
+
} & StrictSelect<S, AppClaimedInviteSelect>): QueryBuilder<{
|
|
29
|
+
appClaimedInvite: InferSelectResult<AppClaimedInviteWithRelations, S> | null;
|
|
30
|
+
}>;
|
|
31
|
+
create<S extends AppClaimedInviteSelect>(args: CreateArgs<S, CreateAppClaimedInviteInput['appClaimedInvite']> & {
|
|
32
|
+
select: S;
|
|
33
|
+
} & StrictSelect<S, AppClaimedInviteSelect>): QueryBuilder<{
|
|
34
|
+
createAppClaimedInvite: {
|
|
35
|
+
appClaimedInvite: InferSelectResult<AppClaimedInviteWithRelations, S>;
|
|
36
|
+
};
|
|
37
|
+
}>;
|
|
38
|
+
update<S extends AppClaimedInviteSelect>(args: UpdateArgs<S, {
|
|
39
|
+
id: string;
|
|
40
|
+
}, AppClaimedInvitePatch> & {
|
|
41
|
+
select: S;
|
|
42
|
+
} & StrictSelect<S, AppClaimedInviteSelect>): QueryBuilder<{
|
|
43
|
+
updateAppClaimedInvite: {
|
|
44
|
+
appClaimedInvite: InferSelectResult<AppClaimedInviteWithRelations, S>;
|
|
45
|
+
};
|
|
46
|
+
}>;
|
|
47
|
+
delete<S extends AppClaimedInviteSelect>(args: DeleteArgs<{
|
|
48
|
+
id: string;
|
|
49
|
+
}, S> & {
|
|
50
|
+
select: S;
|
|
51
|
+
} & StrictSelect<S, AppClaimedInviteSelect>): QueryBuilder<{
|
|
52
|
+
deleteAppClaimedInvite: {
|
|
53
|
+
appClaimedInvite: InferSelectResult<AppClaimedInviteWithRelations, S>;
|
|
54
|
+
};
|
|
55
|
+
}>;
|
|
56
|
+
}
|