@constructive-sdk/cli 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/cli/commands/{claimed-invite.d.ts → app-claimed-invite.d.ts} +1 -1
- package/admin/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
- package/{esm/public/cli/commands/invite.d.ts → admin/cli/commands/app-invite.d.ts} +1 -1
- package/{public/cli/commands/invite.js → admin/cli/commands/app-invite.js} +8 -8
- package/admin/cli/commands/steps-achieved.js +4 -4
- package/admin/cli/commands/steps-required.js +4 -4
- package/admin/cli/commands/{submit-invite-code.d.ts → submit-app-invite-code.d.ts} +1 -1
- package/admin/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
- package/admin/cli/commands.js +7 -7
- package/admin/cli/executor.d.ts +5 -5
- 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/cli/commands.js +5 -5
- package/auth/cli/executor.d.ts +10 -10
- 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/cli/commands/{claimed-invite.d.ts → app-claimed-invite.d.ts} +1 -1
- package/esm/admin/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
- package/esm/admin/cli/commands/{invite.d.ts → app-invite.d.ts} +1 -1
- package/esm/{public/cli/commands/invite.js → admin/cli/commands/app-invite.js} +8 -8
- package/esm/admin/cli/commands/steps-achieved.js +4 -4
- package/esm/admin/cli/commands/steps-required.js +4 -4
- package/esm/admin/cli/commands/submit-app-invite-code.d.ts +8 -0
- package/esm/admin/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
- package/esm/admin/cli/commands.js +7 -7
- package/esm/admin/cli/executor.d.ts +5 -5
- 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/cli/commands.js +5 -5
- package/esm/auth/cli/executor.d.ts +10 -10
- 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/cli/commands/app-claimed-invite.d.ts +8 -0
- package/esm/public/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
- package/{admin/cli/commands/invite.d.ts → esm/public/cli/commands/app-invite.d.ts} +1 -1
- package/esm/{admin/cli/commands/invite.js → public/cli/commands/app-invite.js} +8 -8
- package/esm/public/cli/commands/rate-limits-module.d.ts +8 -0
- package/esm/public/cli/commands/rate-limits-module.js +382 -0
- package/esm/public/cli/commands/steps-achieved.js +4 -4
- package/esm/public/cli/commands/steps-required.js +4 -4
- package/esm/public/cli/commands/submit-app-invite-code.d.ts +8 -0
- package/esm/public/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
- package/esm/public/cli/commands.js +13 -11
- package/esm/public/cli/executor.d.ts +16 -15
- 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/cli/commands/app-claimed-invite.d.ts +8 -0
- package/public/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
- package/public/cli/commands/{invite.d.ts → app-invite.d.ts} +1 -1
- package/{admin/cli/commands/invite.js → public/cli/commands/app-invite.js} +8 -8
- package/public/cli/commands/rate-limits-module.d.ts +8 -0
- package/public/cli/commands/rate-limits-module.js +384 -0
- package/public/cli/commands/steps-achieved.js +4 -4
- package/public/cli/commands/steps-required.js +4 -4
- package/public/cli/commands/submit-app-invite-code.d.ts +8 -0
- package/public/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
- package/public/cli/commands.js +13 -11
- package/public/cli/executor.d.ts +16 -15
- 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/cli/commands/submit-invite-code.d.ts +0 -8
- package/esm/admin/orm/models/claimedInvite.d.ts +0 -56
- package/esm/admin/orm/models/invite.d.ts +0 -56
- package/esm/public/cli/commands/claimed-invite.d.ts +0 -8
- package/esm/public/cli/commands/submit-invite-code.d.ts +0 -8
- package/esm/public/orm/models/claimedInvite.d.ts +0 -56
- package/esm/public/orm/models/invite.d.ts +0 -56
- package/public/cli/commands/claimed-invite.d.ts +0 -8
- package/public/cli/commands/submit-invite-code.d.ts +0 -8
- package/public/orm/models/claimedInvite.d.ts +0 -56
- package/public/orm/models/invite.d.ts +0 -56
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { SendAccountDeletionEmailInput, SignOutInput, AcceptDatabaseTransferInput, CancelDatabaseTransferInput, RejectDatabaseTransferInput,
|
|
9
|
+
import type { SendAccountDeletionEmailInput, SignOutInput, AcceptDatabaseTransferInput, CancelDatabaseTransferInput, RejectDatabaseTransferInput, VerifyPasswordInput, VerifyTotpInput, SubmitAppInviteCodeInput, SubmitOrgInviteCodeInput, CheckPasswordInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, FreezeObjectsInput, InitEmptyRepoInput, ConstructBlueprintInput, ResetPasswordInput, RemoveNodeAtPathInput, CopyTemplateToBlueprintInput, BootstrapUserInput, SetFieldOrderInput, ProvisionUniqueConstraintInput, ProvisionFullTextSearchInput, ProvisionIndexInput, SetDataAtPathInput, SetPropsAndCommitInput, ProvisionDatabaseWithUserInput, InsertNodeAtPathInput, UpdateNodeAtPathInput, SetAndCommitInput, ProvisionRelationInput, ApplyRlsInput, SignInOneTimeTokenInput, CreateUserDatabaseInput, ExtendTokenExpiresInput, SignInInput, SignUpInput, OneTimeTokenInput, ProvisionTableInput, SendVerificationEmailInput, ForgotPasswordInput, RequestUploadUrlInput, ConfirmUploadInput, ProvisionBucketInput, SendAccountDeletionEmailPayload, SignOutPayload, AcceptDatabaseTransferPayload, CancelDatabaseTransferPayload, RejectDatabaseTransferPayload, VerifyPasswordPayload, VerifyTotpPayload, SubmitAppInviteCodePayload, SubmitOrgInviteCodePayload, CheckPasswordPayload, ConfirmDeleteAccountPayload, SetPasswordPayload, VerifyEmailPayload, FreezeObjectsPayload, InitEmptyRepoPayload, ConstructBlueprintPayload, ResetPasswordPayload, RemoveNodeAtPathPayload, CopyTemplateToBlueprintPayload, BootstrapUserPayload, SetFieldOrderPayload, ProvisionUniqueConstraintPayload, ProvisionFullTextSearchPayload, ProvisionIndexPayload, SetDataAtPathPayload, SetPropsAndCommitPayload, ProvisionDatabaseWithUserPayload, InsertNodeAtPathPayload, UpdateNodeAtPathPayload, SetAndCommitPayload, ProvisionRelationPayload, ApplyRlsPayload, SignInOneTimeTokenPayload, CreateUserDatabasePayload, ExtendTokenExpiresPayload, SignInPayload, SignUpPayload, OneTimeTokenPayload, ProvisionTablePayload, SendVerificationEmailPayload, ForgotPasswordPayload, RequestUploadUrlPayload, ConfirmUploadPayload, ProvisionBucketPayload, SendAccountDeletionEmailPayloadSelect, SignOutPayloadSelect, AcceptDatabaseTransferPayloadSelect, CancelDatabaseTransferPayloadSelect, RejectDatabaseTransferPayloadSelect, VerifyPasswordPayloadSelect, VerifyTotpPayloadSelect, SubmitAppInviteCodePayloadSelect, SubmitOrgInviteCodePayloadSelect, CheckPasswordPayloadSelect, ConfirmDeleteAccountPayloadSelect, SetPasswordPayloadSelect, VerifyEmailPayloadSelect, FreezeObjectsPayloadSelect, InitEmptyRepoPayloadSelect, ConstructBlueprintPayloadSelect, ResetPasswordPayloadSelect, RemoveNodeAtPathPayloadSelect, CopyTemplateToBlueprintPayloadSelect, BootstrapUserPayloadSelect, SetFieldOrderPayloadSelect, ProvisionUniqueConstraintPayloadSelect, ProvisionFullTextSearchPayloadSelect, ProvisionIndexPayloadSelect, SetDataAtPathPayloadSelect, SetPropsAndCommitPayloadSelect, ProvisionDatabaseWithUserPayloadSelect, InsertNodeAtPathPayloadSelect, UpdateNodeAtPathPayloadSelect, SetAndCommitPayloadSelect, ProvisionRelationPayloadSelect, ApplyRlsPayloadSelect, SignInOneTimeTokenPayloadSelect, CreateUserDatabasePayloadSelect, ExtendTokenExpiresPayloadSelect, SignInPayloadSelect, SignUpPayloadSelect, OneTimeTokenPayloadSelect, ProvisionTablePayloadSelect, SendVerificationEmailPayloadSelect, ForgotPasswordPayloadSelect, RequestUploadUrlPayloadSelect, ConfirmUploadPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface SendAccountDeletionEmailVariables {
|
|
11
11
|
input: SendAccountDeletionEmailInput;
|
|
12
12
|
}
|
|
@@ -22,8 +22,14 @@ export interface CancelDatabaseTransferVariables {
|
|
|
22
22
|
export interface RejectDatabaseTransferVariables {
|
|
23
23
|
input: RejectDatabaseTransferInput;
|
|
24
24
|
}
|
|
25
|
-
export interface
|
|
26
|
-
input:
|
|
25
|
+
export interface VerifyPasswordVariables {
|
|
26
|
+
input: VerifyPasswordInput;
|
|
27
|
+
}
|
|
28
|
+
export interface VerifyTotpVariables {
|
|
29
|
+
input: VerifyTotpInput;
|
|
30
|
+
}
|
|
31
|
+
export interface SubmitAppInviteCodeVariables {
|
|
32
|
+
input: SubmitAppInviteCodeInput;
|
|
27
33
|
}
|
|
28
34
|
export interface SubmitOrgInviteCodeVariables {
|
|
29
35
|
input: SubmitOrgInviteCodeInput;
|
|
@@ -171,12 +177,6 @@ export interface SendVerificationEmailVariables {
|
|
|
171
177
|
export interface ForgotPasswordVariables {
|
|
172
178
|
input: ForgotPasswordInput;
|
|
173
179
|
}
|
|
174
|
-
export interface VerifyPasswordVariables {
|
|
175
|
-
input: VerifyPasswordInput;
|
|
176
|
-
}
|
|
177
|
-
export interface VerifyTotpVariables {
|
|
178
|
-
input: VerifyTotpInput;
|
|
179
|
-
}
|
|
180
180
|
/**
|
|
181
181
|
* Variables for requestUploadUrl
|
|
182
182
|
* Request a presigned URL for uploading a file directly to S3.
|
|
@@ -232,10 +232,20 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
232
232
|
} & StrictSelect<S, RejectDatabaseTransferPayloadSelect>) => QueryBuilder<{
|
|
233
233
|
rejectDatabaseTransfer: InferSelectResult<RejectDatabaseTransferPayload, S> | null;
|
|
234
234
|
}>;
|
|
235
|
-
|
|
235
|
+
verifyPassword: <S extends VerifyPasswordPayloadSelect>(args: VerifyPasswordVariables, options: {
|
|
236
|
+
select: S;
|
|
237
|
+
} & StrictSelect<S, VerifyPasswordPayloadSelect>) => QueryBuilder<{
|
|
238
|
+
verifyPassword: InferSelectResult<VerifyPasswordPayload, S> | null;
|
|
239
|
+
}>;
|
|
240
|
+
verifyTotp: <S extends VerifyTotpPayloadSelect>(args: VerifyTotpVariables, options: {
|
|
241
|
+
select: S;
|
|
242
|
+
} & StrictSelect<S, VerifyTotpPayloadSelect>) => QueryBuilder<{
|
|
243
|
+
verifyTotp: InferSelectResult<VerifyTotpPayload, S> | null;
|
|
244
|
+
}>;
|
|
245
|
+
submitAppInviteCode: <S extends SubmitAppInviteCodePayloadSelect>(args: SubmitAppInviteCodeVariables, options: {
|
|
236
246
|
select: S;
|
|
237
|
-
} & StrictSelect<S,
|
|
238
|
-
|
|
247
|
+
} & StrictSelect<S, SubmitAppInviteCodePayloadSelect>) => QueryBuilder<{
|
|
248
|
+
submitAppInviteCode: InferSelectResult<SubmitAppInviteCodePayload, S> | null;
|
|
239
249
|
}>;
|
|
240
250
|
submitOrgInviteCode: <S extends SubmitOrgInviteCodePayloadSelect>(args: SubmitOrgInviteCodeVariables, options: {
|
|
241
251
|
select: S;
|
|
@@ -402,16 +412,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
402
412
|
} & StrictSelect<S, ForgotPasswordPayloadSelect>) => QueryBuilder<{
|
|
403
413
|
forgotPassword: InferSelectResult<ForgotPasswordPayload, S> | null;
|
|
404
414
|
}>;
|
|
405
|
-
verifyPassword: <S extends VerifyPasswordPayloadSelect>(args: VerifyPasswordVariables, options: {
|
|
406
|
-
select: S;
|
|
407
|
-
} & StrictSelect<S, VerifyPasswordPayloadSelect>) => QueryBuilder<{
|
|
408
|
-
verifyPassword: InferSelectResult<VerifyPasswordPayload, S> | null;
|
|
409
|
-
}>;
|
|
410
|
-
verifyTotp: <S extends VerifyTotpPayloadSelect>(args: VerifyTotpVariables, options: {
|
|
411
|
-
select: S;
|
|
412
|
-
} & StrictSelect<S, VerifyTotpPayloadSelect>) => QueryBuilder<{
|
|
413
|
-
verifyTotp: InferSelectResult<VerifyTotpPayload, S> | null;
|
|
414
|
-
}>;
|
|
415
415
|
requestUploadUrl: <S extends RequestUploadUrlPayloadSelect>(args: RequestUploadUrlVariables, options: {
|
|
416
416
|
select: S;
|
|
417
417
|
} & StrictSelect<S, RequestUploadUrlPayloadSelect>) => QueryBuilder<{
|
|
@@ -65,17 +65,41 @@ function createMutationOperations(client) {
|
|
|
65
65
|
},
|
|
66
66
|
], input_types_1.connectionFieldsMap, 'RejectDatabaseTransferPayload'),
|
|
67
67
|
}),
|
|
68
|
-
|
|
68
|
+
verifyPassword: (args, options) => new query_builder_1.QueryBuilder({
|
|
69
|
+
client,
|
|
70
|
+
operation: 'mutation',
|
|
71
|
+
operationName: 'VerifyPassword',
|
|
72
|
+
fieldName: 'verifyPassword',
|
|
73
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyPassword', 'verifyPassword', options.select, args, [
|
|
74
|
+
{
|
|
75
|
+
name: 'input',
|
|
76
|
+
type: 'VerifyPasswordInput!',
|
|
77
|
+
},
|
|
78
|
+
], input_types_1.connectionFieldsMap, 'VerifyPasswordPayload'),
|
|
79
|
+
}),
|
|
80
|
+
verifyTotp: (args, options) => new query_builder_1.QueryBuilder({
|
|
81
|
+
client,
|
|
82
|
+
operation: 'mutation',
|
|
83
|
+
operationName: 'VerifyTotp',
|
|
84
|
+
fieldName: 'verifyTotp',
|
|
85
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyTotp', 'verifyTotp', options.select, args, [
|
|
86
|
+
{
|
|
87
|
+
name: 'input',
|
|
88
|
+
type: 'VerifyTotpInput!',
|
|
89
|
+
},
|
|
90
|
+
], input_types_1.connectionFieldsMap, 'VerifyTotpPayload'),
|
|
91
|
+
}),
|
|
92
|
+
submitAppInviteCode: (args, options) => new query_builder_1.QueryBuilder({
|
|
69
93
|
client,
|
|
70
94
|
operation: 'mutation',
|
|
71
|
-
operationName: '
|
|
72
|
-
fieldName: '
|
|
73
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', '
|
|
95
|
+
operationName: 'SubmitAppInviteCode',
|
|
96
|
+
fieldName: 'submitAppInviteCode',
|
|
97
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'SubmitAppInviteCode', 'submitAppInviteCode', options.select, args, [
|
|
74
98
|
{
|
|
75
99
|
name: 'input',
|
|
76
|
-
type: '
|
|
100
|
+
type: 'SubmitAppInviteCodeInput!',
|
|
77
101
|
},
|
|
78
|
-
], input_types_1.connectionFieldsMap, '
|
|
102
|
+
], input_types_1.connectionFieldsMap, 'SubmitAppInviteCodePayload'),
|
|
79
103
|
}),
|
|
80
104
|
submitOrgInviteCode: (args, options) => new query_builder_1.QueryBuilder({
|
|
81
105
|
client,
|
|
@@ -473,30 +497,6 @@ function createMutationOperations(client) {
|
|
|
473
497
|
},
|
|
474
498
|
], input_types_1.connectionFieldsMap, 'ForgotPasswordPayload'),
|
|
475
499
|
}),
|
|
476
|
-
verifyPassword: (args, options) => new query_builder_1.QueryBuilder({
|
|
477
|
-
client,
|
|
478
|
-
operation: 'mutation',
|
|
479
|
-
operationName: 'VerifyPassword',
|
|
480
|
-
fieldName: 'verifyPassword',
|
|
481
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyPassword', 'verifyPassword', options.select, args, [
|
|
482
|
-
{
|
|
483
|
-
name: 'input',
|
|
484
|
-
type: 'VerifyPasswordInput!',
|
|
485
|
-
},
|
|
486
|
-
], input_types_1.connectionFieldsMap, 'VerifyPasswordPayload'),
|
|
487
|
-
}),
|
|
488
|
-
verifyTotp: (args, options) => new query_builder_1.QueryBuilder({
|
|
489
|
-
client,
|
|
490
|
-
operation: 'mutation',
|
|
491
|
-
operationName: 'VerifyTotp',
|
|
492
|
-
fieldName: 'verifyTotp',
|
|
493
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyTotp', 'verifyTotp', options.select, args, [
|
|
494
|
-
{
|
|
495
|
-
name: 'input',
|
|
496
|
-
type: 'VerifyTotpInput!',
|
|
497
|
-
},
|
|
498
|
-
], input_types_1.connectionFieldsMap, 'VerifyTotpPayload'),
|
|
499
|
-
}),
|
|
500
500
|
requestUploadUrl: (args, options) => new query_builder_1.QueryBuilder({
|
|
501
501
|
client,
|
|
502
502
|
operation: 'mutation',
|
|
@@ -14,8 +14,8 @@ export interface OrgPermissionsGetPaddedMaskVariables {
|
|
|
14
14
|
mask?: string;
|
|
15
15
|
}
|
|
16
16
|
export interface StepsAchievedVariables {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
level?: string;
|
|
18
|
+
roleId?: string;
|
|
19
19
|
}
|
|
20
20
|
export interface RevParseVariables {
|
|
21
21
|
dbId?: string;
|
|
@@ -109,8 +109,8 @@ export interface OrgPermissionsGetByMaskVariables {
|
|
|
109
109
|
after?: string;
|
|
110
110
|
}
|
|
111
111
|
export interface StepsRequiredVariables {
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
level?: string;
|
|
113
|
+
roleId?: string;
|
|
114
114
|
/** Only read the first `n` values of the set. */
|
|
115
115
|
first?: number;
|
|
116
116
|
/**
|
|
@@ -57,11 +57,11 @@ function createQueryOperations(client) {
|
|
|
57
57
|
fieldName: 'stepsAchieved',
|
|
58
58
|
...(0, query_builder_1.buildCustomDocument)('query', 'StepsAchieved', 'stepsAchieved', options?.select, args, [
|
|
59
59
|
{
|
|
60
|
-
name: '
|
|
60
|
+
name: 'level',
|
|
61
61
|
type: 'String',
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
|
-
name: '
|
|
64
|
+
name: 'roleId',
|
|
65
65
|
type: 'UUID',
|
|
66
66
|
},
|
|
67
67
|
], input_types_1.connectionFieldsMap, undefined),
|
|
@@ -325,11 +325,11 @@ function createQueryOperations(client) {
|
|
|
325
325
|
fieldName: 'stepsRequired',
|
|
326
326
|
...(0, query_builder_1.buildCustomDocument)('query', 'StepsRequired', 'stepsRequired', options?.select, args, [
|
|
327
327
|
{
|
|
328
|
-
name: '
|
|
328
|
+
name: 'level',
|
|
329
329
|
type: 'String',
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
|
-
name: '
|
|
332
|
+
name: 'roleId',
|
|
333
333
|
type: 'UUID',
|
|
334
334
|
},
|
|
335
335
|
{
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ClaimedInvite 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 { ClaimedInviteWithRelations, ClaimedInviteSelect, ClaimedInviteFilter, ClaimedInviteOrderBy, CreateClaimedInviteInput, ClaimedInvitePatch } from '../input-types';
|
|
10
|
-
export declare class ClaimedInviteModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends ClaimedInviteSelect>(args: FindManyArgs<S, ClaimedInviteFilter, ClaimedInviteOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
16
|
-
claimedInvites: ConnectionResult<InferSelectResult<ClaimedInviteWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends ClaimedInviteSelect>(args: FindFirstArgs<S, ClaimedInviteFilter> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
21
|
-
claimedInvites: {
|
|
22
|
-
nodes: InferSelectResult<ClaimedInviteWithRelations, S>[];
|
|
23
|
-
};
|
|
24
|
-
}>;
|
|
25
|
-
findOne<S extends ClaimedInviteSelect>(args: {
|
|
26
|
-
id: string;
|
|
27
|
-
select: S;
|
|
28
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
29
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S> | null;
|
|
30
|
-
}>;
|
|
31
|
-
create<S extends ClaimedInviteSelect>(args: CreateArgs<S, CreateClaimedInviteInput['claimedInvite']> & {
|
|
32
|
-
select: S;
|
|
33
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
34
|
-
createClaimedInvite: {
|
|
35
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
36
|
-
};
|
|
37
|
-
}>;
|
|
38
|
-
update<S extends ClaimedInviteSelect>(args: UpdateArgs<S, {
|
|
39
|
-
id: string;
|
|
40
|
-
}, ClaimedInvitePatch> & {
|
|
41
|
-
select: S;
|
|
42
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
43
|
-
updateClaimedInvite: {
|
|
44
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
45
|
-
};
|
|
46
|
-
}>;
|
|
47
|
-
delete<S extends ClaimedInviteSelect>(args: DeleteArgs<{
|
|
48
|
-
id: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
52
|
-
deleteClaimedInvite: {
|
|
53
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Invite 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 { InviteWithRelations, InviteSelect, InviteFilter, InviteOrderBy, CreateInviteInput, InvitePatch } from '../input-types';
|
|
10
|
-
export declare class InviteModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends InviteSelect>(args: FindManyArgs<S, InviteFilter, InviteOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
16
|
-
invites: ConnectionResult<InferSelectResult<InviteWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends InviteSelect>(args: FindFirstArgs<S, InviteFilter> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
21
|
-
invites: {
|
|
22
|
-
nodes: InferSelectResult<InviteWithRelations, S>[];
|
|
23
|
-
};
|
|
24
|
-
}>;
|
|
25
|
-
findOne<S extends InviteSelect>(args: {
|
|
26
|
-
id: string;
|
|
27
|
-
select: S;
|
|
28
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
29
|
-
invite: InferSelectResult<InviteWithRelations, S> | null;
|
|
30
|
-
}>;
|
|
31
|
-
create<S extends InviteSelect>(args: CreateArgs<S, CreateInviteInput['invite']> & {
|
|
32
|
-
select: S;
|
|
33
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
34
|
-
createInvite: {
|
|
35
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
36
|
-
};
|
|
37
|
-
}>;
|
|
38
|
-
update<S extends InviteSelect>(args: UpdateArgs<S, {
|
|
39
|
-
id: string;
|
|
40
|
-
}, InvitePatch> & {
|
|
41
|
-
select: S;
|
|
42
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
43
|
-
updateInvite: {
|
|
44
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
45
|
-
};
|
|
46
|
-
}>;
|
|
47
|
-
delete<S extends InviteSelect>(args: DeleteArgs<{
|
|
48
|
-
id: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
52
|
-
deleteInvite: {
|
|
53
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CLI command for mutation submitInviteCode
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { CLIOptions, Inquirerer } from 'inquirerer';
|
|
7
|
-
declare const _default: (argv: Partial<Record<string, unknown>>, prompter: Inquirerer, _options: CLIOptions) => Promise<void>;
|
|
8
|
-
export default _default;
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ClaimedInvite 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 { ClaimedInviteWithRelations, ClaimedInviteSelect, ClaimedInviteFilter, ClaimedInviteOrderBy, CreateClaimedInviteInput, ClaimedInvitePatch } from '../input-types';
|
|
10
|
-
export declare class ClaimedInviteModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends ClaimedInviteSelect>(args: FindManyArgs<S, ClaimedInviteFilter, ClaimedInviteOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
16
|
-
claimedInvites: ConnectionResult<InferSelectResult<ClaimedInviteWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends ClaimedInviteSelect>(args: FindFirstArgs<S, ClaimedInviteFilter> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
21
|
-
claimedInvites: {
|
|
22
|
-
nodes: InferSelectResult<ClaimedInviteWithRelations, S>[];
|
|
23
|
-
};
|
|
24
|
-
}>;
|
|
25
|
-
findOne<S extends ClaimedInviteSelect>(args: {
|
|
26
|
-
id: string;
|
|
27
|
-
select: S;
|
|
28
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
29
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S> | null;
|
|
30
|
-
}>;
|
|
31
|
-
create<S extends ClaimedInviteSelect>(args: CreateArgs<S, CreateClaimedInviteInput['claimedInvite']> & {
|
|
32
|
-
select: S;
|
|
33
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
34
|
-
createClaimedInvite: {
|
|
35
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
36
|
-
};
|
|
37
|
-
}>;
|
|
38
|
-
update<S extends ClaimedInviteSelect>(args: UpdateArgs<S, {
|
|
39
|
-
id: string;
|
|
40
|
-
}, ClaimedInvitePatch> & {
|
|
41
|
-
select: S;
|
|
42
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
43
|
-
updateClaimedInvite: {
|
|
44
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
45
|
-
};
|
|
46
|
-
}>;
|
|
47
|
-
delete<S extends ClaimedInviteSelect>(args: DeleteArgs<{
|
|
48
|
-
id: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
52
|
-
deleteClaimedInvite: {
|
|
53
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Invite 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 { InviteWithRelations, InviteSelect, InviteFilter, InviteOrderBy, CreateInviteInput, InvitePatch } from '../input-types';
|
|
10
|
-
export declare class InviteModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends InviteSelect>(args: FindManyArgs<S, InviteFilter, InviteOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
16
|
-
invites: ConnectionResult<InferSelectResult<InviteWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends InviteSelect>(args: FindFirstArgs<S, InviteFilter> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
21
|
-
invites: {
|
|
22
|
-
nodes: InferSelectResult<InviteWithRelations, S>[];
|
|
23
|
-
};
|
|
24
|
-
}>;
|
|
25
|
-
findOne<S extends InviteSelect>(args: {
|
|
26
|
-
id: string;
|
|
27
|
-
select: S;
|
|
28
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
29
|
-
invite: InferSelectResult<InviteWithRelations, S> | null;
|
|
30
|
-
}>;
|
|
31
|
-
create<S extends InviteSelect>(args: CreateArgs<S, CreateInviteInput['invite']> & {
|
|
32
|
-
select: S;
|
|
33
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
34
|
-
createInvite: {
|
|
35
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
36
|
-
};
|
|
37
|
-
}>;
|
|
38
|
-
update<S extends InviteSelect>(args: UpdateArgs<S, {
|
|
39
|
-
id: string;
|
|
40
|
-
}, InvitePatch> & {
|
|
41
|
-
select: S;
|
|
42
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
43
|
-
updateInvite: {
|
|
44
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
45
|
-
};
|
|
46
|
-
}>;
|
|
47
|
-
delete<S extends InviteSelect>(args: DeleteArgs<{
|
|
48
|
-
id: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
52
|
-
deleteInvite: {
|
|
53
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CLI commands for ClaimedInvite
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { CLIOptions, Inquirerer } from 'inquirerer';
|
|
7
|
-
declare const _default: (argv: Partial<Record<string, unknown>>, prompter: Inquirerer, _options: CLIOptions) => Promise<void>;
|
|
8
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CLI command for mutation submitInviteCode
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { CLIOptions, Inquirerer } from 'inquirerer';
|
|
7
|
-
declare const _default: (argv: Partial<Record<string, unknown>>, prompter: Inquirerer, _options: CLIOptions) => Promise<void>;
|
|
8
|
-
export default _default;
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ClaimedInvite 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 { ClaimedInviteWithRelations, ClaimedInviteSelect, ClaimedInviteFilter, ClaimedInviteOrderBy, CreateClaimedInviteInput, ClaimedInvitePatch } from '../input-types';
|
|
10
|
-
export declare class ClaimedInviteModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends ClaimedInviteSelect>(args: FindManyArgs<S, ClaimedInviteFilter, ClaimedInviteOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
16
|
-
claimedInvites: ConnectionResult<InferSelectResult<ClaimedInviteWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends ClaimedInviteSelect>(args: FindFirstArgs<S, ClaimedInviteFilter> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
21
|
-
claimedInvites: {
|
|
22
|
-
nodes: InferSelectResult<ClaimedInviteWithRelations, S>[];
|
|
23
|
-
};
|
|
24
|
-
}>;
|
|
25
|
-
findOne<S extends ClaimedInviteSelect>(args: {
|
|
26
|
-
id: string;
|
|
27
|
-
select: S;
|
|
28
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
29
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S> | null;
|
|
30
|
-
}>;
|
|
31
|
-
create<S extends ClaimedInviteSelect>(args: CreateArgs<S, CreateClaimedInviteInput['claimedInvite']> & {
|
|
32
|
-
select: S;
|
|
33
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
34
|
-
createClaimedInvite: {
|
|
35
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
36
|
-
};
|
|
37
|
-
}>;
|
|
38
|
-
update<S extends ClaimedInviteSelect>(args: UpdateArgs<S, {
|
|
39
|
-
id: string;
|
|
40
|
-
}, ClaimedInvitePatch> & {
|
|
41
|
-
select: S;
|
|
42
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
43
|
-
updateClaimedInvite: {
|
|
44
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
45
|
-
};
|
|
46
|
-
}>;
|
|
47
|
-
delete<S extends ClaimedInviteSelect>(args: DeleteArgs<{
|
|
48
|
-
id: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, ClaimedInviteSelect>): QueryBuilder<{
|
|
52
|
-
deleteClaimedInvite: {
|
|
53
|
-
claimedInvite: InferSelectResult<ClaimedInviteWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Invite 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 { InviteWithRelations, InviteSelect, InviteFilter, InviteOrderBy, CreateInviteInput, InvitePatch } from '../input-types';
|
|
10
|
-
export declare class InviteModel {
|
|
11
|
-
private client;
|
|
12
|
-
constructor(client: OrmClient);
|
|
13
|
-
findMany<S extends InviteSelect>(args: FindManyArgs<S, InviteFilter, InviteOrderBy> & {
|
|
14
|
-
select: S;
|
|
15
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
16
|
-
invites: ConnectionResult<InferSelectResult<InviteWithRelations, S>>;
|
|
17
|
-
}>;
|
|
18
|
-
findFirst<S extends InviteSelect>(args: FindFirstArgs<S, InviteFilter> & {
|
|
19
|
-
select: S;
|
|
20
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
21
|
-
invites: {
|
|
22
|
-
nodes: InferSelectResult<InviteWithRelations, S>[];
|
|
23
|
-
};
|
|
24
|
-
}>;
|
|
25
|
-
findOne<S extends InviteSelect>(args: {
|
|
26
|
-
id: string;
|
|
27
|
-
select: S;
|
|
28
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
29
|
-
invite: InferSelectResult<InviteWithRelations, S> | null;
|
|
30
|
-
}>;
|
|
31
|
-
create<S extends InviteSelect>(args: CreateArgs<S, CreateInviteInput['invite']> & {
|
|
32
|
-
select: S;
|
|
33
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
34
|
-
createInvite: {
|
|
35
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
36
|
-
};
|
|
37
|
-
}>;
|
|
38
|
-
update<S extends InviteSelect>(args: UpdateArgs<S, {
|
|
39
|
-
id: string;
|
|
40
|
-
}, InvitePatch> & {
|
|
41
|
-
select: S;
|
|
42
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
43
|
-
updateInvite: {
|
|
44
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
45
|
-
};
|
|
46
|
-
}>;
|
|
47
|
-
delete<S extends InviteSelect>(args: DeleteArgs<{
|
|
48
|
-
id: string;
|
|
49
|
-
}, S> & {
|
|
50
|
-
select: S;
|
|
51
|
-
} & StrictSelect<S, InviteSelect>): QueryBuilder<{
|
|
52
|
-
deleteInvite: {
|
|
53
|
-
invite: InferSelectResult<InviteWithRelations, S>;
|
|
54
|
-
};
|
|
55
|
-
}>;
|
|
56
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CLI commands for ClaimedInvite
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { CLIOptions, Inquirerer } from 'inquirerer';
|
|
7
|
-
declare const _default: (argv: Partial<Record<string, unknown>>, prompter: Inquirerer, _options: CLIOptions) => Promise<void>;
|
|
8
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CLI command for mutation submitInviteCode
|
|
3
|
-
* @generated by @constructive-io/graphql-codegen
|
|
4
|
-
* DO NOT EDIT - changes will be overwritten
|
|
5
|
-
*/
|
|
6
|
-
import { CLIOptions, Inquirerer } from 'inquirerer';
|
|
7
|
-
declare const _default: (argv: Partial<Record<string, unknown>>, prompter: Inquirerer, _options: CLIOptions) => Promise<void>;
|
|
8
|
-
export default _default;
|