@kubun/protocol 0.4.0 → 0.5.0
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/lib/index.d.ts +3 -2
- package/lib/index.js +1 -8
- package/lib/models/cluster.d.ts +36 -1
- package/lib/models/cluster.js +1 -132
- package/lib/models/document.d.ts +153 -1
- package/lib/models/document.js +1 -525
- package/lib/models/graph.d.ts +0 -1
- package/lib/models/graph.js +1 -52
- package/lib/models/json-schema.d.ts +0 -1
- package/lib/models/json-schema.js +1 -320
- package/lib/models/value.d.ts +0 -1
- package/lib/models/value.js +1 -16
- package/lib/services/document.d.ts +0 -1
- package/lib/services/document.js +1 -50
- package/lib/services/graph.d.ts +1913 -1660
- package/lib/services/graph.js +1 -239
- package/lib/services/sync.d.ts +182 -0
- package/lib/services/sync.js +1 -0
- package/lib/types.d.ts +0 -1
- package/lib/types.js +1 -1
- package/package.json +6 -6
- package/lib/index.d.ts.map +0 -1
- package/lib/models/cluster.d.ts.map +0 -1
- package/lib/models/document.d.ts.map +0 -1
- package/lib/models/graph.d.ts.map +0 -1
- package/lib/models/json-schema.d.ts.map +0 -1
- package/lib/models/value.d.ts.map +0 -1
- package/lib/services/document.d.ts.map +0 -1
- package/lib/services/graph.d.ts.map +0 -1
- package/lib/types.d.ts.map +0 -1
package/lib/services/graph.d.ts
CHANGED
|
@@ -1,4 +1,32 @@
|
|
|
1
1
|
import type { FromSchema } from '@enkaku/schema';
|
|
2
|
+
export declare const searchModelConfig: {
|
|
3
|
+
readonly type: "object";
|
|
4
|
+
readonly properties: {
|
|
5
|
+
readonly fields: {
|
|
6
|
+
readonly type: "array";
|
|
7
|
+
readonly items: {
|
|
8
|
+
readonly type: "string";
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
readonly additionalProperties: false;
|
|
13
|
+
};
|
|
14
|
+
export declare const searchConfig: {
|
|
15
|
+
readonly type: "object";
|
|
16
|
+
readonly additionalProperties: {
|
|
17
|
+
readonly type: "object";
|
|
18
|
+
readonly properties: {
|
|
19
|
+
readonly fields: {
|
|
20
|
+
readonly type: "array";
|
|
21
|
+
readonly items: {
|
|
22
|
+
readonly type: "string";
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
readonly additionalProperties: false;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export type SearchConfig = FromSchema<typeof searchConfig>;
|
|
2
30
|
export declare const deployGraphParams: {
|
|
3
31
|
readonly type: "object";
|
|
4
32
|
readonly properties: {
|
|
@@ -331,6 +359,9 @@ export declare const deployGraphParams: {
|
|
|
331
359
|
readonly type: "string";
|
|
332
360
|
readonly const: "account";
|
|
333
361
|
};
|
|
362
|
+
readonly searchable: {
|
|
363
|
+
readonly type: "boolean";
|
|
364
|
+
};
|
|
334
365
|
};
|
|
335
366
|
readonly required: readonly ["type"];
|
|
336
367
|
readonly additionalProperties: false;
|
|
@@ -341,6 +372,9 @@ export declare const deployGraphParams: {
|
|
|
341
372
|
readonly type: "string";
|
|
342
373
|
readonly const: "attachment";
|
|
343
374
|
};
|
|
375
|
+
readonly searchable: {
|
|
376
|
+
readonly type: "boolean";
|
|
377
|
+
};
|
|
344
378
|
};
|
|
345
379
|
readonly required: readonly ["type"];
|
|
346
380
|
readonly additionalProperties: false;
|
|
@@ -358,6 +392,9 @@ export declare const deployGraphParams: {
|
|
|
358
392
|
readonly type: "null";
|
|
359
393
|
}];
|
|
360
394
|
};
|
|
395
|
+
readonly searchable: {
|
|
396
|
+
readonly type: "boolean";
|
|
397
|
+
};
|
|
361
398
|
};
|
|
362
399
|
readonly required: readonly ["type", "model"];
|
|
363
400
|
readonly additionalProperties: false;
|
|
@@ -681,6 +718,9 @@ export declare const deployGraphParams: {
|
|
|
681
718
|
readonly type: "string";
|
|
682
719
|
readonly const: "account";
|
|
683
720
|
};
|
|
721
|
+
readonly searchable: {
|
|
722
|
+
readonly type: "boolean";
|
|
723
|
+
};
|
|
684
724
|
};
|
|
685
725
|
readonly required: readonly ["type"];
|
|
686
726
|
readonly additionalProperties: false;
|
|
@@ -691,6 +731,9 @@ export declare const deployGraphParams: {
|
|
|
691
731
|
readonly type: "string";
|
|
692
732
|
readonly const: "attachment";
|
|
693
733
|
};
|
|
734
|
+
readonly searchable: {
|
|
735
|
+
readonly type: "boolean";
|
|
736
|
+
};
|
|
694
737
|
};
|
|
695
738
|
readonly required: readonly ["type"];
|
|
696
739
|
readonly additionalProperties: false;
|
|
@@ -708,6 +751,9 @@ export declare const deployGraphParams: {
|
|
|
708
751
|
readonly type: "null";
|
|
709
752
|
}];
|
|
710
753
|
};
|
|
754
|
+
readonly searchable: {
|
|
755
|
+
readonly type: "boolean";
|
|
756
|
+
};
|
|
711
757
|
};
|
|
712
758
|
readonly required: readonly ["type", "model"];
|
|
713
759
|
readonly additionalProperties: false;
|
|
@@ -1037,6 +1083,9 @@ export declare const deployGraphParams: {
|
|
|
1037
1083
|
readonly type: "string";
|
|
1038
1084
|
readonly const: "account";
|
|
1039
1085
|
};
|
|
1086
|
+
readonly searchable: {
|
|
1087
|
+
readonly type: "boolean";
|
|
1088
|
+
};
|
|
1040
1089
|
};
|
|
1041
1090
|
readonly required: readonly ["type"];
|
|
1042
1091
|
readonly additionalProperties: false;
|
|
@@ -1047,6 +1096,9 @@ export declare const deployGraphParams: {
|
|
|
1047
1096
|
readonly type: "string";
|
|
1048
1097
|
readonly const: "attachment";
|
|
1049
1098
|
};
|
|
1099
|
+
readonly searchable: {
|
|
1100
|
+
readonly type: "boolean";
|
|
1101
|
+
};
|
|
1050
1102
|
};
|
|
1051
1103
|
readonly required: readonly ["type"];
|
|
1052
1104
|
readonly additionalProperties: false;
|
|
@@ -1064,6 +1116,9 @@ export declare const deployGraphParams: {
|
|
|
1064
1116
|
readonly type: "null";
|
|
1065
1117
|
}];
|
|
1066
1118
|
};
|
|
1119
|
+
readonly searchable: {
|
|
1120
|
+
readonly type: "boolean";
|
|
1121
|
+
};
|
|
1067
1122
|
};
|
|
1068
1123
|
readonly required: readonly ["type", "model"];
|
|
1069
1124
|
readonly additionalProperties: false;
|
|
@@ -1097,6 +1152,21 @@ export declare const deployGraphParams: {
|
|
|
1097
1152
|
readonly name: {
|
|
1098
1153
|
readonly type: "string";
|
|
1099
1154
|
};
|
|
1155
|
+
readonly search: {
|
|
1156
|
+
readonly type: "object";
|
|
1157
|
+
readonly additionalProperties: {
|
|
1158
|
+
readonly type: "object";
|
|
1159
|
+
readonly properties: {
|
|
1160
|
+
readonly fields: {
|
|
1161
|
+
readonly type: "array";
|
|
1162
|
+
readonly items: {
|
|
1163
|
+
readonly type: "string";
|
|
1164
|
+
};
|
|
1165
|
+
};
|
|
1166
|
+
};
|
|
1167
|
+
readonly additionalProperties: false;
|
|
1168
|
+
};
|
|
1169
|
+
};
|
|
1100
1170
|
};
|
|
1101
1171
|
readonly required: readonly ["clusters"];
|
|
1102
1172
|
readonly additionalProperties: false;
|
|
@@ -1108,7 +1178,7 @@ export declare const deployGraphResult: {
|
|
|
1108
1178
|
readonly id: {
|
|
1109
1179
|
readonly type: "string";
|
|
1110
1180
|
};
|
|
1111
|
-
readonly
|
|
1181
|
+
readonly record: {
|
|
1112
1182
|
readonly type: "object";
|
|
1113
1183
|
readonly additionalProperties: {
|
|
1114
1184
|
readonly $id: "urn:kubun:protocol:model:document";
|
|
@@ -1426,6 +1496,9 @@ export declare const deployGraphResult: {
|
|
|
1426
1496
|
readonly type: "string";
|
|
1427
1497
|
readonly const: "account";
|
|
1428
1498
|
};
|
|
1499
|
+
readonly searchable: {
|
|
1500
|
+
readonly type: "boolean";
|
|
1501
|
+
};
|
|
1429
1502
|
};
|
|
1430
1503
|
readonly required: readonly ["type"];
|
|
1431
1504
|
readonly additionalProperties: false;
|
|
@@ -1436,6 +1509,9 @@ export declare const deployGraphResult: {
|
|
|
1436
1509
|
readonly type: "string";
|
|
1437
1510
|
readonly const: "attachment";
|
|
1438
1511
|
};
|
|
1512
|
+
readonly searchable: {
|
|
1513
|
+
readonly type: "boolean";
|
|
1514
|
+
};
|
|
1439
1515
|
};
|
|
1440
1516
|
readonly required: readonly ["type"];
|
|
1441
1517
|
readonly additionalProperties: false;
|
|
@@ -1453,6 +1529,9 @@ export declare const deployGraphResult: {
|
|
|
1453
1529
|
readonly type: "null";
|
|
1454
1530
|
}];
|
|
1455
1531
|
};
|
|
1532
|
+
readonly searchable: {
|
|
1533
|
+
readonly type: "boolean";
|
|
1534
|
+
};
|
|
1456
1535
|
};
|
|
1457
1536
|
readonly required: readonly ["type", "model"];
|
|
1458
1537
|
readonly additionalProperties: false;
|
|
@@ -1776,6 +1855,9 @@ export declare const deployGraphResult: {
|
|
|
1776
1855
|
readonly type: "string";
|
|
1777
1856
|
readonly const: "account";
|
|
1778
1857
|
};
|
|
1858
|
+
readonly searchable: {
|
|
1859
|
+
readonly type: "boolean";
|
|
1860
|
+
};
|
|
1779
1861
|
};
|
|
1780
1862
|
readonly required: readonly ["type"];
|
|
1781
1863
|
readonly additionalProperties: false;
|
|
@@ -1786,6 +1868,9 @@ export declare const deployGraphResult: {
|
|
|
1786
1868
|
readonly type: "string";
|
|
1787
1869
|
readonly const: "attachment";
|
|
1788
1870
|
};
|
|
1871
|
+
readonly searchable: {
|
|
1872
|
+
readonly type: "boolean";
|
|
1873
|
+
};
|
|
1789
1874
|
};
|
|
1790
1875
|
readonly required: readonly ["type"];
|
|
1791
1876
|
readonly additionalProperties: false;
|
|
@@ -1803,6 +1888,9 @@ export declare const deployGraphResult: {
|
|
|
1803
1888
|
readonly type: "null";
|
|
1804
1889
|
}];
|
|
1805
1890
|
};
|
|
1891
|
+
readonly searchable: {
|
|
1892
|
+
readonly type: "boolean";
|
|
1893
|
+
};
|
|
1806
1894
|
};
|
|
1807
1895
|
readonly required: readonly ["type", "model"];
|
|
1808
1896
|
readonly additionalProperties: false;
|
|
@@ -2132,6 +2220,9 @@ export declare const deployGraphResult: {
|
|
|
2132
2220
|
readonly type: "string";
|
|
2133
2221
|
readonly const: "account";
|
|
2134
2222
|
};
|
|
2223
|
+
readonly searchable: {
|
|
2224
|
+
readonly type: "boolean";
|
|
2225
|
+
};
|
|
2135
2226
|
};
|
|
2136
2227
|
readonly required: readonly ["type"];
|
|
2137
2228
|
readonly additionalProperties: false;
|
|
@@ -2142,6 +2233,9 @@ export declare const deployGraphResult: {
|
|
|
2142
2233
|
readonly type: "string";
|
|
2143
2234
|
readonly const: "attachment";
|
|
2144
2235
|
};
|
|
2236
|
+
readonly searchable: {
|
|
2237
|
+
readonly type: "boolean";
|
|
2238
|
+
};
|
|
2145
2239
|
};
|
|
2146
2240
|
readonly required: readonly ["type"];
|
|
2147
2241
|
readonly additionalProperties: false;
|
|
@@ -2159,6 +2253,9 @@ export declare const deployGraphResult: {
|
|
|
2159
2253
|
readonly type: "null";
|
|
2160
2254
|
}];
|
|
2161
2255
|
};
|
|
2256
|
+
readonly searchable: {
|
|
2257
|
+
readonly type: "boolean";
|
|
2258
|
+
};
|
|
2162
2259
|
};
|
|
2163
2260
|
readonly required: readonly ["type", "model"];
|
|
2164
2261
|
readonly additionalProperties: false;
|
|
@@ -2171,8 +2268,29 @@ export declare const deployGraphResult: {
|
|
|
2171
2268
|
}];
|
|
2172
2269
|
};
|
|
2173
2270
|
};
|
|
2271
|
+
readonly aliases: {
|
|
2272
|
+
readonly type: "object";
|
|
2273
|
+
readonly additionalProperties: {
|
|
2274
|
+
readonly type: "string";
|
|
2275
|
+
};
|
|
2276
|
+
};
|
|
2277
|
+
readonly search: {
|
|
2278
|
+
readonly type: "object";
|
|
2279
|
+
readonly additionalProperties: {
|
|
2280
|
+
readonly type: "object";
|
|
2281
|
+
readonly properties: {
|
|
2282
|
+
readonly fields: {
|
|
2283
|
+
readonly type: "array";
|
|
2284
|
+
readonly items: {
|
|
2285
|
+
readonly type: "string";
|
|
2286
|
+
};
|
|
2287
|
+
};
|
|
2288
|
+
};
|
|
2289
|
+
readonly additionalProperties: false;
|
|
2290
|
+
};
|
|
2291
|
+
};
|
|
2174
2292
|
};
|
|
2175
|
-
readonly required: readonly ["id", "
|
|
2293
|
+
readonly required: readonly ["id", "record", "aliases"];
|
|
2176
2294
|
readonly additionalProperties: false;
|
|
2177
2295
|
};
|
|
2178
2296
|
export type DeployGraphResult = FromSchema<typeof deployGraphResult>;
|
|
@@ -2214,66 +2332,129 @@ export type LoadGraphParams = FromSchema<typeof loadGraphParams>;
|
|
|
2214
2332
|
export declare const loadGraphResult: {
|
|
2215
2333
|
readonly type: "object";
|
|
2216
2334
|
readonly properties: {
|
|
2217
|
-
readonly
|
|
2218
|
-
readonly
|
|
2219
|
-
|
|
2220
|
-
readonly
|
|
2221
|
-
|
|
2222
|
-
readonly
|
|
2223
|
-
|
|
2224
|
-
readonly
|
|
2225
|
-
readonly
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
readonly
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
readonly
|
|
2335
|
+
readonly record: {
|
|
2336
|
+
readonly type: "object";
|
|
2337
|
+
readonly additionalProperties: {
|
|
2338
|
+
readonly $id: "urn:kubun:protocol:model:document";
|
|
2339
|
+
readonly anyOf: readonly [{
|
|
2340
|
+
readonly type: "object";
|
|
2341
|
+
readonly properties: {
|
|
2342
|
+
readonly behavior: {
|
|
2343
|
+
readonly type: "string";
|
|
2344
|
+
readonly const: "default";
|
|
2345
|
+
};
|
|
2346
|
+
readonly name: {
|
|
2347
|
+
readonly type: "string";
|
|
2348
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2349
|
+
};
|
|
2350
|
+
readonly version: {
|
|
2351
|
+
readonly type: "string";
|
|
2352
|
+
readonly const: "1.0";
|
|
2353
|
+
};
|
|
2354
|
+
readonly interfaces: {
|
|
2355
|
+
readonly type: "array";
|
|
2356
|
+
readonly items: {
|
|
2234
2357
|
readonly type: "string";
|
|
2235
|
-
readonly const: "1.0";
|
|
2236
|
-
};
|
|
2237
|
-
readonly interfaces: {
|
|
2238
|
-
readonly type: "array";
|
|
2239
|
-
readonly items: {
|
|
2240
|
-
readonly type: "string";
|
|
2241
|
-
};
|
|
2242
2358
|
};
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2359
|
+
};
|
|
2360
|
+
readonly schema: {
|
|
2361
|
+
readonly type: "object";
|
|
2362
|
+
readonly properties: {
|
|
2363
|
+
readonly $defs: {
|
|
2364
|
+
readonly type: "object";
|
|
2365
|
+
readonly additionalProperties: {
|
|
2366
|
+
readonly anyOf: readonly [{
|
|
2249
2367
|
readonly anyOf: readonly [{
|
|
2368
|
+
readonly type: "object";
|
|
2369
|
+
readonly properties: {
|
|
2370
|
+
readonly type: {
|
|
2371
|
+
readonly type: "string";
|
|
2372
|
+
readonly const: "boolean";
|
|
2373
|
+
};
|
|
2374
|
+
readonly default: {
|
|
2375
|
+
readonly type: "boolean";
|
|
2376
|
+
};
|
|
2377
|
+
};
|
|
2378
|
+
readonly required: readonly ["type"];
|
|
2379
|
+
readonly additionalProperties: false;
|
|
2380
|
+
}, {
|
|
2381
|
+
readonly type: "object";
|
|
2382
|
+
readonly properties: {
|
|
2383
|
+
readonly type: {
|
|
2384
|
+
readonly type: "string";
|
|
2385
|
+
readonly const: "integer";
|
|
2386
|
+
};
|
|
2387
|
+
readonly default: {
|
|
2388
|
+
readonly type: "integer";
|
|
2389
|
+
};
|
|
2390
|
+
readonly minimum: {
|
|
2391
|
+
readonly type: "integer";
|
|
2392
|
+
};
|
|
2393
|
+
readonly maximum: {
|
|
2394
|
+
readonly type: "integer";
|
|
2395
|
+
};
|
|
2396
|
+
};
|
|
2397
|
+
readonly required: readonly ["type"];
|
|
2398
|
+
readonly additionalProperties: false;
|
|
2399
|
+
}, {
|
|
2400
|
+
readonly type: "object";
|
|
2401
|
+
readonly properties: {
|
|
2402
|
+
readonly type: {
|
|
2403
|
+
readonly type: "string";
|
|
2404
|
+
readonly const: "number";
|
|
2405
|
+
};
|
|
2406
|
+
readonly default: {
|
|
2407
|
+
readonly type: "number";
|
|
2408
|
+
};
|
|
2409
|
+
readonly min: {
|
|
2410
|
+
readonly type: "number";
|
|
2411
|
+
};
|
|
2412
|
+
readonly max: {
|
|
2413
|
+
readonly type: "number";
|
|
2414
|
+
};
|
|
2415
|
+
};
|
|
2416
|
+
readonly required: readonly ["type"];
|
|
2417
|
+
readonly additionalProperties: false;
|
|
2418
|
+
}, {
|
|
2250
2419
|
readonly anyOf: readonly [{
|
|
2251
2420
|
readonly type: "object";
|
|
2252
2421
|
readonly properties: {
|
|
2253
2422
|
readonly type: {
|
|
2254
2423
|
readonly type: "string";
|
|
2255
|
-
readonly const: "
|
|
2424
|
+
readonly const: "string";
|
|
2425
|
+
};
|
|
2426
|
+
readonly title: {
|
|
2427
|
+
readonly type: "string";
|
|
2428
|
+
};
|
|
2429
|
+
readonly const: {
|
|
2430
|
+
readonly type: "string";
|
|
2256
2431
|
};
|
|
2257
2432
|
readonly default: {
|
|
2258
|
-
readonly type: "
|
|
2433
|
+
readonly type: "string";
|
|
2259
2434
|
};
|
|
2260
2435
|
};
|
|
2261
|
-
readonly required: readonly ["type"];
|
|
2436
|
+
readonly required: readonly ["type", "const"];
|
|
2262
2437
|
readonly additionalProperties: false;
|
|
2263
2438
|
}, {
|
|
2264
2439
|
readonly type: "object";
|
|
2265
2440
|
readonly properties: {
|
|
2266
2441
|
readonly type: {
|
|
2267
2442
|
readonly type: "string";
|
|
2268
|
-
readonly const: "
|
|
2443
|
+
readonly const: "string";
|
|
2444
|
+
};
|
|
2445
|
+
readonly title: {
|
|
2446
|
+
readonly type: "string";
|
|
2447
|
+
};
|
|
2448
|
+
readonly pattern: {
|
|
2449
|
+
readonly type: "string";
|
|
2269
2450
|
};
|
|
2270
2451
|
readonly default: {
|
|
2271
|
-
readonly type: "
|
|
2452
|
+
readonly type: "string";
|
|
2272
2453
|
};
|
|
2273
|
-
readonly
|
|
2454
|
+
readonly minLength: {
|
|
2274
2455
|
readonly type: "integer";
|
|
2275
2456
|
};
|
|
2276
|
-
readonly
|
|
2457
|
+
readonly maxLength: {
|
|
2277
2458
|
readonly type: "integer";
|
|
2278
2459
|
};
|
|
2279
2460
|
};
|
|
@@ -2284,346 +2465,355 @@ export declare const loadGraphResult: {
|
|
|
2284
2465
|
readonly properties: {
|
|
2285
2466
|
readonly type: {
|
|
2286
2467
|
readonly type: "string";
|
|
2287
|
-
readonly const: "
|
|
2468
|
+
readonly const: "string";
|
|
2288
2469
|
};
|
|
2289
|
-
readonly
|
|
2290
|
-
readonly type: "
|
|
2470
|
+
readonly title: {
|
|
2471
|
+
readonly type: "string";
|
|
2291
2472
|
};
|
|
2292
|
-
readonly
|
|
2293
|
-
readonly type: "
|
|
2473
|
+
readonly enum: {
|
|
2474
|
+
readonly type: "array";
|
|
2475
|
+
readonly items: {
|
|
2476
|
+
readonly type: "string";
|
|
2477
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2478
|
+
};
|
|
2294
2479
|
};
|
|
2295
|
-
readonly
|
|
2296
|
-
readonly type: "
|
|
2480
|
+
readonly default: {
|
|
2481
|
+
readonly type: "string";
|
|
2482
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2297
2483
|
};
|
|
2298
2484
|
};
|
|
2299
|
-
readonly required: readonly ["type"];
|
|
2485
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
2300
2486
|
readonly additionalProperties: false;
|
|
2301
2487
|
}, {
|
|
2302
|
-
readonly
|
|
2303
|
-
|
|
2304
|
-
readonly
|
|
2305
|
-
readonly type:
|
|
2306
|
-
|
|
2307
|
-
readonly const: "string";
|
|
2308
|
-
};
|
|
2309
|
-
readonly title: {
|
|
2310
|
-
readonly type: "string";
|
|
2311
|
-
};
|
|
2312
|
-
readonly const: {
|
|
2313
|
-
readonly type: "string";
|
|
2314
|
-
};
|
|
2315
|
-
readonly default: {
|
|
2316
|
-
readonly type: "string";
|
|
2317
|
-
};
|
|
2488
|
+
readonly type: "object";
|
|
2489
|
+
readonly properties: {
|
|
2490
|
+
readonly type: {
|
|
2491
|
+
readonly type: "string";
|
|
2492
|
+
readonly const: "string";
|
|
2318
2493
|
};
|
|
2319
|
-
readonly
|
|
2320
|
-
readonly additionalProperties: false;
|
|
2321
|
-
}, {
|
|
2322
|
-
readonly type: "object";
|
|
2323
|
-
readonly properties: {
|
|
2324
|
-
readonly type: {
|
|
2325
|
-
readonly type: "string";
|
|
2326
|
-
readonly const: "string";
|
|
2327
|
-
};
|
|
2328
|
-
readonly title: {
|
|
2329
|
-
readonly type: "string";
|
|
2330
|
-
};
|
|
2331
|
-
readonly pattern: {
|
|
2332
|
-
readonly type: "string";
|
|
2333
|
-
};
|
|
2334
|
-
readonly default: {
|
|
2335
|
-
readonly type: "string";
|
|
2336
|
-
};
|
|
2337
|
-
readonly minLength: {
|
|
2338
|
-
readonly type: "integer";
|
|
2339
|
-
};
|
|
2340
|
-
readonly maxLength: {
|
|
2341
|
-
readonly type: "integer";
|
|
2342
|
-
};
|
|
2343
|
-
};
|
|
2344
|
-
readonly required: readonly ["type"];
|
|
2345
|
-
readonly additionalProperties: false;
|
|
2346
|
-
}, {
|
|
2347
|
-
readonly type: "object";
|
|
2348
|
-
readonly properties: {
|
|
2349
|
-
readonly type: {
|
|
2350
|
-
readonly type: "string";
|
|
2351
|
-
readonly const: "string";
|
|
2352
|
-
};
|
|
2353
|
-
readonly title: {
|
|
2354
|
-
readonly type: "string";
|
|
2355
|
-
};
|
|
2356
|
-
readonly enum: {
|
|
2357
|
-
readonly type: "array";
|
|
2358
|
-
readonly items: {
|
|
2359
|
-
readonly type: "string";
|
|
2360
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2361
|
-
};
|
|
2362
|
-
};
|
|
2363
|
-
readonly default: {
|
|
2364
|
-
readonly type: "string";
|
|
2365
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2366
|
-
};
|
|
2367
|
-
};
|
|
2368
|
-
readonly required: readonly ["type", "title", "enum"];
|
|
2369
|
-
readonly additionalProperties: false;
|
|
2370
|
-
}, {
|
|
2371
|
-
readonly type: "object";
|
|
2372
|
-
readonly properties: {
|
|
2373
|
-
readonly type: {
|
|
2374
|
-
readonly type: "string";
|
|
2375
|
-
readonly const: "string";
|
|
2376
|
-
};
|
|
2377
|
-
readonly format: {
|
|
2378
|
-
readonly type: "string";
|
|
2379
|
-
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
2380
|
-
};
|
|
2381
|
-
readonly title: {
|
|
2382
|
-
readonly type: "string";
|
|
2383
|
-
};
|
|
2384
|
-
readonly default: {
|
|
2385
|
-
readonly type: "string";
|
|
2386
|
-
};
|
|
2387
|
-
readonly minLength: {
|
|
2388
|
-
readonly type: "integer";
|
|
2389
|
-
};
|
|
2390
|
-
readonly maxLength: {
|
|
2391
|
-
readonly type: "integer";
|
|
2392
|
-
};
|
|
2393
|
-
};
|
|
2394
|
-
readonly required: readonly ["type", "format"];
|
|
2395
|
-
readonly additionalProperties: false;
|
|
2396
|
-
}];
|
|
2397
|
-
}];
|
|
2398
|
-
}, {
|
|
2399
|
-
readonly anyOf: readonly [{
|
|
2400
|
-
readonly type: "object";
|
|
2401
|
-
readonly properties: {
|
|
2402
|
-
readonly type: {
|
|
2494
|
+
readonly format: {
|
|
2403
2495
|
readonly type: "string";
|
|
2404
|
-
readonly
|
|
2496
|
+
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
2405
2497
|
};
|
|
2406
2498
|
readonly title: {
|
|
2407
2499
|
readonly type: "string";
|
|
2408
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2409
|
-
};
|
|
2410
|
-
readonly items: {
|
|
2411
|
-
readonly type: "object";
|
|
2412
|
-
readonly properties: {
|
|
2413
|
-
readonly $ref: {
|
|
2414
|
-
readonly type: "string";
|
|
2415
|
-
};
|
|
2416
|
-
};
|
|
2417
|
-
readonly required: readonly ["$ref"];
|
|
2418
|
-
readonly additionalProperties: false;
|
|
2419
2500
|
};
|
|
2420
|
-
readonly
|
|
2421
|
-
readonly type: "
|
|
2501
|
+
readonly default: {
|
|
2502
|
+
readonly type: "string";
|
|
2422
2503
|
};
|
|
2423
|
-
readonly
|
|
2504
|
+
readonly minLength: {
|
|
2424
2505
|
readonly type: "integer";
|
|
2425
2506
|
};
|
|
2426
|
-
readonly
|
|
2507
|
+
readonly maxLength: {
|
|
2427
2508
|
readonly type: "integer";
|
|
2428
2509
|
};
|
|
2429
2510
|
};
|
|
2430
|
-
readonly required: readonly ["type", "
|
|
2511
|
+
readonly required: readonly ["type", "format"];
|
|
2431
2512
|
readonly additionalProperties: false;
|
|
2432
|
-
}
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
readonly type:
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2513
|
+
}];
|
|
2514
|
+
}];
|
|
2515
|
+
}, {
|
|
2516
|
+
readonly anyOf: readonly [{
|
|
2517
|
+
readonly type: "object";
|
|
2518
|
+
readonly properties: {
|
|
2519
|
+
readonly type: {
|
|
2520
|
+
readonly type: "string";
|
|
2521
|
+
readonly const: "array";
|
|
2522
|
+
};
|
|
2523
|
+
readonly title: {
|
|
2524
|
+
readonly type: "string";
|
|
2525
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2526
|
+
};
|
|
2527
|
+
readonly items: {
|
|
2528
|
+
readonly type: "object";
|
|
2443
2529
|
readonly properties: {
|
|
2444
|
-
readonly
|
|
2445
|
-
readonly patternProperties: {
|
|
2446
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2447
|
-
readonly type: "object";
|
|
2448
|
-
readonly properties: {
|
|
2449
|
-
readonly $ref: {
|
|
2450
|
-
readonly type: "string";
|
|
2451
|
-
};
|
|
2452
|
-
};
|
|
2453
|
-
readonly required: readonly ["$ref"];
|
|
2454
|
-
readonly additionalProperties: false;
|
|
2455
|
-
};
|
|
2456
|
-
};
|
|
2457
|
-
readonly additionalProperties: false;
|
|
2458
|
-
};
|
|
2459
|
-
readonly required: {
|
|
2460
|
-
readonly type: "array";
|
|
2461
|
-
readonly items: {
|
|
2530
|
+
readonly $ref: {
|
|
2462
2531
|
readonly type: "string";
|
|
2463
2532
|
};
|
|
2464
2533
|
};
|
|
2465
|
-
readonly
|
|
2466
|
-
|
|
2467
|
-
|
|
2534
|
+
readonly required: readonly ["$ref"];
|
|
2535
|
+
readonly additionalProperties: false;
|
|
2536
|
+
};
|
|
2537
|
+
readonly uniqueItems: {
|
|
2538
|
+
readonly type: "boolean";
|
|
2539
|
+
};
|
|
2540
|
+
readonly minItems: {
|
|
2541
|
+
readonly type: "integer";
|
|
2542
|
+
};
|
|
2543
|
+
readonly maxItems: {
|
|
2544
|
+
readonly type: "integer";
|
|
2545
|
+
};
|
|
2546
|
+
};
|
|
2547
|
+
readonly required: readonly ["type", "title", "items"];
|
|
2548
|
+
readonly additionalProperties: false;
|
|
2549
|
+
}, {
|
|
2550
|
+
readonly type: "object";
|
|
2551
|
+
readonly properties: {
|
|
2552
|
+
readonly title: {
|
|
2553
|
+
readonly type: "string";
|
|
2554
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2555
|
+
};
|
|
2556
|
+
readonly type: {
|
|
2557
|
+
readonly type: "string";
|
|
2558
|
+
readonly const: "object";
|
|
2468
2559
|
};
|
|
2469
|
-
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
2470
|
-
readonly additionalProperties: false;
|
|
2471
|
-
}, {
|
|
2472
|
-
readonly type: "object";
|
|
2473
2560
|
readonly properties: {
|
|
2474
|
-
readonly type:
|
|
2475
|
-
|
|
2476
|
-
readonly
|
|
2561
|
+
readonly type: "object";
|
|
2562
|
+
readonly patternProperties: {
|
|
2563
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2564
|
+
readonly type: "object";
|
|
2565
|
+
readonly properties: {
|
|
2566
|
+
readonly $ref: {
|
|
2567
|
+
readonly type: "string";
|
|
2568
|
+
};
|
|
2569
|
+
};
|
|
2570
|
+
readonly required: readonly ["$ref"];
|
|
2571
|
+
readonly additionalProperties: false;
|
|
2572
|
+
};
|
|
2477
2573
|
};
|
|
2478
|
-
readonly
|
|
2574
|
+
readonly additionalProperties: false;
|
|
2575
|
+
};
|
|
2576
|
+
readonly required: {
|
|
2577
|
+
readonly type: "array";
|
|
2578
|
+
readonly items: {
|
|
2479
2579
|
readonly type: "string";
|
|
2480
|
-
readonly const: "JSONObject";
|
|
2481
|
-
};
|
|
2482
|
-
readonly additionalProperties: {
|
|
2483
|
-
readonly type: "boolean";
|
|
2484
|
-
readonly const: true;
|
|
2485
2580
|
};
|
|
2486
2581
|
};
|
|
2487
|
-
readonly
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
readonly type: "string";
|
|
2495
|
-
readonly const: "object";
|
|
2496
|
-
};
|
|
2497
|
-
readonly properties: {
|
|
2498
|
-
readonly type: "object";
|
|
2499
|
-
readonly patternProperties: {
|
|
2500
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2582
|
+
readonly additionalProperties: {
|
|
2583
|
+
readonly type: "boolean";
|
|
2584
|
+
};
|
|
2585
|
+
};
|
|
2586
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
2587
|
+
readonly additionalProperties: false;
|
|
2588
|
+
}, {
|
|
2501
2589
|
readonly type: "object";
|
|
2502
2590
|
readonly properties: {
|
|
2503
|
-
readonly
|
|
2591
|
+
readonly type: {
|
|
2592
|
+
readonly type: "string";
|
|
2593
|
+
readonly const: "object";
|
|
2594
|
+
};
|
|
2595
|
+
readonly title: {
|
|
2504
2596
|
readonly type: "string";
|
|
2597
|
+
readonly const: "JSONObject";
|
|
2598
|
+
};
|
|
2599
|
+
readonly additionalProperties: {
|
|
2600
|
+
readonly type: "boolean";
|
|
2601
|
+
readonly const: true;
|
|
2505
2602
|
};
|
|
2506
2603
|
};
|
|
2507
|
-
readonly required: readonly ["
|
|
2604
|
+
readonly required: readonly ["type", "title", "additionalProperties"];
|
|
2508
2605
|
readonly additionalProperties: false;
|
|
2509
|
-
};
|
|
2510
|
-
};
|
|
2511
|
-
readonly additionalProperties: false;
|
|
2606
|
+
}];
|
|
2607
|
+
}];
|
|
2512
2608
|
};
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2609
|
+
};
|
|
2610
|
+
readonly type: {
|
|
2611
|
+
readonly type: "string";
|
|
2612
|
+
readonly const: "object";
|
|
2613
|
+
};
|
|
2614
|
+
readonly properties: {
|
|
2615
|
+
readonly type: "object";
|
|
2616
|
+
readonly patternProperties: {
|
|
2617
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2618
|
+
readonly type: "object";
|
|
2619
|
+
readonly properties: {
|
|
2620
|
+
readonly $ref: {
|
|
2621
|
+
readonly type: "string";
|
|
2622
|
+
};
|
|
2623
|
+
};
|
|
2624
|
+
readonly required: readonly ["$ref"];
|
|
2625
|
+
readonly additionalProperties: false;
|
|
2517
2626
|
};
|
|
2518
2627
|
};
|
|
2519
|
-
readonly additionalProperties:
|
|
2520
|
-
|
|
2628
|
+
readonly additionalProperties: false;
|
|
2629
|
+
};
|
|
2630
|
+
readonly required: {
|
|
2631
|
+
readonly type: "array";
|
|
2632
|
+
readonly items: {
|
|
2633
|
+
readonly type: "string";
|
|
2521
2634
|
};
|
|
2522
2635
|
};
|
|
2523
|
-
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
2524
|
-
readonly additionalProperties: false;
|
|
2525
|
-
};
|
|
2526
|
-
readonly fieldsMeta: {
|
|
2527
|
-
readonly type: "object";
|
|
2528
2636
|
readonly additionalProperties: {
|
|
2529
|
-
readonly
|
|
2530
|
-
readonly type: "object";
|
|
2531
|
-
readonly properties: {
|
|
2532
|
-
readonly type: {
|
|
2533
|
-
readonly type: "string";
|
|
2534
|
-
readonly const: "account";
|
|
2535
|
-
};
|
|
2536
|
-
};
|
|
2537
|
-
readonly required: readonly ["type"];
|
|
2538
|
-
readonly additionalProperties: false;
|
|
2539
|
-
}, {
|
|
2540
|
-
readonly type: "object";
|
|
2541
|
-
readonly properties: {
|
|
2542
|
-
readonly type: {
|
|
2543
|
-
readonly type: "string";
|
|
2544
|
-
readonly const: "attachment";
|
|
2545
|
-
};
|
|
2546
|
-
};
|
|
2547
|
-
readonly required: readonly ["type"];
|
|
2548
|
-
readonly additionalProperties: false;
|
|
2549
|
-
}, {
|
|
2550
|
-
readonly type: "object";
|
|
2551
|
-
readonly properties: {
|
|
2552
|
-
readonly type: {
|
|
2553
|
-
readonly type: "string";
|
|
2554
|
-
readonly const: "document";
|
|
2555
|
-
};
|
|
2556
|
-
readonly model: {
|
|
2557
|
-
readonly anyOf: readonly [{
|
|
2558
|
-
readonly type: "string";
|
|
2559
|
-
}, {
|
|
2560
|
-
readonly type: "null";
|
|
2561
|
-
}];
|
|
2562
|
-
};
|
|
2563
|
-
};
|
|
2564
|
-
readonly required: readonly ["type", "model"];
|
|
2565
|
-
readonly additionalProperties: false;
|
|
2566
|
-
}];
|
|
2637
|
+
readonly type: "boolean";
|
|
2567
2638
|
};
|
|
2568
2639
|
};
|
|
2640
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
2641
|
+
readonly additionalProperties: false;
|
|
2569
2642
|
};
|
|
2570
|
-
readonly
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2643
|
+
readonly fieldsMeta: {
|
|
2644
|
+
readonly type: "object";
|
|
2645
|
+
readonly additionalProperties: {
|
|
2646
|
+
readonly anyOf: readonly [{
|
|
2647
|
+
readonly type: "object";
|
|
2648
|
+
readonly properties: {
|
|
2649
|
+
readonly type: {
|
|
2650
|
+
readonly type: "string";
|
|
2651
|
+
readonly const: "account";
|
|
2652
|
+
};
|
|
2653
|
+
readonly searchable: {
|
|
2654
|
+
readonly type: "boolean";
|
|
2655
|
+
};
|
|
2656
|
+
};
|
|
2657
|
+
readonly required: readonly ["type"];
|
|
2658
|
+
readonly additionalProperties: false;
|
|
2659
|
+
}, {
|
|
2660
|
+
readonly type: "object";
|
|
2661
|
+
readonly properties: {
|
|
2662
|
+
readonly type: {
|
|
2663
|
+
readonly type: "string";
|
|
2664
|
+
readonly const: "attachment";
|
|
2665
|
+
};
|
|
2666
|
+
readonly searchable: {
|
|
2667
|
+
readonly type: "boolean";
|
|
2668
|
+
};
|
|
2669
|
+
};
|
|
2670
|
+
readonly required: readonly ["type"];
|
|
2671
|
+
readonly additionalProperties: false;
|
|
2672
|
+
}, {
|
|
2673
|
+
readonly type: "object";
|
|
2674
|
+
readonly properties: {
|
|
2675
|
+
readonly type: {
|
|
2676
|
+
readonly type: "string";
|
|
2677
|
+
readonly const: "document";
|
|
2678
|
+
};
|
|
2679
|
+
readonly model: {
|
|
2680
|
+
readonly anyOf: readonly [{
|
|
2681
|
+
readonly type: "string";
|
|
2682
|
+
}, {
|
|
2683
|
+
readonly type: "null";
|
|
2684
|
+
}];
|
|
2685
|
+
};
|
|
2686
|
+
readonly searchable: {
|
|
2687
|
+
readonly type: "boolean";
|
|
2688
|
+
};
|
|
2689
|
+
};
|
|
2690
|
+
readonly required: readonly ["type", "model"];
|
|
2691
|
+
readonly additionalProperties: false;
|
|
2692
|
+
}];
|
|
2582
2693
|
};
|
|
2583
|
-
|
|
2694
|
+
};
|
|
2695
|
+
};
|
|
2696
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
2697
|
+
readonly additionalProperties: false;
|
|
2698
|
+
}, {
|
|
2699
|
+
readonly type: "object";
|
|
2700
|
+
readonly properties: {
|
|
2701
|
+
readonly behavior: {
|
|
2702
|
+
readonly type: "string";
|
|
2703
|
+
readonly const: "interface";
|
|
2704
|
+
};
|
|
2705
|
+
readonly name: {
|
|
2706
|
+
readonly type: "string";
|
|
2707
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2708
|
+
};
|
|
2709
|
+
readonly version: {
|
|
2710
|
+
readonly type: "string";
|
|
2711
|
+
readonly const: "1.0";
|
|
2712
|
+
};
|
|
2713
|
+
readonly interfaces: {
|
|
2714
|
+
readonly type: "array";
|
|
2715
|
+
readonly items: {
|
|
2584
2716
|
readonly type: "string";
|
|
2585
|
-
readonly const: "1.0";
|
|
2586
|
-
};
|
|
2587
|
-
readonly interfaces: {
|
|
2588
|
-
readonly type: "array";
|
|
2589
|
-
readonly items: {
|
|
2590
|
-
readonly type: "string";
|
|
2591
|
-
};
|
|
2592
2717
|
};
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2718
|
+
};
|
|
2719
|
+
readonly schema: {
|
|
2720
|
+
readonly type: "object";
|
|
2721
|
+
readonly properties: {
|
|
2722
|
+
readonly $defs: {
|
|
2723
|
+
readonly type: "object";
|
|
2724
|
+
readonly additionalProperties: {
|
|
2725
|
+
readonly anyOf: readonly [{
|
|
2599
2726
|
readonly anyOf: readonly [{
|
|
2727
|
+
readonly type: "object";
|
|
2728
|
+
readonly properties: {
|
|
2729
|
+
readonly type: {
|
|
2730
|
+
readonly type: "string";
|
|
2731
|
+
readonly const: "boolean";
|
|
2732
|
+
};
|
|
2733
|
+
readonly default: {
|
|
2734
|
+
readonly type: "boolean";
|
|
2735
|
+
};
|
|
2736
|
+
};
|
|
2737
|
+
readonly required: readonly ["type"];
|
|
2738
|
+
readonly additionalProperties: false;
|
|
2739
|
+
}, {
|
|
2740
|
+
readonly type: "object";
|
|
2741
|
+
readonly properties: {
|
|
2742
|
+
readonly type: {
|
|
2743
|
+
readonly type: "string";
|
|
2744
|
+
readonly const: "integer";
|
|
2745
|
+
};
|
|
2746
|
+
readonly default: {
|
|
2747
|
+
readonly type: "integer";
|
|
2748
|
+
};
|
|
2749
|
+
readonly minimum: {
|
|
2750
|
+
readonly type: "integer";
|
|
2751
|
+
};
|
|
2752
|
+
readonly maximum: {
|
|
2753
|
+
readonly type: "integer";
|
|
2754
|
+
};
|
|
2755
|
+
};
|
|
2756
|
+
readonly required: readonly ["type"];
|
|
2757
|
+
readonly additionalProperties: false;
|
|
2758
|
+
}, {
|
|
2759
|
+
readonly type: "object";
|
|
2760
|
+
readonly properties: {
|
|
2761
|
+
readonly type: {
|
|
2762
|
+
readonly type: "string";
|
|
2763
|
+
readonly const: "number";
|
|
2764
|
+
};
|
|
2765
|
+
readonly default: {
|
|
2766
|
+
readonly type: "number";
|
|
2767
|
+
};
|
|
2768
|
+
readonly min: {
|
|
2769
|
+
readonly type: "number";
|
|
2770
|
+
};
|
|
2771
|
+
readonly max: {
|
|
2772
|
+
readonly type: "number";
|
|
2773
|
+
};
|
|
2774
|
+
};
|
|
2775
|
+
readonly required: readonly ["type"];
|
|
2776
|
+
readonly additionalProperties: false;
|
|
2777
|
+
}, {
|
|
2600
2778
|
readonly anyOf: readonly [{
|
|
2601
2779
|
readonly type: "object";
|
|
2602
2780
|
readonly properties: {
|
|
2603
2781
|
readonly type: {
|
|
2604
2782
|
readonly type: "string";
|
|
2605
|
-
readonly const: "
|
|
2783
|
+
readonly const: "string";
|
|
2784
|
+
};
|
|
2785
|
+
readonly title: {
|
|
2786
|
+
readonly type: "string";
|
|
2787
|
+
};
|
|
2788
|
+
readonly const: {
|
|
2789
|
+
readonly type: "string";
|
|
2606
2790
|
};
|
|
2607
2791
|
readonly default: {
|
|
2608
|
-
readonly type: "
|
|
2792
|
+
readonly type: "string";
|
|
2609
2793
|
};
|
|
2610
2794
|
};
|
|
2611
|
-
readonly required: readonly ["type"];
|
|
2795
|
+
readonly required: readonly ["type", "const"];
|
|
2612
2796
|
readonly additionalProperties: false;
|
|
2613
2797
|
}, {
|
|
2614
2798
|
readonly type: "object";
|
|
2615
2799
|
readonly properties: {
|
|
2616
2800
|
readonly type: {
|
|
2617
2801
|
readonly type: "string";
|
|
2618
|
-
readonly const: "
|
|
2802
|
+
readonly const: "string";
|
|
2803
|
+
};
|
|
2804
|
+
readonly title: {
|
|
2805
|
+
readonly type: "string";
|
|
2806
|
+
};
|
|
2807
|
+
readonly pattern: {
|
|
2808
|
+
readonly type: "string";
|
|
2619
2809
|
};
|
|
2620
2810
|
readonly default: {
|
|
2621
|
-
readonly type: "
|
|
2811
|
+
readonly type: "string";
|
|
2622
2812
|
};
|
|
2623
|
-
readonly
|
|
2813
|
+
readonly minLength: {
|
|
2624
2814
|
readonly type: "integer";
|
|
2625
2815
|
};
|
|
2626
|
-
readonly
|
|
2816
|
+
readonly maxLength: {
|
|
2627
2817
|
readonly type: "integer";
|
|
2628
2818
|
};
|
|
2629
2819
|
};
|
|
@@ -2634,652 +2824,603 @@ export declare const loadGraphResult: {
|
|
|
2634
2824
|
readonly properties: {
|
|
2635
2825
|
readonly type: {
|
|
2636
2826
|
readonly type: "string";
|
|
2637
|
-
readonly const: "
|
|
2827
|
+
readonly const: "string";
|
|
2638
2828
|
};
|
|
2639
|
-
readonly
|
|
2640
|
-
readonly type: "
|
|
2829
|
+
readonly title: {
|
|
2830
|
+
readonly type: "string";
|
|
2641
2831
|
};
|
|
2642
|
-
readonly
|
|
2643
|
-
readonly type: "
|
|
2832
|
+
readonly enum: {
|
|
2833
|
+
readonly type: "array";
|
|
2834
|
+
readonly items: {
|
|
2835
|
+
readonly type: "string";
|
|
2836
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2837
|
+
};
|
|
2644
2838
|
};
|
|
2645
|
-
readonly
|
|
2646
|
-
readonly type: "
|
|
2839
|
+
readonly default: {
|
|
2840
|
+
readonly type: "string";
|
|
2841
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2647
2842
|
};
|
|
2648
2843
|
};
|
|
2649
|
-
readonly required: readonly ["type"];
|
|
2844
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
2650
2845
|
readonly additionalProperties: false;
|
|
2651
2846
|
}, {
|
|
2652
|
-
readonly
|
|
2653
|
-
|
|
2654
|
-
readonly
|
|
2655
|
-
readonly type:
|
|
2656
|
-
|
|
2657
|
-
readonly const: "string";
|
|
2658
|
-
};
|
|
2659
|
-
readonly title: {
|
|
2660
|
-
readonly type: "string";
|
|
2661
|
-
};
|
|
2662
|
-
readonly const: {
|
|
2663
|
-
readonly type: "string";
|
|
2664
|
-
};
|
|
2665
|
-
readonly default: {
|
|
2666
|
-
readonly type: "string";
|
|
2667
|
-
};
|
|
2847
|
+
readonly type: "object";
|
|
2848
|
+
readonly properties: {
|
|
2849
|
+
readonly type: {
|
|
2850
|
+
readonly type: "string";
|
|
2851
|
+
readonly const: "string";
|
|
2668
2852
|
};
|
|
2669
|
-
readonly
|
|
2670
|
-
|
|
2671
|
-
|
|
2853
|
+
readonly format: {
|
|
2854
|
+
readonly type: "string";
|
|
2855
|
+
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
2856
|
+
};
|
|
2857
|
+
readonly title: {
|
|
2858
|
+
readonly type: "string";
|
|
2859
|
+
};
|
|
2860
|
+
readonly default: {
|
|
2861
|
+
readonly type: "string";
|
|
2862
|
+
};
|
|
2863
|
+
readonly minLength: {
|
|
2864
|
+
readonly type: "integer";
|
|
2865
|
+
};
|
|
2866
|
+
readonly maxLength: {
|
|
2867
|
+
readonly type: "integer";
|
|
2868
|
+
};
|
|
2869
|
+
};
|
|
2870
|
+
readonly required: readonly ["type", "format"];
|
|
2871
|
+
readonly additionalProperties: false;
|
|
2872
|
+
}];
|
|
2873
|
+
}];
|
|
2874
|
+
}, {
|
|
2875
|
+
readonly anyOf: readonly [{
|
|
2876
|
+
readonly type: "object";
|
|
2877
|
+
readonly properties: {
|
|
2878
|
+
readonly type: {
|
|
2879
|
+
readonly type: "string";
|
|
2880
|
+
readonly const: "array";
|
|
2881
|
+
};
|
|
2882
|
+
readonly title: {
|
|
2883
|
+
readonly type: "string";
|
|
2884
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2885
|
+
};
|
|
2886
|
+
readonly items: {
|
|
2672
2887
|
readonly type: "object";
|
|
2673
2888
|
readonly properties: {
|
|
2674
|
-
readonly
|
|
2675
|
-
readonly type: "string";
|
|
2676
|
-
readonly const: "string";
|
|
2677
|
-
};
|
|
2678
|
-
readonly title: {
|
|
2679
|
-
readonly type: "string";
|
|
2680
|
-
};
|
|
2681
|
-
readonly pattern: {
|
|
2682
|
-
readonly type: "string";
|
|
2683
|
-
};
|
|
2684
|
-
readonly default: {
|
|
2889
|
+
readonly $ref: {
|
|
2685
2890
|
readonly type: "string";
|
|
2686
2891
|
};
|
|
2687
|
-
readonly minLength: {
|
|
2688
|
-
readonly type: "integer";
|
|
2689
|
-
};
|
|
2690
|
-
readonly maxLength: {
|
|
2691
|
-
readonly type: "integer";
|
|
2692
|
-
};
|
|
2693
2892
|
};
|
|
2694
|
-
readonly required: readonly ["
|
|
2893
|
+
readonly required: readonly ["$ref"];
|
|
2695
2894
|
readonly additionalProperties: false;
|
|
2696
|
-
}
|
|
2697
|
-
|
|
2698
|
-
readonly
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
readonly type: "string";
|
|
2710
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2711
|
-
};
|
|
2712
|
-
};
|
|
2713
|
-
readonly default: {
|
|
2714
|
-
readonly type: "string";
|
|
2715
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
2716
|
-
};
|
|
2717
|
-
};
|
|
2718
|
-
readonly required: readonly ["type", "title", "enum"];
|
|
2719
|
-
readonly additionalProperties: false;
|
|
2720
|
-
}, {
|
|
2721
|
-
readonly type: "object";
|
|
2722
|
-
readonly properties: {
|
|
2723
|
-
readonly type: {
|
|
2724
|
-
readonly type: "string";
|
|
2725
|
-
readonly const: "string";
|
|
2726
|
-
};
|
|
2727
|
-
readonly format: {
|
|
2728
|
-
readonly type: "string";
|
|
2729
|
-
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
2730
|
-
};
|
|
2731
|
-
readonly title: {
|
|
2732
|
-
readonly type: "string";
|
|
2733
|
-
};
|
|
2734
|
-
readonly default: {
|
|
2735
|
-
readonly type: "string";
|
|
2736
|
-
};
|
|
2737
|
-
readonly minLength: {
|
|
2738
|
-
readonly type: "integer";
|
|
2739
|
-
};
|
|
2740
|
-
readonly maxLength: {
|
|
2741
|
-
readonly type: "integer";
|
|
2742
|
-
};
|
|
2743
|
-
};
|
|
2744
|
-
readonly required: readonly ["type", "format"];
|
|
2745
|
-
readonly additionalProperties: false;
|
|
2746
|
-
}];
|
|
2747
|
-
}];
|
|
2895
|
+
};
|
|
2896
|
+
readonly uniqueItems: {
|
|
2897
|
+
readonly type: "boolean";
|
|
2898
|
+
};
|
|
2899
|
+
readonly minItems: {
|
|
2900
|
+
readonly type: "integer";
|
|
2901
|
+
};
|
|
2902
|
+
readonly maxItems: {
|
|
2903
|
+
readonly type: "integer";
|
|
2904
|
+
};
|
|
2905
|
+
};
|
|
2906
|
+
readonly required: readonly ["type", "title", "items"];
|
|
2907
|
+
readonly additionalProperties: false;
|
|
2748
2908
|
}, {
|
|
2749
|
-
readonly
|
|
2750
|
-
|
|
2751
|
-
readonly
|
|
2752
|
-
readonly type:
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
readonly
|
|
2757
|
-
|
|
2758
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2759
|
-
};
|
|
2760
|
-
readonly items: {
|
|
2761
|
-
readonly type: "object";
|
|
2762
|
-
readonly properties: {
|
|
2763
|
-
readonly $ref: {
|
|
2764
|
-
readonly type: "string";
|
|
2765
|
-
};
|
|
2766
|
-
};
|
|
2767
|
-
readonly required: readonly ["$ref"];
|
|
2768
|
-
readonly additionalProperties: false;
|
|
2769
|
-
};
|
|
2770
|
-
readonly uniqueItems: {
|
|
2771
|
-
readonly type: "boolean";
|
|
2772
|
-
};
|
|
2773
|
-
readonly minItems: {
|
|
2774
|
-
readonly type: "integer";
|
|
2775
|
-
};
|
|
2776
|
-
readonly maxItems: {
|
|
2777
|
-
readonly type: "integer";
|
|
2778
|
-
};
|
|
2909
|
+
readonly type: "object";
|
|
2910
|
+
readonly properties: {
|
|
2911
|
+
readonly title: {
|
|
2912
|
+
readonly type: "string";
|
|
2913
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2914
|
+
};
|
|
2915
|
+
readonly type: {
|
|
2916
|
+
readonly type: "string";
|
|
2917
|
+
readonly const: "object";
|
|
2779
2918
|
};
|
|
2780
|
-
readonly required: readonly ["type", "title", "items"];
|
|
2781
|
-
readonly additionalProperties: false;
|
|
2782
|
-
}, {
|
|
2783
|
-
readonly type: "object";
|
|
2784
2919
|
readonly properties: {
|
|
2785
|
-
readonly
|
|
2786
|
-
|
|
2787
|
-
readonly
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
};
|
|
2793
|
-
readonly properties: {
|
|
2794
|
-
readonly type: "object";
|
|
2795
|
-
readonly patternProperties: {
|
|
2796
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2797
|
-
readonly type: "object";
|
|
2798
|
-
readonly properties: {
|
|
2799
|
-
readonly $ref: {
|
|
2800
|
-
readonly type: "string";
|
|
2801
|
-
};
|
|
2920
|
+
readonly type: "object";
|
|
2921
|
+
readonly patternProperties: {
|
|
2922
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2923
|
+
readonly type: "object";
|
|
2924
|
+
readonly properties: {
|
|
2925
|
+
readonly $ref: {
|
|
2926
|
+
readonly type: "string";
|
|
2802
2927
|
};
|
|
2803
|
-
readonly required: readonly ["$ref"];
|
|
2804
|
-
readonly additionalProperties: false;
|
|
2805
2928
|
};
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
};
|
|
2809
|
-
readonly required: {
|
|
2810
|
-
readonly type: "array";
|
|
2811
|
-
readonly items: {
|
|
2812
|
-
readonly type: "string";
|
|
2929
|
+
readonly required: readonly ["$ref"];
|
|
2930
|
+
readonly additionalProperties: false;
|
|
2813
2931
|
};
|
|
2814
2932
|
};
|
|
2815
|
-
readonly additionalProperties:
|
|
2816
|
-
readonly type: "boolean";
|
|
2817
|
-
};
|
|
2933
|
+
readonly additionalProperties: false;
|
|
2818
2934
|
};
|
|
2819
|
-
readonly required:
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
readonly type: "object";
|
|
2823
|
-
readonly properties: {
|
|
2824
|
-
readonly type: {
|
|
2825
|
-
readonly type: "string";
|
|
2826
|
-
readonly const: "object";
|
|
2827
|
-
};
|
|
2828
|
-
readonly title: {
|
|
2935
|
+
readonly required: {
|
|
2936
|
+
readonly type: "array";
|
|
2937
|
+
readonly items: {
|
|
2829
2938
|
readonly type: "string";
|
|
2830
|
-
readonly const: "JSONObject";
|
|
2831
|
-
};
|
|
2832
|
-
readonly additionalProperties: {
|
|
2833
|
-
readonly type: "boolean";
|
|
2834
|
-
readonly const: true;
|
|
2835
2939
|
};
|
|
2836
2940
|
};
|
|
2837
|
-
readonly
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
readonly type: "string";
|
|
2845
|
-
readonly const: "object";
|
|
2846
|
-
};
|
|
2847
|
-
readonly properties: {
|
|
2848
|
-
readonly type: "object";
|
|
2849
|
-
readonly patternProperties: {
|
|
2850
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2941
|
+
readonly additionalProperties: {
|
|
2942
|
+
readonly type: "boolean";
|
|
2943
|
+
};
|
|
2944
|
+
};
|
|
2945
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
2946
|
+
readonly additionalProperties: false;
|
|
2947
|
+
}, {
|
|
2851
2948
|
readonly type: "object";
|
|
2852
2949
|
readonly properties: {
|
|
2853
|
-
readonly
|
|
2950
|
+
readonly type: {
|
|
2854
2951
|
readonly type: "string";
|
|
2952
|
+
readonly const: "object";
|
|
2953
|
+
};
|
|
2954
|
+
readonly title: {
|
|
2955
|
+
readonly type: "string";
|
|
2956
|
+
readonly const: "JSONObject";
|
|
2957
|
+
};
|
|
2958
|
+
readonly additionalProperties: {
|
|
2959
|
+
readonly type: "boolean";
|
|
2960
|
+
readonly const: true;
|
|
2855
2961
|
};
|
|
2856
2962
|
};
|
|
2857
|
-
readonly required: readonly ["
|
|
2963
|
+
readonly required: readonly ["type", "title", "additionalProperties"];
|
|
2858
2964
|
readonly additionalProperties: false;
|
|
2965
|
+
}];
|
|
2966
|
+
}];
|
|
2967
|
+
};
|
|
2968
|
+
};
|
|
2969
|
+
readonly type: {
|
|
2970
|
+
readonly type: "string";
|
|
2971
|
+
readonly const: "object";
|
|
2972
|
+
};
|
|
2973
|
+
readonly properties: {
|
|
2974
|
+
readonly type: "object";
|
|
2975
|
+
readonly patternProperties: {
|
|
2976
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
2977
|
+
readonly type: "object";
|
|
2978
|
+
readonly properties: {
|
|
2979
|
+
readonly $ref: {
|
|
2980
|
+
readonly type: "string";
|
|
2981
|
+
};
|
|
2859
2982
|
};
|
|
2983
|
+
readonly required: readonly ["$ref"];
|
|
2984
|
+
readonly additionalProperties: false;
|
|
2860
2985
|
};
|
|
2861
|
-
readonly additionalProperties: false;
|
|
2862
2986
|
};
|
|
2863
|
-
readonly
|
|
2864
|
-
|
|
2865
|
-
|
|
2987
|
+
readonly additionalProperties: false;
|
|
2988
|
+
};
|
|
2989
|
+
readonly required: {
|
|
2990
|
+
readonly type: "array";
|
|
2991
|
+
readonly items: {
|
|
2992
|
+
readonly type: "string";
|
|
2993
|
+
};
|
|
2994
|
+
};
|
|
2995
|
+
readonly additionalProperties: {
|
|
2996
|
+
readonly type: "boolean";
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2999
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
3000
|
+
readonly additionalProperties: false;
|
|
3001
|
+
};
|
|
3002
|
+
readonly fieldsMeta: {
|
|
3003
|
+
readonly type: "object";
|
|
3004
|
+
readonly additionalProperties: {
|
|
3005
|
+
readonly anyOf: readonly [{
|
|
3006
|
+
readonly type: "object";
|
|
3007
|
+
readonly properties: {
|
|
3008
|
+
readonly type: {
|
|
2866
3009
|
readonly type: "string";
|
|
3010
|
+
readonly const: "account";
|
|
3011
|
+
};
|
|
3012
|
+
readonly searchable: {
|
|
3013
|
+
readonly type: "boolean";
|
|
2867
3014
|
};
|
|
2868
3015
|
};
|
|
2869
|
-
readonly
|
|
2870
|
-
|
|
3016
|
+
readonly required: readonly ["type"];
|
|
3017
|
+
readonly additionalProperties: false;
|
|
3018
|
+
}, {
|
|
3019
|
+
readonly type: "object";
|
|
3020
|
+
readonly properties: {
|
|
3021
|
+
readonly type: {
|
|
3022
|
+
readonly type: "string";
|
|
3023
|
+
readonly const: "attachment";
|
|
3024
|
+
};
|
|
3025
|
+
readonly searchable: {
|
|
3026
|
+
readonly type: "boolean";
|
|
3027
|
+
};
|
|
2871
3028
|
};
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
readonly type: "object";
|
|
2881
|
-
readonly properties: {
|
|
2882
|
-
readonly type: {
|
|
2883
|
-
readonly type: "string";
|
|
2884
|
-
readonly const: "account";
|
|
2885
|
-
};
|
|
3029
|
+
readonly required: readonly ["type"];
|
|
3030
|
+
readonly additionalProperties: false;
|
|
3031
|
+
}, {
|
|
3032
|
+
readonly type: "object";
|
|
3033
|
+
readonly properties: {
|
|
3034
|
+
readonly type: {
|
|
3035
|
+
readonly type: "string";
|
|
3036
|
+
readonly const: "document";
|
|
2886
3037
|
};
|
|
2887
|
-
readonly
|
|
2888
|
-
|
|
2889
|
-
}, {
|
|
2890
|
-
readonly type: "object";
|
|
2891
|
-
readonly properties: {
|
|
2892
|
-
readonly type: {
|
|
3038
|
+
readonly model: {
|
|
3039
|
+
readonly anyOf: readonly [{
|
|
2893
3040
|
readonly type: "string";
|
|
2894
|
-
|
|
2895
|
-
|
|
3041
|
+
}, {
|
|
3042
|
+
readonly type: "null";
|
|
3043
|
+
}];
|
|
2896
3044
|
};
|
|
2897
|
-
readonly
|
|
2898
|
-
|
|
2899
|
-
}, {
|
|
2900
|
-
readonly type: "object";
|
|
2901
|
-
readonly properties: {
|
|
2902
|
-
readonly type: {
|
|
2903
|
-
readonly type: "string";
|
|
2904
|
-
readonly const: "document";
|
|
2905
|
-
};
|
|
2906
|
-
readonly model: {
|
|
2907
|
-
readonly anyOf: readonly [{
|
|
2908
|
-
readonly type: "string";
|
|
2909
|
-
}, {
|
|
2910
|
-
readonly type: "null";
|
|
2911
|
-
}];
|
|
2912
|
-
};
|
|
3045
|
+
readonly searchable: {
|
|
3046
|
+
readonly type: "boolean";
|
|
2913
3047
|
};
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
};
|
|
3048
|
+
};
|
|
3049
|
+
readonly required: readonly ["type", "model"];
|
|
3050
|
+
readonly additionalProperties: false;
|
|
3051
|
+
}];
|
|
2918
3052
|
};
|
|
2919
3053
|
};
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
};
|
|
2934
|
-
};
|
|
2935
|
-
readonly name: {
|
|
3054
|
+
};
|
|
3055
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
3056
|
+
readonly additionalProperties: false;
|
|
3057
|
+
}, {
|
|
3058
|
+
readonly type: "object";
|
|
3059
|
+
readonly properties: {
|
|
3060
|
+
readonly behavior: {
|
|
3061
|
+
readonly type: "string";
|
|
3062
|
+
readonly const: "unique";
|
|
3063
|
+
};
|
|
3064
|
+
readonly uniqueFields: {
|
|
3065
|
+
readonly type: "array";
|
|
3066
|
+
readonly items: {
|
|
2936
3067
|
readonly type: "string";
|
|
2937
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
2938
3068
|
};
|
|
2939
|
-
|
|
3069
|
+
};
|
|
3070
|
+
readonly name: {
|
|
3071
|
+
readonly type: "string";
|
|
3072
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3073
|
+
};
|
|
3074
|
+
readonly version: {
|
|
3075
|
+
readonly type: "string";
|
|
3076
|
+
readonly const: "1.0";
|
|
3077
|
+
};
|
|
3078
|
+
readonly interfaces: {
|
|
3079
|
+
readonly type: "array";
|
|
3080
|
+
readonly items: {
|
|
2940
3081
|
readonly type: "string";
|
|
2941
|
-
readonly const: "1.0";
|
|
2942
3082
|
};
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
readonly properties: {
|
|
2952
|
-
readonly $defs: {
|
|
2953
|
-
readonly type: "object";
|
|
2954
|
-
readonly additionalProperties: {
|
|
3083
|
+
};
|
|
3084
|
+
readonly schema: {
|
|
3085
|
+
readonly type: "object";
|
|
3086
|
+
readonly properties: {
|
|
3087
|
+
readonly $defs: {
|
|
3088
|
+
readonly type: "object";
|
|
3089
|
+
readonly additionalProperties: {
|
|
3090
|
+
readonly anyOf: readonly [{
|
|
2955
3091
|
readonly anyOf: readonly [{
|
|
2956
|
-
readonly
|
|
2957
|
-
|
|
2958
|
-
readonly
|
|
2959
|
-
readonly type:
|
|
2960
|
-
|
|
2961
|
-
readonly const: "boolean";
|
|
2962
|
-
};
|
|
2963
|
-
readonly default: {
|
|
2964
|
-
readonly type: "boolean";
|
|
2965
|
-
};
|
|
3092
|
+
readonly type: "object";
|
|
3093
|
+
readonly properties: {
|
|
3094
|
+
readonly type: {
|
|
3095
|
+
readonly type: "string";
|
|
3096
|
+
readonly const: "boolean";
|
|
2966
3097
|
};
|
|
2967
|
-
readonly
|
|
2968
|
-
|
|
2969
|
-
}, {
|
|
2970
|
-
readonly type: "object";
|
|
2971
|
-
readonly properties: {
|
|
2972
|
-
readonly type: {
|
|
2973
|
-
readonly type: "string";
|
|
2974
|
-
readonly const: "integer";
|
|
2975
|
-
};
|
|
2976
|
-
readonly default: {
|
|
2977
|
-
readonly type: "integer";
|
|
2978
|
-
};
|
|
2979
|
-
readonly minimum: {
|
|
2980
|
-
readonly type: "integer";
|
|
2981
|
-
};
|
|
2982
|
-
readonly maximum: {
|
|
2983
|
-
readonly type: "integer";
|
|
2984
|
-
};
|
|
3098
|
+
readonly default: {
|
|
3099
|
+
readonly type: "boolean";
|
|
2985
3100
|
};
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
readonly default: {
|
|
2996
|
-
readonly type: "number";
|
|
2997
|
-
};
|
|
2998
|
-
readonly min: {
|
|
2999
|
-
readonly type: "number";
|
|
3000
|
-
};
|
|
3001
|
-
readonly max: {
|
|
3002
|
-
readonly type: "number";
|
|
3003
|
-
};
|
|
3101
|
+
};
|
|
3102
|
+
readonly required: readonly ["type"];
|
|
3103
|
+
readonly additionalProperties: false;
|
|
3104
|
+
}, {
|
|
3105
|
+
readonly type: "object";
|
|
3106
|
+
readonly properties: {
|
|
3107
|
+
readonly type: {
|
|
3108
|
+
readonly type: "string";
|
|
3109
|
+
readonly const: "integer";
|
|
3004
3110
|
};
|
|
3005
|
-
readonly
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
readonly
|
|
3009
|
-
readonly type: "
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3111
|
+
readonly default: {
|
|
3112
|
+
readonly type: "integer";
|
|
3113
|
+
};
|
|
3114
|
+
readonly minimum: {
|
|
3115
|
+
readonly type: "integer";
|
|
3116
|
+
};
|
|
3117
|
+
readonly maximum: {
|
|
3118
|
+
readonly type: "integer";
|
|
3119
|
+
};
|
|
3120
|
+
};
|
|
3121
|
+
readonly required: readonly ["type"];
|
|
3122
|
+
readonly additionalProperties: false;
|
|
3123
|
+
}, {
|
|
3124
|
+
readonly type: "object";
|
|
3125
|
+
readonly properties: {
|
|
3126
|
+
readonly type: {
|
|
3127
|
+
readonly type: "string";
|
|
3128
|
+
readonly const: "number";
|
|
3129
|
+
};
|
|
3130
|
+
readonly default: {
|
|
3131
|
+
readonly type: "number";
|
|
3132
|
+
};
|
|
3133
|
+
readonly min: {
|
|
3134
|
+
readonly type: "number";
|
|
3135
|
+
};
|
|
3136
|
+
readonly max: {
|
|
3137
|
+
readonly type: "number";
|
|
3138
|
+
};
|
|
3139
|
+
};
|
|
3140
|
+
readonly required: readonly ["type"];
|
|
3141
|
+
readonly additionalProperties: false;
|
|
3142
|
+
}, {
|
|
3143
|
+
readonly anyOf: readonly [{
|
|
3144
|
+
readonly type: "object";
|
|
3145
|
+
readonly properties: {
|
|
3146
|
+
readonly type: {
|
|
3147
|
+
readonly type: "string";
|
|
3148
|
+
readonly const: "string";
|
|
3024
3149
|
};
|
|
3025
|
-
readonly
|
|
3026
|
-
|
|
3027
|
-
}, {
|
|
3028
|
-
readonly type: "object";
|
|
3029
|
-
readonly properties: {
|
|
3030
|
-
readonly type: {
|
|
3031
|
-
readonly type: "string";
|
|
3032
|
-
readonly const: "string";
|
|
3033
|
-
};
|
|
3034
|
-
readonly title: {
|
|
3035
|
-
readonly type: "string";
|
|
3036
|
-
};
|
|
3037
|
-
readonly pattern: {
|
|
3038
|
-
readonly type: "string";
|
|
3039
|
-
};
|
|
3040
|
-
readonly default: {
|
|
3041
|
-
readonly type: "string";
|
|
3042
|
-
};
|
|
3043
|
-
readonly minLength: {
|
|
3044
|
-
readonly type: "integer";
|
|
3045
|
-
};
|
|
3046
|
-
readonly maxLength: {
|
|
3047
|
-
readonly type: "integer";
|
|
3048
|
-
};
|
|
3150
|
+
readonly title: {
|
|
3151
|
+
readonly type: "string";
|
|
3049
3152
|
};
|
|
3050
|
-
readonly
|
|
3051
|
-
|
|
3052
|
-
}, {
|
|
3053
|
-
readonly type: "object";
|
|
3054
|
-
readonly properties: {
|
|
3055
|
-
readonly type: {
|
|
3056
|
-
readonly type: "string";
|
|
3057
|
-
readonly const: "string";
|
|
3058
|
-
};
|
|
3059
|
-
readonly title: {
|
|
3060
|
-
readonly type: "string";
|
|
3061
|
-
};
|
|
3062
|
-
readonly enum: {
|
|
3063
|
-
readonly type: "array";
|
|
3064
|
-
readonly items: {
|
|
3065
|
-
readonly type: "string";
|
|
3066
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3067
|
-
};
|
|
3068
|
-
};
|
|
3069
|
-
readonly default: {
|
|
3070
|
-
readonly type: "string";
|
|
3071
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3072
|
-
};
|
|
3153
|
+
readonly const: {
|
|
3154
|
+
readonly type: "string";
|
|
3073
3155
|
};
|
|
3074
|
-
readonly
|
|
3075
|
-
|
|
3076
|
-
}, {
|
|
3077
|
-
readonly type: "object";
|
|
3078
|
-
readonly properties: {
|
|
3079
|
-
readonly type: {
|
|
3080
|
-
readonly type: "string";
|
|
3081
|
-
readonly const: "string";
|
|
3082
|
-
};
|
|
3083
|
-
readonly format: {
|
|
3084
|
-
readonly type: "string";
|
|
3085
|
-
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
3086
|
-
};
|
|
3087
|
-
readonly title: {
|
|
3088
|
-
readonly type: "string";
|
|
3089
|
-
};
|
|
3090
|
-
readonly default: {
|
|
3091
|
-
readonly type: "string";
|
|
3092
|
-
};
|
|
3093
|
-
readonly minLength: {
|
|
3094
|
-
readonly type: "integer";
|
|
3095
|
-
};
|
|
3096
|
-
readonly maxLength: {
|
|
3097
|
-
readonly type: "integer";
|
|
3098
|
-
};
|
|
3156
|
+
readonly default: {
|
|
3157
|
+
readonly type: "string";
|
|
3099
3158
|
};
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
}
|
|
3104
|
-
}, {
|
|
3105
|
-
readonly anyOf: readonly [{
|
|
3159
|
+
};
|
|
3160
|
+
readonly required: readonly ["type", "const"];
|
|
3161
|
+
readonly additionalProperties: false;
|
|
3162
|
+
}, {
|
|
3106
3163
|
readonly type: "object";
|
|
3107
3164
|
readonly properties: {
|
|
3108
3165
|
readonly type: {
|
|
3109
3166
|
readonly type: "string";
|
|
3110
|
-
readonly const: "
|
|
3167
|
+
readonly const: "string";
|
|
3111
3168
|
};
|
|
3112
3169
|
readonly title: {
|
|
3113
3170
|
readonly type: "string";
|
|
3114
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3115
3171
|
};
|
|
3116
|
-
readonly
|
|
3117
|
-
readonly type: "
|
|
3118
|
-
readonly properties: {
|
|
3119
|
-
readonly $ref: {
|
|
3120
|
-
readonly type: "string";
|
|
3121
|
-
};
|
|
3122
|
-
};
|
|
3123
|
-
readonly required: readonly ["$ref"];
|
|
3124
|
-
readonly additionalProperties: false;
|
|
3172
|
+
readonly pattern: {
|
|
3173
|
+
readonly type: "string";
|
|
3125
3174
|
};
|
|
3126
|
-
readonly
|
|
3127
|
-
readonly type: "
|
|
3175
|
+
readonly default: {
|
|
3176
|
+
readonly type: "string";
|
|
3128
3177
|
};
|
|
3129
|
-
readonly
|
|
3178
|
+
readonly minLength: {
|
|
3130
3179
|
readonly type: "integer";
|
|
3131
3180
|
};
|
|
3132
|
-
readonly
|
|
3181
|
+
readonly maxLength: {
|
|
3133
3182
|
readonly type: "integer";
|
|
3134
3183
|
};
|
|
3135
3184
|
};
|
|
3136
|
-
readonly required: readonly ["type"
|
|
3185
|
+
readonly required: readonly ["type"];
|
|
3137
3186
|
readonly additionalProperties: false;
|
|
3138
3187
|
}, {
|
|
3139
3188
|
readonly type: "object";
|
|
3140
3189
|
readonly properties: {
|
|
3141
|
-
readonly title: {
|
|
3142
|
-
readonly type: "string";
|
|
3143
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3144
|
-
};
|
|
3145
3190
|
readonly type: {
|
|
3146
3191
|
readonly type: "string";
|
|
3147
|
-
readonly const: "
|
|
3192
|
+
readonly const: "string";
|
|
3148
3193
|
};
|
|
3149
|
-
readonly
|
|
3150
|
-
readonly type: "
|
|
3151
|
-
readonly patternProperties: {
|
|
3152
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3153
|
-
readonly type: "object";
|
|
3154
|
-
readonly properties: {
|
|
3155
|
-
readonly $ref: {
|
|
3156
|
-
readonly type: "string";
|
|
3157
|
-
};
|
|
3158
|
-
};
|
|
3159
|
-
readonly required: readonly ["$ref"];
|
|
3160
|
-
readonly additionalProperties: false;
|
|
3161
|
-
};
|
|
3162
|
-
};
|
|
3163
|
-
readonly additionalProperties: false;
|
|
3194
|
+
readonly title: {
|
|
3195
|
+
readonly type: "string";
|
|
3164
3196
|
};
|
|
3165
|
-
readonly
|
|
3197
|
+
readonly enum: {
|
|
3166
3198
|
readonly type: "array";
|
|
3167
3199
|
readonly items: {
|
|
3168
3200
|
readonly type: "string";
|
|
3201
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3169
3202
|
};
|
|
3170
3203
|
};
|
|
3171
|
-
readonly
|
|
3172
|
-
readonly type: "
|
|
3204
|
+
readonly default: {
|
|
3205
|
+
readonly type: "string";
|
|
3206
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
3173
3207
|
};
|
|
3174
3208
|
};
|
|
3175
|
-
readonly required: readonly ["type", "
|
|
3209
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
3176
3210
|
readonly additionalProperties: false;
|
|
3177
3211
|
}, {
|
|
3178
3212
|
readonly type: "object";
|
|
3179
3213
|
readonly properties: {
|
|
3180
3214
|
readonly type: {
|
|
3181
3215
|
readonly type: "string";
|
|
3182
|
-
readonly const: "
|
|
3216
|
+
readonly const: "string";
|
|
3217
|
+
};
|
|
3218
|
+
readonly format: {
|
|
3219
|
+
readonly type: "string";
|
|
3220
|
+
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
3183
3221
|
};
|
|
3184
3222
|
readonly title: {
|
|
3185
3223
|
readonly type: "string";
|
|
3186
|
-
readonly const: "JSONObject";
|
|
3187
3224
|
};
|
|
3188
|
-
readonly
|
|
3189
|
-
readonly type: "
|
|
3190
|
-
|
|
3225
|
+
readonly default: {
|
|
3226
|
+
readonly type: "string";
|
|
3227
|
+
};
|
|
3228
|
+
readonly minLength: {
|
|
3229
|
+
readonly type: "integer";
|
|
3230
|
+
};
|
|
3231
|
+
readonly maxLength: {
|
|
3232
|
+
readonly type: "integer";
|
|
3191
3233
|
};
|
|
3192
3234
|
};
|
|
3193
|
-
readonly required: readonly ["type", "
|
|
3235
|
+
readonly required: readonly ["type", "format"];
|
|
3194
3236
|
readonly additionalProperties: false;
|
|
3195
3237
|
}];
|
|
3196
3238
|
}];
|
|
3239
|
+
}, {
|
|
3240
|
+
readonly anyOf: readonly [{
|
|
3241
|
+
readonly type: "object";
|
|
3242
|
+
readonly properties: {
|
|
3243
|
+
readonly type: {
|
|
3244
|
+
readonly type: "string";
|
|
3245
|
+
readonly const: "array";
|
|
3246
|
+
};
|
|
3247
|
+
readonly title: {
|
|
3248
|
+
readonly type: "string";
|
|
3249
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3250
|
+
};
|
|
3251
|
+
readonly items: {
|
|
3252
|
+
readonly type: "object";
|
|
3253
|
+
readonly properties: {
|
|
3254
|
+
readonly $ref: {
|
|
3255
|
+
readonly type: "string";
|
|
3256
|
+
};
|
|
3257
|
+
};
|
|
3258
|
+
readonly required: readonly ["$ref"];
|
|
3259
|
+
readonly additionalProperties: false;
|
|
3260
|
+
};
|
|
3261
|
+
readonly uniqueItems: {
|
|
3262
|
+
readonly type: "boolean";
|
|
3263
|
+
};
|
|
3264
|
+
readonly minItems: {
|
|
3265
|
+
readonly type: "integer";
|
|
3266
|
+
};
|
|
3267
|
+
readonly maxItems: {
|
|
3268
|
+
readonly type: "integer";
|
|
3269
|
+
};
|
|
3270
|
+
};
|
|
3271
|
+
readonly required: readonly ["type", "title", "items"];
|
|
3272
|
+
readonly additionalProperties: false;
|
|
3273
|
+
}, {
|
|
3274
|
+
readonly type: "object";
|
|
3275
|
+
readonly properties: {
|
|
3276
|
+
readonly title: {
|
|
3277
|
+
readonly type: "string";
|
|
3278
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
3279
|
+
};
|
|
3280
|
+
readonly type: {
|
|
3281
|
+
readonly type: "string";
|
|
3282
|
+
readonly const: "object";
|
|
3283
|
+
};
|
|
3284
|
+
readonly properties: {
|
|
3285
|
+
readonly type: "object";
|
|
3286
|
+
readonly patternProperties: {
|
|
3287
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3288
|
+
readonly type: "object";
|
|
3289
|
+
readonly properties: {
|
|
3290
|
+
readonly $ref: {
|
|
3291
|
+
readonly type: "string";
|
|
3292
|
+
};
|
|
3293
|
+
};
|
|
3294
|
+
readonly required: readonly ["$ref"];
|
|
3295
|
+
readonly additionalProperties: false;
|
|
3296
|
+
};
|
|
3297
|
+
};
|
|
3298
|
+
readonly additionalProperties: false;
|
|
3299
|
+
};
|
|
3300
|
+
readonly required: {
|
|
3301
|
+
readonly type: "array";
|
|
3302
|
+
readonly items: {
|
|
3303
|
+
readonly type: "string";
|
|
3304
|
+
};
|
|
3305
|
+
};
|
|
3306
|
+
readonly additionalProperties: {
|
|
3307
|
+
readonly type: "boolean";
|
|
3308
|
+
};
|
|
3309
|
+
};
|
|
3310
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
3311
|
+
readonly additionalProperties: false;
|
|
3312
|
+
}, {
|
|
3313
|
+
readonly type: "object";
|
|
3314
|
+
readonly properties: {
|
|
3315
|
+
readonly type: {
|
|
3316
|
+
readonly type: "string";
|
|
3317
|
+
readonly const: "object";
|
|
3318
|
+
};
|
|
3319
|
+
readonly title: {
|
|
3320
|
+
readonly type: "string";
|
|
3321
|
+
readonly const: "JSONObject";
|
|
3322
|
+
};
|
|
3323
|
+
readonly additionalProperties: {
|
|
3324
|
+
readonly type: "boolean";
|
|
3325
|
+
readonly const: true;
|
|
3326
|
+
};
|
|
3327
|
+
};
|
|
3328
|
+
readonly required: readonly ["type", "title", "additionalProperties"];
|
|
3329
|
+
readonly additionalProperties: false;
|
|
3330
|
+
}];
|
|
3331
|
+
}];
|
|
3332
|
+
};
|
|
3333
|
+
};
|
|
3334
|
+
readonly type: {
|
|
3335
|
+
readonly type: "string";
|
|
3336
|
+
readonly const: "object";
|
|
3337
|
+
};
|
|
3338
|
+
readonly properties: {
|
|
3339
|
+
readonly type: "object";
|
|
3340
|
+
readonly patternProperties: {
|
|
3341
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
3342
|
+
readonly type: "object";
|
|
3343
|
+
readonly properties: {
|
|
3344
|
+
readonly $ref: {
|
|
3345
|
+
readonly type: "string";
|
|
3346
|
+
};
|
|
3347
|
+
};
|
|
3348
|
+
readonly required: readonly ["$ref"];
|
|
3349
|
+
readonly additionalProperties: false;
|
|
3197
3350
|
};
|
|
3198
3351
|
};
|
|
3199
|
-
readonly
|
|
3352
|
+
readonly additionalProperties: false;
|
|
3353
|
+
};
|
|
3354
|
+
readonly required: {
|
|
3355
|
+
readonly type: "array";
|
|
3356
|
+
readonly items: {
|
|
3200
3357
|
readonly type: "string";
|
|
3201
|
-
readonly const: "object";
|
|
3202
3358
|
};
|
|
3359
|
+
};
|
|
3360
|
+
readonly additionalProperties: {
|
|
3361
|
+
readonly type: "boolean";
|
|
3362
|
+
};
|
|
3363
|
+
};
|
|
3364
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
3365
|
+
readonly additionalProperties: false;
|
|
3366
|
+
};
|
|
3367
|
+
readonly fieldsMeta: {
|
|
3368
|
+
readonly type: "object";
|
|
3369
|
+
readonly additionalProperties: {
|
|
3370
|
+
readonly anyOf: readonly [{
|
|
3371
|
+
readonly type: "object";
|
|
3203
3372
|
readonly properties: {
|
|
3204
|
-
readonly type:
|
|
3205
|
-
|
|
3206
|
-
readonly
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
readonly type: "string";
|
|
3211
|
-
};
|
|
3212
|
-
};
|
|
3213
|
-
readonly required: readonly ["$ref"];
|
|
3214
|
-
readonly additionalProperties: false;
|
|
3215
|
-
};
|
|
3373
|
+
readonly type: {
|
|
3374
|
+
readonly type: "string";
|
|
3375
|
+
readonly const: "account";
|
|
3376
|
+
};
|
|
3377
|
+
readonly searchable: {
|
|
3378
|
+
readonly type: "boolean";
|
|
3216
3379
|
};
|
|
3217
|
-
readonly additionalProperties: false;
|
|
3218
3380
|
};
|
|
3219
|
-
readonly required:
|
|
3220
|
-
|
|
3221
|
-
|
|
3381
|
+
readonly required: readonly ["type"];
|
|
3382
|
+
readonly additionalProperties: false;
|
|
3383
|
+
}, {
|
|
3384
|
+
readonly type: "object";
|
|
3385
|
+
readonly properties: {
|
|
3386
|
+
readonly type: {
|
|
3222
3387
|
readonly type: "string";
|
|
3388
|
+
readonly const: "attachment";
|
|
3389
|
+
};
|
|
3390
|
+
readonly searchable: {
|
|
3391
|
+
readonly type: "boolean";
|
|
3223
3392
|
};
|
|
3224
3393
|
};
|
|
3225
|
-
readonly
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
readonly type: "object";
|
|
3234
|
-
readonly additionalProperties: {
|
|
3235
|
-
readonly anyOf: readonly [{
|
|
3236
|
-
readonly type: "object";
|
|
3237
|
-
readonly properties: {
|
|
3238
|
-
readonly type: {
|
|
3239
|
-
readonly type: "string";
|
|
3240
|
-
readonly const: "account";
|
|
3241
|
-
};
|
|
3394
|
+
readonly required: readonly ["type"];
|
|
3395
|
+
readonly additionalProperties: false;
|
|
3396
|
+
}, {
|
|
3397
|
+
readonly type: "object";
|
|
3398
|
+
readonly properties: {
|
|
3399
|
+
readonly type: {
|
|
3400
|
+
readonly type: "string";
|
|
3401
|
+
readonly const: "document";
|
|
3242
3402
|
};
|
|
3243
|
-
readonly
|
|
3244
|
-
|
|
3245
|
-
}, {
|
|
3246
|
-
readonly type: "object";
|
|
3247
|
-
readonly properties: {
|
|
3248
|
-
readonly type: {
|
|
3403
|
+
readonly model: {
|
|
3404
|
+
readonly anyOf: readonly [{
|
|
3249
3405
|
readonly type: "string";
|
|
3250
|
-
|
|
3251
|
-
|
|
3406
|
+
}, {
|
|
3407
|
+
readonly type: "null";
|
|
3408
|
+
}];
|
|
3252
3409
|
};
|
|
3253
|
-
readonly
|
|
3254
|
-
|
|
3255
|
-
}, {
|
|
3256
|
-
readonly type: "object";
|
|
3257
|
-
readonly properties: {
|
|
3258
|
-
readonly type: {
|
|
3259
|
-
readonly type: "string";
|
|
3260
|
-
readonly const: "document";
|
|
3261
|
-
};
|
|
3262
|
-
readonly model: {
|
|
3263
|
-
readonly anyOf: readonly [{
|
|
3264
|
-
readonly type: "string";
|
|
3265
|
-
}, {
|
|
3266
|
-
readonly type: "null";
|
|
3267
|
-
}];
|
|
3268
|
-
};
|
|
3410
|
+
readonly searchable: {
|
|
3411
|
+
readonly type: "boolean";
|
|
3269
3412
|
};
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
};
|
|
3413
|
+
};
|
|
3414
|
+
readonly required: readonly ["type", "model"];
|
|
3415
|
+
readonly additionalProperties: false;
|
|
3416
|
+
}];
|
|
3274
3417
|
};
|
|
3275
3418
|
};
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
};
|
|
3280
|
-
}
|
|
3281
|
-
readonly type: "null";
|
|
3282
|
-
}];
|
|
3419
|
+
};
|
|
3420
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
3421
|
+
readonly additionalProperties: false;
|
|
3422
|
+
}];
|
|
3423
|
+
};
|
|
3283
3424
|
};
|
|
3284
3425
|
readonly aliases: {
|
|
3285
3426
|
readonly type: "object";
|
|
@@ -3288,7 +3429,7 @@ export declare const loadGraphResult: {
|
|
|
3288
3429
|
};
|
|
3289
3430
|
};
|
|
3290
3431
|
};
|
|
3291
|
-
readonly required: readonly ["
|
|
3432
|
+
readonly required: readonly ["record", "aliases"];
|
|
3292
3433
|
readonly additionalProperties: false;
|
|
3293
3434
|
};
|
|
3294
3435
|
export type LoadGraphResult = FromSchema<typeof loadGraphResult>;
|
|
@@ -3770,6 +3911,9 @@ export declare const graphProtocol: {
|
|
|
3770
3911
|
readonly type: "string";
|
|
3771
3912
|
readonly const: "account";
|
|
3772
3913
|
};
|
|
3914
|
+
readonly searchable: {
|
|
3915
|
+
readonly type: "boolean";
|
|
3916
|
+
};
|
|
3773
3917
|
};
|
|
3774
3918
|
readonly required: readonly ["type"];
|
|
3775
3919
|
readonly additionalProperties: false;
|
|
@@ -3780,6 +3924,9 @@ export declare const graphProtocol: {
|
|
|
3780
3924
|
readonly type: "string";
|
|
3781
3925
|
readonly const: "attachment";
|
|
3782
3926
|
};
|
|
3927
|
+
readonly searchable: {
|
|
3928
|
+
readonly type: "boolean";
|
|
3929
|
+
};
|
|
3783
3930
|
};
|
|
3784
3931
|
readonly required: readonly ["type"];
|
|
3785
3932
|
readonly additionalProperties: false;
|
|
@@ -3797,6 +3944,9 @@ export declare const graphProtocol: {
|
|
|
3797
3944
|
readonly type: "null";
|
|
3798
3945
|
}];
|
|
3799
3946
|
};
|
|
3947
|
+
readonly searchable: {
|
|
3948
|
+
readonly type: "boolean";
|
|
3949
|
+
};
|
|
3800
3950
|
};
|
|
3801
3951
|
readonly required: readonly ["type", "model"];
|
|
3802
3952
|
readonly additionalProperties: false;
|
|
@@ -4120,6 +4270,9 @@ export declare const graphProtocol: {
|
|
|
4120
4270
|
readonly type: "string";
|
|
4121
4271
|
readonly const: "account";
|
|
4122
4272
|
};
|
|
4273
|
+
readonly searchable: {
|
|
4274
|
+
readonly type: "boolean";
|
|
4275
|
+
};
|
|
4123
4276
|
};
|
|
4124
4277
|
readonly required: readonly ["type"];
|
|
4125
4278
|
readonly additionalProperties: false;
|
|
@@ -4130,6 +4283,9 @@ export declare const graphProtocol: {
|
|
|
4130
4283
|
readonly type: "string";
|
|
4131
4284
|
readonly const: "attachment";
|
|
4132
4285
|
};
|
|
4286
|
+
readonly searchable: {
|
|
4287
|
+
readonly type: "boolean";
|
|
4288
|
+
};
|
|
4133
4289
|
};
|
|
4134
4290
|
readonly required: readonly ["type"];
|
|
4135
4291
|
readonly additionalProperties: false;
|
|
@@ -4147,6 +4303,9 @@ export declare const graphProtocol: {
|
|
|
4147
4303
|
readonly type: "null";
|
|
4148
4304
|
}];
|
|
4149
4305
|
};
|
|
4306
|
+
readonly searchable: {
|
|
4307
|
+
readonly type: "boolean";
|
|
4308
|
+
};
|
|
4150
4309
|
};
|
|
4151
4310
|
readonly required: readonly ["type", "model"];
|
|
4152
4311
|
readonly additionalProperties: false;
|
|
@@ -4476,6 +4635,9 @@ export declare const graphProtocol: {
|
|
|
4476
4635
|
readonly type: "string";
|
|
4477
4636
|
readonly const: "account";
|
|
4478
4637
|
};
|
|
4638
|
+
readonly searchable: {
|
|
4639
|
+
readonly type: "boolean";
|
|
4640
|
+
};
|
|
4479
4641
|
};
|
|
4480
4642
|
readonly required: readonly ["type"];
|
|
4481
4643
|
readonly additionalProperties: false;
|
|
@@ -4486,6 +4648,9 @@ export declare const graphProtocol: {
|
|
|
4486
4648
|
readonly type: "string";
|
|
4487
4649
|
readonly const: "attachment";
|
|
4488
4650
|
};
|
|
4651
|
+
readonly searchable: {
|
|
4652
|
+
readonly type: "boolean";
|
|
4653
|
+
};
|
|
4489
4654
|
};
|
|
4490
4655
|
readonly required: readonly ["type"];
|
|
4491
4656
|
readonly additionalProperties: false;
|
|
@@ -4503,6 +4668,9 @@ export declare const graphProtocol: {
|
|
|
4503
4668
|
readonly type: "null";
|
|
4504
4669
|
}];
|
|
4505
4670
|
};
|
|
4671
|
+
readonly searchable: {
|
|
4672
|
+
readonly type: "boolean";
|
|
4673
|
+
};
|
|
4506
4674
|
};
|
|
4507
4675
|
readonly required: readonly ["type", "model"];
|
|
4508
4676
|
readonly additionalProperties: false;
|
|
@@ -4536,6 +4704,21 @@ export declare const graphProtocol: {
|
|
|
4536
4704
|
readonly name: {
|
|
4537
4705
|
readonly type: "string";
|
|
4538
4706
|
};
|
|
4707
|
+
readonly search: {
|
|
4708
|
+
readonly type: "object";
|
|
4709
|
+
readonly additionalProperties: {
|
|
4710
|
+
readonly type: "object";
|
|
4711
|
+
readonly properties: {
|
|
4712
|
+
readonly fields: {
|
|
4713
|
+
readonly type: "array";
|
|
4714
|
+
readonly items: {
|
|
4715
|
+
readonly type: "string";
|
|
4716
|
+
};
|
|
4717
|
+
};
|
|
4718
|
+
};
|
|
4719
|
+
readonly additionalProperties: false;
|
|
4720
|
+
};
|
|
4721
|
+
};
|
|
4539
4722
|
};
|
|
4540
4723
|
readonly required: readonly ["clusters"];
|
|
4541
4724
|
readonly additionalProperties: false;
|
|
@@ -4546,7 +4729,7 @@ export declare const graphProtocol: {
|
|
|
4546
4729
|
readonly id: {
|
|
4547
4730
|
readonly type: "string";
|
|
4548
4731
|
};
|
|
4549
|
-
readonly
|
|
4732
|
+
readonly record: {
|
|
4550
4733
|
readonly type: "object";
|
|
4551
4734
|
readonly additionalProperties: {
|
|
4552
4735
|
readonly $id: "urn:kubun:protocol:model:document";
|
|
@@ -4864,6 +5047,9 @@ export declare const graphProtocol: {
|
|
|
4864
5047
|
readonly type: "string";
|
|
4865
5048
|
readonly const: "account";
|
|
4866
5049
|
};
|
|
5050
|
+
readonly searchable: {
|
|
5051
|
+
readonly type: "boolean";
|
|
5052
|
+
};
|
|
4867
5053
|
};
|
|
4868
5054
|
readonly required: readonly ["type"];
|
|
4869
5055
|
readonly additionalProperties: false;
|
|
@@ -4874,6 +5060,9 @@ export declare const graphProtocol: {
|
|
|
4874
5060
|
readonly type: "string";
|
|
4875
5061
|
readonly const: "attachment";
|
|
4876
5062
|
};
|
|
5063
|
+
readonly searchable: {
|
|
5064
|
+
readonly type: "boolean";
|
|
5065
|
+
};
|
|
4877
5066
|
};
|
|
4878
5067
|
readonly required: readonly ["type"];
|
|
4879
5068
|
readonly additionalProperties: false;
|
|
@@ -4891,6 +5080,9 @@ export declare const graphProtocol: {
|
|
|
4891
5080
|
readonly type: "null";
|
|
4892
5081
|
}];
|
|
4893
5082
|
};
|
|
5083
|
+
readonly searchable: {
|
|
5084
|
+
readonly type: "boolean";
|
|
5085
|
+
};
|
|
4894
5086
|
};
|
|
4895
5087
|
readonly required: readonly ["type", "model"];
|
|
4896
5088
|
readonly additionalProperties: false;
|
|
@@ -5214,6 +5406,9 @@ export declare const graphProtocol: {
|
|
|
5214
5406
|
readonly type: "string";
|
|
5215
5407
|
readonly const: "account";
|
|
5216
5408
|
};
|
|
5409
|
+
readonly searchable: {
|
|
5410
|
+
readonly type: "boolean";
|
|
5411
|
+
};
|
|
5217
5412
|
};
|
|
5218
5413
|
readonly required: readonly ["type"];
|
|
5219
5414
|
readonly additionalProperties: false;
|
|
@@ -5224,6 +5419,9 @@ export declare const graphProtocol: {
|
|
|
5224
5419
|
readonly type: "string";
|
|
5225
5420
|
readonly const: "attachment";
|
|
5226
5421
|
};
|
|
5422
|
+
readonly searchable: {
|
|
5423
|
+
readonly type: "boolean";
|
|
5424
|
+
};
|
|
5227
5425
|
};
|
|
5228
5426
|
readonly required: readonly ["type"];
|
|
5229
5427
|
readonly additionalProperties: false;
|
|
@@ -5241,6 +5439,9 @@ export declare const graphProtocol: {
|
|
|
5241
5439
|
readonly type: "null";
|
|
5242
5440
|
}];
|
|
5243
5441
|
};
|
|
5442
|
+
readonly searchable: {
|
|
5443
|
+
readonly type: "boolean";
|
|
5444
|
+
};
|
|
5244
5445
|
};
|
|
5245
5446
|
readonly required: readonly ["type", "model"];
|
|
5246
5447
|
readonly additionalProperties: false;
|
|
@@ -5570,6 +5771,9 @@ export declare const graphProtocol: {
|
|
|
5570
5771
|
readonly type: "string";
|
|
5571
5772
|
readonly const: "account";
|
|
5572
5773
|
};
|
|
5774
|
+
readonly searchable: {
|
|
5775
|
+
readonly type: "boolean";
|
|
5776
|
+
};
|
|
5573
5777
|
};
|
|
5574
5778
|
readonly required: readonly ["type"];
|
|
5575
5779
|
readonly additionalProperties: false;
|
|
@@ -5580,6 +5784,9 @@ export declare const graphProtocol: {
|
|
|
5580
5784
|
readonly type: "string";
|
|
5581
5785
|
readonly const: "attachment";
|
|
5582
5786
|
};
|
|
5787
|
+
readonly searchable: {
|
|
5788
|
+
readonly type: "boolean";
|
|
5789
|
+
};
|
|
5583
5790
|
};
|
|
5584
5791
|
readonly required: readonly ["type"];
|
|
5585
5792
|
readonly additionalProperties: false;
|
|
@@ -5597,6 +5804,9 @@ export declare const graphProtocol: {
|
|
|
5597
5804
|
readonly type: "null";
|
|
5598
5805
|
}];
|
|
5599
5806
|
};
|
|
5807
|
+
readonly searchable: {
|
|
5808
|
+
readonly type: "boolean";
|
|
5809
|
+
};
|
|
5600
5810
|
};
|
|
5601
5811
|
readonly required: readonly ["type", "model"];
|
|
5602
5812
|
readonly additionalProperties: false;
|
|
@@ -5609,8 +5819,29 @@ export declare const graphProtocol: {
|
|
|
5609
5819
|
}];
|
|
5610
5820
|
};
|
|
5611
5821
|
};
|
|
5822
|
+
readonly aliases: {
|
|
5823
|
+
readonly type: "object";
|
|
5824
|
+
readonly additionalProperties: {
|
|
5825
|
+
readonly type: "string";
|
|
5826
|
+
};
|
|
5827
|
+
};
|
|
5828
|
+
readonly search: {
|
|
5829
|
+
readonly type: "object";
|
|
5830
|
+
readonly additionalProperties: {
|
|
5831
|
+
readonly type: "object";
|
|
5832
|
+
readonly properties: {
|
|
5833
|
+
readonly fields: {
|
|
5834
|
+
readonly type: "array";
|
|
5835
|
+
readonly items: {
|
|
5836
|
+
readonly type: "string";
|
|
5837
|
+
};
|
|
5838
|
+
};
|
|
5839
|
+
};
|
|
5840
|
+
readonly additionalProperties: false;
|
|
5841
|
+
};
|
|
5842
|
+
};
|
|
5612
5843
|
};
|
|
5613
|
-
readonly required: readonly ["id", "
|
|
5844
|
+
readonly required: readonly ["id", "record", "aliases"];
|
|
5614
5845
|
readonly additionalProperties: false;
|
|
5615
5846
|
};
|
|
5616
5847
|
};
|
|
@@ -5655,66 +5886,129 @@ export declare const graphProtocol: {
|
|
|
5655
5886
|
readonly result: {
|
|
5656
5887
|
readonly type: "object";
|
|
5657
5888
|
readonly properties: {
|
|
5658
|
-
readonly
|
|
5659
|
-
readonly
|
|
5660
|
-
|
|
5661
|
-
readonly
|
|
5662
|
-
|
|
5663
|
-
readonly
|
|
5664
|
-
|
|
5665
|
-
readonly
|
|
5666
|
-
readonly
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
readonly
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
readonly
|
|
5889
|
+
readonly record: {
|
|
5890
|
+
readonly type: "object";
|
|
5891
|
+
readonly additionalProperties: {
|
|
5892
|
+
readonly $id: "urn:kubun:protocol:model:document";
|
|
5893
|
+
readonly anyOf: readonly [{
|
|
5894
|
+
readonly type: "object";
|
|
5895
|
+
readonly properties: {
|
|
5896
|
+
readonly behavior: {
|
|
5897
|
+
readonly type: "string";
|
|
5898
|
+
readonly const: "default";
|
|
5899
|
+
};
|
|
5900
|
+
readonly name: {
|
|
5901
|
+
readonly type: "string";
|
|
5902
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
5903
|
+
};
|
|
5904
|
+
readonly version: {
|
|
5905
|
+
readonly type: "string";
|
|
5906
|
+
readonly const: "1.0";
|
|
5907
|
+
};
|
|
5908
|
+
readonly interfaces: {
|
|
5909
|
+
readonly type: "array";
|
|
5910
|
+
readonly items: {
|
|
5675
5911
|
readonly type: "string";
|
|
5676
|
-
readonly const: "1.0";
|
|
5677
|
-
};
|
|
5678
|
-
readonly interfaces: {
|
|
5679
|
-
readonly type: "array";
|
|
5680
|
-
readonly items: {
|
|
5681
|
-
readonly type: "string";
|
|
5682
|
-
};
|
|
5683
5912
|
};
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5913
|
+
};
|
|
5914
|
+
readonly schema: {
|
|
5915
|
+
readonly type: "object";
|
|
5916
|
+
readonly properties: {
|
|
5917
|
+
readonly $defs: {
|
|
5918
|
+
readonly type: "object";
|
|
5919
|
+
readonly additionalProperties: {
|
|
5920
|
+
readonly anyOf: readonly [{
|
|
5690
5921
|
readonly anyOf: readonly [{
|
|
5922
|
+
readonly type: "object";
|
|
5923
|
+
readonly properties: {
|
|
5924
|
+
readonly type: {
|
|
5925
|
+
readonly type: "string";
|
|
5926
|
+
readonly const: "boolean";
|
|
5927
|
+
};
|
|
5928
|
+
readonly default: {
|
|
5929
|
+
readonly type: "boolean";
|
|
5930
|
+
};
|
|
5931
|
+
};
|
|
5932
|
+
readonly required: readonly ["type"];
|
|
5933
|
+
readonly additionalProperties: false;
|
|
5934
|
+
}, {
|
|
5935
|
+
readonly type: "object";
|
|
5936
|
+
readonly properties: {
|
|
5937
|
+
readonly type: {
|
|
5938
|
+
readonly type: "string";
|
|
5939
|
+
readonly const: "integer";
|
|
5940
|
+
};
|
|
5941
|
+
readonly default: {
|
|
5942
|
+
readonly type: "integer";
|
|
5943
|
+
};
|
|
5944
|
+
readonly minimum: {
|
|
5945
|
+
readonly type: "integer";
|
|
5946
|
+
};
|
|
5947
|
+
readonly maximum: {
|
|
5948
|
+
readonly type: "integer";
|
|
5949
|
+
};
|
|
5950
|
+
};
|
|
5951
|
+
readonly required: readonly ["type"];
|
|
5952
|
+
readonly additionalProperties: false;
|
|
5953
|
+
}, {
|
|
5954
|
+
readonly type: "object";
|
|
5955
|
+
readonly properties: {
|
|
5956
|
+
readonly type: {
|
|
5957
|
+
readonly type: "string";
|
|
5958
|
+
readonly const: "number";
|
|
5959
|
+
};
|
|
5960
|
+
readonly default: {
|
|
5961
|
+
readonly type: "number";
|
|
5962
|
+
};
|
|
5963
|
+
readonly min: {
|
|
5964
|
+
readonly type: "number";
|
|
5965
|
+
};
|
|
5966
|
+
readonly max: {
|
|
5967
|
+
readonly type: "number";
|
|
5968
|
+
};
|
|
5969
|
+
};
|
|
5970
|
+
readonly required: readonly ["type"];
|
|
5971
|
+
readonly additionalProperties: false;
|
|
5972
|
+
}, {
|
|
5691
5973
|
readonly anyOf: readonly [{
|
|
5692
5974
|
readonly type: "object";
|
|
5693
5975
|
readonly properties: {
|
|
5694
5976
|
readonly type: {
|
|
5695
5977
|
readonly type: "string";
|
|
5696
|
-
readonly const: "
|
|
5978
|
+
readonly const: "string";
|
|
5979
|
+
};
|
|
5980
|
+
readonly title: {
|
|
5981
|
+
readonly type: "string";
|
|
5982
|
+
};
|
|
5983
|
+
readonly const: {
|
|
5984
|
+
readonly type: "string";
|
|
5697
5985
|
};
|
|
5698
5986
|
readonly default: {
|
|
5699
|
-
readonly type: "
|
|
5987
|
+
readonly type: "string";
|
|
5700
5988
|
};
|
|
5701
5989
|
};
|
|
5702
|
-
readonly required: readonly ["type"];
|
|
5990
|
+
readonly required: readonly ["type", "const"];
|
|
5703
5991
|
readonly additionalProperties: false;
|
|
5704
5992
|
}, {
|
|
5705
5993
|
readonly type: "object";
|
|
5706
5994
|
readonly properties: {
|
|
5707
5995
|
readonly type: {
|
|
5708
5996
|
readonly type: "string";
|
|
5709
|
-
readonly const: "
|
|
5997
|
+
readonly const: "string";
|
|
5998
|
+
};
|
|
5999
|
+
readonly title: {
|
|
6000
|
+
readonly type: "string";
|
|
6001
|
+
};
|
|
6002
|
+
readonly pattern: {
|
|
6003
|
+
readonly type: "string";
|
|
5710
6004
|
};
|
|
5711
6005
|
readonly default: {
|
|
5712
|
-
readonly type: "
|
|
6006
|
+
readonly type: "string";
|
|
5713
6007
|
};
|
|
5714
|
-
readonly
|
|
6008
|
+
readonly minLength: {
|
|
5715
6009
|
readonly type: "integer";
|
|
5716
6010
|
};
|
|
5717
|
-
readonly
|
|
6011
|
+
readonly maxLength: {
|
|
5718
6012
|
readonly type: "integer";
|
|
5719
6013
|
};
|
|
5720
6014
|
};
|
|
@@ -5725,346 +6019,355 @@ export declare const graphProtocol: {
|
|
|
5725
6019
|
readonly properties: {
|
|
5726
6020
|
readonly type: {
|
|
5727
6021
|
readonly type: "string";
|
|
5728
|
-
readonly const: "
|
|
5729
|
-
};
|
|
5730
|
-
readonly default: {
|
|
5731
|
-
readonly type: "number";
|
|
5732
|
-
};
|
|
5733
|
-
readonly min: {
|
|
5734
|
-
readonly type: "number";
|
|
5735
|
-
};
|
|
5736
|
-
readonly max: {
|
|
5737
|
-
readonly type: "number";
|
|
5738
|
-
};
|
|
5739
|
-
};
|
|
5740
|
-
readonly required: readonly ["type"];
|
|
5741
|
-
readonly additionalProperties: false;
|
|
5742
|
-
}, {
|
|
5743
|
-
readonly anyOf: readonly [{
|
|
5744
|
-
readonly type: "object";
|
|
5745
|
-
readonly properties: {
|
|
5746
|
-
readonly type: {
|
|
5747
|
-
readonly type: "string";
|
|
5748
|
-
readonly const: "string";
|
|
5749
|
-
};
|
|
5750
|
-
readonly title: {
|
|
5751
|
-
readonly type: "string";
|
|
5752
|
-
};
|
|
5753
|
-
readonly const: {
|
|
5754
|
-
readonly type: "string";
|
|
5755
|
-
};
|
|
5756
|
-
readonly default: {
|
|
5757
|
-
readonly type: "string";
|
|
5758
|
-
};
|
|
6022
|
+
readonly const: "string";
|
|
5759
6023
|
};
|
|
5760
|
-
readonly
|
|
5761
|
-
|
|
5762
|
-
}, {
|
|
5763
|
-
readonly type: "object";
|
|
5764
|
-
readonly properties: {
|
|
5765
|
-
readonly type: {
|
|
5766
|
-
readonly type: "string";
|
|
5767
|
-
readonly const: "string";
|
|
5768
|
-
};
|
|
5769
|
-
readonly title: {
|
|
5770
|
-
readonly type: "string";
|
|
5771
|
-
};
|
|
5772
|
-
readonly pattern: {
|
|
5773
|
-
readonly type: "string";
|
|
5774
|
-
};
|
|
5775
|
-
readonly default: {
|
|
5776
|
-
readonly type: "string";
|
|
5777
|
-
};
|
|
5778
|
-
readonly minLength: {
|
|
5779
|
-
readonly type: "integer";
|
|
5780
|
-
};
|
|
5781
|
-
readonly maxLength: {
|
|
5782
|
-
readonly type: "integer";
|
|
5783
|
-
};
|
|
6024
|
+
readonly title: {
|
|
6025
|
+
readonly type: "string";
|
|
5784
6026
|
};
|
|
5785
|
-
readonly
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
readonly type: "object";
|
|
5789
|
-
readonly properties: {
|
|
5790
|
-
readonly type: {
|
|
5791
|
-
readonly type: "string";
|
|
5792
|
-
readonly const: "string";
|
|
5793
|
-
};
|
|
5794
|
-
readonly title: {
|
|
5795
|
-
readonly type: "string";
|
|
5796
|
-
};
|
|
5797
|
-
readonly enum: {
|
|
5798
|
-
readonly type: "array";
|
|
5799
|
-
readonly items: {
|
|
5800
|
-
readonly type: "string";
|
|
5801
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
5802
|
-
};
|
|
5803
|
-
};
|
|
5804
|
-
readonly default: {
|
|
6027
|
+
readonly enum: {
|
|
6028
|
+
readonly type: "array";
|
|
6029
|
+
readonly items: {
|
|
5805
6030
|
readonly type: "string";
|
|
5806
6031
|
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
5807
6032
|
};
|
|
5808
6033
|
};
|
|
5809
|
-
readonly
|
|
5810
|
-
|
|
5811
|
-
|
|
5812
|
-
readonly type: "object";
|
|
5813
|
-
readonly properties: {
|
|
5814
|
-
readonly type: {
|
|
5815
|
-
readonly type: "string";
|
|
5816
|
-
readonly const: "string";
|
|
5817
|
-
};
|
|
5818
|
-
readonly format: {
|
|
5819
|
-
readonly type: "string";
|
|
5820
|
-
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
5821
|
-
};
|
|
5822
|
-
readonly title: {
|
|
5823
|
-
readonly type: "string";
|
|
5824
|
-
};
|
|
5825
|
-
readonly default: {
|
|
5826
|
-
readonly type: "string";
|
|
5827
|
-
};
|
|
5828
|
-
readonly minLength: {
|
|
5829
|
-
readonly type: "integer";
|
|
5830
|
-
};
|
|
5831
|
-
readonly maxLength: {
|
|
5832
|
-
readonly type: "integer";
|
|
5833
|
-
};
|
|
6034
|
+
readonly default: {
|
|
6035
|
+
readonly type: "string";
|
|
6036
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
5834
6037
|
};
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
|
|
5838
|
-
}
|
|
5839
|
-
}, {
|
|
5840
|
-
readonly anyOf: readonly [{
|
|
6038
|
+
};
|
|
6039
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
6040
|
+
readonly additionalProperties: false;
|
|
6041
|
+
}, {
|
|
5841
6042
|
readonly type: "object";
|
|
5842
6043
|
readonly properties: {
|
|
5843
6044
|
readonly type: {
|
|
5844
6045
|
readonly type: "string";
|
|
5845
|
-
readonly const: "
|
|
6046
|
+
readonly const: "string";
|
|
5846
6047
|
};
|
|
5847
|
-
readonly
|
|
6048
|
+
readonly format: {
|
|
5848
6049
|
readonly type: "string";
|
|
5849
|
-
readonly
|
|
6050
|
+
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
5850
6051
|
};
|
|
5851
|
-
readonly
|
|
5852
|
-
readonly type: "
|
|
5853
|
-
readonly properties: {
|
|
5854
|
-
readonly $ref: {
|
|
5855
|
-
readonly type: "string";
|
|
5856
|
-
};
|
|
5857
|
-
};
|
|
5858
|
-
readonly required: readonly ["$ref"];
|
|
5859
|
-
readonly additionalProperties: false;
|
|
6052
|
+
readonly title: {
|
|
6053
|
+
readonly type: "string";
|
|
5860
6054
|
};
|
|
5861
|
-
readonly
|
|
5862
|
-
readonly type: "
|
|
6055
|
+
readonly default: {
|
|
6056
|
+
readonly type: "string";
|
|
5863
6057
|
};
|
|
5864
|
-
readonly
|
|
6058
|
+
readonly minLength: {
|
|
5865
6059
|
readonly type: "integer";
|
|
5866
6060
|
};
|
|
5867
|
-
readonly
|
|
6061
|
+
readonly maxLength: {
|
|
5868
6062
|
readonly type: "integer";
|
|
5869
6063
|
};
|
|
5870
6064
|
};
|
|
5871
|
-
readonly required: readonly ["type", "
|
|
6065
|
+
readonly required: readonly ["type", "format"];
|
|
5872
6066
|
readonly additionalProperties: false;
|
|
5873
|
-
}
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
5877
|
-
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
readonly type:
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
6067
|
+
}];
|
|
6068
|
+
}];
|
|
6069
|
+
}, {
|
|
6070
|
+
readonly anyOf: readonly [{
|
|
6071
|
+
readonly type: "object";
|
|
6072
|
+
readonly properties: {
|
|
6073
|
+
readonly type: {
|
|
6074
|
+
readonly type: "string";
|
|
6075
|
+
readonly const: "array";
|
|
6076
|
+
};
|
|
6077
|
+
readonly title: {
|
|
6078
|
+
readonly type: "string";
|
|
6079
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6080
|
+
};
|
|
6081
|
+
readonly items: {
|
|
6082
|
+
readonly type: "object";
|
|
5884
6083
|
readonly properties: {
|
|
5885
|
-
readonly
|
|
5886
|
-
readonly patternProperties: {
|
|
5887
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
5888
|
-
readonly type: "object";
|
|
5889
|
-
readonly properties: {
|
|
5890
|
-
readonly $ref: {
|
|
5891
|
-
readonly type: "string";
|
|
5892
|
-
};
|
|
5893
|
-
};
|
|
5894
|
-
readonly required: readonly ["$ref"];
|
|
5895
|
-
readonly additionalProperties: false;
|
|
5896
|
-
};
|
|
5897
|
-
};
|
|
5898
|
-
readonly additionalProperties: false;
|
|
5899
|
-
};
|
|
5900
|
-
readonly required: {
|
|
5901
|
-
readonly type: "array";
|
|
5902
|
-
readonly items: {
|
|
6084
|
+
readonly $ref: {
|
|
5903
6085
|
readonly type: "string";
|
|
5904
6086
|
};
|
|
5905
6087
|
};
|
|
5906
|
-
readonly
|
|
5907
|
-
|
|
5908
|
-
|
|
6088
|
+
readonly required: readonly ["$ref"];
|
|
6089
|
+
readonly additionalProperties: false;
|
|
6090
|
+
};
|
|
6091
|
+
readonly uniqueItems: {
|
|
6092
|
+
readonly type: "boolean";
|
|
6093
|
+
};
|
|
6094
|
+
readonly minItems: {
|
|
6095
|
+
readonly type: "integer";
|
|
6096
|
+
};
|
|
6097
|
+
readonly maxItems: {
|
|
6098
|
+
readonly type: "integer";
|
|
6099
|
+
};
|
|
6100
|
+
};
|
|
6101
|
+
readonly required: readonly ["type", "title", "items"];
|
|
6102
|
+
readonly additionalProperties: false;
|
|
6103
|
+
}, {
|
|
6104
|
+
readonly type: "object";
|
|
6105
|
+
readonly properties: {
|
|
6106
|
+
readonly title: {
|
|
6107
|
+
readonly type: "string";
|
|
6108
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6109
|
+
};
|
|
6110
|
+
readonly type: {
|
|
6111
|
+
readonly type: "string";
|
|
6112
|
+
readonly const: "object";
|
|
5909
6113
|
};
|
|
5910
|
-
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
5911
|
-
readonly additionalProperties: false;
|
|
5912
|
-
}, {
|
|
5913
|
-
readonly type: "object";
|
|
5914
6114
|
readonly properties: {
|
|
5915
|
-
readonly type:
|
|
5916
|
-
|
|
5917
|
-
readonly
|
|
6115
|
+
readonly type: "object";
|
|
6116
|
+
readonly patternProperties: {
|
|
6117
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6118
|
+
readonly type: "object";
|
|
6119
|
+
readonly properties: {
|
|
6120
|
+
readonly $ref: {
|
|
6121
|
+
readonly type: "string";
|
|
6122
|
+
};
|
|
6123
|
+
};
|
|
6124
|
+
readonly required: readonly ["$ref"];
|
|
6125
|
+
readonly additionalProperties: false;
|
|
6126
|
+
};
|
|
5918
6127
|
};
|
|
5919
|
-
readonly
|
|
6128
|
+
readonly additionalProperties: false;
|
|
6129
|
+
};
|
|
6130
|
+
readonly required: {
|
|
6131
|
+
readonly type: "array";
|
|
6132
|
+
readonly items: {
|
|
5920
6133
|
readonly type: "string";
|
|
5921
|
-
readonly const: "JSONObject";
|
|
5922
|
-
};
|
|
5923
|
-
readonly additionalProperties: {
|
|
5924
|
-
readonly type: "boolean";
|
|
5925
|
-
readonly const: true;
|
|
5926
6134
|
};
|
|
5927
6135
|
};
|
|
5928
|
-
readonly
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
5935
|
-
readonly type: "string";
|
|
5936
|
-
readonly const: "object";
|
|
5937
|
-
};
|
|
5938
|
-
readonly properties: {
|
|
5939
|
-
readonly type: "object";
|
|
5940
|
-
readonly patternProperties: {
|
|
5941
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6136
|
+
readonly additionalProperties: {
|
|
6137
|
+
readonly type: "boolean";
|
|
6138
|
+
};
|
|
6139
|
+
};
|
|
6140
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
6141
|
+
readonly additionalProperties: false;
|
|
6142
|
+
}, {
|
|
5942
6143
|
readonly type: "object";
|
|
5943
6144
|
readonly properties: {
|
|
5944
|
-
readonly
|
|
6145
|
+
readonly type: {
|
|
6146
|
+
readonly type: "string";
|
|
6147
|
+
readonly const: "object";
|
|
6148
|
+
};
|
|
6149
|
+
readonly title: {
|
|
5945
6150
|
readonly type: "string";
|
|
6151
|
+
readonly const: "JSONObject";
|
|
6152
|
+
};
|
|
6153
|
+
readonly additionalProperties: {
|
|
6154
|
+
readonly type: "boolean";
|
|
6155
|
+
readonly const: true;
|
|
5946
6156
|
};
|
|
5947
6157
|
};
|
|
5948
|
-
readonly required: readonly ["
|
|
6158
|
+
readonly required: readonly ["type", "title", "additionalProperties"];
|
|
5949
6159
|
readonly additionalProperties: false;
|
|
6160
|
+
}];
|
|
6161
|
+
}];
|
|
6162
|
+
};
|
|
6163
|
+
};
|
|
6164
|
+
readonly type: {
|
|
6165
|
+
readonly type: "string";
|
|
6166
|
+
readonly const: "object";
|
|
6167
|
+
};
|
|
6168
|
+
readonly properties: {
|
|
6169
|
+
readonly type: "object";
|
|
6170
|
+
readonly patternProperties: {
|
|
6171
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6172
|
+
readonly type: "object";
|
|
6173
|
+
readonly properties: {
|
|
6174
|
+
readonly $ref: {
|
|
6175
|
+
readonly type: "string";
|
|
6176
|
+
};
|
|
5950
6177
|
};
|
|
6178
|
+
readonly required: readonly ["$ref"];
|
|
6179
|
+
readonly additionalProperties: false;
|
|
5951
6180
|
};
|
|
5952
|
-
readonly additionalProperties: false;
|
|
5953
6181
|
};
|
|
5954
|
-
readonly
|
|
5955
|
-
|
|
5956
|
-
|
|
6182
|
+
readonly additionalProperties: false;
|
|
6183
|
+
};
|
|
6184
|
+
readonly required: {
|
|
6185
|
+
readonly type: "array";
|
|
6186
|
+
readonly items: {
|
|
6187
|
+
readonly type: "string";
|
|
6188
|
+
};
|
|
6189
|
+
};
|
|
6190
|
+
readonly additionalProperties: {
|
|
6191
|
+
readonly type: "boolean";
|
|
6192
|
+
};
|
|
6193
|
+
};
|
|
6194
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
6195
|
+
readonly additionalProperties: false;
|
|
6196
|
+
};
|
|
6197
|
+
readonly fieldsMeta: {
|
|
6198
|
+
readonly type: "object";
|
|
6199
|
+
readonly additionalProperties: {
|
|
6200
|
+
readonly anyOf: readonly [{
|
|
6201
|
+
readonly type: "object";
|
|
6202
|
+
readonly properties: {
|
|
6203
|
+
readonly type: {
|
|
5957
6204
|
readonly type: "string";
|
|
6205
|
+
readonly const: "account";
|
|
6206
|
+
};
|
|
6207
|
+
readonly searchable: {
|
|
6208
|
+
readonly type: "boolean";
|
|
5958
6209
|
};
|
|
5959
6210
|
};
|
|
5960
|
-
readonly
|
|
5961
|
-
|
|
6211
|
+
readonly required: readonly ["type"];
|
|
6212
|
+
readonly additionalProperties: false;
|
|
6213
|
+
}, {
|
|
6214
|
+
readonly type: "object";
|
|
6215
|
+
readonly properties: {
|
|
6216
|
+
readonly type: {
|
|
6217
|
+
readonly type: "string";
|
|
6218
|
+
readonly const: "attachment";
|
|
6219
|
+
};
|
|
6220
|
+
readonly searchable: {
|
|
6221
|
+
readonly type: "boolean";
|
|
6222
|
+
};
|
|
5962
6223
|
};
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
readonly type: "object";
|
|
5972
|
-
readonly properties: {
|
|
5973
|
-
readonly type: {
|
|
5974
|
-
readonly type: "string";
|
|
5975
|
-
readonly const: "account";
|
|
5976
|
-
};
|
|
6224
|
+
readonly required: readonly ["type"];
|
|
6225
|
+
readonly additionalProperties: false;
|
|
6226
|
+
}, {
|
|
6227
|
+
readonly type: "object";
|
|
6228
|
+
readonly properties: {
|
|
6229
|
+
readonly type: {
|
|
6230
|
+
readonly type: "string";
|
|
6231
|
+
readonly const: "document";
|
|
5977
6232
|
};
|
|
5978
|
-
readonly
|
|
5979
|
-
|
|
5980
|
-
}, {
|
|
5981
|
-
readonly type: "object";
|
|
5982
|
-
readonly properties: {
|
|
5983
|
-
readonly type: {
|
|
6233
|
+
readonly model: {
|
|
6234
|
+
readonly anyOf: readonly [{
|
|
5984
6235
|
readonly type: "string";
|
|
5985
|
-
|
|
5986
|
-
|
|
6236
|
+
}, {
|
|
6237
|
+
readonly type: "null";
|
|
6238
|
+
}];
|
|
5987
6239
|
};
|
|
5988
|
-
readonly
|
|
5989
|
-
|
|
5990
|
-
}, {
|
|
5991
|
-
readonly type: "object";
|
|
5992
|
-
readonly properties: {
|
|
5993
|
-
readonly type: {
|
|
5994
|
-
readonly type: "string";
|
|
5995
|
-
readonly const: "document";
|
|
5996
|
-
};
|
|
5997
|
-
readonly model: {
|
|
5998
|
-
readonly anyOf: readonly [{
|
|
5999
|
-
readonly type: "string";
|
|
6000
|
-
}, {
|
|
6001
|
-
readonly type: "null";
|
|
6002
|
-
}];
|
|
6003
|
-
};
|
|
6240
|
+
readonly searchable: {
|
|
6241
|
+
readonly type: "boolean";
|
|
6004
6242
|
};
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
};
|
|
6243
|
+
};
|
|
6244
|
+
readonly required: readonly ["type", "model"];
|
|
6245
|
+
readonly additionalProperties: false;
|
|
6246
|
+
}];
|
|
6009
6247
|
};
|
|
6010
6248
|
};
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
|
|
6249
|
+
};
|
|
6250
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
6251
|
+
readonly additionalProperties: false;
|
|
6252
|
+
}, {
|
|
6253
|
+
readonly type: "object";
|
|
6254
|
+
readonly properties: {
|
|
6255
|
+
readonly behavior: {
|
|
6256
|
+
readonly type: "string";
|
|
6257
|
+
readonly const: "interface";
|
|
6258
|
+
};
|
|
6259
|
+
readonly name: {
|
|
6260
|
+
readonly type: "string";
|
|
6261
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6262
|
+
};
|
|
6263
|
+
readonly version: {
|
|
6264
|
+
readonly type: "string";
|
|
6265
|
+
readonly const: "1.0";
|
|
6266
|
+
};
|
|
6267
|
+
readonly interfaces: {
|
|
6268
|
+
readonly type: "array";
|
|
6269
|
+
readonly items: {
|
|
6025
6270
|
readonly type: "string";
|
|
6026
|
-
readonly const: "1.0";
|
|
6027
|
-
};
|
|
6028
|
-
readonly interfaces: {
|
|
6029
|
-
readonly type: "array";
|
|
6030
|
-
readonly items: {
|
|
6031
|
-
readonly type: "string";
|
|
6032
|
-
};
|
|
6033
6271
|
};
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
|
|
6038
|
-
|
|
6039
|
-
|
|
6272
|
+
};
|
|
6273
|
+
readonly schema: {
|
|
6274
|
+
readonly type: "object";
|
|
6275
|
+
readonly properties: {
|
|
6276
|
+
readonly $defs: {
|
|
6277
|
+
readonly type: "object";
|
|
6278
|
+
readonly additionalProperties: {
|
|
6279
|
+
readonly anyOf: readonly [{
|
|
6040
6280
|
readonly anyOf: readonly [{
|
|
6281
|
+
readonly type: "object";
|
|
6282
|
+
readonly properties: {
|
|
6283
|
+
readonly type: {
|
|
6284
|
+
readonly type: "string";
|
|
6285
|
+
readonly const: "boolean";
|
|
6286
|
+
};
|
|
6287
|
+
readonly default: {
|
|
6288
|
+
readonly type: "boolean";
|
|
6289
|
+
};
|
|
6290
|
+
};
|
|
6291
|
+
readonly required: readonly ["type"];
|
|
6292
|
+
readonly additionalProperties: false;
|
|
6293
|
+
}, {
|
|
6294
|
+
readonly type: "object";
|
|
6295
|
+
readonly properties: {
|
|
6296
|
+
readonly type: {
|
|
6297
|
+
readonly type: "string";
|
|
6298
|
+
readonly const: "integer";
|
|
6299
|
+
};
|
|
6300
|
+
readonly default: {
|
|
6301
|
+
readonly type: "integer";
|
|
6302
|
+
};
|
|
6303
|
+
readonly minimum: {
|
|
6304
|
+
readonly type: "integer";
|
|
6305
|
+
};
|
|
6306
|
+
readonly maximum: {
|
|
6307
|
+
readonly type: "integer";
|
|
6308
|
+
};
|
|
6309
|
+
};
|
|
6310
|
+
readonly required: readonly ["type"];
|
|
6311
|
+
readonly additionalProperties: false;
|
|
6312
|
+
}, {
|
|
6313
|
+
readonly type: "object";
|
|
6314
|
+
readonly properties: {
|
|
6315
|
+
readonly type: {
|
|
6316
|
+
readonly type: "string";
|
|
6317
|
+
readonly const: "number";
|
|
6318
|
+
};
|
|
6319
|
+
readonly default: {
|
|
6320
|
+
readonly type: "number";
|
|
6321
|
+
};
|
|
6322
|
+
readonly min: {
|
|
6323
|
+
readonly type: "number";
|
|
6324
|
+
};
|
|
6325
|
+
readonly max: {
|
|
6326
|
+
readonly type: "number";
|
|
6327
|
+
};
|
|
6328
|
+
};
|
|
6329
|
+
readonly required: readonly ["type"];
|
|
6330
|
+
readonly additionalProperties: false;
|
|
6331
|
+
}, {
|
|
6041
6332
|
readonly anyOf: readonly [{
|
|
6042
6333
|
readonly type: "object";
|
|
6043
6334
|
readonly properties: {
|
|
6044
6335
|
readonly type: {
|
|
6045
6336
|
readonly type: "string";
|
|
6046
|
-
readonly const: "
|
|
6337
|
+
readonly const: "string";
|
|
6338
|
+
};
|
|
6339
|
+
readonly title: {
|
|
6340
|
+
readonly type: "string";
|
|
6341
|
+
};
|
|
6342
|
+
readonly const: {
|
|
6343
|
+
readonly type: "string";
|
|
6047
6344
|
};
|
|
6048
6345
|
readonly default: {
|
|
6049
|
-
readonly type: "
|
|
6346
|
+
readonly type: "string";
|
|
6050
6347
|
};
|
|
6051
6348
|
};
|
|
6052
|
-
readonly required: readonly ["type"];
|
|
6349
|
+
readonly required: readonly ["type", "const"];
|
|
6053
6350
|
readonly additionalProperties: false;
|
|
6054
6351
|
}, {
|
|
6055
6352
|
readonly type: "object";
|
|
6056
6353
|
readonly properties: {
|
|
6057
6354
|
readonly type: {
|
|
6058
6355
|
readonly type: "string";
|
|
6059
|
-
readonly const: "
|
|
6356
|
+
readonly const: "string";
|
|
6357
|
+
};
|
|
6358
|
+
readonly title: {
|
|
6359
|
+
readonly type: "string";
|
|
6360
|
+
};
|
|
6361
|
+
readonly pattern: {
|
|
6362
|
+
readonly type: "string";
|
|
6060
6363
|
};
|
|
6061
6364
|
readonly default: {
|
|
6062
|
-
readonly type: "
|
|
6365
|
+
readonly type: "string";
|
|
6063
6366
|
};
|
|
6064
|
-
readonly
|
|
6367
|
+
readonly minLength: {
|
|
6065
6368
|
readonly type: "integer";
|
|
6066
6369
|
};
|
|
6067
|
-
readonly
|
|
6370
|
+
readonly maxLength: {
|
|
6068
6371
|
readonly type: "integer";
|
|
6069
6372
|
};
|
|
6070
6373
|
};
|
|
@@ -6075,652 +6378,603 @@ export declare const graphProtocol: {
|
|
|
6075
6378
|
readonly properties: {
|
|
6076
6379
|
readonly type: {
|
|
6077
6380
|
readonly type: "string";
|
|
6078
|
-
readonly const: "
|
|
6079
|
-
};
|
|
6080
|
-
readonly default: {
|
|
6081
|
-
readonly type: "number";
|
|
6082
|
-
};
|
|
6083
|
-
readonly min: {
|
|
6084
|
-
readonly type: "number";
|
|
6085
|
-
};
|
|
6086
|
-
readonly max: {
|
|
6087
|
-
readonly type: "number";
|
|
6088
|
-
};
|
|
6089
|
-
};
|
|
6090
|
-
readonly required: readonly ["type"];
|
|
6091
|
-
readonly additionalProperties: false;
|
|
6092
|
-
}, {
|
|
6093
|
-
readonly anyOf: readonly [{
|
|
6094
|
-
readonly type: "object";
|
|
6095
|
-
readonly properties: {
|
|
6096
|
-
readonly type: {
|
|
6097
|
-
readonly type: "string";
|
|
6098
|
-
readonly const: "string";
|
|
6099
|
-
};
|
|
6100
|
-
readonly title: {
|
|
6101
|
-
readonly type: "string";
|
|
6102
|
-
};
|
|
6103
|
-
readonly const: {
|
|
6104
|
-
readonly type: "string";
|
|
6105
|
-
};
|
|
6106
|
-
readonly default: {
|
|
6107
|
-
readonly type: "string";
|
|
6108
|
-
};
|
|
6381
|
+
readonly const: "string";
|
|
6109
6382
|
};
|
|
6110
|
-
readonly
|
|
6111
|
-
|
|
6112
|
-
}, {
|
|
6113
|
-
readonly type: "object";
|
|
6114
|
-
readonly properties: {
|
|
6115
|
-
readonly type: {
|
|
6116
|
-
readonly type: "string";
|
|
6117
|
-
readonly const: "string";
|
|
6118
|
-
};
|
|
6119
|
-
readonly title: {
|
|
6120
|
-
readonly type: "string";
|
|
6121
|
-
};
|
|
6122
|
-
readonly pattern: {
|
|
6123
|
-
readonly type: "string";
|
|
6124
|
-
};
|
|
6125
|
-
readonly default: {
|
|
6126
|
-
readonly type: "string";
|
|
6127
|
-
};
|
|
6128
|
-
readonly minLength: {
|
|
6129
|
-
readonly type: "integer";
|
|
6130
|
-
};
|
|
6131
|
-
readonly maxLength: {
|
|
6132
|
-
readonly type: "integer";
|
|
6133
|
-
};
|
|
6383
|
+
readonly title: {
|
|
6384
|
+
readonly type: "string";
|
|
6134
6385
|
};
|
|
6135
|
-
readonly
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
readonly type: "object";
|
|
6139
|
-
readonly properties: {
|
|
6140
|
-
readonly type: {
|
|
6141
|
-
readonly type: "string";
|
|
6142
|
-
readonly const: "string";
|
|
6143
|
-
};
|
|
6144
|
-
readonly title: {
|
|
6145
|
-
readonly type: "string";
|
|
6146
|
-
};
|
|
6147
|
-
readonly enum: {
|
|
6148
|
-
readonly type: "array";
|
|
6149
|
-
readonly items: {
|
|
6150
|
-
readonly type: "string";
|
|
6151
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6152
|
-
};
|
|
6153
|
-
};
|
|
6154
|
-
readonly default: {
|
|
6386
|
+
readonly enum: {
|
|
6387
|
+
readonly type: "array";
|
|
6388
|
+
readonly items: {
|
|
6155
6389
|
readonly type: "string";
|
|
6156
6390
|
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6157
6391
|
};
|
|
6158
6392
|
};
|
|
6159
|
-
readonly
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
readonly type: "object";
|
|
6163
|
-
readonly properties: {
|
|
6164
|
-
readonly type: {
|
|
6165
|
-
readonly type: "string";
|
|
6166
|
-
readonly const: "string";
|
|
6167
|
-
};
|
|
6168
|
-
readonly format: {
|
|
6169
|
-
readonly type: "string";
|
|
6170
|
-
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
6171
|
-
};
|
|
6172
|
-
readonly title: {
|
|
6173
|
-
readonly type: "string";
|
|
6174
|
-
};
|
|
6175
|
-
readonly default: {
|
|
6176
|
-
readonly type: "string";
|
|
6177
|
-
};
|
|
6178
|
-
readonly minLength: {
|
|
6179
|
-
readonly type: "integer";
|
|
6180
|
-
};
|
|
6181
|
-
readonly maxLength: {
|
|
6182
|
-
readonly type: "integer";
|
|
6183
|
-
};
|
|
6393
|
+
readonly default: {
|
|
6394
|
+
readonly type: "string";
|
|
6395
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6184
6396
|
};
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
}
|
|
6189
|
-
}, {
|
|
6190
|
-
readonly anyOf: readonly [{
|
|
6397
|
+
};
|
|
6398
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
6399
|
+
readonly additionalProperties: false;
|
|
6400
|
+
}, {
|
|
6191
6401
|
readonly type: "object";
|
|
6192
6402
|
readonly properties: {
|
|
6193
6403
|
readonly type: {
|
|
6194
6404
|
readonly type: "string";
|
|
6195
|
-
readonly const: "
|
|
6405
|
+
readonly const: "string";
|
|
6196
6406
|
};
|
|
6197
|
-
readonly
|
|
6407
|
+
readonly format: {
|
|
6198
6408
|
readonly type: "string";
|
|
6199
|
-
readonly
|
|
6409
|
+
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
6200
6410
|
};
|
|
6201
|
-
readonly
|
|
6202
|
-
readonly type: "
|
|
6203
|
-
readonly properties: {
|
|
6204
|
-
readonly $ref: {
|
|
6205
|
-
readonly type: "string";
|
|
6206
|
-
};
|
|
6207
|
-
};
|
|
6208
|
-
readonly required: readonly ["$ref"];
|
|
6209
|
-
readonly additionalProperties: false;
|
|
6411
|
+
readonly title: {
|
|
6412
|
+
readonly type: "string";
|
|
6210
6413
|
};
|
|
6211
|
-
readonly
|
|
6212
|
-
readonly type: "
|
|
6414
|
+
readonly default: {
|
|
6415
|
+
readonly type: "string";
|
|
6213
6416
|
};
|
|
6214
|
-
readonly
|
|
6417
|
+
readonly minLength: {
|
|
6215
6418
|
readonly type: "integer";
|
|
6216
6419
|
};
|
|
6217
|
-
readonly
|
|
6420
|
+
readonly maxLength: {
|
|
6218
6421
|
readonly type: "integer";
|
|
6219
6422
|
};
|
|
6220
6423
|
};
|
|
6221
|
-
readonly required: readonly ["type", "
|
|
6424
|
+
readonly required: readonly ["type", "format"];
|
|
6222
6425
|
readonly additionalProperties: false;
|
|
6223
|
-
}
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
readonly type:
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6426
|
+
}];
|
|
6427
|
+
}];
|
|
6428
|
+
}, {
|
|
6429
|
+
readonly anyOf: readonly [{
|
|
6430
|
+
readonly type: "object";
|
|
6431
|
+
readonly properties: {
|
|
6432
|
+
readonly type: {
|
|
6433
|
+
readonly type: "string";
|
|
6434
|
+
readonly const: "array";
|
|
6435
|
+
};
|
|
6436
|
+
readonly title: {
|
|
6437
|
+
readonly type: "string";
|
|
6438
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6439
|
+
};
|
|
6440
|
+
readonly items: {
|
|
6441
|
+
readonly type: "object";
|
|
6234
6442
|
readonly properties: {
|
|
6235
|
-
readonly
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
|
|
6241
|
-
|
|
6242
|
-
|
|
6443
|
+
readonly $ref: {
|
|
6444
|
+
readonly type: "string";
|
|
6445
|
+
};
|
|
6446
|
+
};
|
|
6447
|
+
readonly required: readonly ["$ref"];
|
|
6448
|
+
readonly additionalProperties: false;
|
|
6449
|
+
};
|
|
6450
|
+
readonly uniqueItems: {
|
|
6451
|
+
readonly type: "boolean";
|
|
6452
|
+
};
|
|
6453
|
+
readonly minItems: {
|
|
6454
|
+
readonly type: "integer";
|
|
6455
|
+
};
|
|
6456
|
+
readonly maxItems: {
|
|
6457
|
+
readonly type: "integer";
|
|
6458
|
+
};
|
|
6459
|
+
};
|
|
6460
|
+
readonly required: readonly ["type", "title", "items"];
|
|
6461
|
+
readonly additionalProperties: false;
|
|
6462
|
+
}, {
|
|
6463
|
+
readonly type: "object";
|
|
6464
|
+
readonly properties: {
|
|
6465
|
+
readonly title: {
|
|
6466
|
+
readonly type: "string";
|
|
6467
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6468
|
+
};
|
|
6469
|
+
readonly type: {
|
|
6470
|
+
readonly type: "string";
|
|
6471
|
+
readonly const: "object";
|
|
6472
|
+
};
|
|
6473
|
+
readonly properties: {
|
|
6474
|
+
readonly type: "object";
|
|
6475
|
+
readonly patternProperties: {
|
|
6476
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6477
|
+
readonly type: "object";
|
|
6478
|
+
readonly properties: {
|
|
6479
|
+
readonly $ref: {
|
|
6480
|
+
readonly type: "string";
|
|
6243
6481
|
};
|
|
6244
|
-
readonly required: readonly ["$ref"];
|
|
6245
|
-
readonly additionalProperties: false;
|
|
6246
6482
|
};
|
|
6483
|
+
readonly required: readonly ["$ref"];
|
|
6484
|
+
readonly additionalProperties: false;
|
|
6247
6485
|
};
|
|
6248
|
-
readonly additionalProperties: false;
|
|
6249
|
-
};
|
|
6250
|
-
readonly required: {
|
|
6251
|
-
readonly type: "array";
|
|
6252
|
-
readonly items: {
|
|
6253
|
-
readonly type: "string";
|
|
6254
|
-
};
|
|
6255
|
-
};
|
|
6256
|
-
readonly additionalProperties: {
|
|
6257
|
-
readonly type: "boolean";
|
|
6258
6486
|
};
|
|
6487
|
+
readonly additionalProperties: false;
|
|
6259
6488
|
};
|
|
6260
|
-
readonly required:
|
|
6261
|
-
|
|
6262
|
-
|
|
6263
|
-
readonly type: "object";
|
|
6264
|
-
readonly properties: {
|
|
6265
|
-
readonly type: {
|
|
6266
|
-
readonly type: "string";
|
|
6267
|
-
readonly const: "object";
|
|
6268
|
-
};
|
|
6269
|
-
readonly title: {
|
|
6489
|
+
readonly required: {
|
|
6490
|
+
readonly type: "array";
|
|
6491
|
+
readonly items: {
|
|
6270
6492
|
readonly type: "string";
|
|
6271
|
-
readonly const: "JSONObject";
|
|
6272
|
-
};
|
|
6273
|
-
readonly additionalProperties: {
|
|
6274
|
-
readonly type: "boolean";
|
|
6275
|
-
readonly const: true;
|
|
6276
6493
|
};
|
|
6277
6494
|
};
|
|
6278
|
-
readonly
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
readonly type: "string";
|
|
6286
|
-
readonly const: "object";
|
|
6287
|
-
};
|
|
6288
|
-
readonly properties: {
|
|
6289
|
-
readonly type: "object";
|
|
6290
|
-
readonly patternProperties: {
|
|
6291
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6495
|
+
readonly additionalProperties: {
|
|
6496
|
+
readonly type: "boolean";
|
|
6497
|
+
};
|
|
6498
|
+
};
|
|
6499
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
6500
|
+
readonly additionalProperties: false;
|
|
6501
|
+
}, {
|
|
6292
6502
|
readonly type: "object";
|
|
6293
6503
|
readonly properties: {
|
|
6294
|
-
readonly
|
|
6504
|
+
readonly type: {
|
|
6505
|
+
readonly type: "string";
|
|
6506
|
+
readonly const: "object";
|
|
6507
|
+
};
|
|
6508
|
+
readonly title: {
|
|
6295
6509
|
readonly type: "string";
|
|
6510
|
+
readonly const: "JSONObject";
|
|
6511
|
+
};
|
|
6512
|
+
readonly additionalProperties: {
|
|
6513
|
+
readonly type: "boolean";
|
|
6514
|
+
readonly const: true;
|
|
6296
6515
|
};
|
|
6297
6516
|
};
|
|
6298
|
-
readonly required: readonly ["
|
|
6517
|
+
readonly required: readonly ["type", "title", "additionalProperties"];
|
|
6299
6518
|
readonly additionalProperties: false;
|
|
6519
|
+
}];
|
|
6520
|
+
}];
|
|
6521
|
+
};
|
|
6522
|
+
};
|
|
6523
|
+
readonly type: {
|
|
6524
|
+
readonly type: "string";
|
|
6525
|
+
readonly const: "object";
|
|
6526
|
+
};
|
|
6527
|
+
readonly properties: {
|
|
6528
|
+
readonly type: "object";
|
|
6529
|
+
readonly patternProperties: {
|
|
6530
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6531
|
+
readonly type: "object";
|
|
6532
|
+
readonly properties: {
|
|
6533
|
+
readonly $ref: {
|
|
6534
|
+
readonly type: "string";
|
|
6535
|
+
};
|
|
6300
6536
|
};
|
|
6537
|
+
readonly required: readonly ["$ref"];
|
|
6538
|
+
readonly additionalProperties: false;
|
|
6301
6539
|
};
|
|
6302
|
-
readonly additionalProperties: false;
|
|
6303
6540
|
};
|
|
6304
|
-
readonly
|
|
6305
|
-
|
|
6306
|
-
|
|
6541
|
+
readonly additionalProperties: false;
|
|
6542
|
+
};
|
|
6543
|
+
readonly required: {
|
|
6544
|
+
readonly type: "array";
|
|
6545
|
+
readonly items: {
|
|
6546
|
+
readonly type: "string";
|
|
6547
|
+
};
|
|
6548
|
+
};
|
|
6549
|
+
readonly additionalProperties: {
|
|
6550
|
+
readonly type: "boolean";
|
|
6551
|
+
};
|
|
6552
|
+
};
|
|
6553
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
6554
|
+
readonly additionalProperties: false;
|
|
6555
|
+
};
|
|
6556
|
+
readonly fieldsMeta: {
|
|
6557
|
+
readonly type: "object";
|
|
6558
|
+
readonly additionalProperties: {
|
|
6559
|
+
readonly anyOf: readonly [{
|
|
6560
|
+
readonly type: "object";
|
|
6561
|
+
readonly properties: {
|
|
6562
|
+
readonly type: {
|
|
6307
6563
|
readonly type: "string";
|
|
6564
|
+
readonly const: "account";
|
|
6565
|
+
};
|
|
6566
|
+
readonly searchable: {
|
|
6567
|
+
readonly type: "boolean";
|
|
6308
6568
|
};
|
|
6309
6569
|
};
|
|
6310
|
-
readonly
|
|
6311
|
-
|
|
6570
|
+
readonly required: readonly ["type"];
|
|
6571
|
+
readonly additionalProperties: false;
|
|
6572
|
+
}, {
|
|
6573
|
+
readonly type: "object";
|
|
6574
|
+
readonly properties: {
|
|
6575
|
+
readonly type: {
|
|
6576
|
+
readonly type: "string";
|
|
6577
|
+
readonly const: "attachment";
|
|
6578
|
+
};
|
|
6579
|
+
readonly searchable: {
|
|
6580
|
+
readonly type: "boolean";
|
|
6581
|
+
};
|
|
6312
6582
|
};
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
readonly type: "object";
|
|
6322
|
-
readonly properties: {
|
|
6323
|
-
readonly type: {
|
|
6324
|
-
readonly type: "string";
|
|
6325
|
-
readonly const: "account";
|
|
6326
|
-
};
|
|
6583
|
+
readonly required: readonly ["type"];
|
|
6584
|
+
readonly additionalProperties: false;
|
|
6585
|
+
}, {
|
|
6586
|
+
readonly type: "object";
|
|
6587
|
+
readonly properties: {
|
|
6588
|
+
readonly type: {
|
|
6589
|
+
readonly type: "string";
|
|
6590
|
+
readonly const: "document";
|
|
6327
6591
|
};
|
|
6328
|
-
readonly
|
|
6329
|
-
|
|
6330
|
-
}, {
|
|
6331
|
-
readonly type: "object";
|
|
6332
|
-
readonly properties: {
|
|
6333
|
-
readonly type: {
|
|
6592
|
+
readonly model: {
|
|
6593
|
+
readonly anyOf: readonly [{
|
|
6334
6594
|
readonly type: "string";
|
|
6335
|
-
|
|
6336
|
-
|
|
6595
|
+
}, {
|
|
6596
|
+
readonly type: "null";
|
|
6597
|
+
}];
|
|
6337
6598
|
};
|
|
6338
|
-
readonly
|
|
6339
|
-
|
|
6340
|
-
}, {
|
|
6341
|
-
readonly type: "object";
|
|
6342
|
-
readonly properties: {
|
|
6343
|
-
readonly type: {
|
|
6344
|
-
readonly type: "string";
|
|
6345
|
-
readonly const: "document";
|
|
6346
|
-
};
|
|
6347
|
-
readonly model: {
|
|
6348
|
-
readonly anyOf: readonly [{
|
|
6349
|
-
readonly type: "string";
|
|
6350
|
-
}, {
|
|
6351
|
-
readonly type: "null";
|
|
6352
|
-
}];
|
|
6353
|
-
};
|
|
6599
|
+
readonly searchable: {
|
|
6600
|
+
readonly type: "boolean";
|
|
6354
6601
|
};
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
};
|
|
6602
|
+
};
|
|
6603
|
+
readonly required: readonly ["type", "model"];
|
|
6604
|
+
readonly additionalProperties: false;
|
|
6605
|
+
}];
|
|
6359
6606
|
};
|
|
6360
6607
|
};
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
};
|
|
6375
|
-
};
|
|
6376
|
-
readonly name: {
|
|
6377
|
-
readonly type: "string";
|
|
6378
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6379
|
-
};
|
|
6380
|
-
readonly version: {
|
|
6608
|
+
};
|
|
6609
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior"];
|
|
6610
|
+
readonly additionalProperties: false;
|
|
6611
|
+
}, {
|
|
6612
|
+
readonly type: "object";
|
|
6613
|
+
readonly properties: {
|
|
6614
|
+
readonly behavior: {
|
|
6615
|
+
readonly type: "string";
|
|
6616
|
+
readonly const: "unique";
|
|
6617
|
+
};
|
|
6618
|
+
readonly uniqueFields: {
|
|
6619
|
+
readonly type: "array";
|
|
6620
|
+
readonly items: {
|
|
6381
6621
|
readonly type: "string";
|
|
6382
|
-
readonly const: "1.0";
|
|
6383
6622
|
};
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
|
|
6387
|
-
|
|
6388
|
-
|
|
6623
|
+
};
|
|
6624
|
+
readonly name: {
|
|
6625
|
+
readonly type: "string";
|
|
6626
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6627
|
+
};
|
|
6628
|
+
readonly version: {
|
|
6629
|
+
readonly type: "string";
|
|
6630
|
+
readonly const: "1.0";
|
|
6631
|
+
};
|
|
6632
|
+
readonly interfaces: {
|
|
6633
|
+
readonly type: "array";
|
|
6634
|
+
readonly items: {
|
|
6635
|
+
readonly type: "string";
|
|
6389
6636
|
};
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6637
|
+
};
|
|
6638
|
+
readonly schema: {
|
|
6639
|
+
readonly type: "object";
|
|
6640
|
+
readonly properties: {
|
|
6641
|
+
readonly $defs: {
|
|
6642
|
+
readonly type: "object";
|
|
6643
|
+
readonly additionalProperties: {
|
|
6644
|
+
readonly anyOf: readonly [{
|
|
6396
6645
|
readonly anyOf: readonly [{
|
|
6646
|
+
readonly type: "object";
|
|
6647
|
+
readonly properties: {
|
|
6648
|
+
readonly type: {
|
|
6649
|
+
readonly type: "string";
|
|
6650
|
+
readonly const: "boolean";
|
|
6651
|
+
};
|
|
6652
|
+
readonly default: {
|
|
6653
|
+
readonly type: "boolean";
|
|
6654
|
+
};
|
|
6655
|
+
};
|
|
6656
|
+
readonly required: readonly ["type"];
|
|
6657
|
+
readonly additionalProperties: false;
|
|
6658
|
+
}, {
|
|
6659
|
+
readonly type: "object";
|
|
6660
|
+
readonly properties: {
|
|
6661
|
+
readonly type: {
|
|
6662
|
+
readonly type: "string";
|
|
6663
|
+
readonly const: "integer";
|
|
6664
|
+
};
|
|
6665
|
+
readonly default: {
|
|
6666
|
+
readonly type: "integer";
|
|
6667
|
+
};
|
|
6668
|
+
readonly minimum: {
|
|
6669
|
+
readonly type: "integer";
|
|
6670
|
+
};
|
|
6671
|
+
readonly maximum: {
|
|
6672
|
+
readonly type: "integer";
|
|
6673
|
+
};
|
|
6674
|
+
};
|
|
6675
|
+
readonly required: readonly ["type"];
|
|
6676
|
+
readonly additionalProperties: false;
|
|
6677
|
+
}, {
|
|
6678
|
+
readonly type: "object";
|
|
6679
|
+
readonly properties: {
|
|
6680
|
+
readonly type: {
|
|
6681
|
+
readonly type: "string";
|
|
6682
|
+
readonly const: "number";
|
|
6683
|
+
};
|
|
6684
|
+
readonly default: {
|
|
6685
|
+
readonly type: "number";
|
|
6686
|
+
};
|
|
6687
|
+
readonly min: {
|
|
6688
|
+
readonly type: "number";
|
|
6689
|
+
};
|
|
6690
|
+
readonly max: {
|
|
6691
|
+
readonly type: "number";
|
|
6692
|
+
};
|
|
6693
|
+
};
|
|
6694
|
+
readonly required: readonly ["type"];
|
|
6695
|
+
readonly additionalProperties: false;
|
|
6696
|
+
}, {
|
|
6397
6697
|
readonly anyOf: readonly [{
|
|
6398
6698
|
readonly type: "object";
|
|
6399
6699
|
readonly properties: {
|
|
6400
6700
|
readonly type: {
|
|
6401
6701
|
readonly type: "string";
|
|
6402
|
-
readonly const: "
|
|
6403
|
-
};
|
|
6404
|
-
readonly default: {
|
|
6405
|
-
readonly type: "boolean";
|
|
6702
|
+
readonly const: "string";
|
|
6406
6703
|
};
|
|
6407
|
-
|
|
6408
|
-
readonly required: readonly ["type"];
|
|
6409
|
-
readonly additionalProperties: false;
|
|
6410
|
-
}, {
|
|
6411
|
-
readonly type: "object";
|
|
6412
|
-
readonly properties: {
|
|
6413
|
-
readonly type: {
|
|
6704
|
+
readonly title: {
|
|
6414
6705
|
readonly type: "string";
|
|
6415
|
-
readonly const: "integer";
|
|
6416
|
-
};
|
|
6417
|
-
readonly default: {
|
|
6418
|
-
readonly type: "integer";
|
|
6419
|
-
};
|
|
6420
|
-
readonly minimum: {
|
|
6421
|
-
readonly type: "integer";
|
|
6422
6706
|
};
|
|
6423
|
-
readonly
|
|
6424
|
-
readonly type: "integer";
|
|
6425
|
-
};
|
|
6426
|
-
};
|
|
6427
|
-
readonly required: readonly ["type"];
|
|
6428
|
-
readonly additionalProperties: false;
|
|
6429
|
-
}, {
|
|
6430
|
-
readonly type: "object";
|
|
6431
|
-
readonly properties: {
|
|
6432
|
-
readonly type: {
|
|
6707
|
+
readonly const: {
|
|
6433
6708
|
readonly type: "string";
|
|
6434
|
-
readonly const: "number";
|
|
6435
6709
|
};
|
|
6436
6710
|
readonly default: {
|
|
6437
|
-
readonly type: "
|
|
6438
|
-
};
|
|
6439
|
-
readonly min: {
|
|
6440
|
-
readonly type: "number";
|
|
6441
|
-
};
|
|
6442
|
-
readonly max: {
|
|
6443
|
-
readonly type: "number";
|
|
6711
|
+
readonly type: "string";
|
|
6444
6712
|
};
|
|
6445
6713
|
};
|
|
6446
|
-
readonly required: readonly ["type"];
|
|
6714
|
+
readonly required: readonly ["type", "const"];
|
|
6447
6715
|
readonly additionalProperties: false;
|
|
6448
6716
|
}, {
|
|
6449
|
-
readonly anyOf: readonly [{
|
|
6450
|
-
readonly type: "object";
|
|
6451
|
-
readonly properties: {
|
|
6452
|
-
readonly type: {
|
|
6453
|
-
readonly type: "string";
|
|
6454
|
-
readonly const: "string";
|
|
6455
|
-
};
|
|
6456
|
-
readonly title: {
|
|
6457
|
-
readonly type: "string";
|
|
6458
|
-
};
|
|
6459
|
-
readonly const: {
|
|
6460
|
-
readonly type: "string";
|
|
6461
|
-
};
|
|
6462
|
-
readonly default: {
|
|
6463
|
-
readonly type: "string";
|
|
6464
|
-
};
|
|
6465
|
-
};
|
|
6466
|
-
readonly required: readonly ["type", "const"];
|
|
6467
|
-
readonly additionalProperties: false;
|
|
6468
|
-
}, {
|
|
6469
|
-
readonly type: "object";
|
|
6470
|
-
readonly properties: {
|
|
6471
|
-
readonly type: {
|
|
6472
|
-
readonly type: "string";
|
|
6473
|
-
readonly const: "string";
|
|
6474
|
-
};
|
|
6475
|
-
readonly title: {
|
|
6476
|
-
readonly type: "string";
|
|
6477
|
-
};
|
|
6478
|
-
readonly pattern: {
|
|
6479
|
-
readonly type: "string";
|
|
6480
|
-
};
|
|
6481
|
-
readonly default: {
|
|
6482
|
-
readonly type: "string";
|
|
6483
|
-
};
|
|
6484
|
-
readonly minLength: {
|
|
6485
|
-
readonly type: "integer";
|
|
6486
|
-
};
|
|
6487
|
-
readonly maxLength: {
|
|
6488
|
-
readonly type: "integer";
|
|
6489
|
-
};
|
|
6490
|
-
};
|
|
6491
|
-
readonly required: readonly ["type"];
|
|
6492
|
-
readonly additionalProperties: false;
|
|
6493
|
-
}, {
|
|
6494
|
-
readonly type: "object";
|
|
6495
|
-
readonly properties: {
|
|
6496
|
-
readonly type: {
|
|
6497
|
-
readonly type: "string";
|
|
6498
|
-
readonly const: "string";
|
|
6499
|
-
};
|
|
6500
|
-
readonly title: {
|
|
6501
|
-
readonly type: "string";
|
|
6502
|
-
};
|
|
6503
|
-
readonly enum: {
|
|
6504
|
-
readonly type: "array";
|
|
6505
|
-
readonly items: {
|
|
6506
|
-
readonly type: "string";
|
|
6507
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6508
|
-
};
|
|
6509
|
-
};
|
|
6510
|
-
readonly default: {
|
|
6511
|
-
readonly type: "string";
|
|
6512
|
-
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6513
|
-
};
|
|
6514
|
-
};
|
|
6515
|
-
readonly required: readonly ["type", "title", "enum"];
|
|
6516
|
-
readonly additionalProperties: false;
|
|
6517
|
-
}, {
|
|
6518
|
-
readonly type: "object";
|
|
6519
|
-
readonly properties: {
|
|
6520
|
-
readonly type: {
|
|
6521
|
-
readonly type: "string";
|
|
6522
|
-
readonly const: "string";
|
|
6523
|
-
};
|
|
6524
|
-
readonly format: {
|
|
6525
|
-
readonly type: "string";
|
|
6526
|
-
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
6527
|
-
};
|
|
6528
|
-
readonly title: {
|
|
6529
|
-
readonly type: "string";
|
|
6530
|
-
};
|
|
6531
|
-
readonly default: {
|
|
6532
|
-
readonly type: "string";
|
|
6533
|
-
};
|
|
6534
|
-
readonly minLength: {
|
|
6535
|
-
readonly type: "integer";
|
|
6536
|
-
};
|
|
6537
|
-
readonly maxLength: {
|
|
6538
|
-
readonly type: "integer";
|
|
6539
|
-
};
|
|
6540
|
-
};
|
|
6541
|
-
readonly required: readonly ["type", "format"];
|
|
6542
|
-
readonly additionalProperties: false;
|
|
6543
|
-
}];
|
|
6544
|
-
}];
|
|
6545
|
-
}, {
|
|
6546
|
-
readonly anyOf: readonly [{
|
|
6547
6717
|
readonly type: "object";
|
|
6548
6718
|
readonly properties: {
|
|
6549
6719
|
readonly type: {
|
|
6550
6720
|
readonly type: "string";
|
|
6551
|
-
readonly const: "
|
|
6721
|
+
readonly const: "string";
|
|
6552
6722
|
};
|
|
6553
6723
|
readonly title: {
|
|
6554
6724
|
readonly type: "string";
|
|
6555
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6556
6725
|
};
|
|
6557
|
-
readonly
|
|
6558
|
-
readonly type: "
|
|
6559
|
-
readonly properties: {
|
|
6560
|
-
readonly $ref: {
|
|
6561
|
-
readonly type: "string";
|
|
6562
|
-
};
|
|
6563
|
-
};
|
|
6564
|
-
readonly required: readonly ["$ref"];
|
|
6565
|
-
readonly additionalProperties: false;
|
|
6726
|
+
readonly pattern: {
|
|
6727
|
+
readonly type: "string";
|
|
6566
6728
|
};
|
|
6567
|
-
readonly
|
|
6568
|
-
readonly type: "
|
|
6729
|
+
readonly default: {
|
|
6730
|
+
readonly type: "string";
|
|
6569
6731
|
};
|
|
6570
|
-
readonly
|
|
6732
|
+
readonly minLength: {
|
|
6571
6733
|
readonly type: "integer";
|
|
6572
6734
|
};
|
|
6573
|
-
readonly
|
|
6735
|
+
readonly maxLength: {
|
|
6574
6736
|
readonly type: "integer";
|
|
6575
6737
|
};
|
|
6576
6738
|
};
|
|
6577
|
-
readonly required: readonly ["type"
|
|
6739
|
+
readonly required: readonly ["type"];
|
|
6578
6740
|
readonly additionalProperties: false;
|
|
6579
6741
|
}, {
|
|
6580
6742
|
readonly type: "object";
|
|
6581
6743
|
readonly properties: {
|
|
6582
|
-
readonly title: {
|
|
6583
|
-
readonly type: "string";
|
|
6584
|
-
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6585
|
-
};
|
|
6586
6744
|
readonly type: {
|
|
6587
6745
|
readonly type: "string";
|
|
6588
|
-
readonly const: "
|
|
6746
|
+
readonly const: "string";
|
|
6589
6747
|
};
|
|
6590
|
-
readonly
|
|
6591
|
-
readonly type: "
|
|
6592
|
-
readonly patternProperties: {
|
|
6593
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6594
|
-
readonly type: "object";
|
|
6595
|
-
readonly properties: {
|
|
6596
|
-
readonly $ref: {
|
|
6597
|
-
readonly type: "string";
|
|
6598
|
-
};
|
|
6599
|
-
};
|
|
6600
|
-
readonly required: readonly ["$ref"];
|
|
6601
|
-
readonly additionalProperties: false;
|
|
6602
|
-
};
|
|
6603
|
-
};
|
|
6604
|
-
readonly additionalProperties: false;
|
|
6748
|
+
readonly title: {
|
|
6749
|
+
readonly type: "string";
|
|
6605
6750
|
};
|
|
6606
|
-
readonly
|
|
6751
|
+
readonly enum: {
|
|
6607
6752
|
readonly type: "array";
|
|
6608
6753
|
readonly items: {
|
|
6609
6754
|
readonly type: "string";
|
|
6755
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6610
6756
|
};
|
|
6611
6757
|
};
|
|
6612
|
-
readonly
|
|
6613
|
-
readonly type: "
|
|
6758
|
+
readonly default: {
|
|
6759
|
+
readonly type: "string";
|
|
6760
|
+
readonly pattern: "^[A-Z]+[A-Z_]+[A-Z]$";
|
|
6614
6761
|
};
|
|
6615
6762
|
};
|
|
6616
|
-
readonly required: readonly ["type", "
|
|
6763
|
+
readonly required: readonly ["type", "title", "enum"];
|
|
6617
6764
|
readonly additionalProperties: false;
|
|
6618
6765
|
}, {
|
|
6619
6766
|
readonly type: "object";
|
|
6620
6767
|
readonly properties: {
|
|
6621
6768
|
readonly type: {
|
|
6622
6769
|
readonly type: "string";
|
|
6623
|
-
readonly const: "
|
|
6770
|
+
readonly const: "string";
|
|
6771
|
+
};
|
|
6772
|
+
readonly format: {
|
|
6773
|
+
readonly type: "string";
|
|
6774
|
+
readonly enum: readonly ["date", "date-time", "duration", "email", "time", "uri"];
|
|
6624
6775
|
};
|
|
6625
6776
|
readonly title: {
|
|
6626
6777
|
readonly type: "string";
|
|
6627
|
-
readonly const: "JSONObject";
|
|
6628
6778
|
};
|
|
6629
|
-
readonly
|
|
6630
|
-
readonly type: "
|
|
6631
|
-
|
|
6779
|
+
readonly default: {
|
|
6780
|
+
readonly type: "string";
|
|
6781
|
+
};
|
|
6782
|
+
readonly minLength: {
|
|
6783
|
+
readonly type: "integer";
|
|
6784
|
+
};
|
|
6785
|
+
readonly maxLength: {
|
|
6786
|
+
readonly type: "integer";
|
|
6632
6787
|
};
|
|
6633
6788
|
};
|
|
6634
|
-
readonly required: readonly ["type", "
|
|
6789
|
+
readonly required: readonly ["type", "format"];
|
|
6635
6790
|
readonly additionalProperties: false;
|
|
6636
6791
|
}];
|
|
6637
6792
|
}];
|
|
6638
|
-
}
|
|
6639
|
-
|
|
6640
|
-
readonly type: {
|
|
6641
|
-
readonly type: "string";
|
|
6642
|
-
readonly const: "object";
|
|
6643
|
-
};
|
|
6644
|
-
readonly properties: {
|
|
6645
|
-
readonly type: "object";
|
|
6646
|
-
readonly patternProperties: {
|
|
6647
|
-
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6793
|
+
}, {
|
|
6794
|
+
readonly anyOf: readonly [{
|
|
6648
6795
|
readonly type: "object";
|
|
6649
6796
|
readonly properties: {
|
|
6650
|
-
readonly
|
|
6797
|
+
readonly type: {
|
|
6798
|
+
readonly type: "string";
|
|
6799
|
+
readonly const: "array";
|
|
6800
|
+
};
|
|
6801
|
+
readonly title: {
|
|
6802
|
+
readonly type: "string";
|
|
6803
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6804
|
+
};
|
|
6805
|
+
readonly items: {
|
|
6806
|
+
readonly type: "object";
|
|
6807
|
+
readonly properties: {
|
|
6808
|
+
readonly $ref: {
|
|
6809
|
+
readonly type: "string";
|
|
6810
|
+
};
|
|
6811
|
+
};
|
|
6812
|
+
readonly required: readonly ["$ref"];
|
|
6813
|
+
readonly additionalProperties: false;
|
|
6814
|
+
};
|
|
6815
|
+
readonly uniqueItems: {
|
|
6816
|
+
readonly type: "boolean";
|
|
6817
|
+
};
|
|
6818
|
+
readonly minItems: {
|
|
6819
|
+
readonly type: "integer";
|
|
6820
|
+
};
|
|
6821
|
+
readonly maxItems: {
|
|
6822
|
+
readonly type: "integer";
|
|
6823
|
+
};
|
|
6824
|
+
};
|
|
6825
|
+
readonly required: readonly ["type", "title", "items"];
|
|
6826
|
+
readonly additionalProperties: false;
|
|
6827
|
+
}, {
|
|
6828
|
+
readonly type: "object";
|
|
6829
|
+
readonly properties: {
|
|
6830
|
+
readonly title: {
|
|
6831
|
+
readonly type: "string";
|
|
6832
|
+
readonly pattern: "^[A-Z]+[A-Za-z0-9]+$";
|
|
6833
|
+
};
|
|
6834
|
+
readonly type: {
|
|
6835
|
+
readonly type: "string";
|
|
6836
|
+
readonly const: "object";
|
|
6837
|
+
};
|
|
6838
|
+
readonly properties: {
|
|
6839
|
+
readonly type: "object";
|
|
6840
|
+
readonly patternProperties: {
|
|
6841
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6842
|
+
readonly type: "object";
|
|
6843
|
+
readonly properties: {
|
|
6844
|
+
readonly $ref: {
|
|
6845
|
+
readonly type: "string";
|
|
6846
|
+
};
|
|
6847
|
+
};
|
|
6848
|
+
readonly required: readonly ["$ref"];
|
|
6849
|
+
readonly additionalProperties: false;
|
|
6850
|
+
};
|
|
6851
|
+
};
|
|
6852
|
+
readonly additionalProperties: false;
|
|
6853
|
+
};
|
|
6854
|
+
readonly required: {
|
|
6855
|
+
readonly type: "array";
|
|
6856
|
+
readonly items: {
|
|
6857
|
+
readonly type: "string";
|
|
6858
|
+
};
|
|
6859
|
+
};
|
|
6860
|
+
readonly additionalProperties: {
|
|
6861
|
+
readonly type: "boolean";
|
|
6862
|
+
};
|
|
6863
|
+
};
|
|
6864
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "title"];
|
|
6865
|
+
readonly additionalProperties: false;
|
|
6866
|
+
}, {
|
|
6867
|
+
readonly type: "object";
|
|
6868
|
+
readonly properties: {
|
|
6869
|
+
readonly type: {
|
|
6870
|
+
readonly type: "string";
|
|
6871
|
+
readonly const: "object";
|
|
6872
|
+
};
|
|
6873
|
+
readonly title: {
|
|
6651
6874
|
readonly type: "string";
|
|
6875
|
+
readonly const: "JSONObject";
|
|
6876
|
+
};
|
|
6877
|
+
readonly additionalProperties: {
|
|
6878
|
+
readonly type: "boolean";
|
|
6879
|
+
readonly const: true;
|
|
6652
6880
|
};
|
|
6653
6881
|
};
|
|
6654
|
-
readonly required: readonly ["
|
|
6882
|
+
readonly required: readonly ["type", "title", "additionalProperties"];
|
|
6655
6883
|
readonly additionalProperties: false;
|
|
6884
|
+
}];
|
|
6885
|
+
}];
|
|
6886
|
+
};
|
|
6887
|
+
};
|
|
6888
|
+
readonly type: {
|
|
6889
|
+
readonly type: "string";
|
|
6890
|
+
readonly const: "object";
|
|
6891
|
+
};
|
|
6892
|
+
readonly properties: {
|
|
6893
|
+
readonly type: "object";
|
|
6894
|
+
readonly patternProperties: {
|
|
6895
|
+
readonly '^[a-z]+[A-Za-z0-9]+$': {
|
|
6896
|
+
readonly type: "object";
|
|
6897
|
+
readonly properties: {
|
|
6898
|
+
readonly $ref: {
|
|
6899
|
+
readonly type: "string";
|
|
6900
|
+
};
|
|
6656
6901
|
};
|
|
6902
|
+
readonly required: readonly ["$ref"];
|
|
6903
|
+
readonly additionalProperties: false;
|
|
6657
6904
|
};
|
|
6658
|
-
readonly additionalProperties: false;
|
|
6659
6905
|
};
|
|
6660
|
-
readonly
|
|
6661
|
-
|
|
6662
|
-
|
|
6906
|
+
readonly additionalProperties: false;
|
|
6907
|
+
};
|
|
6908
|
+
readonly required: {
|
|
6909
|
+
readonly type: "array";
|
|
6910
|
+
readonly items: {
|
|
6911
|
+
readonly type: "string";
|
|
6912
|
+
};
|
|
6913
|
+
};
|
|
6914
|
+
readonly additionalProperties: {
|
|
6915
|
+
readonly type: "boolean";
|
|
6916
|
+
};
|
|
6917
|
+
};
|
|
6918
|
+
readonly required: readonly ["type", "properties", "required", "additionalProperties", "$defs"];
|
|
6919
|
+
readonly additionalProperties: false;
|
|
6920
|
+
};
|
|
6921
|
+
readonly fieldsMeta: {
|
|
6922
|
+
readonly type: "object";
|
|
6923
|
+
readonly additionalProperties: {
|
|
6924
|
+
readonly anyOf: readonly [{
|
|
6925
|
+
readonly type: "object";
|
|
6926
|
+
readonly properties: {
|
|
6927
|
+
readonly type: {
|
|
6663
6928
|
readonly type: "string";
|
|
6929
|
+
readonly const: "account";
|
|
6930
|
+
};
|
|
6931
|
+
readonly searchable: {
|
|
6932
|
+
readonly type: "boolean";
|
|
6664
6933
|
};
|
|
6665
6934
|
};
|
|
6666
|
-
readonly
|
|
6667
|
-
|
|
6935
|
+
readonly required: readonly ["type"];
|
|
6936
|
+
readonly additionalProperties: false;
|
|
6937
|
+
}, {
|
|
6938
|
+
readonly type: "object";
|
|
6939
|
+
readonly properties: {
|
|
6940
|
+
readonly type: {
|
|
6941
|
+
readonly type: "string";
|
|
6942
|
+
readonly const: "attachment";
|
|
6943
|
+
};
|
|
6944
|
+
readonly searchable: {
|
|
6945
|
+
readonly type: "boolean";
|
|
6946
|
+
};
|
|
6668
6947
|
};
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
readonly type: "object";
|
|
6678
|
-
readonly properties: {
|
|
6679
|
-
readonly type: {
|
|
6680
|
-
readonly type: "string";
|
|
6681
|
-
readonly const: "account";
|
|
6682
|
-
};
|
|
6948
|
+
readonly required: readonly ["type"];
|
|
6949
|
+
readonly additionalProperties: false;
|
|
6950
|
+
}, {
|
|
6951
|
+
readonly type: "object";
|
|
6952
|
+
readonly properties: {
|
|
6953
|
+
readonly type: {
|
|
6954
|
+
readonly type: "string";
|
|
6955
|
+
readonly const: "document";
|
|
6683
6956
|
};
|
|
6684
|
-
readonly
|
|
6685
|
-
|
|
6686
|
-
}, {
|
|
6687
|
-
readonly type: "object";
|
|
6688
|
-
readonly properties: {
|
|
6689
|
-
readonly type: {
|
|
6957
|
+
readonly model: {
|
|
6958
|
+
readonly anyOf: readonly [{
|
|
6690
6959
|
readonly type: "string";
|
|
6691
|
-
|
|
6692
|
-
|
|
6960
|
+
}, {
|
|
6961
|
+
readonly type: "null";
|
|
6962
|
+
}];
|
|
6693
6963
|
};
|
|
6694
|
-
readonly
|
|
6695
|
-
|
|
6696
|
-
}, {
|
|
6697
|
-
readonly type: "object";
|
|
6698
|
-
readonly properties: {
|
|
6699
|
-
readonly type: {
|
|
6700
|
-
readonly type: "string";
|
|
6701
|
-
readonly const: "document";
|
|
6702
|
-
};
|
|
6703
|
-
readonly model: {
|
|
6704
|
-
readonly anyOf: readonly [{
|
|
6705
|
-
readonly type: "string";
|
|
6706
|
-
}, {
|
|
6707
|
-
readonly type: "null";
|
|
6708
|
-
}];
|
|
6709
|
-
};
|
|
6964
|
+
readonly searchable: {
|
|
6965
|
+
readonly type: "boolean";
|
|
6710
6966
|
};
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
};
|
|
6967
|
+
};
|
|
6968
|
+
readonly required: readonly ["type", "model"];
|
|
6969
|
+
readonly additionalProperties: false;
|
|
6970
|
+
}];
|
|
6715
6971
|
};
|
|
6716
6972
|
};
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
};
|
|
6721
|
-
}
|
|
6722
|
-
readonly type: "null";
|
|
6723
|
-
}];
|
|
6973
|
+
};
|
|
6974
|
+
readonly required: readonly ["name", "version", "interfaces", "schema", "fieldsMeta", "behavior", "uniqueFields"];
|
|
6975
|
+
readonly additionalProperties: false;
|
|
6976
|
+
}];
|
|
6977
|
+
};
|
|
6724
6978
|
};
|
|
6725
6979
|
readonly aliases: {
|
|
6726
6980
|
readonly type: "object";
|
|
@@ -6729,7 +6983,7 @@ export declare const graphProtocol: {
|
|
|
6729
6983
|
};
|
|
6730
6984
|
};
|
|
6731
6985
|
};
|
|
6732
|
-
readonly required: readonly ["
|
|
6986
|
+
readonly required: readonly ["record", "aliases"];
|
|
6733
6987
|
readonly additionalProperties: false;
|
|
6734
6988
|
};
|
|
6735
6989
|
};
|
|
@@ -7028,4 +7282,3 @@ export declare const graphProtocol: {
|
|
|
7028
7282
|
};
|
|
7029
7283
|
};
|
|
7030
7284
|
export type GraphProtocol = typeof graphProtocol;
|
|
7031
|
-
//# sourceMappingURL=graph.d.ts.map
|