@kubun/protocol 0.2.0 → 0.2.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.
@@ -42,6 +42,11 @@ export declare const validateDocumentModel: import("@enkaku/schema").Validator<{
42
42
  min?: number | undefined;
43
43
  max?: number | undefined;
44
44
  type: "number";
45
+ } | {
46
+ default?: string | undefined;
47
+ type: "string";
48
+ const: string;
49
+ title: string;
45
50
  } | {
46
51
  maxLength?: number | undefined;
47
52
  minLength?: number | undefined;
@@ -55,9 +60,15 @@ export declare const validateDocumentModel: import("@enkaku/schema").Validator<{
55
60
  enum: string[];
56
61
  title: string;
57
62
  } | {
63
+ maxLength?: number | undefined;
64
+ minLength?: number | undefined;
65
+ title?: string | undefined;
66
+ default?: string | undefined;
58
67
  type: "string";
59
68
  format: "date" | "date-time" | "duration" | "time" | "uri";
60
69
  } | {
70
+ maxItems?: number | undefined;
71
+ minItems?: number | undefined;
61
72
  uniqueItems?: boolean | undefined;
62
73
  type: "array";
63
74
  items: {
@@ -110,6 +121,11 @@ export declare const validateDocumentModel: import("@enkaku/schema").Validator<{
110
121
  min?: number | undefined;
111
122
  max?: number | undefined;
112
123
  type: "number";
124
+ } | {
125
+ default?: string | undefined;
126
+ type: "string";
127
+ const: string;
128
+ title: string;
113
129
  } | {
114
130
  maxLength?: number | undefined;
115
131
  minLength?: number | undefined;
@@ -123,9 +139,15 @@ export declare const validateDocumentModel: import("@enkaku/schema").Validator<{
123
139
  enum: string[];
124
140
  title: string;
125
141
  } | {
142
+ maxLength?: number | undefined;
143
+ minLength?: number | undefined;
144
+ title?: string | undefined;
145
+ default?: string | undefined;
126
146
  type: "string";
127
147
  format: "date" | "date-time" | "duration" | "time" | "uri";
128
148
  } | {
149
+ maxItems?: number | undefined;
150
+ minItems?: number | undefined;
129
151
  uniqueItems?: boolean | undefined;
130
152
  type: "array";
131
153
  items: {
@@ -178,6 +200,11 @@ export declare const validateDocumentModel: import("@enkaku/schema").Validator<{
178
200
  min?: number | undefined;
179
201
  max?: number | undefined;
180
202
  type: "number";
203
+ } | {
204
+ default?: string | undefined;
205
+ type: "string";
206
+ const: string;
207
+ title: string;
181
208
  } | {
182
209
  maxLength?: number | undefined;
183
210
  minLength?: number | undefined;
@@ -191,9 +218,15 @@ export declare const validateDocumentModel: import("@enkaku/schema").Validator<{
191
218
  enum: string[];
192
219
  title: string;
193
220
  } | {
221
+ maxLength?: number | undefined;
222
+ minLength?: number | undefined;
223
+ title?: string | undefined;
224
+ default?: string | undefined;
194
225
  type: "string";
195
226
  format: "date" | "date-time" | "duration" | "time" | "uri";
196
227
  } | {
228
+ maxItems?: number | undefined;
229
+ minItems?: number | undefined;
197
230
  uniqueItems?: boolean | undefined;
198
231
  type: "array";
199
232
  items: {
@@ -316,6 +349,25 @@ export declare const clusterModel: {
316
349
  readonly additionalProperties: false;
317
350
  }, {
318
351
  readonly anyOf: readonly [{
352
+ readonly type: "object";
353
+ readonly properties: {
354
+ readonly type: {
355
+ readonly type: "string";
356
+ readonly const: "string";
357
+ };
358
+ readonly title: {
359
+ readonly type: "string";
360
+ };
361
+ readonly const: {
362
+ readonly type: "string";
363
+ };
364
+ readonly default: {
365
+ readonly type: "string";
366
+ };
367
+ };
368
+ readonly required: readonly ["type", "title", "const"];
369
+ readonly additionalProperties: false;
370
+ }, {
319
371
  readonly type: "object";
320
372
  readonly properties: {
321
373
  readonly type: {
@@ -375,6 +427,18 @@ export declare const clusterModel: {
375
427
  readonly type: "string";
376
428
  readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
377
429
  };
430
+ readonly title: {
431
+ readonly type: "string";
432
+ };
433
+ readonly default: {
434
+ readonly type: "string";
435
+ };
436
+ readonly minLength: {
437
+ readonly type: "integer";
438
+ };
439
+ readonly maxLength: {
440
+ readonly type: "integer";
441
+ };
378
442
  };
379
443
  readonly required: readonly ["type", "format"];
380
444
  readonly additionalProperties: false;
@@ -405,6 +469,12 @@ export declare const clusterModel: {
405
469
  readonly uniqueItems: {
406
470
  readonly type: "boolean";
407
471
  };
472
+ readonly minItems: {
473
+ readonly type: "integer";
474
+ };
475
+ readonly maxItems: {
476
+ readonly type: "integer";
477
+ };
408
478
  };
409
479
  readonly required: readonly ["type", "title", "items"];
410
480
  readonly additionalProperties: false;
@@ -584,6 +654,25 @@ export declare const clusterModel: {
584
654
  readonly additionalProperties: false;
585
655
  }, {
586
656
  readonly anyOf: readonly [{
657
+ readonly type: "object";
658
+ readonly properties: {
659
+ readonly type: {
660
+ readonly type: "string";
661
+ readonly const: "string";
662
+ };
663
+ readonly title: {
664
+ readonly type: "string";
665
+ };
666
+ readonly const: {
667
+ readonly type: "string";
668
+ };
669
+ readonly default: {
670
+ readonly type: "string";
671
+ };
672
+ };
673
+ readonly required: readonly ["type", "title", "const"];
674
+ readonly additionalProperties: false;
675
+ }, {
587
676
  readonly type: "object";
588
677
  readonly properties: {
589
678
  readonly type: {
@@ -643,6 +732,18 @@ export declare const clusterModel: {
643
732
  readonly type: "string";
644
733
  readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
645
734
  };
735
+ readonly title: {
736
+ readonly type: "string";
737
+ };
738
+ readonly default: {
739
+ readonly type: "string";
740
+ };
741
+ readonly minLength: {
742
+ readonly type: "integer";
743
+ };
744
+ readonly maxLength: {
745
+ readonly type: "integer";
746
+ };
646
747
  };
647
748
  readonly required: readonly ["type", "format"];
648
749
  readonly additionalProperties: false;
@@ -673,6 +774,12 @@ export declare const clusterModel: {
673
774
  readonly uniqueItems: {
674
775
  readonly type: "boolean";
675
776
  };
777
+ readonly minItems: {
778
+ readonly type: "integer";
779
+ };
780
+ readonly maxItems: {
781
+ readonly type: "integer";
782
+ };
676
783
  };
677
784
  readonly required: readonly ["type", "title", "items"];
678
785
  readonly additionalProperties: false;
@@ -858,6 +965,25 @@ export declare const clusterModel: {
858
965
  readonly additionalProperties: false;
859
966
  }, {
860
967
  readonly anyOf: readonly [{
968
+ readonly type: "object";
969
+ readonly properties: {
970
+ readonly type: {
971
+ readonly type: "string";
972
+ readonly const: "string";
973
+ };
974
+ readonly title: {
975
+ readonly type: "string";
976
+ };
977
+ readonly const: {
978
+ readonly type: "string";
979
+ };
980
+ readonly default: {
981
+ readonly type: "string";
982
+ };
983
+ };
984
+ readonly required: readonly ["type", "title", "const"];
985
+ readonly additionalProperties: false;
986
+ }, {
861
987
  readonly type: "object";
862
988
  readonly properties: {
863
989
  readonly type: {
@@ -917,6 +1043,18 @@ export declare const clusterModel: {
917
1043
  readonly type: "string";
918
1044
  readonly enum: readonly ["date", "date-time", "duration", "time", "uri"];
919
1045
  };
1046
+ readonly title: {
1047
+ readonly type: "string";
1048
+ };
1049
+ readonly default: {
1050
+ readonly type: "string";
1051
+ };
1052
+ readonly minLength: {
1053
+ readonly type: "integer";
1054
+ };
1055
+ readonly maxLength: {
1056
+ readonly type: "integer";
1057
+ };
920
1058
  };
921
1059
  readonly required: readonly ["type", "format"];
922
1060
  readonly additionalProperties: false;
@@ -947,6 +1085,12 @@ export declare const clusterModel: {
947
1085
  readonly uniqueItems: {
948
1086
  readonly type: "boolean";
949
1087
  };
1088
+ readonly minItems: {
1089
+ readonly type: "integer";
1090
+ };
1091
+ readonly maxItems: {
1092
+ readonly type: "integer";
1093
+ };
950
1094
  };
951
1095
  readonly required: readonly ["type", "title", "items"];
952
1096
  readonly additionalProperties: false;
@@ -1091,6 +1235,11 @@ export declare const validateClusterModel: import("@enkaku/schema").Validator<{
1091
1235
  min?: number | undefined;
1092
1236
  max?: number | undefined;
1093
1237
  type: "number";
1238
+ } | {
1239
+ default?: string | undefined;
1240
+ type: "string";
1241
+ const: string;
1242
+ title: string;
1094
1243
  } | {
1095
1244
  maxLength?: number | undefined;
1096
1245
  minLength?: number | undefined;
@@ -1104,9 +1253,15 @@ export declare const validateClusterModel: import("@enkaku/schema").Validator<{
1104
1253
  enum: string[];
1105
1254
  title: string;
1106
1255
  } | {
1256
+ maxLength?: number | undefined;
1257
+ minLength?: number | undefined;
1258
+ title?: string | undefined;
1259
+ default?: string | undefined;
1107
1260
  type: "string";
1108
1261
  format: "date" | "date-time" | "duration" | "time" | "uri";
1109
1262
  } | {
1263
+ maxItems?: number | undefined;
1264
+ minItems?: number | undefined;
1110
1265
  uniqueItems?: boolean | undefined;
1111
1266
  type: "array";
1112
1267
  items: {
@@ -1159,6 +1314,11 @@ export declare const validateClusterModel: import("@enkaku/schema").Validator<{
1159
1314
  min?: number | undefined;
1160
1315
  max?: number | undefined;
1161
1316
  type: "number";
1317
+ } | {
1318
+ default?: string | undefined;
1319
+ type: "string";
1320
+ const: string;
1321
+ title: string;
1162
1322
  } | {
1163
1323
  maxLength?: number | undefined;
1164
1324
  minLength?: number | undefined;
@@ -1172,9 +1332,15 @@ export declare const validateClusterModel: import("@enkaku/schema").Validator<{
1172
1332
  enum: string[];
1173
1333
  title: string;
1174
1334
  } | {
1335
+ maxLength?: number | undefined;
1336
+ minLength?: number | undefined;
1337
+ title?: string | undefined;
1338
+ default?: string | undefined;
1175
1339
  type: "string";
1176
1340
  format: "date" | "date-time" | "duration" | "time" | "uri";
1177
1341
  } | {
1342
+ maxItems?: number | undefined;
1343
+ minItems?: number | undefined;
1178
1344
  uniqueItems?: boolean | undefined;
1179
1345
  type: "array";
1180
1346
  items: {
@@ -1227,6 +1393,11 @@ export declare const validateClusterModel: import("@enkaku/schema").Validator<{
1227
1393
  min?: number | undefined;
1228
1394
  max?: number | undefined;
1229
1395
  type: "number";
1396
+ } | {
1397
+ default?: string | undefined;
1398
+ type: "string";
1399
+ const: string;
1400
+ title: string;
1230
1401
  } | {
1231
1402
  maxLength?: number | undefined;
1232
1403
  minLength?: number | undefined;
@@ -1240,9 +1411,15 @@ export declare const validateClusterModel: import("@enkaku/schema").Validator<{
1240
1411
  enum: string[];
1241
1412
  title: string;
1242
1413
  } | {
1414
+ maxLength?: number | undefined;
1415
+ minLength?: number | undefined;
1416
+ title?: string | undefined;
1417
+ default?: string | undefined;
1243
1418
  type: "string";
1244
1419
  format: "date" | "date-time" | "duration" | "time" | "uri";
1245
1420
  } | {
1421
+ maxItems?: number | undefined;
1422
+ minItems?: number | undefined;
1246
1423
  uniqueItems?: boolean | undefined;
1247
1424
  type: "array";
1248
1425
  items: {
@@ -1 +1 @@
1
- {"version":3,"file":"cluster.d.ts","sourceRoot":"","sources":["../../src/models/cluster.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cluster.d.ts","sourceRoot":"","sources":["../../src/models/cluster.ts"],"names":[],"mappings":"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"}