@constructive-sdk/cli 0.13.3 → 0.14.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/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 +5 -5
- 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
|
@@ -1671,7 +1671,7 @@ export interface ConnectedAccount {
|
|
|
1671
1671
|
updatedAt?: string | null;
|
|
1672
1672
|
}
|
|
1673
1673
|
/** Invitation records sent to prospective members via email, with token-based redemption and expiration */
|
|
1674
|
-
export interface
|
|
1674
|
+
export interface AppInvite {
|
|
1675
1675
|
id: string;
|
|
1676
1676
|
/** Email address of the invited recipient */
|
|
1677
1677
|
email?: ConstructiveInternalTypeEmail | null;
|
|
@@ -1695,7 +1695,7 @@ export interface Invite {
|
|
|
1695
1695
|
updatedAt?: string | null;
|
|
1696
1696
|
}
|
|
1697
1697
|
/** Records of successfully claimed invitations, linking senders to receivers */
|
|
1698
|
-
export interface
|
|
1698
|
+
export interface AppClaimedInvite {
|
|
1699
1699
|
id: string;
|
|
1700
1700
|
/** Optional JSON payload captured at the time the invite was claimed */
|
|
1701
1701
|
data?: Record<string, unknown> | null;
|
|
@@ -1859,6 +1859,17 @@ export interface Commit {
|
|
|
1859
1859
|
treeId?: string | null;
|
|
1860
1860
|
date?: string | null;
|
|
1861
1861
|
}
|
|
1862
|
+
export interface RateLimitsModule {
|
|
1863
|
+
id: string;
|
|
1864
|
+
databaseId?: string | null;
|
|
1865
|
+
schemaId?: string | null;
|
|
1866
|
+
rateLimitSettingsTableId?: string | null;
|
|
1867
|
+
ipRateLimitsTableId?: string | null;
|
|
1868
|
+
rateLimitsTableId?: string | null;
|
|
1869
|
+
rateLimitSettingsTable?: string | null;
|
|
1870
|
+
ipRateLimitsTable?: string | null;
|
|
1871
|
+
rateLimitsTable?: string | null;
|
|
1872
|
+
}
|
|
1862
1873
|
/** Default membership settings per entity, controlling initial approval and verification state for new members */
|
|
1863
1874
|
export interface OrgMembershipDefault {
|
|
1864
1875
|
id: string;
|
|
@@ -2014,6 +2025,7 @@ export interface DatabaseRelations {
|
|
|
2014
2025
|
owner?: User | null;
|
|
2015
2026
|
rlsModule?: RlsModule | null;
|
|
2016
2027
|
hierarchyModule?: HierarchyModule | null;
|
|
2028
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
2017
2029
|
schemas?: ConnectionResult<Schema>;
|
|
2018
2030
|
tables?: ConnectionResult<Table>;
|
|
2019
2031
|
checkConstraints?: ConnectionResult<CheckConstraint>;
|
|
@@ -2510,10 +2522,10 @@ export interface CryptoAddressRelations {
|
|
|
2510
2522
|
export interface ConnectedAccountRelations {
|
|
2511
2523
|
owner?: User | null;
|
|
2512
2524
|
}
|
|
2513
|
-
export interface
|
|
2525
|
+
export interface AppInviteRelations {
|
|
2514
2526
|
sender?: User | null;
|
|
2515
2527
|
}
|
|
2516
|
-
export interface
|
|
2528
|
+
export interface AppClaimedInviteRelations {
|
|
2517
2529
|
receiver?: User | null;
|
|
2518
2530
|
sender?: User | null;
|
|
2519
2531
|
}
|
|
@@ -2550,6 +2562,13 @@ export interface AppMembershipDefaultRelations {
|
|
|
2550
2562
|
}
|
|
2551
2563
|
export interface CommitRelations {
|
|
2552
2564
|
}
|
|
2565
|
+
export interface RateLimitsModuleRelations {
|
|
2566
|
+
database?: Database | null;
|
|
2567
|
+
ipRateLimitsTableByIpRateLimitsTableId?: Table | null;
|
|
2568
|
+
rateLimitSettingsTableByRateLimitSettingsTableId?: Table | null;
|
|
2569
|
+
rateLimitsTableByRateLimitsTableId?: Table | null;
|
|
2570
|
+
schema?: Schema | null;
|
|
2571
|
+
}
|
|
2553
2572
|
export interface OrgMembershipDefaultRelations {
|
|
2554
2573
|
entity?: User | null;
|
|
2555
2574
|
}
|
|
@@ -2605,9 +2624,9 @@ export interface UserRelations {
|
|
|
2605
2624
|
ownedPhoneNumbers?: ConnectionResult<PhoneNumber>;
|
|
2606
2625
|
ownedCryptoAddresses?: ConnectionResult<CryptoAddress>;
|
|
2607
2626
|
ownedConnectedAccounts?: ConnectionResult<ConnectedAccount>;
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2627
|
+
appInvitesBySenderId?: ConnectionResult<AppInvite>;
|
|
2628
|
+
appClaimedInvitesByReceiverId?: ConnectionResult<AppClaimedInvite>;
|
|
2629
|
+
appClaimedInvitesBySenderId?: ConnectionResult<AppClaimedInvite>;
|
|
2611
2630
|
orgInvitesByEntityId?: ConnectionResult<OrgInvite>;
|
|
2612
2631
|
orgInvitesByReceiverId?: ConnectionResult<OrgInvite>;
|
|
2613
2632
|
orgInvitesBySenderId?: ConnectionResult<OrgInvite>;
|
|
@@ -2717,8 +2736,8 @@ export type EmailWithRelations = Email & EmailRelations;
|
|
|
2717
2736
|
export type PhoneNumberWithRelations = PhoneNumber & PhoneNumberRelations;
|
|
2718
2737
|
export type CryptoAddressWithRelations = CryptoAddress & CryptoAddressRelations;
|
|
2719
2738
|
export type ConnectedAccountWithRelations = ConnectedAccount & ConnectedAccountRelations;
|
|
2720
|
-
export type
|
|
2721
|
-
export type
|
|
2739
|
+
export type AppInviteWithRelations = AppInvite & AppInviteRelations;
|
|
2740
|
+
export type AppClaimedInviteWithRelations = AppClaimedInvite & AppClaimedInviteRelations;
|
|
2722
2741
|
export type OrgInviteWithRelations = OrgInvite & OrgInviteRelations;
|
|
2723
2742
|
export type OrgClaimedInviteWithRelations = OrgClaimedInvite & OrgClaimedInviteRelations;
|
|
2724
2743
|
export type AuditLogWithRelations = AuditLog & AuditLogRelations;
|
|
@@ -2732,6 +2751,7 @@ export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRela
|
|
|
2732
2751
|
export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
|
|
2733
2752
|
export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
|
|
2734
2753
|
export type CommitWithRelations = Commit & CommitRelations;
|
|
2754
|
+
export type RateLimitsModuleWithRelations = RateLimitsModule & RateLimitsModuleRelations;
|
|
2735
2755
|
export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
|
|
2736
2756
|
export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
|
|
2737
2757
|
export type SqlActionWithRelations = SqlAction & SqlActionRelations;
|
|
@@ -2803,6 +2823,9 @@ export type DatabaseSelect = {
|
|
|
2803
2823
|
hierarchyModule?: {
|
|
2804
2824
|
select: HierarchyModuleSelect;
|
|
2805
2825
|
};
|
|
2826
|
+
rateLimitsModule?: {
|
|
2827
|
+
select: RateLimitsModuleSelect;
|
|
2828
|
+
};
|
|
2806
2829
|
schemas?: {
|
|
2807
2830
|
select: SchemaSelect;
|
|
2808
2831
|
first?: number;
|
|
@@ -5113,7 +5136,7 @@ export type ConnectedAccountSelect = {
|
|
|
5113
5136
|
select: UserSelect;
|
|
5114
5137
|
};
|
|
5115
5138
|
};
|
|
5116
|
-
export type
|
|
5139
|
+
export type AppInviteSelect = {
|
|
5117
5140
|
id?: boolean;
|
|
5118
5141
|
email?: boolean;
|
|
5119
5142
|
senderId?: boolean;
|
|
@@ -5130,7 +5153,7 @@ export type InviteSelect = {
|
|
|
5130
5153
|
select: UserSelect;
|
|
5131
5154
|
};
|
|
5132
5155
|
};
|
|
5133
|
-
export type
|
|
5156
|
+
export type AppClaimedInviteSelect = {
|
|
5134
5157
|
id?: boolean;
|
|
5135
5158
|
data?: boolean;
|
|
5136
5159
|
senderId?: boolean;
|
|
@@ -5263,6 +5286,32 @@ export type CommitSelect = {
|
|
|
5263
5286
|
treeId?: boolean;
|
|
5264
5287
|
date?: boolean;
|
|
5265
5288
|
};
|
|
5289
|
+
export type RateLimitsModuleSelect = {
|
|
5290
|
+
id?: boolean;
|
|
5291
|
+
databaseId?: boolean;
|
|
5292
|
+
schemaId?: boolean;
|
|
5293
|
+
rateLimitSettingsTableId?: boolean;
|
|
5294
|
+
ipRateLimitsTableId?: boolean;
|
|
5295
|
+
rateLimitsTableId?: boolean;
|
|
5296
|
+
rateLimitSettingsTable?: boolean;
|
|
5297
|
+
ipRateLimitsTable?: boolean;
|
|
5298
|
+
rateLimitsTable?: boolean;
|
|
5299
|
+
database?: {
|
|
5300
|
+
select: DatabaseSelect;
|
|
5301
|
+
};
|
|
5302
|
+
ipRateLimitsTableByIpRateLimitsTableId?: {
|
|
5303
|
+
select: TableSelect;
|
|
5304
|
+
};
|
|
5305
|
+
rateLimitSettingsTableByRateLimitSettingsTableId?: {
|
|
5306
|
+
select: TableSelect;
|
|
5307
|
+
};
|
|
5308
|
+
rateLimitsTableByRateLimitsTableId?: {
|
|
5309
|
+
select: TableSelect;
|
|
5310
|
+
};
|
|
5311
|
+
schema?: {
|
|
5312
|
+
select: SchemaSelect;
|
|
5313
|
+
};
|
|
5314
|
+
};
|
|
5266
5315
|
export type OrgMembershipDefaultSelect = {
|
|
5267
5316
|
id?: boolean;
|
|
5268
5317
|
createdAt?: boolean;
|
|
@@ -5572,23 +5621,23 @@ export type UserSelect = {
|
|
|
5572
5621
|
filter?: ConnectedAccountFilter;
|
|
5573
5622
|
orderBy?: ConnectedAccountOrderBy[];
|
|
5574
5623
|
};
|
|
5575
|
-
|
|
5576
|
-
select:
|
|
5624
|
+
appInvitesBySenderId?: {
|
|
5625
|
+
select: AppInviteSelect;
|
|
5577
5626
|
first?: number;
|
|
5578
|
-
filter?:
|
|
5579
|
-
orderBy?:
|
|
5627
|
+
filter?: AppInviteFilter;
|
|
5628
|
+
orderBy?: AppInviteOrderBy[];
|
|
5580
5629
|
};
|
|
5581
|
-
|
|
5582
|
-
select:
|
|
5630
|
+
appClaimedInvitesByReceiverId?: {
|
|
5631
|
+
select: AppClaimedInviteSelect;
|
|
5583
5632
|
first?: number;
|
|
5584
|
-
filter?:
|
|
5585
|
-
orderBy?:
|
|
5633
|
+
filter?: AppClaimedInviteFilter;
|
|
5634
|
+
orderBy?: AppClaimedInviteOrderBy[];
|
|
5586
5635
|
};
|
|
5587
|
-
|
|
5588
|
-
select:
|
|
5636
|
+
appClaimedInvitesBySenderId?: {
|
|
5637
|
+
select: AppClaimedInviteSelect;
|
|
5589
5638
|
first?: number;
|
|
5590
|
-
filter?:
|
|
5591
|
-
orderBy?:
|
|
5639
|
+
filter?: AppClaimedInviteFilter;
|
|
5640
|
+
orderBy?: AppClaimedInviteOrderBy[];
|
|
5592
5641
|
};
|
|
5593
5642
|
orgInvitesByEntityId?: {
|
|
5594
5643
|
select: OrgInviteSelect;
|
|
@@ -6073,6 +6122,10 @@ export interface DatabaseFilter {
|
|
|
6073
6122
|
storageModules?: DatabaseToManyStorageModuleFilter;
|
|
6074
6123
|
/** `storageModules` exist. */
|
|
6075
6124
|
storageModulesExist?: boolean;
|
|
6125
|
+
/** Filter by the object’s `rateLimitsModule` relation. */
|
|
6126
|
+
rateLimitsModule?: RateLimitsModuleFilter;
|
|
6127
|
+
/** A related `rateLimitsModule` exists. */
|
|
6128
|
+
rateLimitsModuleExists?: boolean;
|
|
6076
6129
|
/** Filter by the object’s `databaseProvisionModules` relation. */
|
|
6077
6130
|
databaseProvisionModules?: DatabaseToManyDatabaseProvisionModuleFilter;
|
|
6078
6131
|
/** `databaseProvisionModules` exist. */
|
|
@@ -9098,7 +9151,7 @@ export interface ConnectedAccountFilter {
|
|
|
9098
9151
|
/** Filter by the object’s `owner` relation. */
|
|
9099
9152
|
owner?: UserFilter;
|
|
9100
9153
|
}
|
|
9101
|
-
export interface
|
|
9154
|
+
export interface AppInviteFilter {
|
|
9102
9155
|
/** Filter by the object’s `id` field. */
|
|
9103
9156
|
id?: UUIDFilter;
|
|
9104
9157
|
/** Filter by the object’s `email` field. */
|
|
@@ -9122,15 +9175,15 @@ export interface InviteFilter {
|
|
|
9122
9175
|
/** Filter by the object’s `updatedAt` field. */
|
|
9123
9176
|
updatedAt?: DatetimeFilter;
|
|
9124
9177
|
/** Checks for all expressions in this list. */
|
|
9125
|
-
and?:
|
|
9178
|
+
and?: AppInviteFilter[];
|
|
9126
9179
|
/** Checks for any expressions in this list. */
|
|
9127
|
-
or?:
|
|
9180
|
+
or?: AppInviteFilter[];
|
|
9128
9181
|
/** Negates the expression. */
|
|
9129
|
-
not?:
|
|
9182
|
+
not?: AppInviteFilter;
|
|
9130
9183
|
/** Filter by the object’s `sender` relation. */
|
|
9131
9184
|
sender?: UserFilter;
|
|
9132
9185
|
}
|
|
9133
|
-
export interface
|
|
9186
|
+
export interface AppClaimedInviteFilter {
|
|
9134
9187
|
/** Filter by the object’s `id` field. */
|
|
9135
9188
|
id?: UUIDFilter;
|
|
9136
9189
|
/** Filter by the object’s `senderId` field. */
|
|
@@ -9142,11 +9195,11 @@ export interface ClaimedInviteFilter {
|
|
|
9142
9195
|
/** Filter by the object’s `updatedAt` field. */
|
|
9143
9196
|
updatedAt?: DatetimeFilter;
|
|
9144
9197
|
/** Checks for all expressions in this list. */
|
|
9145
|
-
and?:
|
|
9198
|
+
and?: AppClaimedInviteFilter[];
|
|
9146
9199
|
/** Checks for any expressions in this list. */
|
|
9147
|
-
or?:
|
|
9200
|
+
or?: AppClaimedInviteFilter[];
|
|
9148
9201
|
/** Negates the expression. */
|
|
9149
|
-
not?:
|
|
9202
|
+
not?: AppClaimedInviteFilter;
|
|
9150
9203
|
/** Filter by the object’s `receiver` relation. */
|
|
9151
9204
|
receiver?: UserFilter;
|
|
9152
9205
|
/** A related `receiver` exists. */
|
|
@@ -9422,6 +9475,42 @@ export interface CommitFilter {
|
|
|
9422
9475
|
/** Negates the expression. */
|
|
9423
9476
|
not?: CommitFilter;
|
|
9424
9477
|
}
|
|
9478
|
+
export interface RateLimitsModuleFilter {
|
|
9479
|
+
/** Filter by the object’s `id` field. */
|
|
9480
|
+
id?: UUIDFilter;
|
|
9481
|
+
/** Filter by the object’s `databaseId` field. */
|
|
9482
|
+
databaseId?: UUIDFilter;
|
|
9483
|
+
/** Filter by the object’s `schemaId` field. */
|
|
9484
|
+
schemaId?: UUIDFilter;
|
|
9485
|
+
/** Filter by the object’s `rateLimitSettingsTableId` field. */
|
|
9486
|
+
rateLimitSettingsTableId?: UUIDFilter;
|
|
9487
|
+
/** Filter by the object’s `ipRateLimitsTableId` field. */
|
|
9488
|
+
ipRateLimitsTableId?: UUIDFilter;
|
|
9489
|
+
/** Filter by the object’s `rateLimitsTableId` field. */
|
|
9490
|
+
rateLimitsTableId?: UUIDFilter;
|
|
9491
|
+
/** Filter by the object’s `rateLimitSettingsTable` field. */
|
|
9492
|
+
rateLimitSettingsTable?: StringFilter;
|
|
9493
|
+
/** Filter by the object’s `ipRateLimitsTable` field. */
|
|
9494
|
+
ipRateLimitsTable?: StringFilter;
|
|
9495
|
+
/** Filter by the object’s `rateLimitsTable` field. */
|
|
9496
|
+
rateLimitsTable?: StringFilter;
|
|
9497
|
+
/** Checks for all expressions in this list. */
|
|
9498
|
+
and?: RateLimitsModuleFilter[];
|
|
9499
|
+
/** Checks for any expressions in this list. */
|
|
9500
|
+
or?: RateLimitsModuleFilter[];
|
|
9501
|
+
/** Negates the expression. */
|
|
9502
|
+
not?: RateLimitsModuleFilter;
|
|
9503
|
+
/** Filter by the object’s `database` relation. */
|
|
9504
|
+
database?: DatabaseFilter;
|
|
9505
|
+
/** Filter by the object’s `ipRateLimitsTableByIpRateLimitsTableId` relation. */
|
|
9506
|
+
ipRateLimitsTableByIpRateLimitsTableId?: TableFilter;
|
|
9507
|
+
/** Filter by the object’s `rateLimitSettingsTableByRateLimitSettingsTableId` relation. */
|
|
9508
|
+
rateLimitSettingsTableByRateLimitSettingsTableId?: TableFilter;
|
|
9509
|
+
/** Filter by the object’s `rateLimitsTableByRateLimitsTableId` relation. */
|
|
9510
|
+
rateLimitsTableByRateLimitsTableId?: TableFilter;
|
|
9511
|
+
/** Filter by the object’s `schema` relation. */
|
|
9512
|
+
schema?: SchemaFilter;
|
|
9513
|
+
}
|
|
9425
9514
|
export interface OrgMembershipDefaultFilter {
|
|
9426
9515
|
/** Filter by the object’s `id` field. */
|
|
9427
9516
|
id?: UUIDFilter;
|
|
@@ -9709,18 +9798,18 @@ export interface UserFilter {
|
|
|
9709
9798
|
ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
|
|
9710
9799
|
/** `ownedConnectedAccounts` exist. */
|
|
9711
9800
|
ownedConnectedAccountsExist?: boolean;
|
|
9712
|
-
/** Filter by the object’s `
|
|
9713
|
-
|
|
9714
|
-
/** `
|
|
9715
|
-
|
|
9716
|
-
/** Filter by the object’s `
|
|
9717
|
-
|
|
9718
|
-
/** `
|
|
9719
|
-
|
|
9720
|
-
/** Filter by the object’s `
|
|
9721
|
-
|
|
9722
|
-
/** `
|
|
9723
|
-
|
|
9801
|
+
/** Filter by the object’s `appInvitesBySenderId` relation. */
|
|
9802
|
+
appInvitesBySenderId?: UserToManyAppInviteFilter;
|
|
9803
|
+
/** `appInvitesBySenderId` exist. */
|
|
9804
|
+
appInvitesBySenderIdExist?: boolean;
|
|
9805
|
+
/** Filter by the object’s `appClaimedInvitesByReceiverId` relation. */
|
|
9806
|
+
appClaimedInvitesByReceiverId?: UserToManyAppClaimedInviteFilter;
|
|
9807
|
+
/** `appClaimedInvitesByReceiverId` exist. */
|
|
9808
|
+
appClaimedInvitesByReceiverIdExist?: boolean;
|
|
9809
|
+
/** Filter by the object’s `appClaimedInvitesBySenderId` relation. */
|
|
9810
|
+
appClaimedInvitesBySenderId?: UserToManyAppClaimedInviteFilter;
|
|
9811
|
+
/** `appClaimedInvitesBySenderId` exist. */
|
|
9812
|
+
appClaimedInvitesBySenderIdExist?: boolean;
|
|
9724
9813
|
/** Filter by the object’s `orgInvitesByEntityId` relation. */
|
|
9725
9814
|
orgInvitesByEntityId?: UserToManyOrgInviteFilter;
|
|
9726
9815
|
/** `orgInvitesByEntityId` exist. */
|
|
@@ -9987,8 +10076,8 @@ export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' |
|
|
|
9987
10076
|
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CC_ASC' | 'CC_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
9988
10077
|
export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
9989
10078
|
export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'DETAILS_ASC' | 'DETAILS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
9990
|
-
export type
|
|
9991
|
-
export type
|
|
10079
|
+
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';
|
|
10080
|
+
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';
|
|
9992
10081
|
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';
|
|
9993
10082
|
export type OrgClaimedInviteOrderBy = '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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
9994
10083
|
export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ORIGIN_ASC' | 'ORIGIN_DESC' | 'USER_AGENT_ASC' | 'USER_AGENT_DESC' | 'IP_ADDRESS_ASC' | 'IP_ADDRESS_DESC' | 'SUCCESS_ASC' | 'SUCCESS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
@@ -10002,6 +10091,7 @@ export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KE
|
|
|
10002
10091
|
export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
|
|
10003
10092
|
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' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC';
|
|
10004
10093
|
export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC';
|
|
10094
|
+
export type RateLimitsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_DESC' | 'IP_RATE_LIMITS_TABLE_ID_ASC' | 'IP_RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMITS_TABLE_ID_ASC' | 'RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_DESC' | 'IP_RATE_LIMITS_TABLE_ASC' | 'IP_RATE_LIMITS_TABLE_DESC' | 'RATE_LIMITS_TABLE_ASC' | 'RATE_LIMITS_TABLE_DESC';
|
|
10005
10095
|
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';
|
|
10006
10096
|
export type RlsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'AUTHENTICATE_ASC' | 'AUTHENTICATE_DESC' | 'AUTHENTICATE_STRICT_ASC' | 'AUTHENTICATE_STRICT_DESC' | 'CURRENT_ROLE_ASC' | 'CURRENT_ROLE_DESC' | 'CURRENT_ROLE_ID_ASC' | 'CURRENT_ROLE_ID_DESC';
|
|
10007
10097
|
export type SqlActionOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'DEPS_ASC' | 'DEPS_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
|
|
@@ -12848,9 +12938,9 @@ export interface DeleteConnectedAccountInput {
|
|
|
12848
12938
|
clientMutationId?: string;
|
|
12849
12939
|
id: string;
|
|
12850
12940
|
}
|
|
12851
|
-
export interface
|
|
12941
|
+
export interface CreateAppInviteInput {
|
|
12852
12942
|
clientMutationId?: string;
|
|
12853
|
-
|
|
12943
|
+
appInvite: {
|
|
12854
12944
|
email?: ConstructiveInternalTypeEmail;
|
|
12855
12945
|
senderId?: string;
|
|
12856
12946
|
inviteToken?: string;
|
|
@@ -12862,7 +12952,7 @@ export interface CreateInviteInput {
|
|
|
12862
12952
|
expiresAt?: string;
|
|
12863
12953
|
};
|
|
12864
12954
|
}
|
|
12865
|
-
export interface
|
|
12955
|
+
export interface AppInvitePatch {
|
|
12866
12956
|
email?: ConstructiveInternalTypeEmail | null;
|
|
12867
12957
|
senderId?: string | null;
|
|
12868
12958
|
inviteToken?: string | null;
|
|
@@ -12873,34 +12963,34 @@ export interface InvitePatch {
|
|
|
12873
12963
|
data?: Record<string, unknown> | null;
|
|
12874
12964
|
expiresAt?: string | null;
|
|
12875
12965
|
}
|
|
12876
|
-
export interface
|
|
12966
|
+
export interface UpdateAppInviteInput {
|
|
12877
12967
|
clientMutationId?: string;
|
|
12878
12968
|
id: string;
|
|
12879
|
-
|
|
12969
|
+
appInvitePatch: AppInvitePatch;
|
|
12880
12970
|
}
|
|
12881
|
-
export interface
|
|
12971
|
+
export interface DeleteAppInviteInput {
|
|
12882
12972
|
clientMutationId?: string;
|
|
12883
12973
|
id: string;
|
|
12884
12974
|
}
|
|
12885
|
-
export interface
|
|
12975
|
+
export interface CreateAppClaimedInviteInput {
|
|
12886
12976
|
clientMutationId?: string;
|
|
12887
|
-
|
|
12977
|
+
appClaimedInvite: {
|
|
12888
12978
|
data?: Record<string, unknown>;
|
|
12889
12979
|
senderId?: string;
|
|
12890
12980
|
receiverId?: string;
|
|
12891
12981
|
};
|
|
12892
12982
|
}
|
|
12893
|
-
export interface
|
|
12983
|
+
export interface AppClaimedInvitePatch {
|
|
12894
12984
|
data?: Record<string, unknown> | null;
|
|
12895
12985
|
senderId?: string | null;
|
|
12896
12986
|
receiverId?: string | null;
|
|
12897
12987
|
}
|
|
12898
|
-
export interface
|
|
12988
|
+
export interface UpdateAppClaimedInviteInput {
|
|
12899
12989
|
clientMutationId?: string;
|
|
12900
12990
|
id: string;
|
|
12901
|
-
|
|
12991
|
+
appClaimedInvitePatch: AppClaimedInvitePatch;
|
|
12902
12992
|
}
|
|
12903
|
-
export interface
|
|
12993
|
+
export interface DeleteAppClaimedInviteInput {
|
|
12904
12994
|
clientMutationId?: string;
|
|
12905
12995
|
id: string;
|
|
12906
12996
|
}
|
|
@@ -13214,6 +13304,38 @@ export interface DeleteCommitInput {
|
|
|
13214
13304
|
clientMutationId?: string;
|
|
13215
13305
|
id: string;
|
|
13216
13306
|
}
|
|
13307
|
+
export interface CreateRateLimitsModuleInput {
|
|
13308
|
+
clientMutationId?: string;
|
|
13309
|
+
rateLimitsModule: {
|
|
13310
|
+
databaseId: string;
|
|
13311
|
+
schemaId?: string;
|
|
13312
|
+
rateLimitSettingsTableId?: string;
|
|
13313
|
+
ipRateLimitsTableId?: string;
|
|
13314
|
+
rateLimitsTableId?: string;
|
|
13315
|
+
rateLimitSettingsTable?: string;
|
|
13316
|
+
ipRateLimitsTable?: string;
|
|
13317
|
+
rateLimitsTable?: string;
|
|
13318
|
+
};
|
|
13319
|
+
}
|
|
13320
|
+
export interface RateLimitsModulePatch {
|
|
13321
|
+
databaseId?: string | null;
|
|
13322
|
+
schemaId?: string | null;
|
|
13323
|
+
rateLimitSettingsTableId?: string | null;
|
|
13324
|
+
ipRateLimitsTableId?: string | null;
|
|
13325
|
+
rateLimitsTableId?: string | null;
|
|
13326
|
+
rateLimitSettingsTable?: string | null;
|
|
13327
|
+
ipRateLimitsTable?: string | null;
|
|
13328
|
+
rateLimitsTable?: string | null;
|
|
13329
|
+
}
|
|
13330
|
+
export interface UpdateRateLimitsModuleInput {
|
|
13331
|
+
clientMutationId?: string;
|
|
13332
|
+
id: string;
|
|
13333
|
+
rateLimitsModulePatch: RateLimitsModulePatch;
|
|
13334
|
+
}
|
|
13335
|
+
export interface DeleteRateLimitsModuleInput {
|
|
13336
|
+
clientMutationId?: string;
|
|
13337
|
+
id: string;
|
|
13338
|
+
}
|
|
13217
13339
|
export interface CreateOrgMembershipDefaultInput {
|
|
13218
13340
|
clientMutationId?: string;
|
|
13219
13341
|
orgMembershipDefault: {
|
|
@@ -13492,7 +13614,15 @@ export interface RejectDatabaseTransferInput {
|
|
|
13492
13614
|
clientMutationId?: string;
|
|
13493
13615
|
transferId?: string;
|
|
13494
13616
|
}
|
|
13495
|
-
export interface
|
|
13617
|
+
export interface VerifyPasswordInput {
|
|
13618
|
+
clientMutationId?: string;
|
|
13619
|
+
password: string;
|
|
13620
|
+
}
|
|
13621
|
+
export interface VerifyTotpInput {
|
|
13622
|
+
clientMutationId?: string;
|
|
13623
|
+
totpValue: string;
|
|
13624
|
+
}
|
|
13625
|
+
export interface SubmitAppInviteCodeInput {
|
|
13496
13626
|
clientMutationId?: string;
|
|
13497
13627
|
token?: string;
|
|
13498
13628
|
}
|
|
@@ -13736,14 +13866,6 @@ export interface ForgotPasswordInput {
|
|
|
13736
13866
|
clientMutationId?: string;
|
|
13737
13867
|
email?: ConstructiveInternalTypeEmail;
|
|
13738
13868
|
}
|
|
13739
|
-
export interface VerifyPasswordInput {
|
|
13740
|
-
clientMutationId?: string;
|
|
13741
|
-
password: string;
|
|
13742
|
-
}
|
|
13743
|
-
export interface VerifyTotpInput {
|
|
13744
|
-
clientMutationId?: string;
|
|
13745
|
-
totpValue: string;
|
|
13746
|
-
}
|
|
13747
13869
|
export interface RequestUploadUrlInput {
|
|
13748
13870
|
/** Bucket key (e.g., "public", "private") */
|
|
13749
13871
|
bucketKey: string;
|
|
@@ -15406,23 +15528,23 @@ export interface UserToManyConnectedAccountFilter {
|
|
|
15406
15528
|
/** Filters to entities where no related entity matches. */
|
|
15407
15529
|
none?: ConnectedAccountFilter;
|
|
15408
15530
|
}
|
|
15409
|
-
/** A filter to be used against many `
|
|
15410
|
-
export interface
|
|
15531
|
+
/** A filter to be used against many `AppInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
15532
|
+
export interface UserToManyAppInviteFilter {
|
|
15411
15533
|
/** Filters to entities where at least one related entity matches. */
|
|
15412
|
-
some?:
|
|
15534
|
+
some?: AppInviteFilter;
|
|
15413
15535
|
/** Filters to entities where every related entity matches. */
|
|
15414
|
-
every?:
|
|
15536
|
+
every?: AppInviteFilter;
|
|
15415
15537
|
/** Filters to entities where no related entity matches. */
|
|
15416
|
-
none?:
|
|
15538
|
+
none?: AppInviteFilter;
|
|
15417
15539
|
}
|
|
15418
|
-
/** A filter to be used against many `
|
|
15419
|
-
export interface
|
|
15540
|
+
/** A filter to be used against many `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
15541
|
+
export interface UserToManyAppClaimedInviteFilter {
|
|
15420
15542
|
/** Filters to entities where at least one related entity matches. */
|
|
15421
|
-
some?:
|
|
15543
|
+
some?: AppClaimedInviteFilter;
|
|
15422
15544
|
/** Filters to entities where every related entity matches. */
|
|
15423
|
-
every?:
|
|
15545
|
+
every?: AppClaimedInviteFilter;
|
|
15424
15546
|
/** Filters to entities where no related entity matches. */
|
|
15425
|
-
none?:
|
|
15547
|
+
none?: AppClaimedInviteFilter;
|
|
15426
15548
|
}
|
|
15427
15549
|
/** A filter to be used against many `OrgInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
15428
15550
|
export interface UserToManyOrgInviteFilter {
|
|
@@ -18275,6 +18397,10 @@ export interface DatabaseFilter {
|
|
|
18275
18397
|
storageModules?: DatabaseToManyStorageModuleFilter;
|
|
18276
18398
|
/** `storageModules` exist. */
|
|
18277
18399
|
storageModulesExist?: boolean;
|
|
18400
|
+
/** Filter by the object’s `rateLimitsModule` relation. */
|
|
18401
|
+
rateLimitsModule?: RateLimitsModuleFilter;
|
|
18402
|
+
/** A related `rateLimitsModule` exists. */
|
|
18403
|
+
rateLimitsModuleExists?: boolean;
|
|
18278
18404
|
/** Filter by the object’s `databaseProvisionModules` relation. */
|
|
18279
18405
|
databaseProvisionModules?: DatabaseToManyDatabaseProvisionModuleFilter;
|
|
18280
18406
|
/** `databaseProvisionModules` exist. */
|
|
@@ -18836,8 +18962,8 @@ export interface ConnectedAccountFilter {
|
|
|
18836
18962
|
/** Filter by the object’s `owner` relation. */
|
|
18837
18963
|
owner?: UserFilter;
|
|
18838
18964
|
}
|
|
18839
|
-
/** A filter to be used against `
|
|
18840
|
-
export interface
|
|
18965
|
+
/** A filter to be used against `AppInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
18966
|
+
export interface AppInviteFilter {
|
|
18841
18967
|
/** Filter by the object’s `id` field. */
|
|
18842
18968
|
id?: UUIDFilter;
|
|
18843
18969
|
/** Filter by the object’s `email` field. */
|
|
@@ -18861,16 +18987,16 @@ export interface InviteFilter {
|
|
|
18861
18987
|
/** Filter by the object’s `updatedAt` field. */
|
|
18862
18988
|
updatedAt?: DatetimeFilter;
|
|
18863
18989
|
/** Checks for all expressions in this list. */
|
|
18864
|
-
and?:
|
|
18990
|
+
and?: AppInviteFilter[];
|
|
18865
18991
|
/** Checks for any expressions in this list. */
|
|
18866
|
-
or?:
|
|
18992
|
+
or?: AppInviteFilter[];
|
|
18867
18993
|
/** Negates the expression. */
|
|
18868
|
-
not?:
|
|
18994
|
+
not?: AppInviteFilter;
|
|
18869
18995
|
/** Filter by the object’s `sender` relation. */
|
|
18870
18996
|
sender?: UserFilter;
|
|
18871
18997
|
}
|
|
18872
|
-
/** A filter to be used against `
|
|
18873
|
-
export interface
|
|
18998
|
+
/** A filter to be used against `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
18999
|
+
export interface AppClaimedInviteFilter {
|
|
18874
19000
|
/** Filter by the object’s `id` field. */
|
|
18875
19001
|
id?: UUIDFilter;
|
|
18876
19002
|
/** Filter by the object’s `senderId` field. */
|
|
@@ -18882,11 +19008,11 @@ export interface ClaimedInviteFilter {
|
|
|
18882
19008
|
/** Filter by the object’s `updatedAt` field. */
|
|
18883
19009
|
updatedAt?: DatetimeFilter;
|
|
18884
19010
|
/** Checks for all expressions in this list. */
|
|
18885
|
-
and?:
|
|
19011
|
+
and?: AppClaimedInviteFilter[];
|
|
18886
19012
|
/** Checks for any expressions in this list. */
|
|
18887
|
-
or?:
|
|
19013
|
+
or?: AppClaimedInviteFilter[];
|
|
18888
19014
|
/** Negates the expression. */
|
|
18889
|
-
not?:
|
|
19015
|
+
not?: AppClaimedInviteFilter;
|
|
18890
19016
|
/** Filter by the object’s `receiver` relation. */
|
|
18891
19017
|
receiver?: UserFilter;
|
|
18892
19018
|
/** A related `receiver` exists. */
|
|
@@ -19525,18 +19651,18 @@ export interface UserFilter {
|
|
|
19525
19651
|
ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
|
|
19526
19652
|
/** `ownedConnectedAccounts` exist. */
|
|
19527
19653
|
ownedConnectedAccountsExist?: boolean;
|
|
19528
|
-
/** Filter by the object’s `
|
|
19529
|
-
|
|
19530
|
-
/** `
|
|
19531
|
-
|
|
19532
|
-
/** Filter by the object’s `
|
|
19533
|
-
|
|
19534
|
-
/** `
|
|
19535
|
-
|
|
19536
|
-
/** Filter by the object’s `
|
|
19537
|
-
|
|
19538
|
-
/** `
|
|
19539
|
-
|
|
19654
|
+
/** Filter by the object’s `appInvitesBySenderId` relation. */
|
|
19655
|
+
appInvitesBySenderId?: UserToManyAppInviteFilter;
|
|
19656
|
+
/** `appInvitesBySenderId` exist. */
|
|
19657
|
+
appInvitesBySenderIdExist?: boolean;
|
|
19658
|
+
/** Filter by the object’s `appClaimedInvitesByReceiverId` relation. */
|
|
19659
|
+
appClaimedInvitesByReceiverId?: UserToManyAppClaimedInviteFilter;
|
|
19660
|
+
/** `appClaimedInvitesByReceiverId` exist. */
|
|
19661
|
+
appClaimedInvitesByReceiverIdExist?: boolean;
|
|
19662
|
+
/** Filter by the object’s `appClaimedInvitesBySenderId` relation. */
|
|
19663
|
+
appClaimedInvitesBySenderId?: UserToManyAppClaimedInviteFilter;
|
|
19664
|
+
/** `appClaimedInvitesBySenderId` exist. */
|
|
19665
|
+
appClaimedInvitesBySenderIdExist?: boolean;
|
|
19540
19666
|
/** Filter by the object’s `orgInvitesByEntityId` relation. */
|
|
19541
19667
|
orgInvitesByEntityId?: UserToManyOrgInviteFilter;
|
|
19542
19668
|
/** `orgInvitesByEntityId` exist. */
|
|
@@ -19685,6 +19811,43 @@ export interface HierarchyModuleFilter {
|
|
|
19685
19811
|
/** Filter by the object’s `usersTable` relation. */
|
|
19686
19812
|
usersTable?: TableFilter;
|
|
19687
19813
|
}
|
|
19814
|
+
/** A filter to be used against `RateLimitsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
19815
|
+
export interface RateLimitsModuleFilter {
|
|
19816
|
+
/** Filter by the object’s `id` field. */
|
|
19817
|
+
id?: UUIDFilter;
|
|
19818
|
+
/** Filter by the object’s `databaseId` field. */
|
|
19819
|
+
databaseId?: UUIDFilter;
|
|
19820
|
+
/** Filter by the object’s `schemaId` field. */
|
|
19821
|
+
schemaId?: UUIDFilter;
|
|
19822
|
+
/** Filter by the object’s `rateLimitSettingsTableId` field. */
|
|
19823
|
+
rateLimitSettingsTableId?: UUIDFilter;
|
|
19824
|
+
/** Filter by the object’s `ipRateLimitsTableId` field. */
|
|
19825
|
+
ipRateLimitsTableId?: UUIDFilter;
|
|
19826
|
+
/** Filter by the object’s `rateLimitsTableId` field. */
|
|
19827
|
+
rateLimitsTableId?: UUIDFilter;
|
|
19828
|
+
/** Filter by the object’s `rateLimitSettingsTable` field. */
|
|
19829
|
+
rateLimitSettingsTable?: StringFilter;
|
|
19830
|
+
/** Filter by the object’s `ipRateLimitsTable` field. */
|
|
19831
|
+
ipRateLimitsTable?: StringFilter;
|
|
19832
|
+
/** Filter by the object’s `rateLimitsTable` field. */
|
|
19833
|
+
rateLimitsTable?: StringFilter;
|
|
19834
|
+
/** Checks for all expressions in this list. */
|
|
19835
|
+
and?: RateLimitsModuleFilter[];
|
|
19836
|
+
/** Checks for any expressions in this list. */
|
|
19837
|
+
or?: RateLimitsModuleFilter[];
|
|
19838
|
+
/** Negates the expression. */
|
|
19839
|
+
not?: RateLimitsModuleFilter;
|
|
19840
|
+
/** Filter by the object’s `database` relation. */
|
|
19841
|
+
database?: DatabaseFilter;
|
|
19842
|
+
/** Filter by the object’s `ipRateLimitsTableByIpRateLimitsTableId` relation. */
|
|
19843
|
+
ipRateLimitsTableByIpRateLimitsTableId?: TableFilter;
|
|
19844
|
+
/** Filter by the object’s `rateLimitSettingsTableByRateLimitSettingsTableId` relation. */
|
|
19845
|
+
rateLimitSettingsTableByRateLimitSettingsTableId?: TableFilter;
|
|
19846
|
+
/** Filter by the object’s `rateLimitsTableByRateLimitsTableId` relation. */
|
|
19847
|
+
rateLimitsTableByRateLimitsTableId?: TableFilter;
|
|
19848
|
+
/** Filter by the object’s `schema` relation. */
|
|
19849
|
+
schema?: SchemaFilter;
|
|
19850
|
+
}
|
|
19688
19851
|
/** A filter to be used against BitString fields. All fields are combined with a logical ‘and.’ */
|
|
19689
19852
|
export interface BitStringFilter {
|
|
19690
19853
|
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
@@ -19963,11 +20126,27 @@ export type RejectDatabaseTransferPayloadSelect = {
|
|
|
19963
20126
|
clientMutationId?: boolean;
|
|
19964
20127
|
result?: boolean;
|
|
19965
20128
|
};
|
|
19966
|
-
export interface
|
|
20129
|
+
export interface VerifyPasswordPayload {
|
|
20130
|
+
clientMutationId?: string | null;
|
|
20131
|
+
result?: boolean | null;
|
|
20132
|
+
}
|
|
20133
|
+
export type VerifyPasswordPayloadSelect = {
|
|
20134
|
+
clientMutationId?: boolean;
|
|
20135
|
+
result?: boolean;
|
|
20136
|
+
};
|
|
20137
|
+
export interface VerifyTotpPayload {
|
|
20138
|
+
clientMutationId?: string | null;
|
|
20139
|
+
result?: boolean | null;
|
|
20140
|
+
}
|
|
20141
|
+
export type VerifyTotpPayloadSelect = {
|
|
20142
|
+
clientMutationId?: boolean;
|
|
20143
|
+
result?: boolean;
|
|
20144
|
+
};
|
|
20145
|
+
export interface SubmitAppInviteCodePayload {
|
|
19967
20146
|
clientMutationId?: string | null;
|
|
19968
20147
|
result?: boolean | null;
|
|
19969
20148
|
}
|
|
19970
|
-
export type
|
|
20149
|
+
export type SubmitAppInviteCodePayloadSelect = {
|
|
19971
20150
|
clientMutationId?: boolean;
|
|
19972
20151
|
result?: boolean;
|
|
19973
20152
|
};
|
|
@@ -20237,26 +20416,6 @@ export interface ForgotPasswordPayload {
|
|
|
20237
20416
|
export type ForgotPasswordPayloadSelect = {
|
|
20238
20417
|
clientMutationId?: boolean;
|
|
20239
20418
|
};
|
|
20240
|
-
export interface VerifyPasswordPayload {
|
|
20241
|
-
clientMutationId?: string | null;
|
|
20242
|
-
result?: Session | null;
|
|
20243
|
-
}
|
|
20244
|
-
export type VerifyPasswordPayloadSelect = {
|
|
20245
|
-
clientMutationId?: boolean;
|
|
20246
|
-
result?: {
|
|
20247
|
-
select: SessionSelect;
|
|
20248
|
-
};
|
|
20249
|
-
};
|
|
20250
|
-
export interface VerifyTotpPayload {
|
|
20251
|
-
clientMutationId?: string | null;
|
|
20252
|
-
result?: Session | null;
|
|
20253
|
-
}
|
|
20254
|
-
export type VerifyTotpPayloadSelect = {
|
|
20255
|
-
clientMutationId?: boolean;
|
|
20256
|
-
result?: {
|
|
20257
|
-
select: SessionSelect;
|
|
20258
|
-
};
|
|
20259
|
-
};
|
|
20260
20419
|
export interface RequestUploadUrlPayload {
|
|
20261
20420
|
/** Presigned PUT URL (null if file was deduplicated) */
|
|
20262
20421
|
uploadUrl?: string | null;
|
|
@@ -24046,94 +24205,94 @@ export type DeleteConnectedAccountPayloadSelect = {
|
|
|
24046
24205
|
select: ConnectedAccountEdgeSelect;
|
|
24047
24206
|
};
|
|
24048
24207
|
};
|
|
24049
|
-
export interface
|
|
24208
|
+
export interface CreateAppInvitePayload {
|
|
24050
24209
|
clientMutationId?: string | null;
|
|
24051
|
-
/** The `
|
|
24052
|
-
|
|
24053
|
-
|
|
24210
|
+
/** The `AppInvite` that was created by this mutation. */
|
|
24211
|
+
appInvite?: AppInvite | null;
|
|
24212
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
24054
24213
|
}
|
|
24055
|
-
export type
|
|
24214
|
+
export type CreateAppInvitePayloadSelect = {
|
|
24056
24215
|
clientMutationId?: boolean;
|
|
24057
|
-
|
|
24058
|
-
select:
|
|
24216
|
+
appInvite?: {
|
|
24217
|
+
select: AppInviteSelect;
|
|
24059
24218
|
};
|
|
24060
|
-
|
|
24061
|
-
select:
|
|
24219
|
+
appInviteEdge?: {
|
|
24220
|
+
select: AppInviteEdgeSelect;
|
|
24062
24221
|
};
|
|
24063
24222
|
};
|
|
24064
|
-
export interface
|
|
24223
|
+
export interface UpdateAppInvitePayload {
|
|
24065
24224
|
clientMutationId?: string | null;
|
|
24066
|
-
/** The `
|
|
24067
|
-
|
|
24068
|
-
|
|
24225
|
+
/** The `AppInvite` that was updated by this mutation. */
|
|
24226
|
+
appInvite?: AppInvite | null;
|
|
24227
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
24069
24228
|
}
|
|
24070
|
-
export type
|
|
24229
|
+
export type UpdateAppInvitePayloadSelect = {
|
|
24071
24230
|
clientMutationId?: boolean;
|
|
24072
|
-
|
|
24073
|
-
select:
|
|
24231
|
+
appInvite?: {
|
|
24232
|
+
select: AppInviteSelect;
|
|
24074
24233
|
};
|
|
24075
|
-
|
|
24076
|
-
select:
|
|
24234
|
+
appInviteEdge?: {
|
|
24235
|
+
select: AppInviteEdgeSelect;
|
|
24077
24236
|
};
|
|
24078
24237
|
};
|
|
24079
|
-
export interface
|
|
24238
|
+
export interface DeleteAppInvitePayload {
|
|
24080
24239
|
clientMutationId?: string | null;
|
|
24081
|
-
/** The `
|
|
24082
|
-
|
|
24083
|
-
|
|
24240
|
+
/** The `AppInvite` that was deleted by this mutation. */
|
|
24241
|
+
appInvite?: AppInvite | null;
|
|
24242
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
24084
24243
|
}
|
|
24085
|
-
export type
|
|
24244
|
+
export type DeleteAppInvitePayloadSelect = {
|
|
24086
24245
|
clientMutationId?: boolean;
|
|
24087
|
-
|
|
24088
|
-
select:
|
|
24246
|
+
appInvite?: {
|
|
24247
|
+
select: AppInviteSelect;
|
|
24089
24248
|
};
|
|
24090
|
-
|
|
24091
|
-
select:
|
|
24249
|
+
appInviteEdge?: {
|
|
24250
|
+
select: AppInviteEdgeSelect;
|
|
24092
24251
|
};
|
|
24093
24252
|
};
|
|
24094
|
-
export interface
|
|
24253
|
+
export interface CreateAppClaimedInvitePayload {
|
|
24095
24254
|
clientMutationId?: string | null;
|
|
24096
|
-
/** The `
|
|
24097
|
-
|
|
24098
|
-
|
|
24255
|
+
/** The `AppClaimedInvite` that was created by this mutation. */
|
|
24256
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
24257
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
24099
24258
|
}
|
|
24100
|
-
export type
|
|
24259
|
+
export type CreateAppClaimedInvitePayloadSelect = {
|
|
24101
24260
|
clientMutationId?: boolean;
|
|
24102
|
-
|
|
24103
|
-
select:
|
|
24261
|
+
appClaimedInvite?: {
|
|
24262
|
+
select: AppClaimedInviteSelect;
|
|
24104
24263
|
};
|
|
24105
|
-
|
|
24106
|
-
select:
|
|
24264
|
+
appClaimedInviteEdge?: {
|
|
24265
|
+
select: AppClaimedInviteEdgeSelect;
|
|
24107
24266
|
};
|
|
24108
24267
|
};
|
|
24109
|
-
export interface
|
|
24268
|
+
export interface UpdateAppClaimedInvitePayload {
|
|
24110
24269
|
clientMutationId?: string | null;
|
|
24111
|
-
/** The `
|
|
24112
|
-
|
|
24113
|
-
|
|
24270
|
+
/** The `AppClaimedInvite` that was updated by this mutation. */
|
|
24271
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
24272
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
24114
24273
|
}
|
|
24115
|
-
export type
|
|
24274
|
+
export type UpdateAppClaimedInvitePayloadSelect = {
|
|
24116
24275
|
clientMutationId?: boolean;
|
|
24117
|
-
|
|
24118
|
-
select:
|
|
24276
|
+
appClaimedInvite?: {
|
|
24277
|
+
select: AppClaimedInviteSelect;
|
|
24119
24278
|
};
|
|
24120
|
-
|
|
24121
|
-
select:
|
|
24279
|
+
appClaimedInviteEdge?: {
|
|
24280
|
+
select: AppClaimedInviteEdgeSelect;
|
|
24122
24281
|
};
|
|
24123
24282
|
};
|
|
24124
|
-
export interface
|
|
24283
|
+
export interface DeleteAppClaimedInvitePayload {
|
|
24125
24284
|
clientMutationId?: string | null;
|
|
24126
|
-
/** The `
|
|
24127
|
-
|
|
24128
|
-
|
|
24285
|
+
/** The `AppClaimedInvite` that was deleted by this mutation. */
|
|
24286
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
24287
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
24129
24288
|
}
|
|
24130
|
-
export type
|
|
24289
|
+
export type DeleteAppClaimedInvitePayloadSelect = {
|
|
24131
24290
|
clientMutationId?: boolean;
|
|
24132
|
-
|
|
24133
|
-
select:
|
|
24291
|
+
appClaimedInvite?: {
|
|
24292
|
+
select: AppClaimedInviteSelect;
|
|
24134
24293
|
};
|
|
24135
|
-
|
|
24136
|
-
select:
|
|
24294
|
+
appClaimedInviteEdge?: {
|
|
24295
|
+
select: AppClaimedInviteEdgeSelect;
|
|
24137
24296
|
};
|
|
24138
24297
|
};
|
|
24139
24298
|
export interface CreateOrgInvitePayload {
|
|
@@ -24687,6 +24846,51 @@ export type DeleteCommitPayloadSelect = {
|
|
|
24687
24846
|
select: CommitEdgeSelect;
|
|
24688
24847
|
};
|
|
24689
24848
|
};
|
|
24849
|
+
export interface CreateRateLimitsModulePayload {
|
|
24850
|
+
clientMutationId?: string | null;
|
|
24851
|
+
/** The `RateLimitsModule` that was created by this mutation. */
|
|
24852
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
24853
|
+
rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
|
|
24854
|
+
}
|
|
24855
|
+
export type CreateRateLimitsModulePayloadSelect = {
|
|
24856
|
+
clientMutationId?: boolean;
|
|
24857
|
+
rateLimitsModule?: {
|
|
24858
|
+
select: RateLimitsModuleSelect;
|
|
24859
|
+
};
|
|
24860
|
+
rateLimitsModuleEdge?: {
|
|
24861
|
+
select: RateLimitsModuleEdgeSelect;
|
|
24862
|
+
};
|
|
24863
|
+
};
|
|
24864
|
+
export interface UpdateRateLimitsModulePayload {
|
|
24865
|
+
clientMutationId?: string | null;
|
|
24866
|
+
/** The `RateLimitsModule` that was updated by this mutation. */
|
|
24867
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
24868
|
+
rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
|
|
24869
|
+
}
|
|
24870
|
+
export type UpdateRateLimitsModulePayloadSelect = {
|
|
24871
|
+
clientMutationId?: boolean;
|
|
24872
|
+
rateLimitsModule?: {
|
|
24873
|
+
select: RateLimitsModuleSelect;
|
|
24874
|
+
};
|
|
24875
|
+
rateLimitsModuleEdge?: {
|
|
24876
|
+
select: RateLimitsModuleEdgeSelect;
|
|
24877
|
+
};
|
|
24878
|
+
};
|
|
24879
|
+
export interface DeleteRateLimitsModulePayload {
|
|
24880
|
+
clientMutationId?: string | null;
|
|
24881
|
+
/** The `RateLimitsModule` that was deleted by this mutation. */
|
|
24882
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
24883
|
+
rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
|
|
24884
|
+
}
|
|
24885
|
+
export type DeleteRateLimitsModulePayloadSelect = {
|
|
24886
|
+
clientMutationId?: boolean;
|
|
24887
|
+
rateLimitsModule?: {
|
|
24888
|
+
select: RateLimitsModuleSelect;
|
|
24889
|
+
};
|
|
24890
|
+
rateLimitsModuleEdge?: {
|
|
24891
|
+
select: RateLimitsModuleEdgeSelect;
|
|
24892
|
+
};
|
|
24893
|
+
};
|
|
24690
24894
|
export interface CreateOrgMembershipDefaultPayload {
|
|
24691
24895
|
clientMutationId?: string | null;
|
|
24692
24896
|
/** The `OrgMembershipDefault` that was created by this mutation. */
|
|
@@ -25105,50 +25309,6 @@ export type ProvisionTableRecordSelect = {
|
|
|
25105
25309
|
outTableId?: boolean;
|
|
25106
25310
|
outFields?: boolean;
|
|
25107
25311
|
};
|
|
25108
|
-
/** Tracks user authentication sessions with expiration, fingerprinting, and step-up verification state */
|
|
25109
|
-
export interface Session {
|
|
25110
|
-
id: string;
|
|
25111
|
-
/** References the authenticated user; NULL for anonymous sessions */
|
|
25112
|
-
userId?: string | null;
|
|
25113
|
-
/** Whether this is an anonymous session (no authenticated user) */
|
|
25114
|
-
isAnonymous: boolean;
|
|
25115
|
-
/** When this session expires and can no longer be used for authentication */
|
|
25116
|
-
expiresAt: string;
|
|
25117
|
-
/** When this session was explicitly revoked (soft delete); NULL means active */
|
|
25118
|
-
revokedAt?: string | null;
|
|
25119
|
-
/** The origin (protocol + host) from which the session was created, used for fingerprint validation */
|
|
25120
|
-
origin?: ConstructiveInternalTypeOrigin | null;
|
|
25121
|
-
/** IP address from which the session was created, used for strict fingerprint validation */
|
|
25122
|
-
ip?: string | null;
|
|
25123
|
-
/** User-Agent string from the client, used for strict fingerprint validation */
|
|
25124
|
-
uagent?: string | null;
|
|
25125
|
-
/** Session validation mode: strict (origin+ip+uagent), lax (origin only), or none (no validation) */
|
|
25126
|
-
fingerprintMode: string;
|
|
25127
|
-
/** Timestamp of last password re-verification for step-up authentication */
|
|
25128
|
-
lastPasswordVerified?: string | null;
|
|
25129
|
-
/** Timestamp of last MFA verification for step-up authentication */
|
|
25130
|
-
lastMfaVerified?: string | null;
|
|
25131
|
-
/** Secret used to generate and validate CSRF tokens for cookie-based sessions */
|
|
25132
|
-
csrfSecret?: string | null;
|
|
25133
|
-
createdAt?: string | null;
|
|
25134
|
-
updatedAt?: string | null;
|
|
25135
|
-
}
|
|
25136
|
-
export type SessionSelect = {
|
|
25137
|
-
id?: boolean;
|
|
25138
|
-
userId?: boolean;
|
|
25139
|
-
isAnonymous?: boolean;
|
|
25140
|
-
expiresAt?: boolean;
|
|
25141
|
-
revokedAt?: boolean;
|
|
25142
|
-
origin?: boolean;
|
|
25143
|
-
ip?: boolean;
|
|
25144
|
-
uagent?: boolean;
|
|
25145
|
-
fingerprintMode?: boolean;
|
|
25146
|
-
lastPasswordVerified?: boolean;
|
|
25147
|
-
lastMfaVerified?: boolean;
|
|
25148
|
-
csrfSecret?: boolean;
|
|
25149
|
-
createdAt?: boolean;
|
|
25150
|
-
updatedAt?: boolean;
|
|
25151
|
-
};
|
|
25152
25312
|
/** A `Database` edge in the connection. */
|
|
25153
25313
|
export interface DatabaseEdge {
|
|
25154
25314
|
cursor?: string | null;
|
|
@@ -26097,28 +26257,28 @@ export type ConnectedAccountEdgeSelect = {
|
|
|
26097
26257
|
select: ConnectedAccountSelect;
|
|
26098
26258
|
};
|
|
26099
26259
|
};
|
|
26100
|
-
/** A `
|
|
26101
|
-
export interface
|
|
26260
|
+
/** A `AppInvite` edge in the connection. */
|
|
26261
|
+
export interface AppInviteEdge {
|
|
26102
26262
|
cursor?: string | null;
|
|
26103
|
-
/** The `
|
|
26104
|
-
node?:
|
|
26263
|
+
/** The `AppInvite` at the end of the edge. */
|
|
26264
|
+
node?: AppInvite | null;
|
|
26105
26265
|
}
|
|
26106
|
-
export type
|
|
26266
|
+
export type AppInviteEdgeSelect = {
|
|
26107
26267
|
cursor?: boolean;
|
|
26108
26268
|
node?: {
|
|
26109
|
-
select:
|
|
26269
|
+
select: AppInviteSelect;
|
|
26110
26270
|
};
|
|
26111
26271
|
};
|
|
26112
|
-
/** A `
|
|
26113
|
-
export interface
|
|
26272
|
+
/** A `AppClaimedInvite` edge in the connection. */
|
|
26273
|
+
export interface AppClaimedInviteEdge {
|
|
26114
26274
|
cursor?: string | null;
|
|
26115
|
-
/** The `
|
|
26116
|
-
node?:
|
|
26275
|
+
/** The `AppClaimedInvite` at the end of the edge. */
|
|
26276
|
+
node?: AppClaimedInvite | null;
|
|
26117
26277
|
}
|
|
26118
|
-
export type
|
|
26278
|
+
export type AppClaimedInviteEdgeSelect = {
|
|
26119
26279
|
cursor?: boolean;
|
|
26120
26280
|
node?: {
|
|
26121
|
-
select:
|
|
26281
|
+
select: AppClaimedInviteSelect;
|
|
26122
26282
|
};
|
|
26123
26283
|
};
|
|
26124
26284
|
/** A `OrgInvite` edge in the connection. */
|
|
@@ -26265,6 +26425,18 @@ export type CommitEdgeSelect = {
|
|
|
26265
26425
|
select: CommitSelect;
|
|
26266
26426
|
};
|
|
26267
26427
|
};
|
|
26428
|
+
/** A `RateLimitsModule` edge in the connection. */
|
|
26429
|
+
export interface RateLimitsModuleEdge {
|
|
26430
|
+
cursor?: string | null;
|
|
26431
|
+
/** The `RateLimitsModule` at the end of the edge. */
|
|
26432
|
+
node?: RateLimitsModule | null;
|
|
26433
|
+
}
|
|
26434
|
+
export type RateLimitsModuleEdgeSelect = {
|
|
26435
|
+
cursor?: boolean;
|
|
26436
|
+
node?: {
|
|
26437
|
+
select: RateLimitsModuleSelect;
|
|
26438
|
+
};
|
|
26439
|
+
};
|
|
26268
26440
|
/** A `OrgMembershipDefault` edge in the connection. */
|
|
26269
26441
|
export interface OrgMembershipDefaultEdge {
|
|
26270
26442
|
cursor?: string | null;
|