@pipe2-ai/sdk 0.1.0 → 0.1.2

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.
@@ -50,6 +50,10 @@ export type Scalars = {
50
50
  input: any;
51
51
  output: any;
52
52
  };
53
+ numeric: {
54
+ input: any;
55
+ output: any;
56
+ };
53
57
  timestamp: {
54
58
  input: any;
55
59
  output: any;
@@ -322,11 +326,13 @@ export type Affiliates_Stream_Cursor_Value_Input = {
322
326
  export type Assets = {
323
327
  __typename?: 'assets';
324
328
  created_at: Scalars['timestamptz']['output'];
329
+ duration_sec?: Maybe<Scalars['numeric']['output']>;
325
330
  id: Scalars['uuid']['output'];
326
331
  metadata?: Maybe<Scalars['jsonb']['output']>;
327
332
  /** An object relationship */
328
333
  pipeline_run?: Maybe<Pipeline_Runs>;
329
334
  pipeline_run_id?: Maybe<Scalars['uuid']['output']>;
335
+ preview_frames?: Maybe<Array<Scalars['String']['output']>>;
330
336
  tags: Array<Scalars['String']['output']>;
331
337
  thumbnail_url?: Maybe<Scalars['String']['output']>;
332
338
  type: Scalars['String']['output'];
@@ -354,9 +360,17 @@ export type Assets_Aggregate_Bool_Exp_Count = {
354
360
  /** aggregate fields of "assets" */
355
361
  export type Assets_Aggregate_Fields = {
356
362
  __typename?: 'assets_aggregate_fields';
363
+ avg?: Maybe<Assets_Avg_Fields>;
357
364
  count: Scalars['Int']['output'];
358
365
  max?: Maybe<Assets_Max_Fields>;
359
366
  min?: Maybe<Assets_Min_Fields>;
367
+ stddev?: Maybe<Assets_Stddev_Fields>;
368
+ stddev_pop?: Maybe<Assets_Stddev_Pop_Fields>;
369
+ stddev_samp?: Maybe<Assets_Stddev_Samp_Fields>;
370
+ sum?: Maybe<Assets_Sum_Fields>;
371
+ var_pop?: Maybe<Assets_Var_Pop_Fields>;
372
+ var_samp?: Maybe<Assets_Var_Samp_Fields>;
373
+ variance?: Maybe<Assets_Variance_Fields>;
360
374
  };
361
375
  /** aggregate fields of "assets" */
362
376
  export type Assets_Aggregate_FieldsCountArgs = {
@@ -365,9 +379,26 @@ export type Assets_Aggregate_FieldsCountArgs = {
365
379
  };
366
380
  /** order by aggregate values of table "assets" */
367
381
  export type Assets_Aggregate_Order_By = {
382
+ avg?: InputMaybe<Assets_Avg_Order_By>;
368
383
  count?: InputMaybe<Order_By>;
369
384
  max?: InputMaybe<Assets_Max_Order_By>;
370
385
  min?: InputMaybe<Assets_Min_Order_By>;
386
+ stddev?: InputMaybe<Assets_Stddev_Order_By>;
387
+ stddev_pop?: InputMaybe<Assets_Stddev_Pop_Order_By>;
388
+ stddev_samp?: InputMaybe<Assets_Stddev_Samp_Order_By>;
389
+ sum?: InputMaybe<Assets_Sum_Order_By>;
390
+ var_pop?: InputMaybe<Assets_Var_Pop_Order_By>;
391
+ var_samp?: InputMaybe<Assets_Var_Samp_Order_By>;
392
+ variance?: InputMaybe<Assets_Variance_Order_By>;
393
+ };
394
+ /** aggregate avg on columns */
395
+ export type Assets_Avg_Fields = {
396
+ __typename?: 'assets_avg_fields';
397
+ duration_sec?: Maybe<Scalars['Float']['output']>;
398
+ };
399
+ /** order by avg() on columns of table "assets" */
400
+ export type Assets_Avg_Order_By = {
401
+ duration_sec?: InputMaybe<Order_By>;
371
402
  };
372
403
  /** Boolean expression to filter rows from the table "assets". All fields are combined with a logical 'AND'. */
373
404
  export type Assets_Bool_Exp = {
@@ -375,10 +406,12 @@ export type Assets_Bool_Exp = {
375
406
  _not?: InputMaybe<Assets_Bool_Exp>;
376
407
  _or?: InputMaybe<Array<Assets_Bool_Exp>>;
377
408
  created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
409
+ duration_sec?: InputMaybe<Numeric_Comparison_Exp>;
378
410
  id?: InputMaybe<Uuid_Comparison_Exp>;
379
411
  metadata?: InputMaybe<Jsonb_Comparison_Exp>;
380
412
  pipeline_run?: InputMaybe<Pipeline_Runs_Bool_Exp>;
381
413
  pipeline_run_id?: InputMaybe<Uuid_Comparison_Exp>;
414
+ preview_frames?: InputMaybe<String_Array_Comparison_Exp>;
382
415
  tags?: InputMaybe<String_Array_Comparison_Exp>;
383
416
  thumbnail_url?: InputMaybe<String_Comparison_Exp>;
384
417
  type?: InputMaybe<String_Comparison_Exp>;
@@ -388,8 +421,10 @@ export type Assets_Bool_Exp = {
388
421
  export type Assets_Max_Fields = {
389
422
  __typename?: 'assets_max_fields';
390
423
  created_at?: Maybe<Scalars['timestamptz']['output']>;
424
+ duration_sec?: Maybe<Scalars['numeric']['output']>;
391
425
  id?: Maybe<Scalars['uuid']['output']>;
392
426
  pipeline_run_id?: Maybe<Scalars['uuid']['output']>;
427
+ preview_frames?: Maybe<Array<Scalars['String']['output']>>;
393
428
  tags?: Maybe<Array<Scalars['String']['output']>>;
394
429
  thumbnail_url?: Maybe<Scalars['String']['output']>;
395
430
  type?: Maybe<Scalars['String']['output']>;
@@ -398,8 +433,10 @@ export type Assets_Max_Fields = {
398
433
  /** order by max() on columns of table "assets" */
399
434
  export type Assets_Max_Order_By = {
400
435
  created_at?: InputMaybe<Order_By>;
436
+ duration_sec?: InputMaybe<Order_By>;
401
437
  id?: InputMaybe<Order_By>;
402
438
  pipeline_run_id?: InputMaybe<Order_By>;
439
+ preview_frames?: InputMaybe<Order_By>;
403
440
  tags?: InputMaybe<Order_By>;
404
441
  thumbnail_url?: InputMaybe<Order_By>;
405
442
  type?: InputMaybe<Order_By>;
@@ -409,8 +446,10 @@ export type Assets_Max_Order_By = {
409
446
  export type Assets_Min_Fields = {
410
447
  __typename?: 'assets_min_fields';
411
448
  created_at?: Maybe<Scalars['timestamptz']['output']>;
449
+ duration_sec?: Maybe<Scalars['numeric']['output']>;
412
450
  id?: Maybe<Scalars['uuid']['output']>;
413
451
  pipeline_run_id?: Maybe<Scalars['uuid']['output']>;
452
+ preview_frames?: Maybe<Array<Scalars['String']['output']>>;
414
453
  tags?: Maybe<Array<Scalars['String']['output']>>;
415
454
  thumbnail_url?: Maybe<Scalars['String']['output']>;
416
455
  type?: Maybe<Scalars['String']['output']>;
@@ -419,8 +458,10 @@ export type Assets_Min_Fields = {
419
458
  /** order by min() on columns of table "assets" */
420
459
  export type Assets_Min_Order_By = {
421
460
  created_at?: InputMaybe<Order_By>;
461
+ duration_sec?: InputMaybe<Order_By>;
422
462
  id?: InputMaybe<Order_By>;
423
463
  pipeline_run_id?: InputMaybe<Order_By>;
464
+ preview_frames?: InputMaybe<Order_By>;
424
465
  tags?: InputMaybe<Order_By>;
425
466
  thumbnail_url?: InputMaybe<Order_By>;
426
467
  type?: InputMaybe<Order_By>;
@@ -437,10 +478,12 @@ export type Assets_Mutation_Response = {
437
478
  /** Ordering options when selecting data from "assets". */
438
479
  export type Assets_Order_By = {
439
480
  created_at?: InputMaybe<Order_By>;
481
+ duration_sec?: InputMaybe<Order_By>;
440
482
  id?: InputMaybe<Order_By>;
441
483
  metadata?: InputMaybe<Order_By>;
442
484
  pipeline_run?: InputMaybe<Pipeline_Runs_Order_By>;
443
485
  pipeline_run_id?: InputMaybe<Order_By>;
486
+ preview_frames?: InputMaybe<Order_By>;
444
487
  tags?: InputMaybe<Order_By>;
445
488
  thumbnail_url?: InputMaybe<Order_By>;
446
489
  type?: InputMaybe<Order_By>;
@@ -455,12 +498,16 @@ export declare enum Assets_Select_Column {
455
498
  /** column name */
456
499
  CreatedAt = "created_at",
457
500
  /** column name */
501
+ DurationSec = "duration_sec",
502
+ /** column name */
458
503
  Id = "id",
459
504
  /** column name */
460
505
  Metadata = "metadata",
461
506
  /** column name */
462
507
  PipelineRunId = "pipeline_run_id",
463
508
  /** column name */
509
+ PreviewFrames = "preview_frames",
510
+ /** column name */
464
511
  Tags = "tags",
465
512
  /** column name */
466
513
  ThumbnailUrl = "thumbnail_url",
@@ -473,6 +520,33 @@ export declare enum Assets_Select_Column {
473
520
  export type Assets_Set_Input = {
474
521
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
475
522
  };
523
+ /** aggregate stddev on columns */
524
+ export type Assets_Stddev_Fields = {
525
+ __typename?: 'assets_stddev_fields';
526
+ duration_sec?: Maybe<Scalars['Float']['output']>;
527
+ };
528
+ /** order by stddev() on columns of table "assets" */
529
+ export type Assets_Stddev_Order_By = {
530
+ duration_sec?: InputMaybe<Order_By>;
531
+ };
532
+ /** aggregate stddev_pop on columns */
533
+ export type Assets_Stddev_Pop_Fields = {
534
+ __typename?: 'assets_stddev_pop_fields';
535
+ duration_sec?: Maybe<Scalars['Float']['output']>;
536
+ };
537
+ /** order by stddev_pop() on columns of table "assets" */
538
+ export type Assets_Stddev_Pop_Order_By = {
539
+ duration_sec?: InputMaybe<Order_By>;
540
+ };
541
+ /** aggregate stddev_samp on columns */
542
+ export type Assets_Stddev_Samp_Fields = {
543
+ __typename?: 'assets_stddev_samp_fields';
544
+ duration_sec?: Maybe<Scalars['Float']['output']>;
545
+ };
546
+ /** order by stddev_samp() on columns of table "assets" */
547
+ export type Assets_Stddev_Samp_Order_By = {
548
+ duration_sec?: InputMaybe<Order_By>;
549
+ };
476
550
  /** Streaming cursor of the table "assets" */
477
551
  export type Assets_Stream_Cursor_Input = {
478
552
  /** Stream column input with initial value */
@@ -483,20 +557,58 @@ export type Assets_Stream_Cursor_Input = {
483
557
  /** Initial value of the column from where the streaming should start */
484
558
  export type Assets_Stream_Cursor_Value_Input = {
485
559
  created_at?: InputMaybe<Scalars['timestamptz']['input']>;
560
+ duration_sec?: InputMaybe<Scalars['numeric']['input']>;
486
561
  id?: InputMaybe<Scalars['uuid']['input']>;
487
562
  metadata?: InputMaybe<Scalars['jsonb']['input']>;
488
563
  pipeline_run_id?: InputMaybe<Scalars['uuid']['input']>;
564
+ preview_frames?: InputMaybe<Array<Scalars['String']['input']>>;
489
565
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
490
566
  thumbnail_url?: InputMaybe<Scalars['String']['input']>;
491
567
  type?: InputMaybe<Scalars['String']['input']>;
492
568
  url?: InputMaybe<Scalars['String']['input']>;
493
569
  };
570
+ /** aggregate sum on columns */
571
+ export type Assets_Sum_Fields = {
572
+ __typename?: 'assets_sum_fields';
573
+ duration_sec?: Maybe<Scalars['numeric']['output']>;
574
+ };
575
+ /** order by sum() on columns of table "assets" */
576
+ export type Assets_Sum_Order_By = {
577
+ duration_sec?: InputMaybe<Order_By>;
578
+ };
494
579
  export type Assets_Updates = {
495
580
  /** sets the columns of the filtered rows to the given values */
496
581
  _set?: InputMaybe<Assets_Set_Input>;
497
582
  /** filter the rows which have to be updated */
498
583
  where: Assets_Bool_Exp;
499
584
  };
585
+ /** aggregate var_pop on columns */
586
+ export type Assets_Var_Pop_Fields = {
587
+ __typename?: 'assets_var_pop_fields';
588
+ duration_sec?: Maybe<Scalars['Float']['output']>;
589
+ };
590
+ /** order by var_pop() on columns of table "assets" */
591
+ export type Assets_Var_Pop_Order_By = {
592
+ duration_sec?: InputMaybe<Order_By>;
593
+ };
594
+ /** aggregate var_samp on columns */
595
+ export type Assets_Var_Samp_Fields = {
596
+ __typename?: 'assets_var_samp_fields';
597
+ duration_sec?: Maybe<Scalars['Float']['output']>;
598
+ };
599
+ /** order by var_samp() on columns of table "assets" */
600
+ export type Assets_Var_Samp_Order_By = {
601
+ duration_sec?: InputMaybe<Order_By>;
602
+ };
603
+ /** aggregate variance on columns */
604
+ export type Assets_Variance_Fields = {
605
+ __typename?: 'assets_variance_fields';
606
+ duration_sec?: Maybe<Scalars['Float']['output']>;
607
+ };
608
+ /** order by variance() on columns of table "assets" */
609
+ export type Assets_Variance_Order_By = {
610
+ duration_sec?: InputMaybe<Order_By>;
611
+ };
500
612
  export type Auth_Flow = {
501
613
  __typename?: 'auth_flow';
502
614
  csrf_token: Scalars['String']['output'];
@@ -541,6 +653,44 @@ export type Bpchar_Comparison_Exp = {
541
653
  /** does the column match the given SQL regular expression */
542
654
  _similar?: InputMaybe<Scalars['bpchar']['input']>;
543
655
  };
656
+ export type Cancel_Account_Deletion_Output = {
657
+ __typename?: 'cancel_account_deletion_output';
658
+ message: Scalars['String']['output'];
659
+ success: Scalars['Boolean']['output'];
660
+ };
661
+ export type Cancel_Pipeline_Run_Output = {
662
+ __typename?: 'cancel_pipeline_run_output';
663
+ success: Scalars['Boolean']['output'];
664
+ };
665
+ export type Cancel_Subscription_Output = {
666
+ __typename?: 'cancel_subscription_output';
667
+ cancel_at_period_end: Scalars['Boolean']['output'];
668
+ message: Scalars['String']['output'];
669
+ success: Scalars['Boolean']['output'];
670
+ };
671
+ export type Change_Avatar_Output = {
672
+ __typename?: 'change_avatar_output';
673
+ avatar_url: Scalars['String']['output'];
674
+ message: Scalars['String']['output'];
675
+ success: Scalars['Boolean']['output'];
676
+ };
677
+ export type Change_Name_Output = {
678
+ __typename?: 'change_name_output';
679
+ message: Scalars['String']['output'];
680
+ name: Scalars['String']['output'];
681
+ success: Scalars['Boolean']['output'];
682
+ };
683
+ export type Change_Password_Output = {
684
+ __typename?: 'change_password_output';
685
+ message: Scalars['String']['output'];
686
+ success: Scalars['Boolean']['output'];
687
+ };
688
+ export type Confirm_Account_Deletion_Output = {
689
+ __typename?: 'confirm_account_deletion_output';
690
+ effective_at: Scalars['String']['output'];
691
+ message: Scalars['String']['output'];
692
+ success: Scalars['Boolean']['output'];
693
+ };
544
694
  export type Create_Asset_Output = {
545
695
  __typename?: 'create_asset_output';
546
696
  created_at: Scalars['String']['output'];
@@ -641,6 +791,8 @@ export type Credit_Packs_Stream_Cursor_Value_Input = {
641
791
  export type Current_User_Output = {
642
792
  __typename?: 'current_user_output';
643
793
  avatar_url?: Maybe<Scalars['String']['output']>;
794
+ deletion_effective_at?: Maybe<Scalars['String']['output']>;
795
+ deletion_scheduled_at?: Maybe<Scalars['String']['output']>;
644
796
  email: Scalars['String']['output'];
645
797
  email_verified: Scalars['Boolean']['output'];
646
798
  id: Scalars['String']['output'];
@@ -768,12 +920,30 @@ export type Mutation_Root = {
768
920
  __typename?: 'mutation_root';
769
921
  /** Add a new primary affiliate code */
770
922
  add_affiliate_code: Add_Affiliate_Code_Output;
923
+ /** Cancel a pending scheduled account deletion during the grace period. */
924
+ cancel_account_deletion: Cancel_Account_Deletion_Output;
925
+ /** Cancel a running pipeline and refund credits */
926
+ cancel_pipeline_run?: Maybe<Cancel_Pipeline_Run_Output>;
927
+ /** Cancel the user's subscription at the end of the current billing period */
928
+ cancel_subscription: Cancel_Subscription_Output;
929
+ /** Persist the user's avatar URL after a successful upload */
930
+ change_avatar: Change_Avatar_Output;
931
+ /** Update the current user's display name */
932
+ change_name: Change_Name_Output;
933
+ /** Change the current user's password via Kratos settings flow */
934
+ change_password: Change_Password_Output;
935
+ /** Validate a deletion JWT and schedule the account for deletion (token-authed, anonymous-allowed). */
936
+ confirm_account_deletion: Confirm_Account_Deletion_Output;
771
937
  /** Create an asset record after S3 upload */
772
938
  create_asset: Create_Asset_Output;
773
939
  /** Create a new personal access token for API/MCP authentication */
774
940
  create_personal_access_token: Create_Personal_Access_Token_Output;
775
941
  /** Delete an asset and its S3 object */
776
942
  delete_asset: Delete_Asset_Output;
943
+ /** delete data from the table: "notifications" */
944
+ delete_notifications?: Maybe<Notifications_Mutation_Response>;
945
+ /** delete single row from the table: "notifications" */
946
+ delete_notifications_by_pk?: Maybe<Notifications>;
777
947
  /** Create affiliate record and referral code for current user if missing */
778
948
  ensure_affiliate: Ensure_Affiliate_Output;
779
949
  /** Initiate Kratos login flow */
@@ -784,6 +954,10 @@ export type Mutation_Root = {
784
954
  init_signup_flow: Auth_Flow;
785
955
  /** Initiate Kratos email verification flow */
786
956
  init_verification_flow: Auth_Flow;
957
+ /** Send an email-link confirmation for account deletion. No state change until the link is clicked. */
958
+ request_account_deletion: Request_Account_Deletion_Output;
959
+ /** Mint a presigned S3 PUT URL for an avatar image */
960
+ request_avatar_upload: Request_Avatar_Upload_Output;
787
961
  /** Generate presigned S3 PUT URL for direct browser uploads */
788
962
  request_upload: Request_Upload_Output;
789
963
  /** Revoke a personal access token */
@@ -812,6 +986,12 @@ export type Mutation_Root = {
812
986
  update_assets_by_pk?: Maybe<Assets>;
813
987
  /** update multiples rows of table: "assets" */
814
988
  update_assets_many?: Maybe<Array<Maybe<Assets_Mutation_Response>>>;
989
+ /** update data of the table: "notifications" */
990
+ update_notifications?: Maybe<Notifications_Mutation_Response>;
991
+ /** update single row of the table: "notifications" */
992
+ update_notifications_by_pk?: Maybe<Notifications>;
993
+ /** update multiples rows of table: "notifications" */
994
+ update_notifications_many?: Maybe<Array<Maybe<Notifications_Mutation_Response>>>;
815
995
  };
816
996
  /** mutation root */
817
997
  export type Mutation_RootAdd_Affiliate_CodeArgs = {
@@ -819,6 +999,27 @@ export type Mutation_RootAdd_Affiliate_CodeArgs = {
819
999
  redirect_path?: InputMaybe<Scalars['String']['input']>;
820
1000
  };
821
1001
  /** mutation root */
1002
+ export type Mutation_RootCancel_Pipeline_RunArgs = {
1003
+ run_id: Scalars['String']['input'];
1004
+ };
1005
+ /** mutation root */
1006
+ export type Mutation_RootChange_AvatarArgs = {
1007
+ avatar_url: Scalars['String']['input'];
1008
+ };
1009
+ /** mutation root */
1010
+ export type Mutation_RootChange_NameArgs = {
1011
+ name: Scalars['String']['input'];
1012
+ };
1013
+ /** mutation root */
1014
+ export type Mutation_RootChange_PasswordArgs = {
1015
+ current_password: Scalars['String']['input'];
1016
+ new_password: Scalars['String']['input'];
1017
+ };
1018
+ /** mutation root */
1019
+ export type Mutation_RootConfirm_Account_DeletionArgs = {
1020
+ token: Scalars['String']['input'];
1021
+ };
1022
+ /** mutation root */
822
1023
  export type Mutation_RootCreate_AssetArgs = {
823
1024
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
824
1025
  type: Scalars['String']['input'];
@@ -833,12 +1034,26 @@ export type Mutation_RootDelete_AssetArgs = {
833
1034
  id: Scalars['uuid']['input'];
834
1035
  };
835
1036
  /** mutation root */
1037
+ export type Mutation_RootDelete_NotificationsArgs = {
1038
+ where: Notifications_Bool_Exp;
1039
+ };
1040
+ /** mutation root */
1041
+ export type Mutation_RootDelete_Notifications_By_PkArgs = {
1042
+ id: Scalars['uuid']['input'];
1043
+ };
1044
+ /** mutation root */
836
1045
  export type Mutation_RootInit_Recovery_FlowArgs = {
837
1046
  email: Scalars['String']['input'];
838
1047
  };
839
1048
  /** mutation root */
840
1049
  export type Mutation_RootInit_Verification_FlowArgs = {
841
1050
  email?: InputMaybe<Scalars['String']['input']>;
1051
+ force?: InputMaybe<Scalars['Boolean']['input']>;
1052
+ };
1053
+ /** mutation root */
1054
+ export type Mutation_RootRequest_Avatar_UploadArgs = {
1055
+ content_type: Scalars['String']['input'];
1056
+ filename: Scalars['String']['input'];
842
1057
  };
843
1058
  /** mutation root */
844
1059
  export type Mutation_RootRequest_UploadArgs = {
@@ -914,6 +1129,162 @@ export type Mutation_RootUpdate_Assets_By_PkArgs = {
914
1129
  export type Mutation_RootUpdate_Assets_ManyArgs = {
915
1130
  updates: Array<Assets_Updates>;
916
1131
  };
1132
+ /** mutation root */
1133
+ export type Mutation_RootUpdate_NotificationsArgs = {
1134
+ _set?: InputMaybe<Notifications_Set_Input>;
1135
+ where: Notifications_Bool_Exp;
1136
+ };
1137
+ /** mutation root */
1138
+ export type Mutation_RootUpdate_Notifications_By_PkArgs = {
1139
+ _set?: InputMaybe<Notifications_Set_Input>;
1140
+ pk_columns: Notifications_Pk_Columns_Input;
1141
+ };
1142
+ /** mutation root */
1143
+ export type Mutation_RootUpdate_Notifications_ManyArgs = {
1144
+ updates: Array<Notifications_Updates>;
1145
+ };
1146
+ /** columns and relationships of "notifications" */
1147
+ export type Notifications = {
1148
+ __typename?: 'notifications';
1149
+ body?: Maybe<Scalars['String']['output']>;
1150
+ created_at: Scalars['timestamptz']['output'];
1151
+ id: Scalars['uuid']['output'];
1152
+ metadata?: Maybe<Scalars['jsonb']['output']>;
1153
+ read: Scalars['Boolean']['output'];
1154
+ title: Scalars['String']['output'];
1155
+ type: Scalars['String']['output'];
1156
+ };
1157
+ /** columns and relationships of "notifications" */
1158
+ export type NotificationsMetadataArgs = {
1159
+ path?: InputMaybe<Scalars['String']['input']>;
1160
+ };
1161
+ /** aggregated selection of "notifications" */
1162
+ export type Notifications_Aggregate = {
1163
+ __typename?: 'notifications_aggregate';
1164
+ aggregate?: Maybe<Notifications_Aggregate_Fields>;
1165
+ nodes: Array<Notifications>;
1166
+ };
1167
+ /** aggregate fields of "notifications" */
1168
+ export type Notifications_Aggregate_Fields = {
1169
+ __typename?: 'notifications_aggregate_fields';
1170
+ count: Scalars['Int']['output'];
1171
+ max?: Maybe<Notifications_Max_Fields>;
1172
+ min?: Maybe<Notifications_Min_Fields>;
1173
+ };
1174
+ /** aggregate fields of "notifications" */
1175
+ export type Notifications_Aggregate_FieldsCountArgs = {
1176
+ columns?: InputMaybe<Array<Notifications_Select_Column>>;
1177
+ distinct?: InputMaybe<Scalars['Boolean']['input']>;
1178
+ };
1179
+ /** Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'. */
1180
+ export type Notifications_Bool_Exp = {
1181
+ _and?: InputMaybe<Array<Notifications_Bool_Exp>>;
1182
+ _not?: InputMaybe<Notifications_Bool_Exp>;
1183
+ _or?: InputMaybe<Array<Notifications_Bool_Exp>>;
1184
+ body?: InputMaybe<String_Comparison_Exp>;
1185
+ created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
1186
+ id?: InputMaybe<Uuid_Comparison_Exp>;
1187
+ metadata?: InputMaybe<Jsonb_Comparison_Exp>;
1188
+ read?: InputMaybe<Boolean_Comparison_Exp>;
1189
+ title?: InputMaybe<String_Comparison_Exp>;
1190
+ type?: InputMaybe<String_Comparison_Exp>;
1191
+ };
1192
+ /** aggregate max on columns */
1193
+ export type Notifications_Max_Fields = {
1194
+ __typename?: 'notifications_max_fields';
1195
+ body?: Maybe<Scalars['String']['output']>;
1196
+ created_at?: Maybe<Scalars['timestamptz']['output']>;
1197
+ id?: Maybe<Scalars['uuid']['output']>;
1198
+ title?: Maybe<Scalars['String']['output']>;
1199
+ type?: Maybe<Scalars['String']['output']>;
1200
+ };
1201
+ /** aggregate min on columns */
1202
+ export type Notifications_Min_Fields = {
1203
+ __typename?: 'notifications_min_fields';
1204
+ body?: Maybe<Scalars['String']['output']>;
1205
+ created_at?: Maybe<Scalars['timestamptz']['output']>;
1206
+ id?: Maybe<Scalars['uuid']['output']>;
1207
+ title?: Maybe<Scalars['String']['output']>;
1208
+ type?: Maybe<Scalars['String']['output']>;
1209
+ };
1210
+ /** response of any mutation on the table "notifications" */
1211
+ export type Notifications_Mutation_Response = {
1212
+ __typename?: 'notifications_mutation_response';
1213
+ /** number of rows affected by the mutation */
1214
+ affected_rows: Scalars['Int']['output'];
1215
+ /** data from the rows affected by the mutation */
1216
+ returning: Array<Notifications>;
1217
+ };
1218
+ /** Ordering options when selecting data from "notifications". */
1219
+ export type Notifications_Order_By = {
1220
+ body?: InputMaybe<Order_By>;
1221
+ created_at?: InputMaybe<Order_By>;
1222
+ id?: InputMaybe<Order_By>;
1223
+ metadata?: InputMaybe<Order_By>;
1224
+ read?: InputMaybe<Order_By>;
1225
+ title?: InputMaybe<Order_By>;
1226
+ type?: InputMaybe<Order_By>;
1227
+ };
1228
+ /** primary key columns input for table: notifications */
1229
+ export type Notifications_Pk_Columns_Input = {
1230
+ id: Scalars['uuid']['input'];
1231
+ };
1232
+ /** select columns of table "notifications" */
1233
+ export declare enum Notifications_Select_Column {
1234
+ /** column name */
1235
+ Body = "body",
1236
+ /** column name */
1237
+ CreatedAt = "created_at",
1238
+ /** column name */
1239
+ Id = "id",
1240
+ /** column name */
1241
+ Metadata = "metadata",
1242
+ /** column name */
1243
+ Read = "read",
1244
+ /** column name */
1245
+ Title = "title",
1246
+ /** column name */
1247
+ Type = "type"
1248
+ }
1249
+ /** input type for updating data in table "notifications" */
1250
+ export type Notifications_Set_Input = {
1251
+ read?: InputMaybe<Scalars['Boolean']['input']>;
1252
+ };
1253
+ /** Streaming cursor of the table "notifications" */
1254
+ export type Notifications_Stream_Cursor_Input = {
1255
+ /** Stream column input with initial value */
1256
+ initial_value: Notifications_Stream_Cursor_Value_Input;
1257
+ /** cursor ordering */
1258
+ ordering?: InputMaybe<Cursor_Ordering>;
1259
+ };
1260
+ /** Initial value of the column from where the streaming should start */
1261
+ export type Notifications_Stream_Cursor_Value_Input = {
1262
+ body?: InputMaybe<Scalars['String']['input']>;
1263
+ created_at?: InputMaybe<Scalars['timestamptz']['input']>;
1264
+ id?: InputMaybe<Scalars['uuid']['input']>;
1265
+ metadata?: InputMaybe<Scalars['jsonb']['input']>;
1266
+ read?: InputMaybe<Scalars['Boolean']['input']>;
1267
+ title?: InputMaybe<Scalars['String']['input']>;
1268
+ type?: InputMaybe<Scalars['String']['input']>;
1269
+ };
1270
+ export type Notifications_Updates = {
1271
+ /** sets the columns of the filtered rows to the given values */
1272
+ _set?: InputMaybe<Notifications_Set_Input>;
1273
+ /** filter the rows which have to be updated */
1274
+ where: Notifications_Bool_Exp;
1275
+ };
1276
+ /** Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. */
1277
+ export type Numeric_Comparison_Exp = {
1278
+ _eq?: InputMaybe<Scalars['numeric']['input']>;
1279
+ _gt?: InputMaybe<Scalars['numeric']['input']>;
1280
+ _gte?: InputMaybe<Scalars['numeric']['input']>;
1281
+ _in?: InputMaybe<Array<Scalars['numeric']['input']>>;
1282
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
1283
+ _lt?: InputMaybe<Scalars['numeric']['input']>;
1284
+ _lte?: InputMaybe<Scalars['numeric']['input']>;
1285
+ _neq?: InputMaybe<Scalars['numeric']['input']>;
1286
+ _nin?: InputMaybe<Array<Scalars['numeric']['input']>>;
1287
+ };
917
1288
  /** column ordering options */
918
1289
  export declare enum Order_By {
919
1290
  /** in ascending order, nulls last */
@@ -1220,23 +1591,32 @@ export type Pipeline_Runs_Variance_Fields = {
1220
1591
  /** columns and relationships of "pipelines" */
1221
1592
  export type Pipelines = {
1222
1593
  __typename?: 'pipelines';
1594
+ cancellable: Scalars['Boolean']['output'];
1223
1595
  category: Scalars['String']['output'];
1224
- credit_cost: Scalars['Int']['output'];
1225
1596
  description?: Maybe<Scalars['String']['output']>;
1597
+ /** Structured metadata for AI orchestrators: best_for, avoid_for, limitations, output_characteristics, composability, quality_tips */
1598
+ hints: Scalars['jsonb']['output'];
1226
1599
  icon_url?: Maybe<Scalars['String']['output']>;
1227
1600
  id: Scalars['uuid']['output'];
1228
1601
  input_schema: Scalars['jsonb']['output'];
1602
+ is_active: Scalars['Boolean']['output'];
1229
1603
  name: Scalars['String']['output'];
1230
1604
  output_schema: Scalars['jsonb']['output'];
1231
1605
  preview_url?: Maybe<Scalars['String']['output']>;
1606
+ pricing: Scalars['jsonb']['output'];
1232
1607
  required_providers: Array<Scalars['String']['output']>;
1233
1608
  seo_content?: Maybe<Scalars['String']['output']>;
1234
1609
  seo_faq?: Maybe<Scalars['jsonb']['output']>;
1235
1610
  slug: Scalars['String']['output'];
1236
1611
  sort_order: Scalars['Int']['output'];
1612
+ tags: Array<Scalars['String']['output']>;
1237
1613
  ui_schema: Scalars['jsonb']['output'];
1238
1614
  };
1239
1615
  /** columns and relationships of "pipelines" */
1616
+ export type PipelinesHintsArgs = {
1617
+ path?: InputMaybe<Scalars['String']['input']>;
1618
+ };
1619
+ /** columns and relationships of "pipelines" */
1240
1620
  export type PipelinesInput_SchemaArgs = {
1241
1621
  path?: InputMaybe<Scalars['String']['input']>;
1242
1622
  };
@@ -1245,6 +1625,10 @@ export type PipelinesOutput_SchemaArgs = {
1245
1625
  path?: InputMaybe<Scalars['String']['input']>;
1246
1626
  };
1247
1627
  /** columns and relationships of "pipelines" */
1628
+ export type PipelinesPricingArgs = {
1629
+ path?: InputMaybe<Scalars['String']['input']>;
1630
+ };
1631
+ /** columns and relationships of "pipelines" */
1248
1632
  export type PipelinesSeo_FaqArgs = {
1249
1633
  path?: InputMaybe<Scalars['String']['input']>;
1250
1634
  };
@@ -1257,61 +1641,75 @@ export type Pipelines_Bool_Exp = {
1257
1641
  _and?: InputMaybe<Array<Pipelines_Bool_Exp>>;
1258
1642
  _not?: InputMaybe<Pipelines_Bool_Exp>;
1259
1643
  _or?: InputMaybe<Array<Pipelines_Bool_Exp>>;
1644
+ cancellable?: InputMaybe<Boolean_Comparison_Exp>;
1260
1645
  category?: InputMaybe<String_Comparison_Exp>;
1261
- credit_cost?: InputMaybe<Int_Comparison_Exp>;
1262
1646
  description?: InputMaybe<String_Comparison_Exp>;
1647
+ hints?: InputMaybe<Jsonb_Comparison_Exp>;
1263
1648
  icon_url?: InputMaybe<String_Comparison_Exp>;
1264
1649
  id?: InputMaybe<Uuid_Comparison_Exp>;
1265
1650
  input_schema?: InputMaybe<Jsonb_Comparison_Exp>;
1651
+ is_active?: InputMaybe<Boolean_Comparison_Exp>;
1266
1652
  name?: InputMaybe<String_Comparison_Exp>;
1267
1653
  output_schema?: InputMaybe<Jsonb_Comparison_Exp>;
1268
1654
  preview_url?: InputMaybe<String_Comparison_Exp>;
1655
+ pricing?: InputMaybe<Jsonb_Comparison_Exp>;
1269
1656
  required_providers?: InputMaybe<String_Array_Comparison_Exp>;
1270
1657
  seo_content?: InputMaybe<String_Comparison_Exp>;
1271
1658
  seo_faq?: InputMaybe<Jsonb_Comparison_Exp>;
1272
1659
  slug?: InputMaybe<String_Comparison_Exp>;
1273
1660
  sort_order?: InputMaybe<Int_Comparison_Exp>;
1661
+ tags?: InputMaybe<String_Array_Comparison_Exp>;
1274
1662
  ui_schema?: InputMaybe<Jsonb_Comparison_Exp>;
1275
1663
  };
1276
1664
  /** Ordering options when selecting data from "pipelines". */
1277
1665
  export type Pipelines_Order_By = {
1666
+ cancellable?: InputMaybe<Order_By>;
1278
1667
  category?: InputMaybe<Order_By>;
1279
- credit_cost?: InputMaybe<Order_By>;
1280
1668
  description?: InputMaybe<Order_By>;
1669
+ hints?: InputMaybe<Order_By>;
1281
1670
  icon_url?: InputMaybe<Order_By>;
1282
1671
  id?: InputMaybe<Order_By>;
1283
1672
  input_schema?: InputMaybe<Order_By>;
1673
+ is_active?: InputMaybe<Order_By>;
1284
1674
  name?: InputMaybe<Order_By>;
1285
1675
  output_schema?: InputMaybe<Order_By>;
1286
1676
  preview_url?: InputMaybe<Order_By>;
1677
+ pricing?: InputMaybe<Order_By>;
1287
1678
  required_providers?: InputMaybe<Order_By>;
1288
1679
  seo_content?: InputMaybe<Order_By>;
1289
1680
  seo_faq?: InputMaybe<Order_By>;
1290
1681
  slug?: InputMaybe<Order_By>;
1291
1682
  sort_order?: InputMaybe<Order_By>;
1683
+ tags?: InputMaybe<Order_By>;
1292
1684
  ui_schema?: InputMaybe<Order_By>;
1293
1685
  };
1294
1686
  /** select columns of table "pipelines" */
1295
1687
  export declare enum Pipelines_Select_Column {
1296
1688
  /** column name */
1297
- Category = "category",
1689
+ Cancellable = "cancellable",
1298
1690
  /** column name */
1299
- CreditCost = "credit_cost",
1691
+ Category = "category",
1300
1692
  /** column name */
1301
1693
  Description = "description",
1302
1694
  /** column name */
1695
+ Hints = "hints",
1696
+ /** column name */
1303
1697
  IconUrl = "icon_url",
1304
1698
  /** column name */
1305
1699
  Id = "id",
1306
1700
  /** column name */
1307
1701
  InputSchema = "input_schema",
1308
1702
  /** column name */
1703
+ IsActive = "is_active",
1704
+ /** column name */
1309
1705
  Name = "name",
1310
1706
  /** column name */
1311
1707
  OutputSchema = "output_schema",
1312
1708
  /** column name */
1313
1709
  PreviewUrl = "preview_url",
1314
1710
  /** column name */
1711
+ Pricing = "pricing",
1712
+ /** column name */
1315
1713
  RequiredProviders = "required_providers",
1316
1714
  /** column name */
1317
1715
  SeoContent = "seo_content",
@@ -1322,6 +1720,8 @@ export declare enum Pipelines_Select_Column {
1322
1720
  /** column name */
1323
1721
  SortOrder = "sort_order",
1324
1722
  /** column name */
1723
+ Tags = "tags",
1724
+ /** column name */
1325
1725
  UiSchema = "ui_schema"
1326
1726
  }
1327
1727
  /** Streaming cursor of the table "pipelines" */
@@ -1333,20 +1733,25 @@ export type Pipelines_Stream_Cursor_Input = {
1333
1733
  };
1334
1734
  /** Initial value of the column from where the streaming should start */
1335
1735
  export type Pipelines_Stream_Cursor_Value_Input = {
1736
+ cancellable?: InputMaybe<Scalars['Boolean']['input']>;
1336
1737
  category?: InputMaybe<Scalars['String']['input']>;
1337
- credit_cost?: InputMaybe<Scalars['Int']['input']>;
1338
1738
  description?: InputMaybe<Scalars['String']['input']>;
1739
+ /** Structured metadata for AI orchestrators: best_for, avoid_for, limitations, output_characteristics, composability, quality_tips */
1740
+ hints?: InputMaybe<Scalars['jsonb']['input']>;
1339
1741
  icon_url?: InputMaybe<Scalars['String']['input']>;
1340
1742
  id?: InputMaybe<Scalars['uuid']['input']>;
1341
1743
  input_schema?: InputMaybe<Scalars['jsonb']['input']>;
1744
+ is_active?: InputMaybe<Scalars['Boolean']['input']>;
1342
1745
  name?: InputMaybe<Scalars['String']['input']>;
1343
1746
  output_schema?: InputMaybe<Scalars['jsonb']['input']>;
1344
1747
  preview_url?: InputMaybe<Scalars['String']['input']>;
1748
+ pricing?: InputMaybe<Scalars['jsonb']['input']>;
1345
1749
  required_providers?: InputMaybe<Array<Scalars['String']['input']>>;
1346
1750
  seo_content?: InputMaybe<Scalars['String']['input']>;
1347
1751
  seo_faq?: InputMaybe<Scalars['jsonb']['input']>;
1348
1752
  slug?: InputMaybe<Scalars['String']['input']>;
1349
1753
  sort_order?: InputMaybe<Scalars['Int']['input']>;
1754
+ tags?: InputMaybe<Array<Scalars['String']['input']>>;
1350
1755
  ui_schema?: InputMaybe<Scalars['jsonb']['input']>;
1351
1756
  };
1352
1757
  /** columns and relationships of "plans" */
@@ -1463,6 +1868,12 @@ export type Query_Root = {
1463
1868
  get_credit_history: Array<Credit_History_Entry>;
1464
1869
  /** Get affiliate referral stats and referred users */
1465
1870
  get_my_referrals: Get_My_Referrals_Output;
1871
+ /** fetch data from the table: "notifications" */
1872
+ notifications: Array<Notifications>;
1873
+ /** fetch aggregated fields from the table: "notifications" */
1874
+ notifications_aggregate: Notifications_Aggregate;
1875
+ /** fetch data from the table: "notifications" using primary key columns */
1876
+ notifications_by_pk?: Maybe<Notifications>;
1466
1877
  /** fetch data from the table: "personal_access_tokens" */
1467
1878
  personal_access_tokens: Array<Personal_Access_Tokens>;
1468
1879
  /** fetch data from the table: "personal_access_tokens" using primary key columns */
@@ -1540,6 +1951,23 @@ export type Query_RootExecutions_VisibilityArgs = {
1540
1951
  order_by?: InputMaybe<Array<Executions_Visibility_Order_By>>;
1541
1952
  where?: InputMaybe<Executions_Visibility_Bool_Exp>;
1542
1953
  };
1954
+ export type Query_RootNotificationsArgs = {
1955
+ distinct_on?: InputMaybe<Array<Notifications_Select_Column>>;
1956
+ limit?: InputMaybe<Scalars['Int']['input']>;
1957
+ offset?: InputMaybe<Scalars['Int']['input']>;
1958
+ order_by?: InputMaybe<Array<Notifications_Order_By>>;
1959
+ where?: InputMaybe<Notifications_Bool_Exp>;
1960
+ };
1961
+ export type Query_RootNotifications_AggregateArgs = {
1962
+ distinct_on?: InputMaybe<Array<Notifications_Select_Column>>;
1963
+ limit?: InputMaybe<Scalars['Int']['input']>;
1964
+ offset?: InputMaybe<Scalars['Int']['input']>;
1965
+ order_by?: InputMaybe<Array<Notifications_Order_By>>;
1966
+ where?: InputMaybe<Notifications_Bool_Exp>;
1967
+ };
1968
+ export type Query_RootNotifications_By_PkArgs = {
1969
+ id: Scalars['uuid']['input'];
1970
+ };
1543
1971
  export type Query_RootPersonal_Access_TokensArgs = {
1544
1972
  distinct_on?: InputMaybe<Array<Personal_Access_Tokens_Select_Column>>;
1545
1973
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -1607,6 +2035,20 @@ export type Referral_Entry = {
1607
2035
  subscription_status: Scalars['String']['output'];
1608
2036
  user_id: Scalars['String']['output'];
1609
2037
  };
2038
+ export type Request_Account_Deletion_Output = {
2039
+ __typename?: 'request_account_deletion_output';
2040
+ expires_at: Scalars['String']['output'];
2041
+ message: Scalars['String']['output'];
2042
+ success: Scalars['Boolean']['output'];
2043
+ };
2044
+ export type Request_Avatar_Upload_Output = {
2045
+ __typename?: 'request_avatar_upload_output';
2046
+ asset_url: Scalars['String']['output'];
2047
+ key: Scalars['String']['output'];
2048
+ max_size: Scalars['Int']['output'];
2049
+ success: Scalars['Boolean']['output'];
2050
+ upload_url: Scalars['String']['output'];
2051
+ };
1610
2052
  export type Request_Upload_Output = {
1611
2053
  __typename?: 'request_upload_output';
1612
2054
  asset_url: Scalars['String']['output'];
@@ -1660,6 +2102,14 @@ export type Subscription_Root = {
1660
2102
  executions_visibility: Array<Executions_Visibility>;
1661
2103
  /** fetch data from the table in a streaming manner: "executions_visibility" */
1662
2104
  executions_visibility_stream: Array<Executions_Visibility>;
2105
+ /** fetch data from the table: "notifications" */
2106
+ notifications: Array<Notifications>;
2107
+ /** fetch aggregated fields from the table: "notifications" */
2108
+ notifications_aggregate: Notifications_Aggregate;
2109
+ /** fetch data from the table: "notifications" using primary key columns */
2110
+ notifications_by_pk?: Maybe<Notifications>;
2111
+ /** fetch data from the table in a streaming manner: "notifications" */
2112
+ notifications_stream: Array<Notifications>;
1663
2113
  /** fetch data from the table: "personal_access_tokens" */
1664
2114
  personal_access_tokens: Array<Personal_Access_Tokens>;
1665
2115
  /** fetch data from the table: "personal_access_tokens" using primary key columns */
@@ -1772,6 +2222,28 @@ export type Subscription_RootExecutions_Visibility_StreamArgs = {
1772
2222
  cursor: Array<InputMaybe<Executions_Visibility_Stream_Cursor_Input>>;
1773
2223
  where?: InputMaybe<Executions_Visibility_Bool_Exp>;
1774
2224
  };
2225
+ export type Subscription_RootNotificationsArgs = {
2226
+ distinct_on?: InputMaybe<Array<Notifications_Select_Column>>;
2227
+ limit?: InputMaybe<Scalars['Int']['input']>;
2228
+ offset?: InputMaybe<Scalars['Int']['input']>;
2229
+ order_by?: InputMaybe<Array<Notifications_Order_By>>;
2230
+ where?: InputMaybe<Notifications_Bool_Exp>;
2231
+ };
2232
+ export type Subscription_RootNotifications_AggregateArgs = {
2233
+ distinct_on?: InputMaybe<Array<Notifications_Select_Column>>;
2234
+ limit?: InputMaybe<Scalars['Int']['input']>;
2235
+ offset?: InputMaybe<Scalars['Int']['input']>;
2236
+ order_by?: InputMaybe<Array<Notifications_Order_By>>;
2237
+ where?: InputMaybe<Notifications_Bool_Exp>;
2238
+ };
2239
+ export type Subscription_RootNotifications_By_PkArgs = {
2240
+ id: Scalars['uuid']['input'];
2241
+ };
2242
+ export type Subscription_RootNotifications_StreamArgs = {
2243
+ batch_size: Scalars['Int']['input'];
2244
+ cursor: Array<InputMaybe<Notifications_Stream_Cursor_Input>>;
2245
+ where?: InputMaybe<Notifications_Bool_Exp>;
2246
+ };
1775
2247
  export type Subscription_RootPersonal_Access_TokensArgs = {
1776
2248
  distinct_on?: InputMaybe<Array<Personal_Access_Tokens_Select_Column>>;
1777
2249
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -1962,6 +2434,104 @@ export type Uuid_Comparison_Exp = {
1962
2434
  _neq?: InputMaybe<Scalars['uuid']['input']>;
1963
2435
  _nin?: InputMaybe<Array<Scalars['uuid']['input']>>;
1964
2436
  };
2437
+ export type ChangePasswordMutationVariables = Exact<{
2438
+ current_password: Scalars['String']['input'];
2439
+ new_password: Scalars['String']['input'];
2440
+ }>;
2441
+ export type ChangePasswordMutation = {
2442
+ __typename?: 'mutation_root';
2443
+ change_password: {
2444
+ __typename?: 'change_password_output';
2445
+ success: boolean;
2446
+ message: string;
2447
+ };
2448
+ };
2449
+ export type ChangeNameMutationVariables = Exact<{
2450
+ name: Scalars['String']['input'];
2451
+ }>;
2452
+ export type ChangeNameMutation = {
2453
+ __typename?: 'mutation_root';
2454
+ change_name: {
2455
+ __typename?: 'change_name_output';
2456
+ success: boolean;
2457
+ message: string;
2458
+ name: string;
2459
+ };
2460
+ };
2461
+ export type CancelSubscriptionMutationVariables = Exact<{
2462
+ [key: string]: never;
2463
+ }>;
2464
+ export type CancelSubscriptionMutation = {
2465
+ __typename?: 'mutation_root';
2466
+ cancel_subscription: {
2467
+ __typename?: 'cancel_subscription_output';
2468
+ success: boolean;
2469
+ message: string;
2470
+ cancel_at_period_end: boolean;
2471
+ };
2472
+ };
2473
+ export type RequestAvatarUploadMutationVariables = Exact<{
2474
+ filename: Scalars['String']['input'];
2475
+ content_type: Scalars['String']['input'];
2476
+ }>;
2477
+ export type RequestAvatarUploadMutation = {
2478
+ __typename?: 'mutation_root';
2479
+ request_avatar_upload: {
2480
+ __typename?: 'request_avatar_upload_output';
2481
+ success: boolean;
2482
+ upload_url: string;
2483
+ asset_url: string;
2484
+ key: string;
2485
+ max_size: number;
2486
+ };
2487
+ };
2488
+ export type ChangeAvatarMutationVariables = Exact<{
2489
+ avatar_url: Scalars['String']['input'];
2490
+ }>;
2491
+ export type ChangeAvatarMutation = {
2492
+ __typename?: 'mutation_root';
2493
+ change_avatar: {
2494
+ __typename?: 'change_avatar_output';
2495
+ success: boolean;
2496
+ message: string;
2497
+ avatar_url: string;
2498
+ };
2499
+ };
2500
+ export type RequestAccountDeletionMutationVariables = Exact<{
2501
+ [key: string]: never;
2502
+ }>;
2503
+ export type RequestAccountDeletionMutation = {
2504
+ __typename?: 'mutation_root';
2505
+ request_account_deletion: {
2506
+ __typename?: 'request_account_deletion_output';
2507
+ success: boolean;
2508
+ message: string;
2509
+ expires_at: string;
2510
+ };
2511
+ };
2512
+ export type ConfirmAccountDeletionMutationVariables = Exact<{
2513
+ token: Scalars['String']['input'];
2514
+ }>;
2515
+ export type ConfirmAccountDeletionMutation = {
2516
+ __typename?: 'mutation_root';
2517
+ confirm_account_deletion: {
2518
+ __typename?: 'confirm_account_deletion_output';
2519
+ success: boolean;
2520
+ message: string;
2521
+ effective_at: string;
2522
+ };
2523
+ };
2524
+ export type CancelAccountDeletionMutationVariables = Exact<{
2525
+ [key: string]: never;
2526
+ }>;
2527
+ export type CancelAccountDeletionMutation = {
2528
+ __typename?: 'mutation_root';
2529
+ cancel_account_deletion: {
2530
+ __typename?: 'cancel_account_deletion_output';
2531
+ success: boolean;
2532
+ message: string;
2533
+ };
2534
+ };
1965
2535
  export type GetMyAffiliateCodesQueryVariables = Exact<{
1966
2536
  [key: string]: never;
1967
2537
  }>;
@@ -2042,6 +2612,34 @@ export type GetMyReferralsQuery = {
2042
2612
  }>;
2043
2613
  };
2044
2614
  };
2615
+ export type GetAssetThumbnailQueryVariables = Exact<{
2616
+ id: Scalars['uuid']['input'];
2617
+ }>;
2618
+ export type GetAssetThumbnailQuery = {
2619
+ __typename?: 'query_root';
2620
+ assets_by_pk?: {
2621
+ __typename?: 'assets';
2622
+ id: any;
2623
+ type: string;
2624
+ url: string;
2625
+ thumbnail_url?: string | null;
2626
+ preview_frames?: Array<string> | null;
2627
+ } | null;
2628
+ };
2629
+ export type GetAssetThumbnailsByIdsQueryVariables = Exact<{
2630
+ ids: Array<Scalars['uuid']['input']> | Scalars['uuid']['input'];
2631
+ }>;
2632
+ export type GetAssetThumbnailsByIdsQuery = {
2633
+ __typename?: 'query_root';
2634
+ assets: Array<{
2635
+ __typename?: 'assets';
2636
+ id: any;
2637
+ type: string;
2638
+ url: string;
2639
+ thumbnail_url?: string | null;
2640
+ preview_frames?: Array<string> | null;
2641
+ }>;
2642
+ };
2045
2643
  export type GetUserAssetsQueryVariables = Exact<{
2046
2644
  where?: InputMaybe<Assets_Bool_Exp>;
2047
2645
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -2055,6 +2653,7 @@ export type GetUserAssetsQuery = {
2055
2653
  type: string;
2056
2654
  url: string;
2057
2655
  thumbnail_url?: string | null;
2656
+ preview_frames?: Array<string> | null;
2058
2657
  metadata?: any | null;
2059
2658
  tags: Array<string>;
2060
2659
  created_at: any;
@@ -2187,6 +2786,7 @@ export type SubmitSocialLoginMutation = {
2187
2786
  };
2188
2787
  export type InitVerificationFlowMutationVariables = Exact<{
2189
2788
  email?: InputMaybe<Scalars['String']['input']>;
2789
+ force?: InputMaybe<Scalars['Boolean']['input']>;
2190
2790
  }>;
2191
2791
  export type InitVerificationFlowMutation = {
2192
2792
  __typename?: 'mutation_root';
@@ -2258,6 +2858,51 @@ export type GetCreditHistoryQuery = {
2258
2858
  created_at: string;
2259
2859
  }>;
2260
2860
  };
2861
+ export type GetNotificationsQueryVariables = Exact<{
2862
+ limit: Scalars['Int']['input'];
2863
+ offset: Scalars['Int']['input'];
2864
+ }>;
2865
+ export type GetNotificationsQuery = {
2866
+ __typename?: 'query_root';
2867
+ notifications: Array<{
2868
+ __typename?: 'notifications';
2869
+ id: any;
2870
+ type: string;
2871
+ title: string;
2872
+ body?: string | null;
2873
+ metadata?: any | null;
2874
+ read: boolean;
2875
+ created_at: any;
2876
+ }>;
2877
+ unread: {
2878
+ __typename?: 'notifications_aggregate';
2879
+ aggregate?: {
2880
+ __typename?: 'notifications_aggregate_fields';
2881
+ count: number;
2882
+ } | null;
2883
+ };
2884
+ };
2885
+ export type MarkNotificationReadMutationVariables = Exact<{
2886
+ id: Scalars['uuid']['input'];
2887
+ }>;
2888
+ export type MarkNotificationReadMutation = {
2889
+ __typename?: 'mutation_root';
2890
+ update_notifications_by_pk?: {
2891
+ __typename?: 'notifications';
2892
+ id: any;
2893
+ read: boolean;
2894
+ } | null;
2895
+ };
2896
+ export type MarkAllNotificationsReadMutationVariables = Exact<{
2897
+ [key: string]: never;
2898
+ }>;
2899
+ export type MarkAllNotificationsReadMutation = {
2900
+ __typename?: 'mutation_root';
2901
+ update_notifications?: {
2902
+ __typename?: 'notifications_mutation_response';
2903
+ affected_rows: number;
2904
+ } | null;
2905
+ };
2261
2906
  export type GetPipelinesQueryVariables = Exact<{
2262
2907
  [key: string]: never;
2263
2908
  }>;
@@ -2273,12 +2918,15 @@ export type GetPipelinesQuery = {
2273
2918
  icon_url?: string | null;
2274
2919
  preview_url?: string | null;
2275
2920
  required_providers: Array<string>;
2276
- credit_cost: number;
2277
2921
  input_schema: any;
2278
2922
  ui_schema: any;
2279
2923
  output_schema: any;
2280
2924
  seo_content?: string | null;
2281
2925
  seo_faq?: any | null;
2926
+ tags: Array<string>;
2927
+ hints: any;
2928
+ pricing: any;
2929
+ cancellable: boolean;
2282
2930
  }>;
2283
2931
  };
2284
2932
  export type RunPipelineMutationVariables = Exact<{
@@ -2293,6 +2941,16 @@ export type RunPipelineMutation = {
2293
2941
  workflow_id: string;
2294
2942
  } | null;
2295
2943
  };
2944
+ export type CancelPipelineRunMutationVariables = Exact<{
2945
+ run_id: Scalars['String']['input'];
2946
+ }>;
2947
+ export type CancelPipelineRunMutation = {
2948
+ __typename?: 'mutation_root';
2949
+ cancel_pipeline_run?: {
2950
+ __typename?: 'cancel_pipeline_run_output';
2951
+ success: boolean;
2952
+ } | null;
2953
+ };
2296
2954
  export type GetPipelineRunQueryVariables = Exact<{
2297
2955
  id: Scalars['uuid']['input'];
2298
2956
  }>;
@@ -2302,6 +2960,7 @@ export type GetPipelineRunQuery = {
2302
2960
  __typename?: 'pipeline_runs';
2303
2961
  id: any;
2304
2962
  status: string;
2963
+ input: any;
2305
2964
  output?: any | null;
2306
2965
  error_message?: string | null;
2307
2966
  credits_charged?: number | null;
@@ -2312,6 +2971,8 @@ export type GetPipelineRunQuery = {
2312
2971
  name: string;
2313
2972
  slug: string;
2314
2973
  output_schema: any;
2974
+ input_schema: any;
2975
+ ui_schema: any;
2315
2976
  };
2316
2977
  assets: Array<{
2317
2978
  __typename?: 'assets';
@@ -2340,6 +3001,7 @@ export type GetPipelineRunsQuery = {
2340
3001
  __typename?: 'pipeline_runs';
2341
3002
  id: any;
2342
3003
  status: string;
3004
+ input: any;
2343
3005
  output?: any | null;
2344
3006
  error_message?: string | null;
2345
3007
  credits_charged?: number | null;
@@ -2350,17 +3012,21 @@ export type GetPipelineRunsQuery = {
2350
3012
  name: string;
2351
3013
  slug: string;
2352
3014
  output_schema: any;
3015
+ input_schema: any;
3016
+ ui_schema: any;
2353
3017
  };
3018
+ workflow_execution?: {
3019
+ __typename?: 'executions_visibility';
3020
+ status: number;
3021
+ start_time: any;
3022
+ close_time?: any | null;
3023
+ } | null;
2354
3024
  }>;
2355
3025
  pipeline_runs_aggregate: {
2356
3026
  __typename?: 'pipeline_runs_aggregate';
2357
3027
  aggregate?: {
2358
3028
  __typename?: 'pipeline_runs_aggregate_fields';
2359
3029
  count: number;
2360
- sum?: {
2361
- __typename?: 'pipeline_runs_sum_fields';
2362
- credits_charged?: number | null;
2363
- } | null;
2364
3030
  } | null;
2365
3031
  };
2366
3032
  completed: {
@@ -2368,6 +3034,10 @@ export type GetPipelineRunsQuery = {
2368
3034
  aggregate?: {
2369
3035
  __typename?: 'pipeline_runs_aggregate_fields';
2370
3036
  count: number;
3037
+ sum?: {
3038
+ __typename?: 'pipeline_runs_sum_fields';
3039
+ credits_charged?: number | null;
3040
+ } | null;
2371
3041
  } | null;
2372
3042
  };
2373
3043
  };
@@ -2382,6 +3052,7 @@ export type GetPipelineRunsBySlugQuery = {
2382
3052
  __typename?: 'pipeline_runs';
2383
3053
  id: any;
2384
3054
  status: string;
3055
+ input: any;
2385
3056
  output?: any | null;
2386
3057
  error_message?: string | null;
2387
3058
  credits_charged?: number | null;
@@ -2392,7 +3063,16 @@ export type GetPipelineRunsBySlugQuery = {
2392
3063
  name: string;
2393
3064
  slug: string;
2394
3065
  output_schema: any;
3066
+ input_schema: any;
3067
+ ui_schema: any;
2395
3068
  };
3069
+ assets: Array<{
3070
+ __typename?: 'assets';
3071
+ id: any;
3072
+ type: string;
3073
+ url: string;
3074
+ thumbnail_url?: string | null;
3075
+ }>;
2396
3076
  workflow_execution?: {
2397
3077
  __typename?: 'executions_visibility';
2398
3078
  status: number;
@@ -2408,6 +3088,30 @@ export type GetPipelineRunsBySlugQuery = {
2408
3088
  } | null;
2409
3089
  };
2410
3090
  };
3091
+ export type GetActivePipelineRunsQueryVariables = Exact<{
3092
+ [key: string]: never;
3093
+ }>;
3094
+ export type GetActivePipelineRunsQuery = {
3095
+ __typename?: 'query_root';
3096
+ pipeline_runs: Array<{
3097
+ __typename?: 'pipeline_runs';
3098
+ id: any;
3099
+ status: string;
3100
+ created_at: any;
3101
+ pipeline: {
3102
+ __typename?: 'pipelines';
3103
+ name: string;
3104
+ slug: string;
3105
+ };
3106
+ }>;
3107
+ active_count: {
3108
+ __typename?: 'pipeline_runs_aggregate';
3109
+ aggregate?: {
3110
+ __typename?: 'pipeline_runs_aggregate_fields';
3111
+ count: number;
3112
+ } | null;
3113
+ };
3114
+ };
2411
3115
  export type GetPlansQueryVariables = Exact<{
2412
3116
  [key: string]: never;
2413
3117
  }>;
@@ -2473,13 +3177,19 @@ export type WatchPipelineRunSubscription = {
2473
3177
  __typename?: 'pipeline_runs';
2474
3178
  id: any;
2475
3179
  status: string;
3180
+ input: any;
2476
3181
  output?: any | null;
2477
3182
  error_message?: string | null;
3183
+ credits_charged?: number | null;
3184
+ created_at: any;
2478
3185
  completed_at?: any | null;
2479
3186
  pipeline: {
2480
3187
  __typename?: 'pipelines';
2481
3188
  name: string;
2482
3189
  slug: string;
3190
+ output_schema: any;
3191
+ input_schema: any;
3192
+ ui_schema: any;
2483
3193
  };
2484
3194
  assets: Array<{
2485
3195
  __typename?: 'assets';
@@ -2490,6 +3200,39 @@ export type WatchPipelineRunSubscription = {
2490
3200
  }>;
2491
3201
  } | null;
2492
3202
  };
3203
+ export type WatchActivePipelineRunsSubscriptionVariables = Exact<{
3204
+ [key: string]: never;
3205
+ }>;
3206
+ export type WatchActivePipelineRunsSubscription = {
3207
+ __typename?: 'subscription_root';
3208
+ pipeline_runs: Array<{
3209
+ __typename?: 'pipeline_runs';
3210
+ id: any;
3211
+ status: string;
3212
+ created_at: any;
3213
+ pipeline: {
3214
+ __typename?: 'pipelines';
3215
+ name: string;
3216
+ slug: string;
3217
+ };
3218
+ }>;
3219
+ };
3220
+ export type WatchNotificationsSubscriptionVariables = Exact<{
3221
+ limit: Scalars['Int']['input'];
3222
+ }>;
3223
+ export type WatchNotificationsSubscription = {
3224
+ __typename?: 'subscription_root';
3225
+ notifications: Array<{
3226
+ __typename?: 'notifications';
3227
+ id: any;
3228
+ type: string;
3229
+ title: string;
3230
+ body?: string | null;
3231
+ metadata?: any | null;
3232
+ read: boolean;
3233
+ created_at: any;
3234
+ }>;
3235
+ };
2493
3236
  export type GetMyApiKeysQueryVariables = Exact<{
2494
3237
  [key: string]: never;
2495
3238
  }>;
@@ -2543,13 +3286,25 @@ export type GetCurrentUserQuery = {
2543
3286
  name: string;
2544
3287
  email_verified: boolean;
2545
3288
  avatar_url?: string | null;
3289
+ deletion_scheduled_at?: string | null;
3290
+ deletion_effective_at?: string | null;
2546
3291
  };
2547
3292
  };
3293
+ export declare const ChangePasswordDocument: DocumentNode;
3294
+ export declare const ChangeNameDocument: DocumentNode;
3295
+ export declare const CancelSubscriptionDocument: DocumentNode;
3296
+ export declare const RequestAvatarUploadDocument: DocumentNode;
3297
+ export declare const ChangeAvatarDocument: DocumentNode;
3298
+ export declare const RequestAccountDeletionDocument: DocumentNode;
3299
+ export declare const ConfirmAccountDeletionDocument: DocumentNode;
3300
+ export declare const CancelAccountDeletionDocument: DocumentNode;
2548
3301
  export declare const GetMyAffiliateCodesDocument: DocumentNode;
2549
3302
  export declare const GetMyAffiliateDocument: DocumentNode;
2550
3303
  export declare const AddAffiliateCodeDocument: DocumentNode;
2551
3304
  export declare const EnsureAffiliateDocument: DocumentNode;
2552
3305
  export declare const GetMyReferralsDocument: DocumentNode;
3306
+ export declare const GetAssetThumbnailDocument: DocumentNode;
3307
+ export declare const GetAssetThumbnailsByIdsDocument: DocumentNode;
2553
3308
  export declare const GetUserAssetsDocument: DocumentNode;
2554
3309
  export declare const RequestUploadDocument: DocumentNode;
2555
3310
  export declare const CreateAssetDocument: DocumentNode;
@@ -2566,26 +3321,43 @@ export declare const InitRecoveryFlowDocument: DocumentNode;
2566
3321
  export declare const SubmitRecoveryFlowDocument: DocumentNode;
2567
3322
  export declare const GetCreditBalanceDocument: DocumentNode;
2568
3323
  export declare const GetCreditHistoryDocument: DocumentNode;
3324
+ export declare const GetNotificationsDocument: DocumentNode;
3325
+ export declare const MarkNotificationReadDocument: DocumentNode;
3326
+ export declare const MarkAllNotificationsReadDocument: DocumentNode;
2569
3327
  export declare const GetPipelinesDocument: DocumentNode;
2570
3328
  export declare const RunPipelineDocument: DocumentNode;
3329
+ export declare const CancelPipelineRunDocument: DocumentNode;
2571
3330
  export declare const GetPipelineRunDocument: DocumentNode;
2572
3331
  export declare const GetPipelineRunsDocument: DocumentNode;
2573
3332
  export declare const GetPipelineRunsBySlugDocument: DocumentNode;
3333
+ export declare const GetActivePipelineRunsDocument: DocumentNode;
2574
3334
  export declare const GetPlansDocument: DocumentNode;
2575
3335
  export declare const GetCreditPacksDocument: DocumentNode;
2576
3336
  export declare const GetSubscriptionDocument: DocumentNode;
2577
3337
  export declare const WatchPipelineRunDocument: DocumentNode;
3338
+ export declare const WatchActivePipelineRunsDocument: DocumentNode;
3339
+ export declare const WatchNotificationsDocument: DocumentNode;
2578
3340
  export declare const GetMyApiKeysDocument: DocumentNode;
2579
3341
  export declare const CreatePersonalAccessTokenDocument: DocumentNode;
2580
3342
  export declare const RevokePersonalAccessTokenDocument: DocumentNode;
2581
3343
  export declare const GetCurrentUserDocument: DocumentNode;
2582
3344
  export type Requester<C = {}> = <R, V>(doc: DocumentNode, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
2583
3345
  export declare function getSdk<C>(requester: Requester<C>): {
3346
+ ChangePassword(variables: ChangePasswordMutationVariables, options?: C): Promise<ChangePasswordMutation>;
3347
+ ChangeName(variables: ChangeNameMutationVariables, options?: C): Promise<ChangeNameMutation>;
3348
+ CancelSubscription(variables?: CancelSubscriptionMutationVariables, options?: C): Promise<CancelSubscriptionMutation>;
3349
+ RequestAvatarUpload(variables: RequestAvatarUploadMutationVariables, options?: C): Promise<RequestAvatarUploadMutation>;
3350
+ ChangeAvatar(variables: ChangeAvatarMutationVariables, options?: C): Promise<ChangeAvatarMutation>;
3351
+ RequestAccountDeletion(variables?: RequestAccountDeletionMutationVariables, options?: C): Promise<RequestAccountDeletionMutation>;
3352
+ ConfirmAccountDeletion(variables: ConfirmAccountDeletionMutationVariables, options?: C): Promise<ConfirmAccountDeletionMutation>;
3353
+ CancelAccountDeletion(variables?: CancelAccountDeletionMutationVariables, options?: C): Promise<CancelAccountDeletionMutation>;
2584
3354
  GetMyAffiliateCodes(variables?: GetMyAffiliateCodesQueryVariables, options?: C): Promise<GetMyAffiliateCodesQuery>;
2585
3355
  GetMyAffiliate(variables?: GetMyAffiliateQueryVariables, options?: C): Promise<GetMyAffiliateQuery>;
2586
3356
  AddAffiliateCode(variables: AddAffiliateCodeMutationVariables, options?: C): Promise<AddAffiliateCodeMutation>;
2587
3357
  EnsureAffiliate(variables?: EnsureAffiliateMutationVariables, options?: C): Promise<EnsureAffiliateMutation>;
2588
3358
  GetMyReferrals(variables?: GetMyReferralsQueryVariables, options?: C): Promise<GetMyReferralsQuery>;
3359
+ GetAssetThumbnail(variables: GetAssetThumbnailQueryVariables, options?: C): Promise<GetAssetThumbnailQuery>;
3360
+ GetAssetThumbnailsByIds(variables: GetAssetThumbnailsByIdsQueryVariables, options?: C): Promise<GetAssetThumbnailsByIdsQuery>;
2589
3361
  GetUserAssets(variables?: GetUserAssetsQueryVariables, options?: C): Promise<GetUserAssetsQuery>;
2590
3362
  RequestUpload(variables: RequestUploadMutationVariables, options?: C): Promise<RequestUploadMutation>;
2591
3363
  CreateAsset(variables: CreateAssetMutationVariables, options?: C): Promise<CreateAssetMutation>;
@@ -2602,15 +3374,22 @@ export declare function getSdk<C>(requester: Requester<C>): {
2602
3374
  SubmitRecoveryFlow(variables: SubmitRecoveryFlowMutationVariables, options?: C): Promise<SubmitRecoveryFlowMutation>;
2603
3375
  GetCreditBalance(variables?: GetCreditBalanceQueryVariables, options?: C): Promise<GetCreditBalanceQuery>;
2604
3376
  GetCreditHistory(variables?: GetCreditHistoryQueryVariables, options?: C): Promise<GetCreditHistoryQuery>;
3377
+ GetNotifications(variables: GetNotificationsQueryVariables, options?: C): Promise<GetNotificationsQuery>;
3378
+ MarkNotificationRead(variables: MarkNotificationReadMutationVariables, options?: C): Promise<MarkNotificationReadMutation>;
3379
+ MarkAllNotificationsRead(variables?: MarkAllNotificationsReadMutationVariables, options?: C): Promise<MarkAllNotificationsReadMutation>;
2605
3380
  GetPipelines(variables?: GetPipelinesQueryVariables, options?: C): Promise<GetPipelinesQuery>;
2606
3381
  RunPipeline(variables: RunPipelineMutationVariables, options?: C): Promise<RunPipelineMutation>;
3382
+ CancelPipelineRun(variables: CancelPipelineRunMutationVariables, options?: C): Promise<CancelPipelineRunMutation>;
2607
3383
  GetPipelineRun(variables: GetPipelineRunQueryVariables, options?: C): Promise<GetPipelineRunQuery>;
2608
3384
  GetPipelineRuns(variables?: GetPipelineRunsQueryVariables, options?: C): Promise<GetPipelineRunsQuery>;
2609
3385
  GetPipelineRunsBySlug(variables: GetPipelineRunsBySlugQueryVariables, options?: C): Promise<GetPipelineRunsBySlugQuery>;
3386
+ GetActivePipelineRuns(variables?: GetActivePipelineRunsQueryVariables, options?: C): Promise<GetActivePipelineRunsQuery>;
2610
3387
  GetPlans(variables?: GetPlansQueryVariables, options?: C): Promise<GetPlansQuery>;
2611
3388
  GetCreditPacks(variables?: GetCreditPacksQueryVariables, options?: C): Promise<GetCreditPacksQuery>;
2612
3389
  GetSubscription(variables?: GetSubscriptionQueryVariables, options?: C): Promise<GetSubscriptionQuery>;
2613
3390
  WatchPipelineRun(variables: WatchPipelineRunSubscriptionVariables, options?: C): AsyncIterable<WatchPipelineRunSubscription>;
3391
+ WatchActivePipelineRuns(variables?: WatchActivePipelineRunsSubscriptionVariables, options?: C): AsyncIterable<WatchActivePipelineRunsSubscription>;
3392
+ WatchNotifications(variables: WatchNotificationsSubscriptionVariables, options?: C): AsyncIterable<WatchNotificationsSubscription>;
2614
3393
  GetMyApiKeys(variables?: GetMyApiKeysQueryVariables, options?: C): Promise<GetMyApiKeysQuery>;
2615
3394
  CreatePersonalAccessToken(variables: CreatePersonalAccessTokenMutationVariables, options?: C): Promise<CreatePersonalAccessTokenMutation>;
2616
3395
  RevokePersonalAccessToken(variables: RevokePersonalAccessTokenMutationVariables, options?: C): Promise<RevokePersonalAccessTokenMutation>;