@meshery/schemas 1.3.45 → 1.3.46
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/constructs/v1beta2/design/Design.d.ts +96 -48
- package/dist/constructs/v1beta2/design/DesignSchema.js +96 -48
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +96 -48
- package/dist/constructs/v1beta2/relationship/Relationship.d.ts +34 -17
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.js +34 -17
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.mjs +34 -17
- package/dist/constructs/v1beta3/design/Design.d.ts +8 -4
- package/dist/constructs/v1beta3/design/DesignSchema.js +8 -4
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +8 -4
- package/dist/constructs/v1beta3/relationship/Relationship.d.ts +685 -100
- package/dist/constructs/v1beta3/relationship/RelationshipSchema.js +468 -18
- package/dist/constructs/v1beta3/relationship/RelationshipSchema.mjs +468 -18
- package/dist/index.d.mts +74 -37
- package/dist/index.d.ts +74 -37
- package/dist/index.js +131 -66
- package/dist/index.mjs +131 -66
- package/package.json +1 -1
|
@@ -311,12 +311,13 @@ export interface components {
|
|
|
311
311
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
312
312
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
313
313
|
* remove: Removes a value.
|
|
314
|
+
* replace: Replaces the value at the target location.
|
|
314
315
|
* copy: Copies a value from one location to another.
|
|
315
316
|
* move: Moves a value from one location to another.
|
|
316
317
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
317
318
|
* @enum {string}
|
|
318
319
|
*/
|
|
319
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
320
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
320
321
|
/** @description JSON ref to value from where patch should be applied. */
|
|
321
322
|
mutatorRef?: string[][];
|
|
322
323
|
mutatedRef?: string[][];
|
|
@@ -402,12 +403,13 @@ export interface components {
|
|
|
402
403
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
403
404
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
404
405
|
* remove: Removes a value.
|
|
406
|
+
* replace: Replaces the value at the target location.
|
|
405
407
|
* copy: Copies a value from one location to another.
|
|
406
408
|
* move: Moves a value from one location to another.
|
|
407
409
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
408
410
|
* @enum {string}
|
|
409
411
|
*/
|
|
410
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
412
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
411
413
|
/** @description JSON ref to value from where patch should be applied. */
|
|
412
414
|
mutatorRef?: string[][];
|
|
413
415
|
mutatedRef?: string[][];
|
|
@@ -496,12 +498,13 @@ export interface components {
|
|
|
496
498
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
497
499
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
498
500
|
* remove: Removes a value.
|
|
501
|
+
* replace: Replaces the value at the target location.
|
|
499
502
|
* copy: Copies a value from one location to another.
|
|
500
503
|
* move: Moves a value from one location to another.
|
|
501
504
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
502
505
|
* @enum {string}
|
|
503
506
|
*/
|
|
504
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
507
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
505
508
|
/** @description JSON ref to value from where patch should be applied. */
|
|
506
509
|
mutatorRef?: string[][];
|
|
507
510
|
mutatedRef?: string[][];
|
|
@@ -587,12 +590,13 @@ export interface components {
|
|
|
587
590
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
588
591
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
589
592
|
* remove: Removes a value.
|
|
593
|
+
* replace: Replaces the value at the target location.
|
|
590
594
|
* copy: Copies a value from one location to another.
|
|
591
595
|
* move: Moves a value from one location to another.
|
|
592
596
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
593
597
|
* @enum {string}
|
|
594
598
|
*/
|
|
595
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
599
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
596
600
|
/** @description JSON ref to value from where patch should be applied. */
|
|
597
601
|
mutatorRef?: string[][];
|
|
598
602
|
mutatedRef?: string[][];
|
|
@@ -611,12 +615,13 @@ export interface components {
|
|
|
611
615
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
612
616
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
613
617
|
* remove: Removes a value.
|
|
618
|
+
* replace: Replaces the value at the target location.
|
|
614
619
|
* copy: Copies a value from one location to another.
|
|
615
620
|
* move: Moves a value from one location to another.
|
|
616
621
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
617
622
|
* @enum {string}
|
|
618
623
|
*/
|
|
619
|
-
RelationshipDefinitionSelectorsPatchStrategy: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
624
|
+
RelationshipDefinitionSelectorsPatchStrategy: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
620
625
|
/** @description Patch configuration for the selector */
|
|
621
626
|
RelationshipDefinitionSelectorsPatch: {
|
|
622
627
|
/**
|
|
@@ -626,12 +631,13 @@ export interface components {
|
|
|
626
631
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
627
632
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
628
633
|
* remove: Removes a value.
|
|
634
|
+
* replace: Replaces the value at the target location.
|
|
629
635
|
* copy: Copies a value from one location to another.
|
|
630
636
|
* move: Moves a value from one location to another.
|
|
631
637
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
632
638
|
* @enum {string}
|
|
633
639
|
*/
|
|
634
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
640
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
635
641
|
/** @description JSON ref to value from where patch should be applied. */
|
|
636
642
|
mutatorRef?: string[][];
|
|
637
643
|
mutatedRef?: string[][];
|
|
@@ -760,12 +766,13 @@ export interface components {
|
|
|
760
766
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
761
767
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
762
768
|
* remove: Removes a value.
|
|
769
|
+
* replace: Replaces the value at the target location.
|
|
763
770
|
* copy: Copies a value from one location to another.
|
|
764
771
|
* move: Moves a value from one location to another.
|
|
765
772
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
766
773
|
* @enum {string}
|
|
767
774
|
*/
|
|
768
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
775
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
769
776
|
/** @description JSON ref to value from where patch should be applied. */
|
|
770
777
|
mutatorRef?: string[][];
|
|
771
778
|
mutatedRef?: string[][];
|
|
@@ -853,12 +860,13 @@ export interface components {
|
|
|
853
860
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
854
861
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
855
862
|
* remove: Removes a value.
|
|
863
|
+
* replace: Replaces the value at the target location.
|
|
856
864
|
* copy: Copies a value from one location to another.
|
|
857
865
|
* move: Moves a value from one location to another.
|
|
858
866
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
859
867
|
* @enum {string}
|
|
860
868
|
*/
|
|
861
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
869
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
862
870
|
/** @description JSON ref to value from where patch should be applied. */
|
|
863
871
|
mutatorRef?: string[][];
|
|
864
872
|
mutatedRef?: string[][];
|
|
@@ -944,12 +952,13 @@ export interface components {
|
|
|
944
952
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
945
953
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
946
954
|
* remove: Removes a value.
|
|
955
|
+
* replace: Replaces the value at the target location.
|
|
947
956
|
* copy: Copies a value from one location to another.
|
|
948
957
|
* move: Moves a value from one location to another.
|
|
949
958
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
950
959
|
* @enum {string}
|
|
951
960
|
*/
|
|
952
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
961
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
953
962
|
/** @description JSON ref to value from where patch should be applied. */
|
|
954
963
|
mutatorRef?: string[][];
|
|
955
964
|
mutatedRef?: string[][];
|
|
@@ -1040,12 +1049,13 @@ export interface components {
|
|
|
1040
1049
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1041
1050
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1042
1051
|
* remove: Removes a value.
|
|
1052
|
+
* replace: Replaces the value at the target location.
|
|
1043
1053
|
* copy: Copies a value from one location to another.
|
|
1044
1054
|
* move: Moves a value from one location to another.
|
|
1045
1055
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1046
1056
|
* @enum {string}
|
|
1047
1057
|
*/
|
|
1048
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1058
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1049
1059
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1050
1060
|
mutatorRef?: string[][];
|
|
1051
1061
|
mutatedRef?: string[][];
|
|
@@ -1131,12 +1141,13 @@ export interface components {
|
|
|
1131
1141
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1132
1142
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1133
1143
|
* remove: Removes a value.
|
|
1144
|
+
* replace: Replaces the value at the target location.
|
|
1134
1145
|
* copy: Copies a value from one location to another.
|
|
1135
1146
|
* move: Moves a value from one location to another.
|
|
1136
1147
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1137
1148
|
* @enum {string}
|
|
1138
1149
|
*/
|
|
1139
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1150
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1140
1151
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1141
1152
|
mutatorRef?: string[][];
|
|
1142
1153
|
mutatedRef?: string[][];
|
|
@@ -1225,12 +1236,13 @@ export interface components {
|
|
|
1225
1236
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1226
1237
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1227
1238
|
* remove: Removes a value.
|
|
1239
|
+
* replace: Replaces the value at the target location.
|
|
1228
1240
|
* copy: Copies a value from one location to another.
|
|
1229
1241
|
* move: Moves a value from one location to another.
|
|
1230
1242
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1231
1243
|
* @enum {string}
|
|
1232
1244
|
*/
|
|
1233
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1245
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1234
1246
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1235
1247
|
mutatorRef?: string[][];
|
|
1236
1248
|
mutatedRef?: string[][];
|
|
@@ -1316,12 +1328,13 @@ export interface components {
|
|
|
1316
1328
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1317
1329
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1318
1330
|
* remove: Removes a value.
|
|
1331
|
+
* replace: Replaces the value at the target location.
|
|
1319
1332
|
* copy: Copies a value from one location to another.
|
|
1320
1333
|
* move: Moves a value from one location to another.
|
|
1321
1334
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1322
1335
|
* @enum {string}
|
|
1323
1336
|
*/
|
|
1324
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1337
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1325
1338
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1326
1339
|
mutatorRef?: string[][];
|
|
1327
1340
|
mutatedRef?: string[][];
|
|
@@ -1413,12 +1426,13 @@ export interface components {
|
|
|
1413
1426
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1414
1427
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1415
1428
|
* remove: Removes a value.
|
|
1429
|
+
* replace: Replaces the value at the target location.
|
|
1416
1430
|
* copy: Copies a value from one location to another.
|
|
1417
1431
|
* move: Moves a value from one location to another.
|
|
1418
1432
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1419
1433
|
* @enum {string}
|
|
1420
1434
|
*/
|
|
1421
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1435
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1422
1436
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1423
1437
|
mutatorRef?: string[][];
|
|
1424
1438
|
mutatedRef?: string[][];
|
|
@@ -1504,12 +1518,13 @@ export interface components {
|
|
|
1504
1518
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1505
1519
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1506
1520
|
* remove: Removes a value.
|
|
1521
|
+
* replace: Replaces the value at the target location.
|
|
1507
1522
|
* copy: Copies a value from one location to another.
|
|
1508
1523
|
* move: Moves a value from one location to another.
|
|
1509
1524
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1510
1525
|
* @enum {string}
|
|
1511
1526
|
*/
|
|
1512
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1527
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1513
1528
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1514
1529
|
mutatorRef?: string[][];
|
|
1515
1530
|
mutatedRef?: string[][];
|
|
@@ -1598,12 +1613,13 @@ export interface components {
|
|
|
1598
1613
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1599
1614
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1600
1615
|
* remove: Removes a value.
|
|
1616
|
+
* replace: Replaces the value at the target location.
|
|
1601
1617
|
* copy: Copies a value from one location to another.
|
|
1602
1618
|
* move: Moves a value from one location to another.
|
|
1603
1619
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1604
1620
|
* @enum {string}
|
|
1605
1621
|
*/
|
|
1606
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1622
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1607
1623
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1608
1624
|
mutatorRef?: string[][];
|
|
1609
1625
|
mutatedRef?: string[][];
|
|
@@ -1689,12 +1705,13 @@ export interface components {
|
|
|
1689
1705
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1690
1706
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1691
1707
|
* remove: Removes a value.
|
|
1708
|
+
* replace: Replaces the value at the target location.
|
|
1692
1709
|
* copy: Copies a value from one location to another.
|
|
1693
1710
|
* move: Moves a value from one location to another.
|
|
1694
1711
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1695
1712
|
* @enum {string}
|
|
1696
1713
|
*/
|
|
1697
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1714
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1698
1715
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1699
1716
|
mutatorRef?: string[][];
|
|
1700
1717
|
mutatedRef?: string[][];
|