@meshery/schemas 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/cloudApi.d.mts +1474 -1471
  2. package/dist/cloudApi.d.ts +1474 -1471
  3. package/dist/cloudApi.js +1 -1
  4. package/dist/cloudApi.mjs +1 -1
  5. package/dist/constructs/v1beta1/credential/CredentialSchema.js +1 -1
  6. package/dist/constructs/v1beta1/credential/CredentialSchema.mjs +1 -1
  7. package/dist/constructs/v1beta1/role/RoleSchema.js +1 -1
  8. package/dist/constructs/v1beta1/role/RoleSchema.mjs +1 -1
  9. package/dist/constructs/v1beta1/schedule/ScheduleSchema.js +1 -1
  10. package/dist/constructs/v1beta1/schedule/ScheduleSchema.mjs +1 -1
  11. package/dist/constructs/v1beta1/token/TokenSchema.js +1 -1
  12. package/dist/constructs/v1beta1/token/TokenSchema.mjs +1 -1
  13. package/dist/constructs/v1beta2/credential/CredentialSchema.js +1 -1
  14. package/dist/constructs/v1beta2/credential/CredentialSchema.mjs +1 -1
  15. package/dist/constructs/v1beta2/role/RoleSchema.js +1 -1
  16. package/dist/constructs/v1beta2/role/RoleSchema.mjs +1 -1
  17. package/dist/constructs/v1beta2/schedule/ScheduleSchema.js +1 -1
  18. package/dist/constructs/v1beta2/schedule/ScheduleSchema.mjs +1 -1
  19. package/dist/constructs/v1beta2/token/TokenSchema.js +1 -1
  20. package/dist/constructs/v1beta2/token/TokenSchema.mjs +1 -1
  21. package/dist/constructs/v1beta3/component/ComponentSchema.js +1 -1
  22. package/dist/constructs/v1beta3/component/ComponentSchema.mjs +1 -1
  23. package/dist/constructs/v1beta3/connection/Connection.d.mts +42 -42
  24. package/dist/constructs/v1beta3/connection/Connection.d.ts +42 -42
  25. package/dist/constructs/v1beta3/connection/ConnectionSchema.js +1 -1
  26. package/dist/constructs/v1beta3/connection/ConnectionSchema.mjs +1 -1
  27. package/dist/constructs/v1beta3/token/TokenSchema.js +1 -1
  28. package/dist/constructs/v1beta3/token/TokenSchema.mjs +1 -1
  29. package/dist/constructs/v1beta3/workspace/Workspace.d.mts +18 -15
  30. package/dist/constructs/v1beta3/workspace/Workspace.d.ts +18 -15
  31. package/dist/constructs/v1beta3/workspace/WorkspaceSchema.js +3 -3
  32. package/dist/constructs/v1beta3/workspace/WorkspaceSchema.mjs +3 -3
  33. package/dist/mesheryApi.d.mts +584 -581
  34. package/dist/mesheryApi.d.ts +584 -581
  35. package/package.json +1 -1
@@ -92,7 +92,7 @@ interface components {
92
92
  id: string;
93
93
  /**
94
94
  * @description Specifies the version of the schema to which the environment conforms.
95
- * @default environments.meshery.io/v1beta1
95
+ * @default environments.meshery.io/v1beta3
96
96
  * @example [
97
97
  * "v1",
98
98
  * "v1alpha1",
@@ -111,7 +111,7 @@ interface components {
111
111
  * Format: uuid
112
112
  * @description Environment organization ID
113
113
  */
114
- organization_id: string;
114
+ organizationId: string;
115
115
  /**
116
116
  * Format: uuid
117
117
  * @description Environment owner
@@ -119,23 +119,23 @@ interface components {
119
119
  owner?: string;
120
120
  /**
121
121
  * Format: date-time
122
- * @description Timestamp when the resource was created.
122
+ * @description Timestamp when the environment was created.
123
123
  */
124
- created_at?: string;
124
+ createdAt?: string;
125
125
  /** @description Additional metadata associated with the environment. */
126
126
  metadata?: {
127
127
  [key: string]: unknown;
128
128
  };
129
129
  /**
130
130
  * Format: date-time
131
- * @description Timestamp when the resource was updated.
131
+ * @description Timestamp when the environment was last updated.
132
132
  */
133
- updated_at?: string;
133
+ updatedAt?: string;
134
134
  /**
135
135
  * Format: date-time
136
136
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
137
137
  */
138
- deleted_at?: string | null;
138
+ deletedAt?: string | null;
139
139
  }[];
140
140
  /**
141
141
  * @description Specifies the version of the schema used for the definition.
@@ -211,7 +211,7 @@ interface components {
211
211
  id: string;
212
212
  /**
213
213
  * @description Specifies the version of the schema to which the environment conforms.
214
- * @default environments.meshery.io/v1beta1
214
+ * @default environments.meshery.io/v1beta3
215
215
  * @example [
216
216
  * "v1",
217
217
  * "v1alpha1",
@@ -230,7 +230,7 @@ interface components {
230
230
  * Format: uuid
231
231
  * @description Environment organization ID
232
232
  */
233
- organization_id: string;
233
+ organizationId: string;
234
234
  /**
235
235
  * Format: uuid
236
236
  * @description Environment owner
@@ -238,23 +238,23 @@ interface components {
238
238
  owner?: string;
239
239
  /**
240
240
  * Format: date-time
241
- * @description Timestamp when the resource was created.
241
+ * @description Timestamp when the environment was created.
242
242
  */
243
- created_at?: string;
243
+ createdAt?: string;
244
244
  /** @description Additional metadata associated with the environment. */
245
245
  metadata?: {
246
246
  [key: string]: unknown;
247
247
  };
248
248
  /**
249
249
  * Format: date-time
250
- * @description Timestamp when the resource was updated.
250
+ * @description Timestamp when the environment was last updated.
251
251
  */
252
- updated_at?: string;
252
+ updatedAt?: string;
253
253
  /**
254
254
  * Format: date-time
255
255
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
256
256
  */
257
- deleted_at?: string | null;
257
+ deletedAt?: string | null;
258
258
  }[];
259
259
  /**
260
260
  * @description Specifies the version of the schema used for the definition.
@@ -566,7 +566,7 @@ interface operations {
566
566
  id: string;
567
567
  /**
568
568
  * @description Specifies the version of the schema to which the environment conforms.
569
- * @default environments.meshery.io/v1beta1
569
+ * @default environments.meshery.io/v1beta3
570
570
  * @example [
571
571
  * "v1",
572
572
  * "v1alpha1",
@@ -585,7 +585,7 @@ interface operations {
585
585
  * Format: uuid
586
586
  * @description Environment organization ID
587
587
  */
588
- organization_id: string;
588
+ organizationId: string;
589
589
  /**
590
590
  * Format: uuid
591
591
  * @description Environment owner
@@ -593,23 +593,23 @@ interface operations {
593
593
  owner?: string;
594
594
  /**
595
595
  * Format: date-time
596
- * @description Timestamp when the resource was created.
596
+ * @description Timestamp when the environment was created.
597
597
  */
598
- created_at?: string;
598
+ createdAt?: string;
599
599
  /** @description Additional metadata associated with the environment. */
600
600
  metadata?: {
601
601
  [key: string]: unknown;
602
602
  };
603
603
  /**
604
604
  * Format: date-time
605
- * @description Timestamp when the resource was updated.
605
+ * @description Timestamp when the environment was last updated.
606
606
  */
607
- updated_at?: string;
607
+ updatedAt?: string;
608
608
  /**
609
609
  * Format: date-time
610
610
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
611
611
  */
612
- deleted_at?: string | null;
612
+ deletedAt?: string | null;
613
613
  }[];
614
614
  /**
615
615
  * @description Specifies the version of the schema used for the definition.
@@ -715,7 +715,7 @@ interface operations {
715
715
  id: string;
716
716
  /**
717
717
  * @description Specifies the version of the schema to which the environment conforms.
718
- * @default environments.meshery.io/v1beta1
718
+ * @default environments.meshery.io/v1beta3
719
719
  * @example [
720
720
  * "v1",
721
721
  * "v1alpha1",
@@ -734,7 +734,7 @@ interface operations {
734
734
  * Format: uuid
735
735
  * @description Environment organization ID
736
736
  */
737
- organization_id: string;
737
+ organizationId: string;
738
738
  /**
739
739
  * Format: uuid
740
740
  * @description Environment owner
@@ -742,23 +742,23 @@ interface operations {
742
742
  owner?: string;
743
743
  /**
744
744
  * Format: date-time
745
- * @description Timestamp when the resource was created.
745
+ * @description Timestamp when the environment was created.
746
746
  */
747
- created_at?: string;
747
+ createdAt?: string;
748
748
  /** @description Additional metadata associated with the environment. */
749
749
  metadata?: {
750
750
  [key: string]: unknown;
751
751
  };
752
752
  /**
753
753
  * Format: date-time
754
- * @description Timestamp when the resource was updated.
754
+ * @description Timestamp when the environment was last updated.
755
755
  */
756
- updated_at?: string;
756
+ updatedAt?: string;
757
757
  /**
758
758
  * Format: date-time
759
759
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
760
760
  */
761
- deleted_at?: string | null;
761
+ deletedAt?: string | null;
762
762
  }[];
763
763
  /**
764
764
  * @description Specifies the version of the schema used for the definition.
@@ -899,7 +899,7 @@ interface operations {
899
899
  id: string;
900
900
  /**
901
901
  * @description Specifies the version of the schema to which the environment conforms.
902
- * @default environments.meshery.io/v1beta1
902
+ * @default environments.meshery.io/v1beta3
903
903
  * @example [
904
904
  * "v1",
905
905
  * "v1alpha1",
@@ -918,7 +918,7 @@ interface operations {
918
918
  * Format: uuid
919
919
  * @description Environment organization ID
920
920
  */
921
- organization_id: string;
921
+ organizationId: string;
922
922
  /**
923
923
  * Format: uuid
924
924
  * @description Environment owner
@@ -926,23 +926,23 @@ interface operations {
926
926
  owner?: string;
927
927
  /**
928
928
  * Format: date-time
929
- * @description Timestamp when the resource was created.
929
+ * @description Timestamp when the environment was created.
930
930
  */
931
- created_at?: string;
931
+ createdAt?: string;
932
932
  /** @description Additional metadata associated with the environment. */
933
933
  metadata?: {
934
934
  [key: string]: unknown;
935
935
  };
936
936
  /**
937
937
  * Format: date-time
938
- * @description Timestamp when the resource was updated.
938
+ * @description Timestamp when the environment was last updated.
939
939
  */
940
- updated_at?: string;
940
+ updatedAt?: string;
941
941
  /**
942
942
  * Format: date-time
943
943
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
944
944
  */
945
- deleted_at?: string | null;
945
+ deletedAt?: string | null;
946
946
  }[];
947
947
  /**
948
948
  * @description Specifies the version of the schema used for the definition.
@@ -1049,7 +1049,7 @@ interface operations {
1049
1049
  id: string;
1050
1050
  /**
1051
1051
  * @description Specifies the version of the schema to which the environment conforms.
1052
- * @default environments.meshery.io/v1beta1
1052
+ * @default environments.meshery.io/v1beta3
1053
1053
  * @example [
1054
1054
  * "v1",
1055
1055
  * "v1alpha1",
@@ -1068,7 +1068,7 @@ interface operations {
1068
1068
  * Format: uuid
1069
1069
  * @description Environment organization ID
1070
1070
  */
1071
- organization_id: string;
1071
+ organizationId: string;
1072
1072
  /**
1073
1073
  * Format: uuid
1074
1074
  * @description Environment owner
@@ -1076,23 +1076,23 @@ interface operations {
1076
1076
  owner?: string;
1077
1077
  /**
1078
1078
  * Format: date-time
1079
- * @description Timestamp when the resource was created.
1079
+ * @description Timestamp when the environment was created.
1080
1080
  */
1081
- created_at?: string;
1081
+ createdAt?: string;
1082
1082
  /** @description Additional metadata associated with the environment. */
1083
1083
  metadata?: {
1084
1084
  [key: string]: unknown;
1085
1085
  };
1086
1086
  /**
1087
1087
  * Format: date-time
1088
- * @description Timestamp when the resource was updated.
1088
+ * @description Timestamp when the environment was last updated.
1089
1089
  */
1090
- updated_at?: string;
1090
+ updatedAt?: string;
1091
1091
  /**
1092
1092
  * Format: date-time
1093
1093
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
1094
1094
  */
1095
- deleted_at?: string | null;
1095
+ deletedAt?: string | null;
1096
1096
  }[];
1097
1097
  /**
1098
1098
  * @description Specifies the version of the schema used for the definition.
@@ -92,7 +92,7 @@ interface components {
92
92
  id: string;
93
93
  /**
94
94
  * @description Specifies the version of the schema to which the environment conforms.
95
- * @default environments.meshery.io/v1beta1
95
+ * @default environments.meshery.io/v1beta3
96
96
  * @example [
97
97
  * "v1",
98
98
  * "v1alpha1",
@@ -111,7 +111,7 @@ interface components {
111
111
  * Format: uuid
112
112
  * @description Environment organization ID
113
113
  */
114
- organization_id: string;
114
+ organizationId: string;
115
115
  /**
116
116
  * Format: uuid
117
117
  * @description Environment owner
@@ -119,23 +119,23 @@ interface components {
119
119
  owner?: string;
120
120
  /**
121
121
  * Format: date-time
122
- * @description Timestamp when the resource was created.
122
+ * @description Timestamp when the environment was created.
123
123
  */
124
- created_at?: string;
124
+ createdAt?: string;
125
125
  /** @description Additional metadata associated with the environment. */
126
126
  metadata?: {
127
127
  [key: string]: unknown;
128
128
  };
129
129
  /**
130
130
  * Format: date-time
131
- * @description Timestamp when the resource was updated.
131
+ * @description Timestamp when the environment was last updated.
132
132
  */
133
- updated_at?: string;
133
+ updatedAt?: string;
134
134
  /**
135
135
  * Format: date-time
136
136
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
137
137
  */
138
- deleted_at?: string | null;
138
+ deletedAt?: string | null;
139
139
  }[];
140
140
  /**
141
141
  * @description Specifies the version of the schema used for the definition.
@@ -211,7 +211,7 @@ interface components {
211
211
  id: string;
212
212
  /**
213
213
  * @description Specifies the version of the schema to which the environment conforms.
214
- * @default environments.meshery.io/v1beta1
214
+ * @default environments.meshery.io/v1beta3
215
215
  * @example [
216
216
  * "v1",
217
217
  * "v1alpha1",
@@ -230,7 +230,7 @@ interface components {
230
230
  * Format: uuid
231
231
  * @description Environment organization ID
232
232
  */
233
- organization_id: string;
233
+ organizationId: string;
234
234
  /**
235
235
  * Format: uuid
236
236
  * @description Environment owner
@@ -238,23 +238,23 @@ interface components {
238
238
  owner?: string;
239
239
  /**
240
240
  * Format: date-time
241
- * @description Timestamp when the resource was created.
241
+ * @description Timestamp when the environment was created.
242
242
  */
243
- created_at?: string;
243
+ createdAt?: string;
244
244
  /** @description Additional metadata associated with the environment. */
245
245
  metadata?: {
246
246
  [key: string]: unknown;
247
247
  };
248
248
  /**
249
249
  * Format: date-time
250
- * @description Timestamp when the resource was updated.
250
+ * @description Timestamp when the environment was last updated.
251
251
  */
252
- updated_at?: string;
252
+ updatedAt?: string;
253
253
  /**
254
254
  * Format: date-time
255
255
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
256
256
  */
257
- deleted_at?: string | null;
257
+ deletedAt?: string | null;
258
258
  }[];
259
259
  /**
260
260
  * @description Specifies the version of the schema used for the definition.
@@ -566,7 +566,7 @@ interface operations {
566
566
  id: string;
567
567
  /**
568
568
  * @description Specifies the version of the schema to which the environment conforms.
569
- * @default environments.meshery.io/v1beta1
569
+ * @default environments.meshery.io/v1beta3
570
570
  * @example [
571
571
  * "v1",
572
572
  * "v1alpha1",
@@ -585,7 +585,7 @@ interface operations {
585
585
  * Format: uuid
586
586
  * @description Environment organization ID
587
587
  */
588
- organization_id: string;
588
+ organizationId: string;
589
589
  /**
590
590
  * Format: uuid
591
591
  * @description Environment owner
@@ -593,23 +593,23 @@ interface operations {
593
593
  owner?: string;
594
594
  /**
595
595
  * Format: date-time
596
- * @description Timestamp when the resource was created.
596
+ * @description Timestamp when the environment was created.
597
597
  */
598
- created_at?: string;
598
+ createdAt?: string;
599
599
  /** @description Additional metadata associated with the environment. */
600
600
  metadata?: {
601
601
  [key: string]: unknown;
602
602
  };
603
603
  /**
604
604
  * Format: date-time
605
- * @description Timestamp when the resource was updated.
605
+ * @description Timestamp when the environment was last updated.
606
606
  */
607
- updated_at?: string;
607
+ updatedAt?: string;
608
608
  /**
609
609
  * Format: date-time
610
610
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
611
611
  */
612
- deleted_at?: string | null;
612
+ deletedAt?: string | null;
613
613
  }[];
614
614
  /**
615
615
  * @description Specifies the version of the schema used for the definition.
@@ -715,7 +715,7 @@ interface operations {
715
715
  id: string;
716
716
  /**
717
717
  * @description Specifies the version of the schema to which the environment conforms.
718
- * @default environments.meshery.io/v1beta1
718
+ * @default environments.meshery.io/v1beta3
719
719
  * @example [
720
720
  * "v1",
721
721
  * "v1alpha1",
@@ -734,7 +734,7 @@ interface operations {
734
734
  * Format: uuid
735
735
  * @description Environment organization ID
736
736
  */
737
- organization_id: string;
737
+ organizationId: string;
738
738
  /**
739
739
  * Format: uuid
740
740
  * @description Environment owner
@@ -742,23 +742,23 @@ interface operations {
742
742
  owner?: string;
743
743
  /**
744
744
  * Format: date-time
745
- * @description Timestamp when the resource was created.
745
+ * @description Timestamp when the environment was created.
746
746
  */
747
- created_at?: string;
747
+ createdAt?: string;
748
748
  /** @description Additional metadata associated with the environment. */
749
749
  metadata?: {
750
750
  [key: string]: unknown;
751
751
  };
752
752
  /**
753
753
  * Format: date-time
754
- * @description Timestamp when the resource was updated.
754
+ * @description Timestamp when the environment was last updated.
755
755
  */
756
- updated_at?: string;
756
+ updatedAt?: string;
757
757
  /**
758
758
  * Format: date-time
759
759
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
760
760
  */
761
- deleted_at?: string | null;
761
+ deletedAt?: string | null;
762
762
  }[];
763
763
  /**
764
764
  * @description Specifies the version of the schema used for the definition.
@@ -899,7 +899,7 @@ interface operations {
899
899
  id: string;
900
900
  /**
901
901
  * @description Specifies the version of the schema to which the environment conforms.
902
- * @default environments.meshery.io/v1beta1
902
+ * @default environments.meshery.io/v1beta3
903
903
  * @example [
904
904
  * "v1",
905
905
  * "v1alpha1",
@@ -918,7 +918,7 @@ interface operations {
918
918
  * Format: uuid
919
919
  * @description Environment organization ID
920
920
  */
921
- organization_id: string;
921
+ organizationId: string;
922
922
  /**
923
923
  * Format: uuid
924
924
  * @description Environment owner
@@ -926,23 +926,23 @@ interface operations {
926
926
  owner?: string;
927
927
  /**
928
928
  * Format: date-time
929
- * @description Timestamp when the resource was created.
929
+ * @description Timestamp when the environment was created.
930
930
  */
931
- created_at?: string;
931
+ createdAt?: string;
932
932
  /** @description Additional metadata associated with the environment. */
933
933
  metadata?: {
934
934
  [key: string]: unknown;
935
935
  };
936
936
  /**
937
937
  * Format: date-time
938
- * @description Timestamp when the resource was updated.
938
+ * @description Timestamp when the environment was last updated.
939
939
  */
940
- updated_at?: string;
940
+ updatedAt?: string;
941
941
  /**
942
942
  * Format: date-time
943
943
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
944
944
  */
945
- deleted_at?: string | null;
945
+ deletedAt?: string | null;
946
946
  }[];
947
947
  /**
948
948
  * @description Specifies the version of the schema used for the definition.
@@ -1049,7 +1049,7 @@ interface operations {
1049
1049
  id: string;
1050
1050
  /**
1051
1051
  * @description Specifies the version of the schema to which the environment conforms.
1052
- * @default environments.meshery.io/v1beta1
1052
+ * @default environments.meshery.io/v1beta3
1053
1053
  * @example [
1054
1054
  * "v1",
1055
1055
  * "v1alpha1",
@@ -1068,7 +1068,7 @@ interface operations {
1068
1068
  * Format: uuid
1069
1069
  * @description Environment organization ID
1070
1070
  */
1071
- organization_id: string;
1071
+ organizationId: string;
1072
1072
  /**
1073
1073
  * Format: uuid
1074
1074
  * @description Environment owner
@@ -1076,23 +1076,23 @@ interface operations {
1076
1076
  owner?: string;
1077
1077
  /**
1078
1078
  * Format: date-time
1079
- * @description Timestamp when the resource was created.
1079
+ * @description Timestamp when the environment was created.
1080
1080
  */
1081
- created_at?: string;
1081
+ createdAt?: string;
1082
1082
  /** @description Additional metadata associated with the environment. */
1083
1083
  metadata?: {
1084
1084
  [key: string]: unknown;
1085
1085
  };
1086
1086
  /**
1087
1087
  * Format: date-time
1088
- * @description Timestamp when the resource was updated.
1088
+ * @description Timestamp when the environment was last updated.
1089
1089
  */
1090
- updated_at?: string;
1090
+ updatedAt?: string;
1091
1091
  /**
1092
1092
  * Format: date-time
1093
1093
  * @description Timestamp when the environment was soft deleted. Null while the environment remains active.
1094
1094
  */
1095
- deleted_at?: string | null;
1095
+ deletedAt?: string | null;
1096
1096
  }[];
1097
1097
  /**
1098
1098
  * @description Specifies the version of the schema used for the definition.