@kubun/protocol 0.4.1 → 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 +250 -1
- package/lib/services/graph.js +1 -240
- 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;
|
|
@@ -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;
|
|
@@ -2177,6 +2274,21 @@ export declare const deployGraphResult: {
|
|
|
2177
2274
|
readonly type: "string";
|
|
2178
2275
|
};
|
|
2179
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
|
+
};
|
|
2180
2292
|
};
|
|
2181
2293
|
readonly required: readonly ["id", "record", "aliases"];
|
|
2182
2294
|
readonly additionalProperties: false;
|
|
@@ -2538,6 +2650,9 @@ export declare const loadGraphResult: {
|
|
|
2538
2650
|
readonly type: "string";
|
|
2539
2651
|
readonly const: "account";
|
|
2540
2652
|
};
|
|
2653
|
+
readonly searchable: {
|
|
2654
|
+
readonly type: "boolean";
|
|
2655
|
+
};
|
|
2541
2656
|
};
|
|
2542
2657
|
readonly required: readonly ["type"];
|
|
2543
2658
|
readonly additionalProperties: false;
|
|
@@ -2548,6 +2663,9 @@ export declare const loadGraphResult: {
|
|
|
2548
2663
|
readonly type: "string";
|
|
2549
2664
|
readonly const: "attachment";
|
|
2550
2665
|
};
|
|
2666
|
+
readonly searchable: {
|
|
2667
|
+
readonly type: "boolean";
|
|
2668
|
+
};
|
|
2551
2669
|
};
|
|
2552
2670
|
readonly required: readonly ["type"];
|
|
2553
2671
|
readonly additionalProperties: false;
|
|
@@ -2565,6 +2683,9 @@ export declare const loadGraphResult: {
|
|
|
2565
2683
|
readonly type: "null";
|
|
2566
2684
|
}];
|
|
2567
2685
|
};
|
|
2686
|
+
readonly searchable: {
|
|
2687
|
+
readonly type: "boolean";
|
|
2688
|
+
};
|
|
2568
2689
|
};
|
|
2569
2690
|
readonly required: readonly ["type", "model"];
|
|
2570
2691
|
readonly additionalProperties: false;
|
|
@@ -2888,6 +3009,9 @@ export declare const loadGraphResult: {
|
|
|
2888
3009
|
readonly type: "string";
|
|
2889
3010
|
readonly const: "account";
|
|
2890
3011
|
};
|
|
3012
|
+
readonly searchable: {
|
|
3013
|
+
readonly type: "boolean";
|
|
3014
|
+
};
|
|
2891
3015
|
};
|
|
2892
3016
|
readonly required: readonly ["type"];
|
|
2893
3017
|
readonly additionalProperties: false;
|
|
@@ -2898,6 +3022,9 @@ export declare const loadGraphResult: {
|
|
|
2898
3022
|
readonly type: "string";
|
|
2899
3023
|
readonly const: "attachment";
|
|
2900
3024
|
};
|
|
3025
|
+
readonly searchable: {
|
|
3026
|
+
readonly type: "boolean";
|
|
3027
|
+
};
|
|
2901
3028
|
};
|
|
2902
3029
|
readonly required: readonly ["type"];
|
|
2903
3030
|
readonly additionalProperties: false;
|
|
@@ -2915,6 +3042,9 @@ export declare const loadGraphResult: {
|
|
|
2915
3042
|
readonly type: "null";
|
|
2916
3043
|
}];
|
|
2917
3044
|
};
|
|
3045
|
+
readonly searchable: {
|
|
3046
|
+
readonly type: "boolean";
|
|
3047
|
+
};
|
|
2918
3048
|
};
|
|
2919
3049
|
readonly required: readonly ["type", "model"];
|
|
2920
3050
|
readonly additionalProperties: false;
|
|
@@ -3244,6 +3374,9 @@ export declare const loadGraphResult: {
|
|
|
3244
3374
|
readonly type: "string";
|
|
3245
3375
|
readonly const: "account";
|
|
3246
3376
|
};
|
|
3377
|
+
readonly searchable: {
|
|
3378
|
+
readonly type: "boolean";
|
|
3379
|
+
};
|
|
3247
3380
|
};
|
|
3248
3381
|
readonly required: readonly ["type"];
|
|
3249
3382
|
readonly additionalProperties: false;
|
|
@@ -3254,6 +3387,9 @@ export declare const loadGraphResult: {
|
|
|
3254
3387
|
readonly type: "string";
|
|
3255
3388
|
readonly const: "attachment";
|
|
3256
3389
|
};
|
|
3390
|
+
readonly searchable: {
|
|
3391
|
+
readonly type: "boolean";
|
|
3392
|
+
};
|
|
3257
3393
|
};
|
|
3258
3394
|
readonly required: readonly ["type"];
|
|
3259
3395
|
readonly additionalProperties: false;
|
|
@@ -3271,6 +3407,9 @@ export declare const loadGraphResult: {
|
|
|
3271
3407
|
readonly type: "null";
|
|
3272
3408
|
}];
|
|
3273
3409
|
};
|
|
3410
|
+
readonly searchable: {
|
|
3411
|
+
readonly type: "boolean";
|
|
3412
|
+
};
|
|
3274
3413
|
};
|
|
3275
3414
|
readonly required: readonly ["type", "model"];
|
|
3276
3415
|
readonly additionalProperties: false;
|
|
@@ -3772,6 +3911,9 @@ export declare const graphProtocol: {
|
|
|
3772
3911
|
readonly type: "string";
|
|
3773
3912
|
readonly const: "account";
|
|
3774
3913
|
};
|
|
3914
|
+
readonly searchable: {
|
|
3915
|
+
readonly type: "boolean";
|
|
3916
|
+
};
|
|
3775
3917
|
};
|
|
3776
3918
|
readonly required: readonly ["type"];
|
|
3777
3919
|
readonly additionalProperties: false;
|
|
@@ -3782,6 +3924,9 @@ export declare const graphProtocol: {
|
|
|
3782
3924
|
readonly type: "string";
|
|
3783
3925
|
readonly const: "attachment";
|
|
3784
3926
|
};
|
|
3927
|
+
readonly searchable: {
|
|
3928
|
+
readonly type: "boolean";
|
|
3929
|
+
};
|
|
3785
3930
|
};
|
|
3786
3931
|
readonly required: readonly ["type"];
|
|
3787
3932
|
readonly additionalProperties: false;
|
|
@@ -3799,6 +3944,9 @@ export declare const graphProtocol: {
|
|
|
3799
3944
|
readonly type: "null";
|
|
3800
3945
|
}];
|
|
3801
3946
|
};
|
|
3947
|
+
readonly searchable: {
|
|
3948
|
+
readonly type: "boolean";
|
|
3949
|
+
};
|
|
3802
3950
|
};
|
|
3803
3951
|
readonly required: readonly ["type", "model"];
|
|
3804
3952
|
readonly additionalProperties: false;
|
|
@@ -4122,6 +4270,9 @@ export declare const graphProtocol: {
|
|
|
4122
4270
|
readonly type: "string";
|
|
4123
4271
|
readonly const: "account";
|
|
4124
4272
|
};
|
|
4273
|
+
readonly searchable: {
|
|
4274
|
+
readonly type: "boolean";
|
|
4275
|
+
};
|
|
4125
4276
|
};
|
|
4126
4277
|
readonly required: readonly ["type"];
|
|
4127
4278
|
readonly additionalProperties: false;
|
|
@@ -4132,6 +4283,9 @@ export declare const graphProtocol: {
|
|
|
4132
4283
|
readonly type: "string";
|
|
4133
4284
|
readonly const: "attachment";
|
|
4134
4285
|
};
|
|
4286
|
+
readonly searchable: {
|
|
4287
|
+
readonly type: "boolean";
|
|
4288
|
+
};
|
|
4135
4289
|
};
|
|
4136
4290
|
readonly required: readonly ["type"];
|
|
4137
4291
|
readonly additionalProperties: false;
|
|
@@ -4149,6 +4303,9 @@ export declare const graphProtocol: {
|
|
|
4149
4303
|
readonly type: "null";
|
|
4150
4304
|
}];
|
|
4151
4305
|
};
|
|
4306
|
+
readonly searchable: {
|
|
4307
|
+
readonly type: "boolean";
|
|
4308
|
+
};
|
|
4152
4309
|
};
|
|
4153
4310
|
readonly required: readonly ["type", "model"];
|
|
4154
4311
|
readonly additionalProperties: false;
|
|
@@ -4478,6 +4635,9 @@ export declare const graphProtocol: {
|
|
|
4478
4635
|
readonly type: "string";
|
|
4479
4636
|
readonly const: "account";
|
|
4480
4637
|
};
|
|
4638
|
+
readonly searchable: {
|
|
4639
|
+
readonly type: "boolean";
|
|
4640
|
+
};
|
|
4481
4641
|
};
|
|
4482
4642
|
readonly required: readonly ["type"];
|
|
4483
4643
|
readonly additionalProperties: false;
|
|
@@ -4488,6 +4648,9 @@ export declare const graphProtocol: {
|
|
|
4488
4648
|
readonly type: "string";
|
|
4489
4649
|
readonly const: "attachment";
|
|
4490
4650
|
};
|
|
4651
|
+
readonly searchable: {
|
|
4652
|
+
readonly type: "boolean";
|
|
4653
|
+
};
|
|
4491
4654
|
};
|
|
4492
4655
|
readonly required: readonly ["type"];
|
|
4493
4656
|
readonly additionalProperties: false;
|
|
@@ -4505,6 +4668,9 @@ export declare const graphProtocol: {
|
|
|
4505
4668
|
readonly type: "null";
|
|
4506
4669
|
}];
|
|
4507
4670
|
};
|
|
4671
|
+
readonly searchable: {
|
|
4672
|
+
readonly type: "boolean";
|
|
4673
|
+
};
|
|
4508
4674
|
};
|
|
4509
4675
|
readonly required: readonly ["type", "model"];
|
|
4510
4676
|
readonly additionalProperties: false;
|
|
@@ -4538,6 +4704,21 @@ export declare const graphProtocol: {
|
|
|
4538
4704
|
readonly name: {
|
|
4539
4705
|
readonly type: "string";
|
|
4540
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
|
+
};
|
|
4541
4722
|
};
|
|
4542
4723
|
readonly required: readonly ["clusters"];
|
|
4543
4724
|
readonly additionalProperties: false;
|
|
@@ -4866,6 +5047,9 @@ export declare const graphProtocol: {
|
|
|
4866
5047
|
readonly type: "string";
|
|
4867
5048
|
readonly const: "account";
|
|
4868
5049
|
};
|
|
5050
|
+
readonly searchable: {
|
|
5051
|
+
readonly type: "boolean";
|
|
5052
|
+
};
|
|
4869
5053
|
};
|
|
4870
5054
|
readonly required: readonly ["type"];
|
|
4871
5055
|
readonly additionalProperties: false;
|
|
@@ -4876,6 +5060,9 @@ export declare const graphProtocol: {
|
|
|
4876
5060
|
readonly type: "string";
|
|
4877
5061
|
readonly const: "attachment";
|
|
4878
5062
|
};
|
|
5063
|
+
readonly searchable: {
|
|
5064
|
+
readonly type: "boolean";
|
|
5065
|
+
};
|
|
4879
5066
|
};
|
|
4880
5067
|
readonly required: readonly ["type"];
|
|
4881
5068
|
readonly additionalProperties: false;
|
|
@@ -4893,6 +5080,9 @@ export declare const graphProtocol: {
|
|
|
4893
5080
|
readonly type: "null";
|
|
4894
5081
|
}];
|
|
4895
5082
|
};
|
|
5083
|
+
readonly searchable: {
|
|
5084
|
+
readonly type: "boolean";
|
|
5085
|
+
};
|
|
4896
5086
|
};
|
|
4897
5087
|
readonly required: readonly ["type", "model"];
|
|
4898
5088
|
readonly additionalProperties: false;
|
|
@@ -5216,6 +5406,9 @@ export declare const graphProtocol: {
|
|
|
5216
5406
|
readonly type: "string";
|
|
5217
5407
|
readonly const: "account";
|
|
5218
5408
|
};
|
|
5409
|
+
readonly searchable: {
|
|
5410
|
+
readonly type: "boolean";
|
|
5411
|
+
};
|
|
5219
5412
|
};
|
|
5220
5413
|
readonly required: readonly ["type"];
|
|
5221
5414
|
readonly additionalProperties: false;
|
|
@@ -5226,6 +5419,9 @@ export declare const graphProtocol: {
|
|
|
5226
5419
|
readonly type: "string";
|
|
5227
5420
|
readonly const: "attachment";
|
|
5228
5421
|
};
|
|
5422
|
+
readonly searchable: {
|
|
5423
|
+
readonly type: "boolean";
|
|
5424
|
+
};
|
|
5229
5425
|
};
|
|
5230
5426
|
readonly required: readonly ["type"];
|
|
5231
5427
|
readonly additionalProperties: false;
|
|
@@ -5243,6 +5439,9 @@ export declare const graphProtocol: {
|
|
|
5243
5439
|
readonly type: "null";
|
|
5244
5440
|
}];
|
|
5245
5441
|
};
|
|
5442
|
+
readonly searchable: {
|
|
5443
|
+
readonly type: "boolean";
|
|
5444
|
+
};
|
|
5246
5445
|
};
|
|
5247
5446
|
readonly required: readonly ["type", "model"];
|
|
5248
5447
|
readonly additionalProperties: false;
|
|
@@ -5572,6 +5771,9 @@ export declare const graphProtocol: {
|
|
|
5572
5771
|
readonly type: "string";
|
|
5573
5772
|
readonly const: "account";
|
|
5574
5773
|
};
|
|
5774
|
+
readonly searchable: {
|
|
5775
|
+
readonly type: "boolean";
|
|
5776
|
+
};
|
|
5575
5777
|
};
|
|
5576
5778
|
readonly required: readonly ["type"];
|
|
5577
5779
|
readonly additionalProperties: false;
|
|
@@ -5582,6 +5784,9 @@ export declare const graphProtocol: {
|
|
|
5582
5784
|
readonly type: "string";
|
|
5583
5785
|
readonly const: "attachment";
|
|
5584
5786
|
};
|
|
5787
|
+
readonly searchable: {
|
|
5788
|
+
readonly type: "boolean";
|
|
5789
|
+
};
|
|
5585
5790
|
};
|
|
5586
5791
|
readonly required: readonly ["type"];
|
|
5587
5792
|
readonly additionalProperties: false;
|
|
@@ -5599,6 +5804,9 @@ export declare const graphProtocol: {
|
|
|
5599
5804
|
readonly type: "null";
|
|
5600
5805
|
}];
|
|
5601
5806
|
};
|
|
5807
|
+
readonly searchable: {
|
|
5808
|
+
readonly type: "boolean";
|
|
5809
|
+
};
|
|
5602
5810
|
};
|
|
5603
5811
|
readonly required: readonly ["type", "model"];
|
|
5604
5812
|
readonly additionalProperties: false;
|
|
@@ -5617,6 +5825,21 @@ export declare const graphProtocol: {
|
|
|
5617
5825
|
readonly type: "string";
|
|
5618
5826
|
};
|
|
5619
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
|
+
};
|
|
5620
5843
|
};
|
|
5621
5844
|
readonly required: readonly ["id", "record", "aliases"];
|
|
5622
5845
|
readonly additionalProperties: false;
|
|
@@ -5981,6 +6204,9 @@ export declare const graphProtocol: {
|
|
|
5981
6204
|
readonly type: "string";
|
|
5982
6205
|
readonly const: "account";
|
|
5983
6206
|
};
|
|
6207
|
+
readonly searchable: {
|
|
6208
|
+
readonly type: "boolean";
|
|
6209
|
+
};
|
|
5984
6210
|
};
|
|
5985
6211
|
readonly required: readonly ["type"];
|
|
5986
6212
|
readonly additionalProperties: false;
|
|
@@ -5991,6 +6217,9 @@ export declare const graphProtocol: {
|
|
|
5991
6217
|
readonly type: "string";
|
|
5992
6218
|
readonly const: "attachment";
|
|
5993
6219
|
};
|
|
6220
|
+
readonly searchable: {
|
|
6221
|
+
readonly type: "boolean";
|
|
6222
|
+
};
|
|
5994
6223
|
};
|
|
5995
6224
|
readonly required: readonly ["type"];
|
|
5996
6225
|
readonly additionalProperties: false;
|
|
@@ -6008,6 +6237,9 @@ export declare const graphProtocol: {
|
|
|
6008
6237
|
readonly type: "null";
|
|
6009
6238
|
}];
|
|
6010
6239
|
};
|
|
6240
|
+
readonly searchable: {
|
|
6241
|
+
readonly type: "boolean";
|
|
6242
|
+
};
|
|
6011
6243
|
};
|
|
6012
6244
|
readonly required: readonly ["type", "model"];
|
|
6013
6245
|
readonly additionalProperties: false;
|
|
@@ -6331,6 +6563,9 @@ export declare const graphProtocol: {
|
|
|
6331
6563
|
readonly type: "string";
|
|
6332
6564
|
readonly const: "account";
|
|
6333
6565
|
};
|
|
6566
|
+
readonly searchable: {
|
|
6567
|
+
readonly type: "boolean";
|
|
6568
|
+
};
|
|
6334
6569
|
};
|
|
6335
6570
|
readonly required: readonly ["type"];
|
|
6336
6571
|
readonly additionalProperties: false;
|
|
@@ -6341,6 +6576,9 @@ export declare const graphProtocol: {
|
|
|
6341
6576
|
readonly type: "string";
|
|
6342
6577
|
readonly const: "attachment";
|
|
6343
6578
|
};
|
|
6579
|
+
readonly searchable: {
|
|
6580
|
+
readonly type: "boolean";
|
|
6581
|
+
};
|
|
6344
6582
|
};
|
|
6345
6583
|
readonly required: readonly ["type"];
|
|
6346
6584
|
readonly additionalProperties: false;
|
|
@@ -6358,6 +6596,9 @@ export declare const graphProtocol: {
|
|
|
6358
6596
|
readonly type: "null";
|
|
6359
6597
|
}];
|
|
6360
6598
|
};
|
|
6599
|
+
readonly searchable: {
|
|
6600
|
+
readonly type: "boolean";
|
|
6601
|
+
};
|
|
6361
6602
|
};
|
|
6362
6603
|
readonly required: readonly ["type", "model"];
|
|
6363
6604
|
readonly additionalProperties: false;
|
|
@@ -6687,6 +6928,9 @@ export declare const graphProtocol: {
|
|
|
6687
6928
|
readonly type: "string";
|
|
6688
6929
|
readonly const: "account";
|
|
6689
6930
|
};
|
|
6931
|
+
readonly searchable: {
|
|
6932
|
+
readonly type: "boolean";
|
|
6933
|
+
};
|
|
6690
6934
|
};
|
|
6691
6935
|
readonly required: readonly ["type"];
|
|
6692
6936
|
readonly additionalProperties: false;
|
|
@@ -6697,6 +6941,9 @@ export declare const graphProtocol: {
|
|
|
6697
6941
|
readonly type: "string";
|
|
6698
6942
|
readonly const: "attachment";
|
|
6699
6943
|
};
|
|
6944
|
+
readonly searchable: {
|
|
6945
|
+
readonly type: "boolean";
|
|
6946
|
+
};
|
|
6700
6947
|
};
|
|
6701
6948
|
readonly required: readonly ["type"];
|
|
6702
6949
|
readonly additionalProperties: false;
|
|
@@ -6714,6 +6961,9 @@ export declare const graphProtocol: {
|
|
|
6714
6961
|
readonly type: "null";
|
|
6715
6962
|
}];
|
|
6716
6963
|
};
|
|
6964
|
+
readonly searchable: {
|
|
6965
|
+
readonly type: "boolean";
|
|
6966
|
+
};
|
|
6717
6967
|
};
|
|
6718
6968
|
readonly required: readonly ["type", "model"];
|
|
6719
6969
|
readonly additionalProperties: false;
|
|
@@ -7032,4 +7282,3 @@ export declare const graphProtocol: {
|
|
|
7032
7282
|
};
|
|
7033
7283
|
};
|
|
7034
7284
|
export type GraphProtocol = typeof graphProtocol;
|
|
7035
|
-
//# sourceMappingURL=graph.d.ts.map
|