@meshery/schemas 0.8.134 → 0.8.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{Core-BiYtFM4v.d.mts → Core-B0SJO-By.d.mts} +4 -1
- package/dist/{Core-BiYtFM4v.d.ts → Core-B0SJO-By.d.ts} +4 -1
- package/dist/constructs/v1alpha1/core/Core.d.mts +1 -1
- package/dist/constructs/v1alpha1/core/Core.d.ts +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.js +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta1/component/Component.d.mts +8 -2
- package/dist/constructs/v1beta1/component/Component.d.ts +8 -2
- package/dist/constructs/v1beta1/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta1/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta1/connection/Connection.d.mts +48 -12
- package/dist/constructs/v1beta1/connection/Connection.d.ts +48 -12
- package/dist/constructs/v1beta1/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta1/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta1/credential/Credential.d.mts +32 -8
- package/dist/constructs/v1beta1/credential/Credential.d.ts +32 -8
- package/dist/constructs/v1beta1/credential/CredentialSchema.js +8 -8
- package/dist/constructs/v1beta1/credential/CredentialSchema.mjs +8 -8
- package/dist/constructs/v1beta1/environment/Environment.d.mts +20 -5
- package/dist/constructs/v1beta1/environment/Environment.d.ts +20 -5
- package/dist/constructs/v1beta1/environment/EnvironmentSchema.js +1 -1
- package/dist/constructs/v1beta1/environment/EnvironmentSchema.mjs +1 -1
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.mts +32 -8
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.ts +32 -8
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.js +4 -4
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +4 -4
- package/dist/constructs/v1beta1/key/Key.d.mts +24 -6
- package/dist/constructs/v1beta1/key/Key.d.ts +24 -6
- package/dist/constructs/v1beta1/key/KeySchema.js +1 -1
- package/dist/constructs/v1beta1/key/KeySchema.mjs +1 -1
- package/dist/constructs/v1beta1/keychain/Keychain.d.mts +28 -7
- package/dist/constructs/v1beta1/keychain/Keychain.d.ts +28 -7
- package/dist/constructs/v1beta1/keychain/KeychainSchema.js +1 -1
- package/dist/constructs/v1beta1/keychain/KeychainSchema.mjs +1 -1
- package/dist/constructs/v1beta1/model/Model.d.mts +8 -2
- package/dist/constructs/v1beta1/model/Model.d.ts +8 -2
- package/dist/constructs/v1beta1/model/ModelSchema.js +1 -1
- package/dist/constructs/v1beta1/model/ModelSchema.mjs +1 -1
- package/dist/constructs/v1beta1/pattern/Pattern.d.mts +72 -18
- package/dist/constructs/v1beta1/pattern/Pattern.d.ts +72 -18
- package/dist/constructs/v1beta1/pattern/PatternSchema.js +9 -9
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +9 -9
- package/dist/constructs/v1beta1/role/Role.d.mts +36 -9
- package/dist/constructs/v1beta1/role/Role.d.ts +36 -9
- package/dist/constructs/v1beta1/role/RoleSchema.js +1 -1
- package/dist/constructs/v1beta1/role/RoleSchema.mjs +1 -1
- package/dist/constructs/v1beta1/team/Team.d.mts +44 -11
- package/dist/constructs/v1beta1/team/Team.d.ts +44 -11
- package/dist/constructs/v1beta1/team/TeamSchema.js +1 -1
- package/dist/constructs/v1beta1/team/TeamSchema.mjs +1 -1
- package/dist/constructs/v1beta1/workspace/Workspace.d.mts +24 -6
- package/dist/constructs/v1beta1/workspace/Workspace.d.ts +24 -6
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.js +3 -3
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.mjs +3 -3
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +13 -13
- package/dist/index.mjs +13 -13
- package/package.json +1 -1
|
@@ -72,7 +72,10 @@ interface components {
|
|
|
72
72
|
created_at?: string;
|
|
73
73
|
/** Format: date-time */
|
|
74
74
|
updated_at?: string;
|
|
75
|
-
/**
|
|
75
|
+
/**
|
|
76
|
+
* Format: date-time
|
|
77
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
78
|
+
*/
|
|
76
79
|
deleted_at?: string;
|
|
77
80
|
/** @description Associated environments for this connection */
|
|
78
81
|
environments?: {
|
|
@@ -122,7 +125,10 @@ interface components {
|
|
|
122
125
|
* @description Timestamp when the resource was updated.
|
|
123
126
|
*/
|
|
124
127
|
updated_at?: string;
|
|
125
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* Format: date-time
|
|
130
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
131
|
+
*/
|
|
126
132
|
deleted_at?: string | null;
|
|
127
133
|
}[];
|
|
128
134
|
/**
|
|
@@ -179,7 +185,10 @@ interface components {
|
|
|
179
185
|
created_at?: string;
|
|
180
186
|
/** Format: date-time */
|
|
181
187
|
updated_at?: string;
|
|
182
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Format: date-time
|
|
190
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
191
|
+
*/
|
|
183
192
|
deleted_at?: string;
|
|
184
193
|
/** @description Associated environments for this connection */
|
|
185
194
|
environments?: {
|
|
@@ -229,7 +238,10 @@ interface components {
|
|
|
229
238
|
* @description Timestamp when the resource was updated.
|
|
230
239
|
*/
|
|
231
240
|
updated_at?: string;
|
|
232
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* Format: date-time
|
|
243
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
244
|
+
*/
|
|
233
245
|
deleted_at?: string | null;
|
|
234
246
|
}[];
|
|
235
247
|
/**
|
|
@@ -460,7 +472,10 @@ interface operations {
|
|
|
460
472
|
created_at?: string;
|
|
461
473
|
/** Format: date-time */
|
|
462
474
|
updated_at?: string;
|
|
463
|
-
/**
|
|
475
|
+
/**
|
|
476
|
+
* Format: date-time
|
|
477
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
478
|
+
*/
|
|
464
479
|
deleted_at?: string;
|
|
465
480
|
/** @description Associated environments for this connection */
|
|
466
481
|
environments?: {
|
|
@@ -510,7 +525,10 @@ interface operations {
|
|
|
510
525
|
* @description Timestamp when the resource was updated.
|
|
511
526
|
*/
|
|
512
527
|
updated_at?: string;
|
|
513
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* Format: date-time
|
|
530
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
531
|
+
*/
|
|
514
532
|
deleted_at?: string | null;
|
|
515
533
|
}[];
|
|
516
534
|
/**
|
|
@@ -587,7 +605,10 @@ interface operations {
|
|
|
587
605
|
created_at?: string;
|
|
588
606
|
/** Format: date-time */
|
|
589
607
|
updated_at?: string;
|
|
590
|
-
/**
|
|
608
|
+
/**
|
|
609
|
+
* Format: date-time
|
|
610
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
611
|
+
*/
|
|
591
612
|
deleted_at?: string;
|
|
592
613
|
/** @description Associated environments for this connection */
|
|
593
614
|
environments?: {
|
|
@@ -637,7 +658,10 @@ interface operations {
|
|
|
637
658
|
* @description Timestamp when the resource was updated.
|
|
638
659
|
*/
|
|
639
660
|
updated_at?: string;
|
|
640
|
-
/**
|
|
661
|
+
/**
|
|
662
|
+
* Format: date-time
|
|
663
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
664
|
+
*/
|
|
641
665
|
deleted_at?: string | null;
|
|
642
666
|
}[];
|
|
643
667
|
/**
|
|
@@ -745,7 +769,10 @@ interface operations {
|
|
|
745
769
|
created_at?: string;
|
|
746
770
|
/** Format: date-time */
|
|
747
771
|
updated_at?: string;
|
|
748
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* Format: date-time
|
|
774
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
775
|
+
*/
|
|
749
776
|
deleted_at?: string;
|
|
750
777
|
/** @description Associated environments for this connection */
|
|
751
778
|
environments?: {
|
|
@@ -795,7 +822,10 @@ interface operations {
|
|
|
795
822
|
* @description Timestamp when the resource was updated.
|
|
796
823
|
*/
|
|
797
824
|
updated_at?: string;
|
|
798
|
-
/**
|
|
825
|
+
/**
|
|
826
|
+
* Format: date-time
|
|
827
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
828
|
+
*/
|
|
799
829
|
deleted_at?: string | null;
|
|
800
830
|
}[];
|
|
801
831
|
/**
|
|
@@ -869,7 +899,10 @@ interface operations {
|
|
|
869
899
|
created_at?: string;
|
|
870
900
|
/** Format: date-time */
|
|
871
901
|
updated_at?: string;
|
|
872
|
-
/**
|
|
902
|
+
/**
|
|
903
|
+
* Format: date-time
|
|
904
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
905
|
+
*/
|
|
873
906
|
deleted_at?: string;
|
|
874
907
|
/** @description Associated environments for this connection */
|
|
875
908
|
environments?: {
|
|
@@ -919,7 +952,10 @@ interface operations {
|
|
|
919
952
|
* @description Timestamp when the resource was updated.
|
|
920
953
|
*/
|
|
921
954
|
updated_at?: string;
|
|
922
|
-
/**
|
|
955
|
+
/**
|
|
956
|
+
* Format: date-time
|
|
957
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
958
|
+
*/
|
|
923
959
|
deleted_at?: string | null;
|
|
924
960
|
}[];
|
|
925
961
|
/**
|
|
@@ -72,7 +72,10 @@ interface components {
|
|
|
72
72
|
created_at?: string;
|
|
73
73
|
/** Format: date-time */
|
|
74
74
|
updated_at?: string;
|
|
75
|
-
/**
|
|
75
|
+
/**
|
|
76
|
+
* Format: date-time
|
|
77
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
78
|
+
*/
|
|
76
79
|
deleted_at?: string;
|
|
77
80
|
/** @description Associated environments for this connection */
|
|
78
81
|
environments?: {
|
|
@@ -122,7 +125,10 @@ interface components {
|
|
|
122
125
|
* @description Timestamp when the resource was updated.
|
|
123
126
|
*/
|
|
124
127
|
updated_at?: string;
|
|
125
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* Format: date-time
|
|
130
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
131
|
+
*/
|
|
126
132
|
deleted_at?: string | null;
|
|
127
133
|
}[];
|
|
128
134
|
/**
|
|
@@ -179,7 +185,10 @@ interface components {
|
|
|
179
185
|
created_at?: string;
|
|
180
186
|
/** Format: date-time */
|
|
181
187
|
updated_at?: string;
|
|
182
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Format: date-time
|
|
190
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
191
|
+
*/
|
|
183
192
|
deleted_at?: string;
|
|
184
193
|
/** @description Associated environments for this connection */
|
|
185
194
|
environments?: {
|
|
@@ -229,7 +238,10 @@ interface components {
|
|
|
229
238
|
* @description Timestamp when the resource was updated.
|
|
230
239
|
*/
|
|
231
240
|
updated_at?: string;
|
|
232
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* Format: date-time
|
|
243
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
244
|
+
*/
|
|
233
245
|
deleted_at?: string | null;
|
|
234
246
|
}[];
|
|
235
247
|
/**
|
|
@@ -460,7 +472,10 @@ interface operations {
|
|
|
460
472
|
created_at?: string;
|
|
461
473
|
/** Format: date-time */
|
|
462
474
|
updated_at?: string;
|
|
463
|
-
/**
|
|
475
|
+
/**
|
|
476
|
+
* Format: date-time
|
|
477
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
478
|
+
*/
|
|
464
479
|
deleted_at?: string;
|
|
465
480
|
/** @description Associated environments for this connection */
|
|
466
481
|
environments?: {
|
|
@@ -510,7 +525,10 @@ interface operations {
|
|
|
510
525
|
* @description Timestamp when the resource was updated.
|
|
511
526
|
*/
|
|
512
527
|
updated_at?: string;
|
|
513
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* Format: date-time
|
|
530
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
531
|
+
*/
|
|
514
532
|
deleted_at?: string | null;
|
|
515
533
|
}[];
|
|
516
534
|
/**
|
|
@@ -587,7 +605,10 @@ interface operations {
|
|
|
587
605
|
created_at?: string;
|
|
588
606
|
/** Format: date-time */
|
|
589
607
|
updated_at?: string;
|
|
590
|
-
/**
|
|
608
|
+
/**
|
|
609
|
+
* Format: date-time
|
|
610
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
611
|
+
*/
|
|
591
612
|
deleted_at?: string;
|
|
592
613
|
/** @description Associated environments for this connection */
|
|
593
614
|
environments?: {
|
|
@@ -637,7 +658,10 @@ interface operations {
|
|
|
637
658
|
* @description Timestamp when the resource was updated.
|
|
638
659
|
*/
|
|
639
660
|
updated_at?: string;
|
|
640
|
-
/**
|
|
661
|
+
/**
|
|
662
|
+
* Format: date-time
|
|
663
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
664
|
+
*/
|
|
641
665
|
deleted_at?: string | null;
|
|
642
666
|
}[];
|
|
643
667
|
/**
|
|
@@ -745,7 +769,10 @@ interface operations {
|
|
|
745
769
|
created_at?: string;
|
|
746
770
|
/** Format: date-time */
|
|
747
771
|
updated_at?: string;
|
|
748
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* Format: date-time
|
|
774
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
775
|
+
*/
|
|
749
776
|
deleted_at?: string;
|
|
750
777
|
/** @description Associated environments for this connection */
|
|
751
778
|
environments?: {
|
|
@@ -795,7 +822,10 @@ interface operations {
|
|
|
795
822
|
* @description Timestamp when the resource was updated.
|
|
796
823
|
*/
|
|
797
824
|
updated_at?: string;
|
|
798
|
-
/**
|
|
825
|
+
/**
|
|
826
|
+
* Format: date-time
|
|
827
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
828
|
+
*/
|
|
799
829
|
deleted_at?: string | null;
|
|
800
830
|
}[];
|
|
801
831
|
/**
|
|
@@ -869,7 +899,10 @@ interface operations {
|
|
|
869
899
|
created_at?: string;
|
|
870
900
|
/** Format: date-time */
|
|
871
901
|
updated_at?: string;
|
|
872
|
-
/**
|
|
902
|
+
/**
|
|
903
|
+
* Format: date-time
|
|
904
|
+
* @description SQL null Timestamp to handle null values of time.
|
|
905
|
+
*/
|
|
873
906
|
deleted_at?: string;
|
|
874
907
|
/** @description Associated environments for this connection */
|
|
875
908
|
environments?: {
|
|
@@ -919,7 +952,10 @@ interface operations {
|
|
|
919
952
|
* @description Timestamp when the resource was updated.
|
|
920
953
|
*/
|
|
921
954
|
updated_at?: string;
|
|
922
|
-
/**
|
|
955
|
+
/**
|
|
956
|
+
* Format: date-time
|
|
957
|
+
* @description Timestamp when the environment was soft deleted. Null while the environment remains active.
|
|
958
|
+
*/
|
|
923
959
|
deleted_at?: string | null;
|
|
924
960
|
}[];
|
|
925
961
|
/**
|