@pipe2-ai/sdk 2026.7.6 → 2026.9.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.
@@ -58,6 +58,10 @@ export type Scalars = {
58
58
  input: any;
59
59
  output: any;
60
60
  };
61
+ smallint: {
62
+ input: any;
63
+ output: any;
64
+ };
61
65
  timestamp: {
62
66
  input: any;
63
67
  output: any;
@@ -346,6 +350,8 @@ export type Assets = {
346
350
  thumbnail_url?: Maybe<Scalars['String']['output']>;
347
351
  type: Scalars['String']['output'];
348
352
  url: Scalars['String']['output'];
353
+ /** An object relationship */
354
+ user: Users;
349
355
  };
350
356
  /** columns and relationships of "assets" */
351
357
  export type AssetsMetadataArgs = {
@@ -428,6 +434,7 @@ export type Assets_Bool_Exp = {
428
434
  thumbnail_url?: InputMaybe<String_Comparison_Exp>;
429
435
  type?: InputMaybe<String_Comparison_Exp>;
430
436
  url?: InputMaybe<String_Comparison_Exp>;
437
+ user?: InputMaybe<Users_Bool_Exp>;
431
438
  };
432
439
  /** aggregate max on columns */
433
440
  export type Assets_Max_Fields = {
@@ -505,6 +512,7 @@ export type Assets_Order_By = {
505
512
  thumbnail_url?: InputMaybe<Order_By>;
506
513
  type?: InputMaybe<Order_By>;
507
514
  url?: InputMaybe<Order_By>;
515
+ user?: InputMaybe<Users_Order_By>;
508
516
  };
509
517
  /** primary key columns input for table: assets */
510
518
  export type Assets_Pk_Columns_Input = {
@@ -667,38 +675,6 @@ export type Bigint_Comparison_Exp = {
667
675
  _neq?: InputMaybe<Scalars['bigint']['input']>;
668
676
  _nin?: InputMaybe<Array<Scalars['bigint']['input']>>;
669
677
  };
670
- /** Boolean expression to compare columns of type "bpchar". All fields are combined with logical 'AND'. */
671
- export type Bpchar_Comparison_Exp = {
672
- _eq?: InputMaybe<Scalars['bpchar']['input']>;
673
- _gt?: InputMaybe<Scalars['bpchar']['input']>;
674
- _gte?: InputMaybe<Scalars['bpchar']['input']>;
675
- /** does the column match the given case-insensitive pattern */
676
- _ilike?: InputMaybe<Scalars['bpchar']['input']>;
677
- _in?: InputMaybe<Array<Scalars['bpchar']['input']>>;
678
- /** does the column match the given POSIX regular expression, case insensitive */
679
- _iregex?: InputMaybe<Scalars['bpchar']['input']>;
680
- _is_null?: InputMaybe<Scalars['Boolean']['input']>;
681
- /** does the column match the given pattern */
682
- _like?: InputMaybe<Scalars['bpchar']['input']>;
683
- _lt?: InputMaybe<Scalars['bpchar']['input']>;
684
- _lte?: InputMaybe<Scalars['bpchar']['input']>;
685
- _neq?: InputMaybe<Scalars['bpchar']['input']>;
686
- /** does the column NOT match the given case-insensitive pattern */
687
- _nilike?: InputMaybe<Scalars['bpchar']['input']>;
688
- _nin?: InputMaybe<Array<Scalars['bpchar']['input']>>;
689
- /** does the column NOT match the given POSIX regular expression, case insensitive */
690
- _niregex?: InputMaybe<Scalars['bpchar']['input']>;
691
- /** does the column NOT match the given pattern */
692
- _nlike?: InputMaybe<Scalars['bpchar']['input']>;
693
- /** does the column NOT match the given POSIX regular expression, case sensitive */
694
- _nregex?: InputMaybe<Scalars['bpchar']['input']>;
695
- /** does the column NOT match the given SQL regular expression */
696
- _nsimilar?: InputMaybe<Scalars['bpchar']['input']>;
697
- /** does the column match the given POSIX regular expression, case sensitive */
698
- _regex?: InputMaybe<Scalars['bpchar']['input']>;
699
- /** does the column match the given SQL regular expression */
700
- _similar?: InputMaybe<Scalars['bpchar']['input']>;
701
- };
702
678
  export type Cancel_Account_Deletion_Output = {
703
679
  __typename?: 'cancel_account_deletion_output';
704
680
  message: Scalars['String']['output'];
@@ -714,6 +690,11 @@ export type Cancel_Subscription_Output = {
714
690
  message: Scalars['String']['output'];
715
691
  success: Scalars['Boolean']['output'];
716
692
  };
693
+ export type Cancel_Subscription_Plan_Change_Output = {
694
+ __typename?: 'cancel_subscription_plan_change_output';
695
+ cancelled: Scalars['Boolean']['output'];
696
+ success: Scalars['Boolean']['output'];
697
+ };
717
698
  export type Change_Avatar_Output = {
718
699
  __typename?: 'change_avatar_output';
719
700
  avatar_url: Scalars['String']['output'];
@@ -737,6 +718,52 @@ export type Confirm_Account_Deletion_Output = {
737
718
  message: Scalars['String']['output'];
738
719
  success: Scalars['Boolean']['output'];
739
720
  };
721
+ /** ISO 3166-1 alpha-2, plus a literal '*' row meaning "any country". */
722
+ export type Countries = {
723
+ __typename?: 'countries';
724
+ code: Scalars['String']['output'];
725
+ /** ISO-4217 code of the country's current legal tender (CLDR currencyData). DISPLAY ONLY — every rail still settles in USD, so this never touches the amount charged. */
726
+ currency?: Maybe<Scalars['String']['output']>;
727
+ name: Scalars['String']['output'];
728
+ };
729
+ /** Boolean expression to filter rows from the table "countries". All fields are combined with a logical 'AND'. */
730
+ export type Countries_Bool_Exp = {
731
+ _and?: InputMaybe<Array<Countries_Bool_Exp>>;
732
+ _not?: InputMaybe<Countries_Bool_Exp>;
733
+ _or?: InputMaybe<Array<Countries_Bool_Exp>>;
734
+ code?: InputMaybe<String_Comparison_Exp>;
735
+ currency?: InputMaybe<String_Comparison_Exp>;
736
+ name?: InputMaybe<String_Comparison_Exp>;
737
+ };
738
+ /** Ordering options when selecting data from "countries". */
739
+ export type Countries_Order_By = {
740
+ code?: InputMaybe<Order_By>;
741
+ currency?: InputMaybe<Order_By>;
742
+ name?: InputMaybe<Order_By>;
743
+ };
744
+ /** select columns of table "countries" */
745
+ export declare enum Countries_Select_Column {
746
+ /** column name */
747
+ Code = "code",
748
+ /** column name */
749
+ Currency = "currency",
750
+ /** column name */
751
+ Name = "name"
752
+ }
753
+ /** Streaming cursor of the table "countries" */
754
+ export type Countries_Stream_Cursor_Input = {
755
+ /** Stream column input with initial value */
756
+ initial_value: Countries_Stream_Cursor_Value_Input;
757
+ /** cursor ordering */
758
+ ordering?: InputMaybe<Cursor_Ordering>;
759
+ };
760
+ /** Initial value of the column from where the streaming should start */
761
+ export type Countries_Stream_Cursor_Value_Input = {
762
+ code?: InputMaybe<Scalars['String']['input']>;
763
+ /** ISO-4217 code of the country's current legal tender (CLDR currencyData). DISPLAY ONLY — every rail still settles in USD, so this never touches the amount charged. */
764
+ currency?: InputMaybe<Scalars['String']['input']>;
765
+ name?: InputMaybe<Scalars['String']['input']>;
766
+ };
740
767
  export type Create_Asset_Output = {
741
768
  __typename?: 'create_asset_output';
742
769
  created_at: Scalars['String']['output'];
@@ -745,10 +772,10 @@ export type Create_Asset_Output = {
745
772
  type: Scalars['String']['output'];
746
773
  url: Scalars['String']['output'];
747
774
  };
748
- export type Create_Checkout_Session_Output = {
749
- __typename?: 'create_checkout_session_output';
750
- success: Scalars['Boolean']['output'];
751
- url: Scalars['String']['output'];
775
+ export type Create_Auth_Handoff_Code_Output = {
776
+ __typename?: 'create_auth_handoff_code_output';
777
+ code: Scalars['String']['output'];
778
+ expires_at: Scalars['String']['output'];
752
779
  };
753
780
  export type Create_Personal_Access_Token_Output = {
754
781
  __typename?: 'create_personal_access_token_output';
@@ -764,6 +791,74 @@ export type Credit_Balance_Output = {
764
791
  balance: Scalars['Int']['output'];
765
792
  reserved: Scalars['Int']['output'];
766
793
  };
794
+ /** columns and relationships of "credit_grants" */
795
+ export type Credit_Grants = {
796
+ __typename?: 'credit_grants';
797
+ created_at: Scalars['timestamptz']['output'];
798
+ expires_at?: Maybe<Scalars['timestamptz']['output']>;
799
+ id: Scalars['uuid']['output'];
800
+ original_mc: Scalars['bigint']['output'];
801
+ remaining_mc: Scalars['bigint']['output'];
802
+ source: Scalars['String']['output'];
803
+ status: Scalars['String']['output'];
804
+ };
805
+ /** Boolean expression to filter rows from the table "credit_grants". All fields are combined with a logical 'AND'. */
806
+ export type Credit_Grants_Bool_Exp = {
807
+ _and?: InputMaybe<Array<Credit_Grants_Bool_Exp>>;
808
+ _not?: InputMaybe<Credit_Grants_Bool_Exp>;
809
+ _or?: InputMaybe<Array<Credit_Grants_Bool_Exp>>;
810
+ created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
811
+ expires_at?: InputMaybe<Timestamptz_Comparison_Exp>;
812
+ id?: InputMaybe<Uuid_Comparison_Exp>;
813
+ original_mc?: InputMaybe<Bigint_Comparison_Exp>;
814
+ remaining_mc?: InputMaybe<Bigint_Comparison_Exp>;
815
+ source?: InputMaybe<String_Comparison_Exp>;
816
+ status?: InputMaybe<String_Comparison_Exp>;
817
+ };
818
+ /** Ordering options when selecting data from "credit_grants". */
819
+ export type Credit_Grants_Order_By = {
820
+ created_at?: InputMaybe<Order_By>;
821
+ expires_at?: InputMaybe<Order_By>;
822
+ id?: InputMaybe<Order_By>;
823
+ original_mc?: InputMaybe<Order_By>;
824
+ remaining_mc?: InputMaybe<Order_By>;
825
+ source?: InputMaybe<Order_By>;
826
+ status?: InputMaybe<Order_By>;
827
+ };
828
+ /** select columns of table "credit_grants" */
829
+ export declare enum Credit_Grants_Select_Column {
830
+ /** column name */
831
+ CreatedAt = "created_at",
832
+ /** column name */
833
+ ExpiresAt = "expires_at",
834
+ /** column name */
835
+ Id = "id",
836
+ /** column name */
837
+ OriginalMc = "original_mc",
838
+ /** column name */
839
+ RemainingMc = "remaining_mc",
840
+ /** column name */
841
+ Source = "source",
842
+ /** column name */
843
+ Status = "status"
844
+ }
845
+ /** Streaming cursor of the table "credit_grants" */
846
+ export type Credit_Grants_Stream_Cursor_Input = {
847
+ /** Stream column input with initial value */
848
+ initial_value: Credit_Grants_Stream_Cursor_Value_Input;
849
+ /** cursor ordering */
850
+ ordering?: InputMaybe<Cursor_Ordering>;
851
+ };
852
+ /** Initial value of the column from where the streaming should start */
853
+ export type Credit_Grants_Stream_Cursor_Value_Input = {
854
+ created_at?: InputMaybe<Scalars['timestamptz']['input']>;
855
+ expires_at?: InputMaybe<Scalars['timestamptz']['input']>;
856
+ id?: InputMaybe<Scalars['uuid']['input']>;
857
+ original_mc?: InputMaybe<Scalars['bigint']['input']>;
858
+ remaining_mc?: InputMaybe<Scalars['bigint']['input']>;
859
+ source?: InputMaybe<Scalars['String']['input']>;
860
+ status?: InputMaybe<Scalars['String']['input']>;
861
+ };
767
862
  export type Credit_History_Entry = {
768
863
  __typename?: 'credit_history_entry';
769
864
  amount: Scalars['Int']['output'];
@@ -1088,6 +1183,86 @@ export type Credit_Packs_Stream_Cursor_Value_Input = {
1088
1183
  slug?: InputMaybe<Scalars['String']['input']>;
1089
1184
  sort_order?: InputMaybe<Scalars['Int']['input']>;
1090
1185
  };
1186
+ /** columns and relationships of "crypto_payment_currencies" */
1187
+ export type Crypto_Payment_Currencies = {
1188
+ __typename?: 'crypto_payment_currencies';
1189
+ asset: Scalars['String']['output'];
1190
+ currency_id: Scalars['String']['output'];
1191
+ decimals: Scalars['Int']['output'];
1192
+ enabled: Scalars['Boolean']['output'];
1193
+ label: Scalars['String']['output'];
1194
+ min_usdt: Scalars['numeric']['output'];
1195
+ network: Scalars['String']['output'];
1196
+ provider: Scalars['String']['output'];
1197
+ sort_order: Scalars['Int']['output'];
1198
+ };
1199
+ /** Boolean expression to filter rows from the table "crypto_payment_currencies". All fields are combined with a logical 'AND'. */
1200
+ export type Crypto_Payment_Currencies_Bool_Exp = {
1201
+ _and?: InputMaybe<Array<Crypto_Payment_Currencies_Bool_Exp>>;
1202
+ _not?: InputMaybe<Crypto_Payment_Currencies_Bool_Exp>;
1203
+ _or?: InputMaybe<Array<Crypto_Payment_Currencies_Bool_Exp>>;
1204
+ asset?: InputMaybe<String_Comparison_Exp>;
1205
+ currency_id?: InputMaybe<String_Comparison_Exp>;
1206
+ decimals?: InputMaybe<Int_Comparison_Exp>;
1207
+ enabled?: InputMaybe<Boolean_Comparison_Exp>;
1208
+ label?: InputMaybe<String_Comparison_Exp>;
1209
+ min_usdt?: InputMaybe<Numeric_Comparison_Exp>;
1210
+ network?: InputMaybe<String_Comparison_Exp>;
1211
+ provider?: InputMaybe<String_Comparison_Exp>;
1212
+ sort_order?: InputMaybe<Int_Comparison_Exp>;
1213
+ };
1214
+ /** Ordering options when selecting data from "crypto_payment_currencies". */
1215
+ export type Crypto_Payment_Currencies_Order_By = {
1216
+ asset?: InputMaybe<Order_By>;
1217
+ currency_id?: InputMaybe<Order_By>;
1218
+ decimals?: InputMaybe<Order_By>;
1219
+ enabled?: InputMaybe<Order_By>;
1220
+ label?: InputMaybe<Order_By>;
1221
+ min_usdt?: InputMaybe<Order_By>;
1222
+ network?: InputMaybe<Order_By>;
1223
+ provider?: InputMaybe<Order_By>;
1224
+ sort_order?: InputMaybe<Order_By>;
1225
+ };
1226
+ /** select columns of table "crypto_payment_currencies" */
1227
+ export declare enum Crypto_Payment_Currencies_Select_Column {
1228
+ /** column name */
1229
+ Asset = "asset",
1230
+ /** column name */
1231
+ CurrencyId = "currency_id",
1232
+ /** column name */
1233
+ Decimals = "decimals",
1234
+ /** column name */
1235
+ Enabled = "enabled",
1236
+ /** column name */
1237
+ Label = "label",
1238
+ /** column name */
1239
+ MinUsdt = "min_usdt",
1240
+ /** column name */
1241
+ Network = "network",
1242
+ /** column name */
1243
+ Provider = "provider",
1244
+ /** column name */
1245
+ SortOrder = "sort_order"
1246
+ }
1247
+ /** Streaming cursor of the table "crypto_payment_currencies" */
1248
+ export type Crypto_Payment_Currencies_Stream_Cursor_Input = {
1249
+ /** Stream column input with initial value */
1250
+ initial_value: Crypto_Payment_Currencies_Stream_Cursor_Value_Input;
1251
+ /** cursor ordering */
1252
+ ordering?: InputMaybe<Cursor_Ordering>;
1253
+ };
1254
+ /** Initial value of the column from where the streaming should start */
1255
+ export type Crypto_Payment_Currencies_Stream_Cursor_Value_Input = {
1256
+ asset?: InputMaybe<Scalars['String']['input']>;
1257
+ currency_id?: InputMaybe<Scalars['String']['input']>;
1258
+ decimals?: InputMaybe<Scalars['Int']['input']>;
1259
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
1260
+ label?: InputMaybe<Scalars['String']['input']>;
1261
+ min_usdt?: InputMaybe<Scalars['numeric']['input']>;
1262
+ network?: InputMaybe<Scalars['String']['input']>;
1263
+ provider?: InputMaybe<Scalars['String']['input']>;
1264
+ sort_order?: InputMaybe<Scalars['Int']['input']>;
1265
+ };
1091
1266
  export type Current_User_Output = {
1092
1267
  __typename?: 'current_user_output';
1093
1268
  avatar_url?: Maybe<Scalars['String']['output']>;
@@ -1109,6 +1284,74 @@ export type Delete_Asset_Output = {
1109
1284
  __typename?: 'delete_asset_output';
1110
1285
  success: Scalars['Boolean']['output'];
1111
1286
  };
1287
+ /** columns and relationships of "dispatch_blocks" */
1288
+ export type Dispatch_Blocks = {
1289
+ __typename?: 'dispatch_blocks';
1290
+ created_at: Scalars['timestamptz']['output'];
1291
+ /** An object relationship */
1292
+ created_by_user?: Maybe<Users>;
1293
+ id: Scalars['uuid']['output'];
1294
+ /** An object relationship */
1295
+ pipeline?: Maybe<Pipelines>;
1296
+ pipeline_slug?: Maybe<Scalars['String']['output']>;
1297
+ reason: Scalars['String']['output'];
1298
+ /** An object relationship */
1299
+ user?: Maybe<Users>;
1300
+ user_id?: Maybe<Scalars['uuid']['output']>;
1301
+ };
1302
+ /** Boolean expression to filter rows from the table "dispatch_blocks". All fields are combined with a logical 'AND'. */
1303
+ export type Dispatch_Blocks_Bool_Exp = {
1304
+ _and?: InputMaybe<Array<Dispatch_Blocks_Bool_Exp>>;
1305
+ _not?: InputMaybe<Dispatch_Blocks_Bool_Exp>;
1306
+ _or?: InputMaybe<Array<Dispatch_Blocks_Bool_Exp>>;
1307
+ created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
1308
+ created_by_user?: InputMaybe<Users_Bool_Exp>;
1309
+ id?: InputMaybe<Uuid_Comparison_Exp>;
1310
+ pipeline?: InputMaybe<Pipelines_Bool_Exp>;
1311
+ pipeline_slug?: InputMaybe<String_Comparison_Exp>;
1312
+ reason?: InputMaybe<String_Comparison_Exp>;
1313
+ user?: InputMaybe<Users_Bool_Exp>;
1314
+ user_id?: InputMaybe<Uuid_Comparison_Exp>;
1315
+ };
1316
+ /** Ordering options when selecting data from "dispatch_blocks". */
1317
+ export type Dispatch_Blocks_Order_By = {
1318
+ created_at?: InputMaybe<Order_By>;
1319
+ created_by_user?: InputMaybe<Users_Order_By>;
1320
+ id?: InputMaybe<Order_By>;
1321
+ pipeline?: InputMaybe<Pipelines_Order_By>;
1322
+ pipeline_slug?: InputMaybe<Order_By>;
1323
+ reason?: InputMaybe<Order_By>;
1324
+ user?: InputMaybe<Users_Order_By>;
1325
+ user_id?: InputMaybe<Order_By>;
1326
+ };
1327
+ /** select columns of table "dispatch_blocks" */
1328
+ export declare enum Dispatch_Blocks_Select_Column {
1329
+ /** column name */
1330
+ CreatedAt = "created_at",
1331
+ /** column name */
1332
+ Id = "id",
1333
+ /** column name */
1334
+ PipelineSlug = "pipeline_slug",
1335
+ /** column name */
1336
+ Reason = "reason",
1337
+ /** column name */
1338
+ UserId = "user_id"
1339
+ }
1340
+ /** Streaming cursor of the table "dispatch_blocks" */
1341
+ export type Dispatch_Blocks_Stream_Cursor_Input = {
1342
+ /** Stream column input with initial value */
1343
+ initial_value: Dispatch_Blocks_Stream_Cursor_Value_Input;
1344
+ /** cursor ordering */
1345
+ ordering?: InputMaybe<Cursor_Ordering>;
1346
+ };
1347
+ /** Initial value of the column from where the streaming should start */
1348
+ export type Dispatch_Blocks_Stream_Cursor_Value_Input = {
1349
+ created_at?: InputMaybe<Scalars['timestamptz']['input']>;
1350
+ id?: InputMaybe<Scalars['uuid']['input']>;
1351
+ pipeline_slug?: InputMaybe<Scalars['String']['input']>;
1352
+ reason?: InputMaybe<Scalars['String']['input']>;
1353
+ user_id?: InputMaybe<Scalars['uuid']['input']>;
1354
+ };
1112
1355
  export type Ensure_Affiliate_Output = {
1113
1356
  __typename?: 'ensure_affiliate_output';
1114
1357
  affiliate_id: Scalars['String']['output'];
@@ -1116,16 +1359,21 @@ export type Ensure_Affiliate_Output = {
1116
1359
  };
1117
1360
  export type Estimate_Pipeline_Cost_Output = {
1118
1361
  __typename?: 'estimate_pipeline_cost_output';
1119
- engine_caps?: Maybe<Scalars['jsonb']['output']>;
1120
1362
  estimated_mc: Scalars['Int']['output'];
1121
1363
  incompatible_models?: Maybe<Scalars['jsonb']['output']>;
1122
1364
  is_metered: Scalars['Boolean']['output'];
1365
+ model_input_schema?: Maybe<Scalars['jsonb']['output']>;
1123
1366
  pipeline_slug: Scalars['String']['output'];
1124
1367
  reservation_mc: Scalars['Int']['output'];
1125
1368
  routed_model?: Maybe<Scalars['String']['output']>;
1126
1369
  routed_reason_code?: Maybe<Scalars['String']['output']>;
1127
1370
  routed_reason_params?: Maybe<Scalars['jsonb']['output']>;
1128
1371
  };
1372
+ export type Exchange_Auth_Handoff_Code_Output = {
1373
+ __typename?: 'exchange_auth_handoff_code_output';
1374
+ expires_at: Scalars['String']['output'];
1375
+ token: Scalars['String']['output'];
1376
+ };
1129
1377
  /** columns and relationships of "executions_visibility" */
1130
1378
  export type Executions_Visibility = {
1131
1379
  __typename?: 'executions_visibility';
@@ -1137,62 +1385,49 @@ export type Executions_Visibility = {
1137
1385
  workflow_id: Scalars['String']['output'];
1138
1386
  workflow_type_name: Scalars['String']['output'];
1139
1387
  };
1140
- /** Boolean expression to filter rows from the table "executions_visibility". All fields are combined with a logical 'AND'. */
1141
- export type Executions_Visibility_Bool_Exp = {
1142
- _and?: InputMaybe<Array<Executions_Visibility_Bool_Exp>>;
1143
- _not?: InputMaybe<Executions_Visibility_Bool_Exp>;
1144
- _or?: InputMaybe<Array<Executions_Visibility_Bool_Exp>>;
1145
- close_time?: InputMaybe<Timestamp_Comparison_Exp>;
1146
- run_id?: InputMaybe<Bpchar_Comparison_Exp>;
1147
- start_time?: InputMaybe<Timestamp_Comparison_Exp>;
1148
- status?: InputMaybe<Int_Comparison_Exp>;
1149
- task_queue?: InputMaybe<String_Comparison_Exp>;
1150
- workflow_id?: InputMaybe<String_Comparison_Exp>;
1151
- workflow_type_name?: InputMaybe<String_Comparison_Exp>;
1152
- };
1153
- /** Ordering options when selecting data from "executions_visibility". */
1154
- export type Executions_Visibility_Order_By = {
1155
- close_time?: InputMaybe<Order_By>;
1156
- run_id?: InputMaybe<Order_By>;
1157
- start_time?: InputMaybe<Order_By>;
1158
- status?: InputMaybe<Order_By>;
1159
- task_queue?: InputMaybe<Order_By>;
1160
- workflow_id?: InputMaybe<Order_By>;
1161
- workflow_type_name?: InputMaybe<Order_By>;
1388
+ /** Daily USD reference rates used to calculate localized product prices. */
1389
+ export type Fx_Rates = {
1390
+ __typename?: 'fx_rates';
1391
+ currency: Scalars['String']['output'];
1392
+ rate: Scalars['numeric']['output'];
1393
+ updated_at: Scalars['timestamptz']['output'];
1162
1394
  };
1163
- /** select columns of table "executions_visibility" */
1164
- export declare enum Executions_Visibility_Select_Column {
1165
- /** column name */
1166
- CloseTime = "close_time",
1167
- /** column name */
1168
- RunId = "run_id",
1169
- /** column name */
1170
- StartTime = "start_time",
1171
- /** column name */
1172
- Status = "status",
1395
+ /** Boolean expression to filter rows from the table "fx_rates". All fields are combined with a logical 'AND'. */
1396
+ export type Fx_Rates_Bool_Exp = {
1397
+ _and?: InputMaybe<Array<Fx_Rates_Bool_Exp>>;
1398
+ _not?: InputMaybe<Fx_Rates_Bool_Exp>;
1399
+ _or?: InputMaybe<Array<Fx_Rates_Bool_Exp>>;
1400
+ currency?: InputMaybe<String_Comparison_Exp>;
1401
+ rate?: InputMaybe<Numeric_Comparison_Exp>;
1402
+ updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
1403
+ };
1404
+ /** Ordering options when selecting data from "fx_rates". */
1405
+ export type Fx_Rates_Order_By = {
1406
+ currency?: InputMaybe<Order_By>;
1407
+ rate?: InputMaybe<Order_By>;
1408
+ updated_at?: InputMaybe<Order_By>;
1409
+ };
1410
+ /** select columns of table "fx_rates" */
1411
+ export declare enum Fx_Rates_Select_Column {
1173
1412
  /** column name */
1174
- TaskQueue = "task_queue",
1413
+ Currency = "currency",
1175
1414
  /** column name */
1176
- WorkflowId = "workflow_id",
1415
+ Rate = "rate",
1177
1416
  /** column name */
1178
- WorkflowTypeName = "workflow_type_name"
1417
+ UpdatedAt = "updated_at"
1179
1418
  }
1180
- /** Streaming cursor of the table "executions_visibility" */
1181
- export type Executions_Visibility_Stream_Cursor_Input = {
1419
+ /** Streaming cursor of the table "fx_rates" */
1420
+ export type Fx_Rates_Stream_Cursor_Input = {
1182
1421
  /** Stream column input with initial value */
1183
- initial_value: Executions_Visibility_Stream_Cursor_Value_Input;
1422
+ initial_value: Fx_Rates_Stream_Cursor_Value_Input;
1184
1423
  /** cursor ordering */
1185
1424
  ordering?: InputMaybe<Cursor_Ordering>;
1186
1425
  };
1187
1426
  /** Initial value of the column from where the streaming should start */
1188
- export type Executions_Visibility_Stream_Cursor_Value_Input = {
1189
- close_time?: InputMaybe<Scalars['timestamp']['input']>;
1190
- run_id?: InputMaybe<Scalars['bpchar']['input']>;
1191
- start_time?: InputMaybe<Scalars['timestamp']['input']>;
1192
- status?: InputMaybe<Scalars['Int']['input']>;
1193
- task_queue?: InputMaybe<Scalars['String']['input']>;
1194
- workflow_id?: InputMaybe<Scalars['String']['input']>;
1195
- workflow_type_name?: InputMaybe<Scalars['String']['input']>;
1427
+ export type Fx_Rates_Stream_Cursor_Value_Input = {
1428
+ currency?: InputMaybe<Scalars['String']['input']>;
1429
+ rate?: InputMaybe<Scalars['numeric']['input']>;
1430
+ updated_at?: InputMaybe<Scalars['timestamptz']['input']>;
1196
1431
  };
1197
1432
  export type Get_My_Referrals_Output = {
1198
1433
  __typename?: 'get_my_referrals_output';
@@ -1283,6 +1518,68 @@ export type Locales_Stream_Cursor_Value_Input = {
1283
1518
  native_name?: InputMaybe<Scalars['String']['input']>;
1284
1519
  sort_order?: InputMaybe<Scalars['Int']['input']>;
1285
1520
  };
1521
+ /** Indicative local display prices for current public plans and credit packs. Provider quotes remain authoritative for settlement. */
1522
+ export type Localized_Product_Prices = {
1523
+ __typename?: 'localized_product_prices';
1524
+ converted_price?: Maybe<Scalars['numeric']['output']>;
1525
+ country?: Maybe<Scalars['String']['output']>;
1526
+ currency?: Maybe<Scalars['String']['output']>;
1527
+ product_kind?: Maybe<Scalars['String']['output']>;
1528
+ product_slug?: Maybe<Scalars['String']['output']>;
1529
+ usd_price_cents?: Maybe<Scalars['Int']['output']>;
1530
+ };
1531
+ /** Boolean expression to filter rows from the table "localized_product_prices". All fields are combined with a logical 'AND'. */
1532
+ export type Localized_Product_Prices_Bool_Exp = {
1533
+ _and?: InputMaybe<Array<Localized_Product_Prices_Bool_Exp>>;
1534
+ _not?: InputMaybe<Localized_Product_Prices_Bool_Exp>;
1535
+ _or?: InputMaybe<Array<Localized_Product_Prices_Bool_Exp>>;
1536
+ converted_price?: InputMaybe<Numeric_Comparison_Exp>;
1537
+ country?: InputMaybe<String_Comparison_Exp>;
1538
+ currency?: InputMaybe<String_Comparison_Exp>;
1539
+ product_kind?: InputMaybe<String_Comparison_Exp>;
1540
+ product_slug?: InputMaybe<String_Comparison_Exp>;
1541
+ usd_price_cents?: InputMaybe<Int_Comparison_Exp>;
1542
+ };
1543
+ /** Ordering options when selecting data from "localized_product_prices". */
1544
+ export type Localized_Product_Prices_Order_By = {
1545
+ converted_price?: InputMaybe<Order_By>;
1546
+ country?: InputMaybe<Order_By>;
1547
+ currency?: InputMaybe<Order_By>;
1548
+ product_kind?: InputMaybe<Order_By>;
1549
+ product_slug?: InputMaybe<Order_By>;
1550
+ usd_price_cents?: InputMaybe<Order_By>;
1551
+ };
1552
+ /** select columns of table "localized_product_prices" */
1553
+ export declare enum Localized_Product_Prices_Select_Column {
1554
+ /** column name */
1555
+ ConvertedPrice = "converted_price",
1556
+ /** column name */
1557
+ Country = "country",
1558
+ /** column name */
1559
+ Currency = "currency",
1560
+ /** column name */
1561
+ ProductKind = "product_kind",
1562
+ /** column name */
1563
+ ProductSlug = "product_slug",
1564
+ /** column name */
1565
+ UsdPriceCents = "usd_price_cents"
1566
+ }
1567
+ /** Streaming cursor of the table "localized_product_prices" */
1568
+ export type Localized_Product_Prices_Stream_Cursor_Input = {
1569
+ /** Stream column input with initial value */
1570
+ initial_value: Localized_Product_Prices_Stream_Cursor_Value_Input;
1571
+ /** cursor ordering */
1572
+ ordering?: InputMaybe<Cursor_Ordering>;
1573
+ };
1574
+ /** Initial value of the column from where the streaming should start */
1575
+ export type Localized_Product_Prices_Stream_Cursor_Value_Input = {
1576
+ converted_price?: InputMaybe<Scalars['numeric']['input']>;
1577
+ country?: InputMaybe<Scalars['String']['input']>;
1578
+ currency?: InputMaybe<Scalars['String']['input']>;
1579
+ product_kind?: InputMaybe<Scalars['String']['input']>;
1580
+ product_slug?: InputMaybe<Scalars['String']['input']>;
1581
+ usd_price_cents?: InputMaybe<Scalars['Int']['input']>;
1582
+ };
1286
1583
  export type Logout_Output = {
1287
1584
  __typename?: 'logout_output';
1288
1585
  success: Scalars['Boolean']['output'];
@@ -1435,15 +1732,20 @@ export type Models = {
1435
1732
  capabilities: Array<Model_Capabilities>;
1436
1733
  description: Scalars['String']['output'];
1437
1734
  featured: Scalars['Boolean']['output'];
1735
+ icon_url?: Maybe<Scalars['String']['output']>;
1438
1736
  is_active: Scalars['Boolean']['output'];
1439
1737
  label: Scalars['String']['output'];
1440
1738
  long_description?: Maybe<Scalars['String']['output']>;
1739
+ max_input_images?: Maybe<Scalars['Int']['output']>;
1441
1740
  /** An array relationship */
1442
1741
  pipeline_models: Array<Pipeline_Models>;
1742
+ poster_url?: Maybe<Scalars['String']['output']>;
1443
1743
  provider: Scalars['String']['output'];
1444
1744
  /** An object relationship */
1445
1745
  provider_info: Providers;
1446
1746
  public_name?: Maybe<Scalars['String']['output']>;
1747
+ /** Pipe2 editorial output-quality score. NULL means not yet assessed. */
1748
+ quality_score?: Maybe<Scalars['smallint']['output']>;
1447
1749
  slug: Scalars['String']['output'];
1448
1750
  sort_order: Scalars['Int']['output'];
1449
1751
  /** An array relationship */
@@ -1482,13 +1784,17 @@ export type Models_Bool_Exp = {
1482
1784
  capabilities?: InputMaybe<Model_Capabilities_Bool_Exp>;
1483
1785
  description?: InputMaybe<String_Comparison_Exp>;
1484
1786
  featured?: InputMaybe<Boolean_Comparison_Exp>;
1787
+ icon_url?: InputMaybe<String_Comparison_Exp>;
1485
1788
  is_active?: InputMaybe<Boolean_Comparison_Exp>;
1486
1789
  label?: InputMaybe<String_Comparison_Exp>;
1487
1790
  long_description?: InputMaybe<String_Comparison_Exp>;
1791
+ max_input_images?: InputMaybe<Int_Comparison_Exp>;
1488
1792
  pipeline_models?: InputMaybe<Pipeline_Models_Bool_Exp>;
1793
+ poster_url?: InputMaybe<String_Comparison_Exp>;
1489
1794
  provider?: InputMaybe<String_Comparison_Exp>;
1490
1795
  provider_info?: InputMaybe<Providers_Bool_Exp>;
1491
1796
  public_name?: InputMaybe<String_Comparison_Exp>;
1797
+ quality_score?: InputMaybe<Smallint_Comparison_Exp>;
1492
1798
  slug?: InputMaybe<String_Comparison_Exp>;
1493
1799
  sort_order?: InputMaybe<Int_Comparison_Exp>;
1494
1800
  translations?: InputMaybe<Model_Translations_Bool_Exp>;
@@ -1499,13 +1805,17 @@ export type Models_Order_By = {
1499
1805
  capabilities_aggregate?: InputMaybe<Model_Capabilities_Aggregate_Order_By>;
1500
1806
  description?: InputMaybe<Order_By>;
1501
1807
  featured?: InputMaybe<Order_By>;
1808
+ icon_url?: InputMaybe<Order_By>;
1502
1809
  is_active?: InputMaybe<Order_By>;
1503
1810
  label?: InputMaybe<Order_By>;
1504
1811
  long_description?: InputMaybe<Order_By>;
1812
+ max_input_images?: InputMaybe<Order_By>;
1505
1813
  pipeline_models_aggregate?: InputMaybe<Pipeline_Models_Aggregate_Order_By>;
1814
+ poster_url?: InputMaybe<Order_By>;
1506
1815
  provider?: InputMaybe<Order_By>;
1507
1816
  provider_info?: InputMaybe<Providers_Order_By>;
1508
1817
  public_name?: InputMaybe<Order_By>;
1818
+ quality_score?: InputMaybe<Order_By>;
1509
1819
  slug?: InputMaybe<Order_By>;
1510
1820
  sort_order?: InputMaybe<Order_By>;
1511
1821
  translations_aggregate?: InputMaybe<Model_Translations_Aggregate_Order_By>;
@@ -1519,16 +1829,24 @@ export declare enum Models_Select_Column {
1519
1829
  /** column name */
1520
1830
  Featured = "featured",
1521
1831
  /** column name */
1832
+ IconUrl = "icon_url",
1833
+ /** column name */
1522
1834
  IsActive = "is_active",
1523
1835
  /** column name */
1524
1836
  Label = "label",
1525
1837
  /** column name */
1526
1838
  LongDescription = "long_description",
1527
1839
  /** column name */
1840
+ MaxInputImages = "max_input_images",
1841
+ /** column name */
1842
+ PosterUrl = "poster_url",
1843
+ /** column name */
1528
1844
  Provider = "provider",
1529
1845
  /** column name */
1530
1846
  PublicName = "public_name",
1531
1847
  /** column name */
1848
+ QualityScore = "quality_score",
1849
+ /** column name */
1532
1850
  Slug = "slug",
1533
1851
  /** column name */
1534
1852
  SortOrder = "sort_order"
@@ -1545,11 +1863,16 @@ export type Models_Stream_Cursor_Value_Input = {
1545
1863
  aliases?: InputMaybe<Array<Scalars['String']['input']>>;
1546
1864
  description?: InputMaybe<Scalars['String']['input']>;
1547
1865
  featured?: InputMaybe<Scalars['Boolean']['input']>;
1866
+ icon_url?: InputMaybe<Scalars['String']['input']>;
1548
1867
  is_active?: InputMaybe<Scalars['Boolean']['input']>;
1549
1868
  label?: InputMaybe<Scalars['String']['input']>;
1550
1869
  long_description?: InputMaybe<Scalars['String']['input']>;
1870
+ max_input_images?: InputMaybe<Scalars['Int']['input']>;
1871
+ poster_url?: InputMaybe<Scalars['String']['input']>;
1551
1872
  provider?: InputMaybe<Scalars['String']['input']>;
1552
1873
  public_name?: InputMaybe<Scalars['String']['input']>;
1874
+ /** Pipe2 editorial output-quality score. NULL means not yet assessed. */
1875
+ quality_score?: InputMaybe<Scalars['smallint']['input']>;
1553
1876
  slug?: InputMaybe<Scalars['String']['input']>;
1554
1877
  sort_order?: InputMaybe<Scalars['Int']['input']>;
1555
1878
  };
@@ -1575,6 +1898,8 @@ export type Mutation_Root = {
1575
1898
  cancel_pipeline_run?: Maybe<Cancel_Pipeline_Run_Output>;
1576
1899
  /** Cancel your subscription at the end of the current billing period */
1577
1900
  cancel_subscription: Cancel_Subscription_Output;
1901
+ /** Cancel the current user's pending downgrade */
1902
+ cancel_subscription_plan_change: Cancel_Subscription_Plan_Change_Output;
1578
1903
  /** Update your profile picture */
1579
1904
  change_avatar: Change_Avatar_Output;
1580
1905
  /** Update your display name */
@@ -1587,8 +1912,10 @@ export type Mutation_Root = {
1587
1912
  confirm_account_deletion: Confirm_Account_Deletion_Output;
1588
1913
  /** Register an uploaded file as an asset */
1589
1914
  create_asset: Create_Asset_Output;
1590
- /** Create a Whop checkout session with the buyer's user_id baked into metadata */
1591
- create_checkout_session: Create_Checkout_Session_Output;
1915
+ /** Create a short-lived, PKCE-bound authentication handoff code */
1916
+ create_auth_handoff_code: Create_Auth_Handoff_Code_Output;
1917
+ /** Create a payment through the selected provider */
1918
+ create_payment: Payment_Output;
1592
1919
  /** Create a personal access token for API and MCP access */
1593
1920
  create_personal_access_token: Create_Personal_Access_Token_Output;
1594
1921
  /** Delete an asset */
@@ -1599,6 +1926,8 @@ export type Mutation_Root = {
1599
1926
  delete_notifications_by_pk?: Maybe<Notifications>;
1600
1927
  /** Create an affiliate profile and referral code for the current user if missing */
1601
1928
  ensure_affiliate: Ensure_Affiliate_Output;
1929
+ /** Exchange a one-time authentication handoff code */
1930
+ exchange_auth_handoff_code: Exchange_Auth_Handoff_Code_Output;
1602
1931
  /** Begin email verification */
1603
1932
  init_verification_flow: Auth_Flow;
1604
1933
  /** Sign in with email and password */
@@ -1623,6 +1952,8 @@ export type Mutation_Root = {
1623
1952
  revoke_personal_access_token: Revoke_Personal_Access_Token_Output;
1624
1953
  /** Start a pipeline run */
1625
1954
  run_pipeline?: Maybe<Run_Pipeline_Output>;
1955
+ /** Schedule a subscription downgrade for the next billing boundary */
1956
+ schedule_subscription_plan_change: Subscription_Plan_Change_Output;
1626
1957
  /** Submit an email verification code */
1627
1958
  submit_verification_code: Auth_Result;
1628
1959
  /** update data of the table: "affiliate_codes" */
@@ -1695,9 +2026,19 @@ export type Mutation_RootCreate_AssetArgs = {
1695
2026
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
1696
2027
  };
1697
2028
  /** mutation root */
1698
- export type Mutation_RootCreate_Checkout_SessionArgs = {
1699
- affiliate_code?: InputMaybe<Scalars['String']['input']>;
1700
- whop_plan_id: Scalars['String']['input'];
2029
+ export type Mutation_RootCreate_Auth_Handoff_CodeArgs = {
2030
+ code_challenge: Scalars['String']['input'];
2031
+ redirect_uri: Scalars['String']['input'];
2032
+ };
2033
+ /** mutation root */
2034
+ export type Mutation_RootCreate_PaymentArgs = {
2035
+ attempt_id: Scalars['uuid']['input'];
2036
+ country?: InputMaybe<Scalars['String']['input']>;
2037
+ credit_pack_slug?: InputMaybe<Scalars['String']['input']>;
2038
+ currency_id?: InputMaybe<Scalars['String']['input']>;
2039
+ plan_slug?: InputMaybe<Scalars['String']['input']>;
2040
+ provider: Scalars['String']['input'];
2041
+ recurring_consent?: InputMaybe<Scalars['Boolean']['input']>;
1701
2042
  };
1702
2043
  /** mutation root */
1703
2044
  export type Mutation_RootCreate_Personal_Access_TokenArgs = {
@@ -1716,6 +2057,12 @@ export type Mutation_RootDelete_Notifications_By_PkArgs = {
1716
2057
  id: Scalars['uuid']['input'];
1717
2058
  };
1718
2059
  /** mutation root */
2060
+ export type Mutation_RootExchange_Auth_Handoff_CodeArgs = {
2061
+ code: Scalars['String']['input'];
2062
+ code_verifier: Scalars['String']['input'];
2063
+ redirect_uri: Scalars['String']['input'];
2064
+ };
2065
+ /** mutation root */
1719
2066
  export type Mutation_RootInit_Verification_FlowArgs = {
1720
2067
  email?: InputMaybe<Scalars['String']['input']>;
1721
2068
  force?: InputMaybe<Scalars['Boolean']['input']>;
@@ -1770,6 +2117,10 @@ export type Mutation_RootRun_PipelineArgs = {
1770
2117
  pipeline_slug: Scalars['String']['input'];
1771
2118
  };
1772
2119
  /** mutation root */
2120
+ export type Mutation_RootSchedule_Subscription_Plan_ChangeArgs = {
2121
+ plan_slug: Scalars['String']['input'];
2122
+ };
2123
+ /** mutation root */
1773
2124
  export type Mutation_RootSubmit_Verification_CodeArgs = {
1774
2125
  code: Scalars['String']['input'];
1775
2126
  csrf_token: Scalars['String']['input'];
@@ -1988,72 +2339,263 @@ export declare enum Order_By {
1988
2339
  /** in descending order, nulls last */
1989
2340
  DescNullsLast = "desc_nulls_last"
1990
2341
  }
1991
- /** columns and relationships of "personal_access_tokens" */
1992
- export type Personal_Access_Tokens = {
1993
- __typename?: 'personal_access_tokens';
1994
- created_at: Scalars['timestamptz']['output'];
1995
- expires_at: Scalars['timestamptz']['output'];
1996
- id: Scalars['uuid']['output'];
1997
- last_used_at?: Maybe<Scalars['timestamptz']['output']>;
1998
- name: Scalars['String']['output'];
1999
- revoked_at?: Maybe<Scalars['timestamptz']['output']>;
2000
- scopes: Array<Scalars['String']['output']>;
2342
+ export type Payment_Output = {
2343
+ __typename?: 'payment_output';
2344
+ amount: Scalars['String']['output'];
2345
+ amount_paid_usdt?: Maybe<Scalars['Float']['output']>;
2346
+ asset?: Maybe<Scalars['String']['output']>;
2347
+ confirmations?: Maybe<Scalars['Int']['output']>;
2348
+ created_at?: Maybe<Scalars['String']['output']>;
2349
+ credits: Scalars['Float']['output'];
2350
+ currency?: Maybe<Scalars['String']['output']>;
2351
+ currency_id?: Maybe<Scalars['String']['output']>;
2352
+ deposit_address?: Maybe<Scalars['String']['output']>;
2353
+ detail?: Maybe<Scalars['String']['output']>;
2354
+ expected_usdt?: Maybe<Scalars['Float']['output']>;
2355
+ expires_at: Scalars['String']['output'];
2356
+ granted_at?: Maybe<Scalars['String']['output']>;
2357
+ kind?: Maybe<Scalars['String']['output']>;
2358
+ network?: Maybe<Scalars['String']['output']>;
2359
+ payment_id: Scalars['String']['output'];
2360
+ payment_uri?: Maybe<Scalars['String']['output']>;
2361
+ provider: Scalars['String']['output'];
2362
+ qr_code_data_url?: Maybe<Scalars['String']['output']>;
2363
+ remaining_amount?: Maybe<Scalars['String']['output']>;
2364
+ required_confirmations?: Maybe<Scalars['Int']['output']>;
2365
+ status: Scalars['String']['output'];
2366
+ success: Scalars['Boolean']['output'];
2367
+ top_up_payment_uri?: Maybe<Scalars['String']['output']>;
2368
+ top_up_qr_code_data_url?: Maybe<Scalars['String']['output']>;
2369
+ tx_hash?: Maybe<Scalars['String']['output']>;
2001
2370
  };
2002
- /** Boolean expression to filter rows from the table "personal_access_tokens". All fields are combined with a logical 'AND'. */
2003
- export type Personal_Access_Tokens_Bool_Exp = {
2004
- _and?: InputMaybe<Array<Personal_Access_Tokens_Bool_Exp>>;
2005
- _not?: InputMaybe<Personal_Access_Tokens_Bool_Exp>;
2006
- _or?: InputMaybe<Array<Personal_Access_Tokens_Bool_Exp>>;
2007
- created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2008
- expires_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2009
- id?: InputMaybe<Uuid_Comparison_Exp>;
2010
- last_used_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2011
- name?: InputMaybe<String_Comparison_Exp>;
2012
- revoked_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2013
- scopes?: InputMaybe<String_Array_Comparison_Exp>;
2371
+ /** columns and relationships of "payment_provider_resolved_row" */
2372
+ export type Payment_Provider_Resolved_Row = {
2373
+ __typename?: 'payment_provider_resolved_row';
2374
+ description?: Maybe<Scalars['String']['output']>;
2375
+ fee_bps?: Maybe<Scalars['Int']['output']>;
2376
+ kind?: Maybe<Scalars['String']['output']>;
2377
+ label?: Maybe<Scalars['String']['output']>;
2378
+ price_source?: Maybe<Scalars['String']['output']>;
2379
+ slug?: Maybe<Scalars['String']['output']>;
2380
+ sort_order?: Maybe<Scalars['Int']['output']>;
2381
+ supports_recurring?: Maybe<Scalars['Boolean']['output']>;
2382
+ };
2383
+ /** Boolean expression to filter rows from the table "payment_provider_resolved_row". All fields are combined with a logical 'AND'. */
2384
+ export type Payment_Provider_Resolved_Row_Bool_Exp = {
2385
+ _and?: InputMaybe<Array<Payment_Provider_Resolved_Row_Bool_Exp>>;
2386
+ _not?: InputMaybe<Payment_Provider_Resolved_Row_Bool_Exp>;
2387
+ _or?: InputMaybe<Array<Payment_Provider_Resolved_Row_Bool_Exp>>;
2388
+ description?: InputMaybe<String_Comparison_Exp>;
2389
+ fee_bps?: InputMaybe<Int_Comparison_Exp>;
2390
+ kind?: InputMaybe<String_Comparison_Exp>;
2391
+ label?: InputMaybe<String_Comparison_Exp>;
2392
+ price_source?: InputMaybe<String_Comparison_Exp>;
2393
+ slug?: InputMaybe<String_Comparison_Exp>;
2394
+ sort_order?: InputMaybe<Int_Comparison_Exp>;
2395
+ supports_recurring?: InputMaybe<Boolean_Comparison_Exp>;
2014
2396
  };
2015
- /** Ordering options when selecting data from "personal_access_tokens". */
2016
- export type Personal_Access_Tokens_Order_By = {
2017
- created_at?: InputMaybe<Order_By>;
2018
- expires_at?: InputMaybe<Order_By>;
2019
- id?: InputMaybe<Order_By>;
2020
- last_used_at?: InputMaybe<Order_By>;
2021
- name?: InputMaybe<Order_By>;
2022
- revoked_at?: InputMaybe<Order_By>;
2023
- scopes?: InputMaybe<Order_By>;
2397
+ /** Ordering options when selecting data from "payment_provider_resolved_row". */
2398
+ export type Payment_Provider_Resolved_Row_Order_By = {
2399
+ description?: InputMaybe<Order_By>;
2400
+ fee_bps?: InputMaybe<Order_By>;
2401
+ kind?: InputMaybe<Order_By>;
2402
+ label?: InputMaybe<Order_By>;
2403
+ price_source?: InputMaybe<Order_By>;
2404
+ slug?: InputMaybe<Order_By>;
2405
+ sort_order?: InputMaybe<Order_By>;
2406
+ supports_recurring?: InputMaybe<Order_By>;
2024
2407
  };
2025
- /** select columns of table "personal_access_tokens" */
2026
- export declare enum Personal_Access_Tokens_Select_Column {
2408
+ /** select columns of table "payment_provider_resolved_row" */
2409
+ export declare enum Payment_Provider_Resolved_Row_Select_Column {
2027
2410
  /** column name */
2028
- CreatedAt = "created_at",
2411
+ Description = "description",
2029
2412
  /** column name */
2030
- ExpiresAt = "expires_at",
2413
+ FeeBps = "fee_bps",
2031
2414
  /** column name */
2032
- Id = "id",
2415
+ Kind = "kind",
2033
2416
  /** column name */
2034
- LastUsedAt = "last_used_at",
2417
+ Label = "label",
2035
2418
  /** column name */
2036
- Name = "name",
2419
+ PriceSource = "price_source",
2037
2420
  /** column name */
2038
- RevokedAt = "revoked_at",
2421
+ Slug = "slug",
2039
2422
  /** column name */
2040
- Scopes = "scopes"
2423
+ SortOrder = "sort_order",
2424
+ /** column name */
2425
+ SupportsRecurring = "supports_recurring"
2041
2426
  }
2042
- /** Streaming cursor of the table "personal_access_tokens" */
2043
- export type Personal_Access_Tokens_Stream_Cursor_Input = {
2427
+ /** Streaming cursor of the table "payment_provider_resolved_row" */
2428
+ export type Payment_Provider_Resolved_Row_Stream_Cursor_Input = {
2044
2429
  /** Stream column input with initial value */
2045
- initial_value: Personal_Access_Tokens_Stream_Cursor_Value_Input;
2430
+ initial_value: Payment_Provider_Resolved_Row_Stream_Cursor_Value_Input;
2046
2431
  /** cursor ordering */
2047
2432
  ordering?: InputMaybe<Cursor_Ordering>;
2048
2433
  };
2049
2434
  /** Initial value of the column from where the streaming should start */
2050
- export type Personal_Access_Tokens_Stream_Cursor_Value_Input = {
2051
- created_at?: InputMaybe<Scalars['timestamptz']['input']>;
2052
- expires_at?: InputMaybe<Scalars['timestamptz']['input']>;
2053
- id?: InputMaybe<Scalars['uuid']['input']>;
2054
- last_used_at?: InputMaybe<Scalars['timestamptz']['input']>;
2055
- name?: InputMaybe<Scalars['String']['input']>;
2056
- revoked_at?: InputMaybe<Scalars['timestamptz']['input']>;
2435
+ export type Payment_Provider_Resolved_Row_Stream_Cursor_Value_Input = {
2436
+ description?: InputMaybe<Scalars['String']['input']>;
2437
+ fee_bps?: InputMaybe<Scalars['Int']['input']>;
2438
+ kind?: InputMaybe<Scalars['String']['input']>;
2439
+ label?: InputMaybe<Scalars['String']['input']>;
2440
+ price_source?: InputMaybe<Scalars['String']['input']>;
2441
+ slug?: InputMaybe<Scalars['String']['input']>;
2442
+ sort_order?: InputMaybe<Scalars['Int']['input']>;
2443
+ supports_recurring?: InputMaybe<Scalars['Boolean']['input']>;
2444
+ };
2445
+ /** columns and relationships of "payment_providers" */
2446
+ export type Payment_Providers = {
2447
+ __typename?: 'payment_providers';
2448
+ description?: Maybe<Scalars['String']['output']>;
2449
+ enabled: Scalars['Boolean']['output'];
2450
+ /** Signed basis points applied to the base price: -300 = 3% discount, 1500 = 15% surcharge. */
2451
+ fee_bps: Scalars['Int']['output'];
2452
+ kind: Scalars['String']['output'];
2453
+ label: Scalars['String']['output'];
2454
+ price_source: Scalars['String']['output'];
2455
+ slug: Scalars['String']['output'];
2456
+ sort_order: Scalars['Int']['output'];
2457
+ /** Provider integration can automatically renew subscriptions. One-time packs do not require this capability. */
2458
+ supports_recurring: Scalars['Boolean']['output'];
2459
+ };
2460
+ /** Boolean expression to filter rows from the table "payment_providers". All fields are combined with a logical 'AND'. */
2461
+ export type Payment_Providers_Bool_Exp = {
2462
+ _and?: InputMaybe<Array<Payment_Providers_Bool_Exp>>;
2463
+ _not?: InputMaybe<Payment_Providers_Bool_Exp>;
2464
+ _or?: InputMaybe<Array<Payment_Providers_Bool_Exp>>;
2465
+ description?: InputMaybe<String_Comparison_Exp>;
2466
+ enabled?: InputMaybe<Boolean_Comparison_Exp>;
2467
+ fee_bps?: InputMaybe<Int_Comparison_Exp>;
2468
+ kind?: InputMaybe<String_Comparison_Exp>;
2469
+ label?: InputMaybe<String_Comparison_Exp>;
2470
+ price_source?: InputMaybe<String_Comparison_Exp>;
2471
+ slug?: InputMaybe<String_Comparison_Exp>;
2472
+ sort_order?: InputMaybe<Int_Comparison_Exp>;
2473
+ supports_recurring?: InputMaybe<Boolean_Comparison_Exp>;
2474
+ };
2475
+ /** Ordering options when selecting data from "payment_providers". */
2476
+ export type Payment_Providers_Order_By = {
2477
+ description?: InputMaybe<Order_By>;
2478
+ enabled?: InputMaybe<Order_By>;
2479
+ fee_bps?: InputMaybe<Order_By>;
2480
+ kind?: InputMaybe<Order_By>;
2481
+ label?: InputMaybe<Order_By>;
2482
+ price_source?: InputMaybe<Order_By>;
2483
+ slug?: InputMaybe<Order_By>;
2484
+ sort_order?: InputMaybe<Order_By>;
2485
+ supports_recurring?: InputMaybe<Order_By>;
2486
+ };
2487
+ /** select columns of table "payment_providers" */
2488
+ export declare enum Payment_Providers_Select_Column {
2489
+ /** column name */
2490
+ Description = "description",
2491
+ /** column name */
2492
+ Enabled = "enabled",
2493
+ /** column name */
2494
+ FeeBps = "fee_bps",
2495
+ /** column name */
2496
+ Kind = "kind",
2497
+ /** column name */
2498
+ Label = "label",
2499
+ /** column name */
2500
+ PriceSource = "price_source",
2501
+ /** column name */
2502
+ Slug = "slug",
2503
+ /** column name */
2504
+ SortOrder = "sort_order",
2505
+ /** column name */
2506
+ SupportsRecurring = "supports_recurring"
2507
+ }
2508
+ /** Streaming cursor of the table "payment_providers" */
2509
+ export type Payment_Providers_Stream_Cursor_Input = {
2510
+ /** Stream column input with initial value */
2511
+ initial_value: Payment_Providers_Stream_Cursor_Value_Input;
2512
+ /** cursor ordering */
2513
+ ordering?: InputMaybe<Cursor_Ordering>;
2514
+ };
2515
+ /** Initial value of the column from where the streaming should start */
2516
+ export type Payment_Providers_Stream_Cursor_Value_Input = {
2517
+ description?: InputMaybe<Scalars['String']['input']>;
2518
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
2519
+ /** Signed basis points applied to the base price: -300 = 3% discount, 1500 = 15% surcharge. */
2520
+ fee_bps?: InputMaybe<Scalars['Int']['input']>;
2521
+ kind?: InputMaybe<Scalars['String']['input']>;
2522
+ label?: InputMaybe<Scalars['String']['input']>;
2523
+ price_source?: InputMaybe<Scalars['String']['input']>;
2524
+ slug?: InputMaybe<Scalars['String']['input']>;
2525
+ sort_order?: InputMaybe<Scalars['Int']['input']>;
2526
+ /** Provider integration can automatically renew subscriptions. One-time packs do not require this capability. */
2527
+ supports_recurring?: InputMaybe<Scalars['Boolean']['input']>;
2528
+ };
2529
+ /** columns and relationships of "personal_access_tokens" */
2530
+ export type Personal_Access_Tokens = {
2531
+ __typename?: 'personal_access_tokens';
2532
+ created_at: Scalars['timestamptz']['output'];
2533
+ expires_at: Scalars['timestamptz']['output'];
2534
+ id: Scalars['uuid']['output'];
2535
+ last_used_at?: Maybe<Scalars['timestamptz']['output']>;
2536
+ name: Scalars['String']['output'];
2537
+ revoked_at?: Maybe<Scalars['timestamptz']['output']>;
2538
+ scopes: Array<Scalars['String']['output']>;
2539
+ /** An object relationship */
2540
+ user: Users;
2541
+ };
2542
+ /** Boolean expression to filter rows from the table "personal_access_tokens". All fields are combined with a logical 'AND'. */
2543
+ export type Personal_Access_Tokens_Bool_Exp = {
2544
+ _and?: InputMaybe<Array<Personal_Access_Tokens_Bool_Exp>>;
2545
+ _not?: InputMaybe<Personal_Access_Tokens_Bool_Exp>;
2546
+ _or?: InputMaybe<Array<Personal_Access_Tokens_Bool_Exp>>;
2547
+ created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2548
+ expires_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2549
+ id?: InputMaybe<Uuid_Comparison_Exp>;
2550
+ last_used_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2551
+ name?: InputMaybe<String_Comparison_Exp>;
2552
+ revoked_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2553
+ scopes?: InputMaybe<String_Array_Comparison_Exp>;
2554
+ user?: InputMaybe<Users_Bool_Exp>;
2555
+ };
2556
+ /** Ordering options when selecting data from "personal_access_tokens". */
2557
+ export type Personal_Access_Tokens_Order_By = {
2558
+ created_at?: InputMaybe<Order_By>;
2559
+ expires_at?: InputMaybe<Order_By>;
2560
+ id?: InputMaybe<Order_By>;
2561
+ last_used_at?: InputMaybe<Order_By>;
2562
+ name?: InputMaybe<Order_By>;
2563
+ revoked_at?: InputMaybe<Order_By>;
2564
+ scopes?: InputMaybe<Order_By>;
2565
+ user?: InputMaybe<Users_Order_By>;
2566
+ };
2567
+ /** select columns of table "personal_access_tokens" */
2568
+ export declare enum Personal_Access_Tokens_Select_Column {
2569
+ /** column name */
2570
+ CreatedAt = "created_at",
2571
+ /** column name */
2572
+ ExpiresAt = "expires_at",
2573
+ /** column name */
2574
+ Id = "id",
2575
+ /** column name */
2576
+ LastUsedAt = "last_used_at",
2577
+ /** column name */
2578
+ Name = "name",
2579
+ /** column name */
2580
+ RevokedAt = "revoked_at",
2581
+ /** column name */
2582
+ Scopes = "scopes"
2583
+ }
2584
+ /** Streaming cursor of the table "personal_access_tokens" */
2585
+ export type Personal_Access_Tokens_Stream_Cursor_Input = {
2586
+ /** Stream column input with initial value */
2587
+ initial_value: Personal_Access_Tokens_Stream_Cursor_Value_Input;
2588
+ /** cursor ordering */
2589
+ ordering?: InputMaybe<Cursor_Ordering>;
2590
+ };
2591
+ /** Initial value of the column from where the streaming should start */
2592
+ export type Personal_Access_Tokens_Stream_Cursor_Value_Input = {
2593
+ created_at?: InputMaybe<Scalars['timestamptz']['input']>;
2594
+ expires_at?: InputMaybe<Scalars['timestamptz']['input']>;
2595
+ id?: InputMaybe<Scalars['uuid']['input']>;
2596
+ last_used_at?: InputMaybe<Scalars['timestamptz']['input']>;
2597
+ name?: InputMaybe<Scalars['String']['input']>;
2598
+ revoked_at?: InputMaybe<Scalars['timestamptz']['input']>;
2057
2599
  scopes?: InputMaybe<Array<Scalars['String']['input']>>;
2058
2600
  };
2059
2601
  /** columns and relationships of "pipeline_examples" */
@@ -2367,12 +2909,20 @@ export type Pipeline_Examples_Variance_Order_By = {
2367
2909
  /** columns and relationships of "pipeline_models" */
2368
2910
  export type Pipeline_Models = {
2369
2911
  __typename?: 'pipeline_models';
2912
+ auto_route_order?: Maybe<Scalars['Int']['output']>;
2913
+ input_schema: Scalars['jsonb']['output'];
2370
2914
  /** An object relationship */
2371
2915
  model: Models;
2372
2916
  model_slug: Scalars['String']['output'];
2917
+ /** An object relationship */
2918
+ pipeline: Pipelines;
2373
2919
  pipeline_slug: Scalars['String']['output'];
2374
2920
  sort_order: Scalars['Int']['output'];
2375
2921
  };
2922
+ /** columns and relationships of "pipeline_models" */
2923
+ export type Pipeline_ModelsInput_SchemaArgs = {
2924
+ path?: InputMaybe<Scalars['String']['input']>;
2925
+ };
2376
2926
  /** order by aggregate values of table "pipeline_models" */
2377
2927
  export type Pipeline_Models_Aggregate_Order_By = {
2378
2928
  avg?: InputMaybe<Pipeline_Models_Avg_Order_By>;
@@ -2389,6 +2939,7 @@ export type Pipeline_Models_Aggregate_Order_By = {
2389
2939
  };
2390
2940
  /** order by avg() on columns of table "pipeline_models" */
2391
2941
  export type Pipeline_Models_Avg_Order_By = {
2942
+ auto_route_order?: InputMaybe<Order_By>;
2392
2943
  sort_order?: InputMaybe<Order_By>;
2393
2944
  };
2394
2945
  /** Boolean expression to filter rows from the table "pipeline_models". All fields are combined with a logical 'AND'. */
@@ -2396,32 +2947,44 @@ export type Pipeline_Models_Bool_Exp = {
2396
2947
  _and?: InputMaybe<Array<Pipeline_Models_Bool_Exp>>;
2397
2948
  _not?: InputMaybe<Pipeline_Models_Bool_Exp>;
2398
2949
  _or?: InputMaybe<Array<Pipeline_Models_Bool_Exp>>;
2950
+ auto_route_order?: InputMaybe<Int_Comparison_Exp>;
2951
+ input_schema?: InputMaybe<Jsonb_Comparison_Exp>;
2399
2952
  model?: InputMaybe<Models_Bool_Exp>;
2400
2953
  model_slug?: InputMaybe<String_Comparison_Exp>;
2954
+ pipeline?: InputMaybe<Pipelines_Bool_Exp>;
2401
2955
  pipeline_slug?: InputMaybe<String_Comparison_Exp>;
2402
2956
  sort_order?: InputMaybe<Int_Comparison_Exp>;
2403
2957
  };
2404
2958
  /** order by max() on columns of table "pipeline_models" */
2405
2959
  export type Pipeline_Models_Max_Order_By = {
2960
+ auto_route_order?: InputMaybe<Order_By>;
2406
2961
  model_slug?: InputMaybe<Order_By>;
2407
2962
  pipeline_slug?: InputMaybe<Order_By>;
2408
2963
  sort_order?: InputMaybe<Order_By>;
2409
2964
  };
2410
2965
  /** order by min() on columns of table "pipeline_models" */
2411
2966
  export type Pipeline_Models_Min_Order_By = {
2967
+ auto_route_order?: InputMaybe<Order_By>;
2412
2968
  model_slug?: InputMaybe<Order_By>;
2413
2969
  pipeline_slug?: InputMaybe<Order_By>;
2414
2970
  sort_order?: InputMaybe<Order_By>;
2415
2971
  };
2416
2972
  /** Ordering options when selecting data from "pipeline_models". */
2417
2973
  export type Pipeline_Models_Order_By = {
2974
+ auto_route_order?: InputMaybe<Order_By>;
2975
+ input_schema?: InputMaybe<Order_By>;
2418
2976
  model?: InputMaybe<Models_Order_By>;
2419
2977
  model_slug?: InputMaybe<Order_By>;
2978
+ pipeline?: InputMaybe<Pipelines_Order_By>;
2420
2979
  pipeline_slug?: InputMaybe<Order_By>;
2421
2980
  sort_order?: InputMaybe<Order_By>;
2422
2981
  };
2423
2982
  /** select columns of table "pipeline_models" */
2424
2983
  export declare enum Pipeline_Models_Select_Column {
2984
+ /** column name */
2985
+ AutoRouteOrder = "auto_route_order",
2986
+ /** column name */
2987
+ InputSchema = "input_schema",
2425
2988
  /** column name */
2426
2989
  ModelSlug = "model_slug",
2427
2990
  /** column name */
@@ -2431,14 +2994,17 @@ export declare enum Pipeline_Models_Select_Column {
2431
2994
  }
2432
2995
  /** order by stddev() on columns of table "pipeline_models" */
2433
2996
  export type Pipeline_Models_Stddev_Order_By = {
2997
+ auto_route_order?: InputMaybe<Order_By>;
2434
2998
  sort_order?: InputMaybe<Order_By>;
2435
2999
  };
2436
3000
  /** order by stddev_pop() on columns of table "pipeline_models" */
2437
3001
  export type Pipeline_Models_Stddev_Pop_Order_By = {
3002
+ auto_route_order?: InputMaybe<Order_By>;
2438
3003
  sort_order?: InputMaybe<Order_By>;
2439
3004
  };
2440
3005
  /** order by stddev_samp() on columns of table "pipeline_models" */
2441
3006
  export type Pipeline_Models_Stddev_Samp_Order_By = {
3007
+ auto_route_order?: InputMaybe<Order_By>;
2442
3008
  sort_order?: InputMaybe<Order_By>;
2443
3009
  };
2444
3010
  /** Streaming cursor of the table "pipeline_models" */
@@ -2450,24 +3016,30 @@ export type Pipeline_Models_Stream_Cursor_Input = {
2450
3016
  };
2451
3017
  /** Initial value of the column from where the streaming should start */
2452
3018
  export type Pipeline_Models_Stream_Cursor_Value_Input = {
3019
+ auto_route_order?: InputMaybe<Scalars['Int']['input']>;
3020
+ input_schema?: InputMaybe<Scalars['jsonb']['input']>;
2453
3021
  model_slug?: InputMaybe<Scalars['String']['input']>;
2454
3022
  pipeline_slug?: InputMaybe<Scalars['String']['input']>;
2455
3023
  sort_order?: InputMaybe<Scalars['Int']['input']>;
2456
3024
  };
2457
3025
  /** order by sum() on columns of table "pipeline_models" */
2458
3026
  export type Pipeline_Models_Sum_Order_By = {
3027
+ auto_route_order?: InputMaybe<Order_By>;
2459
3028
  sort_order?: InputMaybe<Order_By>;
2460
3029
  };
2461
3030
  /** order by var_pop() on columns of table "pipeline_models" */
2462
3031
  export type Pipeline_Models_Var_Pop_Order_By = {
3032
+ auto_route_order?: InputMaybe<Order_By>;
2463
3033
  sort_order?: InputMaybe<Order_By>;
2464
3034
  };
2465
3035
  /** order by var_samp() on columns of table "pipeline_models" */
2466
3036
  export type Pipeline_Models_Var_Samp_Order_By = {
3037
+ auto_route_order?: InputMaybe<Order_By>;
2467
3038
  sort_order?: InputMaybe<Order_By>;
2468
3039
  };
2469
3040
  /** order by variance() on columns of table "pipeline_models" */
2470
3041
  export type Pipeline_Models_Variance_Order_By = {
3042
+ auto_route_order?: InputMaybe<Order_By>;
2471
3043
  sort_order?: InputMaybe<Order_By>;
2472
3044
  };
2473
3045
  export type Pipeline_Pricing_Row = {
@@ -2499,6 +3071,8 @@ export type Pipeline_Runs = {
2499
3071
  started_at?: Maybe<Scalars['timestamptz']['output']>;
2500
3072
  status: Scalars['String']['output'];
2501
3073
  temporal_workflow_id?: Maybe<Scalars['String']['output']>;
3074
+ /** An object relationship */
3075
+ user: Users;
2502
3076
  workflow_execution?: Maybe<Executions_Visibility>;
2503
3077
  };
2504
3078
  /** columns and relationships of "pipeline_runs" */
@@ -2577,6 +3151,7 @@ export type Pipeline_Runs_Bool_Exp = {
2577
3151
  started_at?: InputMaybe<Timestamptz_Comparison_Exp>;
2578
3152
  status?: InputMaybe<String_Comparison_Exp>;
2579
3153
  temporal_workflow_id?: InputMaybe<String_Comparison_Exp>;
3154
+ user?: InputMaybe<Users_Bool_Exp>;
2580
3155
  };
2581
3156
  /** aggregate max on columns */
2582
3157
  export type Pipeline_Runs_Max_Fields = {
@@ -2631,6 +3206,7 @@ export type Pipeline_Runs_Order_By = {
2631
3206
  started_at?: InputMaybe<Order_By>;
2632
3207
  status?: InputMaybe<Order_By>;
2633
3208
  temporal_workflow_id?: InputMaybe<Order_By>;
3209
+ user?: InputMaybe<Users_Order_By>;
2634
3210
  };
2635
3211
  /** primary key columns input for table: pipeline_runs */
2636
3212
  export type Pipeline_Runs_Pk_Columns_Input = {
@@ -2928,6 +3504,37 @@ export type PipelinesTranslationsArgs = {
2928
3504
  export type PipelinesUi_SchemaArgs = {
2929
3505
  path?: InputMaybe<Scalars['String']['input']>;
2930
3506
  };
3507
+ /** aggregated selection of "pipelines" */
3508
+ export type Pipelines_Aggregate = {
3509
+ __typename?: 'pipelines_aggregate';
3510
+ aggregate?: Maybe<Pipelines_Aggregate_Fields>;
3511
+ nodes: Array<Pipelines>;
3512
+ };
3513
+ /** aggregate fields of "pipelines" */
3514
+ export type Pipelines_Aggregate_Fields = {
3515
+ __typename?: 'pipelines_aggregate_fields';
3516
+ avg?: Maybe<Pipelines_Avg_Fields>;
3517
+ count: Scalars['Int']['output'];
3518
+ max?: Maybe<Pipelines_Max_Fields>;
3519
+ min?: Maybe<Pipelines_Min_Fields>;
3520
+ stddev?: Maybe<Pipelines_Stddev_Fields>;
3521
+ stddev_pop?: Maybe<Pipelines_Stddev_Pop_Fields>;
3522
+ stddev_samp?: Maybe<Pipelines_Stddev_Samp_Fields>;
3523
+ sum?: Maybe<Pipelines_Sum_Fields>;
3524
+ var_pop?: Maybe<Pipelines_Var_Pop_Fields>;
3525
+ var_samp?: Maybe<Pipelines_Var_Samp_Fields>;
3526
+ variance?: Maybe<Pipelines_Variance_Fields>;
3527
+ };
3528
+ /** aggregate fields of "pipelines" */
3529
+ export type Pipelines_Aggregate_FieldsCountArgs = {
3530
+ columns?: InputMaybe<Array<Pipelines_Select_Column>>;
3531
+ distinct?: InputMaybe<Scalars['Boolean']['input']>;
3532
+ };
3533
+ /** aggregate avg on columns */
3534
+ export type Pipelines_Avg_Fields = {
3535
+ __typename?: 'pipelines_avg_fields';
3536
+ sort_order?: Maybe<Scalars['Float']['output']>;
3537
+ };
2931
3538
  /** Boolean expression to filter rows from the table "pipelines". All fields are combined with a logical 'AND'. */
2932
3539
  export type Pipelines_Bool_Exp = {
2933
3540
  _and?: InputMaybe<Array<Pipelines_Bool_Exp>>;
@@ -2956,6 +3563,38 @@ export type Pipelines_Bool_Exp = {
2956
3563
  translations?: InputMaybe<Pipeline_Translations_Bool_Exp>;
2957
3564
  ui_schema?: InputMaybe<Jsonb_Comparison_Exp>;
2958
3565
  };
3566
+ /** aggregate max on columns */
3567
+ export type Pipelines_Max_Fields = {
3568
+ __typename?: 'pipelines_max_fields';
3569
+ category?: Maybe<Scalars['String']['output']>;
3570
+ description?: Maybe<Scalars['String']['output']>;
3571
+ icon_url?: Maybe<Scalars['String']['output']>;
3572
+ id?: Maybe<Scalars['uuid']['output']>;
3573
+ models?: Maybe<Array<Scalars['String']['output']>>;
3574
+ name?: Maybe<Scalars['String']['output']>;
3575
+ preview_url?: Maybe<Scalars['String']['output']>;
3576
+ providers?: Maybe<Array<Scalars['String']['output']>>;
3577
+ seo_content?: Maybe<Scalars['String']['output']>;
3578
+ slug?: Maybe<Scalars['String']['output']>;
3579
+ sort_order?: Maybe<Scalars['Int']['output']>;
3580
+ tags?: Maybe<Array<Scalars['String']['output']>>;
3581
+ };
3582
+ /** aggregate min on columns */
3583
+ export type Pipelines_Min_Fields = {
3584
+ __typename?: 'pipelines_min_fields';
3585
+ category?: Maybe<Scalars['String']['output']>;
3586
+ description?: Maybe<Scalars['String']['output']>;
3587
+ icon_url?: Maybe<Scalars['String']['output']>;
3588
+ id?: Maybe<Scalars['uuid']['output']>;
3589
+ models?: Maybe<Array<Scalars['String']['output']>>;
3590
+ name?: Maybe<Scalars['String']['output']>;
3591
+ preview_url?: Maybe<Scalars['String']['output']>;
3592
+ providers?: Maybe<Array<Scalars['String']['output']>>;
3593
+ seo_content?: Maybe<Scalars['String']['output']>;
3594
+ slug?: Maybe<Scalars['String']['output']>;
3595
+ sort_order?: Maybe<Scalars['Int']['output']>;
3596
+ tags?: Maybe<Array<Scalars['String']['output']>>;
3597
+ };
2959
3598
  /** Ordering options when selecting data from "pipelines". */
2960
3599
  export type Pipelines_Order_By = {
2961
3600
  cancellable?: InputMaybe<Order_By>;
@@ -3022,6 +3661,21 @@ export declare enum Pipelines_Select_Column {
3022
3661
  /** column name */
3023
3662
  UiSchema = "ui_schema"
3024
3663
  }
3664
+ /** aggregate stddev on columns */
3665
+ export type Pipelines_Stddev_Fields = {
3666
+ __typename?: 'pipelines_stddev_fields';
3667
+ sort_order?: Maybe<Scalars['Float']['output']>;
3668
+ };
3669
+ /** aggregate stddev_pop on columns */
3670
+ export type Pipelines_Stddev_Pop_Fields = {
3671
+ __typename?: 'pipelines_stddev_pop_fields';
3672
+ sort_order?: Maybe<Scalars['Float']['output']>;
3673
+ };
3674
+ /** aggregate stddev_samp on columns */
3675
+ export type Pipelines_Stddev_Samp_Fields = {
3676
+ __typename?: 'pipelines_stddev_samp_fields';
3677
+ sort_order?: Maybe<Scalars['Float']['output']>;
3678
+ };
3025
3679
  /** Streaming cursor of the table "pipelines" */
3026
3680
  export type Pipelines_Stream_Cursor_Input = {
3027
3681
  /** Stream column input with initial value */
@@ -3052,6 +3706,26 @@ export type Pipelines_Stream_Cursor_Value_Input = {
3052
3706
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
3053
3707
  ui_schema?: InputMaybe<Scalars['jsonb']['input']>;
3054
3708
  };
3709
+ /** aggregate sum on columns */
3710
+ export type Pipelines_Sum_Fields = {
3711
+ __typename?: 'pipelines_sum_fields';
3712
+ sort_order?: Maybe<Scalars['Int']['output']>;
3713
+ };
3714
+ /** aggregate var_pop on columns */
3715
+ export type Pipelines_Var_Pop_Fields = {
3716
+ __typename?: 'pipelines_var_pop_fields';
3717
+ sort_order?: Maybe<Scalars['Float']['output']>;
3718
+ };
3719
+ /** aggregate var_samp on columns */
3720
+ export type Pipelines_Var_Samp_Fields = {
3721
+ __typename?: 'pipelines_var_samp_fields';
3722
+ sort_order?: Maybe<Scalars['Float']['output']>;
3723
+ };
3724
+ /** aggregate variance on columns */
3725
+ export type Pipelines_Variance_Fields = {
3726
+ __typename?: 'pipelines_variance_fields';
3727
+ sort_order?: Maybe<Scalars['Float']['output']>;
3728
+ };
3055
3729
  /** columns and relationships of "plan_translations" */
3056
3730
  export type Plan_Translations = {
3057
3731
  __typename?: 'plan_translations';
@@ -3504,6 +4178,14 @@ export type Query_Root = {
3504
4178
  assets_aggregate: Assets_Aggregate;
3505
4179
  /** fetch data from the table: "assets" using primary key columns */
3506
4180
  assets_by_pk?: Maybe<Assets>;
4181
+ /** fetch data from the table: "countries" */
4182
+ countries: Array<Countries>;
4183
+ /** fetch data from the table: "countries" using primary key columns */
4184
+ countries_by_pk?: Maybe<Countries>;
4185
+ /** fetch data from the table: "credit_grants" */
4186
+ credit_grants: Array<Credit_Grants>;
4187
+ /** fetch data from the table: "credit_grants" using primary key columns */
4188
+ credit_grants_by_pk?: Maybe<Credit_Grants>;
3507
4189
  /** fetch data from the table: "credit_pack_translations" */
3508
4190
  credit_pack_translations: Array<Credit_Pack_Translations>;
3509
4191
  /** fetch data from the table: "credit_pack_translations" using primary key columns */
@@ -3516,22 +4198,36 @@ export type Query_Root = {
3516
4198
  credit_packs: Array<Credit_Packs>;
3517
4199
  /** fetch data from the table: "credit_packs" using primary key columns */
3518
4200
  credit_packs_by_pk?: Maybe<Credit_Packs>;
4201
+ /** fetch data from the table: "crypto_payment_currencies" */
4202
+ crypto_payment_currencies: Array<Crypto_Payment_Currencies>;
4203
+ /** fetch data from the table: "crypto_payment_currencies" using primary key columns */
4204
+ crypto_payment_currencies_by_pk?: Maybe<Crypto_Payment_Currencies>;
3519
4205
  /** Get the currently signed-in user */
3520
4206
  current_user: Current_User_Output;
4207
+ /** fetch data from the table: "dispatch_blocks" */
4208
+ dispatch_blocks: Array<Dispatch_Blocks>;
4209
+ /** fetch data from the table: "dispatch_blocks" using primary key columns */
4210
+ dispatch_blocks_by_pk?: Maybe<Dispatch_Blocks>;
3521
4211
  /** Preview the credit cost of running a pipeline with a given input (read-only) */
3522
4212
  estimate_pipeline_cost?: Maybe<Estimate_Pipeline_Cost_Output>;
3523
- /** fetch data from the table: "executions_visibility" */
3524
- executions_visibility: Array<Executions_Visibility>;
4213
+ /** fetch data from the table: "fx_rates" */
4214
+ fx_rates: Array<Fx_Rates>;
4215
+ /** fetch data from the table: "fx_rates" using primary key columns */
4216
+ fx_rates_by_pk?: Maybe<Fx_Rates>;
3525
4217
  /** Get your current credit balance */
3526
4218
  get_credit_balance?: Maybe<Credit_Balance_Output>;
3527
4219
  /** Get your credit transaction history */
3528
4220
  get_credit_history: Array<Credit_History_Entry>;
3529
4221
  /** Get your referral stats and referred users */
3530
4222
  get_my_referrals: Get_My_Referrals_Output;
4223
+ /** Get the status of an owned payment through its selected provider */
4224
+ get_payment_status: Payment_Output;
3531
4225
  /** fetch data from the table: "locales" */
3532
4226
  locales: Array<Locales>;
3533
4227
  /** fetch data from the table: "locales" using primary key columns */
3534
4228
  locales_by_pk?: Maybe<Locales>;
4229
+ /** fetch data from the table: "localized_product_prices" */
4230
+ localized_product_prices: Array<Localized_Product_Prices>;
3535
4231
  /** fetch data from the table: "model_capabilities" */
3536
4232
  model_capabilities: Array<Model_Capabilities>;
3537
4233
  /** fetch data from the table: "model_capabilities" using primary key columns */
@@ -3550,6 +4246,14 @@ export type Query_Root = {
3550
4246
  notifications_aggregate: Notifications_Aggregate;
3551
4247
  /** fetch data from the table: "notifications" using primary key columns */
3552
4248
  notifications_by_pk?: Maybe<Notifications>;
4249
+ /** fetch data from the table: "payment_provider_resolved_row" */
4250
+ payment_provider_resolved_row: Array<Payment_Provider_Resolved_Row>;
4251
+ /** fetch data from the table: "payment_providers" */
4252
+ payment_providers: Array<Payment_Providers>;
4253
+ /** fetch data from the table: "payment_providers" using primary key columns */
4254
+ payment_providers_by_pk?: Maybe<Payment_Providers>;
4255
+ /** List the current user's payments across all providers */
4256
+ payments: Array<Payment_Output>;
3553
4257
  /** fetch data from the table: "personal_access_tokens" */
3554
4258
  personal_access_tokens: Array<Personal_Access_Tokens>;
3555
4259
  /** fetch data from the table: "personal_access_tokens" using primary key columns */
@@ -3580,6 +4284,8 @@ export type Query_Root = {
3580
4284
  pipeline_translations_by_pk?: Maybe<Pipeline_Translations>;
3581
4285
  /** fetch data from the table: "pipelines" */
3582
4286
  pipelines: Array<Pipelines>;
4287
+ /** fetch aggregated fields from the table: "pipelines" */
4288
+ pipelines_aggregate: Pipelines_Aggregate;
3583
4289
  /** fetch data from the table: "pipelines" using primary key columns */
3584
4290
  pipelines_by_pk?: Maybe<Pipelines>;
3585
4291
  /** fetch data from the table: "plan_translations" */
@@ -3598,10 +4304,22 @@ export type Query_Root = {
3598
4304
  providers: Array<Providers>;
3599
4305
  /** fetch data from the table: "providers" using primary key columns */
3600
4306
  providers_by_pk?: Maybe<Providers>;
4307
+ /** execute function "resolve_payment_providers" which returns "payment_provider_resolved_row" */
4308
+ resolve_payment_providers: Array<Payment_Provider_Resolved_Row>;
4309
+ /** fetch data from the table: "subscription_plan_changes" */
4310
+ subscription_plan_changes: Array<Subscription_Plan_Changes>;
4311
+ /** fetch data from the table: "subscription_plan_changes" using primary key columns */
4312
+ subscription_plan_changes_by_pk?: Maybe<Subscription_Plan_Changes>;
3601
4313
  /** An array relationship */
3602
4314
  subscriptions: Array<Subscriptions>;
3603
4315
  /** fetch data from the table: "subscriptions" using primary key columns */
3604
4316
  subscriptions_by_pk?: Maybe<Subscriptions>;
4317
+ /** fetch data from the table: "user_credit_balance_breakdown" */
4318
+ user_credit_balance_breakdown: Array<User_Credit_Balance_Breakdown>;
4319
+ /** fetch data from the table: "user_subscription_credits" */
4320
+ user_subscription_credits: Array<User_Subscription_Credits>;
4321
+ /** fetch data from the table: "user_subscription_credits" using primary key columns */
4322
+ user_subscription_credits_by_pk?: Maybe<User_Subscription_Credits>;
3605
4323
  };
3606
4324
  export type Query_RootAffiliate_CodesArgs = {
3607
4325
  distinct_on?: InputMaybe<Array<Affiliate_Codes_Select_Column>>;
@@ -3640,6 +4358,26 @@ export type Query_RootAssets_AggregateArgs = {
3640
4358
  export type Query_RootAssets_By_PkArgs = {
3641
4359
  id: Scalars['uuid']['input'];
3642
4360
  };
4361
+ export type Query_RootCountriesArgs = {
4362
+ distinct_on?: InputMaybe<Array<Countries_Select_Column>>;
4363
+ limit?: InputMaybe<Scalars['Int']['input']>;
4364
+ offset?: InputMaybe<Scalars['Int']['input']>;
4365
+ order_by?: InputMaybe<Array<Countries_Order_By>>;
4366
+ where?: InputMaybe<Countries_Bool_Exp>;
4367
+ };
4368
+ export type Query_RootCountries_By_PkArgs = {
4369
+ code: Scalars['String']['input'];
4370
+ };
4371
+ export type Query_RootCredit_GrantsArgs = {
4372
+ distinct_on?: InputMaybe<Array<Credit_Grants_Select_Column>>;
4373
+ limit?: InputMaybe<Scalars['Int']['input']>;
4374
+ offset?: InputMaybe<Scalars['Int']['input']>;
4375
+ order_by?: InputMaybe<Array<Credit_Grants_Order_By>>;
4376
+ where?: InputMaybe<Credit_Grants_Bool_Exp>;
4377
+ };
4378
+ export type Query_RootCredit_Grants_By_PkArgs = {
4379
+ id: Scalars['uuid']['input'];
4380
+ };
3643
4381
  export type Query_RootCredit_Pack_TranslationsArgs = {
3644
4382
  distinct_on?: InputMaybe<Array<Credit_Pack_Translations_Select_Column>>;
3645
4383
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -3671,16 +4409,43 @@ export type Query_RootCredit_PacksArgs = {
3671
4409
  export type Query_RootCredit_Packs_By_PkArgs = {
3672
4410
  id: Scalars['uuid']['input'];
3673
4411
  };
4412
+ export type Query_RootCrypto_Payment_CurrenciesArgs = {
4413
+ distinct_on?: InputMaybe<Array<Crypto_Payment_Currencies_Select_Column>>;
4414
+ limit?: InputMaybe<Scalars['Int']['input']>;
4415
+ offset?: InputMaybe<Scalars['Int']['input']>;
4416
+ order_by?: InputMaybe<Array<Crypto_Payment_Currencies_Order_By>>;
4417
+ where?: InputMaybe<Crypto_Payment_Currencies_Bool_Exp>;
4418
+ };
4419
+ export type Query_RootCrypto_Payment_Currencies_By_PkArgs = {
4420
+ currency_id: Scalars['String']['input'];
4421
+ };
4422
+ export type Query_RootDispatch_BlocksArgs = {
4423
+ distinct_on?: InputMaybe<Array<Dispatch_Blocks_Select_Column>>;
4424
+ limit?: InputMaybe<Scalars['Int']['input']>;
4425
+ offset?: InputMaybe<Scalars['Int']['input']>;
4426
+ order_by?: InputMaybe<Array<Dispatch_Blocks_Order_By>>;
4427
+ where?: InputMaybe<Dispatch_Blocks_Bool_Exp>;
4428
+ };
4429
+ export type Query_RootDispatch_Blocks_By_PkArgs = {
4430
+ id: Scalars['uuid']['input'];
4431
+ };
3674
4432
  export type Query_RootEstimate_Pipeline_CostArgs = {
3675
4433
  input: Scalars['jsonb']['input'];
3676
4434
  pipeline_slug: Scalars['String']['input'];
3677
4435
  };
3678
- export type Query_RootExecutions_VisibilityArgs = {
3679
- distinct_on?: InputMaybe<Array<Executions_Visibility_Select_Column>>;
4436
+ export type Query_RootFx_RatesArgs = {
4437
+ distinct_on?: InputMaybe<Array<Fx_Rates_Select_Column>>;
3680
4438
  limit?: InputMaybe<Scalars['Int']['input']>;
3681
4439
  offset?: InputMaybe<Scalars['Int']['input']>;
3682
- order_by?: InputMaybe<Array<Executions_Visibility_Order_By>>;
3683
- where?: InputMaybe<Executions_Visibility_Bool_Exp>;
4440
+ order_by?: InputMaybe<Array<Fx_Rates_Order_By>>;
4441
+ where?: InputMaybe<Fx_Rates_Bool_Exp>;
4442
+ };
4443
+ export type Query_RootFx_Rates_By_PkArgs = {
4444
+ currency: Scalars['String']['input'];
4445
+ };
4446
+ export type Query_RootGet_Payment_StatusArgs = {
4447
+ payment_id: Scalars['uuid']['input'];
4448
+ provider: Scalars['String']['input'];
3684
4449
  };
3685
4450
  export type Query_RootLocalesArgs = {
3686
4451
  distinct_on?: InputMaybe<Array<Locales_Select_Column>>;
@@ -3692,6 +4457,13 @@ export type Query_RootLocalesArgs = {
3692
4457
  export type Query_RootLocales_By_PkArgs = {
3693
4458
  code: Scalars['String']['input'];
3694
4459
  };
4460
+ export type Query_RootLocalized_Product_PricesArgs = {
4461
+ distinct_on?: InputMaybe<Array<Localized_Product_Prices_Select_Column>>;
4462
+ limit?: InputMaybe<Scalars['Int']['input']>;
4463
+ offset?: InputMaybe<Scalars['Int']['input']>;
4464
+ order_by?: InputMaybe<Array<Localized_Product_Prices_Order_By>>;
4465
+ where?: InputMaybe<Localized_Product_Prices_Bool_Exp>;
4466
+ };
3695
4467
  export type Query_RootModel_CapabilitiesArgs = {
3696
4468
  distinct_on?: InputMaybe<Array<Model_Capabilities_Select_Column>>;
3697
4469
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -3741,6 +4513,27 @@ export type Query_RootNotifications_AggregateArgs = {
3741
4513
  export type Query_RootNotifications_By_PkArgs = {
3742
4514
  id: Scalars['uuid']['input'];
3743
4515
  };
4516
+ export type Query_RootPayment_Provider_Resolved_RowArgs = {
4517
+ distinct_on?: InputMaybe<Array<Payment_Provider_Resolved_Row_Select_Column>>;
4518
+ limit?: InputMaybe<Scalars['Int']['input']>;
4519
+ offset?: InputMaybe<Scalars['Int']['input']>;
4520
+ order_by?: InputMaybe<Array<Payment_Provider_Resolved_Row_Order_By>>;
4521
+ where?: InputMaybe<Payment_Provider_Resolved_Row_Bool_Exp>;
4522
+ };
4523
+ export type Query_RootPayment_ProvidersArgs = {
4524
+ distinct_on?: InputMaybe<Array<Payment_Providers_Select_Column>>;
4525
+ limit?: InputMaybe<Scalars['Int']['input']>;
4526
+ offset?: InputMaybe<Scalars['Int']['input']>;
4527
+ order_by?: InputMaybe<Array<Payment_Providers_Order_By>>;
4528
+ where?: InputMaybe<Payment_Providers_Bool_Exp>;
4529
+ };
4530
+ export type Query_RootPayment_Providers_By_PkArgs = {
4531
+ slug: Scalars['String']['input'];
4532
+ };
4533
+ export type Query_RootPaymentsArgs = {
4534
+ limit?: InputMaybe<Scalars['Int']['input']>;
4535
+ offset?: InputMaybe<Scalars['Int']['input']>;
4536
+ };
3744
4537
  export type Query_RootPersonal_Access_TokensArgs = {
3745
4538
  distinct_on?: InputMaybe<Array<Personal_Access_Tokens_Select_Column>>;
3746
4539
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -3818,6 +4611,13 @@ export type Query_RootPipelinesArgs = {
3818
4611
  order_by?: InputMaybe<Array<Pipelines_Order_By>>;
3819
4612
  where?: InputMaybe<Pipelines_Bool_Exp>;
3820
4613
  };
4614
+ export type Query_RootPipelines_AggregateArgs = {
4615
+ distinct_on?: InputMaybe<Array<Pipelines_Select_Column>>;
4616
+ limit?: InputMaybe<Scalars['Int']['input']>;
4617
+ offset?: InputMaybe<Scalars['Int']['input']>;
4618
+ order_by?: InputMaybe<Array<Pipelines_Order_By>>;
4619
+ where?: InputMaybe<Pipelines_Bool_Exp>;
4620
+ };
3821
4621
  export type Query_RootPipelines_By_PkArgs = {
3822
4622
  id: Scalars['uuid']['input'];
3823
4623
  };
@@ -3862,6 +4662,24 @@ export type Query_RootProvidersArgs = {
3862
4662
  export type Query_RootProviders_By_PkArgs = {
3863
4663
  slug: Scalars['String']['input'];
3864
4664
  };
4665
+ export type Query_RootResolve_Payment_ProvidersArgs = {
4666
+ args: Resolve_Payment_Providers_Args;
4667
+ distinct_on?: InputMaybe<Array<Payment_Provider_Resolved_Row_Select_Column>>;
4668
+ limit?: InputMaybe<Scalars['Int']['input']>;
4669
+ offset?: InputMaybe<Scalars['Int']['input']>;
4670
+ order_by?: InputMaybe<Array<Payment_Provider_Resolved_Row_Order_By>>;
4671
+ where?: InputMaybe<Payment_Provider_Resolved_Row_Bool_Exp>;
4672
+ };
4673
+ export type Query_RootSubscription_Plan_ChangesArgs = {
4674
+ distinct_on?: InputMaybe<Array<Subscription_Plan_Changes_Select_Column>>;
4675
+ limit?: InputMaybe<Scalars['Int']['input']>;
4676
+ offset?: InputMaybe<Scalars['Int']['input']>;
4677
+ order_by?: InputMaybe<Array<Subscription_Plan_Changes_Order_By>>;
4678
+ where?: InputMaybe<Subscription_Plan_Changes_Bool_Exp>;
4679
+ };
4680
+ export type Query_RootSubscription_Plan_Changes_By_PkArgs = {
4681
+ id: Scalars['uuid']['input'];
4682
+ };
3865
4683
  export type Query_RootSubscriptionsArgs = {
3866
4684
  distinct_on?: InputMaybe<Array<Subscriptions_Select_Column>>;
3867
4685
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -3872,6 +4690,23 @@ export type Query_RootSubscriptionsArgs = {
3872
4690
  export type Query_RootSubscriptions_By_PkArgs = {
3873
4691
  id: Scalars['uuid']['input'];
3874
4692
  };
4693
+ export type Query_RootUser_Credit_Balance_BreakdownArgs = {
4694
+ distinct_on?: InputMaybe<Array<User_Credit_Balance_Breakdown_Select_Column>>;
4695
+ limit?: InputMaybe<Scalars['Int']['input']>;
4696
+ offset?: InputMaybe<Scalars['Int']['input']>;
4697
+ order_by?: InputMaybe<Array<User_Credit_Balance_Breakdown_Order_By>>;
4698
+ where?: InputMaybe<User_Credit_Balance_Breakdown_Bool_Exp>;
4699
+ };
4700
+ export type Query_RootUser_Subscription_CreditsArgs = {
4701
+ distinct_on?: InputMaybe<Array<User_Subscription_Credits_Select_Column>>;
4702
+ limit?: InputMaybe<Scalars['Int']['input']>;
4703
+ offset?: InputMaybe<Scalars['Int']['input']>;
4704
+ order_by?: InputMaybe<Array<User_Subscription_Credits_Order_By>>;
4705
+ where?: InputMaybe<User_Subscription_Credits_Bool_Exp>;
4706
+ };
4707
+ export type Query_RootUser_Subscription_Credits_By_PkArgs = {
4708
+ user_id: Scalars['uuid']['input'];
4709
+ };
3875
4710
  export type Referral_Entry = {
3876
4711
  __typename?: 'referral_entry';
3877
4712
  commission_cents: Scalars['Int']['output'];
@@ -3910,6 +4745,11 @@ export type Request_Upload_Output = {
3910
4745
  key: Scalars['String']['output'];
3911
4746
  upload_url: Scalars['String']['output'];
3912
4747
  };
4748
+ export type Resolve_Payment_Providers_Args = {
4749
+ p_country?: InputMaybe<Scalars['String']['input']>;
4750
+ p_locale?: InputMaybe<Scalars['String']['input']>;
4751
+ p_platform?: InputMaybe<Scalars['String']['input']>;
4752
+ };
3913
4753
  export type Revoke_Personal_Access_Token_Output = {
3914
4754
  __typename?: 'revoke_personal_access_token_output';
3915
4755
  revoked_at: Scalars['String']['output'];
@@ -3920,56 +4760,181 @@ export type Run_Pipeline_Output = {
3920
4760
  run_id: Scalars['String']['output'];
3921
4761
  workflow_id: Scalars['String']['output'];
3922
4762
  };
3923
- export type Subscription_Root = {
3924
- __typename?: 'subscription_root';
3925
- /** fetch data from the table: "affiliate_codes" */
3926
- affiliate_codes: Array<Affiliate_Codes>;
3927
- /** fetch data from the table: "affiliate_codes" using primary key columns */
3928
- affiliate_codes_by_pk?: Maybe<Affiliate_Codes>;
3929
- /** fetch data from the table in a streaming manner: "affiliate_codes" */
3930
- affiliate_codes_stream: Array<Affiliate_Codes>;
3931
- /** fetch data from the table: "affiliates" */
3932
- affiliates: Array<Affiliates>;
3933
- /** fetch data from the table: "affiliates" using primary key columns */
3934
- affiliates_by_pk?: Maybe<Affiliates>;
3935
- /** fetch data from the table in a streaming manner: "affiliates" */
3936
- affiliates_stream: Array<Affiliates>;
3937
- /** An array relationship */
3938
- assets: Array<Assets>;
3939
- /** An aggregate relationship */
3940
- assets_aggregate: Assets_Aggregate;
3941
- /** fetch data from the table: "assets" using primary key columns */
3942
- assets_by_pk?: Maybe<Assets>;
3943
- /** fetch data from the table in a streaming manner: "assets" */
3944
- assets_stream: Array<Assets>;
3945
- /** fetch data from the table: "credit_pack_translations" */
3946
- credit_pack_translations: Array<Credit_Pack_Translations>;
3947
- /** fetch data from the table: "credit_pack_translations" using primary key columns */
3948
- credit_pack_translations_by_pk?: Maybe<Credit_Pack_Translations>;
3949
- /** fetch data from the table in a streaming manner: "credit_pack_translations" */
3950
- credit_pack_translations_stream: Array<Credit_Pack_Translations>;
3951
- /** fetch data from the table: "credit_pack_versions" */
3952
- credit_pack_versions: Array<Credit_Pack_Versions>;
3953
- /** fetch data from the table: "credit_pack_versions" using primary key columns */
3954
- credit_pack_versions_by_pk?: Maybe<Credit_Pack_Versions>;
3955
- /** fetch data from the table in a streaming manner: "credit_pack_versions" */
3956
- credit_pack_versions_stream: Array<Credit_Pack_Versions>;
3957
- /** fetch data from the table: "credit_packs" */
3958
- credit_packs: Array<Credit_Packs>;
4763
+ /** Boolean expression to compare columns of type "smallint". All fields are combined with logical 'AND'. */
4764
+ export type Smallint_Comparison_Exp = {
4765
+ _eq?: InputMaybe<Scalars['smallint']['input']>;
4766
+ _gt?: InputMaybe<Scalars['smallint']['input']>;
4767
+ _gte?: InputMaybe<Scalars['smallint']['input']>;
4768
+ _in?: InputMaybe<Array<Scalars['smallint']['input']>>;
4769
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
4770
+ _lt?: InputMaybe<Scalars['smallint']['input']>;
4771
+ _lte?: InputMaybe<Scalars['smallint']['input']>;
4772
+ _neq?: InputMaybe<Scalars['smallint']['input']>;
4773
+ _nin?: InputMaybe<Array<Scalars['smallint']['input']>>;
4774
+ };
4775
+ export type Subscription_Plan_Change_Output = {
4776
+ __typename?: 'subscription_plan_change_output';
4777
+ change_id: Scalars['uuid']['output'];
4778
+ effective_at: Scalars['timestamptz']['output'];
4779
+ status: Scalars['String']['output'];
4780
+ success: Scalars['Boolean']['output'];
4781
+ };
4782
+ /** columns and relationships of "subscription_plan_changes" */
4783
+ export type Subscription_Plan_Changes = {
4784
+ __typename?: 'subscription_plan_changes';
4785
+ charge_cents?: Maybe<Scalars['Int']['output']>;
4786
+ created_at: Scalars['timestamptz']['output'];
4787
+ effective_at: Scalars['timestamptz']['output'];
4788
+ /** An object relationship */
4789
+ from_plan_version: Plan_Versions;
4790
+ grant_mc?: Maybe<Scalars['bigint']['output']>;
4791
+ id: Scalars['uuid']['output'];
4792
+ kind: Scalars['String']['output'];
4793
+ status: Scalars['String']['output'];
4794
+ /** An object relationship */
4795
+ to_plan_version: Plan_Versions;
4796
+ };
4797
+ /** Boolean expression to filter rows from the table "subscription_plan_changes". All fields are combined with a logical 'AND'. */
4798
+ export type Subscription_Plan_Changes_Bool_Exp = {
4799
+ _and?: InputMaybe<Array<Subscription_Plan_Changes_Bool_Exp>>;
4800
+ _not?: InputMaybe<Subscription_Plan_Changes_Bool_Exp>;
4801
+ _or?: InputMaybe<Array<Subscription_Plan_Changes_Bool_Exp>>;
4802
+ charge_cents?: InputMaybe<Int_Comparison_Exp>;
4803
+ created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
4804
+ effective_at?: InputMaybe<Timestamptz_Comparison_Exp>;
4805
+ from_plan_version?: InputMaybe<Plan_Versions_Bool_Exp>;
4806
+ grant_mc?: InputMaybe<Bigint_Comparison_Exp>;
4807
+ id?: InputMaybe<Uuid_Comparison_Exp>;
4808
+ kind?: InputMaybe<String_Comparison_Exp>;
4809
+ status?: InputMaybe<String_Comparison_Exp>;
4810
+ to_plan_version?: InputMaybe<Plan_Versions_Bool_Exp>;
4811
+ };
4812
+ /** Ordering options when selecting data from "subscription_plan_changes". */
4813
+ export type Subscription_Plan_Changes_Order_By = {
4814
+ charge_cents?: InputMaybe<Order_By>;
4815
+ created_at?: InputMaybe<Order_By>;
4816
+ effective_at?: InputMaybe<Order_By>;
4817
+ from_plan_version?: InputMaybe<Plan_Versions_Order_By>;
4818
+ grant_mc?: InputMaybe<Order_By>;
4819
+ id?: InputMaybe<Order_By>;
4820
+ kind?: InputMaybe<Order_By>;
4821
+ status?: InputMaybe<Order_By>;
4822
+ to_plan_version?: InputMaybe<Plan_Versions_Order_By>;
4823
+ };
4824
+ /** select columns of table "subscription_plan_changes" */
4825
+ export declare enum Subscription_Plan_Changes_Select_Column {
4826
+ /** column name */
4827
+ ChargeCents = "charge_cents",
4828
+ /** column name */
4829
+ CreatedAt = "created_at",
4830
+ /** column name */
4831
+ EffectiveAt = "effective_at",
4832
+ /** column name */
4833
+ GrantMc = "grant_mc",
4834
+ /** column name */
4835
+ Id = "id",
4836
+ /** column name */
4837
+ Kind = "kind",
4838
+ /** column name */
4839
+ Status = "status"
4840
+ }
4841
+ /** Streaming cursor of the table "subscription_plan_changes" */
4842
+ export type Subscription_Plan_Changes_Stream_Cursor_Input = {
4843
+ /** Stream column input with initial value */
4844
+ initial_value: Subscription_Plan_Changes_Stream_Cursor_Value_Input;
4845
+ /** cursor ordering */
4846
+ ordering?: InputMaybe<Cursor_Ordering>;
4847
+ };
4848
+ /** Initial value of the column from where the streaming should start */
4849
+ export type Subscription_Plan_Changes_Stream_Cursor_Value_Input = {
4850
+ charge_cents?: InputMaybe<Scalars['Int']['input']>;
4851
+ created_at?: InputMaybe<Scalars['timestamptz']['input']>;
4852
+ effective_at?: InputMaybe<Scalars['timestamptz']['input']>;
4853
+ grant_mc?: InputMaybe<Scalars['bigint']['input']>;
4854
+ id?: InputMaybe<Scalars['uuid']['input']>;
4855
+ kind?: InputMaybe<Scalars['String']['input']>;
4856
+ status?: InputMaybe<Scalars['String']['input']>;
4857
+ };
4858
+ export type Subscription_Root = {
4859
+ __typename?: 'subscription_root';
4860
+ /** fetch data from the table: "affiliate_codes" */
4861
+ affiliate_codes: Array<Affiliate_Codes>;
4862
+ /** fetch data from the table: "affiliate_codes" using primary key columns */
4863
+ affiliate_codes_by_pk?: Maybe<Affiliate_Codes>;
4864
+ /** fetch data from the table in a streaming manner: "affiliate_codes" */
4865
+ affiliate_codes_stream: Array<Affiliate_Codes>;
4866
+ /** fetch data from the table: "affiliates" */
4867
+ affiliates: Array<Affiliates>;
4868
+ /** fetch data from the table: "affiliates" using primary key columns */
4869
+ affiliates_by_pk?: Maybe<Affiliates>;
4870
+ /** fetch data from the table in a streaming manner: "affiliates" */
4871
+ affiliates_stream: Array<Affiliates>;
4872
+ /** An array relationship */
4873
+ assets: Array<Assets>;
4874
+ /** An aggregate relationship */
4875
+ assets_aggregate: Assets_Aggregate;
4876
+ /** fetch data from the table: "assets" using primary key columns */
4877
+ assets_by_pk?: Maybe<Assets>;
4878
+ /** fetch data from the table in a streaming manner: "assets" */
4879
+ assets_stream: Array<Assets>;
4880
+ /** fetch data from the table: "countries" */
4881
+ countries: Array<Countries>;
4882
+ /** fetch data from the table: "countries" using primary key columns */
4883
+ countries_by_pk?: Maybe<Countries>;
4884
+ /** fetch data from the table in a streaming manner: "countries" */
4885
+ countries_stream: Array<Countries>;
4886
+ /** fetch data from the table: "credit_grants" */
4887
+ credit_grants: Array<Credit_Grants>;
4888
+ /** fetch data from the table: "credit_grants" using primary key columns */
4889
+ credit_grants_by_pk?: Maybe<Credit_Grants>;
4890
+ /** fetch data from the table in a streaming manner: "credit_grants" */
4891
+ credit_grants_stream: Array<Credit_Grants>;
4892
+ /** fetch data from the table: "credit_pack_translations" */
4893
+ credit_pack_translations: Array<Credit_Pack_Translations>;
4894
+ /** fetch data from the table: "credit_pack_translations" using primary key columns */
4895
+ credit_pack_translations_by_pk?: Maybe<Credit_Pack_Translations>;
4896
+ /** fetch data from the table in a streaming manner: "credit_pack_translations" */
4897
+ credit_pack_translations_stream: Array<Credit_Pack_Translations>;
4898
+ /** fetch data from the table: "credit_pack_versions" */
4899
+ credit_pack_versions: Array<Credit_Pack_Versions>;
4900
+ /** fetch data from the table: "credit_pack_versions" using primary key columns */
4901
+ credit_pack_versions_by_pk?: Maybe<Credit_Pack_Versions>;
4902
+ /** fetch data from the table in a streaming manner: "credit_pack_versions" */
4903
+ credit_pack_versions_stream: Array<Credit_Pack_Versions>;
4904
+ /** fetch data from the table: "credit_packs" */
4905
+ credit_packs: Array<Credit_Packs>;
3959
4906
  /** fetch data from the table: "credit_packs" using primary key columns */
3960
4907
  credit_packs_by_pk?: Maybe<Credit_Packs>;
3961
4908
  /** fetch data from the table in a streaming manner: "credit_packs" */
3962
4909
  credit_packs_stream: Array<Credit_Packs>;
3963
- /** fetch data from the table: "executions_visibility" */
3964
- executions_visibility: Array<Executions_Visibility>;
3965
- /** fetch data from the table in a streaming manner: "executions_visibility" */
3966
- executions_visibility_stream: Array<Executions_Visibility>;
4910
+ /** fetch data from the table: "crypto_payment_currencies" */
4911
+ crypto_payment_currencies: Array<Crypto_Payment_Currencies>;
4912
+ /** fetch data from the table: "crypto_payment_currencies" using primary key columns */
4913
+ crypto_payment_currencies_by_pk?: Maybe<Crypto_Payment_Currencies>;
4914
+ /** fetch data from the table in a streaming manner: "crypto_payment_currencies" */
4915
+ crypto_payment_currencies_stream: Array<Crypto_Payment_Currencies>;
4916
+ /** fetch data from the table: "dispatch_blocks" */
4917
+ dispatch_blocks: Array<Dispatch_Blocks>;
4918
+ /** fetch data from the table: "dispatch_blocks" using primary key columns */
4919
+ dispatch_blocks_by_pk?: Maybe<Dispatch_Blocks>;
4920
+ /** fetch data from the table in a streaming manner: "dispatch_blocks" */
4921
+ dispatch_blocks_stream: Array<Dispatch_Blocks>;
4922
+ /** fetch data from the table: "fx_rates" */
4923
+ fx_rates: Array<Fx_Rates>;
4924
+ /** fetch data from the table: "fx_rates" using primary key columns */
4925
+ fx_rates_by_pk?: Maybe<Fx_Rates>;
4926
+ /** fetch data from the table in a streaming manner: "fx_rates" */
4927
+ fx_rates_stream: Array<Fx_Rates>;
3967
4928
  /** fetch data from the table: "locales" */
3968
4929
  locales: Array<Locales>;
3969
4930
  /** fetch data from the table: "locales" using primary key columns */
3970
4931
  locales_by_pk?: Maybe<Locales>;
3971
4932
  /** fetch data from the table in a streaming manner: "locales" */
3972
4933
  locales_stream: Array<Locales>;
4934
+ /** fetch data from the table: "localized_product_prices" */
4935
+ localized_product_prices: Array<Localized_Product_Prices>;
4936
+ /** fetch data from the table in a streaming manner: "localized_product_prices" */
4937
+ localized_product_prices_stream: Array<Localized_Product_Prices>;
3973
4938
  /** fetch data from the table: "model_capabilities" */
3974
4939
  model_capabilities: Array<Model_Capabilities>;
3975
4940
  /** fetch data from the table: "model_capabilities" using primary key columns */
@@ -3996,6 +4961,16 @@ export type Subscription_Root = {
3996
4961
  notifications_by_pk?: Maybe<Notifications>;
3997
4962
  /** fetch data from the table in a streaming manner: "notifications" */
3998
4963
  notifications_stream: Array<Notifications>;
4964
+ /** fetch data from the table: "payment_provider_resolved_row" */
4965
+ payment_provider_resolved_row: Array<Payment_Provider_Resolved_Row>;
4966
+ /** fetch data from the table in a streaming manner: "payment_provider_resolved_row" */
4967
+ payment_provider_resolved_row_stream: Array<Payment_Provider_Resolved_Row>;
4968
+ /** fetch data from the table: "payment_providers" */
4969
+ payment_providers: Array<Payment_Providers>;
4970
+ /** fetch data from the table: "payment_providers" using primary key columns */
4971
+ payment_providers_by_pk?: Maybe<Payment_Providers>;
4972
+ /** fetch data from the table in a streaming manner: "payment_providers" */
4973
+ payment_providers_stream: Array<Payment_Providers>;
3999
4974
  /** fetch data from the table: "personal_access_tokens" */
4000
4975
  personal_access_tokens: Array<Personal_Access_Tokens>;
4001
4976
  /** fetch data from the table: "personal_access_tokens" using primary key columns */
@@ -4036,6 +5011,8 @@ export type Subscription_Root = {
4036
5011
  pipeline_translations_stream: Array<Pipeline_Translations>;
4037
5012
  /** fetch data from the table: "pipelines" */
4038
5013
  pipelines: Array<Pipelines>;
5014
+ /** fetch aggregated fields from the table: "pipelines" */
5015
+ pipelines_aggregate: Pipelines_Aggregate;
4039
5016
  /** fetch data from the table: "pipelines" using primary key columns */
4040
5017
  pipelines_by_pk?: Maybe<Pipelines>;
4041
5018
  /** fetch data from the table in a streaming manner: "pipelines" */
@@ -4064,12 +5041,32 @@ export type Subscription_Root = {
4064
5041
  providers_by_pk?: Maybe<Providers>;
4065
5042
  /** fetch data from the table in a streaming manner: "providers" */
4066
5043
  providers_stream: Array<Providers>;
5044
+ /** execute function "resolve_payment_providers" which returns "payment_provider_resolved_row" */
5045
+ resolve_payment_providers: Array<Payment_Provider_Resolved_Row>;
5046
+ /** fetch data from the table: "subscription_plan_changes" */
5047
+ subscription_plan_changes: Array<Subscription_Plan_Changes>;
5048
+ /** fetch data from the table: "subscription_plan_changes" using primary key columns */
5049
+ subscription_plan_changes_by_pk?: Maybe<Subscription_Plan_Changes>;
5050
+ /** fetch data from the table in a streaming manner: "subscription_plan_changes" */
5051
+ subscription_plan_changes_stream: Array<Subscription_Plan_Changes>;
4067
5052
  /** An array relationship */
4068
5053
  subscriptions: Array<Subscriptions>;
4069
5054
  /** fetch data from the table: "subscriptions" using primary key columns */
4070
5055
  subscriptions_by_pk?: Maybe<Subscriptions>;
4071
5056
  /** fetch data from the table in a streaming manner: "subscriptions" */
4072
5057
  subscriptions_stream: Array<Subscriptions>;
5058
+ /** fetch data from the table: "user_credit_balance_breakdown" */
5059
+ user_credit_balance_breakdown: Array<User_Credit_Balance_Breakdown>;
5060
+ /** fetch data from the table in a streaming manner: "user_credit_balance_breakdown" */
5061
+ user_credit_balance_breakdown_stream: Array<User_Credit_Balance_Breakdown>;
5062
+ /** fetch data from the table: "user_subscription_credits" */
5063
+ user_subscription_credits: Array<User_Subscription_Credits>;
5064
+ /** fetch data from the table: "user_subscription_credits" using primary key columns */
5065
+ user_subscription_credits_by_pk?: Maybe<User_Subscription_Credits>;
5066
+ /** fetch data from the table in a streaming manner: "user_subscription_credits" */
5067
+ user_subscription_credits_stream: Array<User_Subscription_Credits>;
5068
+ /** fetch data from the table: "users" */
5069
+ users: Array<Users>;
4073
5070
  };
4074
5071
  export type Subscription_RootAffiliate_CodesArgs = {
4075
5072
  distinct_on?: InputMaybe<Array<Affiliate_Codes_Select_Column>>;
@@ -4123,6 +5120,36 @@ export type Subscription_RootAssets_StreamArgs = {
4123
5120
  cursor: Array<InputMaybe<Assets_Stream_Cursor_Input>>;
4124
5121
  where?: InputMaybe<Assets_Bool_Exp>;
4125
5122
  };
5123
+ export type Subscription_RootCountriesArgs = {
5124
+ distinct_on?: InputMaybe<Array<Countries_Select_Column>>;
5125
+ limit?: InputMaybe<Scalars['Int']['input']>;
5126
+ offset?: InputMaybe<Scalars['Int']['input']>;
5127
+ order_by?: InputMaybe<Array<Countries_Order_By>>;
5128
+ where?: InputMaybe<Countries_Bool_Exp>;
5129
+ };
5130
+ export type Subscription_RootCountries_By_PkArgs = {
5131
+ code: Scalars['String']['input'];
5132
+ };
5133
+ export type Subscription_RootCountries_StreamArgs = {
5134
+ batch_size: Scalars['Int']['input'];
5135
+ cursor: Array<InputMaybe<Countries_Stream_Cursor_Input>>;
5136
+ where?: InputMaybe<Countries_Bool_Exp>;
5137
+ };
5138
+ export type Subscription_RootCredit_GrantsArgs = {
5139
+ distinct_on?: InputMaybe<Array<Credit_Grants_Select_Column>>;
5140
+ limit?: InputMaybe<Scalars['Int']['input']>;
5141
+ offset?: InputMaybe<Scalars['Int']['input']>;
5142
+ order_by?: InputMaybe<Array<Credit_Grants_Order_By>>;
5143
+ where?: InputMaybe<Credit_Grants_Bool_Exp>;
5144
+ };
5145
+ export type Subscription_RootCredit_Grants_By_PkArgs = {
5146
+ id: Scalars['uuid']['input'];
5147
+ };
5148
+ export type Subscription_RootCredit_Grants_StreamArgs = {
5149
+ batch_size: Scalars['Int']['input'];
5150
+ cursor: Array<InputMaybe<Credit_Grants_Stream_Cursor_Input>>;
5151
+ where?: InputMaybe<Credit_Grants_Bool_Exp>;
5152
+ };
4126
5153
  export type Subscription_RootCredit_Pack_TranslationsArgs = {
4127
5154
  distinct_on?: InputMaybe<Array<Credit_Pack_Translations_Select_Column>>;
4128
5155
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -4169,17 +5196,50 @@ export type Subscription_RootCredit_Packs_StreamArgs = {
4169
5196
  cursor: Array<InputMaybe<Credit_Packs_Stream_Cursor_Input>>;
4170
5197
  where?: InputMaybe<Credit_Packs_Bool_Exp>;
4171
5198
  };
4172
- export type Subscription_RootExecutions_VisibilityArgs = {
4173
- distinct_on?: InputMaybe<Array<Executions_Visibility_Select_Column>>;
5199
+ export type Subscription_RootCrypto_Payment_CurrenciesArgs = {
5200
+ distinct_on?: InputMaybe<Array<Crypto_Payment_Currencies_Select_Column>>;
5201
+ limit?: InputMaybe<Scalars['Int']['input']>;
5202
+ offset?: InputMaybe<Scalars['Int']['input']>;
5203
+ order_by?: InputMaybe<Array<Crypto_Payment_Currencies_Order_By>>;
5204
+ where?: InputMaybe<Crypto_Payment_Currencies_Bool_Exp>;
5205
+ };
5206
+ export type Subscription_RootCrypto_Payment_Currencies_By_PkArgs = {
5207
+ currency_id: Scalars['String']['input'];
5208
+ };
5209
+ export type Subscription_RootCrypto_Payment_Currencies_StreamArgs = {
5210
+ batch_size: Scalars['Int']['input'];
5211
+ cursor: Array<InputMaybe<Crypto_Payment_Currencies_Stream_Cursor_Input>>;
5212
+ where?: InputMaybe<Crypto_Payment_Currencies_Bool_Exp>;
5213
+ };
5214
+ export type Subscription_RootDispatch_BlocksArgs = {
5215
+ distinct_on?: InputMaybe<Array<Dispatch_Blocks_Select_Column>>;
5216
+ limit?: InputMaybe<Scalars['Int']['input']>;
5217
+ offset?: InputMaybe<Scalars['Int']['input']>;
5218
+ order_by?: InputMaybe<Array<Dispatch_Blocks_Order_By>>;
5219
+ where?: InputMaybe<Dispatch_Blocks_Bool_Exp>;
5220
+ };
5221
+ export type Subscription_RootDispatch_Blocks_By_PkArgs = {
5222
+ id: Scalars['uuid']['input'];
5223
+ };
5224
+ export type Subscription_RootDispatch_Blocks_StreamArgs = {
5225
+ batch_size: Scalars['Int']['input'];
5226
+ cursor: Array<InputMaybe<Dispatch_Blocks_Stream_Cursor_Input>>;
5227
+ where?: InputMaybe<Dispatch_Blocks_Bool_Exp>;
5228
+ };
5229
+ export type Subscription_RootFx_RatesArgs = {
5230
+ distinct_on?: InputMaybe<Array<Fx_Rates_Select_Column>>;
4174
5231
  limit?: InputMaybe<Scalars['Int']['input']>;
4175
5232
  offset?: InputMaybe<Scalars['Int']['input']>;
4176
- order_by?: InputMaybe<Array<Executions_Visibility_Order_By>>;
4177
- where?: InputMaybe<Executions_Visibility_Bool_Exp>;
5233
+ order_by?: InputMaybe<Array<Fx_Rates_Order_By>>;
5234
+ where?: InputMaybe<Fx_Rates_Bool_Exp>;
5235
+ };
5236
+ export type Subscription_RootFx_Rates_By_PkArgs = {
5237
+ currency: Scalars['String']['input'];
4178
5238
  };
4179
- export type Subscription_RootExecutions_Visibility_StreamArgs = {
5239
+ export type Subscription_RootFx_Rates_StreamArgs = {
4180
5240
  batch_size: Scalars['Int']['input'];
4181
- cursor: Array<InputMaybe<Executions_Visibility_Stream_Cursor_Input>>;
4182
- where?: InputMaybe<Executions_Visibility_Bool_Exp>;
5241
+ cursor: Array<InputMaybe<Fx_Rates_Stream_Cursor_Input>>;
5242
+ where?: InputMaybe<Fx_Rates_Bool_Exp>;
4183
5243
  };
4184
5244
  export type Subscription_RootLocalesArgs = {
4185
5245
  distinct_on?: InputMaybe<Array<Locales_Select_Column>>;
@@ -4196,6 +5256,18 @@ export type Subscription_RootLocales_StreamArgs = {
4196
5256
  cursor: Array<InputMaybe<Locales_Stream_Cursor_Input>>;
4197
5257
  where?: InputMaybe<Locales_Bool_Exp>;
4198
5258
  };
5259
+ export type Subscription_RootLocalized_Product_PricesArgs = {
5260
+ distinct_on?: InputMaybe<Array<Localized_Product_Prices_Select_Column>>;
5261
+ limit?: InputMaybe<Scalars['Int']['input']>;
5262
+ offset?: InputMaybe<Scalars['Int']['input']>;
5263
+ order_by?: InputMaybe<Array<Localized_Product_Prices_Order_By>>;
5264
+ where?: InputMaybe<Localized_Product_Prices_Bool_Exp>;
5265
+ };
5266
+ export type Subscription_RootLocalized_Product_Prices_StreamArgs = {
5267
+ batch_size: Scalars['Int']['input'];
5268
+ cursor: Array<InputMaybe<Localized_Product_Prices_Stream_Cursor_Input>>;
5269
+ where?: InputMaybe<Localized_Product_Prices_Bool_Exp>;
5270
+ };
4199
5271
  export type Subscription_RootModel_CapabilitiesArgs = {
4200
5272
  distinct_on?: InputMaybe<Array<Model_Capabilities_Select_Column>>;
4201
5273
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -4265,6 +5337,33 @@ export type Subscription_RootNotifications_StreamArgs = {
4265
5337
  cursor: Array<InputMaybe<Notifications_Stream_Cursor_Input>>;
4266
5338
  where?: InputMaybe<Notifications_Bool_Exp>;
4267
5339
  };
5340
+ export type Subscription_RootPayment_Provider_Resolved_RowArgs = {
5341
+ distinct_on?: InputMaybe<Array<Payment_Provider_Resolved_Row_Select_Column>>;
5342
+ limit?: InputMaybe<Scalars['Int']['input']>;
5343
+ offset?: InputMaybe<Scalars['Int']['input']>;
5344
+ order_by?: InputMaybe<Array<Payment_Provider_Resolved_Row_Order_By>>;
5345
+ where?: InputMaybe<Payment_Provider_Resolved_Row_Bool_Exp>;
5346
+ };
5347
+ export type Subscription_RootPayment_Provider_Resolved_Row_StreamArgs = {
5348
+ batch_size: Scalars['Int']['input'];
5349
+ cursor: Array<InputMaybe<Payment_Provider_Resolved_Row_Stream_Cursor_Input>>;
5350
+ where?: InputMaybe<Payment_Provider_Resolved_Row_Bool_Exp>;
5351
+ };
5352
+ export type Subscription_RootPayment_ProvidersArgs = {
5353
+ distinct_on?: InputMaybe<Array<Payment_Providers_Select_Column>>;
5354
+ limit?: InputMaybe<Scalars['Int']['input']>;
5355
+ offset?: InputMaybe<Scalars['Int']['input']>;
5356
+ order_by?: InputMaybe<Array<Payment_Providers_Order_By>>;
5357
+ where?: InputMaybe<Payment_Providers_Bool_Exp>;
5358
+ };
5359
+ export type Subscription_RootPayment_Providers_By_PkArgs = {
5360
+ slug: Scalars['String']['input'];
5361
+ };
5362
+ export type Subscription_RootPayment_Providers_StreamArgs = {
5363
+ batch_size: Scalars['Int']['input'];
5364
+ cursor: Array<InputMaybe<Payment_Providers_Stream_Cursor_Input>>;
5365
+ where?: InputMaybe<Payment_Providers_Bool_Exp>;
5366
+ };
4268
5367
  export type Subscription_RootPersonal_Access_TokensArgs = {
4269
5368
  distinct_on?: InputMaybe<Array<Personal_Access_Tokens_Select_Column>>;
4270
5369
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -4372,6 +5471,13 @@ export type Subscription_RootPipelinesArgs = {
4372
5471
  order_by?: InputMaybe<Array<Pipelines_Order_By>>;
4373
5472
  where?: InputMaybe<Pipelines_Bool_Exp>;
4374
5473
  };
5474
+ export type Subscription_RootPipelines_AggregateArgs = {
5475
+ distinct_on?: InputMaybe<Array<Pipelines_Select_Column>>;
5476
+ limit?: InputMaybe<Scalars['Int']['input']>;
5477
+ offset?: InputMaybe<Scalars['Int']['input']>;
5478
+ order_by?: InputMaybe<Array<Pipelines_Order_By>>;
5479
+ where?: InputMaybe<Pipelines_Bool_Exp>;
5480
+ };
4375
5481
  export type Subscription_RootPipelines_By_PkArgs = {
4376
5482
  id: Scalars['uuid']['input'];
4377
5483
  };
@@ -4441,6 +5547,29 @@ export type Subscription_RootProviders_StreamArgs = {
4441
5547
  cursor: Array<InputMaybe<Providers_Stream_Cursor_Input>>;
4442
5548
  where?: InputMaybe<Providers_Bool_Exp>;
4443
5549
  };
5550
+ export type Subscription_RootResolve_Payment_ProvidersArgs = {
5551
+ args: Resolve_Payment_Providers_Args;
5552
+ distinct_on?: InputMaybe<Array<Payment_Provider_Resolved_Row_Select_Column>>;
5553
+ limit?: InputMaybe<Scalars['Int']['input']>;
5554
+ offset?: InputMaybe<Scalars['Int']['input']>;
5555
+ order_by?: InputMaybe<Array<Payment_Provider_Resolved_Row_Order_By>>;
5556
+ where?: InputMaybe<Payment_Provider_Resolved_Row_Bool_Exp>;
5557
+ };
5558
+ export type Subscription_RootSubscription_Plan_ChangesArgs = {
5559
+ distinct_on?: InputMaybe<Array<Subscription_Plan_Changes_Select_Column>>;
5560
+ limit?: InputMaybe<Scalars['Int']['input']>;
5561
+ offset?: InputMaybe<Scalars['Int']['input']>;
5562
+ order_by?: InputMaybe<Array<Subscription_Plan_Changes_Order_By>>;
5563
+ where?: InputMaybe<Subscription_Plan_Changes_Bool_Exp>;
5564
+ };
5565
+ export type Subscription_RootSubscription_Plan_Changes_By_PkArgs = {
5566
+ id: Scalars['uuid']['input'];
5567
+ };
5568
+ export type Subscription_RootSubscription_Plan_Changes_StreamArgs = {
5569
+ batch_size: Scalars['Int']['input'];
5570
+ cursor: Array<InputMaybe<Subscription_Plan_Changes_Stream_Cursor_Input>>;
5571
+ where?: InputMaybe<Subscription_Plan_Changes_Bool_Exp>;
5572
+ };
4444
5573
  export type Subscription_RootSubscriptionsArgs = {
4445
5574
  distinct_on?: InputMaybe<Array<Subscriptions_Select_Column>>;
4446
5575
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -4456,12 +5585,47 @@ export type Subscription_RootSubscriptions_StreamArgs = {
4456
5585
  cursor: Array<InputMaybe<Subscriptions_Stream_Cursor_Input>>;
4457
5586
  where?: InputMaybe<Subscriptions_Bool_Exp>;
4458
5587
  };
5588
+ export type Subscription_RootUser_Credit_Balance_BreakdownArgs = {
5589
+ distinct_on?: InputMaybe<Array<User_Credit_Balance_Breakdown_Select_Column>>;
5590
+ limit?: InputMaybe<Scalars['Int']['input']>;
5591
+ offset?: InputMaybe<Scalars['Int']['input']>;
5592
+ order_by?: InputMaybe<Array<User_Credit_Balance_Breakdown_Order_By>>;
5593
+ where?: InputMaybe<User_Credit_Balance_Breakdown_Bool_Exp>;
5594
+ };
5595
+ export type Subscription_RootUser_Credit_Balance_Breakdown_StreamArgs = {
5596
+ batch_size: Scalars['Int']['input'];
5597
+ cursor: Array<InputMaybe<User_Credit_Balance_Breakdown_Stream_Cursor_Input>>;
5598
+ where?: InputMaybe<User_Credit_Balance_Breakdown_Bool_Exp>;
5599
+ };
5600
+ export type Subscription_RootUser_Subscription_CreditsArgs = {
5601
+ distinct_on?: InputMaybe<Array<User_Subscription_Credits_Select_Column>>;
5602
+ limit?: InputMaybe<Scalars['Int']['input']>;
5603
+ offset?: InputMaybe<Scalars['Int']['input']>;
5604
+ order_by?: InputMaybe<Array<User_Subscription_Credits_Order_By>>;
5605
+ where?: InputMaybe<User_Subscription_Credits_Bool_Exp>;
5606
+ };
5607
+ export type Subscription_RootUser_Subscription_Credits_By_PkArgs = {
5608
+ user_id: Scalars['uuid']['input'];
5609
+ };
5610
+ export type Subscription_RootUser_Subscription_Credits_StreamArgs = {
5611
+ batch_size: Scalars['Int']['input'];
5612
+ cursor: Array<InputMaybe<User_Subscription_Credits_Stream_Cursor_Input>>;
5613
+ where?: InputMaybe<User_Subscription_Credits_Bool_Exp>;
5614
+ };
5615
+ export type Subscription_RootUsersArgs = {
5616
+ distinct_on?: InputMaybe<Array<Users_Select_Column>>;
5617
+ limit?: InputMaybe<Scalars['Int']['input']>;
5618
+ offset?: InputMaybe<Scalars['Int']['input']>;
5619
+ order_by?: InputMaybe<Array<Users_Order_By>>;
5620
+ where?: InputMaybe<Users_Bool_Exp>;
5621
+ };
4459
5622
  /** columns and relationships of "subscriptions" */
4460
5623
  export type Subscriptions = {
4461
5624
  __typename?: 'subscriptions';
4462
5625
  cancel_at_period_end: Scalars['Boolean']['output'];
4463
5626
  created_at: Scalars['timestamptz']['output'];
4464
5627
  id: Scalars['uuid']['output'];
5628
+ metadata?: Maybe<Scalars['jsonb']['output']>;
4465
5629
  period_end: Scalars['timestamptz']['output'];
4466
5630
  period_start: Scalars['timestamptz']['output'];
4467
5631
  /** An object relationship */
@@ -4471,6 +5635,12 @@ export type Subscriptions = {
4471
5635
  plan_version: Plan_Versions;
4472
5636
  plan_version_id: Scalars['uuid']['output'];
4473
5637
  status: Scalars['String']['output'];
5638
+ /** An object relationship */
5639
+ user: Users;
5640
+ };
5641
+ /** columns and relationships of "subscriptions" */
5642
+ export type SubscriptionsMetadataArgs = {
5643
+ path?: InputMaybe<Scalars['String']['input']>;
4474
5644
  };
4475
5645
  /** order by aggregate values of table "subscriptions" */
4476
5646
  export type Subscriptions_Aggregate_Order_By = {
@@ -4486,6 +5656,7 @@ export type Subscriptions_Bool_Exp = {
4486
5656
  cancel_at_period_end?: InputMaybe<Boolean_Comparison_Exp>;
4487
5657
  created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
4488
5658
  id?: InputMaybe<Uuid_Comparison_Exp>;
5659
+ metadata?: InputMaybe<Jsonb_Comparison_Exp>;
4489
5660
  period_end?: InputMaybe<Timestamptz_Comparison_Exp>;
4490
5661
  period_start?: InputMaybe<Timestamptz_Comparison_Exp>;
4491
5662
  plan?: InputMaybe<Plans_Bool_Exp>;
@@ -4493,6 +5664,7 @@ export type Subscriptions_Bool_Exp = {
4493
5664
  plan_version?: InputMaybe<Plan_Versions_Bool_Exp>;
4494
5665
  plan_version_id?: InputMaybe<Uuid_Comparison_Exp>;
4495
5666
  status?: InputMaybe<String_Comparison_Exp>;
5667
+ user?: InputMaybe<Users_Bool_Exp>;
4496
5668
  };
4497
5669
  /** order by max() on columns of table "subscriptions" */
4498
5670
  export type Subscriptions_Max_Order_By = {
@@ -4519,6 +5691,7 @@ export type Subscriptions_Order_By = {
4519
5691
  cancel_at_period_end?: InputMaybe<Order_By>;
4520
5692
  created_at?: InputMaybe<Order_By>;
4521
5693
  id?: InputMaybe<Order_By>;
5694
+ metadata?: InputMaybe<Order_By>;
4522
5695
  period_end?: InputMaybe<Order_By>;
4523
5696
  period_start?: InputMaybe<Order_By>;
4524
5697
  plan?: InputMaybe<Plans_Order_By>;
@@ -4526,6 +5699,7 @@ export type Subscriptions_Order_By = {
4526
5699
  plan_version?: InputMaybe<Plan_Versions_Order_By>;
4527
5700
  plan_version_id?: InputMaybe<Order_By>;
4528
5701
  status?: InputMaybe<Order_By>;
5702
+ user?: InputMaybe<Users_Order_By>;
4529
5703
  };
4530
5704
  /** select columns of table "subscriptions" */
4531
5705
  export declare enum Subscriptions_Select_Column {
@@ -4536,6 +5710,8 @@ export declare enum Subscriptions_Select_Column {
4536
5710
  /** column name */
4537
5711
  Id = "id",
4538
5712
  /** column name */
5713
+ Metadata = "metadata",
5714
+ /** column name */
4539
5715
  PeriodEnd = "period_end",
4540
5716
  /** column name */
4541
5717
  PeriodStart = "period_start",
@@ -4558,24 +5734,13 @@ export type Subscriptions_Stream_Cursor_Value_Input = {
4558
5734
  cancel_at_period_end?: InputMaybe<Scalars['Boolean']['input']>;
4559
5735
  created_at?: InputMaybe<Scalars['timestamptz']['input']>;
4560
5736
  id?: InputMaybe<Scalars['uuid']['input']>;
5737
+ metadata?: InputMaybe<Scalars['jsonb']['input']>;
4561
5738
  period_end?: InputMaybe<Scalars['timestamptz']['input']>;
4562
5739
  period_start?: InputMaybe<Scalars['timestamptz']['input']>;
4563
5740
  plan_id?: InputMaybe<Scalars['uuid']['input']>;
4564
5741
  plan_version_id?: InputMaybe<Scalars['uuid']['input']>;
4565
5742
  status?: InputMaybe<Scalars['String']['input']>;
4566
5743
  };
4567
- /** Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. */
4568
- export type Timestamp_Comparison_Exp = {
4569
- _eq?: InputMaybe<Scalars['timestamp']['input']>;
4570
- _gt?: InputMaybe<Scalars['timestamp']['input']>;
4571
- _gte?: InputMaybe<Scalars['timestamp']['input']>;
4572
- _in?: InputMaybe<Array<Scalars['timestamp']['input']>>;
4573
- _is_null?: InputMaybe<Scalars['Boolean']['input']>;
4574
- _lt?: InputMaybe<Scalars['timestamp']['input']>;
4575
- _lte?: InputMaybe<Scalars['timestamp']['input']>;
4576
- _neq?: InputMaybe<Scalars['timestamp']['input']>;
4577
- _nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;
4578
- };
4579
5744
  /** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */
4580
5745
  export type Timestamptz_Comparison_Exp = {
4581
5746
  _eq?: InputMaybe<Scalars['timestamptz']['input']>;
@@ -4588,6 +5753,133 @@ export type Timestamptz_Comparison_Exp = {
4588
5753
  _neq?: InputMaybe<Scalars['timestamptz']['input']>;
4589
5754
  _nin?: InputMaybe<Array<Scalars['timestamptz']['input']>>;
4590
5755
  };
5756
+ /** columns and relationships of "user_credit_balance_breakdown" */
5757
+ export type User_Credit_Balance_Breakdown = {
5758
+ __typename?: 'user_credit_balance_breakdown';
5759
+ expiring_mc?: Maybe<Scalars['bigint']['output']>;
5760
+ next_expiry_at?: Maybe<Scalars['timestamptz']['output']>;
5761
+ retry_mc?: Maybe<Scalars['bigint']['output']>;
5762
+ subscription_mc?: Maybe<Scalars['bigint']['output']>;
5763
+ user_id?: Maybe<Scalars['uuid']['output']>;
5764
+ };
5765
+ /** Boolean expression to filter rows from the table "user_credit_balance_breakdown". All fields are combined with a logical 'AND'. */
5766
+ export type User_Credit_Balance_Breakdown_Bool_Exp = {
5767
+ _and?: InputMaybe<Array<User_Credit_Balance_Breakdown_Bool_Exp>>;
5768
+ _not?: InputMaybe<User_Credit_Balance_Breakdown_Bool_Exp>;
5769
+ _or?: InputMaybe<Array<User_Credit_Balance_Breakdown_Bool_Exp>>;
5770
+ expiring_mc?: InputMaybe<Bigint_Comparison_Exp>;
5771
+ next_expiry_at?: InputMaybe<Timestamptz_Comparison_Exp>;
5772
+ retry_mc?: InputMaybe<Bigint_Comparison_Exp>;
5773
+ subscription_mc?: InputMaybe<Bigint_Comparison_Exp>;
5774
+ user_id?: InputMaybe<Uuid_Comparison_Exp>;
5775
+ };
5776
+ /** Ordering options when selecting data from "user_credit_balance_breakdown". */
5777
+ export type User_Credit_Balance_Breakdown_Order_By = {
5778
+ expiring_mc?: InputMaybe<Order_By>;
5779
+ next_expiry_at?: InputMaybe<Order_By>;
5780
+ retry_mc?: InputMaybe<Order_By>;
5781
+ subscription_mc?: InputMaybe<Order_By>;
5782
+ user_id?: InputMaybe<Order_By>;
5783
+ };
5784
+ /** select columns of table "user_credit_balance_breakdown" */
5785
+ export declare enum User_Credit_Balance_Breakdown_Select_Column {
5786
+ /** column name */
5787
+ ExpiringMc = "expiring_mc",
5788
+ /** column name */
5789
+ NextExpiryAt = "next_expiry_at",
5790
+ /** column name */
5791
+ RetryMc = "retry_mc",
5792
+ /** column name */
5793
+ SubscriptionMc = "subscription_mc",
5794
+ /** column name */
5795
+ UserId = "user_id"
5796
+ }
5797
+ /** Streaming cursor of the table "user_credit_balance_breakdown" */
5798
+ export type User_Credit_Balance_Breakdown_Stream_Cursor_Input = {
5799
+ /** Stream column input with initial value */
5800
+ initial_value: User_Credit_Balance_Breakdown_Stream_Cursor_Value_Input;
5801
+ /** cursor ordering */
5802
+ ordering?: InputMaybe<Cursor_Ordering>;
5803
+ };
5804
+ /** Initial value of the column from where the streaming should start */
5805
+ export type User_Credit_Balance_Breakdown_Stream_Cursor_Value_Input = {
5806
+ expiring_mc?: InputMaybe<Scalars['bigint']['input']>;
5807
+ next_expiry_at?: InputMaybe<Scalars['timestamptz']['input']>;
5808
+ retry_mc?: InputMaybe<Scalars['bigint']['input']>;
5809
+ subscription_mc?: InputMaybe<Scalars['bigint']['input']>;
5810
+ user_id?: InputMaybe<Scalars['uuid']['input']>;
5811
+ };
5812
+ /** columns and relationships of "user_subscription_credits" */
5813
+ export type User_Subscription_Credits = {
5814
+ __typename?: 'user_subscription_credits';
5815
+ expires_at?: Maybe<Scalars['timestamptz']['output']>;
5816
+ remaining_mc: Scalars['bigint']['output'];
5817
+ updated_at: Scalars['timestamptz']['output'];
5818
+ user_id: Scalars['uuid']['output'];
5819
+ };
5820
+ /** Boolean expression to filter rows from the table "user_subscription_credits". All fields are combined with a logical 'AND'. */
5821
+ export type User_Subscription_Credits_Bool_Exp = {
5822
+ _and?: InputMaybe<Array<User_Subscription_Credits_Bool_Exp>>;
5823
+ _not?: InputMaybe<User_Subscription_Credits_Bool_Exp>;
5824
+ _or?: InputMaybe<Array<User_Subscription_Credits_Bool_Exp>>;
5825
+ expires_at?: InputMaybe<Timestamptz_Comparison_Exp>;
5826
+ remaining_mc?: InputMaybe<Bigint_Comparison_Exp>;
5827
+ updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
5828
+ user_id?: InputMaybe<Uuid_Comparison_Exp>;
5829
+ };
5830
+ /** Ordering options when selecting data from "user_subscription_credits". */
5831
+ export type User_Subscription_Credits_Order_By = {
5832
+ expires_at?: InputMaybe<Order_By>;
5833
+ remaining_mc?: InputMaybe<Order_By>;
5834
+ updated_at?: InputMaybe<Order_By>;
5835
+ user_id?: InputMaybe<Order_By>;
5836
+ };
5837
+ /** select columns of table "user_subscription_credits" */
5838
+ export declare enum User_Subscription_Credits_Select_Column {
5839
+ /** column name */
5840
+ ExpiresAt = "expires_at",
5841
+ /** column name */
5842
+ RemainingMc = "remaining_mc",
5843
+ /** column name */
5844
+ UpdatedAt = "updated_at",
5845
+ /** column name */
5846
+ UserId = "user_id"
5847
+ }
5848
+ /** Streaming cursor of the table "user_subscription_credits" */
5849
+ export type User_Subscription_Credits_Stream_Cursor_Input = {
5850
+ /** Stream column input with initial value */
5851
+ initial_value: User_Subscription_Credits_Stream_Cursor_Value_Input;
5852
+ /** cursor ordering */
5853
+ ordering?: InputMaybe<Cursor_Ordering>;
5854
+ };
5855
+ /** Initial value of the column from where the streaming should start */
5856
+ export type User_Subscription_Credits_Stream_Cursor_Value_Input = {
5857
+ expires_at?: InputMaybe<Scalars['timestamptz']['input']>;
5858
+ remaining_mc?: InputMaybe<Scalars['bigint']['input']>;
5859
+ updated_at?: InputMaybe<Scalars['timestamptz']['input']>;
5860
+ user_id?: InputMaybe<Scalars['uuid']['input']>;
5861
+ };
5862
+ /** columns and relationships of "users" */
5863
+ export type Users = {
5864
+ __typename?: 'users';
5865
+ updated_at: Scalars['timestamptz']['output'];
5866
+ };
5867
+ /** Boolean expression to filter rows from the table "users". All fields are combined with a logical 'AND'. */
5868
+ export type Users_Bool_Exp = {
5869
+ _and?: InputMaybe<Array<Users_Bool_Exp>>;
5870
+ _not?: InputMaybe<Users_Bool_Exp>;
5871
+ _or?: InputMaybe<Array<Users_Bool_Exp>>;
5872
+ updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
5873
+ };
5874
+ /** Ordering options when selecting data from "users". */
5875
+ export type Users_Order_By = {
5876
+ updated_at?: InputMaybe<Order_By>;
5877
+ };
5878
+ /** select columns of table "users" */
5879
+ export declare enum Users_Select_Column {
5880
+ /** column name */
5881
+ UpdatedAt = "updated_at"
5882
+ }
4591
5883
  /** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */
4592
5884
  export type Uuid_Comparison_Exp = {
4593
5885
  _eq?: InputMaybe<Scalars['uuid']['input']>;
@@ -4981,6 +6273,31 @@ export type RegisterMutation = {
4981
6273
  affiliate_id?: string | null;
4982
6274
  };
4983
6275
  };
6276
+ export type CreateAuthHandoffCodeMutationVariables = Exact<{
6277
+ redirect_uri: Scalars['String']['input'];
6278
+ code_challenge: Scalars['String']['input'];
6279
+ }>;
6280
+ export type CreateAuthHandoffCodeMutation = {
6281
+ __typename?: 'mutation_root';
6282
+ create_auth_handoff_code: {
6283
+ __typename?: 'create_auth_handoff_code_output';
6284
+ code: string;
6285
+ expires_at: string;
6286
+ };
6287
+ };
6288
+ export type ExchangeAuthHandoffCodeMutationVariables = Exact<{
6289
+ code: Scalars['String']['input'];
6290
+ redirect_uri: Scalars['String']['input'];
6291
+ code_verifier: Scalars['String']['input'];
6292
+ }>;
6293
+ export type ExchangeAuthHandoffCodeMutation = {
6294
+ __typename?: 'mutation_root';
6295
+ exchange_auth_handoff_code: {
6296
+ __typename?: 'exchange_auth_handoff_code_output';
6297
+ token: string;
6298
+ expires_at: string;
6299
+ };
6300
+ };
4984
6301
  export type LogoutMutationVariables = Exact<{
4985
6302
  [key: string]: never;
4986
6303
  }>;
@@ -5070,6 +6387,127 @@ export type GetCreditHistoryQuery = {
5070
6387
  reservation_mc?: number | null;
5071
6388
  }>;
5072
6389
  };
6390
+ export type CreatePaymentMutationVariables = Exact<{
6391
+ provider: Scalars['String']['input'];
6392
+ attempt_id: Scalars['uuid']['input'];
6393
+ credit_pack_slug?: InputMaybe<Scalars['String']['input']>;
6394
+ plan_slug?: InputMaybe<Scalars['String']['input']>;
6395
+ currency_id?: InputMaybe<Scalars['String']['input']>;
6396
+ country?: InputMaybe<Scalars['String']['input']>;
6397
+ recurring_consent?: InputMaybe<Scalars['Boolean']['input']>;
6398
+ }>;
6399
+ export type CreatePaymentMutation = {
6400
+ __typename?: 'mutation_root';
6401
+ create_payment: {
6402
+ __typename?: 'payment_output';
6403
+ success: boolean;
6404
+ payment_id: string;
6405
+ deposit_address?: string | null;
6406
+ expected_usdt?: number | null;
6407
+ credits: number;
6408
+ network?: string | null;
6409
+ currency_id?: string | null;
6410
+ expires_at: string;
6411
+ provider: string;
6412
+ status: string;
6413
+ asset?: string | null;
6414
+ amount: string;
6415
+ remaining_amount?: string | null;
6416
+ payment_uri?: string | null;
6417
+ qr_code_data_url?: string | null;
6418
+ top_up_payment_uri?: string | null;
6419
+ top_up_qr_code_data_url?: string | null;
6420
+ required_confirmations?: number | null;
6421
+ confirmations?: number | null;
6422
+ amount_paid_usdt?: number | null;
6423
+ granted_at?: string | null;
6424
+ tx_hash?: string | null;
6425
+ currency?: string | null;
6426
+ detail?: string | null;
6427
+ };
6428
+ };
6429
+ export type GetUserSubscriptionCreditsQueryVariables = Exact<{
6430
+ [key: string]: never;
6431
+ }>;
6432
+ export type GetUserSubscriptionCreditsQuery = {
6433
+ __typename?: 'query_root';
6434
+ user_credit_balance_breakdown: Array<{
6435
+ __typename?: 'user_credit_balance_breakdown';
6436
+ subscription_mc?: any | null;
6437
+ retry_mc?: any | null;
6438
+ expiring_mc?: any | null;
6439
+ next_expiry_at?: any | null;
6440
+ }>;
6441
+ };
6442
+ export type GetCryptoPaymentCurrenciesQueryVariables = Exact<{
6443
+ provider: Scalars['String']['input'];
6444
+ }>;
6445
+ export type GetCryptoPaymentCurrenciesQuery = {
6446
+ __typename?: 'query_root';
6447
+ crypto_payment_currencies: Array<{
6448
+ __typename?: 'crypto_payment_currencies';
6449
+ currency_id: string;
6450
+ network: string;
6451
+ asset: string;
6452
+ label: string;
6453
+ decimals: number;
6454
+ min_usdt: any;
6455
+ }>;
6456
+ };
6457
+ export type GetPaymentQueryVariables = Exact<{
6458
+ provider: Scalars['String']['input'];
6459
+ id: Scalars['uuid']['input'];
6460
+ }>;
6461
+ export type GetPaymentQuery = {
6462
+ __typename?: 'query_root';
6463
+ get_payment_status: {
6464
+ __typename?: 'payment_output';
6465
+ success: boolean;
6466
+ payment_id: string;
6467
+ provider: string;
6468
+ status: string;
6469
+ credits: number;
6470
+ expected_usdt?: number | null;
6471
+ amount_paid_usdt?: number | null;
6472
+ deposit_address?: string | null;
6473
+ currency_id?: string | null;
6474
+ network?: string | null;
6475
+ expires_at: string;
6476
+ granted_at?: string | null;
6477
+ tx_hash?: string | null;
6478
+ asset?: string | null;
6479
+ amount: string;
6480
+ remaining_amount?: string | null;
6481
+ payment_uri?: string | null;
6482
+ qr_code_data_url?: string | null;
6483
+ top_up_payment_uri?: string | null;
6484
+ top_up_qr_code_data_url?: string | null;
6485
+ required_confirmations?: number | null;
6486
+ confirmations?: number | null;
6487
+ currency?: string | null;
6488
+ detail?: string | null;
6489
+ };
6490
+ };
6491
+ export type GetPaymentsQueryVariables = Exact<{
6492
+ limit?: InputMaybe<Scalars['Int']['input']>;
6493
+ offset?: InputMaybe<Scalars['Int']['input']>;
6494
+ }>;
6495
+ export type GetPaymentsQuery = {
6496
+ __typename?: 'query_root';
6497
+ payments: Array<{
6498
+ __typename?: 'payment_output';
6499
+ payment_id: string;
6500
+ provider: string;
6501
+ kind?: string | null;
6502
+ status: string;
6503
+ credits: number;
6504
+ amount: string;
6505
+ currency?: string | null;
6506
+ expires_at: string;
6507
+ granted_at?: string | null;
6508
+ created_at?: string | null;
6509
+ }>;
6510
+ };
5073
6511
  export type ModelsQueryVariables = Exact<{
5074
6512
  [key: string]: never;
5075
6513
  }>;
@@ -5084,7 +6522,11 @@ export type ModelsQuery = {
5084
6522
  aliases: Array<string>;
5085
6523
  description: string;
5086
6524
  long_description?: string | null;
6525
+ icon_url?: string | null;
6526
+ poster_url?: string | null;
6527
+ max_input_images?: number | null;
5087
6528
  featured: boolean;
6529
+ quality_score?: any | null;
5088
6530
  sort_order: number;
5089
6531
  provider_info: {
5090
6532
  __typename?: 'providers';
@@ -5098,6 +6540,8 @@ export type ModelsQuery = {
5098
6540
  __typename?: 'pipeline_models';
5099
6541
  pipeline_slug: string;
5100
6542
  sort_order: number;
6543
+ input_schema: any;
6544
+ auto_route_order?: number | null;
5101
6545
  }>;
5102
6546
  translations: Array<{
5103
6547
  __typename?: 'model_translations';
@@ -5152,6 +6596,25 @@ export type MarkAllNotificationsReadMutation = {
5152
6596
  affected_rows: number;
5153
6597
  } | null;
5154
6598
  };
6599
+ export type GetCheckoutProvidersQueryVariables = Exact<{
6600
+ country: Scalars['String']['input'];
6601
+ platform: Scalars['String']['input'];
6602
+ locale: Scalars['String']['input'];
6603
+ }>;
6604
+ export type GetCheckoutProvidersQuery = {
6605
+ __typename?: 'query_root';
6606
+ resolve_payment_providers: Array<{
6607
+ __typename?: 'payment_provider_resolved_row';
6608
+ slug?: string | null;
6609
+ kind?: string | null;
6610
+ label?: string | null;
6611
+ description?: string | null;
6612
+ fee_bps?: number | null;
6613
+ price_source?: string | null;
6614
+ sort_order?: number | null;
6615
+ supports_recurring?: boolean | null;
6616
+ }>;
6617
+ };
5155
6618
  export type GetPipelinesQueryVariables = Exact<{
5156
6619
  [key: string]: never;
5157
6620
  }>;
@@ -5203,6 +6666,7 @@ export type GetPipelinesQuery = {
5203
6666
  __typename?: 'models';
5204
6667
  slug: string;
5205
6668
  label: string;
6669
+ public_name?: string | null;
5206
6670
  } | null;
5207
6671
  translations: Array<{
5208
6672
  __typename?: 'pipeline_examples_translations';
@@ -5235,6 +6699,73 @@ export type GetPipelinesListQuery = {
5235
6699
  cancellable: boolean;
5236
6700
  }>;
5237
6701
  };
6702
+ export type SearchPipelinesQueryVariables = Exact<{
6703
+ limit?: InputMaybe<Scalars['Int']['input']>;
6704
+ offset?: InputMaybe<Scalars['Int']['input']>;
6705
+ search?: InputMaybe<Scalars['String']['input']>;
6706
+ }>;
6707
+ export type SearchPipelinesQuery = {
6708
+ __typename?: 'query_root';
6709
+ pipelines: Array<{
6710
+ __typename?: 'pipelines';
6711
+ id: any;
6712
+ slug: string;
6713
+ name: string;
6714
+ description?: string | null;
6715
+ category: string;
6716
+ icon_url?: string | null;
6717
+ preview_url?: string | null;
6718
+ providers: Array<string>;
6719
+ models: Array<string>;
6720
+ tags: Array<string>;
6721
+ hints: any;
6722
+ cancellable: boolean;
6723
+ translations: Array<{
6724
+ __typename?: 'pipeline_translations';
6725
+ locale: string;
6726
+ name?: string | null;
6727
+ description?: string | null;
6728
+ }>;
6729
+ }>;
6730
+ pipelines_aggregate: {
6731
+ __typename?: 'pipelines_aggregate';
6732
+ aggregate?: {
6733
+ __typename?: 'pipelines_aggregate_fields';
6734
+ count: number;
6735
+ } | null;
6736
+ };
6737
+ };
6738
+ export type GetPipelineBySlugQueryVariables = Exact<{
6739
+ slug: Scalars['String']['input'];
6740
+ }>;
6741
+ export type GetPipelineBySlugQuery = {
6742
+ __typename?: 'query_root';
6743
+ pipelines: Array<{
6744
+ __typename?: 'pipelines';
6745
+ id: any;
6746
+ slug: string;
6747
+ name: string;
6748
+ description?: string | null;
6749
+ category: string;
6750
+ icon_url?: string | null;
6751
+ preview_url?: string | null;
6752
+ providers: Array<string>;
6753
+ models: Array<string>;
6754
+ input_schema: any;
6755
+ ui_schema: any;
6756
+ output_schema: any;
6757
+ tags: Array<string>;
6758
+ hints: any;
6759
+ cancellable: boolean;
6760
+ translations: Array<{
6761
+ __typename?: 'pipeline_translations';
6762
+ locale: string;
6763
+ name?: string | null;
6764
+ description?: string | null;
6765
+ form_i18n?: any | null;
6766
+ }>;
6767
+ }>;
6768
+ };
5238
6769
  export type EstimatePipelineCostQueryVariables = Exact<{
5239
6770
  pipeline_slug: Scalars['String']['input'];
5240
6771
  input: Scalars['jsonb']['input'];
@@ -5251,7 +6782,7 @@ export type EstimatePipelineCostQuery = {
5251
6782
  routed_reason_code?: string | null;
5252
6783
  routed_reason_params?: any | null;
5253
6784
  incompatible_models?: any | null;
5254
- engine_caps?: any | null;
6785
+ model_input_schema?: any | null;
5255
6786
  } | null;
5256
6787
  };
5257
6788
  export type PipelineModelsQueryVariables = Exact<{
@@ -5263,10 +6794,13 @@ export type PipelineModelsQuery = {
5263
6794
  __typename?: 'pipeline_models';
5264
6795
  model_slug: string;
5265
6796
  sort_order: number;
6797
+ input_schema: any;
6798
+ auto_route_order?: number | null;
5266
6799
  model: {
5267
6800
  __typename?: 'models';
5268
6801
  slug: string;
5269
6802
  label: string;
6803
+ public_name?: string | null;
5270
6804
  description: string;
5271
6805
  provider: string;
5272
6806
  translations: Array<{
@@ -5337,6 +6871,11 @@ export type GetPipelineRunQuery = {
5337
6871
  input_schema: any;
5338
6872
  ui_schema: any;
5339
6873
  cancellable: boolean;
6874
+ translations: Array<{
6875
+ __typename?: 'pipeline_translations';
6876
+ locale: string;
6877
+ name?: string | null;
6878
+ }>;
5340
6879
  };
5341
6880
  assets: Array<{
5342
6881
  __typename?: 'assets';
@@ -5381,6 +6920,11 @@ export type GetPipelineRunsQuery = {
5381
6920
  input_schema: any;
5382
6921
  ui_schema: any;
5383
6922
  cancellable: boolean;
6923
+ translations: Array<{
6924
+ __typename?: 'pipeline_translations';
6925
+ locale: string;
6926
+ name?: string | null;
6927
+ }>;
5384
6928
  };
5385
6929
  workflow_execution?: {
5386
6930
  __typename?: 'executions_visibility';
@@ -5497,6 +7041,20 @@ export type SetRunShareMutation = {
5497
7041
  share_watermark: boolean;
5498
7042
  } | null;
5499
7043
  };
7044
+ export type GetDispatchBlocksQueryVariables = Exact<{
7045
+ [key: string]: never;
7046
+ }>;
7047
+ export type GetDispatchBlocksQuery = {
7048
+ __typename?: 'query_root';
7049
+ dispatch_blocks: Array<{
7050
+ __typename?: 'dispatch_blocks';
7051
+ id: any;
7052
+ pipeline_slug?: string | null;
7053
+ user_id?: any | null;
7054
+ reason: string;
7055
+ created_at: any;
7056
+ }>;
7057
+ };
5500
7058
  export type GetPlansQueryVariables = Exact<{
5501
7059
  [key: string]: never;
5502
7060
  }>;
@@ -5553,6 +7111,27 @@ export type GetCreditPacksQuery = {
5553
7111
  }>;
5554
7112
  }>;
5555
7113
  };
7114
+ export type GetLocalizedPricesQueryVariables = Exact<{
7115
+ country: Scalars['String']['input'];
7116
+ }>;
7117
+ export type GetLocalizedPricesQuery = {
7118
+ __typename?: 'query_root';
7119
+ localized_product_prices: Array<{
7120
+ __typename?: 'localized_product_prices';
7121
+ product_kind?: string | null;
7122
+ product_slug?: string | null;
7123
+ country?: string | null;
7124
+ currency?: string | null;
7125
+ usd_price_cents?: number | null;
7126
+ converted_price?: any | null;
7127
+ }>;
7128
+ countries: Array<{
7129
+ __typename?: 'countries';
7130
+ code: string;
7131
+ name: string;
7132
+ currency?: string | null;
7133
+ }>;
7134
+ };
5556
7135
  export type GetSubscriptionQueryVariables = Exact<{
5557
7136
  [key: string]: never;
5558
7137
  }>;
@@ -5567,6 +7146,7 @@ export type GetSubscriptionQuery = {
5567
7146
  period_start: any;
5568
7147
  period_end: any;
5569
7148
  cancel_at_period_end: boolean;
7149
+ metadata?: any | null;
5570
7150
  plan: {
5571
7151
  __typename?: 'plans';
5572
7152
  slug: string;
@@ -5584,16 +7164,51 @@ export type GetSubscriptionQuery = {
5584
7164
  };
5585
7165
  }>;
5586
7166
  };
5587
- export type CreateCheckoutSessionMutationVariables = Exact<{
5588
- whop_plan_id: Scalars['String']['input'];
5589
- affiliate_code?: InputMaybe<Scalars['String']['input']>;
7167
+ export type GetPendingSubscriptionPlanChangeQueryVariables = Exact<{
7168
+ [key: string]: never;
5590
7169
  }>;
5591
- export type CreateCheckoutSessionMutation = {
7170
+ export type GetPendingSubscriptionPlanChangeQuery = {
7171
+ __typename?: 'query_root';
7172
+ subscription_plan_changes: Array<{
7173
+ __typename?: 'subscription_plan_changes';
7174
+ id: any;
7175
+ kind: string;
7176
+ status: string;
7177
+ effective_at: any;
7178
+ to_plan_version: {
7179
+ __typename?: 'plan_versions';
7180
+ id: any;
7181
+ plan: {
7182
+ __typename?: 'plans';
7183
+ slug: string;
7184
+ name: string;
7185
+ sort_order: number;
7186
+ };
7187
+ };
7188
+ }>;
7189
+ };
7190
+ export type ScheduleSubscriptionPlanChangeMutationVariables = Exact<{
7191
+ plan_slug: Scalars['String']['input'];
7192
+ }>;
7193
+ export type ScheduleSubscriptionPlanChangeMutation = {
5592
7194
  __typename?: 'mutation_root';
5593
- create_checkout_session: {
5594
- __typename?: 'create_checkout_session_output';
7195
+ schedule_subscription_plan_change: {
7196
+ __typename?: 'subscription_plan_change_output';
5595
7197
  success: boolean;
5596
- url: string;
7198
+ change_id: any;
7199
+ status: string;
7200
+ effective_at: any;
7201
+ };
7202
+ };
7203
+ export type CancelSubscriptionPlanChangeMutationVariables = Exact<{
7204
+ [key: string]: never;
7205
+ }>;
7206
+ export type CancelSubscriptionPlanChangeMutation = {
7207
+ __typename?: 'mutation_root';
7208
+ cancel_subscription_plan_change: {
7209
+ __typename?: 'cancel_subscription_plan_change_output';
7210
+ success: boolean;
7211
+ cancelled: boolean;
5597
7212
  };
5598
7213
  };
5599
7214
  export type WatchPipelineRunSubscriptionVariables = Exact<{
@@ -5662,6 +7277,16 @@ export type WatchNotificationsSubscription = {
5662
7277
  created_at: any;
5663
7278
  }>;
5664
7279
  };
7280
+ export type WatchBillingUpdatesSubscriptionVariables = Exact<{
7281
+ [key: string]: never;
7282
+ }>;
7283
+ export type WatchBillingUpdatesSubscription = {
7284
+ __typename?: 'subscription_root';
7285
+ users: Array<{
7286
+ __typename?: 'users';
7287
+ updated_at: any;
7288
+ }>;
7289
+ };
5665
7290
  export type GetMyApiKeysQueryVariables = Exact<{
5666
7291
  [key: string]: never;
5667
7292
  }>;
@@ -5745,6 +7370,8 @@ export declare const DeleteAssetActionDocument: DocumentNode;
5745
7370
  export declare const UpdateAssetTagsDocument: DocumentNode;
5746
7371
  export declare const LoginDocument: DocumentNode;
5747
7372
  export declare const RegisterDocument: DocumentNode;
7373
+ export declare const CreateAuthHandoffCodeDocument: DocumentNode;
7374
+ export declare const ExchangeAuthHandoffCodeDocument: DocumentNode;
5748
7375
  export declare const LogoutDocument: DocumentNode;
5749
7376
  export declare const InitVerificationFlowDocument: DocumentNode;
5750
7377
  export declare const SubmitVerificationCodeDocument: DocumentNode;
@@ -5752,12 +7379,20 @@ export declare const RequestPasswordResetDocument: DocumentNode;
5752
7379
  export declare const ResetPasswordDocument: DocumentNode;
5753
7380
  export declare const GetCreditBalanceDocument: DocumentNode;
5754
7381
  export declare const GetCreditHistoryDocument: DocumentNode;
7382
+ export declare const CreatePaymentDocument: DocumentNode;
7383
+ export declare const GetUserSubscriptionCreditsDocument: DocumentNode;
7384
+ export declare const GetCryptoPaymentCurrenciesDocument: DocumentNode;
7385
+ export declare const GetPaymentDocument: DocumentNode;
7386
+ export declare const GetPaymentsDocument: DocumentNode;
5755
7387
  export declare const ModelsDocument: DocumentNode;
5756
7388
  export declare const GetNotificationsDocument: DocumentNode;
5757
7389
  export declare const MarkNotificationReadDocument: DocumentNode;
5758
7390
  export declare const MarkAllNotificationsReadDocument: DocumentNode;
7391
+ export declare const GetCheckoutProvidersDocument: DocumentNode;
5759
7392
  export declare const GetPipelinesDocument: DocumentNode;
5760
7393
  export declare const GetPipelinesListDocument: DocumentNode;
7394
+ export declare const SearchPipelinesDocument: DocumentNode;
7395
+ export declare const GetPipelineBySlugDocument: DocumentNode;
5761
7396
  export declare const EstimatePipelineCostDocument: DocumentNode;
5762
7397
  export declare const PipelineModelsDocument: DocumentNode;
5763
7398
  export declare const PipelinePricingDocument: DocumentNode;
@@ -5768,13 +7403,18 @@ export declare const GetPipelineRunsDocument: DocumentNode;
5768
7403
  export declare const GetPipelineRunsBySlugDocument: DocumentNode;
5769
7404
  export declare const GetActivePipelineRunsDocument: DocumentNode;
5770
7405
  export declare const SetRunShareDocument: DocumentNode;
7406
+ export declare const GetDispatchBlocksDocument: DocumentNode;
5771
7407
  export declare const GetPlansDocument: DocumentNode;
5772
7408
  export declare const GetCreditPacksDocument: DocumentNode;
7409
+ export declare const GetLocalizedPricesDocument: DocumentNode;
5773
7410
  export declare const GetSubscriptionDocument: DocumentNode;
5774
- export declare const CreateCheckoutSessionDocument: DocumentNode;
7411
+ export declare const GetPendingSubscriptionPlanChangeDocument: DocumentNode;
7412
+ export declare const ScheduleSubscriptionPlanChangeDocument: DocumentNode;
7413
+ export declare const CancelSubscriptionPlanChangeDocument: DocumentNode;
5775
7414
  export declare const WatchPipelineRunDocument: DocumentNode;
5776
7415
  export declare const WatchActivePipelineRunsDocument: DocumentNode;
5777
7416
  export declare const WatchNotificationsDocument: DocumentNode;
7417
+ export declare const WatchBillingUpdatesDocument: DocumentNode;
5778
7418
  export declare const GetMyApiKeysDocument: DocumentNode;
5779
7419
  export declare const CreatePersonalAccessTokenDocument: DocumentNode;
5780
7420
  export declare const RevokePersonalAccessTokenDocument: DocumentNode;
@@ -5807,6 +7447,8 @@ export declare function getSdk<C>(requester: Requester<C>): {
5807
7447
  UpdateAssetTags(variables: UpdateAssetTagsMutationVariables, options?: C): Promise<UpdateAssetTagsMutation>;
5808
7448
  Login(variables: LoginMutationVariables, options?: C): Promise<LoginMutation>;
5809
7449
  Register(variables: RegisterMutationVariables, options?: C): Promise<RegisterMutation>;
7450
+ CreateAuthHandoffCode(variables: CreateAuthHandoffCodeMutationVariables, options?: C): Promise<CreateAuthHandoffCodeMutation>;
7451
+ ExchangeAuthHandoffCode(variables: ExchangeAuthHandoffCodeMutationVariables, options?: C): Promise<ExchangeAuthHandoffCodeMutation>;
5810
7452
  Logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
5811
7453
  InitVerificationFlow(variables?: InitVerificationFlowMutationVariables, options?: C): Promise<InitVerificationFlowMutation>;
5812
7454
  SubmitVerificationCode(variables: SubmitVerificationCodeMutationVariables, options?: C): Promise<SubmitVerificationCodeMutation>;
@@ -5814,12 +7456,20 @@ export declare function getSdk<C>(requester: Requester<C>): {
5814
7456
  ResetPassword(variables: ResetPasswordMutationVariables, options?: C): Promise<ResetPasswordMutation>;
5815
7457
  GetCreditBalance(variables?: GetCreditBalanceQueryVariables, options?: C): Promise<GetCreditBalanceQuery>;
5816
7458
  GetCreditHistory(variables?: GetCreditHistoryQueryVariables, options?: C): Promise<GetCreditHistoryQuery>;
7459
+ CreatePayment(variables: CreatePaymentMutationVariables, options?: C): Promise<CreatePaymentMutation>;
7460
+ GetUserSubscriptionCredits(variables?: GetUserSubscriptionCreditsQueryVariables, options?: C): Promise<GetUserSubscriptionCreditsQuery>;
7461
+ GetCryptoPaymentCurrencies(variables: GetCryptoPaymentCurrenciesQueryVariables, options?: C): Promise<GetCryptoPaymentCurrenciesQuery>;
7462
+ GetPayment(variables: GetPaymentQueryVariables, options?: C): Promise<GetPaymentQuery>;
7463
+ GetPayments(variables?: GetPaymentsQueryVariables, options?: C): Promise<GetPaymentsQuery>;
5817
7464
  Models(variables?: ModelsQueryVariables, options?: C): Promise<ModelsQuery>;
5818
7465
  GetNotifications(variables: GetNotificationsQueryVariables, options?: C): Promise<GetNotificationsQuery>;
5819
7466
  MarkNotificationRead(variables: MarkNotificationReadMutationVariables, options?: C): Promise<MarkNotificationReadMutation>;
5820
7467
  MarkAllNotificationsRead(variables?: MarkAllNotificationsReadMutationVariables, options?: C): Promise<MarkAllNotificationsReadMutation>;
7468
+ GetCheckoutProviders(variables: GetCheckoutProvidersQueryVariables, options?: C): Promise<GetCheckoutProvidersQuery>;
5821
7469
  GetPipelines(variables?: GetPipelinesQueryVariables, options?: C): Promise<GetPipelinesQuery>;
5822
7470
  GetPipelinesList(variables?: GetPipelinesListQueryVariables, options?: C): Promise<GetPipelinesListQuery>;
7471
+ SearchPipelines(variables?: SearchPipelinesQueryVariables, options?: C): Promise<SearchPipelinesQuery>;
7472
+ GetPipelineBySlug(variables: GetPipelineBySlugQueryVariables, options?: C): Promise<GetPipelineBySlugQuery>;
5823
7473
  EstimatePipelineCost(variables: EstimatePipelineCostQueryVariables, options?: C): Promise<EstimatePipelineCostQuery>;
5824
7474
  PipelineModels(variables: PipelineModelsQueryVariables, options?: C): Promise<PipelineModelsQuery>;
5825
7475
  PipelinePricing(variables?: PipelinePricingQueryVariables, options?: C): Promise<PipelinePricingQuery>;
@@ -5830,13 +7480,18 @@ export declare function getSdk<C>(requester: Requester<C>): {
5830
7480
  GetPipelineRunsBySlug(variables: GetPipelineRunsBySlugQueryVariables, options?: C): Promise<GetPipelineRunsBySlugQuery>;
5831
7481
  GetActivePipelineRuns(variables?: GetActivePipelineRunsQueryVariables, options?: C): Promise<GetActivePipelineRunsQuery>;
5832
7482
  SetRunShare(variables: SetRunShareMutationVariables, options?: C): Promise<SetRunShareMutation>;
7483
+ GetDispatchBlocks(variables?: GetDispatchBlocksQueryVariables, options?: C): Promise<GetDispatchBlocksQuery>;
5833
7484
  GetPlans(variables?: GetPlansQueryVariables, options?: C): Promise<GetPlansQuery>;
5834
7485
  GetCreditPacks(variables?: GetCreditPacksQueryVariables, options?: C): Promise<GetCreditPacksQuery>;
7486
+ GetLocalizedPrices(variables: GetLocalizedPricesQueryVariables, options?: C): Promise<GetLocalizedPricesQuery>;
5835
7487
  GetSubscription(variables?: GetSubscriptionQueryVariables, options?: C): Promise<GetSubscriptionQuery>;
5836
- CreateCheckoutSession(variables: CreateCheckoutSessionMutationVariables, options?: C): Promise<CreateCheckoutSessionMutation>;
7488
+ GetPendingSubscriptionPlanChange(variables?: GetPendingSubscriptionPlanChangeQueryVariables, options?: C): Promise<GetPendingSubscriptionPlanChangeQuery>;
7489
+ ScheduleSubscriptionPlanChange(variables: ScheduleSubscriptionPlanChangeMutationVariables, options?: C): Promise<ScheduleSubscriptionPlanChangeMutation>;
7490
+ CancelSubscriptionPlanChange(variables?: CancelSubscriptionPlanChangeMutationVariables, options?: C): Promise<CancelSubscriptionPlanChangeMutation>;
5837
7491
  WatchPipelineRun(variables: WatchPipelineRunSubscriptionVariables, options?: C): AsyncIterable<WatchPipelineRunSubscription>;
5838
7492
  WatchActivePipelineRuns(variables?: WatchActivePipelineRunsSubscriptionVariables, options?: C): AsyncIterable<WatchActivePipelineRunsSubscription>;
5839
7493
  WatchNotifications(variables: WatchNotificationsSubscriptionVariables, options?: C): AsyncIterable<WatchNotificationsSubscription>;
7494
+ WatchBillingUpdates(variables?: WatchBillingUpdatesSubscriptionVariables, options?: C): AsyncIterable<WatchBillingUpdatesSubscription>;
5840
7495
  GetMyApiKeys(variables?: GetMyApiKeysQueryVariables, options?: C): Promise<GetMyApiKeysQuery>;
5841
7496
  CreatePersonalAccessToken(variables: CreatePersonalAccessTokenMutationVariables, options?: C): Promise<CreatePersonalAccessTokenMutation>;
5842
7497
  RevokePersonalAccessToken(variables: RevokePersonalAccessTokenMutationVariables, options?: C): Promise<RevokePersonalAccessTokenMutation>;