@meshery/schemas 0.8.89 → 0.8.91

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.
@@ -247,7 +247,7 @@ type PostEvaluateApiResponse = {
247
247
  /** Format specifies the format used in the `component.schema` field. JSON is the default. */
248
248
  format: "JSON" | "CUE";
249
249
  /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
250
- model: {
250
+ model?: {
251
251
  /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
252
252
  id: string;
253
253
  /** Specifies the version of the schema used for the definition. */
@@ -378,7 +378,26 @@ type PostEvaluateApiResponse = {
378
378
  /** Number of relationships associated with the model. */
379
379
  relationshipsCount: number;
380
380
  };
381
- /** ModelId is the foreign key to the model to which the component belongs. */
381
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
382
+ modelReference: {
383
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
384
+ id: string;
385
+ /** The unique name for the model within the scope of a registrant. */
386
+ name: string;
387
+ /** Version of the model definition. */
388
+ version: string;
389
+ /** Human-readable name for the model. */
390
+ displayName: string;
391
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
392
+ model: {
393
+ /** Version of the model as defined by the registrant. */
394
+ version: string;
395
+ };
396
+ registrant: {
397
+ kind: string;
398
+ };
399
+ };
400
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
382
401
  modelId: string;
383
402
  /** Visualization styles for a component */
384
403
  styles?: {
@@ -590,106 +609,24 @@ type PostEvaluateApiResponse = {
590
609
  schemaVersion: string;
591
610
  /** A valid semantic version string between 5 and 256 characters. The pattern allows for a major.minor.patch version followed by an optional pre-release tag like '-alpha' or '-beta.2' and an optional build metadata tag like '+build.1. */
592
611
  version: string;
593
- /** Name of the model in which this relationship is packaged. */
612
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
594
613
  model: {
595
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
596
- id?: string;
597
- /** Specifies the version of the schema used for the definition. */
598
- schemaVersion?: string;
599
- /** Version of the model definition. */
600
- version: string;
614
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
615
+ id: string;
601
616
  /** The unique name for the model within the scope of a registrant. */
602
617
  name: string;
618
+ /** Version of the model definition. */
619
+ version: string;
603
620
  /** Human-readable name for the model. */
604
- displayName?: string;
605
- /** Description of the model. */
606
- description?: string;
607
- /** Status of model, including:
608
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
609
- - maintenance: model is unavailable for a period of time.
610
- - enabled: model is available for use for all users of this Meshery Server.
611
- - ignored: model is unavailable for use for all users of this Meshery Server. */
612
- status?: "ignored" | "enabled" | "duplicate";
613
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
614
- registrant: {
615
- /** ID */
616
- id?: string;
617
- /** Connection Name */
618
- name?: string;
619
- /** Credential ID */
620
- credential_id?: string;
621
- /** Connection Type */
622
- type: string;
623
- /** Connection Subtype */
624
- sub_type?: string;
625
- /** Connection Kind */
626
- kind: string;
627
- metadata?: object;
628
- /** Connection Status */
629
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
630
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
631
- user_id?: string;
632
- created_at?: string;
633
- updated_at?: string;
634
- deleted_at?: string;
635
- };
636
- /** Category of the model. */
637
- category: {
638
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
639
- id?: string;
640
- name?: string;
641
- metadata?: object;
642
- };
643
- /** Sub-category of the model. */
644
- subCategory?: string;
645
- /** Metadata containing additional information associated with the model. */
646
- metadata?: {
647
- /** Capabilities associated with the model */
648
- capabilities?: {
649
- /** Specifies the version of the schema to which the capability definition conforms. */
650
- schemaVersion: string;
651
- /** Version of the capability definition. */
652
- version: string;
653
- /** Name of the capability in human-readible format. */
654
- displayName: string;
655
- /** A written representation of the purpose and characteristics of the capability. */
656
- description?: string;
657
- /** Top-level categorization of the capability */
658
- kind: "action" | "mutate" | "view" | "interaction";
659
- /** Classification of capabilities. Used to group capabilities similar in nature. */
660
- type: string;
661
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Relaationship. */
662
- subType?: "inventory" | "matchLabels" | "permission" | "network" | "firewall" | "mount" | "alias" | "annotation" | "reference";
663
- /** Key that backs the capability. */
664
- key?: string;
665
- /** State of the entity in which the capability is applicable. */
666
- entityState: ("declaration" | "instance")[];
667
- /** Status of the capability */
668
- status: "enabled" | "disabled";
669
- /** Metadata contains additional information associated with the capability. Extension point. */
670
- metadata?: {
671
- [key: string]: any;
672
- };
673
- }[];
674
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
675
- isAnnotation?: boolean;
676
- /** Primary color associated with the model. */
677
- primaryColor?: string;
678
- /** Secondary color associated with the model. */
679
- secondaryColor?: string;
680
- /** SVG representation of the model in white color. */
681
- svgWhite?: string;
682
- /** SVG representation of the model in colored format. */
683
- svgColor?: string;
684
- /** SVG representation of the complete model. */
685
- svgComplete?: string;
686
- [key: string]: any;
687
- };
688
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
689
- model?: {
621
+ displayName: string;
622
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
623
+ model: {
690
624
  /** Version of the model as defined by the registrant. */
691
625
  version: string;
692
626
  };
627
+ registrant: {
628
+ kind: string;
629
+ };
693
630
  };
694
631
  /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
695
632
  kind: "hierarchical" | "edge" | "sibling";
@@ -837,106 +774,24 @@ type PostEvaluateApiResponse = {
837
774
  /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
838
775
  from: {
839
776
  kind?: string;
840
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
777
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
841
778
  model?: {
842
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
843
- id?: string;
844
- /** Specifies the version of the schema used for the definition. */
845
- schemaVersion?: string;
846
- /** Version of the model definition. */
847
- version: string;
779
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
780
+ id: string;
848
781
  /** The unique name for the model within the scope of a registrant. */
849
782
  name: string;
783
+ /** Version of the model definition. */
784
+ version: string;
850
785
  /** Human-readable name for the model. */
851
- displayName?: string;
852
- /** Description of the model. */
853
- description?: string;
854
- /** Status of model, including:
855
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
856
- - maintenance: model is unavailable for a period of time.
857
- - enabled: model is available for use for all users of this Meshery Server.
858
- - ignored: model is unavailable for use for all users of this Meshery Server. */
859
- status?: "ignored" | "enabled" | "duplicate";
860
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
861
- registrant: {
862
- /** ID */
863
- id?: string;
864
- /** Connection Name */
865
- name?: string;
866
- /** Credential ID */
867
- credential_id?: string;
868
- /** Connection Type */
869
- type: string;
870
- /** Connection Subtype */
871
- sub_type?: string;
872
- /** Connection Kind */
873
- kind: string;
874
- metadata?: object;
875
- /** Connection Status */
876
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
877
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
878
- user_id?: string;
879
- created_at?: string;
880
- updated_at?: string;
881
- deleted_at?: string;
882
- };
883
- /** Category of the model. */
884
- category: {
885
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
886
- id?: string;
887
- name?: string;
888
- metadata?: object;
889
- };
890
- /** Sub-category of the model. */
891
- subCategory?: string;
892
- /** Metadata containing additional information associated with the model. */
893
- metadata?: {
894
- /** Capabilities associated with the model */
895
- capabilities?: {
896
- /** Specifies the version of the schema to which the capability definition conforms. */
897
- schemaVersion: string;
898
- /** Version of the capability definition. */
899
- version: string;
900
- /** Name of the capability in human-readible format. */
901
- displayName: string;
902
- /** A written representation of the purpose and characteristics of the capability. */
903
- description?: string;
904
- /** Top-level categorization of the capability */
905
- kind: "action" | "mutate" | "view" | "interaction";
906
- /** Classification of capabilities. Used to group capabilities similar in nature. */
907
- type: string;
908
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
909
- subType?: string;
910
- /** Key that backs the capability. */
911
- key?: string;
912
- /** State of the entity in which the capability is applicable. */
913
- entityState: ("declaration" | "instance")[];
914
- /** Status of the capability */
915
- status: "enabled" | "disabled";
916
- /** Metadata contains additional information associated with the capability. Extension point. */
917
- metadata?: {
918
- [key: string]: any;
919
- };
920
- }[];
921
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
922
- isAnnotation?: boolean;
923
- /** Primary color associated with the model. */
924
- primaryColor?: string;
925
- /** Secondary color associated with the model. */
926
- secondaryColor?: string;
927
- /** SVG representation of the model in white color. */
928
- svgWhite?: string;
929
- /** SVG representation of the model in colored format. */
930
- svgColor?: string;
931
- /** SVG representation of the complete model. */
932
- svgComplete?: string;
933
- [key: string]: any;
934
- };
935
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
936
- model?: {
786
+ displayName: string;
787
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
788
+ model: {
937
789
  /** Version of the model as defined by the registrant. */
938
790
  version: string;
939
791
  };
792
+ registrant: {
793
+ kind: string;
794
+ };
940
795
  };
941
796
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
942
797
  id?: string;
@@ -984,106 +839,24 @@ type PostEvaluateApiResponse = {
984
839
  /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
985
840
  to: {
986
841
  kind?: string;
987
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
842
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
988
843
  model?: {
989
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
990
- id?: string;
991
- /** Specifies the version of the schema used for the definition. */
992
- schemaVersion?: string;
993
- /** Version of the model definition. */
994
- version: string;
844
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
845
+ id: string;
995
846
  /** The unique name for the model within the scope of a registrant. */
996
847
  name: string;
848
+ /** Version of the model definition. */
849
+ version: string;
997
850
  /** Human-readable name for the model. */
998
- displayName?: string;
999
- /** Description of the model. */
1000
- description?: string;
1001
- /** Status of model, including:
1002
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
1003
- - maintenance: model is unavailable for a period of time.
1004
- - enabled: model is available for use for all users of this Meshery Server.
1005
- - ignored: model is unavailable for use for all users of this Meshery Server. */
1006
- status?: "ignored" | "enabled" | "duplicate";
1007
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
1008
- registrant: {
1009
- /** ID */
1010
- id?: string;
1011
- /** Connection Name */
1012
- name?: string;
1013
- /** Credential ID */
1014
- credential_id?: string;
1015
- /** Connection Type */
1016
- type: string;
1017
- /** Connection Subtype */
1018
- sub_type?: string;
1019
- /** Connection Kind */
1020
- kind: string;
1021
- metadata?: object;
1022
- /** Connection Status */
1023
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
1024
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1025
- user_id?: string;
1026
- created_at?: string;
1027
- updated_at?: string;
1028
- deleted_at?: string;
1029
- };
1030
- /** Category of the model. */
1031
- category: {
1032
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1033
- id?: string;
1034
- name?: string;
1035
- metadata?: object;
1036
- };
1037
- /** Sub-category of the model. */
1038
- subCategory?: string;
1039
- /** Metadata containing additional information associated with the model. */
1040
- metadata?: {
1041
- /** Capabilities associated with the model */
1042
- capabilities?: {
1043
- /** Specifies the version of the schema to which the capability definition conforms. */
1044
- schemaVersion: string;
1045
- /** Version of the capability definition. */
1046
- version: string;
1047
- /** Name of the capability in human-readible format. */
1048
- displayName: string;
1049
- /** A written representation of the purpose and characteristics of the capability. */
1050
- description?: string;
1051
- /** Top-level categorization of the capability */
1052
- kind: "action" | "mutate" | "view" | "interaction";
1053
- /** Classification of capabilities. Used to group capabilities similar in nature. */
1054
- type: string;
1055
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
1056
- subType?: string;
1057
- /** Key that backs the capability. */
1058
- key?: string;
1059
- /** State of the entity in which the capability is applicable. */
1060
- entityState: ("declaration" | "instance")[];
1061
- /** Status of the capability */
1062
- status: "enabled" | "disabled";
1063
- /** Metadata contains additional information associated with the capability. Extension point. */
1064
- metadata?: {
1065
- [key: string]: any;
1066
- };
1067
- }[];
1068
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
1069
- isAnnotation?: boolean;
1070
- /** Primary color associated with the model. */
1071
- primaryColor?: string;
1072
- /** Secondary color associated with the model. */
1073
- secondaryColor?: string;
1074
- /** SVG representation of the model in white color. */
1075
- svgWhite?: string;
1076
- /** SVG representation of the model in colored format. */
1077
- svgColor?: string;
1078
- /** SVG representation of the complete model. */
1079
- svgComplete?: string;
1080
- [key: string]: any;
1081
- };
1082
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
1083
- model?: {
851
+ displayName: string;
852
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
853
+ model: {
1084
854
  /** Version of the model as defined by the registrant. */
1085
855
  version: string;
1086
856
  };
857
+ registrant: {
858
+ kind: string;
859
+ };
1087
860
  };
1088
861
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1089
862
  id?: string;
@@ -1136,106 +909,24 @@ type PostEvaluateApiResponse = {
1136
909
  kind?: string;
1137
910
  /** Strategy criterion for determing how to match the values at mutator/mutated paths */
1138
911
  match_strategy_matrix?: string[][];
1139
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
912
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1140
913
  model?: {
1141
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
1142
- id?: string;
1143
- /** Specifies the version of the schema used for the definition. */
1144
- schemaVersion?: string;
1145
- /** Version of the model definition. */
1146
- version: string;
914
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
915
+ id: string;
1147
916
  /** The unique name for the model within the scope of a registrant. */
1148
917
  name: string;
918
+ /** Version of the model definition. */
919
+ version: string;
1149
920
  /** Human-readable name for the model. */
1150
- displayName?: string;
1151
- /** Description of the model. */
1152
- description?: string;
1153
- /** Status of model, including:
1154
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
1155
- - maintenance: model is unavailable for a period of time.
1156
- - enabled: model is available for use for all users of this Meshery Server.
1157
- - ignored: model is unavailable for use for all users of this Meshery Server. */
1158
- status?: "ignored" | "enabled" | "duplicate";
1159
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
1160
- registrant: {
1161
- /** ID */
1162
- id?: string;
1163
- /** Connection Name */
1164
- name?: string;
1165
- /** Credential ID */
1166
- credential_id?: string;
1167
- /** Connection Type */
1168
- type: string;
1169
- /** Connection Subtype */
1170
- sub_type?: string;
1171
- /** Connection Kind */
1172
- kind: string;
1173
- metadata?: object;
1174
- /** Connection Status */
1175
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
1176
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1177
- user_id?: string;
1178
- created_at?: string;
1179
- updated_at?: string;
1180
- deleted_at?: string;
1181
- };
1182
- /** Category of the model. */
1183
- category: {
1184
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1185
- id?: string;
1186
- name?: string;
1187
- metadata?: object;
1188
- };
1189
- /** Sub-category of the model. */
1190
- subCategory?: string;
1191
- /** Metadata containing additional information associated with the model. */
1192
- metadata?: {
1193
- /** Capabilities associated with the model */
1194
- capabilities?: {
1195
- /** Specifies the version of the schema to which the capability definition conforms. */
1196
- schemaVersion: string;
1197
- /** Version of the capability definition. */
1198
- version: string;
1199
- /** Name of the capability in human-readible format. */
1200
- displayName: string;
1201
- /** A written representation of the purpose and characteristics of the capability. */
1202
- description?: string;
1203
- /** Top-level categorization of the capability */
1204
- kind: "action" | "mutate" | "view" | "interaction";
1205
- /** Classification of capabilities. Used to group capabilities similar in nature. */
1206
- type: string;
1207
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
1208
- subType?: string;
1209
- /** Key that backs the capability. */
1210
- key?: string;
1211
- /** State of the entity in which the capability is applicable. */
1212
- entityState: ("declaration" | "instance")[];
1213
- /** Status of the capability */
1214
- status: "enabled" | "disabled";
1215
- /** Metadata contains additional information associated with the capability. Extension point. */
1216
- metadata?: {
1217
- [key: string]: any;
1218
- };
1219
- }[];
1220
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
1221
- isAnnotation?: boolean;
1222
- /** Primary color associated with the model. */
1223
- primaryColor?: string;
1224
- /** Secondary color associated with the model. */
1225
- secondaryColor?: string;
1226
- /** SVG representation of the model in white color. */
1227
- svgWhite?: string;
1228
- /** SVG representation of the model in colored format. */
1229
- svgColor?: string;
1230
- /** SVG representation of the complete model. */
1231
- svgComplete?: string;
1232
- [key: string]: any;
1233
- };
1234
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
1235
- model?: {
921
+ displayName: string;
922
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
923
+ model: {
1236
924
  /** Version of the model as defined by the registrant. */
1237
925
  version: string;
1238
926
  };
927
+ registrant: {
928
+ kind: string;
929
+ };
1239
930
  };
1240
931
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1241
932
  id?: string;
@@ -1283,106 +974,24 @@ type PostEvaluateApiResponse = {
1283
974
  /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
1284
975
  to: {
1285
976
  kind?: string;
1286
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
977
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1287
978
  model?: {
1288
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
1289
- id?: string;
1290
- /** Specifies the version of the schema used for the definition. */
1291
- schemaVersion?: string;
1292
- /** Version of the model definition. */
1293
- version: string;
979
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
980
+ id: string;
1294
981
  /** The unique name for the model within the scope of a registrant. */
1295
982
  name: string;
983
+ /** Version of the model definition. */
984
+ version: string;
1296
985
  /** Human-readable name for the model. */
1297
- displayName?: string;
1298
- /** Description of the model. */
1299
- description?: string;
1300
- /** Status of model, including:
1301
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
1302
- - maintenance: model is unavailable for a period of time.
1303
- - enabled: model is available for use for all users of this Meshery Server.
1304
- - ignored: model is unavailable for use for all users of this Meshery Server. */
1305
- status?: "ignored" | "enabled" | "duplicate";
1306
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
1307
- registrant: {
1308
- /** ID */
1309
- id?: string;
1310
- /** Connection Name */
1311
- name?: string;
1312
- /** Credential ID */
1313
- credential_id?: string;
1314
- /** Connection Type */
1315
- type: string;
1316
- /** Connection Subtype */
1317
- sub_type?: string;
1318
- /** Connection Kind */
1319
- kind: string;
1320
- metadata?: object;
1321
- /** Connection Status */
1322
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
1323
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1324
- user_id?: string;
1325
- created_at?: string;
1326
- updated_at?: string;
1327
- deleted_at?: string;
1328
- };
1329
- /** Category of the model. */
1330
- category: {
1331
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1332
- id?: string;
1333
- name?: string;
1334
- metadata?: object;
1335
- };
1336
- /** Sub-category of the model. */
1337
- subCategory?: string;
1338
- /** Metadata containing additional information associated with the model. */
1339
- metadata?: {
1340
- /** Capabilities associated with the model */
1341
- capabilities?: {
1342
- /** Specifies the version of the schema to which the capability definition conforms. */
1343
- schemaVersion: string;
1344
- /** Version of the capability definition. */
1345
- version: string;
1346
- /** Name of the capability in human-readible format. */
1347
- displayName: string;
1348
- /** A written representation of the purpose and characteristics of the capability. */
1349
- description?: string;
1350
- /** Top-level categorization of the capability */
1351
- kind: "action" | "mutate" | "view" | "interaction";
1352
- /** Classification of capabilities. Used to group capabilities similar in nature. */
1353
- type: string;
1354
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
1355
- subType?: string;
1356
- /** Key that backs the capability. */
1357
- key?: string;
1358
- /** State of the entity in which the capability is applicable. */
1359
- entityState: ("declaration" | "instance")[];
1360
- /** Status of the capability */
1361
- status: "enabled" | "disabled";
1362
- /** Metadata contains additional information associated with the capability. Extension point. */
1363
- metadata?: {
1364
- [key: string]: any;
1365
- };
1366
- }[];
1367
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
1368
- isAnnotation?: boolean;
1369
- /** Primary color associated with the model. */
1370
- primaryColor?: string;
1371
- /** Secondary color associated with the model. */
1372
- secondaryColor?: string;
1373
- /** SVG representation of the model in white color. */
1374
- svgWhite?: string;
1375
- /** SVG representation of the model in colored format. */
1376
- svgColor?: string;
1377
- /** SVG representation of the complete model. */
1378
- svgComplete?: string;
1379
- [key: string]: any;
1380
- };
1381
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
1382
- model?: {
986
+ displayName: string;
987
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
988
+ model: {
1383
989
  /** Version of the model as defined by the registrant. */
1384
990
  version: string;
1385
991
  };
992
+ registrant: {
993
+ kind: string;
994
+ };
1386
995
  };
1387
996
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1388
997
  id?: string;
@@ -1483,7 +1092,7 @@ type PostEvaluateApiArg = {
1483
1092
  /** Format specifies the format used in the `component.schema` field. JSON is the default. */
1484
1093
  format: "JSON" | "CUE";
1485
1094
  /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1486
- model: {
1095
+ model?: {
1487
1096
  /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
1488
1097
  id: string;
1489
1098
  /** Specifies the version of the schema used for the definition. */
@@ -1614,7 +1223,26 @@ type PostEvaluateApiArg = {
1614
1223
  /** Number of relationships associated with the model. */
1615
1224
  relationshipsCount: number;
1616
1225
  };
1617
- /** ModelId is the foreign key to the model to which the component belongs. */
1226
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1227
+ modelReference: {
1228
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1229
+ id: string;
1230
+ /** The unique name for the model within the scope of a registrant. */
1231
+ name: string;
1232
+ /** Version of the model definition. */
1233
+ version: string;
1234
+ /** Human-readable name for the model. */
1235
+ displayName: string;
1236
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
1237
+ model: {
1238
+ /** Version of the model as defined by the registrant. */
1239
+ version: string;
1240
+ };
1241
+ registrant: {
1242
+ kind: string;
1243
+ };
1244
+ };
1245
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1618
1246
  modelId: string;
1619
1247
  /** Visualization styles for a component */
1620
1248
  styles?: {
@@ -1826,106 +1454,24 @@ type PostEvaluateApiArg = {
1826
1454
  schemaVersion: string;
1827
1455
  /** A valid semantic version string between 5 and 256 characters. The pattern allows for a major.minor.patch version followed by an optional pre-release tag like '-alpha' or '-beta.2' and an optional build metadata tag like '+build.1. */
1828
1456
  version: string;
1829
- /** Name of the model in which this relationship is packaged. */
1457
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
1830
1458
  model: {
1831
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
1832
- id?: string;
1833
- /** Specifies the version of the schema used for the definition. */
1834
- schemaVersion?: string;
1835
- /** Version of the model definition. */
1836
- version: string;
1459
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1460
+ id: string;
1837
1461
  /** The unique name for the model within the scope of a registrant. */
1838
1462
  name: string;
1463
+ /** Version of the model definition. */
1464
+ version: string;
1839
1465
  /** Human-readable name for the model. */
1840
- displayName?: string;
1841
- /** Description of the model. */
1842
- description?: string;
1843
- /** Status of model, including:
1844
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
1845
- - maintenance: model is unavailable for a period of time.
1846
- - enabled: model is available for use for all users of this Meshery Server.
1847
- - ignored: model is unavailable for use for all users of this Meshery Server. */
1848
- status?: "ignored" | "enabled" | "duplicate";
1849
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
1850
- registrant: {
1851
- /** ID */
1852
- id?: string;
1853
- /** Connection Name */
1854
- name?: string;
1855
- /** Credential ID */
1856
- credential_id?: string;
1857
- /** Connection Type */
1858
- type: string;
1859
- /** Connection Subtype */
1860
- sub_type?: string;
1861
- /** Connection Kind */
1862
- kind: string;
1863
- metadata?: object;
1864
- /** Connection Status */
1865
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
1866
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1867
- user_id?: string;
1868
- created_at?: string;
1869
- updated_at?: string;
1870
- deleted_at?: string;
1871
- };
1872
- /** Category of the model. */
1873
- category: {
1874
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1875
- id?: string;
1876
- name?: string;
1877
- metadata?: object;
1878
- };
1879
- /** Sub-category of the model. */
1880
- subCategory?: string;
1881
- /** Metadata containing additional information associated with the model. */
1882
- metadata?: {
1883
- /** Capabilities associated with the model */
1884
- capabilities?: {
1885
- /** Specifies the version of the schema to which the capability definition conforms. */
1886
- schemaVersion: string;
1887
- /** Version of the capability definition. */
1888
- version: string;
1889
- /** Name of the capability in human-readible format. */
1890
- displayName: string;
1891
- /** A written representation of the purpose and characteristics of the capability. */
1892
- description?: string;
1893
- /** Top-level categorization of the capability */
1894
- kind: "action" | "mutate" | "view" | "interaction";
1895
- /** Classification of capabilities. Used to group capabilities similar in nature. */
1896
- type: string;
1897
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Relaationship. */
1898
- subType?: "inventory" | "matchLabels" | "permission" | "network" | "firewall" | "mount" | "alias" | "annotation" | "reference";
1899
- /** Key that backs the capability. */
1900
- key?: string;
1901
- /** State of the entity in which the capability is applicable. */
1902
- entityState: ("declaration" | "instance")[];
1903
- /** Status of the capability */
1904
- status: "enabled" | "disabled";
1905
- /** Metadata contains additional information associated with the capability. Extension point. */
1906
- metadata?: {
1907
- [key: string]: any;
1908
- };
1909
- }[];
1910
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
1911
- isAnnotation?: boolean;
1912
- /** Primary color associated with the model. */
1913
- primaryColor?: string;
1914
- /** Secondary color associated with the model. */
1915
- secondaryColor?: string;
1916
- /** SVG representation of the model in white color. */
1917
- svgWhite?: string;
1918
- /** SVG representation of the model in colored format. */
1919
- svgColor?: string;
1920
- /** SVG representation of the complete model. */
1921
- svgComplete?: string;
1922
- [key: string]: any;
1923
- };
1924
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
1925
- model?: {
1466
+ displayName: string;
1467
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
1468
+ model: {
1926
1469
  /** Version of the model as defined by the registrant. */
1927
1470
  version: string;
1928
1471
  };
1472
+ registrant: {
1473
+ kind: string;
1474
+ };
1929
1475
  };
1930
1476
  /** Kind of the Relationship. Learn more about relationships - https://docs.meshery.io/concepts/logical/relationships. */
1931
1477
  kind: "hierarchical" | "edge" | "sibling";
@@ -2073,106 +1619,24 @@ type PostEvaluateApiArg = {
2073
1619
  /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2074
1620
  from: {
2075
1621
  kind?: string;
2076
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
1622
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2077
1623
  model?: {
2078
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
2079
- id?: string;
2080
- /** Specifies the version of the schema used for the definition. */
2081
- schemaVersion?: string;
2082
- /** Version of the model definition. */
2083
- version: string;
1624
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1625
+ id: string;
2084
1626
  /** The unique name for the model within the scope of a registrant. */
2085
1627
  name: string;
1628
+ /** Version of the model definition. */
1629
+ version: string;
2086
1630
  /** Human-readable name for the model. */
2087
- displayName?: string;
2088
- /** Description of the model. */
2089
- description?: string;
2090
- /** Status of model, including:
2091
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
2092
- - maintenance: model is unavailable for a period of time.
2093
- - enabled: model is available for use for all users of this Meshery Server.
2094
- - ignored: model is unavailable for use for all users of this Meshery Server. */
2095
- status?: "ignored" | "enabled" | "duplicate";
2096
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
2097
- registrant: {
2098
- /** ID */
2099
- id?: string;
2100
- /** Connection Name */
2101
- name?: string;
2102
- /** Credential ID */
2103
- credential_id?: string;
2104
- /** Connection Type */
2105
- type: string;
2106
- /** Connection Subtype */
2107
- sub_type?: string;
2108
- /** Connection Kind */
2109
- kind: string;
2110
- metadata?: object;
2111
- /** Connection Status */
2112
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
2113
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2114
- user_id?: string;
2115
- created_at?: string;
2116
- updated_at?: string;
2117
- deleted_at?: string;
2118
- };
2119
- /** Category of the model. */
2120
- category: {
2121
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2122
- id?: string;
2123
- name?: string;
2124
- metadata?: object;
2125
- };
2126
- /** Sub-category of the model. */
2127
- subCategory?: string;
2128
- /** Metadata containing additional information associated with the model. */
2129
- metadata?: {
2130
- /** Capabilities associated with the model */
2131
- capabilities?: {
2132
- /** Specifies the version of the schema to which the capability definition conforms. */
2133
- schemaVersion: string;
2134
- /** Version of the capability definition. */
2135
- version: string;
2136
- /** Name of the capability in human-readible format. */
2137
- displayName: string;
2138
- /** A written representation of the purpose and characteristics of the capability. */
2139
- description?: string;
2140
- /** Top-level categorization of the capability */
2141
- kind: "action" | "mutate" | "view" | "interaction";
2142
- /** Classification of capabilities. Used to group capabilities similar in nature. */
2143
- type: string;
2144
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
2145
- subType?: string;
2146
- /** Key that backs the capability. */
2147
- key?: string;
2148
- /** State of the entity in which the capability is applicable. */
2149
- entityState: ("declaration" | "instance")[];
2150
- /** Status of the capability */
2151
- status: "enabled" | "disabled";
2152
- /** Metadata contains additional information associated with the capability. Extension point. */
2153
- metadata?: {
2154
- [key: string]: any;
2155
- };
2156
- }[];
2157
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
2158
- isAnnotation?: boolean;
2159
- /** Primary color associated with the model. */
2160
- primaryColor?: string;
2161
- /** Secondary color associated with the model. */
2162
- secondaryColor?: string;
2163
- /** SVG representation of the model in white color. */
2164
- svgWhite?: string;
2165
- /** SVG representation of the model in colored format. */
2166
- svgColor?: string;
2167
- /** SVG representation of the complete model. */
2168
- svgComplete?: string;
2169
- [key: string]: any;
2170
- };
2171
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
2172
- model?: {
1631
+ displayName: string;
1632
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
1633
+ model: {
2173
1634
  /** Version of the model as defined by the registrant. */
2174
1635
  version: string;
2175
1636
  };
1637
+ registrant: {
1638
+ kind: string;
1639
+ };
2176
1640
  };
2177
1641
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2178
1642
  id?: string;
@@ -2220,106 +1684,24 @@ type PostEvaluateApiArg = {
2220
1684
  /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2221
1685
  to: {
2222
1686
  kind?: string;
2223
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
1687
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2224
1688
  model?: {
2225
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
2226
- id?: string;
2227
- /** Specifies the version of the schema used for the definition. */
2228
- schemaVersion?: string;
2229
- /** Version of the model definition. */
2230
- version: string;
1689
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1690
+ id: string;
2231
1691
  /** The unique name for the model within the scope of a registrant. */
2232
1692
  name: string;
1693
+ /** Version of the model definition. */
1694
+ version: string;
2233
1695
  /** Human-readable name for the model. */
2234
- displayName?: string;
2235
- /** Description of the model. */
2236
- description?: string;
2237
- /** Status of model, including:
2238
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
2239
- - maintenance: model is unavailable for a period of time.
2240
- - enabled: model is available for use for all users of this Meshery Server.
2241
- - ignored: model is unavailable for use for all users of this Meshery Server. */
2242
- status?: "ignored" | "enabled" | "duplicate";
2243
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
2244
- registrant: {
2245
- /** ID */
2246
- id?: string;
2247
- /** Connection Name */
2248
- name?: string;
2249
- /** Credential ID */
2250
- credential_id?: string;
2251
- /** Connection Type */
2252
- type: string;
2253
- /** Connection Subtype */
2254
- sub_type?: string;
2255
- /** Connection Kind */
2256
- kind: string;
2257
- metadata?: object;
2258
- /** Connection Status */
2259
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
2260
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2261
- user_id?: string;
2262
- created_at?: string;
2263
- updated_at?: string;
2264
- deleted_at?: string;
2265
- };
2266
- /** Category of the model. */
2267
- category: {
2268
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2269
- id?: string;
2270
- name?: string;
2271
- metadata?: object;
2272
- };
2273
- /** Sub-category of the model. */
2274
- subCategory?: string;
2275
- /** Metadata containing additional information associated with the model. */
2276
- metadata?: {
2277
- /** Capabilities associated with the model */
2278
- capabilities?: {
2279
- /** Specifies the version of the schema to which the capability definition conforms. */
2280
- schemaVersion: string;
2281
- /** Version of the capability definition. */
2282
- version: string;
2283
- /** Name of the capability in human-readible format. */
2284
- displayName: string;
2285
- /** A written representation of the purpose and characteristics of the capability. */
2286
- description?: string;
2287
- /** Top-level categorization of the capability */
2288
- kind: "action" | "mutate" | "view" | "interaction";
2289
- /** Classification of capabilities. Used to group capabilities similar in nature. */
2290
- type: string;
2291
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
2292
- subType?: string;
2293
- /** Key that backs the capability. */
2294
- key?: string;
2295
- /** State of the entity in which the capability is applicable. */
2296
- entityState: ("declaration" | "instance")[];
2297
- /** Status of the capability */
2298
- status: "enabled" | "disabled";
2299
- /** Metadata contains additional information associated with the capability. Extension point. */
2300
- metadata?: {
2301
- [key: string]: any;
2302
- };
2303
- }[];
2304
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
2305
- isAnnotation?: boolean;
2306
- /** Primary color associated with the model. */
2307
- primaryColor?: string;
2308
- /** Secondary color associated with the model. */
2309
- secondaryColor?: string;
2310
- /** SVG representation of the model in white color. */
2311
- svgWhite?: string;
2312
- /** SVG representation of the model in colored format. */
2313
- svgColor?: string;
2314
- /** SVG representation of the complete model. */
2315
- svgComplete?: string;
2316
- [key: string]: any;
2317
- };
2318
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
2319
- model?: {
1696
+ displayName: string;
1697
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
1698
+ model: {
2320
1699
  /** Version of the model as defined by the registrant. */
2321
1700
  version: string;
2322
1701
  };
1702
+ registrant: {
1703
+ kind: string;
1704
+ };
2323
1705
  };
2324
1706
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2325
1707
  id?: string;
@@ -2372,106 +1754,24 @@ type PostEvaluateApiArg = {
2372
1754
  kind?: string;
2373
1755
  /** Strategy criterion for determing how to match the values at mutator/mutated paths */
2374
1756
  match_strategy_matrix?: string[][];
2375
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
1757
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2376
1758
  model?: {
2377
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
2378
- id?: string;
2379
- /** Specifies the version of the schema used for the definition. */
2380
- schemaVersion?: string;
2381
- /** Version of the model definition. */
2382
- version: string;
1759
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1760
+ id: string;
2383
1761
  /** The unique name for the model within the scope of a registrant. */
2384
1762
  name: string;
1763
+ /** Version of the model definition. */
1764
+ version: string;
2385
1765
  /** Human-readable name for the model. */
2386
- displayName?: string;
2387
- /** Description of the model. */
2388
- description?: string;
2389
- /** Status of model, including:
2390
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
2391
- - maintenance: model is unavailable for a period of time.
2392
- - enabled: model is available for use for all users of this Meshery Server.
2393
- - ignored: model is unavailable for use for all users of this Meshery Server. */
2394
- status?: "ignored" | "enabled" | "duplicate";
2395
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
2396
- registrant: {
2397
- /** ID */
2398
- id?: string;
2399
- /** Connection Name */
2400
- name?: string;
2401
- /** Credential ID */
2402
- credential_id?: string;
2403
- /** Connection Type */
2404
- type: string;
2405
- /** Connection Subtype */
2406
- sub_type?: string;
2407
- /** Connection Kind */
2408
- kind: string;
2409
- metadata?: object;
2410
- /** Connection Status */
2411
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
2412
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2413
- user_id?: string;
2414
- created_at?: string;
2415
- updated_at?: string;
2416
- deleted_at?: string;
2417
- };
2418
- /** Category of the model. */
2419
- category: {
2420
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2421
- id?: string;
2422
- name?: string;
2423
- metadata?: object;
2424
- };
2425
- /** Sub-category of the model. */
2426
- subCategory?: string;
2427
- /** Metadata containing additional information associated with the model. */
2428
- metadata?: {
2429
- /** Capabilities associated with the model */
2430
- capabilities?: {
2431
- /** Specifies the version of the schema to which the capability definition conforms. */
2432
- schemaVersion: string;
2433
- /** Version of the capability definition. */
2434
- version: string;
2435
- /** Name of the capability in human-readible format. */
2436
- displayName: string;
2437
- /** A written representation of the purpose and characteristics of the capability. */
2438
- description?: string;
2439
- /** Top-level categorization of the capability */
2440
- kind: "action" | "mutate" | "view" | "interaction";
2441
- /** Classification of capabilities. Used to group capabilities similar in nature. */
2442
- type: string;
2443
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
2444
- subType?: string;
2445
- /** Key that backs the capability. */
2446
- key?: string;
2447
- /** State of the entity in which the capability is applicable. */
2448
- entityState: ("declaration" | "instance")[];
2449
- /** Status of the capability */
2450
- status: "enabled" | "disabled";
2451
- /** Metadata contains additional information associated with the capability. Extension point. */
2452
- metadata?: {
2453
- [key: string]: any;
2454
- };
2455
- }[];
2456
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
2457
- isAnnotation?: boolean;
2458
- /** Primary color associated with the model. */
2459
- primaryColor?: string;
2460
- /** Secondary color associated with the model. */
2461
- secondaryColor?: string;
2462
- /** SVG representation of the model in white color. */
2463
- svgWhite?: string;
2464
- /** SVG representation of the model in colored format. */
2465
- svgColor?: string;
2466
- /** SVG representation of the complete model. */
2467
- svgComplete?: string;
2468
- [key: string]: any;
2469
- };
2470
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
2471
- model?: {
1766
+ displayName: string;
1767
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
1768
+ model: {
2472
1769
  /** Version of the model as defined by the registrant. */
2473
1770
  version: string;
2474
1771
  };
1772
+ registrant: {
1773
+ kind: string;
1774
+ };
2475
1775
  };
2476
1776
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2477
1777
  id?: string;
@@ -2519,106 +1819,24 @@ type PostEvaluateApiArg = {
2519
1819
  /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2520
1820
  to: {
2521
1821
  kind?: string;
2522
- /** Name of the model implicated by this selector. Learn more at https://docs.meshery.io/concepts/models */
1822
+ /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2523
1823
  model?: {
2524
- /** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
2525
- id?: string;
2526
- /** Specifies the version of the schema used for the definition. */
2527
- schemaVersion?: string;
2528
- /** Version of the model definition. */
2529
- version: string;
1824
+ /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
1825
+ id: string;
2530
1826
  /** The unique name for the model within the scope of a registrant. */
2531
1827
  name: string;
1828
+ /** Version of the model definition. */
1829
+ version: string;
2532
1830
  /** Human-readable name for the model. */
2533
- displayName?: string;
2534
- /** Description of the model. */
2535
- description?: string;
2536
- /** Status of model, including:
2537
- - duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
2538
- - maintenance: model is unavailable for a period of time.
2539
- - enabled: model is available for use for all users of this Meshery Server.
2540
- - ignored: model is unavailable for use for all users of this Meshery Server. */
2541
- status?: "ignored" | "enabled" | "duplicate";
2542
- /** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
2543
- registrant: {
2544
- /** ID */
2545
- id?: string;
2546
- /** Connection Name */
2547
- name?: string;
2548
- /** Credential ID */
2549
- credential_id?: string;
2550
- /** Connection Type */
2551
- type: string;
2552
- /** Connection Subtype */
2553
- sub_type?: string;
2554
- /** Connection Kind */
2555
- kind: string;
2556
- metadata?: object;
2557
- /** Connection Status */
2558
- status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
2559
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2560
- user_id?: string;
2561
- created_at?: string;
2562
- updated_at?: string;
2563
- deleted_at?: string;
2564
- };
2565
- /** Category of the model. */
2566
- category: {
2567
- /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2568
- id?: string;
2569
- name?: string;
2570
- metadata?: object;
2571
- };
2572
- /** Sub-category of the model. */
2573
- subCategory?: string;
2574
- /** Metadata containing additional information associated with the model. */
2575
- metadata?: {
2576
- /** Capabilities associated with the model */
2577
- capabilities?: {
2578
- /** Specifies the version of the schema to which the capability definition conforms. */
2579
- schemaVersion: string;
2580
- /** Version of the capability definition. */
2581
- version: string;
2582
- /** Name of the capability in human-readible format. */
2583
- displayName: string;
2584
- /** A written representation of the purpose and characteristics of the capability. */
2585
- description?: string;
2586
- /** Top-level categorization of the capability */
2587
- kind: "action" | "mutate" | "view" | "interaction";
2588
- /** Classification of capabilities. Used to group capabilities similar in nature. */
2589
- type: string;
2590
- /** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
2591
- subType?: string;
2592
- /** Key that backs the capability. */
2593
- key?: string;
2594
- /** State of the entity in which the capability is applicable. */
2595
- entityState: ("declaration" | "instance")[];
2596
- /** Status of the capability */
2597
- status: "enabled" | "disabled";
2598
- /** Metadata contains additional information associated with the capability. Extension point. */
2599
- metadata?: {
2600
- [key: string]: any;
2601
- };
2602
- }[];
2603
- /** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
2604
- isAnnotation?: boolean;
2605
- /** Primary color associated with the model. */
2606
- primaryColor?: string;
2607
- /** Secondary color associated with the model. */
2608
- secondaryColor?: string;
2609
- /** SVG representation of the model in white color. */
2610
- svgWhite?: string;
2611
- /** SVG representation of the model in colored format. */
2612
- svgColor?: string;
2613
- /** SVG representation of the complete model. */
2614
- svgComplete?: string;
2615
- [key: string]: any;
2616
- };
2617
- /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31) */
2618
- model?: {
1831
+ displayName: string;
1832
+ /** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
1833
+ model: {
2619
1834
  /** Version of the model as defined by the registrant. */
2620
1835
  version: string;
2621
1836
  };
1837
+ registrant: {
1838
+ kind: string;
1839
+ };
2622
1840
  };
2623
1841
  /** A Universally Unique Identifier used to uniquely identify entites in Meshery. The UUID core defintion is used across different schemas. */
2624
1842
  id?: string;
@@ -2676,15 +1894,16 @@ type PostEvaluateApiArg = {
2676
1894
  };
2677
1895
  };
2678
1896
  declare const useImportDesignMutation: <R extends Record<string, any> = ({
2679
- requestId?: undefined; /** Primary color associated with the model. */
1897
+ requestId?: undefined;
2680
1898
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2681
1899
  data?: undefined;
2682
1900
  error?: undefined;
2683
1901
  endpointName?: string | undefined;
2684
- startedTimeStamp?: undefined;
1902
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
2685
1903
  fulfilledTimeStamp?: undefined;
2686
1904
  } & {
2687
1905
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
1906
+ /** Selectors used to define relationships which are allowed. */
2688
1907
  isUninitialized: true;
2689
1908
  isLoading: false;
2690
1909
  isSuccess: false;
@@ -2692,23 +1911,22 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2692
1911
  }) | ({
2693
1912
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2694
1913
  } & Omit<{
2695
- requestId: string; /** Key that backs the capability. */
1914
+ requestId: string;
2696
1915
  data?: ImportDesignApiResponse | undefined;
2697
1916
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2698
1917
  endpointName: string;
2699
- startedTimeStamp: number; /** Status of the capability */
1918
+ startedTimeStamp: number;
2700
1919
  fulfilledTimeStamp?: number | undefined;
2701
1920
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2702
- requestId: string; /** Key that backs the capability. */
1921
+ requestId: string;
2703
1922
  data?: ImportDesignApiResponse | undefined;
2704
1923
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2705
1924
  endpointName: string;
2706
- startedTimeStamp: number; /** Status of the capability */
1925
+ startedTimeStamp: number;
2707
1926
  fulfilledTimeStamp?: number | undefined;
2708
1927
  }, "data" | "fulfilledTimeStamp">> & {
2709
1928
  error: undefined;
2710
1929
  } & {
2711
- /** Name of the model in which this relationship is packaged. */
2712
1930
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2713
1931
  isUninitialized: false;
2714
1932
  isLoading: false;
@@ -2717,15 +1935,16 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2717
1935
  }) | ({
2718
1936
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2719
1937
  } & {
2720
- requestId: string; /** Key that backs the capability. */
1938
+ requestId: string;
2721
1939
  data?: ImportDesignApiResponse | undefined;
2722
1940
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2723
1941
  endpointName: string;
2724
- startedTimeStamp: number; /** Status of the capability */
1942
+ startedTimeStamp: number;
2725
1943
  fulfilledTimeStamp?: number | undefined;
2726
1944
  } & {
2727
1945
  data?: undefined;
2728
1946
  } & {
1947
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2729
1948
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2730
1949
  isUninitialized: false;
2731
1950
  isLoading: true;
@@ -2734,36 +1953,37 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2734
1953
  }) | ({
2735
1954
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2736
1955
  } & Omit<{
2737
- requestId: string; /** Key that backs the capability. */
1956
+ requestId: string;
2738
1957
  data?: ImportDesignApiResponse | undefined;
2739
1958
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2740
1959
  endpointName: string;
2741
- startedTimeStamp: number; /** Status of the capability */
1960
+ startedTimeStamp: number;
2742
1961
  fulfilledTimeStamp?: number | undefined;
2743
1962
  }, "error"> & Required<Pick<{
2744
- requestId: string; /** Key that backs the capability. */
1963
+ requestId: string;
2745
1964
  data?: ImportDesignApiResponse | undefined;
2746
1965
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2747
1966
  endpointName: string;
2748
- startedTimeStamp: number; /** Status of the capability */
1967
+ startedTimeStamp: number;
2749
1968
  fulfilledTimeStamp?: number | undefined;
2750
1969
  }, "error">> & {
2751
1970
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2752
1971
  isUninitialized: false;
2753
1972
  isLoading: false;
2754
- isSuccess: false;
1973
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2755
1974
  isError: true;
2756
1975
  })>(options?: {
2757
1976
  selectFromResult?: ((state: ({
2758
- requestId?: undefined; /** Primary color associated with the model. */
1977
+ requestId?: undefined;
2759
1978
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2760
1979
  data?: undefined;
2761
1980
  error?: undefined;
2762
1981
  endpointName?: string | undefined;
2763
- startedTimeStamp?: undefined;
1982
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
2764
1983
  fulfilledTimeStamp?: undefined;
2765
1984
  } & {
2766
1985
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
1986
+ /** Selectors used to define relationships which are allowed. */
2767
1987
  isUninitialized: true;
2768
1988
  isLoading: false;
2769
1989
  isSuccess: false;
@@ -2771,23 +1991,22 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2771
1991
  }) | ({
2772
1992
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2773
1993
  } & Omit<{
2774
- requestId: string; /** Key that backs the capability. */
1994
+ requestId: string;
2775
1995
  data?: ImportDesignApiResponse | undefined;
2776
1996
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2777
1997
  endpointName: string;
2778
- startedTimeStamp: number; /** Status of the capability */
1998
+ startedTimeStamp: number;
2779
1999
  fulfilledTimeStamp?: number | undefined;
2780
2000
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2781
- requestId: string; /** Key that backs the capability. */
2001
+ requestId: string;
2782
2002
  data?: ImportDesignApiResponse | undefined;
2783
2003
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2784
2004
  endpointName: string;
2785
- startedTimeStamp: number; /** Status of the capability */
2005
+ startedTimeStamp: number;
2786
2006
  fulfilledTimeStamp?: number | undefined;
2787
2007
  }, "data" | "fulfilledTimeStamp">> & {
2788
2008
  error: undefined;
2789
2009
  } & {
2790
- /** Name of the model in which this relationship is packaged. */
2791
2010
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2792
2011
  isUninitialized: false;
2793
2012
  isLoading: false;
@@ -2796,15 +2015,16 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2796
2015
  }) | ({
2797
2016
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2798
2017
  } & {
2799
- requestId: string; /** Key that backs the capability. */
2018
+ requestId: string;
2800
2019
  data?: ImportDesignApiResponse | undefined;
2801
2020
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2802
2021
  endpointName: string;
2803
- startedTimeStamp: number; /** Status of the capability */
2022
+ startedTimeStamp: number;
2804
2023
  fulfilledTimeStamp?: number | undefined;
2805
2024
  } & {
2806
2025
  data?: undefined;
2807
2026
  } & {
2027
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2808
2028
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2809
2029
  isUninitialized: false;
2810
2030
  isLoading: true;
@@ -2813,24 +2033,24 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2813
2033
  }) | ({
2814
2034
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2815
2035
  } & Omit<{
2816
- requestId: string; /** Key that backs the capability. */
2036
+ requestId: string;
2817
2037
  data?: ImportDesignApiResponse | undefined;
2818
2038
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2819
2039
  endpointName: string;
2820
- startedTimeStamp: number; /** Status of the capability */
2040
+ startedTimeStamp: number;
2821
2041
  fulfilledTimeStamp?: number | undefined;
2822
2042
  }, "error"> & Required<Pick<{
2823
- requestId: string; /** Key that backs the capability. */
2043
+ requestId: string;
2824
2044
  data?: ImportDesignApiResponse | undefined;
2825
2045
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2826
2046
  endpointName: string;
2827
- startedTimeStamp: number; /** Status of the capability */
2047
+ startedTimeStamp: number;
2828
2048
  fulfilledTimeStamp?: number | undefined;
2829
2049
  }, "error">> & {
2830
2050
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2831
2051
  isUninitialized: false;
2832
2052
  isLoading: false;
2833
- isSuccess: false;
2053
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2834
2054
  isError: true;
2835
2055
  })) => R) | undefined;
2836
2056
  fixedCacheKey?: string | undefined;
@@ -2839,15 +2059,16 @@ declare const useImportDesignMutation: <R extends Record<string, any> = ({
2839
2059
  reset: () => void;
2840
2060
  }];
2841
2061
  declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2842
- requestId?: undefined; /** Primary color associated with the model. */
2062
+ requestId?: undefined;
2843
2063
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2844
2064
  data?: undefined;
2845
2065
  error?: undefined;
2846
2066
  endpointName?: string | undefined;
2847
- startedTimeStamp?: undefined;
2067
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
2848
2068
  fulfilledTimeStamp?: undefined;
2849
2069
  } & {
2850
2070
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2071
+ /** Selectors used to define relationships which are allowed. */
2851
2072
  isUninitialized: true;
2852
2073
  isLoading: false;
2853
2074
  isSuccess: false;
@@ -2855,23 +2076,22 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2855
2076
  }) | ({
2856
2077
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2857
2078
  } & Omit<{
2858
- requestId: string; /** Key that backs the capability. */
2079
+ requestId: string;
2859
2080
  data?: RegisterMeshmodelsApiResponse | undefined;
2860
2081
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2861
2082
  endpointName: string;
2862
- startedTimeStamp: number; /** Status of the capability */
2083
+ startedTimeStamp: number;
2863
2084
  fulfilledTimeStamp?: number | undefined;
2864
2085
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2865
- requestId: string; /** Key that backs the capability. */
2086
+ requestId: string;
2866
2087
  data?: RegisterMeshmodelsApiResponse | undefined;
2867
2088
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2868
2089
  endpointName: string;
2869
- startedTimeStamp: number; /** Status of the capability */
2090
+ startedTimeStamp: number;
2870
2091
  fulfilledTimeStamp?: number | undefined;
2871
2092
  }, "data" | "fulfilledTimeStamp">> & {
2872
2093
  error: undefined;
2873
2094
  } & {
2874
- /** Name of the model in which this relationship is packaged. */
2875
2095
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2876
2096
  isUninitialized: false;
2877
2097
  isLoading: false;
@@ -2880,15 +2100,16 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2880
2100
  }) | ({
2881
2101
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2882
2102
  } & {
2883
- requestId: string; /** Key that backs the capability. */
2103
+ requestId: string;
2884
2104
  data?: RegisterMeshmodelsApiResponse | undefined;
2885
2105
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2886
2106
  endpointName: string;
2887
- startedTimeStamp: number; /** Status of the capability */
2107
+ startedTimeStamp: number;
2888
2108
  fulfilledTimeStamp?: number | undefined;
2889
2109
  } & {
2890
2110
  data?: undefined;
2891
2111
  } & {
2112
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2892
2113
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2893
2114
  isUninitialized: false;
2894
2115
  isLoading: true;
@@ -2897,36 +2118,37 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2897
2118
  }) | ({
2898
2119
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2899
2120
  } & Omit<{
2900
- requestId: string; /** Key that backs the capability. */
2121
+ requestId: string;
2901
2122
  data?: RegisterMeshmodelsApiResponse | undefined;
2902
2123
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2903
2124
  endpointName: string;
2904
- startedTimeStamp: number; /** Status of the capability */
2125
+ startedTimeStamp: number;
2905
2126
  fulfilledTimeStamp?: number | undefined;
2906
2127
  }, "error"> & Required<Pick<{
2907
- requestId: string; /** Key that backs the capability. */
2128
+ requestId: string;
2908
2129
  data?: RegisterMeshmodelsApiResponse | undefined;
2909
2130
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2910
2131
  endpointName: string;
2911
- startedTimeStamp: number; /** Status of the capability */
2132
+ startedTimeStamp: number;
2912
2133
  fulfilledTimeStamp?: number | undefined;
2913
2134
  }, "error">> & {
2914
2135
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2915
2136
  isUninitialized: false;
2916
2137
  isLoading: false;
2917
- isSuccess: false;
2138
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2918
2139
  isError: true;
2919
2140
  })>(options?: {
2920
2141
  selectFromResult?: ((state: ({
2921
- requestId?: undefined; /** Primary color associated with the model. */
2142
+ requestId?: undefined;
2922
2143
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2923
2144
  data?: undefined;
2924
2145
  error?: undefined;
2925
2146
  endpointName?: string | undefined;
2926
- startedTimeStamp?: undefined;
2147
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
2927
2148
  fulfilledTimeStamp?: undefined;
2928
2149
  } & {
2929
2150
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2151
+ /** Selectors used to define relationships which are allowed. */
2930
2152
  isUninitialized: true;
2931
2153
  isLoading: false;
2932
2154
  isSuccess: false;
@@ -2934,23 +2156,22 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2934
2156
  }) | ({
2935
2157
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2936
2158
  } & Omit<{
2937
- requestId: string; /** Key that backs the capability. */
2159
+ requestId: string;
2938
2160
  data?: RegisterMeshmodelsApiResponse | undefined;
2939
2161
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2940
2162
  endpointName: string;
2941
- startedTimeStamp: number; /** Status of the capability */
2163
+ startedTimeStamp: number;
2942
2164
  fulfilledTimeStamp?: number | undefined;
2943
2165
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2944
- requestId: string; /** Key that backs the capability. */
2166
+ requestId: string;
2945
2167
  data?: RegisterMeshmodelsApiResponse | undefined;
2946
2168
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2947
2169
  endpointName: string;
2948
- startedTimeStamp: number; /** Status of the capability */
2170
+ startedTimeStamp: number;
2949
2171
  fulfilledTimeStamp?: number | undefined;
2950
2172
  }, "data" | "fulfilledTimeStamp">> & {
2951
2173
  error: undefined;
2952
2174
  } & {
2953
- /** Name of the model in which this relationship is packaged. */
2954
2175
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
2955
2176
  isUninitialized: false;
2956
2177
  isLoading: false;
@@ -2959,15 +2180,16 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2959
2180
  }) | ({
2960
2181
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2961
2182
  } & {
2962
- requestId: string; /** Key that backs the capability. */
2183
+ requestId: string;
2963
2184
  data?: RegisterMeshmodelsApiResponse | undefined;
2964
2185
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2965
2186
  endpointName: string;
2966
- startedTimeStamp: number; /** Status of the capability */
2187
+ startedTimeStamp: number;
2967
2188
  fulfilledTimeStamp?: number | undefined;
2968
2189
  } & {
2969
2190
  data?: undefined;
2970
2191
  } & {
2192
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
2971
2193
  status: _reduxjs_toolkit_query.QueryStatus.pending;
2972
2194
  isUninitialized: false;
2973
2195
  isLoading: true;
@@ -2976,24 +2198,24 @@ declare const useRegisterMeshmodelsMutation: <R extends Record<string, any> = ({
2976
2198
  }) | ({
2977
2199
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2978
2200
  } & Omit<{
2979
- requestId: string; /** Key that backs the capability. */
2201
+ requestId: string;
2980
2202
  data?: RegisterMeshmodelsApiResponse | undefined;
2981
2203
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2982
2204
  endpointName: string;
2983
- startedTimeStamp: number; /** Status of the capability */
2205
+ startedTimeStamp: number;
2984
2206
  fulfilledTimeStamp?: number | undefined;
2985
2207
  }, "error"> & Required<Pick<{
2986
- requestId: string; /** Key that backs the capability. */
2208
+ requestId: string;
2987
2209
  data?: RegisterMeshmodelsApiResponse | undefined;
2988
2210
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
2989
2211
  endpointName: string;
2990
- startedTimeStamp: number; /** Status of the capability */
2212
+ startedTimeStamp: number;
2991
2213
  fulfilledTimeStamp?: number | undefined;
2992
2214
  }, "error">> & {
2993
2215
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
2994
2216
  isUninitialized: false;
2995
2217
  isLoading: false;
2996
- isSuccess: false;
2218
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
2997
2219
  isError: true;
2998
2220
  })) => R) | undefined;
2999
2221
  fixedCacheKey?: string | undefined;
@@ -3165,15 +2387,16 @@ declare const useGetApiWorkspacesQuery: <R extends Record<string, any> = ({
3165
2387
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", GetApiWorkspacesApiResponse, "mesheryRtkSchemasApi", unknown>>;
3166
2388
  };
3167
2389
  declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3168
- requestId?: undefined; /** Primary color associated with the model. */
2390
+ requestId?: undefined;
3169
2391
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3170
2392
  data?: undefined;
3171
2393
  error?: undefined;
3172
2394
  endpointName?: string | undefined;
3173
- startedTimeStamp?: undefined;
2395
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3174
2396
  fulfilledTimeStamp?: undefined;
3175
2397
  } & {
3176
2398
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2399
+ /** Selectors used to define relationships which are allowed. */
3177
2400
  isUninitialized: true;
3178
2401
  isLoading: false;
3179
2402
  isSuccess: false;
@@ -3181,23 +2404,22 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3181
2404
  }) | ({
3182
2405
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3183
2406
  } & Omit<{
3184
- requestId: string; /** Key that backs the capability. */
2407
+ requestId: string;
3185
2408
  data?: PostApiWorkspacesApiResponse | undefined;
3186
2409
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3187
2410
  endpointName: string;
3188
- startedTimeStamp: number; /** Status of the capability */
2411
+ startedTimeStamp: number;
3189
2412
  fulfilledTimeStamp?: number | undefined;
3190
2413
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3191
- requestId: string; /** Key that backs the capability. */
2414
+ requestId: string;
3192
2415
  data?: PostApiWorkspacesApiResponse | undefined;
3193
2416
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3194
2417
  endpointName: string;
3195
- startedTimeStamp: number; /** Status of the capability */
2418
+ startedTimeStamp: number;
3196
2419
  fulfilledTimeStamp?: number | undefined;
3197
2420
  }, "data" | "fulfilledTimeStamp">> & {
3198
2421
  error: undefined;
3199
2422
  } & {
3200
- /** Name of the model in which this relationship is packaged. */
3201
2423
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3202
2424
  isUninitialized: false;
3203
2425
  isLoading: false;
@@ -3206,15 +2428,16 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3206
2428
  }) | ({
3207
2429
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3208
2430
  } & {
3209
- requestId: string; /** Key that backs the capability. */
2431
+ requestId: string;
3210
2432
  data?: PostApiWorkspacesApiResponse | undefined;
3211
2433
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3212
2434
  endpointName: string;
3213
- startedTimeStamp: number; /** Status of the capability */
2435
+ startedTimeStamp: number;
3214
2436
  fulfilledTimeStamp?: number | undefined;
3215
2437
  } & {
3216
2438
  data?: undefined;
3217
2439
  } & {
2440
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3218
2441
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3219
2442
  isUninitialized: false;
3220
2443
  isLoading: true;
@@ -3223,36 +2446,37 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3223
2446
  }) | ({
3224
2447
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3225
2448
  } & Omit<{
3226
- requestId: string; /** Key that backs the capability. */
2449
+ requestId: string;
3227
2450
  data?: PostApiWorkspacesApiResponse | undefined;
3228
2451
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3229
2452
  endpointName: string;
3230
- startedTimeStamp: number; /** Status of the capability */
2453
+ startedTimeStamp: number;
3231
2454
  fulfilledTimeStamp?: number | undefined;
3232
2455
  }, "error"> & Required<Pick<{
3233
- requestId: string; /** Key that backs the capability. */
2456
+ requestId: string;
3234
2457
  data?: PostApiWorkspacesApiResponse | undefined;
3235
2458
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3236
2459
  endpointName: string;
3237
- startedTimeStamp: number; /** Status of the capability */
2460
+ startedTimeStamp: number;
3238
2461
  fulfilledTimeStamp?: number | undefined;
3239
2462
  }, "error">> & {
3240
2463
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3241
2464
  isUninitialized: false;
3242
2465
  isLoading: false;
3243
- isSuccess: false;
2466
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3244
2467
  isError: true;
3245
2468
  })>(options?: {
3246
2469
  selectFromResult?: ((state: ({
3247
- requestId?: undefined; /** Primary color associated with the model. */
2470
+ requestId?: undefined;
3248
2471
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3249
2472
  data?: undefined;
3250
2473
  error?: undefined;
3251
2474
  endpointName?: string | undefined;
3252
- startedTimeStamp?: undefined;
2475
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3253
2476
  fulfilledTimeStamp?: undefined;
3254
2477
  } & {
3255
2478
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2479
+ /** Selectors used to define relationships which are allowed. */
3256
2480
  isUninitialized: true;
3257
2481
  isLoading: false;
3258
2482
  isSuccess: false;
@@ -3260,23 +2484,22 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3260
2484
  }) | ({
3261
2485
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3262
2486
  } & Omit<{
3263
- requestId: string; /** Key that backs the capability. */
2487
+ requestId: string;
3264
2488
  data?: PostApiWorkspacesApiResponse | undefined;
3265
2489
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3266
2490
  endpointName: string;
3267
- startedTimeStamp: number; /** Status of the capability */
2491
+ startedTimeStamp: number;
3268
2492
  fulfilledTimeStamp?: number | undefined;
3269
2493
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3270
- requestId: string; /** Key that backs the capability. */
2494
+ requestId: string;
3271
2495
  data?: PostApiWorkspacesApiResponse | undefined;
3272
2496
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3273
2497
  endpointName: string;
3274
- startedTimeStamp: number; /** Status of the capability */
2498
+ startedTimeStamp: number;
3275
2499
  fulfilledTimeStamp?: number | undefined;
3276
2500
  }, "data" | "fulfilledTimeStamp">> & {
3277
2501
  error: undefined;
3278
2502
  } & {
3279
- /** Name of the model in which this relationship is packaged. */
3280
2503
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3281
2504
  isUninitialized: false;
3282
2505
  isLoading: false;
@@ -3285,15 +2508,16 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3285
2508
  }) | ({
3286
2509
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3287
2510
  } & {
3288
- requestId: string; /** Key that backs the capability. */
2511
+ requestId: string;
3289
2512
  data?: PostApiWorkspacesApiResponse | undefined;
3290
2513
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3291
2514
  endpointName: string;
3292
- startedTimeStamp: number; /** Status of the capability */
2515
+ startedTimeStamp: number;
3293
2516
  fulfilledTimeStamp?: number | undefined;
3294
2517
  } & {
3295
2518
  data?: undefined;
3296
2519
  } & {
2520
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3297
2521
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3298
2522
  isUninitialized: false;
3299
2523
  isLoading: true;
@@ -3302,24 +2526,24 @@ declare const usePostApiWorkspacesMutation: <R extends Record<string, any> = ({
3302
2526
  }) | ({
3303
2527
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3304
2528
  } & Omit<{
3305
- requestId: string; /** Key that backs the capability. */
2529
+ requestId: string;
3306
2530
  data?: PostApiWorkspacesApiResponse | undefined;
3307
2531
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3308
2532
  endpointName: string;
3309
- startedTimeStamp: number; /** Status of the capability */
2533
+ startedTimeStamp: number;
3310
2534
  fulfilledTimeStamp?: number | undefined;
3311
2535
  }, "error"> & Required<Pick<{
3312
- requestId: string; /** Key that backs the capability. */
2536
+ requestId: string;
3313
2537
  data?: PostApiWorkspacesApiResponse | undefined;
3314
2538
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3315
2539
  endpointName: string;
3316
- startedTimeStamp: number; /** Status of the capability */
2540
+ startedTimeStamp: number;
3317
2541
  fulfilledTimeStamp?: number | undefined;
3318
2542
  }, "error">> & {
3319
2543
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3320
2544
  isUninitialized: false;
3321
2545
  isLoading: false;
3322
- isSuccess: false;
2546
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3323
2547
  isError: true;
3324
2548
  })) => R) | undefined;
3325
2549
  fixedCacheKey?: string | undefined;
@@ -3491,15 +2715,16 @@ declare const useGetApiWorkspacesByIdQuery: <R extends Record<string, any> = ({
3491
2715
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetApiWorkspacesByIdApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", GetApiWorkspacesByIdApiResponse, "mesheryRtkSchemasApi", unknown>>;
3492
2716
  };
3493
2717
  declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
3494
- requestId?: undefined; /** Primary color associated with the model. */
2718
+ requestId?: undefined;
3495
2719
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3496
2720
  data?: undefined;
3497
2721
  error?: undefined;
3498
2722
  endpointName?: string | undefined;
3499
- startedTimeStamp?: undefined;
2723
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3500
2724
  fulfilledTimeStamp?: undefined;
3501
2725
  } & {
3502
2726
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2727
+ /** Selectors used to define relationships which are allowed. */
3503
2728
  isUninitialized: true;
3504
2729
  isLoading: false;
3505
2730
  isSuccess: false;
@@ -3507,23 +2732,22 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3507
2732
  }) | ({
3508
2733
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3509
2734
  } & Omit<{
3510
- requestId: string; /** Key that backs the capability. */
2735
+ requestId: string;
3511
2736
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3512
2737
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3513
2738
  endpointName: string;
3514
- startedTimeStamp: number; /** Status of the capability */
2739
+ startedTimeStamp: number;
3515
2740
  fulfilledTimeStamp?: number | undefined;
3516
2741
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3517
- requestId: string; /** Key that backs the capability. */
2742
+ requestId: string;
3518
2743
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3519
2744
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3520
2745
  endpointName: string;
3521
- startedTimeStamp: number; /** Status of the capability */
2746
+ startedTimeStamp: number;
3522
2747
  fulfilledTimeStamp?: number | undefined;
3523
2748
  }, "data" | "fulfilledTimeStamp">> & {
3524
2749
  error: undefined;
3525
2750
  } & {
3526
- /** Name of the model in which this relationship is packaged. */
3527
2751
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3528
2752
  isUninitialized: false;
3529
2753
  isLoading: false;
@@ -3532,15 +2756,16 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3532
2756
  }) | ({
3533
2757
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3534
2758
  } & {
3535
- requestId: string; /** Key that backs the capability. */
2759
+ requestId: string;
3536
2760
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3537
2761
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3538
2762
  endpointName: string;
3539
- startedTimeStamp: number; /** Status of the capability */
2763
+ startedTimeStamp: number;
3540
2764
  fulfilledTimeStamp?: number | undefined;
3541
2765
  } & {
3542
2766
  data?: undefined;
3543
2767
  } & {
2768
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3544
2769
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3545
2770
  isUninitialized: false;
3546
2771
  isLoading: true;
@@ -3549,36 +2774,37 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3549
2774
  }) | ({
3550
2775
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3551
2776
  } & Omit<{
3552
- requestId: string; /** Key that backs the capability. */
2777
+ requestId: string;
3553
2778
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3554
2779
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3555
2780
  endpointName: string;
3556
- startedTimeStamp: number; /** Status of the capability */
2781
+ startedTimeStamp: number;
3557
2782
  fulfilledTimeStamp?: number | undefined;
3558
2783
  }, "error"> & Required<Pick<{
3559
- requestId: string; /** Key that backs the capability. */
2784
+ requestId: string;
3560
2785
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3561
2786
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3562
2787
  endpointName: string;
3563
- startedTimeStamp: number; /** Status of the capability */
2788
+ startedTimeStamp: number;
3564
2789
  fulfilledTimeStamp?: number | undefined;
3565
2790
  }, "error">> & {
3566
2791
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3567
2792
  isUninitialized: false;
3568
2793
  isLoading: false;
3569
- isSuccess: false;
2794
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3570
2795
  isError: true;
3571
2796
  })>(options?: {
3572
2797
  selectFromResult?: ((state: ({
3573
- requestId?: undefined; /** Primary color associated with the model. */
2798
+ requestId?: undefined;
3574
2799
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3575
2800
  data?: undefined;
3576
2801
  error?: undefined;
3577
2802
  endpointName?: string | undefined;
3578
- startedTimeStamp?: undefined;
2803
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3579
2804
  fulfilledTimeStamp?: undefined;
3580
2805
  } & {
3581
2806
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2807
+ /** Selectors used to define relationships which are allowed. */
3582
2808
  isUninitialized: true;
3583
2809
  isLoading: false;
3584
2810
  isSuccess: false;
@@ -3586,23 +2812,22 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3586
2812
  }) | ({
3587
2813
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3588
2814
  } & Omit<{
3589
- requestId: string; /** Key that backs the capability. */
2815
+ requestId: string;
3590
2816
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3591
2817
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3592
2818
  endpointName: string;
3593
- startedTimeStamp: number; /** Status of the capability */
2819
+ startedTimeStamp: number;
3594
2820
  fulfilledTimeStamp?: number | undefined;
3595
2821
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3596
- requestId: string; /** Key that backs the capability. */
2822
+ requestId: string;
3597
2823
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3598
2824
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3599
2825
  endpointName: string;
3600
- startedTimeStamp: number; /** Status of the capability */
2826
+ startedTimeStamp: number;
3601
2827
  fulfilledTimeStamp?: number | undefined;
3602
2828
  }, "data" | "fulfilledTimeStamp">> & {
3603
2829
  error: undefined;
3604
2830
  } & {
3605
- /** Name of the model in which this relationship is packaged. */
3606
2831
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3607
2832
  isUninitialized: false;
3608
2833
  isLoading: false;
@@ -3611,15 +2836,16 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3611
2836
  }) | ({
3612
2837
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3613
2838
  } & {
3614
- requestId: string; /** Key that backs the capability. */
2839
+ requestId: string;
3615
2840
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3616
2841
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3617
2842
  endpointName: string;
3618
- startedTimeStamp: number; /** Status of the capability */
2843
+ startedTimeStamp: number;
3619
2844
  fulfilledTimeStamp?: number | undefined;
3620
2845
  } & {
3621
2846
  data?: undefined;
3622
2847
  } & {
2848
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3623
2849
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3624
2850
  isUninitialized: false;
3625
2851
  isLoading: true;
@@ -3628,24 +2854,24 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3628
2854
  }) | ({
3629
2855
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3630
2856
  } & Omit<{
3631
- requestId: string; /** Key that backs the capability. */
2857
+ requestId: string;
3632
2858
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3633
2859
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3634
2860
  endpointName: string;
3635
- startedTimeStamp: number; /** Status of the capability */
2861
+ startedTimeStamp: number;
3636
2862
  fulfilledTimeStamp?: number | undefined;
3637
2863
  }, "error"> & Required<Pick<{
3638
- requestId: string; /** Key that backs the capability. */
2864
+ requestId: string;
3639
2865
  data?: PutApiWorkspacesByIdApiResponse | undefined;
3640
2866
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3641
2867
  endpointName: string;
3642
- startedTimeStamp: number; /** Status of the capability */
2868
+ startedTimeStamp: number;
3643
2869
  fulfilledTimeStamp?: number | undefined;
3644
2870
  }, "error">> & {
3645
2871
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3646
2872
  isUninitialized: false;
3647
2873
  isLoading: false;
3648
- isSuccess: false;
2874
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3649
2875
  isError: true;
3650
2876
  })) => R) | undefined;
3651
2877
  fixedCacheKey?: string | undefined;
@@ -3654,15 +2880,16 @@ declare const usePutApiWorkspacesByIdMutation: <R extends Record<string, any> =
3654
2880
  reset: () => void;
3655
2881
  }];
3656
2882
  declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any> = ({
3657
- requestId?: undefined; /** Primary color associated with the model. */
2883
+ requestId?: undefined;
3658
2884
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3659
2885
  data?: undefined;
3660
2886
  error?: undefined;
3661
2887
  endpointName?: string | undefined;
3662
- startedTimeStamp?: undefined;
2888
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3663
2889
  fulfilledTimeStamp?: undefined;
3664
2890
  } & {
3665
2891
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2892
+ /** Selectors used to define relationships which are allowed. */
3666
2893
  isUninitialized: true;
3667
2894
  isLoading: false;
3668
2895
  isSuccess: false;
@@ -3670,23 +2897,22 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3670
2897
  }) | ({
3671
2898
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3672
2899
  } & Omit<{
3673
- requestId: string; /** Key that backs the capability. */
2900
+ requestId: string;
3674
2901
  data?: unknown;
3675
2902
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3676
2903
  endpointName: string;
3677
- startedTimeStamp: number; /** Status of the capability */
2904
+ startedTimeStamp: number;
3678
2905
  fulfilledTimeStamp?: number | undefined;
3679
2906
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3680
- requestId: string; /** Key that backs the capability. */
2907
+ requestId: string;
3681
2908
  data?: unknown;
3682
2909
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3683
2910
  endpointName: string;
3684
- startedTimeStamp: number; /** Status of the capability */
2911
+ startedTimeStamp: number;
3685
2912
  fulfilledTimeStamp?: number | undefined;
3686
2913
  }, "data" | "fulfilledTimeStamp">> & {
3687
2914
  error: undefined;
3688
2915
  } & {
3689
- /** Name of the model in which this relationship is packaged. */
3690
2916
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3691
2917
  isUninitialized: false;
3692
2918
  isLoading: false;
@@ -3695,15 +2921,16 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3695
2921
  }) | ({
3696
2922
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3697
2923
  } & {
3698
- requestId: string; /** Key that backs the capability. */
2924
+ requestId: string;
3699
2925
  data?: unknown;
3700
2926
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3701
2927
  endpointName: string;
3702
- startedTimeStamp: number; /** Status of the capability */
2928
+ startedTimeStamp: number;
3703
2929
  fulfilledTimeStamp?: number | undefined;
3704
2930
  } & {
3705
2931
  data?: undefined;
3706
2932
  } & {
2933
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3707
2934
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3708
2935
  isUninitialized: false;
3709
2936
  isLoading: true;
@@ -3712,36 +2939,37 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3712
2939
  }) | ({
3713
2940
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3714
2941
  } & Omit<{
3715
- requestId: string; /** Key that backs the capability. */
2942
+ requestId: string;
3716
2943
  data?: unknown;
3717
2944
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3718
2945
  endpointName: string;
3719
- startedTimeStamp: number; /** Status of the capability */
2946
+ startedTimeStamp: number;
3720
2947
  fulfilledTimeStamp?: number | undefined;
3721
2948
  }, "error"> & Required<Pick<{
3722
- requestId: string; /** Key that backs the capability. */
2949
+ requestId: string;
3723
2950
  data?: unknown;
3724
2951
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3725
2952
  endpointName: string;
3726
- startedTimeStamp: number; /** Status of the capability */
2953
+ startedTimeStamp: number;
3727
2954
  fulfilledTimeStamp?: number | undefined;
3728
2955
  }, "error">> & {
3729
2956
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3730
2957
  isUninitialized: false;
3731
2958
  isLoading: false;
3732
- isSuccess: false;
2959
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3733
2960
  isError: true;
3734
2961
  })>(options?: {
3735
2962
  selectFromResult?: ((state: ({
3736
- requestId?: undefined; /** Primary color associated with the model. */
2963
+ requestId?: undefined;
3737
2964
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3738
2965
  data?: undefined;
3739
2966
  error?: undefined;
3740
2967
  endpointName?: string | undefined;
3741
- startedTimeStamp?: undefined;
2968
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3742
2969
  fulfilledTimeStamp?: undefined;
3743
2970
  } & {
3744
2971
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
2972
+ /** Selectors used to define relationships which are allowed. */
3745
2973
  isUninitialized: true;
3746
2974
  isLoading: false;
3747
2975
  isSuccess: false;
@@ -3749,23 +2977,22 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3749
2977
  }) | ({
3750
2978
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3751
2979
  } & Omit<{
3752
- requestId: string; /** Key that backs the capability. */
2980
+ requestId: string;
3753
2981
  data?: unknown;
3754
2982
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3755
2983
  endpointName: string;
3756
- startedTimeStamp: number; /** Status of the capability */
2984
+ startedTimeStamp: number;
3757
2985
  fulfilledTimeStamp?: number | undefined;
3758
2986
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3759
- requestId: string; /** Key that backs the capability. */
2987
+ requestId: string;
3760
2988
  data?: unknown;
3761
2989
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3762
2990
  endpointName: string;
3763
- startedTimeStamp: number; /** Status of the capability */
2991
+ startedTimeStamp: number;
3764
2992
  fulfilledTimeStamp?: number | undefined;
3765
2993
  }, "data" | "fulfilledTimeStamp">> & {
3766
2994
  error: undefined;
3767
2995
  } & {
3768
- /** Name of the model in which this relationship is packaged. */
3769
2996
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3770
2997
  isUninitialized: false;
3771
2998
  isLoading: false;
@@ -3774,15 +3001,16 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3774
3001
  }) | ({
3775
3002
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3776
3003
  } & {
3777
- requestId: string; /** Key that backs the capability. */
3004
+ requestId: string;
3778
3005
  data?: unknown;
3779
3006
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3780
3007
  endpointName: string;
3781
- startedTimeStamp: number; /** Status of the capability */
3008
+ startedTimeStamp: number;
3782
3009
  fulfilledTimeStamp?: number | undefined;
3783
3010
  } & {
3784
3011
  data?: undefined;
3785
3012
  } & {
3013
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3786
3014
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3787
3015
  isUninitialized: false;
3788
3016
  isLoading: true;
@@ -3791,24 +3019,24 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3791
3019
  }) | ({
3792
3020
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3793
3021
  } & Omit<{
3794
- requestId: string; /** Key that backs the capability. */
3022
+ requestId: string;
3795
3023
  data?: unknown;
3796
3024
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3797
3025
  endpointName: string;
3798
- startedTimeStamp: number; /** Status of the capability */
3026
+ startedTimeStamp: number;
3799
3027
  fulfilledTimeStamp?: number | undefined;
3800
3028
  }, "error"> & Required<Pick<{
3801
- requestId: string; /** Key that backs the capability. */
3029
+ requestId: string;
3802
3030
  data?: unknown;
3803
3031
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3804
3032
  endpointName: string;
3805
- startedTimeStamp: number; /** Status of the capability */
3033
+ startedTimeStamp: number;
3806
3034
  fulfilledTimeStamp?: number | undefined;
3807
3035
  }, "error">> & {
3808
3036
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3809
3037
  isUninitialized: false;
3810
3038
  isLoading: false;
3811
- isSuccess: false;
3039
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3812
3040
  isError: true;
3813
3041
  })) => R) | undefined;
3814
3042
  fixedCacheKey?: string | undefined;
@@ -3817,15 +3045,16 @@ declare const useDeleteApiWorkspacesByIdMutation: <R extends Record<string, any>
3817
3045
  reset: () => void;
3818
3046
  }];
3819
3047
  declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3820
- requestId?: undefined; /** Primary color associated with the model. */
3048
+ requestId?: undefined;
3821
3049
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3822
3050
  data?: undefined;
3823
3051
  error?: undefined;
3824
3052
  endpointName?: string | undefined;
3825
- startedTimeStamp?: undefined;
3053
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3826
3054
  fulfilledTimeStamp?: undefined;
3827
3055
  } & {
3828
3056
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3057
+ /** Selectors used to define relationships which are allowed. */
3829
3058
  isUninitialized: true;
3830
3059
  isLoading: false;
3831
3060
  isSuccess: false;
@@ -3833,23 +3062,22 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3833
3062
  }) | ({
3834
3063
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3835
3064
  } & Omit<{
3836
- requestId: string; /** Key that backs the capability. */
3065
+ requestId: string;
3837
3066
  data?: CreateEnvironmentApiResponse | undefined;
3838
3067
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3839
3068
  endpointName: string;
3840
- startedTimeStamp: number; /** Status of the capability */
3069
+ startedTimeStamp: number;
3841
3070
  fulfilledTimeStamp?: number | undefined;
3842
3071
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3843
- requestId: string; /** Key that backs the capability. */
3072
+ requestId: string;
3844
3073
  data?: CreateEnvironmentApiResponse | undefined;
3845
3074
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3846
3075
  endpointName: string;
3847
- startedTimeStamp: number; /** Status of the capability */
3076
+ startedTimeStamp: number;
3848
3077
  fulfilledTimeStamp?: number | undefined;
3849
3078
  }, "data" | "fulfilledTimeStamp">> & {
3850
3079
  error: undefined;
3851
3080
  } & {
3852
- /** Name of the model in which this relationship is packaged. */
3853
3081
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3854
3082
  isUninitialized: false;
3855
3083
  isLoading: false;
@@ -3858,15 +3086,16 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3858
3086
  }) | ({
3859
3087
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3860
3088
  } & {
3861
- requestId: string; /** Key that backs the capability. */
3089
+ requestId: string;
3862
3090
  data?: CreateEnvironmentApiResponse | undefined;
3863
3091
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3864
3092
  endpointName: string;
3865
- startedTimeStamp: number; /** Status of the capability */
3093
+ startedTimeStamp: number;
3866
3094
  fulfilledTimeStamp?: number | undefined;
3867
3095
  } & {
3868
3096
  data?: undefined;
3869
3097
  } & {
3098
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3870
3099
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3871
3100
  isUninitialized: false;
3872
3101
  isLoading: true;
@@ -3875,36 +3104,37 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3875
3104
  }) | ({
3876
3105
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3877
3106
  } & Omit<{
3878
- requestId: string; /** Key that backs the capability. */
3107
+ requestId: string;
3879
3108
  data?: CreateEnvironmentApiResponse | undefined;
3880
3109
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3881
3110
  endpointName: string;
3882
- startedTimeStamp: number; /** Status of the capability */
3111
+ startedTimeStamp: number;
3883
3112
  fulfilledTimeStamp?: number | undefined;
3884
3113
  }, "error"> & Required<Pick<{
3885
- requestId: string; /** Key that backs the capability. */
3114
+ requestId: string;
3886
3115
  data?: CreateEnvironmentApiResponse | undefined;
3887
3116
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3888
3117
  endpointName: string;
3889
- startedTimeStamp: number; /** Status of the capability */
3118
+ startedTimeStamp: number;
3890
3119
  fulfilledTimeStamp?: number | undefined;
3891
3120
  }, "error">> & {
3892
3121
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3893
3122
  isUninitialized: false;
3894
3123
  isLoading: false;
3895
- isSuccess: false;
3124
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3896
3125
  isError: true;
3897
3126
  })>(options?: {
3898
3127
  selectFromResult?: ((state: ({
3899
- requestId?: undefined; /** Primary color associated with the model. */
3128
+ requestId?: undefined;
3900
3129
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3901
3130
  data?: undefined;
3902
3131
  error?: undefined;
3903
3132
  endpointName?: string | undefined;
3904
- startedTimeStamp?: undefined;
3133
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
3905
3134
  fulfilledTimeStamp?: undefined;
3906
3135
  } & {
3907
3136
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3137
+ /** Selectors used to define relationships which are allowed. */
3908
3138
  isUninitialized: true;
3909
3139
  isLoading: false;
3910
3140
  isSuccess: false;
@@ -3912,23 +3142,22 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3912
3142
  }) | ({
3913
3143
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3914
3144
  } & Omit<{
3915
- requestId: string; /** Key that backs the capability. */
3145
+ requestId: string;
3916
3146
  data?: CreateEnvironmentApiResponse | undefined;
3917
3147
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3918
3148
  endpointName: string;
3919
- startedTimeStamp: number; /** Status of the capability */
3149
+ startedTimeStamp: number;
3920
3150
  fulfilledTimeStamp?: number | undefined;
3921
3151
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3922
- requestId: string; /** Key that backs the capability. */
3152
+ requestId: string;
3923
3153
  data?: CreateEnvironmentApiResponse | undefined;
3924
3154
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3925
3155
  endpointName: string;
3926
- startedTimeStamp: number; /** Status of the capability */
3156
+ startedTimeStamp: number;
3927
3157
  fulfilledTimeStamp?: number | undefined;
3928
3158
  }, "data" | "fulfilledTimeStamp">> & {
3929
3159
  error: undefined;
3930
3160
  } & {
3931
- /** Name of the model in which this relationship is packaged. */
3932
3161
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
3933
3162
  isUninitialized: false;
3934
3163
  isLoading: false;
@@ -3937,15 +3166,16 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3937
3166
  }) | ({
3938
3167
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3939
3168
  } & {
3940
- requestId: string; /** Key that backs the capability. */
3169
+ requestId: string;
3941
3170
  data?: CreateEnvironmentApiResponse | undefined;
3942
3171
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3943
3172
  endpointName: string;
3944
- startedTimeStamp: number; /** Status of the capability */
3173
+ startedTimeStamp: number;
3945
3174
  fulfilledTimeStamp?: number | undefined;
3946
3175
  } & {
3947
3176
  data?: undefined;
3948
3177
  } & {
3178
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
3949
3179
  status: _reduxjs_toolkit_query.QueryStatus.pending;
3950
3180
  isUninitialized: false;
3951
3181
  isLoading: true;
@@ -3954,24 +3184,24 @@ declare const useCreateEnvironmentMutation: <R extends Record<string, any> = ({
3954
3184
  }) | ({
3955
3185
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3956
3186
  } & Omit<{
3957
- requestId: string; /** Key that backs the capability. */
3187
+ requestId: string;
3958
3188
  data?: CreateEnvironmentApiResponse | undefined;
3959
3189
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3960
3190
  endpointName: string;
3961
- startedTimeStamp: number; /** Status of the capability */
3191
+ startedTimeStamp: number;
3962
3192
  fulfilledTimeStamp?: number | undefined;
3963
3193
  }, "error"> & Required<Pick<{
3964
- requestId: string; /** Key that backs the capability. */
3194
+ requestId: string;
3965
3195
  data?: CreateEnvironmentApiResponse | undefined;
3966
3196
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
3967
3197
  endpointName: string;
3968
- startedTimeStamp: number; /** Status of the capability */
3198
+ startedTimeStamp: number;
3969
3199
  fulfilledTimeStamp?: number | undefined;
3970
3200
  }, "error">> & {
3971
3201
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
3972
3202
  isUninitialized: false;
3973
3203
  isLoading: false;
3974
- isSuccess: false;
3204
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
3975
3205
  isError: true;
3976
3206
  })) => R) | undefined;
3977
3207
  fixedCacheKey?: string | undefined;
@@ -4143,15 +3373,16 @@ declare const useGetEnvironmentsQuery: <R extends Record<string, any> = ({
4143
3373
  refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<GetEnvironmentsApiArg, _reduxjs_toolkit_query.BaseQueryFn<string | _reduxjs_toolkit_query.FetchArgs, unknown, _reduxjs_toolkit_query.FetchBaseQueryError, {}, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "design_other" | "model_other" | "workspace_workspaces" | "environment_environments" | "evaluation_other", GetEnvironmentsApiResponse, "mesheryRtkSchemasApi", unknown>>;
4144
3374
  };
4145
3375
  declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4146
- requestId?: undefined; /** Primary color associated with the model. */
3376
+ requestId?: undefined;
4147
3377
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
4148
3378
  data?: undefined;
4149
3379
  error?: undefined;
4150
3380
  endpointName?: string | undefined;
4151
- startedTimeStamp?: undefined;
3381
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
4152
3382
  fulfilledTimeStamp?: undefined;
4153
3383
  } & {
4154
3384
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3385
+ /** Selectors used to define relationships which are allowed. */
4155
3386
  isUninitialized: true;
4156
3387
  isLoading: false;
4157
3388
  isSuccess: false;
@@ -4159,23 +3390,22 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4159
3390
  }) | ({
4160
3391
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
4161
3392
  } & Omit<{
4162
- requestId: string; /** Key that backs the capability. */
3393
+ requestId: string;
4163
3394
  data?: PostEvaluateApiResponse | undefined;
4164
3395
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4165
3396
  endpointName: string;
4166
- startedTimeStamp: number; /** Status of the capability */
3397
+ startedTimeStamp: number;
4167
3398
  fulfilledTimeStamp?: number | undefined;
4168
3399
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4169
- requestId: string; /** Key that backs the capability. */
3400
+ requestId: string;
4170
3401
  data?: PostEvaluateApiResponse | undefined;
4171
3402
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4172
3403
  endpointName: string;
4173
- startedTimeStamp: number; /** Status of the capability */
3404
+ startedTimeStamp: number;
4174
3405
  fulfilledTimeStamp?: number | undefined;
4175
3406
  }, "data" | "fulfilledTimeStamp">> & {
4176
3407
  error: undefined;
4177
3408
  } & {
4178
- /** Name of the model in which this relationship is packaged. */
4179
3409
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
4180
3410
  isUninitialized: false;
4181
3411
  isLoading: false;
@@ -4184,15 +3414,16 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4184
3414
  }) | ({
4185
3415
  status: _reduxjs_toolkit_query.QueryStatus.pending;
4186
3416
  } & {
4187
- requestId: string; /** Key that backs the capability. */
3417
+ requestId: string;
4188
3418
  data?: PostEvaluateApiResponse | undefined;
4189
3419
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4190
3420
  endpointName: string;
4191
- startedTimeStamp: number; /** Status of the capability */
3421
+ startedTimeStamp: number;
4192
3422
  fulfilledTimeStamp?: number | undefined;
4193
3423
  } & {
4194
3424
  data?: undefined;
4195
3425
  } & {
3426
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
4196
3427
  status: _reduxjs_toolkit_query.QueryStatus.pending;
4197
3428
  isUninitialized: false;
4198
3429
  isLoading: true;
@@ -4201,36 +3432,37 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4201
3432
  }) | ({
4202
3433
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
4203
3434
  } & Omit<{
4204
- requestId: string; /** Key that backs the capability. */
3435
+ requestId: string;
4205
3436
  data?: PostEvaluateApiResponse | undefined;
4206
3437
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4207
3438
  endpointName: string;
4208
- startedTimeStamp: number; /** Status of the capability */
3439
+ startedTimeStamp: number;
4209
3440
  fulfilledTimeStamp?: number | undefined;
4210
3441
  }, "error"> & Required<Pick<{
4211
- requestId: string; /** Key that backs the capability. */
3442
+ requestId: string;
4212
3443
  data?: PostEvaluateApiResponse | undefined;
4213
3444
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4214
3445
  endpointName: string;
4215
- startedTimeStamp: number; /** Status of the capability */
3446
+ startedTimeStamp: number;
4216
3447
  fulfilledTimeStamp?: number | undefined;
4217
3448
  }, "error">> & {
4218
3449
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
4219
3450
  isUninitialized: false;
4220
3451
  isLoading: false;
4221
- isSuccess: false;
3452
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
4222
3453
  isError: true;
4223
3454
  })>(options?: {
4224
3455
  selectFromResult?: ((state: ({
4225
- requestId?: undefined; /** Primary color associated with the model. */
3456
+ requestId?: undefined;
4226
3457
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
4227
3458
  data?: undefined;
4228
3459
  error?: undefined;
4229
3460
  endpointName?: string | undefined;
4230
- startedTimeStamp?: undefined;
3461
+ startedTimeStamp?: undefined; /** The unique name for the model within the scope of a registrant. */
4231
3462
  fulfilledTimeStamp?: undefined;
4232
3463
  } & {
4233
3464
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
3465
+ /** Selectors used to define relationships which are allowed. */
4234
3466
  isUninitialized: true;
4235
3467
  isLoading: false;
4236
3468
  isSuccess: false;
@@ -4238,23 +3470,22 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4238
3470
  }) | ({
4239
3471
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
4240
3472
  } & Omit<{
4241
- requestId: string; /** Key that backs the capability. */
3473
+ requestId: string;
4242
3474
  data?: PostEvaluateApiResponse | undefined;
4243
3475
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4244
3476
  endpointName: string;
4245
- startedTimeStamp: number; /** Status of the capability */
3477
+ startedTimeStamp: number;
4246
3478
  fulfilledTimeStamp?: number | undefined;
4247
3479
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4248
- requestId: string; /** Key that backs the capability. */
3480
+ requestId: string;
4249
3481
  data?: PostEvaluateApiResponse | undefined;
4250
3482
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4251
3483
  endpointName: string;
4252
- startedTimeStamp: number; /** Status of the capability */
3484
+ startedTimeStamp: number;
4253
3485
  fulfilledTimeStamp?: number | undefined;
4254
3486
  }, "data" | "fulfilledTimeStamp">> & {
4255
3487
  error: undefined;
4256
3488
  } & {
4257
- /** Name of the model in which this relationship is packaged. */
4258
3489
  status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
4259
3490
  isUninitialized: false;
4260
3491
  isLoading: false;
@@ -4263,15 +3494,16 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4263
3494
  }) | ({
4264
3495
  status: _reduxjs_toolkit_query.QueryStatus.pending;
4265
3496
  } & {
4266
- requestId: string; /** Key that backs the capability. */
3497
+ requestId: string;
4267
3498
  data?: PostEvaluateApiResponse | undefined;
4268
3499
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4269
3500
  endpointName: string;
4270
- startedTimeStamp: number; /** Status of the capability */
3501
+ startedTimeStamp: number;
4271
3502
  fulfilledTimeStamp?: number | undefined;
4272
3503
  } & {
4273
3504
  data?: undefined;
4274
3505
  } & {
3506
+ /** Describes the component(s) which are involved in the relationship along with a set of actions to perform upon selection match. */
4275
3507
  status: _reduxjs_toolkit_query.QueryStatus.pending;
4276
3508
  isUninitialized: false;
4277
3509
  isLoading: true;
@@ -4280,24 +3512,24 @@ declare const usePostEvaluateMutation: <R extends Record<string, any> = ({
4280
3512
  }) | ({
4281
3513
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
4282
3514
  } & Omit<{
4283
- requestId: string; /** Key that backs the capability. */
3515
+ requestId: string;
4284
3516
  data?: PostEvaluateApiResponse | undefined;
4285
3517
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4286
3518
  endpointName: string;
4287
- startedTimeStamp: number; /** Status of the capability */
3519
+ startedTimeStamp: number;
4288
3520
  fulfilledTimeStamp?: number | undefined;
4289
3521
  }, "error"> & Required<Pick<{
4290
- requestId: string; /** Key that backs the capability. */
3522
+ requestId: string;
4291
3523
  data?: PostEvaluateApiResponse | undefined;
4292
3524
  error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | undefined;
4293
3525
  endpointName: string;
4294
- startedTimeStamp: number; /** Status of the capability */
3526
+ startedTimeStamp: number;
4295
3527
  fulfilledTimeStamp?: number | undefined;
4296
3528
  }, "error">> & {
4297
3529
  status: _reduxjs_toolkit_query.QueryStatus.rejected;
4298
3530
  isUninitialized: false;
4299
3531
  isLoading: false;
4300
- isSuccess: false;
3532
+ isSuccess: false; /** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
4301
3533
  isError: true;
4302
3534
  })) => R) | undefined;
4303
3535
  fixedCacheKey?: string | undefined;