@constructive-io/sdk 0.21.8 → 0.21.9

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.
@@ -1041,6 +1041,8 @@ export interface ApiSetting {
1041
1041
  enableLlm?: boolean | null;
1042
1042
  /** Override: enable realtime subscriptions (NULL = inherit from database_settings) */
1043
1043
  enableRealtime?: boolean | null;
1044
+ /** Override: enable bulk mutations (NULL = inherit from database_settings) */
1045
+ enableBulk?: boolean | null;
1044
1046
  /** Extensible JSON for additional per-API settings that do not have dedicated columns */
1045
1047
  options?: Record<string, unknown> | null;
1046
1048
  }
@@ -2641,35 +2643,6 @@ export interface RlsModule {
2641
2643
  currentRole?: string | null;
2642
2644
  currentRoleId?: string | null;
2643
2645
  }
2644
- /** Database-wide feature flags and settings; controls which platform features are available to all APIs in this database */
2645
- export interface DatabaseSetting {
2646
- /** Unique identifier for this settings record */
2647
- id: string;
2648
- /** Reference to the metaschema database these settings apply to */
2649
- databaseId?: string | null;
2650
- /** Enable aggregate queries (sum, avg, min, max, etc.) in the GraphQL API */
2651
- enableAggregates?: boolean | null;
2652
- /** Enable PostGIS spatial types and operators in the GraphQL API */
2653
- enablePostgis?: boolean | null;
2654
- /** Enable unified search (tsvector, BM25, pg_trgm, pgvector) in the GraphQL API */
2655
- enableSearch?: boolean | null;
2656
- /** Enable direct (multipart) file upload mutations in the GraphQL API */
2657
- enableDirectUploads?: boolean | null;
2658
- /** Enable presigned URL upload flow for S3/MinIO storage */
2659
- enablePresignedUploads?: boolean | null;
2660
- /** Enable many-to-many relationship queries in the GraphQL API */
2661
- enableManyToMany?: boolean | null;
2662
- /** Enable connection filter (where argument) in the GraphQL API */
2663
- enableConnectionFilter?: boolean | null;
2664
- /** Enable ltree hierarchical data type support in the GraphQL API */
2665
- enableLtree?: boolean | null;
2666
- /** Enable LLM/AI integration features in the GraphQL API */
2667
- enableLlm?: boolean | null;
2668
- /** Enable realtime subscriptions (cursor-tracked change delivery) in the GraphQL API */
2669
- enableRealtime?: boolean | null;
2670
- /** Extensible JSON for additional settings that do not have dedicated columns */
2671
- options?: Record<string, unknown> | null;
2672
- }
2673
2646
  export interface PlansModule {
2674
2647
  id: string;
2675
2648
  databaseId?: string | null;
@@ -2700,6 +2673,37 @@ export interface SqlAction {
2700
2673
  actionId?: string | null;
2701
2674
  actorId?: string | null;
2702
2675
  }
2676
+ /** Database-wide feature flags and settings; controls which platform features are available to all APIs in this database */
2677
+ export interface DatabaseSetting {
2678
+ /** Unique identifier for this settings record */
2679
+ id: string;
2680
+ /** Reference to the metaschema database these settings apply to */
2681
+ databaseId?: string | null;
2682
+ /** Enable aggregate queries (sum, avg, min, max, etc.) in the GraphQL API */
2683
+ enableAggregates?: boolean | null;
2684
+ /** Enable PostGIS spatial types and operators in the GraphQL API */
2685
+ enablePostgis?: boolean | null;
2686
+ /** Enable unified search (tsvector, BM25, pg_trgm, pgvector) in the GraphQL API */
2687
+ enableSearch?: boolean | null;
2688
+ /** Enable direct (multipart) file upload mutations in the GraphQL API */
2689
+ enableDirectUploads?: boolean | null;
2690
+ /** Enable presigned URL upload flow for S3/MinIO storage */
2691
+ enablePresignedUploads?: boolean | null;
2692
+ /** Enable many-to-many relationship queries in the GraphQL API */
2693
+ enableManyToMany?: boolean | null;
2694
+ /** Enable connection filter (where argument) in the GraphQL API */
2695
+ enableConnectionFilter?: boolean | null;
2696
+ /** Enable ltree hierarchical data type support in the GraphQL API */
2697
+ enableLtree?: boolean | null;
2698
+ /** Enable LLM/AI integration features in the GraphQL API */
2699
+ enableLlm?: boolean | null;
2700
+ /** Enable realtime subscriptions (cursor-tracked change delivery) in the GraphQL API */
2701
+ enableRealtime?: boolean | null;
2702
+ /** Enable bulk mutation operations (insert, upsert, update, delete) in the GraphQL API */
2703
+ enableBulk?: boolean | null;
2704
+ /** Extensible JSON for additional settings that do not have dedicated columns */
2705
+ options?: Record<string, unknown> | null;
2706
+ }
2703
2707
  export interface BillingModule {
2704
2708
  id: string;
2705
2709
  databaseId?: string | null;
@@ -3678,9 +3682,6 @@ export interface RlsModuleRelations {
3678
3682
  sessionsTable?: Table | null;
3679
3683
  usersTable?: Table | null;
3680
3684
  }
3681
- export interface DatabaseSettingRelations {
3682
- database?: Database | null;
3683
- }
3684
3685
  export interface PlansModuleRelations {
3685
3686
  database?: Database | null;
3686
3687
  planLimitsTable?: Table | null;
@@ -3692,6 +3693,9 @@ export interface PlansModuleRelations {
3692
3693
  }
3693
3694
  export interface SqlActionRelations {
3694
3695
  }
3696
+ export interface DatabaseSettingRelations {
3697
+ database?: Database | null;
3698
+ }
3695
3699
  export interface BillingModuleRelations {
3696
3700
  balancesTable?: Table | null;
3697
3701
  database?: Database | null;
@@ -3946,9 +3950,9 @@ export type RlsSettingWithRelations = RlsSetting & RlsSettingRelations;
3946
3950
  export type AppLimitEventWithRelations = AppLimitEvent & AppLimitEventRelations;
3947
3951
  export type OrgLimitEventWithRelations = OrgLimitEvent & OrgLimitEventRelations;
3948
3952
  export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
3949
- export type DatabaseSettingWithRelations = DatabaseSetting & DatabaseSettingRelations;
3950
3953
  export type PlansModuleWithRelations = PlansModule & PlansModuleRelations;
3951
3954
  export type SqlActionWithRelations = SqlAction & SqlActionRelations;
3955
+ export type DatabaseSettingWithRelations = DatabaseSetting & DatabaseSettingRelations;
3952
3956
  export type BillingModuleWithRelations = BillingModule & BillingModuleRelations;
3953
3957
  export type AstMigrationWithRelations = AstMigration & AstMigrationRelations;
3954
3958
  export type UserWithRelations = User & UserRelations;
@@ -5587,6 +5591,7 @@ export type ApiSettingSelect = {
5587
5591
  enableLtree?: boolean;
5588
5592
  enableLlm?: boolean;
5589
5593
  enableRealtime?: boolean;
5594
+ enableBulk?: boolean;
5590
5595
  options?: boolean;
5591
5596
  api?: {
5592
5597
  select: ApiSelect;
@@ -7476,24 +7481,6 @@ export type RlsModuleSelect = {
7476
7481
  select: TableSelect;
7477
7482
  };
7478
7483
  };
7479
- export type DatabaseSettingSelect = {
7480
- id?: boolean;
7481
- databaseId?: boolean;
7482
- enableAggregates?: boolean;
7483
- enablePostgis?: boolean;
7484
- enableSearch?: boolean;
7485
- enableDirectUploads?: boolean;
7486
- enablePresignedUploads?: boolean;
7487
- enableManyToMany?: boolean;
7488
- enableConnectionFilter?: boolean;
7489
- enableLtree?: boolean;
7490
- enableLlm?: boolean;
7491
- enableRealtime?: boolean;
7492
- options?: boolean;
7493
- database?: {
7494
- select: DatabaseSelect;
7495
- };
7496
- };
7497
7484
  export type PlansModuleSelect = {
7498
7485
  id?: boolean;
7499
7486
  databaseId?: boolean;
@@ -7545,6 +7532,25 @@ export type SqlActionSelect = {
7545
7532
  actionId?: boolean;
7546
7533
  actorId?: boolean;
7547
7534
  };
7535
+ export type DatabaseSettingSelect = {
7536
+ id?: boolean;
7537
+ databaseId?: boolean;
7538
+ enableAggregates?: boolean;
7539
+ enablePostgis?: boolean;
7540
+ enableSearch?: boolean;
7541
+ enableDirectUploads?: boolean;
7542
+ enablePresignedUploads?: boolean;
7543
+ enableManyToMany?: boolean;
7544
+ enableConnectionFilter?: boolean;
7545
+ enableLtree?: boolean;
7546
+ enableLlm?: boolean;
7547
+ enableRealtime?: boolean;
7548
+ enableBulk?: boolean;
7549
+ options?: boolean;
7550
+ database?: {
7551
+ select: DatabaseSelect;
7552
+ };
7553
+ };
7548
7554
  export type BillingModuleSelect = {
7549
7555
  id?: boolean;
7550
7556
  databaseId?: boolean;
@@ -10233,6 +10239,8 @@ export interface ApiSettingFilter {
10233
10239
  enableLlm?: BooleanFilter;
10234
10240
  /** Filter by the object’s `enableRealtime` field. */
10235
10241
  enableRealtime?: BooleanFilter;
10242
+ /** Filter by the object’s `enableBulk` field. */
10243
+ enableBulk?: BooleanFilter;
10236
10244
  /** Filter by the object’s `options` field. */
10237
10245
  options?: JSONFilter;
10238
10246
  /** Checks for all expressions in this list. */
@@ -13348,42 +13356,6 @@ export interface RlsModuleFilter {
13348
13356
  /** Filter by the object’s `usersTable` relation. */
13349
13357
  usersTable?: TableFilter;
13350
13358
  }
13351
- export interface DatabaseSettingFilter {
13352
- /** Filter by the object’s `id` field. */
13353
- id?: UUIDFilter;
13354
- /** Filter by the object’s `databaseId` field. */
13355
- databaseId?: UUIDFilter;
13356
- /** Filter by the object’s `enableAggregates` field. */
13357
- enableAggregates?: BooleanFilter;
13358
- /** Filter by the object’s `enablePostgis` field. */
13359
- enablePostgis?: BooleanFilter;
13360
- /** Filter by the object’s `enableSearch` field. */
13361
- enableSearch?: BooleanFilter;
13362
- /** Filter by the object’s `enableDirectUploads` field. */
13363
- enableDirectUploads?: BooleanFilter;
13364
- /** Filter by the object’s `enablePresignedUploads` field. */
13365
- enablePresignedUploads?: BooleanFilter;
13366
- /** Filter by the object’s `enableManyToMany` field. */
13367
- enableManyToMany?: BooleanFilter;
13368
- /** Filter by the object’s `enableConnectionFilter` field. */
13369
- enableConnectionFilter?: BooleanFilter;
13370
- /** Filter by the object’s `enableLtree` field. */
13371
- enableLtree?: BooleanFilter;
13372
- /** Filter by the object’s `enableLlm` field. */
13373
- enableLlm?: BooleanFilter;
13374
- /** Filter by the object’s `enableRealtime` field. */
13375
- enableRealtime?: BooleanFilter;
13376
- /** Filter by the object’s `options` field. */
13377
- options?: JSONFilter;
13378
- /** Checks for all expressions in this list. */
13379
- and?: DatabaseSettingFilter[];
13380
- /** Checks for any expressions in this list. */
13381
- or?: DatabaseSettingFilter[];
13382
- /** Negates the expression. */
13383
- not?: DatabaseSettingFilter;
13384
- /** Filter by the object’s `database` relation. */
13385
- database?: DatabaseFilter;
13386
- }
13387
13359
  export interface PlansModuleFilter {
13388
13360
  /** Filter by the object’s `id` field. */
13389
13361
  id?: UUIDFilter;
@@ -13468,6 +13440,44 @@ export interface SqlActionFilter {
13468
13440
  /** Negates the expression. */
13469
13441
  not?: SqlActionFilter;
13470
13442
  }
13443
+ export interface DatabaseSettingFilter {
13444
+ /** Filter by the object’s `id` field. */
13445
+ id?: UUIDFilter;
13446
+ /** Filter by the object’s `databaseId` field. */
13447
+ databaseId?: UUIDFilter;
13448
+ /** Filter by the object’s `enableAggregates` field. */
13449
+ enableAggregates?: BooleanFilter;
13450
+ /** Filter by the object’s `enablePostgis` field. */
13451
+ enablePostgis?: BooleanFilter;
13452
+ /** Filter by the object’s `enableSearch` field. */
13453
+ enableSearch?: BooleanFilter;
13454
+ /** Filter by the object’s `enableDirectUploads` field. */
13455
+ enableDirectUploads?: BooleanFilter;
13456
+ /** Filter by the object’s `enablePresignedUploads` field. */
13457
+ enablePresignedUploads?: BooleanFilter;
13458
+ /** Filter by the object’s `enableManyToMany` field. */
13459
+ enableManyToMany?: BooleanFilter;
13460
+ /** Filter by the object’s `enableConnectionFilter` field. */
13461
+ enableConnectionFilter?: BooleanFilter;
13462
+ /** Filter by the object’s `enableLtree` field. */
13463
+ enableLtree?: BooleanFilter;
13464
+ /** Filter by the object’s `enableLlm` field. */
13465
+ enableLlm?: BooleanFilter;
13466
+ /** Filter by the object’s `enableRealtime` field. */
13467
+ enableRealtime?: BooleanFilter;
13468
+ /** Filter by the object’s `enableBulk` field. */
13469
+ enableBulk?: BooleanFilter;
13470
+ /** Filter by the object’s `options` field. */
13471
+ options?: JSONFilter;
13472
+ /** Checks for all expressions in this list. */
13473
+ and?: DatabaseSettingFilter[];
13474
+ /** Checks for any expressions in this list. */
13475
+ or?: DatabaseSettingFilter[];
13476
+ /** Negates the expression. */
13477
+ not?: DatabaseSettingFilter;
13478
+ /** Filter by the object’s `database` relation. */
13479
+ database?: DatabaseFilter;
13480
+ }
13471
13481
  export interface BillingModuleFilter {
13472
13482
  /** Filter by the object’s `id` field. */
13473
13483
  id?: UUIDFilter;
@@ -14183,7 +14193,7 @@ export type DatabaseTransferOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_K
14183
14193
  export type ApiOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC' | 'ROLE_NAME_ASC' | 'ROLE_NAME_DESC' | 'ANON_ROLE_ASC' | 'ANON_ROLE_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC';
14184
14194
  export type SiteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'OG_IMAGE_ASC' | 'OG_IMAGE_DESC' | 'FAVICON_ASC' | 'FAVICON_DESC' | 'APPLE_TOUCH_ICON_ASC' | 'APPLE_TOUCH_ICON_DESC' | 'LOGO_ASC' | 'LOGO_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC';
14185
14195
  export type AppOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'APP_IMAGE_ASC' | 'APP_IMAGE_DESC' | 'APP_STORE_LINK_ASC' | 'APP_STORE_LINK_DESC' | 'APP_STORE_ID_ASC' | 'APP_STORE_ID_DESC' | 'APP_ID_PREFIX_ASC' | 'APP_ID_PREFIX_DESC' | 'PLAY_STORE_LINK_ASC' | 'PLAY_STORE_LINK_DESC';
14186
- export type ApiSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC';
14196
+ export type ApiSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'ENABLE_BULK_ASC' | 'ENABLE_BULK_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC';
14187
14197
  export type ConnectedAccountsModuleOrderBy = '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' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
14188
14198
  export type CryptoAddressesModuleOrderBy = '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' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'CRYPTO_NETWORK_ASC' | 'CRYPTO_NETWORK_DESC';
14189
14199
  export type CryptoAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'SECRETS_TABLE_ID_ASC' | 'SECRETS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'ADDRESSES_TABLE_ID_ASC' | 'ADDRESSES_TABLE_ID_DESC' | 'USER_FIELD_ASC' | 'USER_FIELD_DESC' | 'CRYPTO_NETWORK_ASC' | 'CRYPTO_NETWORK_DESC' | 'SIGN_IN_REQUEST_CHALLENGE_ASC' | 'SIGN_IN_REQUEST_CHALLENGE_DESC' | 'SIGN_IN_RECORD_FAILURE_ASC' | 'SIGN_IN_RECORD_FAILURE_DESC' | 'SIGN_UP_WITH_KEY_ASC' | 'SIGN_UP_WITH_KEY_DESC' | 'SIGN_IN_WITH_CHALLENGE_ASC' | 'SIGN_IN_WITH_CHALLENGE_DESC';
@@ -14273,9 +14283,9 @@ export type RlsSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DES
14273
14283
  export type AppLimitEventOrderBy = 'NATURAL' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'DELTA_ASC' | 'DELTA_DESC' | 'NUM_BEFORE_ASC' | 'NUM_BEFORE_DESC' | 'NUM_AFTER_ASC' | 'NUM_AFTER_DESC' | 'MAX_AT_EVENT_ASC' | 'MAX_AT_EVENT_DESC' | 'REASON_ASC' | 'REASON_DESC';
14274
14284
  export type OrgLimitEventOrderBy = 'NATURAL' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'DELTA_ASC' | 'DELTA_DESC' | 'NUM_BEFORE_ASC' | 'NUM_BEFORE_DESC' | 'NUM_AFTER_ASC' | 'NUM_AFTER_DESC' | 'MAX_AT_EVENT_ASC' | 'MAX_AT_EVENT_DESC' | 'REASON_ASC' | 'REASON_DESC';
14275
14285
  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';
14276
- export type DatabaseSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC';
14277
14286
  export type PlansModuleOrderBy = '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' | 'PLANS_TABLE_ID_ASC' | 'PLANS_TABLE_ID_DESC' | 'PLANS_TABLE_NAME_ASC' | 'PLANS_TABLE_NAME_DESC' | 'PLAN_LIMITS_TABLE_ID_ASC' | 'PLAN_LIMITS_TABLE_ID_DESC' | 'PLAN_LIMITS_TABLE_NAME_ASC' | 'PLAN_LIMITS_TABLE_NAME_DESC' | 'PLAN_PRICING_TABLE_ID_ASC' | 'PLAN_PRICING_TABLE_ID_DESC' | 'PLAN_OVERRIDES_TABLE_ID_ASC' | 'PLAN_OVERRIDES_TABLE_ID_DESC' | 'APPLY_PLAN_FUNCTION_ASC' | 'APPLY_PLAN_FUNCTION_DESC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_ASC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
14278
14287
  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';
14288
+ export type DatabaseSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'ENABLE_BULK_ASC' | 'ENABLE_BULK_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC';
14279
14289
  export type BillingModuleOrderBy = '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' | 'METERS_TABLE_ID_ASC' | 'METERS_TABLE_ID_DESC' | 'METERS_TABLE_NAME_ASC' | 'METERS_TABLE_NAME_DESC' | 'PLAN_SUBSCRIPTIONS_TABLE_ID_ASC' | 'PLAN_SUBSCRIPTIONS_TABLE_ID_DESC' | 'PLAN_SUBSCRIPTIONS_TABLE_NAME_ASC' | 'PLAN_SUBSCRIPTIONS_TABLE_NAME_DESC' | 'LEDGER_TABLE_ID_ASC' | 'LEDGER_TABLE_ID_DESC' | 'LEDGER_TABLE_NAME_ASC' | 'LEDGER_TABLE_NAME_DESC' | 'BALANCES_TABLE_ID_ASC' | 'BALANCES_TABLE_ID_DESC' | 'BALANCES_TABLE_NAME_ASC' | 'BALANCES_TABLE_NAME_DESC' | 'RECORD_USAGE_FUNCTION_ASC' | 'RECORD_USAGE_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
14280
14290
  export type AstMigrationOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'REQUIRES_ASC' | 'REQUIRES_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'DEPLOY_ASC' | 'DEPLOY_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';
14281
14291
  export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC' | 'SEARCH_TSV_ASC' | 'SEARCH_TSV_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
@@ -15833,6 +15843,7 @@ export interface CreateApiSettingInput {
15833
15843
  enableLtree?: boolean;
15834
15844
  enableLlm?: boolean;
15835
15845
  enableRealtime?: boolean;
15846
+ enableBulk?: boolean;
15836
15847
  options?: Record<string, unknown>;
15837
15848
  };
15838
15849
  }
@@ -15849,6 +15860,7 @@ export interface ApiSettingPatch {
15849
15860
  enableLtree?: boolean | null;
15850
15861
  enableLlm?: boolean | null;
15851
15862
  enableRealtime?: boolean | null;
15863
+ enableBulk?: boolean | null;
15852
15864
  options?: Record<string, unknown> | null;
15853
15865
  }
15854
15866
  export interface UpdateApiSettingInput {
@@ -18704,46 +18716,6 @@ export interface DeleteRlsModuleInput {
18704
18716
  clientMutationId?: string;
18705
18717
  id: string;
18706
18718
  }
18707
- export interface CreateDatabaseSettingInput {
18708
- clientMutationId?: string;
18709
- databaseSetting: {
18710
- databaseId: string;
18711
- enableAggregates?: boolean;
18712
- enablePostgis?: boolean;
18713
- enableSearch?: boolean;
18714
- enableDirectUploads?: boolean;
18715
- enablePresignedUploads?: boolean;
18716
- enableManyToMany?: boolean;
18717
- enableConnectionFilter?: boolean;
18718
- enableLtree?: boolean;
18719
- enableLlm?: boolean;
18720
- enableRealtime?: boolean;
18721
- options?: Record<string, unknown>;
18722
- };
18723
- }
18724
- export interface DatabaseSettingPatch {
18725
- databaseId?: string | null;
18726
- enableAggregates?: boolean | null;
18727
- enablePostgis?: boolean | null;
18728
- enableSearch?: boolean | null;
18729
- enableDirectUploads?: boolean | null;
18730
- enablePresignedUploads?: boolean | null;
18731
- enableManyToMany?: boolean | null;
18732
- enableConnectionFilter?: boolean | null;
18733
- enableLtree?: boolean | null;
18734
- enableLlm?: boolean | null;
18735
- enableRealtime?: boolean | null;
18736
- options?: Record<string, unknown> | null;
18737
- }
18738
- export interface UpdateDatabaseSettingInput {
18739
- clientMutationId?: string;
18740
- id: string;
18741
- databaseSettingPatch: DatabaseSettingPatch;
18742
- }
18743
- export interface DeleteDatabaseSettingInput {
18744
- clientMutationId?: string;
18745
- id: string;
18746
- }
18747
18719
  export interface CreatePlansModuleInput {
18748
18720
  clientMutationId?: string;
18749
18721
  plansModule: {
@@ -18822,6 +18794,48 @@ export interface DeleteSqlActionInput {
18822
18794
  clientMutationId?: string;
18823
18795
  id: number;
18824
18796
  }
18797
+ export interface CreateDatabaseSettingInput {
18798
+ clientMutationId?: string;
18799
+ databaseSetting: {
18800
+ databaseId: string;
18801
+ enableAggregates?: boolean;
18802
+ enablePostgis?: boolean;
18803
+ enableSearch?: boolean;
18804
+ enableDirectUploads?: boolean;
18805
+ enablePresignedUploads?: boolean;
18806
+ enableManyToMany?: boolean;
18807
+ enableConnectionFilter?: boolean;
18808
+ enableLtree?: boolean;
18809
+ enableLlm?: boolean;
18810
+ enableRealtime?: boolean;
18811
+ enableBulk?: boolean;
18812
+ options?: Record<string, unknown>;
18813
+ };
18814
+ }
18815
+ export interface DatabaseSettingPatch {
18816
+ databaseId?: string | null;
18817
+ enableAggregates?: boolean | null;
18818
+ enablePostgis?: boolean | null;
18819
+ enableSearch?: boolean | null;
18820
+ enableDirectUploads?: boolean | null;
18821
+ enablePresignedUploads?: boolean | null;
18822
+ enableManyToMany?: boolean | null;
18823
+ enableConnectionFilter?: boolean | null;
18824
+ enableLtree?: boolean | null;
18825
+ enableLlm?: boolean | null;
18826
+ enableRealtime?: boolean | null;
18827
+ enableBulk?: boolean | null;
18828
+ options?: Record<string, unknown> | null;
18829
+ }
18830
+ export interface UpdateDatabaseSettingInput {
18831
+ clientMutationId?: string;
18832
+ id: string;
18833
+ databaseSettingPatch: DatabaseSettingPatch;
18834
+ }
18835
+ export interface DeleteDatabaseSettingInput {
18836
+ clientMutationId?: string;
18837
+ id: string;
18838
+ }
18825
18839
  export interface CreateBillingModuleInput {
18826
18840
  clientMutationId?: string;
18827
18841
  billingModule: {
@@ -22941,6 +22955,8 @@ export interface ApiSettingFilter {
22941
22955
  enableLlm?: BooleanFilter;
22942
22956
  /** Filter by the object’s `enableRealtime` field. */
22943
22957
  enableRealtime?: BooleanFilter;
22958
+ /** Filter by the object’s `enableBulk` field. */
22959
+ enableBulk?: BooleanFilter;
22944
22960
  /** Filter by the object’s `options` field. */
22945
22961
  options?: JSONFilter;
22946
22962
  /** Checks for all expressions in this list. */
@@ -26779,6 +26795,8 @@ export interface DatabaseSettingFilter {
26779
26795
  enableLlm?: BooleanFilter;
26780
26796
  /** Filter by the object’s `enableRealtime` field. */
26781
26797
  enableRealtime?: BooleanFilter;
26798
+ /** Filter by the object’s `enableBulk` field. */
26799
+ enableBulk?: BooleanFilter;
26782
26800
  /** Filter by the object’s `options` field. */
26783
26801
  options?: JSONFilter;
26784
26802
  /** Checks for all expressions in this list. */
@@ -33928,51 +33946,6 @@ export type DeleteRlsModulePayloadSelect = {
33928
33946
  select: RlsModuleEdgeSelect;
33929
33947
  };
33930
33948
  };
33931
- export interface CreateDatabaseSettingPayload {
33932
- clientMutationId?: string | null;
33933
- /** The `DatabaseSetting` that was created by this mutation. */
33934
- databaseSetting?: DatabaseSetting | null;
33935
- databaseSettingEdge?: DatabaseSettingEdge | null;
33936
- }
33937
- export type CreateDatabaseSettingPayloadSelect = {
33938
- clientMutationId?: boolean;
33939
- databaseSetting?: {
33940
- select: DatabaseSettingSelect;
33941
- };
33942
- databaseSettingEdge?: {
33943
- select: DatabaseSettingEdgeSelect;
33944
- };
33945
- };
33946
- export interface UpdateDatabaseSettingPayload {
33947
- clientMutationId?: string | null;
33948
- /** The `DatabaseSetting` that was updated by this mutation. */
33949
- databaseSetting?: DatabaseSetting | null;
33950
- databaseSettingEdge?: DatabaseSettingEdge | null;
33951
- }
33952
- export type UpdateDatabaseSettingPayloadSelect = {
33953
- clientMutationId?: boolean;
33954
- databaseSetting?: {
33955
- select: DatabaseSettingSelect;
33956
- };
33957
- databaseSettingEdge?: {
33958
- select: DatabaseSettingEdgeSelect;
33959
- };
33960
- };
33961
- export interface DeleteDatabaseSettingPayload {
33962
- clientMutationId?: string | null;
33963
- /** The `DatabaseSetting` that was deleted by this mutation. */
33964
- databaseSetting?: DatabaseSetting | null;
33965
- databaseSettingEdge?: DatabaseSettingEdge | null;
33966
- }
33967
- export type DeleteDatabaseSettingPayloadSelect = {
33968
- clientMutationId?: boolean;
33969
- databaseSetting?: {
33970
- select: DatabaseSettingSelect;
33971
- };
33972
- databaseSettingEdge?: {
33973
- select: DatabaseSettingEdgeSelect;
33974
- };
33975
- };
33976
33949
  export interface CreatePlansModulePayload {
33977
33950
  clientMutationId?: string | null;
33978
33951
  /** The `PlansModule` that was created by this mutation. */
@@ -34029,6 +34002,51 @@ export type CreateSqlActionPayloadSelect = {
34029
34002
  select: SqlActionSelect;
34030
34003
  };
34031
34004
  };
34005
+ export interface CreateDatabaseSettingPayload {
34006
+ clientMutationId?: string | null;
34007
+ /** The `DatabaseSetting` that was created by this mutation. */
34008
+ databaseSetting?: DatabaseSetting | null;
34009
+ databaseSettingEdge?: DatabaseSettingEdge | null;
34010
+ }
34011
+ export type CreateDatabaseSettingPayloadSelect = {
34012
+ clientMutationId?: boolean;
34013
+ databaseSetting?: {
34014
+ select: DatabaseSettingSelect;
34015
+ };
34016
+ databaseSettingEdge?: {
34017
+ select: DatabaseSettingEdgeSelect;
34018
+ };
34019
+ };
34020
+ export interface UpdateDatabaseSettingPayload {
34021
+ clientMutationId?: string | null;
34022
+ /** The `DatabaseSetting` that was updated by this mutation. */
34023
+ databaseSetting?: DatabaseSetting | null;
34024
+ databaseSettingEdge?: DatabaseSettingEdge | null;
34025
+ }
34026
+ export type UpdateDatabaseSettingPayloadSelect = {
34027
+ clientMutationId?: boolean;
34028
+ databaseSetting?: {
34029
+ select: DatabaseSettingSelect;
34030
+ };
34031
+ databaseSettingEdge?: {
34032
+ select: DatabaseSettingEdgeSelect;
34033
+ };
34034
+ };
34035
+ export interface DeleteDatabaseSettingPayload {
34036
+ clientMutationId?: string | null;
34037
+ /** The `DatabaseSetting` that was deleted by this mutation. */
34038
+ databaseSetting?: DatabaseSetting | null;
34039
+ databaseSettingEdge?: DatabaseSettingEdge | null;
34040
+ }
34041
+ export type DeleteDatabaseSettingPayloadSelect = {
34042
+ clientMutationId?: boolean;
34043
+ databaseSetting?: {
34044
+ select: DatabaseSettingSelect;
34045
+ };
34046
+ databaseSettingEdge?: {
34047
+ select: DatabaseSettingEdgeSelect;
34048
+ };
34049
+ };
34032
34050
  export interface CreateBillingModulePayload {
34033
34051
  clientMutationId?: string | null;
34034
34052
  /** The `BillingModule` that was created by this mutation. */
@@ -36052,18 +36070,6 @@ export type RlsModuleEdgeSelect = {
36052
36070
  select: RlsModuleSelect;
36053
36071
  };
36054
36072
  };
36055
- /** A `DatabaseSetting` edge in the connection. */
36056
- export interface DatabaseSettingEdge {
36057
- cursor?: string | null;
36058
- /** The `DatabaseSetting` at the end of the edge. */
36059
- node?: DatabaseSetting | null;
36060
- }
36061
- export type DatabaseSettingEdgeSelect = {
36062
- cursor?: boolean;
36063
- node?: {
36064
- select: DatabaseSettingSelect;
36065
- };
36066
- };
36067
36073
  /** A `PlansModule` edge in the connection. */
36068
36074
  export interface PlansModuleEdge {
36069
36075
  cursor?: string | null;
@@ -36076,6 +36082,18 @@ export type PlansModuleEdgeSelect = {
36076
36082
  select: PlansModuleSelect;
36077
36083
  };
36078
36084
  };
36085
+ /** A `DatabaseSetting` edge in the connection. */
36086
+ export interface DatabaseSettingEdge {
36087
+ cursor?: string | null;
36088
+ /** The `DatabaseSetting` at the end of the edge. */
36089
+ node?: DatabaseSetting | null;
36090
+ }
36091
+ export type DatabaseSettingEdgeSelect = {
36092
+ cursor?: boolean;
36093
+ node?: {
36094
+ select: DatabaseSettingSelect;
36095
+ };
36096
+ };
36079
36097
  /** A `BillingModule` edge in the connection. */
36080
36098
  export interface BillingModuleEdge {
36081
36099
  cursor?: string | null;
@@ -141,9 +141,9 @@ export { RlsSettingModel } from './rlsSetting';
141
141
  export { AppLimitEventModel } from './appLimitEvent';
142
142
  export { OrgLimitEventModel } from './orgLimitEvent';
143
143
  export { RlsModuleModel } from './rlsModule';
144
- export { DatabaseSettingModel } from './databaseSetting';
145
144
  export { PlansModuleModel } from './plansModule';
146
145
  export { SqlActionModel } from './sqlAction';
146
+ export { DatabaseSettingModel } from './databaseSetting';
147
147
  export { BillingModuleModel } from './billingModule';
148
148
  export { AstMigrationModel } from './astMigration';
149
149
  export { UserModel } from './user';
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ConnectedAccountsModuleModel = exports.ApiSettingModel = exports.AppModel = exports.SiteModel = exports.ApiModel = exports.DatabaseTransferModel = exports.TriggerFunctionModel = exports.CorsSettingModel = exports.SiteThemeModel = exports.SiteModuleModel = exports.SiteMetadatumModel = exports.DomainModel = exports.ApiModuleModel = exports.ApiSchemaModel = exports.FunctionModel = exports.EnumModel = exports.DefaultPrivilegeModel = exports.SchemaGrantModel = exports.RealtimeModuleModel = exports.IdentityProvidersModuleModel = exports.SessionSecretsModuleModel = exports.RelationProvisionModel = exports.SecureTableProvisionModel = exports.EmbeddingChunkModel = exports.ViewRuleModel = exports.ViewGrantModel = exports.ViewTableModel = exports.ViewModel = exports.UniqueConstraintModel = exports.TriggerModel = exports.TableGrantModel = exports.PrimaryKeyConstraintModel = exports.PolicyModel = exports.IndexModel = exports.FullTextSearchModel = exports.ForeignKeyConstraintModel = exports.PartitionModel = exports.SpatialRelationModel = exports.FieldModel = exports.CheckConstraintModel = exports.TableModel = exports.SchemaModel = exports.DatabaseModel = exports.AppLevelRequirementModel = exports.ObjectModel = exports.OrgPermissionModel = exports.AppPermissionModel = exports.GetAllRecordModel = exports.OrgGetSubordinatesRecordModel = exports.OrgGetManagersRecordModel = void 0;
4
4
  exports.EmailModel = exports.AppLevelModel = exports.AppAchievementModel = exports.AppStepModel = exports.OrgLimitAggregateModel = exports.OrgLimitCreditModel = exports.OrgLimitModel = exports.AppLimitCreditRedemptionModel = exports.AppLimitCreditCodeItemModel = exports.AppLimitCreditModel = exports.AppLimitModel = exports.OrgPermissionDefaultModel = exports.OrgChartEdgeGrantModel = exports.OrgChartEdgeModel = exports.OrgGrantModel = exports.OrgMemberProfileModel = exports.OrgOwnerGrantModel = exports.OrgAdminGrantModel = exports.OrgMemberModel = exports.OrgMembershipModel = exports.AppGrantModel = exports.AppOwnerGrantModel = exports.AppAdminGrantModel = exports.DatabaseProvisionModuleModel = exports.NotificationsModuleModel = exports.WebauthnAuthModuleModel = exports.WebauthnCredentialsModuleModel = exports.EntityTypeProvisionModel = exports.StorageModuleModel = exports.BlueprintConstructionModel = exports.BlueprintTemplateModel = exports.BlueprintModel = exports.UsersModuleModel = exports.UserAuthModuleModel = exports.SessionsModuleModel = exports.SecretsModuleModel = exports.ProfilesModuleModel = exports.PhoneNumbersModuleModel = exports.PermissionsModuleModel = exports.MembershipsModuleModel = exports.MembershipTypesModuleModel = exports.LimitsModuleModel = exports.LevelsModuleModel = exports.InvitesModuleModel = exports.EncryptedSecretsModuleModel = exports.EmailsModuleModel = exports.DenormalizedTableFieldModel = exports.DefaultIdsModuleModel = exports.CryptoAuthModuleModel = exports.CryptoAddressesModuleModel = void 0;
5
- exports.HierarchyModuleModel = exports.BillingProviderModuleModel = exports.AppMembershipModel = exports.WebauthnSettingModel = exports.OrgMembershipSettingModel = exports.UserModel = exports.AstMigrationModel = exports.BillingModuleModel = exports.SqlActionModel = exports.PlansModuleModel = exports.DatabaseSettingModel = exports.RlsModuleModel = exports.OrgLimitEventModel = exports.AppLimitEventModel = exports.RlsSettingModel = exports.OrgMembershipDefaultModel = exports.AppMembershipDefaultModel = exports.UsageSnapshotModel = exports.RateLimitsModuleModel = exports.PubkeySettingModel = exports.CommitModel = exports.UserConnectedAccountModel = exports.OrgLimitDefaultModel = exports.AppLimitDefaultModel = exports.NodeTypeRegistryModel = exports.DevicesModuleModel = exports.MigrateFileModel = exports.MembershipTypeModel = exports.OrgLimitCapModel = exports.AppLimitCapModel = exports.OrgLimitCapsDefaultModel = exports.AppLimitCapsDefaultModel = exports.AppLimitCreditCodeModel = exports.AppPermissionDefaultModel = exports.StoreModel = exports.RefModel = exports.IdentityProviderModel = exports.RoleTypeModel = exports.AgentTaskModel = exports.AgentMessageModel = exports.AgentThreadModel = exports.AuditLogModel = exports.OrgClaimedInviteModel = exports.OrgInviteModel = exports.AppClaimedInviteModel = exports.AppInviteModel = exports.WebauthnCredentialModel = exports.CryptoAddressModel = exports.PhoneNumberModel = void 0;
5
+ exports.HierarchyModuleModel = exports.BillingProviderModuleModel = exports.AppMembershipModel = exports.WebauthnSettingModel = exports.OrgMembershipSettingModel = exports.UserModel = exports.AstMigrationModel = exports.BillingModuleModel = exports.DatabaseSettingModel = exports.SqlActionModel = exports.PlansModuleModel = exports.RlsModuleModel = exports.OrgLimitEventModel = exports.AppLimitEventModel = exports.RlsSettingModel = exports.OrgMembershipDefaultModel = exports.AppMembershipDefaultModel = exports.UsageSnapshotModel = exports.RateLimitsModuleModel = exports.PubkeySettingModel = exports.CommitModel = exports.UserConnectedAccountModel = exports.OrgLimitDefaultModel = exports.AppLimitDefaultModel = exports.NodeTypeRegistryModel = exports.DevicesModuleModel = exports.MigrateFileModel = exports.MembershipTypeModel = exports.OrgLimitCapModel = exports.AppLimitCapModel = exports.OrgLimitCapsDefaultModel = exports.AppLimitCapsDefaultModel = exports.AppLimitCreditCodeModel = exports.AppPermissionDefaultModel = exports.StoreModel = exports.RefModel = exports.IdentityProviderModel = exports.RoleTypeModel = exports.AgentTaskModel = exports.AgentMessageModel = exports.AgentThreadModel = exports.AuditLogModel = exports.OrgClaimedInviteModel = exports.OrgInviteModel = exports.AppClaimedInviteModel = exports.AppInviteModel = exports.WebauthnCredentialModel = exports.CryptoAddressModel = exports.PhoneNumberModel = void 0;
6
6
  /**
7
7
  * Models barrel export
8
8
  * @generated by @constructive-io/graphql-codegen
@@ -284,12 +284,12 @@ var orgLimitEvent_1 = require("./orgLimitEvent");
284
284
  Object.defineProperty(exports, "OrgLimitEventModel", { enumerable: true, get: function () { return orgLimitEvent_1.OrgLimitEventModel; } });
285
285
  var rlsModule_1 = require("./rlsModule");
286
286
  Object.defineProperty(exports, "RlsModuleModel", { enumerable: true, get: function () { return rlsModule_1.RlsModuleModel; } });
287
- var databaseSetting_1 = require("./databaseSetting");
288
- Object.defineProperty(exports, "DatabaseSettingModel", { enumerable: true, get: function () { return databaseSetting_1.DatabaseSettingModel; } });
289
287
  var plansModule_1 = require("./plansModule");
290
288
  Object.defineProperty(exports, "PlansModuleModel", { enumerable: true, get: function () { return plansModule_1.PlansModuleModel; } });
291
289
  var sqlAction_1 = require("./sqlAction");
292
290
  Object.defineProperty(exports, "SqlActionModel", { enumerable: true, get: function () { return sqlAction_1.SqlActionModel; } });
291
+ var databaseSetting_1 = require("./databaseSetting");
292
+ Object.defineProperty(exports, "DatabaseSettingModel", { enumerable: true, get: function () { return databaseSetting_1.DatabaseSettingModel; } });
293
293
  var billingModule_1 = require("./billingModule");
294
294
  Object.defineProperty(exports, "BillingModuleModel", { enumerable: true, get: function () { return billingModule_1.BillingModuleModel; } });
295
295
  var astMigration_1 = require("./astMigration");
@@ -14,7 +14,7 @@ export interface PageInfo {
14
14
  startCursor?: string | null;
15
15
  endCursor?: string | null;
16
16
  }
17
- export interface FindManyArgs<TSelect, TWhere, TOrderBy = never> {
17
+ export interface FindManyArgs<TSelect, TWhere, TOrderBy> {
18
18
  select?: TSelect;
19
19
  where?: TWhere;
20
20
  orderBy?: TOrderBy[];