system-initiative-api-client 1.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/api.d.ts CHANGED
@@ -431,12 +431,6 @@ export interface ComponentViewV1 {
431
431
  * @memberof ComponentViewV1
432
432
  */
433
433
  'schemaVariantId': string;
434
- /**
435
- *
436
- * @type {Array<SocketViewV1>}
437
- * @memberof ComponentViewV1
438
- */
439
- 'sockets': Array<SocketViewV1>;
440
434
  /**
441
435
  *
442
436
  * @type {boolean}
@@ -450,98 +444,11 @@ export interface ComponentViewV1 {
450
444
  */
451
445
  'views': Array<ViewV1>;
452
446
  }
453
- /**
454
- * @type Connection
455
- * @export
456
- */
457
- export type Connection = ConnectionOneOf | ConnectionOneOf1;
458
- /**
459
- *
460
- * @export
461
- * @interface ConnectionDetails
462
- */
463
- export interface ConnectionDetails {
464
- /**
465
- *
466
- * @type {Array<Connection>}
467
- * @memberof ConnectionDetails
468
- */
469
- 'add'?: Array<Connection>;
470
- /**
471
- *
472
- * @type {Array<Connection>}
473
- * @memberof ConnectionDetails
474
- */
475
- 'remove'?: Array<Connection>;
476
- }
477
- /**
478
- *
479
- * @export
480
- * @interface ConnectionOneOf
481
- */
482
- export interface ConnectionOneOf {
483
- /**
484
- *
485
- * @type {ConnectionPoint}
486
- * @memberof ConnectionOneOf
487
- */
488
- 'from': ConnectionPoint;
489
- /**
490
- *
491
- * @type {string}
492
- * @memberof ConnectionOneOf
493
- */
494
- 'to': string;
495
- }
496
- /**
497
- *
498
- * @export
499
- * @interface ConnectionOneOf1
500
- */
501
- export interface ConnectionOneOf1 {
502
- /**
503
- *
504
- * @type {string}
505
- * @memberof ConnectionOneOf1
506
- */
507
- 'from': string;
508
- /**
509
- *
510
- * @type {ConnectionPoint}
511
- * @memberof ConnectionOneOf1
512
- */
513
- 'to': ConnectionPoint;
514
- }
515
- /**
516
- *
517
- * @export
518
- * @interface ConnectionPoint
519
- */
520
- export interface ConnectionPoint {
521
- /**
522
- *
523
- * @type {string}
524
- * @memberof ConnectionPoint
525
- */
526
- 'component': string;
527
- /**
528
- *
529
- * @type {string}
530
- * @memberof ConnectionPoint
531
- */
532
- 'componentId': string;
533
- /**
534
- *
535
- * @type {string}
536
- * @memberof ConnectionPoint
537
- */
538
- 'socketName': string;
539
- }
540
447
  /**
541
448
  * @type ConnectionViewV1
542
449
  * @export
543
450
  */
544
- export type ConnectionViewV1 = ConnectionViewV1OneOf | ConnectionViewV1OneOf1 | ConnectionViewV1OneOf2 | ConnectionViewV1OneOf3;
451
+ export type ConnectionViewV1 = ConnectionViewV1OneOf | ConnectionViewV1OneOf1;
545
452
  /**
546
453
  *
547
454
  * @export
@@ -550,10 +457,10 @@ export type ConnectionViewV1 = ConnectionViewV1OneOf | ConnectionViewV1OneOf1 |
550
457
  export interface ConnectionViewV1OneOf {
551
458
  /**
552
459
  *
553
- * @type {IncomingConnectionViewV1}
460
+ * @type {ManagingConnectionViewV1}
554
461
  * @memberof ConnectionViewV1OneOf
555
462
  */
556
- 'incoming': IncomingConnectionViewV1;
463
+ 'managing': ManagingConnectionViewV1;
557
464
  }
558
465
  /**
559
466
  *
@@ -561,36 +468,10 @@ export interface ConnectionViewV1OneOf {
561
468
  * @interface ConnectionViewV1OneOf1
562
469
  */
563
470
  export interface ConnectionViewV1OneOf1 {
564
- /**
565
- *
566
- * @type {OutgoingConnectionViewV1}
567
- * @memberof ConnectionViewV1OneOf1
568
- */
569
- 'outgoing': OutgoingConnectionViewV1;
570
- }
571
- /**
572
- *
573
- * @export
574
- * @interface ConnectionViewV1OneOf2
575
- */
576
- export interface ConnectionViewV1OneOf2 {
577
- /**
578
- *
579
- * @type {ManagingConnectionViewV1}
580
- * @memberof ConnectionViewV1OneOf2
581
- */
582
- 'managing': ManagingConnectionViewV1;
583
- }
584
- /**
585
- *
586
- * @export
587
- * @interface ConnectionViewV1OneOf3
588
- */
589
- export interface ConnectionViewV1OneOf3 {
590
471
  /**
591
472
  *
592
473
  * @type {ManagedByConnectionViewV1}
593
- * @memberof ConnectionViewV1OneOf3
474
+ * @memberof ConnectionViewV1OneOf1
594
475
  */
595
476
  'managedBy': ManagedByConnectionViewV1;
596
477
  }
@@ -634,21 +515,6 @@ export interface CreateComponentV1Request {
634
515
  'attributes'?: {
635
516
  [key: string]: any;
636
517
  };
637
- /**
638
- *
639
- * @type {Array<Connection>}
640
- * @memberof CreateComponentV1Request
641
- */
642
- 'connections'?: Array<Connection>;
643
- /**
644
- *
645
- * @type {{ [key: string]: any; }}
646
- * @memberof CreateComponentV1Request
647
- * @deprecated
648
- */
649
- 'domain'?: {
650
- [key: string]: any;
651
- };
652
518
  /**
653
519
  *
654
520
  * @type {ComponentReference}
@@ -673,24 +539,6 @@ export interface CreateComponentV1Request {
673
539
  * @memberof CreateComponentV1Request
674
540
  */
675
541
  'schemaName': string;
676
- /**
677
- *
678
- * @type {{ [key: string]: any; }}
679
- * @memberof CreateComponentV1Request
680
- * @deprecated
681
- */
682
- 'secrets'?: {
683
- [key: string]: any;
684
- };
685
- /**
686
- *
687
- * @type {{ [key: string]: Subscription; }}
688
- * @memberof CreateComponentV1Request
689
- * @deprecated
690
- */
691
- 'subscriptions'?: {
692
- [key: string]: Subscription;
693
- };
694
542
  /**
695
543
  *
696
544
  * @type {string}
@@ -711,6 +559,49 @@ export interface CreateComponentV1Response {
711
559
  */
712
560
  'component': ComponentViewV1;
713
561
  }
562
+ /**
563
+ *
564
+ * @export
565
+ * @interface CreateSchemaV1Request
566
+ */
567
+ export interface CreateSchemaV1Request {
568
+ /**
569
+ *
570
+ * @type {string}
571
+ * @memberof CreateSchemaV1Request
572
+ */
573
+ 'category'?: string | null;
574
+ /**
575
+ *
576
+ * @type {string}
577
+ * @memberof CreateSchemaV1Request
578
+ */
579
+ 'code': string;
580
+ /**
581
+ *
582
+ * @type {string}
583
+ * @memberof CreateSchemaV1Request
584
+ */
585
+ 'color'?: string | null;
586
+ /**
587
+ *
588
+ * @type {string}
589
+ * @memberof CreateSchemaV1Request
590
+ */
591
+ 'description'?: string | null;
592
+ /**
593
+ *
594
+ * @type {string}
595
+ * @memberof CreateSchemaV1Request
596
+ */
597
+ 'link'?: string | null;
598
+ /**
599
+ *
600
+ * @type {string}
601
+ * @memberof CreateSchemaV1Request
602
+ */
603
+ 'name': string;
604
+ }
714
605
  /**
715
606
  *
716
607
  * @export
@@ -760,150 +651,410 @@ export interface CreateSecretV1Response {
760
651
  /**
761
652
  *
762
653
  * @export
763
- * @interface DeleteChangeSetV1Response
654
+ * @interface CreateVariantActionFuncV1Request
764
655
  */
765
- export interface DeleteChangeSetV1Response {
656
+ export interface CreateVariantActionFuncV1Request {
766
657
  /**
767
658
  *
768
- * @type {boolean}
769
- * @memberof DeleteChangeSetV1Response
659
+ * @type {string}
660
+ * @memberof CreateVariantActionFuncV1Request
770
661
  */
771
- 'success': boolean;
772
- }
773
- /**
774
- *
775
- * @export
776
- * @interface DeleteComponentV1Response
777
- */
778
- export interface DeleteComponentV1Response {
662
+ 'code': string;
779
663
  /**
780
664
  *
781
665
  * @type {string}
782
- * @memberof DeleteComponentV1Response
666
+ * @memberof CreateVariantActionFuncV1Request
783
667
  */
784
- 'status': string;
668
+ 'description': string;
669
+ /**
670
+ *
671
+ * @type {string}
672
+ * @memberof CreateVariantActionFuncV1Request
673
+ */
674
+ 'displayName': string;
675
+ /**
676
+ *
677
+ * @type {string}
678
+ * @memberof CreateVariantActionFuncV1Request
679
+ */
680
+ 'kind': string;
681
+ /**
682
+ *
683
+ * @type {string}
684
+ * @memberof CreateVariantActionFuncV1Request
685
+ */
686
+ 'name': string;
785
687
  }
786
688
  /**
787
689
  *
788
690
  * @export
789
- * @interface DeleteSecretV1Response
691
+ * @interface CreateVariantActionFuncV1Response
790
692
  */
791
- export interface DeleteSecretV1Response {
693
+ export interface CreateVariantActionFuncV1Response {
792
694
  /**
793
695
  *
794
- * @type {boolean}
795
- * @memberof DeleteSecretV1Response
696
+ * @type {string}
697
+ * @memberof CreateVariantActionFuncV1Response
796
698
  */
797
- 'success': boolean;
699
+ 'funcId': string;
798
700
  }
799
701
  /**
800
702
  *
801
703
  * @export
802
- * @interface DuplicateComponentsV1Request
704
+ * @interface CreateVariantAuthenticationFuncV1Request
803
705
  */
804
- export interface DuplicateComponentsV1Request {
706
+ export interface CreateVariantAuthenticationFuncV1Request {
805
707
  /**
806
708
  *
807
- * @type {Array<Array<string>>}
808
- * @memberof DuplicateComponentsV1Request
709
+ * @type {string}
710
+ * @memberof CreateVariantAuthenticationFuncV1Request
809
711
  */
810
- 'components': Array<Array<string>>;
712
+ 'code': string;
811
713
  /**
812
714
  *
813
715
  * @type {string}
814
- * @memberof DuplicateComponentsV1Request
716
+ * @memberof CreateVariantAuthenticationFuncV1Request
815
717
  */
816
- 'prefix'?: string | null;
718
+ 'description': string;
817
719
  /**
818
720
  *
819
721
  * @type {string}
820
- * @memberof DuplicateComponentsV1Request
722
+ * @memberof CreateVariantAuthenticationFuncV1Request
821
723
  */
822
- 'viewName'?: string | null;
823
- }
824
- /**
825
- *
826
- * @export
827
- * @interface DuplicateComponentsV1Response
828
- */
829
- export interface DuplicateComponentsV1Response {
724
+ 'displayName': string;
830
725
  /**
831
726
  *
832
- * @type {Array<Array<string>>}
833
- * @memberof DuplicateComponentsV1Response
727
+ * @type {string}
728
+ * @memberof CreateVariantAuthenticationFuncV1Request
834
729
  */
835
- 'components': Array<Array<string>>;
730
+ 'name': string;
836
731
  }
837
732
  /**
838
733
  *
839
734
  * @export
840
- * @interface EraseComponentV1Response
735
+ * @interface CreateVariantAuthenticationFuncV1Response
841
736
  */
842
- export interface EraseComponentV1Response {
737
+ export interface CreateVariantAuthenticationFuncV1Response {
843
738
  /**
844
739
  *
845
- * @type {boolean}
846
- * @memberof EraseComponentV1Response
740
+ * @type {string}
741
+ * @memberof CreateVariantAuthenticationFuncV1Response
847
742
  */
848
- 'status': boolean;
743
+ 'funcId': string;
849
744
  }
850
745
  /**
851
746
  *
852
747
  * @export
853
- * @interface ErrorDetail
748
+ * @interface CreateVariantCodegenFuncV1Request
854
749
  */
855
- export interface ErrorDetail {
750
+ export interface CreateVariantCodegenFuncV1Request {
856
751
  /**
857
752
  *
858
- * @type {number}
859
- * @memberof ErrorDetail
753
+ * @type {string}
754
+ * @memberof CreateVariantCodegenFuncV1Request
860
755
  */
861
- 'code': number;
756
+ 'code': string;
862
757
  /**
863
758
  *
864
759
  * @type {string}
865
- * @memberof ErrorDetail
760
+ * @memberof CreateVariantCodegenFuncV1Request
866
761
  */
867
- 'message': string;
762
+ 'description': string;
868
763
  /**
869
764
  *
870
- * @type {number}
871
- * @memberof ErrorDetail
765
+ * @type {string}
766
+ * @memberof CreateVariantCodegenFuncV1Request
872
767
  */
873
- 'status_code': number;
768
+ 'displayName': string;
769
+ /**
770
+ *
771
+ * @type {Array<string>}
772
+ * @memberof CreateVariantCodegenFuncV1Request
773
+ */
774
+ 'locations': Array<CreateVariantCodegenFuncV1RequestLocationsEnum>;
775
+ /**
776
+ *
777
+ * @type {string}
778
+ * @memberof CreateVariantCodegenFuncV1Request
779
+ */
780
+ 'name': string;
781
+ }
782
+ /**
783
+ * @export
784
+ * @enum {string}
785
+ */
786
+ export declare enum CreateVariantCodegenFuncV1RequestLocationsEnum {
787
+ CODE = "code",
788
+ DELETED_AT = "deletedAt",
789
+ DOMAIN = "domain",
790
+ RESOURCE = "resource",
791
+ SECRETS = "secrets"
874
792
  }
875
793
  /**
876
794
  *
877
795
  * @export
878
- * @interface ErrorResponse
796
+ * @interface CreateVariantCodegenFuncV1Response
879
797
  */
880
- export interface ErrorResponse {
798
+ export interface CreateVariantCodegenFuncV1Response {
881
799
  /**
882
800
  *
883
- * @type {ErrorDetail}
884
- * @memberof ErrorResponse
801
+ * @type {string}
802
+ * @memberof CreateVariantCodegenFuncV1Response
885
803
  */
886
- 'error': ErrorDetail;
804
+ 'funcId': string;
887
805
  }
888
806
  /**
889
807
  *
890
808
  * @export
891
- * @interface ExecuteManagementFunctionV1Request
809
+ * @interface CreateVariantManagementFuncV1Request
892
810
  */
893
- export interface ExecuteManagementFunctionV1Request {
811
+ export interface CreateVariantManagementFuncV1Request {
894
812
  /**
895
813
  *
896
- * @type {ManagementFunctionReference}
897
- * @memberof ExecuteManagementFunctionV1Request
814
+ * @type {string}
815
+ * @memberof CreateVariantManagementFuncV1Request
898
816
  */
899
- 'managementFunction': ManagementFunctionReference;
817
+ 'code': string;
900
818
  /**
901
819
  *
902
820
  * @type {string}
903
- * @memberof ExecuteManagementFunctionV1Request
821
+ * @memberof CreateVariantManagementFuncV1Request
904
822
  */
905
- 'viewName'?: string | null;
906
- }
823
+ 'description': string;
824
+ /**
825
+ *
826
+ * @type {string}
827
+ * @memberof CreateVariantManagementFuncV1Request
828
+ */
829
+ 'displayName': string;
830
+ /**
831
+ *
832
+ * @type {string}
833
+ * @memberof CreateVariantManagementFuncV1Request
834
+ */
835
+ 'name': string;
836
+ }
837
+ /**
838
+ *
839
+ * @export
840
+ * @interface CreateVariantManagementFuncV1Response
841
+ */
842
+ export interface CreateVariantManagementFuncV1Response {
843
+ /**
844
+ *
845
+ * @type {string}
846
+ * @memberof CreateVariantManagementFuncV1Response
847
+ */
848
+ 'funcId': string;
849
+ }
850
+ /**
851
+ *
852
+ * @export
853
+ * @interface CreateVariantQualificationFuncV1Request
854
+ */
855
+ export interface CreateVariantQualificationFuncV1Request {
856
+ /**
857
+ *
858
+ * @type {string}
859
+ * @memberof CreateVariantQualificationFuncV1Request
860
+ */
861
+ 'code': string;
862
+ /**
863
+ *
864
+ * @type {string}
865
+ * @memberof CreateVariantQualificationFuncV1Request
866
+ */
867
+ 'description': string;
868
+ /**
869
+ *
870
+ * @type {string}
871
+ * @memberof CreateVariantQualificationFuncV1Request
872
+ */
873
+ 'displayName': string;
874
+ /**
875
+ *
876
+ * @type {Array<string>}
877
+ * @memberof CreateVariantQualificationFuncV1Request
878
+ */
879
+ 'locations': Array<CreateVariantQualificationFuncV1RequestLocationsEnum>;
880
+ /**
881
+ *
882
+ * @type {string}
883
+ * @memberof CreateVariantQualificationFuncV1Request
884
+ */
885
+ 'name': string;
886
+ }
887
+ /**
888
+ * @export
889
+ * @enum {string}
890
+ */
891
+ export declare enum CreateVariantQualificationFuncV1RequestLocationsEnum {
892
+ CODE = "code",
893
+ DELETED_AT = "deletedAt",
894
+ DOMAIN = "domain",
895
+ RESOURCE = "resource",
896
+ SECRETS = "secrets"
897
+ }
898
+ /**
899
+ *
900
+ * @export
901
+ * @interface CreateVariantQualificationFuncV1Response
902
+ */
903
+ export interface CreateVariantQualificationFuncV1Response {
904
+ /**
905
+ *
906
+ * @type {string}
907
+ * @memberof CreateVariantQualificationFuncV1Response
908
+ */
909
+ 'funcId': string;
910
+ }
911
+ /**
912
+ *
913
+ * @export
914
+ * @interface DeleteChangeSetV1Response
915
+ */
916
+ export interface DeleteChangeSetV1Response {
917
+ /**
918
+ *
919
+ * @type {boolean}
920
+ * @memberof DeleteChangeSetV1Response
921
+ */
922
+ 'success': boolean;
923
+ }
924
+ /**
925
+ *
926
+ * @export
927
+ * @interface DeleteComponentV1Response
928
+ */
929
+ export interface DeleteComponentV1Response {
930
+ /**
931
+ *
932
+ * @type {string}
933
+ * @memberof DeleteComponentV1Response
934
+ */
935
+ 'status': string;
936
+ }
937
+ /**
938
+ *
939
+ * @export
940
+ * @interface DeleteSecretV1Response
941
+ */
942
+ export interface DeleteSecretV1Response {
943
+ /**
944
+ *
945
+ * @type {boolean}
946
+ * @memberof DeleteSecretV1Response
947
+ */
948
+ 'success': boolean;
949
+ }
950
+ /**
951
+ *
952
+ * @export
953
+ * @interface DuplicateComponentsV1Request
954
+ */
955
+ export interface DuplicateComponentsV1Request {
956
+ /**
957
+ *
958
+ * @type {Array<Array<string>>}
959
+ * @memberof DuplicateComponentsV1Request
960
+ */
961
+ 'components': Array<Array<string>>;
962
+ /**
963
+ *
964
+ * @type {string}
965
+ * @memberof DuplicateComponentsV1Request
966
+ */
967
+ 'prefix'?: string | null;
968
+ /**
969
+ *
970
+ * @type {string}
971
+ * @memberof DuplicateComponentsV1Request
972
+ */
973
+ 'viewName'?: string | null;
974
+ }
975
+ /**
976
+ *
977
+ * @export
978
+ * @interface DuplicateComponentsV1Response
979
+ */
980
+ export interface DuplicateComponentsV1Response {
981
+ /**
982
+ *
983
+ * @type {Array<Array<string>>}
984
+ * @memberof DuplicateComponentsV1Response
985
+ */
986
+ 'components': Array<Array<string>>;
987
+ }
988
+ /**
989
+ *
990
+ * @export
991
+ * @interface EraseComponentV1Response
992
+ */
993
+ export interface EraseComponentV1Response {
994
+ /**
995
+ *
996
+ * @type {boolean}
997
+ * @memberof EraseComponentV1Response
998
+ */
999
+ 'status': boolean;
1000
+ }
1001
+ /**
1002
+ *
1003
+ * @export
1004
+ * @interface ErrorDetail
1005
+ */
1006
+ export interface ErrorDetail {
1007
+ /**
1008
+ *
1009
+ * @type {number}
1010
+ * @memberof ErrorDetail
1011
+ */
1012
+ 'code': number;
1013
+ /**
1014
+ *
1015
+ * @type {string}
1016
+ * @memberof ErrorDetail
1017
+ */
1018
+ 'message': string;
1019
+ /**
1020
+ *
1021
+ * @type {number}
1022
+ * @memberof ErrorDetail
1023
+ */
1024
+ 'status_code': number;
1025
+ }
1026
+ /**
1027
+ *
1028
+ * @export
1029
+ * @interface ErrorResponse
1030
+ */
1031
+ export interface ErrorResponse {
1032
+ /**
1033
+ *
1034
+ * @type {ErrorDetail}
1035
+ * @memberof ErrorResponse
1036
+ */
1037
+ 'error': ErrorDetail;
1038
+ }
1039
+ /**
1040
+ *
1041
+ * @export
1042
+ * @interface ExecuteManagementFunctionV1Request
1043
+ */
1044
+ export interface ExecuteManagementFunctionV1Request {
1045
+ /**
1046
+ *
1047
+ * @type {ManagementFunctionReference}
1048
+ * @memberof ExecuteManagementFunctionV1Request
1049
+ */
1050
+ 'managementFunction': ManagementFunctionReference;
1051
+ /**
1052
+ *
1053
+ * @type {string}
1054
+ * @memberof ExecuteManagementFunctionV1Request
1055
+ */
1056
+ 'viewName'?: string | null;
1057
+ }
907
1058
  /**
908
1059
  *
909
1060
  * @export
@@ -1280,6 +1431,12 @@ export interface GenerateTemplateV1Response {
1280
1431
  * @memberof GenerateTemplateV1Response
1281
1432
  */
1282
1433
  'funcId': string;
1434
+ /**
1435
+ *
1436
+ * @type {string}
1437
+ * @memberof GenerateTemplateV1Response
1438
+ */
1439
+ 'schemaId': string;
1283
1440
  /**
1284
1441
  *
1285
1442
  * @type {string}
@@ -1574,37 +1731,6 @@ export interface HashMapValue {
1574
1731
  */
1575
1732
  'secrets': Array<SecretV1>;
1576
1733
  }
1577
- /**
1578
- *
1579
- * @export
1580
- * @interface IncomingConnectionViewV1
1581
- */
1582
- export interface IncomingConnectionViewV1 {
1583
- /**
1584
- *
1585
- * @type {string}
1586
- * @memberof IncomingConnectionViewV1
1587
- */
1588
- 'from': string;
1589
- /**
1590
- *
1591
- * @type {string}
1592
- * @memberof IncomingConnectionViewV1
1593
- */
1594
- 'fromComponentId': string;
1595
- /**
1596
- *
1597
- * @type {string}
1598
- * @memberof IncomingConnectionViewV1
1599
- */
1600
- 'fromComponentName': string;
1601
- /**
1602
- *
1603
- * @type {string}
1604
- * @memberof IncomingConnectionViewV1
1605
- */
1606
- 'to': string;
1607
- }
1608
1734
  /**
1609
1735
  *
1610
1736
  * @export
@@ -1630,12 +1756,6 @@ export interface ListComponentsV1Response {
1630
1756
  * @memberof ListComponentsV1Response
1631
1757
  */
1632
1758
  'componentDetails': Array<ComponentDetailsV1>;
1633
- /**
1634
- *
1635
- * @type {Array<Array<string>>}
1636
- * @memberof ListComponentsV1Response
1637
- */
1638
- 'components': Array<Array<string>>;
1639
1759
  /**
1640
1760
  *
1641
1761
  * @type {string}
@@ -1849,50 +1969,25 @@ export interface MergeStatusV1ResponseActionComponent {
1849
1969
  /**
1850
1970
  *
1851
1971
  * @export
1852
- * @interface OutgoingConnectionViewV1
1972
+ * @interface OutputLineViewV1
1853
1973
  */
1854
- export interface OutgoingConnectionViewV1 {
1974
+ export interface OutputLineViewV1 {
1855
1975
  /**
1856
1976
  *
1857
1977
  * @type {string}
1858
- * @memberof OutgoingConnectionViewV1
1978
+ * @memberof OutputLineViewV1
1859
1979
  */
1860
- 'from': string;
1980
+ 'executionId': string;
1861
1981
  /**
1862
1982
  *
1863
1983
  * @type {string}
1864
- * @memberof OutgoingConnectionViewV1
1984
+ * @memberof OutputLineViewV1
1865
1985
  */
1866
- 'toComponentId': string;
1986
+ 'group'?: string | null;
1867
1987
  /**
1868
1988
  *
1869
1989
  * @type {string}
1870
- * @memberof OutgoingConnectionViewV1
1871
- */
1872
- 'toComponentName': string;
1873
- }
1874
- /**
1875
- *
1876
- * @export
1877
- * @interface OutputLineViewV1
1878
- */
1879
- export interface OutputLineViewV1 {
1880
- /**
1881
- *
1882
- * @type {string}
1883
- * @memberof OutputLineViewV1
1884
- */
1885
- 'executionId': string;
1886
- /**
1887
- *
1888
- * @type {string}
1889
- * @memberof OutputLineViewV1
1890
- */
1891
- 'group'?: string | null;
1892
- /**
1893
- *
1894
- * @type {string}
1895
- * @memberof OutputLineViewV1
1990
+ * @memberof OutputLineViewV1
1896
1991
  */
1897
1992
  'level': string;
1898
1993
  /**
@@ -2129,6 +2224,32 @@ export interface SearchComponentsV1Response {
2129
2224
  */
2130
2225
  'components': Array<Array<string>>;
2131
2226
  }
2227
+ /**
2228
+ *
2229
+ * @export
2230
+ * @interface SearchSchemasV1Request
2231
+ */
2232
+ export interface SearchSchemasV1Request {
2233
+ /**
2234
+ *
2235
+ * @type {string}
2236
+ * @memberof SearchSchemasV1Request
2237
+ */
2238
+ 'category'?: string | null;
2239
+ }
2240
+ /**
2241
+ *
2242
+ * @export
2243
+ * @interface SearchSchemasV1Response
2244
+ */
2245
+ export interface SearchSchemasV1Response {
2246
+ /**
2247
+ *
2248
+ * @type {Array<SchemaResponse>}
2249
+ * @memberof SearchSchemasV1Response
2250
+ */
2251
+ 'schemas': Array<SchemaResponse>;
2252
+ }
2132
2253
  /**
2133
2254
  *
2134
2255
  * @export
@@ -2206,190 +2327,182 @@ export interface SecretV1 {
2206
2327
  /**
2207
2328
  *
2208
2329
  * @export
2209
- * @enum {string}
2210
- */
2211
- export declare enum SocketDirection {
2212
- INPUT = "input",
2213
- OUTPUT = "output"
2214
- }
2215
- /**
2216
- *
2217
- * @export
2218
- * @interface SocketViewV1
2330
+ * @interface SourceViewV1
2219
2331
  */
2220
- export interface SocketViewV1 {
2332
+ export interface SourceViewV1 {
2221
2333
  /**
2222
2334
  *
2223
2335
  * @type {string}
2224
- * @memberof SocketViewV1
2225
- */
2226
- 'arity': string;
2227
- /**
2228
- *
2229
- * @type {SocketDirection}
2230
- * @memberof SocketViewV1
2336
+ * @memberof SourceViewV1
2231
2337
  */
2232
- 'direction': SocketDirection;
2338
+ 'component': string;
2233
2339
  /**
2234
2340
  *
2235
2341
  * @type {string}
2236
- * @memberof SocketViewV1
2342
+ * @memberof SourceViewV1
2237
2343
  */
2238
- 'id': string;
2344
+ 'propPath': string;
2345
+ }
2346
+ /**
2347
+ *
2348
+ * @export
2349
+ * @interface SystemStatusResponse
2350
+ */
2351
+ export interface SystemStatusResponse {
2239
2352
  /**
2240
2353
  *
2241
2354
  * @type {string}
2242
- * @memberof SocketViewV1
2243
- */
2244
- 'name': string;
2245
- /**
2246
- *
2247
- * @type {object}
2248
- * @memberof SocketViewV1
2355
+ * @memberof SystemStatusResponse
2249
2356
  */
2250
- 'value': object;
2357
+ 'API Documentation': string;
2251
2358
  }
2252
2359
  /**
2253
2360
  *
2254
2361
  * @export
2255
- * @interface SourceViewV1
2362
+ * @interface UnlockedSchemaV1Response
2256
2363
  */
2257
- export interface SourceViewV1 {
2364
+ export interface UnlockedSchemaV1Response {
2258
2365
  /**
2259
2366
  *
2260
2367
  * @type {string}
2261
- * @memberof SourceViewV1
2368
+ * @memberof UnlockedSchemaV1Response
2262
2369
  */
2263
- 'component': string;
2370
+ 'schemaId': string;
2264
2371
  /**
2265
2372
  *
2266
2373
  * @type {string}
2267
- * @memberof SourceViewV1
2374
+ * @memberof UnlockedSchemaV1Response
2268
2375
  */
2269
- 'propPath': string;
2376
+ 'unlockedVariantId': string;
2270
2377
  }
2271
2378
  /**
2272
2379
  *
2273
2380
  * @export
2274
- * @interface Subscription
2381
+ * @interface UpdateComponentV1Request
2275
2382
  */
2276
- export interface Subscription {
2383
+ export interface UpdateComponentV1Request {
2277
2384
  /**
2278
2385
  *
2279
- * @type {string}
2280
- * @memberof Subscription
2386
+ * @type {{ [key: string]: any; }}
2387
+ * @memberof UpdateComponentV1Request
2281
2388
  */
2282
- 'component': string;
2389
+ 'attributes'?: {
2390
+ [key: string]: any;
2391
+ };
2283
2392
  /**
2284
2393
  *
2285
2394
  * @type {string}
2286
- * @memberof Subscription
2395
+ * @memberof UpdateComponentV1Request
2287
2396
  */
2288
- 'componentId': string;
2397
+ 'name'?: string | null;
2289
2398
  /**
2290
2399
  *
2291
2400
  * @type {string}
2292
- * @memberof Subscription
2401
+ * @memberof UpdateComponentV1Request
2293
2402
  */
2294
- 'function'?: string;
2403
+ 'resourceId'?: string | null;
2295
2404
  /**
2296
2405
  *
2297
- * @type {string}
2298
- * @memberof Subscription
2406
+ * @type {{ [key: string]: any; }}
2407
+ * @memberof UpdateComponentV1Request
2299
2408
  */
2300
- 'propPath': string;
2409
+ 'secrets'?: {
2410
+ [key: string]: any;
2411
+ };
2301
2412
  }
2302
2413
  /**
2303
2414
  *
2304
2415
  * @export
2305
- * @interface SystemStatusResponse
2416
+ * @interface UpdateComponentV1Response
2306
2417
  */
2307
- export interface SystemStatusResponse {
2418
+ export interface UpdateComponentV1Response {
2308
2419
  /**
2309
2420
  *
2310
- * @type {string}
2311
- * @memberof SystemStatusResponse
2421
+ * @type {ComponentViewV1}
2422
+ * @memberof UpdateComponentV1Response
2312
2423
  */
2313
- 'API Documentation': string;
2424
+ 'component': ComponentViewV1;
2314
2425
  }
2315
2426
  /**
2316
2427
  *
2317
2428
  * @export
2318
- * @interface UpdateComponentV1Request
2429
+ * @interface UpdateFuncV1Request
2319
2430
  */
2320
- export interface UpdateComponentV1Request {
2431
+ export interface UpdateFuncV1Request {
2321
2432
  /**
2322
2433
  *
2323
- * @type {{ [key: string]: any; }}
2324
- * @memberof UpdateComponentV1Request
2434
+ * @type {string}
2435
+ * @memberof UpdateFuncV1Request
2325
2436
  */
2326
- 'attributes'?: {
2327
- [key: string]: any;
2328
- };
2437
+ 'code': string;
2329
2438
  /**
2330
2439
  *
2331
- * @type {ConnectionDetails}
2332
- * @memberof UpdateComponentV1Request
2440
+ * @type {string}
2441
+ * @memberof UpdateFuncV1Request
2333
2442
  */
2334
- 'connectionChanges'?: ConnectionDetails;
2443
+ 'description': string;
2335
2444
  /**
2336
2445
  *
2337
- * @type {{ [key: string]: any; }}
2338
- * @memberof UpdateComponentV1Request
2339
- * @deprecated
2446
+ * @type {string}
2447
+ * @memberof UpdateFuncV1Request
2340
2448
  */
2341
- 'domain'?: {
2342
- [key: string]: any;
2343
- };
2449
+ 'displayName': string;
2450
+ }
2451
+ /**
2452
+ *
2453
+ * @export
2454
+ * @interface UpdateFuncV1Response
2455
+ */
2456
+ export interface UpdateFuncV1Response {
2457
+ /**
2458
+ *
2459
+ * @type {boolean}
2460
+ * @memberof UpdateFuncV1Response
2461
+ */
2462
+ 'success': boolean;
2463
+ }
2464
+ /**
2465
+ *
2466
+ * @export
2467
+ * @interface UpdateSchemaVariantV1Request
2468
+ */
2469
+ export interface UpdateSchemaVariantV1Request {
2344
2470
  /**
2345
2471
  *
2346
2472
  * @type {string}
2347
- * @memberof UpdateComponentV1Request
2473
+ * @memberof UpdateSchemaVariantV1Request
2348
2474
  */
2349
- 'name'?: string | null;
2475
+ 'category': string;
2350
2476
  /**
2351
2477
  *
2352
2478
  * @type {string}
2353
- * @memberof UpdateComponentV1Request
2479
+ * @memberof UpdateSchemaVariantV1Request
2354
2480
  */
2355
- 'resourceId'?: string | null;
2481
+ 'code': string;
2356
2482
  /**
2357
2483
  *
2358
- * @type {{ [key: string]: any; }}
2359
- * @memberof UpdateComponentV1Request
2360
- * @deprecated
2484
+ * @type {string}
2485
+ * @memberof UpdateSchemaVariantV1Request
2361
2486
  */
2362
- 'secrets'?: {
2363
- [key: string]: any;
2364
- };
2487
+ 'color': string;
2365
2488
  /**
2366
2489
  *
2367
- * @type {{ [key: string]: Subscription; }}
2368
- * @memberof UpdateComponentV1Request
2369
- * @deprecated
2490
+ * @type {string}
2491
+ * @memberof UpdateSchemaVariantV1Request
2370
2492
  */
2371
- 'subscriptions'?: {
2372
- [key: string]: Subscription;
2373
- };
2493
+ 'description': string;
2374
2494
  /**
2375
2495
  *
2376
- * @type {Array<ComponentPropKey>}
2377
- * @memberof UpdateComponentV1Request
2496
+ * @type {string}
2497
+ * @memberof UpdateSchemaVariantV1Request
2378
2498
  */
2379
- 'unset'?: Array<ComponentPropKey>;
2380
- }
2381
- /**
2382
- *
2383
- * @export
2384
- * @interface UpdateComponentV1Response
2385
- */
2386
- export interface UpdateComponentV1Response {
2499
+ 'link': string;
2387
2500
  /**
2388
2501
  *
2389
- * @type {ComponentViewV1}
2390
- * @memberof UpdateComponentV1Response
2502
+ * @type {string}
2503
+ * @memberof UpdateSchemaVariantV1Request
2391
2504
  */
2392
- 'component': ComponentViewV1;
2505
+ 'name': string;
2393
2506
  }
2394
2507
  /**
2395
2508
  *
@@ -4507,6 +4620,17 @@ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration)
4507
4620
  * @throws {RequiredError}
4508
4621
  */
4509
4622
  getFuncRun: (workspaceId: string, changeSetId: string, funcRunId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4623
+ /**
4624
+ *
4625
+ * @summary Update a func
4626
+ * @param {string} workspaceId Workspace identifier
4627
+ * @param {string} changeSetId Change Set identifier
4628
+ * @param {string} funcId Func identifier
4629
+ * @param {UpdateFuncV1Request} updateFuncV1Request
4630
+ * @param {*} [options] Override http request option.
4631
+ * @throws {RequiredError}
4632
+ */
4633
+ updateFunc: (workspaceId: string, changeSetId: string, funcId: string, updateFuncV1Request: UpdateFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4510
4634
  };
4511
4635
  /**
4512
4636
  * FuncsApi - functional programming interface
@@ -4533,6 +4657,17 @@ export declare const FuncsApiFp: (configuration?: Configuration) => {
4533
4657
  * @throws {RequiredError}
4534
4658
  */
4535
4659
  getFuncRun(workspaceId: string, changeSetId: string, funcRunId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFuncRunV1Response>>;
4660
+ /**
4661
+ *
4662
+ * @summary Update a func
4663
+ * @param {string} workspaceId Workspace identifier
4664
+ * @param {string} changeSetId Change Set identifier
4665
+ * @param {string} funcId Func identifier
4666
+ * @param {UpdateFuncV1Request} updateFuncV1Request
4667
+ * @param {*} [options] Override http request option.
4668
+ * @throws {RequiredError}
4669
+ */
4670
+ updateFunc(workspaceId: string, changeSetId: string, funcId: string, updateFuncV1Request: UpdateFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateFuncV1Response>>;
4536
4671
  };
4537
4672
  /**
4538
4673
  * FuncsApi - factory interface
@@ -4555,6 +4690,14 @@ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?:
4555
4690
  * @throws {RequiredError}
4556
4691
  */
4557
4692
  getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncRunV1Response>;
4693
+ /**
4694
+ *
4695
+ * @summary Update a func
4696
+ * @param {FuncsApiUpdateFuncRequest} requestParameters Request parameters.
4697
+ * @param {*} [options] Override http request option.
4698
+ * @throws {RequiredError}
4699
+ */
4700
+ updateFunc(requestParameters: FuncsApiUpdateFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFuncV1Response>;
4558
4701
  };
4559
4702
  /**
4560
4703
  * FuncsApi - interface
@@ -4580,6 +4723,15 @@ export interface FuncsApiInterface {
4580
4723
  * @memberof FuncsApiInterface
4581
4724
  */
4582
4725
  getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncRunV1Response>;
4726
+ /**
4727
+ *
4728
+ * @summary Update a func
4729
+ * @param {FuncsApiUpdateFuncRequest} requestParameters Request parameters.
4730
+ * @param {*} [options] Override http request option.
4731
+ * @throws {RequiredError}
4732
+ * @memberof FuncsApiInterface
4733
+ */
4734
+ updateFunc(requestParameters: FuncsApiUpdateFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFuncV1Response>;
4583
4735
  }
4584
4736
  /**
4585
4737
  * Request parameters for getFunc operation in FuncsApi.
@@ -4631,6 +4783,37 @@ export interface FuncsApiGetFuncRunRequest {
4631
4783
  */
4632
4784
  readonly funcRunId: string;
4633
4785
  }
4786
+ /**
4787
+ * Request parameters for updateFunc operation in FuncsApi.
4788
+ * @export
4789
+ * @interface FuncsApiUpdateFuncRequest
4790
+ */
4791
+ export interface FuncsApiUpdateFuncRequest {
4792
+ /**
4793
+ * Workspace identifier
4794
+ * @type {string}
4795
+ * @memberof FuncsApiUpdateFunc
4796
+ */
4797
+ readonly workspaceId: string;
4798
+ /**
4799
+ * Change Set identifier
4800
+ * @type {string}
4801
+ * @memberof FuncsApiUpdateFunc
4802
+ */
4803
+ readonly changeSetId: string;
4804
+ /**
4805
+ * Func identifier
4806
+ * @type {string}
4807
+ * @memberof FuncsApiUpdateFunc
4808
+ */
4809
+ readonly funcId: string;
4810
+ /**
4811
+ *
4812
+ * @type {UpdateFuncV1Request}
4813
+ * @memberof FuncsApiUpdateFunc
4814
+ */
4815
+ readonly updateFuncV1Request: UpdateFuncV1Request;
4816
+ }
4634
4817
  /**
4635
4818
  * FuncsApi - object-oriented interface
4636
4819
  * @export
@@ -4656,6 +4839,15 @@ export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
4656
4839
  * @memberof FuncsApi
4657
4840
  */
4658
4841
  getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFuncRunV1Response, any>>;
4842
+ /**
4843
+ *
4844
+ * @summary Update a func
4845
+ * @param {FuncsApiUpdateFuncRequest} requestParameters Request parameters.
4846
+ * @param {*} [options] Override http request option.
4847
+ * @throws {RequiredError}
4848
+ * @memberof FuncsApi
4849
+ */
4850
+ updateFunc(requestParameters: FuncsApiUpdateFuncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateFuncV1Response, any>>;
4659
4851
  }
4660
4852
  /**
4661
4853
  * ManagementFuncsApi - axios parameter creator
@@ -4833,214 +5025,781 @@ export declare class RootApi extends BaseAPI implements RootApiInterface {
4833
5025
  export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration) => {
4834
5026
  /**
4835
5027
  *
4836
- * @summary Find schema by name or schema id
5028
+ * @summary Create a schema and it\'s default variant
4837
5029
  * @param {string} workspaceId Workspace identifier
4838
5030
  * @param {string} changeSetId Change Set identifier
4839
- * @param {string | null} [schema]
4840
- * @param {string | null} [schemaId]
5031
+ * @param {CreateSchemaV1Request} createSchemaV1Request
4841
5032
  * @param {*} [options] Override http request option.
4842
5033
  * @throws {RequiredError}
4843
5034
  */
4844
- findSchema: (workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5035
+ createSchema: (workspaceId: string, changeSetId: string, createSchemaV1Request: CreateSchemaV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4845
5036
  /**
4846
5037
  *
4847
- * @summary Get the default variant for a schema id
5038
+ * @summary Create an action function and attach to a schema variant
4848
5039
  * @param {string} workspaceId Workspace identifier
4849
5040
  * @param {string} changeSetId Change Set identifier
4850
5041
  * @param {string} schemaId Schema identifier
5042
+ * @param {string} schemaVariantId Schema variant identifier
5043
+ * @param {CreateVariantActionFuncV1Request} createVariantActionFuncV1Request
4851
5044
  * @param {*} [options] Override http request option.
4852
5045
  * @throws {RequiredError}
4853
5046
  */
4854
- getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5047
+ createVariantAction: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4855
5048
  /**
4856
5049
  *
4857
- * @summary Get a schema by schema id
5050
+ * @summary Create an authentication function and attach to a schema variant
4858
5051
  * @param {string} workspaceId Workspace identifier
4859
5052
  * @param {string} changeSetId Change Set identifier
4860
5053
  * @param {string} schemaId Schema identifier
5054
+ * @param {string} schemaVariantId Schema variant identifier
5055
+ * @param {CreateVariantAuthenticationFuncV1Request} createVariantAuthenticationFuncV1Request
4861
5056
  * @param {*} [options] Override http request option.
4862
5057
  * @throws {RequiredError}
4863
5058
  */
4864
- getSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5059
+ createVariantAuthentication: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAuthenticationFuncV1Request: CreateVariantAuthenticationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4865
5060
  /**
4866
5061
  *
4867
- * @summary Get a schema variant by schema id and schema variant id
5062
+ * @summary Create a codegen function and attach to a schema variant
4868
5063
  * @param {string} workspaceId Workspace identifier
4869
5064
  * @param {string} changeSetId Change Set identifier
4870
5065
  * @param {string} schemaId Schema identifier
4871
5066
  * @param {string} schemaVariantId Schema variant identifier
5067
+ * @param {CreateVariantCodegenFuncV1Request} createVariantCodegenFuncV1Request
4872
5068
  * @param {*} [options] Override http request option.
4873
5069
  * @throws {RequiredError}
4874
5070
  */
4875
- getVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5071
+ createVariantCodegen: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantCodegenFuncV1Request: CreateVariantCodegenFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4876
5072
  /**
4877
5073
  *
4878
- * @summary List all schemas (paginated endpoint)
5074
+ * @summary Create a management function and attach to a schema variant
4879
5075
  * @param {string} workspaceId Workspace identifier
4880
5076
  * @param {string} changeSetId Change Set identifier
4881
- * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
4882
- * @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
5077
+ * @param {string} schemaId Schema identifier
5078
+ * @param {string} schemaVariantId Schema variant identifier
5079
+ * @param {CreateVariantManagementFuncV1Request} createVariantManagementFuncV1Request
4883
5080
  * @param {*} [options] Override http request option.
4884
5081
  * @throws {RequiredError}
4885
5082
  */
4886
- listSchemas: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4887
- };
4888
- /**
4889
- * SchemasApi - functional programming interface
4890
- * @export
4891
- */
4892
- export declare const SchemasApiFp: (configuration?: Configuration) => {
5083
+ createVariantManagement: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantManagementFuncV1Request: CreateVariantManagementFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4893
5084
  /**
4894
5085
  *
4895
- * @summary Find schema by name or schema id
5086
+ * @summary Create a qualification and attach to a schema variant
4896
5087
  * @param {string} workspaceId Workspace identifier
4897
5088
  * @param {string} changeSetId Change Set identifier
4898
- * @param {string | null} [schema]
4899
- * @param {string | null} [schemaId]
5089
+ * @param {string} schemaId Schema identifier
5090
+ * @param {string} schemaVariantId Schema variant identifier
5091
+ * @param {CreateVariantQualificationFuncV1Request} createVariantQualificationFuncV1Request
5092
+ * @param {*} [options] Override http request option.
5093
+ * @throws {RequiredError}
5094
+ */
5095
+ createVariantQualification: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5096
+ /**
5097
+ *
5098
+ * @summary Find schema by name or schema id
5099
+ * @param {string} workspaceId Workspace identifier
5100
+ * @param {string} changeSetId Change Set identifier
5101
+ * @param {string | null} [schema]
5102
+ * @param {string | null} [schemaId]
5103
+ * @param {*} [options] Override http request option.
5104
+ * @throws {RequiredError}
5105
+ */
5106
+ findSchema: (workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5107
+ /**
5108
+ *
5109
+ * @summary Get the default variant for a schema id
5110
+ * @param {string} workspaceId Workspace identifier
5111
+ * @param {string} changeSetId Change Set identifier
5112
+ * @param {string} schemaId Schema identifier
5113
+ * @param {*} [options] Override http request option.
5114
+ * @throws {RequiredError}
5115
+ */
5116
+ getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5117
+ /**
5118
+ *
5119
+ * @summary Get a schema by schema id
5120
+ * @param {string} workspaceId Workspace identifier
5121
+ * @param {string} changeSetId Change Set identifier
5122
+ * @param {string} schemaId Schema identifier
5123
+ * @param {*} [options] Override http request option.
5124
+ * @throws {RequiredError}
5125
+ */
5126
+ getSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5127
+ /**
5128
+ *
5129
+ * @summary Get a schema variant by schema id and schema variant id
5130
+ * @param {string} workspaceId Workspace identifier
5131
+ * @param {string} changeSetId Change Set identifier
5132
+ * @param {string} schemaId Schema identifier
5133
+ * @param {string} schemaVariantId Schema variant identifier
5134
+ * @param {*} [options] Override http request option.
5135
+ * @throws {RequiredError}
5136
+ */
5137
+ getVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5138
+ /**
5139
+ *
5140
+ * @summary List all schemas (paginated endpoint)
5141
+ * @param {string} workspaceId Workspace identifier
5142
+ * @param {string} changeSetId Change Set identifier
5143
+ * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
5144
+ * @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
5145
+ * @param {*} [options] Override http request option.
5146
+ * @throws {RequiredError}
5147
+ */
5148
+ listSchemas: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5149
+ /**
5150
+ *
5151
+ * @summary Complex search for shemas
5152
+ * @param {string} workspaceId Workspace identifier
5153
+ * @param {string} changeSetId Change Set identifier
5154
+ * @param {SearchSchemasV1Request} searchSchemasV1Request
5155
+ * @param {*} [options] Override http request option.
5156
+ * @throws {RequiredError}
5157
+ */
5158
+ searchSchemas: (workspaceId: string, changeSetId: string, searchSchemasV1Request: SearchSchemasV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5159
+ /**
5160
+ *
5161
+ * @summary Unlocks a schema - if there\'s already an unlocked variant, then we return that
5162
+ * @param {string} workspaceId Workspace identifier
5163
+ * @param {string} changeSetId Change Set identifier
5164
+ * @param {string} schemaId Schema identifier
5165
+ * @param {*} [options] Override http request option.
5166
+ * @throws {RequiredError}
5167
+ */
5168
+ unlockSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5169
+ /**
5170
+ *
5171
+ * @summary Update the schema variant and regenerate
5172
+ * @param {string} workspaceId Workspace identifier
5173
+ * @param {string} changeSetId Change Set identifier
5174
+ * @param {string} schemaId Schema identifier
5175
+ * @param {string} schemaVariantId Schema variant identifier
5176
+ * @param {UpdateSchemaVariantV1Request} updateSchemaVariantV1Request
5177
+ * @param {*} [options] Override http request option.
5178
+ * @throws {RequiredError}
5179
+ */
5180
+ updateSchemaVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, updateSchemaVariantV1Request: UpdateSchemaVariantV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5181
+ };
5182
+ /**
5183
+ * SchemasApi - functional programming interface
5184
+ * @export
5185
+ */
5186
+ export declare const SchemasApiFp: (configuration?: Configuration) => {
5187
+ /**
5188
+ *
5189
+ * @summary Create a schema and it\'s default variant
5190
+ * @param {string} workspaceId Workspace identifier
5191
+ * @param {string} changeSetId Change Set identifier
5192
+ * @param {CreateSchemaV1Request} createSchemaV1Request
5193
+ * @param {*} [options] Override http request option.
5194
+ * @throws {RequiredError}
5195
+ */
5196
+ createSchema(workspaceId: string, changeSetId: string, createSchemaV1Request: CreateSchemaV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaV1Response>>;
5197
+ /**
5198
+ *
5199
+ * @summary Create an action function and attach to a schema variant
5200
+ * @param {string} workspaceId Workspace identifier
5201
+ * @param {string} changeSetId Change Set identifier
5202
+ * @param {string} schemaId Schema identifier
5203
+ * @param {string} schemaVariantId Schema variant identifier
5204
+ * @param {CreateVariantActionFuncV1Request} createVariantActionFuncV1Request
5205
+ * @param {*} [options] Override http request option.
5206
+ * @throws {RequiredError}
5207
+ */
5208
+ createVariantAction(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantActionFuncV1Response>>;
5209
+ /**
5210
+ *
5211
+ * @summary Create an authentication function and attach to a schema variant
5212
+ * @param {string} workspaceId Workspace identifier
5213
+ * @param {string} changeSetId Change Set identifier
5214
+ * @param {string} schemaId Schema identifier
5215
+ * @param {string} schemaVariantId Schema variant identifier
5216
+ * @param {CreateVariantAuthenticationFuncV1Request} createVariantAuthenticationFuncV1Request
5217
+ * @param {*} [options] Override http request option.
5218
+ * @throws {RequiredError}
5219
+ */
5220
+ createVariantAuthentication(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAuthenticationFuncV1Request: CreateVariantAuthenticationFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantAuthenticationFuncV1Response>>;
5221
+ /**
5222
+ *
5223
+ * @summary Create a codegen function and attach to a schema variant
5224
+ * @param {string} workspaceId Workspace identifier
5225
+ * @param {string} changeSetId Change Set identifier
5226
+ * @param {string} schemaId Schema identifier
5227
+ * @param {string} schemaVariantId Schema variant identifier
5228
+ * @param {CreateVariantCodegenFuncV1Request} createVariantCodegenFuncV1Request
5229
+ * @param {*} [options] Override http request option.
5230
+ * @throws {RequiredError}
5231
+ */
5232
+ createVariantCodegen(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantCodegenFuncV1Request: CreateVariantCodegenFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantCodegenFuncV1Response>>;
5233
+ /**
5234
+ *
5235
+ * @summary Create a management function and attach to a schema variant
5236
+ * @param {string} workspaceId Workspace identifier
5237
+ * @param {string} changeSetId Change Set identifier
5238
+ * @param {string} schemaId Schema identifier
5239
+ * @param {string} schemaVariantId Schema variant identifier
5240
+ * @param {CreateVariantManagementFuncV1Request} createVariantManagementFuncV1Request
5241
+ * @param {*} [options] Override http request option.
5242
+ * @throws {RequiredError}
5243
+ */
5244
+ createVariantManagement(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantManagementFuncV1Request: CreateVariantManagementFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantManagementFuncV1Response>>;
5245
+ /**
5246
+ *
5247
+ * @summary Create a qualification and attach to a schema variant
5248
+ * @param {string} workspaceId Workspace identifier
5249
+ * @param {string} changeSetId Change Set identifier
5250
+ * @param {string} schemaId Schema identifier
5251
+ * @param {string} schemaVariantId Schema variant identifier
5252
+ * @param {CreateVariantQualificationFuncV1Request} createVariantQualificationFuncV1Request
5253
+ * @param {*} [options] Override http request option.
5254
+ * @throws {RequiredError}
5255
+ */
5256
+ createVariantQualification(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantQualificationFuncV1Response>>;
5257
+ /**
5258
+ *
5259
+ * @summary Find schema by name or schema id
5260
+ * @param {string} workspaceId Workspace identifier
5261
+ * @param {string} changeSetId Change Set identifier
5262
+ * @param {string | null} [schema]
5263
+ * @param {string | null} [schemaId]
4900
5264
  * @param {*} [options] Override http request option.
4901
5265
  * @throws {RequiredError}
4902
5266
  */
4903
5267
  findSchema(workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FindSchemaV1Response>>;
4904
5268
  /**
4905
- *
4906
- * @summary Get the default variant for a schema id
4907
- * @param {string} workspaceId Workspace identifier
4908
- * @param {string} changeSetId Change Set identifier
4909
- * @param {string} schemaId Schema identifier
4910
- * @param {*} [options] Override http request option.
4911
- * @throws {RequiredError}
5269
+ *
5270
+ * @summary Get the default variant for a schema id
5271
+ * @param {string} workspaceId Workspace identifier
5272
+ * @param {string} changeSetId Change Set identifier
5273
+ * @param {string} schemaId Schema identifier
5274
+ * @param {*} [options] Override http request option.
5275
+ * @throws {RequiredError}
5276
+ */
5277
+ getDefaultVariant(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
5278
+ /**
5279
+ *
5280
+ * @summary Get a schema by schema id
5281
+ * @param {string} workspaceId Workspace identifier
5282
+ * @param {string} changeSetId Change Set identifier
5283
+ * @param {string} schemaId Schema identifier
5284
+ * @param {*} [options] Override http request option.
5285
+ * @throws {RequiredError}
5286
+ */
5287
+ getSchema(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaV1Response>>;
5288
+ /**
5289
+ *
5290
+ * @summary Get a schema variant by schema id and schema variant id
5291
+ * @param {string} workspaceId Workspace identifier
5292
+ * @param {string} changeSetId Change Set identifier
5293
+ * @param {string} schemaId Schema identifier
5294
+ * @param {string} schemaVariantId Schema variant identifier
5295
+ * @param {*} [options] Override http request option.
5296
+ * @throws {RequiredError}
5297
+ */
5298
+ getVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
5299
+ /**
5300
+ *
5301
+ * @summary List all schemas (paginated endpoint)
5302
+ * @param {string} workspaceId Workspace identifier
5303
+ * @param {string} changeSetId Change Set identifier
5304
+ * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
5305
+ * @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
5306
+ * @param {*} [options] Override http request option.
5307
+ * @throws {RequiredError}
5308
+ */
5309
+ listSchemas(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSchemaV1Response>>;
5310
+ /**
5311
+ *
5312
+ * @summary Complex search for shemas
5313
+ * @param {string} workspaceId Workspace identifier
5314
+ * @param {string} changeSetId Change Set identifier
5315
+ * @param {SearchSchemasV1Request} searchSchemasV1Request
5316
+ * @param {*} [options] Override http request option.
5317
+ * @throws {RequiredError}
5318
+ */
5319
+ searchSchemas(workspaceId: string, changeSetId: string, searchSchemasV1Request: SearchSchemasV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchSchemasV1Response>>;
5320
+ /**
5321
+ *
5322
+ * @summary Unlocks a schema - if there\'s already an unlocked variant, then we return that
5323
+ * @param {string} workspaceId Workspace identifier
5324
+ * @param {string} changeSetId Change Set identifier
5325
+ * @param {string} schemaId Schema identifier
5326
+ * @param {*} [options] Override http request option.
5327
+ * @throws {RequiredError}
5328
+ */
5329
+ unlockSchema(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UnlockedSchemaV1Response>>;
5330
+ /**
5331
+ *
5332
+ * @summary Update the schema variant and regenerate
5333
+ * @param {string} workspaceId Workspace identifier
5334
+ * @param {string} changeSetId Change Set identifier
5335
+ * @param {string} schemaId Schema identifier
5336
+ * @param {string} schemaVariantId Schema variant identifier
5337
+ * @param {UpdateSchemaVariantV1Request} updateSchemaVariantV1Request
5338
+ * @param {*} [options] Override http request option.
5339
+ * @throws {RequiredError}
5340
+ */
5341
+ updateSchemaVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, updateSchemaVariantV1Request: UpdateSchemaVariantV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
5342
+ };
5343
+ /**
5344
+ * SchemasApi - factory interface
5345
+ * @export
5346
+ */
5347
+ export declare const SchemasApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5348
+ /**
5349
+ *
5350
+ * @summary Create a schema and it\'s default variant
5351
+ * @param {SchemasApiCreateSchemaRequest} requestParameters Request parameters.
5352
+ * @param {*} [options] Override http request option.
5353
+ * @throws {RequiredError}
5354
+ */
5355
+ createSchema(requestParameters: SchemasApiCreateSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
5356
+ /**
5357
+ *
5358
+ * @summary Create an action function and attach to a schema variant
5359
+ * @param {SchemasApiCreateVariantActionRequest} requestParameters Request parameters.
5360
+ * @param {*} [options] Override http request option.
5361
+ * @throws {RequiredError}
5362
+ */
5363
+ createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
5364
+ /**
5365
+ *
5366
+ * @summary Create an authentication function and attach to a schema variant
5367
+ * @param {SchemasApiCreateVariantAuthenticationRequest} requestParameters Request parameters.
5368
+ * @param {*} [options] Override http request option.
5369
+ * @throws {RequiredError}
5370
+ */
5371
+ createVariantAuthentication(requestParameters: SchemasApiCreateVariantAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAuthenticationFuncV1Response>;
5372
+ /**
5373
+ *
5374
+ * @summary Create a codegen function and attach to a schema variant
5375
+ * @param {SchemasApiCreateVariantCodegenRequest} requestParameters Request parameters.
5376
+ * @param {*} [options] Override http request option.
5377
+ * @throws {RequiredError}
5378
+ */
5379
+ createVariantCodegen(requestParameters: SchemasApiCreateVariantCodegenRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantCodegenFuncV1Response>;
5380
+ /**
5381
+ *
5382
+ * @summary Create a management function and attach to a schema variant
5383
+ * @param {SchemasApiCreateVariantManagementRequest} requestParameters Request parameters.
5384
+ * @param {*} [options] Override http request option.
5385
+ * @throws {RequiredError}
5386
+ */
5387
+ createVariantManagement(requestParameters: SchemasApiCreateVariantManagementRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantManagementFuncV1Response>;
5388
+ /**
5389
+ *
5390
+ * @summary Create a qualification and attach to a schema variant
5391
+ * @param {SchemasApiCreateVariantQualificationRequest} requestParameters Request parameters.
5392
+ * @param {*} [options] Override http request option.
5393
+ * @throws {RequiredError}
5394
+ */
5395
+ createVariantQualification(requestParameters: SchemasApiCreateVariantQualificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantQualificationFuncV1Response>;
5396
+ /**
5397
+ *
5398
+ * @summary Find schema by name or schema id
5399
+ * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
5400
+ * @param {*} [options] Override http request option.
5401
+ * @throws {RequiredError}
5402
+ */
5403
+ findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
5404
+ /**
5405
+ *
5406
+ * @summary Get the default variant for a schema id
5407
+ * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
5408
+ * @param {*} [options] Override http request option.
5409
+ * @throws {RequiredError}
5410
+ */
5411
+ getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5412
+ /**
5413
+ *
5414
+ * @summary Get a schema by schema id
5415
+ * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
5416
+ * @param {*} [options] Override http request option.
5417
+ * @throws {RequiredError}
5418
+ */
5419
+ getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
5420
+ /**
5421
+ *
5422
+ * @summary Get a schema variant by schema id and schema variant id
5423
+ * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
5424
+ * @param {*} [options] Override http request option.
5425
+ * @throws {RequiredError}
5426
+ */
5427
+ getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5428
+ /**
5429
+ *
5430
+ * @summary List all schemas (paginated endpoint)
5431
+ * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
5432
+ * @param {*} [options] Override http request option.
5433
+ * @throws {RequiredError}
5434
+ */
5435
+ listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSchemaV1Response>;
5436
+ /**
5437
+ *
5438
+ * @summary Complex search for shemas
5439
+ * @param {SchemasApiSearchSchemasRequest} requestParameters Request parameters.
5440
+ * @param {*} [options] Override http request option.
5441
+ * @throws {RequiredError}
5442
+ */
5443
+ searchSchemas(requestParameters: SchemasApiSearchSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<SearchSchemasV1Response>;
5444
+ /**
5445
+ *
5446
+ * @summary Unlocks a schema - if there\'s already an unlocked variant, then we return that
5447
+ * @param {SchemasApiUnlockSchemaRequest} requestParameters Request parameters.
5448
+ * @param {*} [options] Override http request option.
5449
+ * @throws {RequiredError}
5450
+ */
5451
+ unlockSchema(requestParameters: SchemasApiUnlockSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<UnlockedSchemaV1Response>;
5452
+ /**
5453
+ *
5454
+ * @summary Update the schema variant and regenerate
5455
+ * @param {SchemasApiUpdateSchemaVariantRequest} requestParameters Request parameters.
5456
+ * @param {*} [options] Override http request option.
5457
+ * @throws {RequiredError}
5458
+ */
5459
+ updateSchemaVariant(requestParameters: SchemasApiUpdateSchemaVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5460
+ };
5461
+ /**
5462
+ * SchemasApi - interface
5463
+ * @export
5464
+ * @interface SchemasApi
5465
+ */
5466
+ export interface SchemasApiInterface {
5467
+ /**
5468
+ *
5469
+ * @summary Create a schema and it\'s default variant
5470
+ * @param {SchemasApiCreateSchemaRequest} requestParameters Request parameters.
5471
+ * @param {*} [options] Override http request option.
5472
+ * @throws {RequiredError}
5473
+ * @memberof SchemasApiInterface
5474
+ */
5475
+ createSchema(requestParameters: SchemasApiCreateSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
5476
+ /**
5477
+ *
5478
+ * @summary Create an action function and attach to a schema variant
5479
+ * @param {SchemasApiCreateVariantActionRequest} requestParameters Request parameters.
5480
+ * @param {*} [options] Override http request option.
5481
+ * @throws {RequiredError}
5482
+ * @memberof SchemasApiInterface
5483
+ */
5484
+ createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
5485
+ /**
5486
+ *
5487
+ * @summary Create an authentication function and attach to a schema variant
5488
+ * @param {SchemasApiCreateVariantAuthenticationRequest} requestParameters Request parameters.
5489
+ * @param {*} [options] Override http request option.
5490
+ * @throws {RequiredError}
5491
+ * @memberof SchemasApiInterface
5492
+ */
5493
+ createVariantAuthentication(requestParameters: SchemasApiCreateVariantAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAuthenticationFuncV1Response>;
5494
+ /**
5495
+ *
5496
+ * @summary Create a codegen function and attach to a schema variant
5497
+ * @param {SchemasApiCreateVariantCodegenRequest} requestParameters Request parameters.
5498
+ * @param {*} [options] Override http request option.
5499
+ * @throws {RequiredError}
5500
+ * @memberof SchemasApiInterface
5501
+ */
5502
+ createVariantCodegen(requestParameters: SchemasApiCreateVariantCodegenRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantCodegenFuncV1Response>;
5503
+ /**
5504
+ *
5505
+ * @summary Create a management function and attach to a schema variant
5506
+ * @param {SchemasApiCreateVariantManagementRequest} requestParameters Request parameters.
5507
+ * @param {*} [options] Override http request option.
5508
+ * @throws {RequiredError}
5509
+ * @memberof SchemasApiInterface
5510
+ */
5511
+ createVariantManagement(requestParameters: SchemasApiCreateVariantManagementRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantManagementFuncV1Response>;
5512
+ /**
5513
+ *
5514
+ * @summary Create a qualification and attach to a schema variant
5515
+ * @param {SchemasApiCreateVariantQualificationRequest} requestParameters Request parameters.
5516
+ * @param {*} [options] Override http request option.
5517
+ * @throws {RequiredError}
5518
+ * @memberof SchemasApiInterface
5519
+ */
5520
+ createVariantQualification(requestParameters: SchemasApiCreateVariantQualificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantQualificationFuncV1Response>;
5521
+ /**
5522
+ *
5523
+ * @summary Find schema by name or schema id
5524
+ * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
5525
+ * @param {*} [options] Override http request option.
5526
+ * @throws {RequiredError}
5527
+ * @memberof SchemasApiInterface
5528
+ */
5529
+ findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
5530
+ /**
5531
+ *
5532
+ * @summary Get the default variant for a schema id
5533
+ * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
5534
+ * @param {*} [options] Override http request option.
5535
+ * @throws {RequiredError}
5536
+ * @memberof SchemasApiInterface
5537
+ */
5538
+ getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5539
+ /**
5540
+ *
5541
+ * @summary Get a schema by schema id
5542
+ * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
5543
+ * @param {*} [options] Override http request option.
5544
+ * @throws {RequiredError}
5545
+ * @memberof SchemasApiInterface
5546
+ */
5547
+ getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
5548
+ /**
5549
+ *
5550
+ * @summary Get a schema variant by schema id and schema variant id
5551
+ * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
5552
+ * @param {*} [options] Override http request option.
5553
+ * @throws {RequiredError}
5554
+ * @memberof SchemasApiInterface
5555
+ */
5556
+ getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5557
+ /**
5558
+ *
5559
+ * @summary List all schemas (paginated endpoint)
5560
+ * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
5561
+ * @param {*} [options] Override http request option.
5562
+ * @throws {RequiredError}
5563
+ * @memberof SchemasApiInterface
5564
+ */
5565
+ listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSchemaV1Response>;
5566
+ /**
5567
+ *
5568
+ * @summary Complex search for shemas
5569
+ * @param {SchemasApiSearchSchemasRequest} requestParameters Request parameters.
5570
+ * @param {*} [options] Override http request option.
5571
+ * @throws {RequiredError}
5572
+ * @memberof SchemasApiInterface
5573
+ */
5574
+ searchSchemas(requestParameters: SchemasApiSearchSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<SearchSchemasV1Response>;
5575
+ /**
5576
+ *
5577
+ * @summary Unlocks a schema - if there\'s already an unlocked variant, then we return that
5578
+ * @param {SchemasApiUnlockSchemaRequest} requestParameters Request parameters.
5579
+ * @param {*} [options] Override http request option.
5580
+ * @throws {RequiredError}
5581
+ * @memberof SchemasApiInterface
5582
+ */
5583
+ unlockSchema(requestParameters: SchemasApiUnlockSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<UnlockedSchemaV1Response>;
5584
+ /**
5585
+ *
5586
+ * @summary Update the schema variant and regenerate
5587
+ * @param {SchemasApiUpdateSchemaVariantRequest} requestParameters Request parameters.
5588
+ * @param {*} [options] Override http request option.
5589
+ * @throws {RequiredError}
5590
+ * @memberof SchemasApiInterface
5591
+ */
5592
+ updateSchemaVariant(requestParameters: SchemasApiUpdateSchemaVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5593
+ }
5594
+ /**
5595
+ * Request parameters for createSchema operation in SchemasApi.
5596
+ * @export
5597
+ * @interface SchemasApiCreateSchemaRequest
5598
+ */
5599
+ export interface SchemasApiCreateSchemaRequest {
5600
+ /**
5601
+ * Workspace identifier
5602
+ * @type {string}
5603
+ * @memberof SchemasApiCreateSchema
5604
+ */
5605
+ readonly workspaceId: string;
5606
+ /**
5607
+ * Change Set identifier
5608
+ * @type {string}
5609
+ * @memberof SchemasApiCreateSchema
5610
+ */
5611
+ readonly changeSetId: string;
5612
+ /**
5613
+ *
5614
+ * @type {CreateSchemaV1Request}
5615
+ * @memberof SchemasApiCreateSchema
5616
+ */
5617
+ readonly createSchemaV1Request: CreateSchemaV1Request;
5618
+ }
5619
+ /**
5620
+ * Request parameters for createVariantAction operation in SchemasApi.
5621
+ * @export
5622
+ * @interface SchemasApiCreateVariantActionRequest
5623
+ */
5624
+ export interface SchemasApiCreateVariantActionRequest {
5625
+ /**
5626
+ * Workspace identifier
5627
+ * @type {string}
5628
+ * @memberof SchemasApiCreateVariantAction
5629
+ */
5630
+ readonly workspaceId: string;
5631
+ /**
5632
+ * Change Set identifier
5633
+ * @type {string}
5634
+ * @memberof SchemasApiCreateVariantAction
5635
+ */
5636
+ readonly changeSetId: string;
5637
+ /**
5638
+ * Schema identifier
5639
+ * @type {string}
5640
+ * @memberof SchemasApiCreateVariantAction
5641
+ */
5642
+ readonly schemaId: string;
5643
+ /**
5644
+ * Schema variant identifier
5645
+ * @type {string}
5646
+ * @memberof SchemasApiCreateVariantAction
5647
+ */
5648
+ readonly schemaVariantId: string;
5649
+ /**
5650
+ *
5651
+ * @type {CreateVariantActionFuncV1Request}
5652
+ * @memberof SchemasApiCreateVariantAction
5653
+ */
5654
+ readonly createVariantActionFuncV1Request: CreateVariantActionFuncV1Request;
5655
+ }
5656
+ /**
5657
+ * Request parameters for createVariantAuthentication operation in SchemasApi.
5658
+ * @export
5659
+ * @interface SchemasApiCreateVariantAuthenticationRequest
5660
+ */
5661
+ export interface SchemasApiCreateVariantAuthenticationRequest {
5662
+ /**
5663
+ * Workspace identifier
5664
+ * @type {string}
5665
+ * @memberof SchemasApiCreateVariantAuthentication
5666
+ */
5667
+ readonly workspaceId: string;
5668
+ /**
5669
+ * Change Set identifier
5670
+ * @type {string}
5671
+ * @memberof SchemasApiCreateVariantAuthentication
5672
+ */
5673
+ readonly changeSetId: string;
5674
+ /**
5675
+ * Schema identifier
5676
+ * @type {string}
5677
+ * @memberof SchemasApiCreateVariantAuthentication
5678
+ */
5679
+ readonly schemaId: string;
5680
+ /**
5681
+ * Schema variant identifier
5682
+ * @type {string}
5683
+ * @memberof SchemasApiCreateVariantAuthentication
5684
+ */
5685
+ readonly schemaVariantId: string;
5686
+ /**
5687
+ *
5688
+ * @type {CreateVariantAuthenticationFuncV1Request}
5689
+ * @memberof SchemasApiCreateVariantAuthentication
5690
+ */
5691
+ readonly createVariantAuthenticationFuncV1Request: CreateVariantAuthenticationFuncV1Request;
5692
+ }
5693
+ /**
5694
+ * Request parameters for createVariantCodegen operation in SchemasApi.
5695
+ * @export
5696
+ * @interface SchemasApiCreateVariantCodegenRequest
5697
+ */
5698
+ export interface SchemasApiCreateVariantCodegenRequest {
5699
+ /**
5700
+ * Workspace identifier
5701
+ * @type {string}
5702
+ * @memberof SchemasApiCreateVariantCodegen
5703
+ */
5704
+ readonly workspaceId: string;
5705
+ /**
5706
+ * Change Set identifier
5707
+ * @type {string}
5708
+ * @memberof SchemasApiCreateVariantCodegen
4912
5709
  */
4913
- getDefaultVariant(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
5710
+ readonly changeSetId: string;
4914
5711
  /**
4915
- *
4916
- * @summary Get a schema by schema id
4917
- * @param {string} workspaceId Workspace identifier
4918
- * @param {string} changeSetId Change Set identifier
4919
- * @param {string} schemaId Schema identifier
4920
- * @param {*} [options] Override http request option.
4921
- * @throws {RequiredError}
5712
+ * Schema identifier
5713
+ * @type {string}
5714
+ * @memberof SchemasApiCreateVariantCodegen
4922
5715
  */
4923
- getSchema(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaV1Response>>;
5716
+ readonly schemaId: string;
4924
5717
  /**
4925
- *
4926
- * @summary Get a schema variant by schema id and schema variant id
4927
- * @param {string} workspaceId Workspace identifier
4928
- * @param {string} changeSetId Change Set identifier
4929
- * @param {string} schemaId Schema identifier
4930
- * @param {string} schemaVariantId Schema variant identifier
4931
- * @param {*} [options] Override http request option.
4932
- * @throws {RequiredError}
5718
+ * Schema variant identifier
5719
+ * @type {string}
5720
+ * @memberof SchemasApiCreateVariantCodegen
4933
5721
  */
4934
- getVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
5722
+ readonly schemaVariantId: string;
4935
5723
  /**
4936
5724
  *
4937
- * @summary List all schemas (paginated endpoint)
4938
- * @param {string} workspaceId Workspace identifier
4939
- * @param {string} changeSetId Change Set identifier
4940
- * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
4941
- * @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
4942
- * @param {*} [options] Override http request option.
4943
- * @throws {RequiredError}
5725
+ * @type {CreateVariantCodegenFuncV1Request}
5726
+ * @memberof SchemasApiCreateVariantCodegen
4944
5727
  */
4945
- listSchemas(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSchemaV1Response>>;
4946
- };
5728
+ readonly createVariantCodegenFuncV1Request: CreateVariantCodegenFuncV1Request;
5729
+ }
4947
5730
  /**
4948
- * SchemasApi - factory interface
5731
+ * Request parameters for createVariantManagement operation in SchemasApi.
4949
5732
  * @export
5733
+ * @interface SchemasApiCreateVariantManagementRequest
4950
5734
  */
4951
- export declare const SchemasApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5735
+ export interface SchemasApiCreateVariantManagementRequest {
4952
5736
  /**
4953
- *
4954
- * @summary Find schema by name or schema id
4955
- * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
4956
- * @param {*} [options] Override http request option.
4957
- * @throws {RequiredError}
5737
+ * Workspace identifier
5738
+ * @type {string}
5739
+ * @memberof SchemasApiCreateVariantManagement
4958
5740
  */
4959
- findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
5741
+ readonly workspaceId: string;
4960
5742
  /**
4961
- *
4962
- * @summary Get the default variant for a schema id
4963
- * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
4964
- * @param {*} [options] Override http request option.
4965
- * @throws {RequiredError}
5743
+ * Change Set identifier
5744
+ * @type {string}
5745
+ * @memberof SchemasApiCreateVariantManagement
4966
5746
  */
4967
- getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5747
+ readonly changeSetId: string;
4968
5748
  /**
4969
- *
4970
- * @summary Get a schema by schema id
4971
- * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
4972
- * @param {*} [options] Override http request option.
4973
- * @throws {RequiredError}
5749
+ * Schema identifier
5750
+ * @type {string}
5751
+ * @memberof SchemasApiCreateVariantManagement
4974
5752
  */
4975
- getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
5753
+ readonly schemaId: string;
4976
5754
  /**
4977
- *
4978
- * @summary Get a schema variant by schema id and schema variant id
4979
- * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
4980
- * @param {*} [options] Override http request option.
4981
- * @throws {RequiredError}
5755
+ * Schema variant identifier
5756
+ * @type {string}
5757
+ * @memberof SchemasApiCreateVariantManagement
4982
5758
  */
4983
- getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5759
+ readonly schemaVariantId: string;
4984
5760
  /**
4985
5761
  *
4986
- * @summary List all schemas (paginated endpoint)
4987
- * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
4988
- * @param {*} [options] Override http request option.
4989
- * @throws {RequiredError}
5762
+ * @type {CreateVariantManagementFuncV1Request}
5763
+ * @memberof SchemasApiCreateVariantManagement
4990
5764
  */
4991
- listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSchemaV1Response>;
4992
- };
5765
+ readonly createVariantManagementFuncV1Request: CreateVariantManagementFuncV1Request;
5766
+ }
4993
5767
  /**
4994
- * SchemasApi - interface
5768
+ * Request parameters for createVariantQualification operation in SchemasApi.
4995
5769
  * @export
4996
- * @interface SchemasApi
5770
+ * @interface SchemasApiCreateVariantQualificationRequest
4997
5771
  */
4998
- export interface SchemasApiInterface {
5772
+ export interface SchemasApiCreateVariantQualificationRequest {
4999
5773
  /**
5000
- *
5001
- * @summary Find schema by name or schema id
5002
- * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
5003
- * @param {*} [options] Override http request option.
5004
- * @throws {RequiredError}
5005
- * @memberof SchemasApiInterface
5774
+ * Workspace identifier
5775
+ * @type {string}
5776
+ * @memberof SchemasApiCreateVariantQualification
5006
5777
  */
5007
- findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
5778
+ readonly workspaceId: string;
5008
5779
  /**
5009
- *
5010
- * @summary Get the default variant for a schema id
5011
- * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
5012
- * @param {*} [options] Override http request option.
5013
- * @throws {RequiredError}
5014
- * @memberof SchemasApiInterface
5780
+ * Change Set identifier
5781
+ * @type {string}
5782
+ * @memberof SchemasApiCreateVariantQualification
5015
5783
  */
5016
- getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5784
+ readonly changeSetId: string;
5017
5785
  /**
5018
- *
5019
- * @summary Get a schema by schema id
5020
- * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
5021
- * @param {*} [options] Override http request option.
5022
- * @throws {RequiredError}
5023
- * @memberof SchemasApiInterface
5786
+ * Schema identifier
5787
+ * @type {string}
5788
+ * @memberof SchemasApiCreateVariantQualification
5024
5789
  */
5025
- getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
5790
+ readonly schemaId: string;
5026
5791
  /**
5027
- *
5028
- * @summary Get a schema variant by schema id and schema variant id
5029
- * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
5030
- * @param {*} [options] Override http request option.
5031
- * @throws {RequiredError}
5032
- * @memberof SchemasApiInterface
5792
+ * Schema variant identifier
5793
+ * @type {string}
5794
+ * @memberof SchemasApiCreateVariantQualification
5033
5795
  */
5034
- getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
5796
+ readonly schemaVariantId: string;
5035
5797
  /**
5036
5798
  *
5037
- * @summary List all schemas (paginated endpoint)
5038
- * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
5039
- * @param {*} [options] Override http request option.
5040
- * @throws {RequiredError}
5041
- * @memberof SchemasApiInterface
5799
+ * @type {CreateVariantQualificationFuncV1Request}
5800
+ * @memberof SchemasApiCreateVariantQualification
5042
5801
  */
5043
- listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSchemaV1Response>;
5802
+ readonly createVariantQualificationFuncV1Request: CreateVariantQualificationFuncV1Request;
5044
5803
  }
5045
5804
  /**
5046
5805
  * Request parameters for findSchema operation in SchemasApi.
@@ -5185,6 +5944,93 @@ export interface SchemasApiListSchemasRequest {
5185
5944
  */
5186
5945
  readonly cursor?: string;
5187
5946
  }
5947
+ /**
5948
+ * Request parameters for searchSchemas operation in SchemasApi.
5949
+ * @export
5950
+ * @interface SchemasApiSearchSchemasRequest
5951
+ */
5952
+ export interface SchemasApiSearchSchemasRequest {
5953
+ /**
5954
+ * Workspace identifier
5955
+ * @type {string}
5956
+ * @memberof SchemasApiSearchSchemas
5957
+ */
5958
+ readonly workspaceId: string;
5959
+ /**
5960
+ * Change Set identifier
5961
+ * @type {string}
5962
+ * @memberof SchemasApiSearchSchemas
5963
+ */
5964
+ readonly changeSetId: string;
5965
+ /**
5966
+ *
5967
+ * @type {SearchSchemasV1Request}
5968
+ * @memberof SchemasApiSearchSchemas
5969
+ */
5970
+ readonly searchSchemasV1Request: SearchSchemasV1Request;
5971
+ }
5972
+ /**
5973
+ * Request parameters for unlockSchema operation in SchemasApi.
5974
+ * @export
5975
+ * @interface SchemasApiUnlockSchemaRequest
5976
+ */
5977
+ export interface SchemasApiUnlockSchemaRequest {
5978
+ /**
5979
+ * Workspace identifier
5980
+ * @type {string}
5981
+ * @memberof SchemasApiUnlockSchema
5982
+ */
5983
+ readonly workspaceId: string;
5984
+ /**
5985
+ * Change Set identifier
5986
+ * @type {string}
5987
+ * @memberof SchemasApiUnlockSchema
5988
+ */
5989
+ readonly changeSetId: string;
5990
+ /**
5991
+ * Schema identifier
5992
+ * @type {string}
5993
+ * @memberof SchemasApiUnlockSchema
5994
+ */
5995
+ readonly schemaId: string;
5996
+ }
5997
+ /**
5998
+ * Request parameters for updateSchemaVariant operation in SchemasApi.
5999
+ * @export
6000
+ * @interface SchemasApiUpdateSchemaVariantRequest
6001
+ */
6002
+ export interface SchemasApiUpdateSchemaVariantRequest {
6003
+ /**
6004
+ * Workspace identifier
6005
+ * @type {string}
6006
+ * @memberof SchemasApiUpdateSchemaVariant
6007
+ */
6008
+ readonly workspaceId: string;
6009
+ /**
6010
+ * Change Set identifier
6011
+ * @type {string}
6012
+ * @memberof SchemasApiUpdateSchemaVariant
6013
+ */
6014
+ readonly changeSetId: string;
6015
+ /**
6016
+ * Schema identifier
6017
+ * @type {string}
6018
+ * @memberof SchemasApiUpdateSchemaVariant
6019
+ */
6020
+ readonly schemaId: string;
6021
+ /**
6022
+ * Schema variant identifier
6023
+ * @type {string}
6024
+ * @memberof SchemasApiUpdateSchemaVariant
6025
+ */
6026
+ readonly schemaVariantId: string;
6027
+ /**
6028
+ *
6029
+ * @type {UpdateSchemaVariantV1Request}
6030
+ * @memberof SchemasApiUpdateSchemaVariant
6031
+ */
6032
+ readonly updateSchemaVariantV1Request: UpdateSchemaVariantV1Request;
6033
+ }
5188
6034
  /**
5189
6035
  * SchemasApi - object-oriented interface
5190
6036
  * @export
@@ -5192,6 +6038,60 @@ export interface SchemasApiListSchemasRequest {
5192
6038
  * @extends {BaseAPI}
5193
6039
  */
5194
6040
  export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
6041
+ /**
6042
+ *
6043
+ * @summary Create a schema and it\'s default variant
6044
+ * @param {SchemasApiCreateSchemaRequest} requestParameters Request parameters.
6045
+ * @param {*} [options] Override http request option.
6046
+ * @throws {RequiredError}
6047
+ * @memberof SchemasApi
6048
+ */
6049
+ createSchema(requestParameters: SchemasApiCreateSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaV1Response, any>>;
6050
+ /**
6051
+ *
6052
+ * @summary Create an action function and attach to a schema variant
6053
+ * @param {SchemasApiCreateVariantActionRequest} requestParameters Request parameters.
6054
+ * @param {*} [options] Override http request option.
6055
+ * @throws {RequiredError}
6056
+ * @memberof SchemasApi
6057
+ */
6058
+ createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantActionFuncV1Response, any>>;
6059
+ /**
6060
+ *
6061
+ * @summary Create an authentication function and attach to a schema variant
6062
+ * @param {SchemasApiCreateVariantAuthenticationRequest} requestParameters Request parameters.
6063
+ * @param {*} [options] Override http request option.
6064
+ * @throws {RequiredError}
6065
+ * @memberof SchemasApi
6066
+ */
6067
+ createVariantAuthentication(requestParameters: SchemasApiCreateVariantAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantAuthenticationFuncV1Response, any>>;
6068
+ /**
6069
+ *
6070
+ * @summary Create a codegen function and attach to a schema variant
6071
+ * @param {SchemasApiCreateVariantCodegenRequest} requestParameters Request parameters.
6072
+ * @param {*} [options] Override http request option.
6073
+ * @throws {RequiredError}
6074
+ * @memberof SchemasApi
6075
+ */
6076
+ createVariantCodegen(requestParameters: SchemasApiCreateVariantCodegenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantCodegenFuncV1Response, any>>;
6077
+ /**
6078
+ *
6079
+ * @summary Create a management function and attach to a schema variant
6080
+ * @param {SchemasApiCreateVariantManagementRequest} requestParameters Request parameters.
6081
+ * @param {*} [options] Override http request option.
6082
+ * @throws {RequiredError}
6083
+ * @memberof SchemasApi
6084
+ */
6085
+ createVariantManagement(requestParameters: SchemasApiCreateVariantManagementRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantManagementFuncV1Response, any>>;
6086
+ /**
6087
+ *
6088
+ * @summary Create a qualification and attach to a schema variant
6089
+ * @param {SchemasApiCreateVariantQualificationRequest} requestParameters Request parameters.
6090
+ * @param {*} [options] Override http request option.
6091
+ * @throws {RequiredError}
6092
+ * @memberof SchemasApi
6093
+ */
6094
+ createVariantQualification(requestParameters: SchemasApiCreateVariantQualificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantQualificationFuncV1Response, any>>;
5195
6095
  /**
5196
6096
  *
5197
6097
  * @summary Find schema by name or schema id
@@ -5237,6 +6137,33 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
5237
6137
  * @memberof SchemasApi
5238
6138
  */
5239
6139
  listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSchemaV1Response, any>>;
6140
+ /**
6141
+ *
6142
+ * @summary Complex search for shemas
6143
+ * @param {SchemasApiSearchSchemasRequest} requestParameters Request parameters.
6144
+ * @param {*} [options] Override http request option.
6145
+ * @throws {RequiredError}
6146
+ * @memberof SchemasApi
6147
+ */
6148
+ searchSchemas(requestParameters: SchemasApiSearchSchemasRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchSchemasV1Response, any>>;
6149
+ /**
6150
+ *
6151
+ * @summary Unlocks a schema - if there\'s already an unlocked variant, then we return that
6152
+ * @param {SchemasApiUnlockSchemaRequest} requestParameters Request parameters.
6153
+ * @param {*} [options] Override http request option.
6154
+ * @throws {RequiredError}
6155
+ * @memberof SchemasApi
6156
+ */
6157
+ unlockSchema(requestParameters: SchemasApiUnlockSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UnlockedSchemaV1Response, any>>;
6158
+ /**
6159
+ *
6160
+ * @summary Update the schema variant and regenerate
6161
+ * @param {SchemasApiUpdateSchemaVariantRequest} requestParameters Request parameters.
6162
+ * @param {*} [options] Override http request option.
6163
+ * @throws {RequiredError}
6164
+ * @memberof SchemasApi
6165
+ */
6166
+ updateSchemaVariant(requestParameters: SchemasApiUpdateSchemaVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaVariantV1Response, any>>;
5240
6167
  }
5241
6168
  /**
5242
6169
  * SecretsApi - axios parameter creator