@nxtedition/types 23.0.55 → 23.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/nxtpression.d.ts +1 -1
- package/dist/common/search.d.ts +9 -0
- package/dist/common/settings.d.ts +11 -0
- package/dist/nxtpression.d.ts +191 -18
- package/dist/records/domains/asset.d.ts +4 -0
- package/dist/records/domains/calendarevent.d.ts +27 -0
- package/dist/records/domains/calendarevent.js +1 -0
- package/dist/records/domains/condition.d.ts +5 -0
- package/dist/records/domains/condition.js +1 -0
- package/dist/records/domains/harvest.d.ts +10 -0
- package/dist/records/domains/harvest.js +1 -0
- package/dist/records/domains/index.d.ts +11 -1
- package/dist/records/domains/index.js +5 -0
- package/dist/records/domains/ingestclip.d.ts +21 -0
- package/dist/records/domains/ingestclip.js +1 -0
- package/dist/records/domains/panel.d.ts +8 -1
- package/dist/records/domains/publish/empty.d.ts +3 -3
- package/dist/records/domains/publish/facebook.d.ts +1 -1
- package/dist/records/domains/publish/file-legacy.d.ts +1 -1
- package/dist/records/domains/publish/file.d.ts +1 -1
- package/dist/records/domains/publish/index.d.ts +6 -2
- package/dist/records/domains/publish/youtube.d.ts +1 -1
- package/dist/records/domains/published.d.ts +7 -3
- package/dist/records/domains/search.d.ts +24 -4
- package/dist/records/domains/shotbox.d.ts +33 -0
- package/dist/records/domains/shotbox.js +1 -0
- package/dist/records/validate/assert-guard.js +1077 -325
- package/dist/records/validate/assert.js +1080 -320
- package/dist/records/validate/is.js +57 -31
- package/dist/records/validate/schemas.js +709 -111
- package/dist/records/validate/stringify.js +102 -71
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +1563 -459
- package/dist/records/validate/validate.js +1018 -292
- package/dist/rpc.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1800,6 +1800,32 @@ function _schemasDomainRecord(domain) {
|
|
|
1800
1800
|
]
|
|
1801
1801
|
};
|
|
1802
1802
|
}
|
|
1803
|
+
case ":asset.rawTypes?": {
|
|
1804
|
+
return {
|
|
1805
|
+
version: "3.1",
|
|
1806
|
+
components: {
|
|
1807
|
+
schemas: {
|
|
1808
|
+
AssetRawTypesProvidedRecord: {
|
|
1809
|
+
type: "object",
|
|
1810
|
+
properties: {
|
|
1811
|
+
value: {
|
|
1812
|
+
type: "array",
|
|
1813
|
+
items: {
|
|
1814
|
+
type: "string"
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
},
|
|
1818
|
+
required: []
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
schemas: [
|
|
1823
|
+
{
|
|
1824
|
+
$ref: "#/components/schemas/AssetRawTypesProvidedRecord"
|
|
1825
|
+
}
|
|
1826
|
+
]
|
|
1827
|
+
};
|
|
1828
|
+
}
|
|
1803
1829
|
case ":asset.types?": {
|
|
1804
1830
|
return {
|
|
1805
1831
|
version: "3.1",
|
|
@@ -2491,6 +2517,121 @@ function _schemasDomainRecord(domain) {
|
|
|
2491
2517
|
]
|
|
2492
2518
|
};
|
|
2493
2519
|
}
|
|
2520
|
+
case ":calendarevent": {
|
|
2521
|
+
return {
|
|
2522
|
+
version: "3.1",
|
|
2523
|
+
components: {
|
|
2524
|
+
schemas: {
|
|
2525
|
+
CalendarEventDomainRecord: {
|
|
2526
|
+
type: "object",
|
|
2527
|
+
properties: {
|
|
2528
|
+
start: {
|
|
2529
|
+
oneOf: [
|
|
2530
|
+
{
|
|
2531
|
+
type: "null"
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
type: "string"
|
|
2535
|
+
}
|
|
2536
|
+
]
|
|
2537
|
+
},
|
|
2538
|
+
end: {
|
|
2539
|
+
oneOf: [
|
|
2540
|
+
{
|
|
2541
|
+
type: "null"
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
type: "string"
|
|
2545
|
+
}
|
|
2546
|
+
]
|
|
2547
|
+
},
|
|
2548
|
+
description: {
|
|
2549
|
+
type: "string"
|
|
2550
|
+
},
|
|
2551
|
+
recurrence: {
|
|
2552
|
+
oneOf: [
|
|
2553
|
+
{
|
|
2554
|
+
type: "null"
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
$ref: "#/components/schemas/CalendarEventDomainRecurrenceRule"
|
|
2558
|
+
}
|
|
2559
|
+
]
|
|
2560
|
+
},
|
|
2561
|
+
color: {
|
|
2562
|
+
type: "string"
|
|
2563
|
+
}
|
|
2564
|
+
},
|
|
2565
|
+
required: []
|
|
2566
|
+
},
|
|
2567
|
+
CalendarEventDomainRecurrenceRule: {
|
|
2568
|
+
type: "object",
|
|
2569
|
+
properties: {
|
|
2570
|
+
interval: {
|
|
2571
|
+
type: "number",
|
|
2572
|
+
description: "\"Repeat every {interval} {frequency}\""
|
|
2573
|
+
},
|
|
2574
|
+
frequency: {
|
|
2575
|
+
oneOf: [
|
|
2576
|
+
{
|
|
2577
|
+
type: "null"
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
"const": "days"
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"const": "weeks"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"const": "months"
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"const": "years"
|
|
2590
|
+
}
|
|
2591
|
+
],
|
|
2592
|
+
description: "\"Repeat every {interval} {frequency}\""
|
|
2593
|
+
},
|
|
2594
|
+
byweekday: {
|
|
2595
|
+
oneOf: [
|
|
2596
|
+
{
|
|
2597
|
+
type: "null"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
type: "array",
|
|
2601
|
+
items: {
|
|
2602
|
+
type: "number"
|
|
2603
|
+
}
|
|
2604
|
+
}
|
|
2605
|
+
],
|
|
2606
|
+
description: "\"Repeat on\"\n1 = Monday, 2 = Tuesday, ..., 7 = Sunday\nUsed when frequency is 'weeks'"
|
|
2607
|
+
},
|
|
2608
|
+
count: {
|
|
2609
|
+
type: "null",
|
|
2610
|
+
description: "\"Ends after\""
|
|
2611
|
+
},
|
|
2612
|
+
until: {
|
|
2613
|
+
oneOf: [
|
|
2614
|
+
{
|
|
2615
|
+
type: "null"
|
|
2616
|
+
},
|
|
2617
|
+
{
|
|
2618
|
+
type: "string"
|
|
2619
|
+
}
|
|
2620
|
+
],
|
|
2621
|
+
description: "\"Ends on date\""
|
|
2622
|
+
}
|
|
2623
|
+
},
|
|
2624
|
+
required: []
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
},
|
|
2628
|
+
schemas: [
|
|
2629
|
+
{
|
|
2630
|
+
$ref: "#/components/schemas/CalendarEventDomainRecord"
|
|
2631
|
+
}
|
|
2632
|
+
]
|
|
2633
|
+
};
|
|
2634
|
+
}
|
|
2494
2635
|
case ":clone": {
|
|
2495
2636
|
return {
|
|
2496
2637
|
version: "3.1",
|
|
@@ -3031,6 +3172,36 @@ function _schemasDomainRecord(domain) {
|
|
|
3031
3172
|
]
|
|
3032
3173
|
};
|
|
3033
3174
|
}
|
|
3175
|
+
case ":condition": {
|
|
3176
|
+
return {
|
|
3177
|
+
version: "3.1",
|
|
3178
|
+
components: {
|
|
3179
|
+
schemas: {
|
|
3180
|
+
SearchCondition: {
|
|
3181
|
+
type: "object",
|
|
3182
|
+
properties: {
|
|
3183
|
+
field: {
|
|
3184
|
+
type: "string"
|
|
3185
|
+
},
|
|
3186
|
+
type: {
|
|
3187
|
+
type: "string"
|
|
3188
|
+
},
|
|
3189
|
+
op: {
|
|
3190
|
+
type: "string"
|
|
3191
|
+
},
|
|
3192
|
+
value: {}
|
|
3193
|
+
},
|
|
3194
|
+
required: []
|
|
3195
|
+
}
|
|
3196
|
+
}
|
|
3197
|
+
},
|
|
3198
|
+
schemas: [
|
|
3199
|
+
{
|
|
3200
|
+
$ref: "#/components/schemas/SearchCondition"
|
|
3201
|
+
}
|
|
3202
|
+
]
|
|
3203
|
+
};
|
|
3204
|
+
}
|
|
3034
3205
|
case ":connection": {
|
|
3035
3206
|
return {
|
|
3036
3207
|
version: "3.1",
|
|
@@ -6668,6 +6839,112 @@ function _schemasDomainRecord(domain) {
|
|
|
6668
6839
|
]
|
|
6669
6840
|
};
|
|
6670
6841
|
}
|
|
6842
|
+
case ":harvest": {
|
|
6843
|
+
return {
|
|
6844
|
+
version: "3.1",
|
|
6845
|
+
components: {
|
|
6846
|
+
schemas: {
|
|
6847
|
+
HarvestDomainRecord: {
|
|
6848
|
+
type: "object",
|
|
6849
|
+
properties: {
|
|
6850
|
+
active: {
|
|
6851
|
+
type: "boolean"
|
|
6852
|
+
},
|
|
6853
|
+
tags: {
|
|
6854
|
+
type: "array",
|
|
6855
|
+
items: {
|
|
6856
|
+
type: "string"
|
|
6857
|
+
}
|
|
6858
|
+
},
|
|
6859
|
+
revisions: {
|
|
6860
|
+
type: "boolean"
|
|
6861
|
+
},
|
|
6862
|
+
concurrency: {
|
|
6863
|
+
type: "number"
|
|
6864
|
+
},
|
|
6865
|
+
throttle: {
|
|
6866
|
+
type: "number"
|
|
6867
|
+
}
|
|
6868
|
+
},
|
|
6869
|
+
required: []
|
|
6870
|
+
}
|
|
6871
|
+
}
|
|
6872
|
+
},
|
|
6873
|
+
schemas: [
|
|
6874
|
+
{
|
|
6875
|
+
$ref: "#/components/schemas/HarvestDomainRecord"
|
|
6876
|
+
}
|
|
6877
|
+
]
|
|
6878
|
+
};
|
|
6879
|
+
}
|
|
6880
|
+
case ":ingestclip": {
|
|
6881
|
+
return {
|
|
6882
|
+
version: "3.1",
|
|
6883
|
+
components: {
|
|
6884
|
+
schemas: {
|
|
6885
|
+
IngestclipDomainRecord: {
|
|
6886
|
+
type: "object",
|
|
6887
|
+
properties: {
|
|
6888
|
+
time: {
|
|
6889
|
+
type: "number"
|
|
6890
|
+
},
|
|
6891
|
+
duration: {
|
|
6892
|
+
type: "number"
|
|
6893
|
+
},
|
|
6894
|
+
type: {
|
|
6895
|
+
type: "string"
|
|
6896
|
+
},
|
|
6897
|
+
record: {
|
|
6898
|
+
type: "string"
|
|
6899
|
+
},
|
|
6900
|
+
data: {
|
|
6901
|
+
type: "boolean"
|
|
6902
|
+
},
|
|
6903
|
+
gallery: {
|
|
6904
|
+
type: "string"
|
|
6905
|
+
},
|
|
6906
|
+
rundown: {
|
|
6907
|
+
type: "string"
|
|
6908
|
+
},
|
|
6909
|
+
segment: {
|
|
6910
|
+
type: "string"
|
|
6911
|
+
},
|
|
6912
|
+
story: {
|
|
6913
|
+
type: "string"
|
|
6914
|
+
},
|
|
6915
|
+
event: {
|
|
6916
|
+
type: "string"
|
|
6917
|
+
},
|
|
6918
|
+
title: {
|
|
6919
|
+
type: "string"
|
|
6920
|
+
},
|
|
6921
|
+
start: {
|
|
6922
|
+
type: "number"
|
|
6923
|
+
},
|
|
6924
|
+
end: {
|
|
6925
|
+
type: "number"
|
|
6926
|
+
},
|
|
6927
|
+
channel: {
|
|
6928
|
+
type: "string"
|
|
6929
|
+
},
|
|
6930
|
+
schedule: {
|
|
6931
|
+
type: "string"
|
|
6932
|
+
},
|
|
6933
|
+
parent: {
|
|
6934
|
+
type: "string"
|
|
6935
|
+
}
|
|
6936
|
+
},
|
|
6937
|
+
required: []
|
|
6938
|
+
}
|
|
6939
|
+
}
|
|
6940
|
+
},
|
|
6941
|
+
schemas: [
|
|
6942
|
+
{
|
|
6943
|
+
$ref: "#/components/schemas/IngestclipDomainRecord"
|
|
6944
|
+
}
|
|
6945
|
+
]
|
|
6946
|
+
};
|
|
6947
|
+
}
|
|
6671
6948
|
case ":media.source": {
|
|
6672
6949
|
return {
|
|
6673
6950
|
version: "3.1",
|
|
@@ -8217,64 +8494,18 @@ function _schemasDomainRecord(domain) {
|
|
|
8217
8494
|
},
|
|
8218
8495
|
required: []
|
|
8219
8496
|
},
|
|
8220
|
-
filter: {
|
|
8497
|
+
filter: {},
|
|
8498
|
+
expand: {}
|
|
8499
|
+
},
|
|
8500
|
+
required: []
|
|
8501
|
+
},
|
|
8502
|
+
PanelProperty: {
|
|
8503
|
+
type: "object",
|
|
8504
|
+
properties: {
|
|
8505
|
+
type: {
|
|
8221
8506
|
oneOf: [
|
|
8222
8507
|
{
|
|
8223
|
-
|
|
8224
|
-
},
|
|
8225
|
-
{
|
|
8226
|
-
type: "object",
|
|
8227
|
-
properties: {
|
|
8228
|
-
__context: {
|
|
8229
|
-
$ref: "#/components/schemas/object",
|
|
8230
|
-
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
8231
|
-
},
|
|
8232
|
-
__returnValue: {
|
|
8233
|
-
type: "string",
|
|
8234
|
-
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
8235
|
-
}
|
|
8236
|
-
},
|
|
8237
|
-
required: [
|
|
8238
|
-
"__context",
|
|
8239
|
-
"__returnValue"
|
|
8240
|
-
]
|
|
8241
|
-
}
|
|
8242
|
-
]
|
|
8243
|
-
},
|
|
8244
|
-
expand: {
|
|
8245
|
-
oneOf: [
|
|
8246
|
-
{
|
|
8247
|
-
type: "string"
|
|
8248
|
-
},
|
|
8249
|
-
{
|
|
8250
|
-
type: "object",
|
|
8251
|
-
properties: {
|
|
8252
|
-
__context: {
|
|
8253
|
-
$ref: "#/components/schemas/object",
|
|
8254
|
-
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
8255
|
-
},
|
|
8256
|
-
__returnValue: {
|
|
8257
|
-
type: "string",
|
|
8258
|
-
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
8259
|
-
}
|
|
8260
|
-
},
|
|
8261
|
-
required: [
|
|
8262
|
-
"__context",
|
|
8263
|
-
"__returnValue"
|
|
8264
|
-
]
|
|
8265
|
-
}
|
|
8266
|
-
]
|
|
8267
|
-
}
|
|
8268
|
-
},
|
|
8269
|
-
required: []
|
|
8270
|
-
},
|
|
8271
|
-
PanelProperty: {
|
|
8272
|
-
type: "object",
|
|
8273
|
-
properties: {
|
|
8274
|
-
type: {
|
|
8275
|
-
oneOf: [
|
|
8276
|
-
{
|
|
8277
|
-
"const": "string"
|
|
8508
|
+
"const": "string"
|
|
8278
8509
|
},
|
|
8279
8510
|
{
|
|
8280
8511
|
"const": "number"
|
|
@@ -8338,7 +8569,29 @@ function _schemasDomainRecord(domain) {
|
|
|
8338
8569
|
},
|
|
8339
8570
|
oneOf: {
|
|
8340
8571
|
type: "array",
|
|
8341
|
-
items: {
|
|
8572
|
+
items: {
|
|
8573
|
+
type: "object",
|
|
8574
|
+
properties: {
|
|
8575
|
+
"const": {},
|
|
8576
|
+
title: {
|
|
8577
|
+
type: "string"
|
|
8578
|
+
}
|
|
8579
|
+
},
|
|
8580
|
+
required: []
|
|
8581
|
+
}
|
|
8582
|
+
},
|
|
8583
|
+
anyOf: {
|
|
8584
|
+
type: "array",
|
|
8585
|
+
items: {
|
|
8586
|
+
type: "object",
|
|
8587
|
+
properties: {
|
|
8588
|
+
"const": {},
|
|
8589
|
+
title: {
|
|
8590
|
+
type: "string"
|
|
8591
|
+
}
|
|
8592
|
+
},
|
|
8593
|
+
required: []
|
|
8594
|
+
}
|
|
8342
8595
|
}
|
|
8343
8596
|
},
|
|
8344
8597
|
required: [
|
|
@@ -8468,11 +8721,6 @@ function _schemasDomainRecord(domain) {
|
|
|
8468
8721
|
"const": "tags"
|
|
8469
8722
|
}
|
|
8470
8723
|
]
|
|
8471
|
-
},
|
|
8472
|
-
object: {
|
|
8473
|
-
type: "object",
|
|
8474
|
-
properties: {},
|
|
8475
|
-
required: []
|
|
8476
8724
|
}
|
|
8477
8725
|
}
|
|
8478
8726
|
},
|
|
@@ -8996,30 +9244,6 @@ function _schemasDomainRecord(domain) {
|
|
|
8996
9244
|
type: {
|
|
8997
9245
|
type: "null"
|
|
8998
9246
|
},
|
|
8999
|
-
asset: {
|
|
9000
|
-
oneOf: [
|
|
9001
|
-
{
|
|
9002
|
-
type: "null"
|
|
9003
|
-
},
|
|
9004
|
-
{
|
|
9005
|
-
type: "string"
|
|
9006
|
-
}
|
|
9007
|
-
]
|
|
9008
|
-
}
|
|
9009
|
-
},
|
|
9010
|
-
required: [
|
|
9011
|
-
"type"
|
|
9012
|
-
]
|
|
9013
|
-
},
|
|
9014
|
-
FacebookPublishRecord: {
|
|
9015
|
-
type: "object",
|
|
9016
|
-
properties: {
|
|
9017
|
-
type: {
|
|
9018
|
-
"const": "facebook"
|
|
9019
|
-
},
|
|
9020
|
-
pageId: {
|
|
9021
|
-
type: "string"
|
|
9022
|
-
},
|
|
9023
9247
|
asset: {
|
|
9024
9248
|
oneOf: [
|
|
9025
9249
|
{
|
|
@@ -9064,9 +9288,7 @@ function _schemasDomainRecord(domain) {
|
|
|
9064
9288
|
}
|
|
9065
9289
|
}
|
|
9066
9290
|
},
|
|
9067
|
-
required: [
|
|
9068
|
-
"type"
|
|
9069
|
-
]
|
|
9291
|
+
required: []
|
|
9070
9292
|
},
|
|
9071
9293
|
PublishRenderBase: {
|
|
9072
9294
|
type: "object",
|
|
@@ -9378,6 +9600,61 @@ function _schemasDomainRecord(domain) {
|
|
|
9378
9600
|
"msg"
|
|
9379
9601
|
]
|
|
9380
9602
|
},
|
|
9603
|
+
FacebookPublishRecord: {
|
|
9604
|
+
type: "object",
|
|
9605
|
+
properties: {
|
|
9606
|
+
type: {
|
|
9607
|
+
"const": "facebook"
|
|
9608
|
+
},
|
|
9609
|
+
pageId: {
|
|
9610
|
+
type: "string"
|
|
9611
|
+
},
|
|
9612
|
+
asset: {
|
|
9613
|
+
oneOf: [
|
|
9614
|
+
{
|
|
9615
|
+
type: "null"
|
|
9616
|
+
},
|
|
9617
|
+
{
|
|
9618
|
+
type: "string"
|
|
9619
|
+
}
|
|
9620
|
+
]
|
|
9621
|
+
},
|
|
9622
|
+
connection: {
|
|
9623
|
+
type: "string"
|
|
9624
|
+
},
|
|
9625
|
+
render: {
|
|
9626
|
+
$ref: "#/components/schemas/PublishRenderBase"
|
|
9627
|
+
},
|
|
9628
|
+
draft: {},
|
|
9629
|
+
published: {},
|
|
9630
|
+
remote: {},
|
|
9631
|
+
error: {
|
|
9632
|
+
oneOf: [
|
|
9633
|
+
{
|
|
9634
|
+
type: "null"
|
|
9635
|
+
},
|
|
9636
|
+
{
|
|
9637
|
+
type: "object",
|
|
9638
|
+
properties: {
|
|
9639
|
+
method: {
|
|
9640
|
+
type: "string"
|
|
9641
|
+
}
|
|
9642
|
+
},
|
|
9643
|
+
required: [
|
|
9644
|
+
"method"
|
|
9645
|
+
]
|
|
9646
|
+
}
|
|
9647
|
+
]
|
|
9648
|
+
},
|
|
9649
|
+
messages: {
|
|
9650
|
+
type: "array",
|
|
9651
|
+
items: {
|
|
9652
|
+
$ref: "#/components/schemas/Message"
|
|
9653
|
+
}
|
|
9654
|
+
}
|
|
9655
|
+
},
|
|
9656
|
+
required: []
|
|
9657
|
+
},
|
|
9381
9658
|
FilePublishRecordLegacy: {
|
|
9382
9659
|
type: "object",
|
|
9383
9660
|
properties: {
|
|
@@ -9440,9 +9717,7 @@ function _schemasDomainRecord(domain) {
|
|
|
9440
9717
|
}
|
|
9441
9718
|
}
|
|
9442
9719
|
},
|
|
9443
|
-
required: [
|
|
9444
|
-
"type"
|
|
9445
|
-
]
|
|
9720
|
+
required: []
|
|
9446
9721
|
},
|
|
9447
9722
|
FilePublishDraft: {
|
|
9448
9723
|
type: "object",
|
|
@@ -9579,9 +9854,7 @@ function _schemasDomainRecord(domain) {
|
|
|
9579
9854
|
}
|
|
9580
9855
|
}
|
|
9581
9856
|
},
|
|
9582
|
-
required: [
|
|
9583
|
-
"type"
|
|
9584
|
-
]
|
|
9857
|
+
required: []
|
|
9585
9858
|
},
|
|
9586
9859
|
RecordstringFilePublishRender: {
|
|
9587
9860
|
type: "object",
|
|
@@ -9803,9 +10076,7 @@ function _schemasDomainRecord(domain) {
|
|
|
9803
10076
|
}
|
|
9804
10077
|
}
|
|
9805
10078
|
},
|
|
9806
|
-
required: [
|
|
9807
|
-
"type"
|
|
9808
|
-
]
|
|
10079
|
+
required: []
|
|
9809
10080
|
}
|
|
9810
10081
|
}
|
|
9811
10082
|
},
|
|
@@ -10354,9 +10625,7 @@ function _schemasDomainRecord(domain) {
|
|
|
10354
10625
|
}
|
|
10355
10626
|
}
|
|
10356
10627
|
},
|
|
10357
|
-
required: [
|
|
10358
|
-
"type"
|
|
10359
|
-
]
|
|
10628
|
+
required: []
|
|
10360
10629
|
},
|
|
10361
10630
|
FilePublishDraft: {
|
|
10362
10631
|
type: "object",
|
|
@@ -10600,10 +10869,25 @@ function _schemasDomainRecord(domain) {
|
|
|
10600
10869
|
type: "string"
|
|
10601
10870
|
},
|
|
10602
10871
|
asset: {
|
|
10872
|
+
oneOf: [
|
|
10873
|
+
{
|
|
10874
|
+
type: "string"
|
|
10875
|
+
},
|
|
10876
|
+
{
|
|
10877
|
+
type: "array",
|
|
10878
|
+
items: {
|
|
10879
|
+
type: "string"
|
|
10880
|
+
}
|
|
10881
|
+
}
|
|
10882
|
+
],
|
|
10883
|
+
description: "Only write array, single string is deprecated"
|
|
10884
|
+
},
|
|
10885
|
+
assets: {
|
|
10603
10886
|
type: "array",
|
|
10604
10887
|
items: {
|
|
10605
10888
|
type: "string"
|
|
10606
|
-
}
|
|
10889
|
+
},
|
|
10890
|
+
deprecated: true
|
|
10607
10891
|
},
|
|
10608
10892
|
time: {
|
|
10609
10893
|
type: "number"
|
|
@@ -10611,6 +10895,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10611
10895
|
connection: {
|
|
10612
10896
|
type: "string"
|
|
10613
10897
|
},
|
|
10898
|
+
gallery: {
|
|
10899
|
+
type: "string"
|
|
10900
|
+
},
|
|
10614
10901
|
user: {
|
|
10615
10902
|
type: "string"
|
|
10616
10903
|
},
|
|
@@ -10620,10 +10907,7 @@ function _schemasDomainRecord(domain) {
|
|
|
10620
10907
|
},
|
|
10621
10908
|
required: [
|
|
10622
10909
|
"type",
|
|
10623
|
-
"
|
|
10624
|
-
"asset",
|
|
10625
|
-
"time",
|
|
10626
|
-
"connection"
|
|
10910
|
+
"time"
|
|
10627
10911
|
]
|
|
10628
10912
|
}
|
|
10629
10913
|
}
|
|
@@ -12705,7 +12989,14 @@ function _schemasDomainRecord(domain) {
|
|
|
12705
12989
|
type: "object",
|
|
12706
12990
|
properties: {
|
|
12707
12991
|
type: {
|
|
12708
|
-
|
|
12992
|
+
oneOf: [
|
|
12993
|
+
{
|
|
12994
|
+
"const": "conditions_and"
|
|
12995
|
+
},
|
|
12996
|
+
{
|
|
12997
|
+
"const": "conditions_or"
|
|
12998
|
+
}
|
|
12999
|
+
]
|
|
12709
13000
|
},
|
|
12710
13001
|
sort: {
|
|
12711
13002
|
type: "array",
|
|
@@ -12736,6 +13027,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12736
13027
|
},
|
|
12737
13028
|
view: {
|
|
12738
13029
|
oneOf: [
|
|
13030
|
+
{
|
|
13031
|
+
type: "null"
|
|
13032
|
+
},
|
|
12739
13033
|
{
|
|
12740
13034
|
"const": "GRID_VIEW"
|
|
12741
13035
|
},
|
|
@@ -12758,7 +13052,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12758
13052
|
},
|
|
12759
13053
|
conditions: {
|
|
12760
13054
|
type: "array",
|
|
12761
|
-
items: {
|
|
13055
|
+
items: {
|
|
13056
|
+
$ref: "#/components/schemas/SearchCondition"
|
|
13057
|
+
}
|
|
12762
13058
|
},
|
|
12763
13059
|
visibleColumnKeys: {
|
|
12764
13060
|
oneOf: [
|
|
@@ -12782,9 +13078,69 @@ function _schemasDomainRecord(domain) {
|
|
|
12782
13078
|
type: "string"
|
|
12783
13079
|
}
|
|
12784
13080
|
]
|
|
13081
|
+
},
|
|
13082
|
+
calendar: {
|
|
13083
|
+
type: "object",
|
|
13084
|
+
properties: {
|
|
13085
|
+
view: {
|
|
13086
|
+
oneOf: [
|
|
13087
|
+
{
|
|
13088
|
+
type: "null"
|
|
13089
|
+
},
|
|
13090
|
+
{
|
|
13091
|
+
"const": "day"
|
|
13092
|
+
},
|
|
13093
|
+
{
|
|
13094
|
+
"const": "week"
|
|
13095
|
+
},
|
|
13096
|
+
{
|
|
13097
|
+
"const": "month"
|
|
13098
|
+
},
|
|
13099
|
+
{
|
|
13100
|
+
"const": "work_week"
|
|
13101
|
+
}
|
|
13102
|
+
]
|
|
13103
|
+
},
|
|
13104
|
+
dateAccessor: {
|
|
13105
|
+
oneOf: [
|
|
13106
|
+
{
|
|
13107
|
+
type: "null"
|
|
13108
|
+
},
|
|
13109
|
+
{
|
|
13110
|
+
type: "string"
|
|
13111
|
+
}
|
|
13112
|
+
]
|
|
13113
|
+
},
|
|
13114
|
+
agenda: {
|
|
13115
|
+
type: "boolean"
|
|
13116
|
+
}
|
|
13117
|
+
},
|
|
13118
|
+
required: []
|
|
13119
|
+
},
|
|
13120
|
+
refreshInterval: {
|
|
13121
|
+
type: "number"
|
|
13122
|
+
},
|
|
13123
|
+
color: {
|
|
13124
|
+
type: "string"
|
|
12785
13125
|
}
|
|
12786
13126
|
},
|
|
12787
13127
|
required: []
|
|
13128
|
+
},
|
|
13129
|
+
SearchCondition: {
|
|
13130
|
+
type: "object",
|
|
13131
|
+
properties: {
|
|
13132
|
+
field: {
|
|
13133
|
+
type: "string"
|
|
13134
|
+
},
|
|
13135
|
+
type: {
|
|
13136
|
+
type: "string"
|
|
13137
|
+
},
|
|
13138
|
+
op: {
|
|
13139
|
+
type: "string"
|
|
13140
|
+
},
|
|
13141
|
+
value: {}
|
|
13142
|
+
},
|
|
13143
|
+
required: []
|
|
12788
13144
|
}
|
|
12789
13145
|
}
|
|
12790
13146
|
},
|
|
@@ -12819,9 +13175,7 @@ function _schemasDomainRecord(domain) {
|
|
|
12819
13175
|
type: "string"
|
|
12820
13176
|
}
|
|
12821
13177
|
},
|
|
12822
|
-
required: [
|
|
12823
|
-
"hits"
|
|
12824
|
-
]
|
|
13178
|
+
required: []
|
|
12825
13179
|
}
|
|
12826
13180
|
}
|
|
12827
13181
|
},
|
|
@@ -12832,6 +13186,60 @@ function _schemasDomainRecord(domain) {
|
|
|
12832
13186
|
]
|
|
12833
13187
|
};
|
|
12834
13188
|
}
|
|
13189
|
+
case ":search.conditions": {
|
|
13190
|
+
return {
|
|
13191
|
+
version: "3.1",
|
|
13192
|
+
components: {
|
|
13193
|
+
schemas: {
|
|
13194
|
+
SearchDomainConditionsRecord: {
|
|
13195
|
+
type: "object",
|
|
13196
|
+
properties: {
|
|
13197
|
+
value: {
|
|
13198
|
+
type: "array",
|
|
13199
|
+
items: {
|
|
13200
|
+
type: "string"
|
|
13201
|
+
}
|
|
13202
|
+
}
|
|
13203
|
+
},
|
|
13204
|
+
required: [],
|
|
13205
|
+
description: "legacy"
|
|
13206
|
+
}
|
|
13207
|
+
}
|
|
13208
|
+
},
|
|
13209
|
+
schemas: [
|
|
13210
|
+
{
|
|
13211
|
+
$ref: "#/components/schemas/SearchDomainConditionsRecord"
|
|
13212
|
+
}
|
|
13213
|
+
]
|
|
13214
|
+
};
|
|
13215
|
+
}
|
|
13216
|
+
case ":search.visibleColumnKeys": {
|
|
13217
|
+
return {
|
|
13218
|
+
version: "3.1",
|
|
13219
|
+
components: {
|
|
13220
|
+
schemas: {
|
|
13221
|
+
SearchDomainVisibleColumnKeysRecord: {
|
|
13222
|
+
type: "object",
|
|
13223
|
+
properties: {
|
|
13224
|
+
value: {
|
|
13225
|
+
type: "array",
|
|
13226
|
+
items: {
|
|
13227
|
+
type: "string"
|
|
13228
|
+
}
|
|
13229
|
+
}
|
|
13230
|
+
},
|
|
13231
|
+
required: [],
|
|
13232
|
+
description: "legacy"
|
|
13233
|
+
}
|
|
13234
|
+
}
|
|
13235
|
+
},
|
|
13236
|
+
schemas: [
|
|
13237
|
+
{
|
|
13238
|
+
$ref: "#/components/schemas/SearchDomainVisibleColumnKeysRecord"
|
|
13239
|
+
}
|
|
13240
|
+
]
|
|
13241
|
+
};
|
|
13242
|
+
}
|
|
12835
13243
|
case ":settings": {
|
|
12836
13244
|
return {
|
|
12837
13245
|
version: "3.1",
|
|
@@ -13861,6 +14269,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13861
14269
|
properties: {
|
|
13862
14270
|
maxHeight: {
|
|
13863
14271
|
type: "number"
|
|
14272
|
+
},
|
|
14273
|
+
titleLines: {
|
|
14274
|
+
type: "number"
|
|
13864
14275
|
}
|
|
13865
14276
|
},
|
|
13866
14277
|
required: []
|
|
@@ -13946,6 +14357,12 @@ function _schemasDomainRecord(domain) {
|
|
|
13946
14357
|
utils: {
|
|
13947
14358
|
type: "boolean"
|
|
13948
14359
|
},
|
|
14360
|
+
utilsAssetEditor: {
|
|
14361
|
+
type: "boolean"
|
|
14362
|
+
},
|
|
14363
|
+
utilsAssetPanel: {
|
|
14364
|
+
type: "boolean"
|
|
14365
|
+
},
|
|
13949
14366
|
history: {
|
|
13950
14367
|
type: "boolean"
|
|
13951
14368
|
},
|
|
@@ -14040,6 +14457,33 @@ function _schemasDomainRecord(domain) {
|
|
|
14040
14457
|
},
|
|
14041
14458
|
suppressDeleteAlert: {
|
|
14042
14459
|
type: "boolean"
|
|
14460
|
+
},
|
|
14461
|
+
utilsAssetEditorPanel: {
|
|
14462
|
+
type: "object",
|
|
14463
|
+
properties: {
|
|
14464
|
+
stateFilter: {
|
|
14465
|
+
type: "array",
|
|
14466
|
+
items: {
|
|
14467
|
+
type: "number"
|
|
14468
|
+
}
|
|
14469
|
+
},
|
|
14470
|
+
textFilter: {
|
|
14471
|
+
type: "string"
|
|
14472
|
+
},
|
|
14473
|
+
showEmpty: {
|
|
14474
|
+
type: "boolean"
|
|
14475
|
+
},
|
|
14476
|
+
selectedRecord: {
|
|
14477
|
+
type: "string"
|
|
14478
|
+
},
|
|
14479
|
+
subscribeSearchHits: {
|
|
14480
|
+
type: "boolean"
|
|
14481
|
+
},
|
|
14482
|
+
parseRegex: {
|
|
14483
|
+
type: "boolean"
|
|
14484
|
+
}
|
|
14485
|
+
},
|
|
14486
|
+
required: []
|
|
14043
14487
|
}
|
|
14044
14488
|
},
|
|
14045
14489
|
required: []
|
|
@@ -14186,6 +14630,160 @@ function _schemasDomainRecord(domain) {
|
|
|
14186
14630
|
]
|
|
14187
14631
|
};
|
|
14188
14632
|
}
|
|
14633
|
+
case ":shotbox": {
|
|
14634
|
+
return {
|
|
14635
|
+
version: "3.1",
|
|
14636
|
+
components: {
|
|
14637
|
+
schemas: {
|
|
14638
|
+
ShotboxDomainRecord: {
|
|
14639
|
+
type: "object",
|
|
14640
|
+
properties: {
|
|
14641
|
+
pages: {
|
|
14642
|
+
type: "array",
|
|
14643
|
+
items: {
|
|
14644
|
+
$ref: "#/components/schemas/ShotboxPage"
|
|
14645
|
+
}
|
|
14646
|
+
}
|
|
14647
|
+
},
|
|
14648
|
+
required: []
|
|
14649
|
+
},
|
|
14650
|
+
ShotboxPage: {
|
|
14651
|
+
type: "object",
|
|
14652
|
+
properties: {
|
|
14653
|
+
stickyTopRow: {
|
|
14654
|
+
type: "boolean"
|
|
14655
|
+
},
|
|
14656
|
+
inferGroups: {
|
|
14657
|
+
type: "boolean"
|
|
14658
|
+
},
|
|
14659
|
+
layout: {
|
|
14660
|
+
type: "array",
|
|
14661
|
+
items: {
|
|
14662
|
+
oneOf: [
|
|
14663
|
+
{
|
|
14664
|
+
type: "array",
|
|
14665
|
+
items: {
|
|
14666
|
+
$ref: "#/components/schemas/ShotboxGroup"
|
|
14667
|
+
}
|
|
14668
|
+
},
|
|
14669
|
+
{
|
|
14670
|
+
$ref: "#/components/schemas/ShotboxEventGroup"
|
|
14671
|
+
},
|
|
14672
|
+
{
|
|
14673
|
+
$ref: "#/components/schemas/ShotboxStreamGroup"
|
|
14674
|
+
}
|
|
14675
|
+
]
|
|
14676
|
+
}
|
|
14677
|
+
}
|
|
14678
|
+
},
|
|
14679
|
+
required: []
|
|
14680
|
+
},
|
|
14681
|
+
ShotboxGroup: {
|
|
14682
|
+
oneOf: [
|
|
14683
|
+
{
|
|
14684
|
+
$ref: "#/components/schemas/ShotboxEventGroup"
|
|
14685
|
+
},
|
|
14686
|
+
{
|
|
14687
|
+
$ref: "#/components/schemas/ShotboxStreamGroup"
|
|
14688
|
+
}
|
|
14689
|
+
]
|
|
14690
|
+
},
|
|
14691
|
+
ShotboxEventGroup: {
|
|
14692
|
+
type: "object",
|
|
14693
|
+
properties: {
|
|
14694
|
+
id: {
|
|
14695
|
+
type: "string"
|
|
14696
|
+
},
|
|
14697
|
+
title: {
|
|
14698
|
+
type: "string"
|
|
14699
|
+
},
|
|
14700
|
+
sticky: {
|
|
14701
|
+
type: "boolean"
|
|
14702
|
+
},
|
|
14703
|
+
type: {
|
|
14704
|
+
oneOf: [
|
|
14705
|
+
{
|
|
14706
|
+
"const": "trigger"
|
|
14707
|
+
},
|
|
14708
|
+
{
|
|
14709
|
+
"const": "toggle"
|
|
14710
|
+
}
|
|
14711
|
+
]
|
|
14712
|
+
},
|
|
14713
|
+
width: {
|
|
14714
|
+
type: "string"
|
|
14715
|
+
},
|
|
14716
|
+
include: {
|
|
14717
|
+
type: "array",
|
|
14718
|
+
items: {
|
|
14719
|
+
type: "string"
|
|
14720
|
+
}
|
|
14721
|
+
},
|
|
14722
|
+
exclude: {
|
|
14723
|
+
type: "array",
|
|
14724
|
+
items: {
|
|
14725
|
+
type: "string"
|
|
14726
|
+
}
|
|
14727
|
+
},
|
|
14728
|
+
states: {
|
|
14729
|
+
type: "object",
|
|
14730
|
+
properties: {
|
|
14731
|
+
completed: {
|
|
14732
|
+
type: "boolean"
|
|
14733
|
+
}
|
|
14734
|
+
},
|
|
14735
|
+
required: [
|
|
14736
|
+
"completed"
|
|
14737
|
+
]
|
|
14738
|
+
},
|
|
14739
|
+
flow: {
|
|
14740
|
+
oneOf: [
|
|
14741
|
+
{
|
|
14742
|
+
"const": "column"
|
|
14743
|
+
},
|
|
14744
|
+
{
|
|
14745
|
+
"const": "row"
|
|
14746
|
+
}
|
|
14747
|
+
]
|
|
14748
|
+
},
|
|
14749
|
+
minRows: {
|
|
14750
|
+
type: "number"
|
|
14751
|
+
},
|
|
14752
|
+
maxRows: {
|
|
14753
|
+
type: "number"
|
|
14754
|
+
}
|
|
14755
|
+
},
|
|
14756
|
+
required: []
|
|
14757
|
+
},
|
|
14758
|
+
ShotboxStreamGroup: {
|
|
14759
|
+
type: "object",
|
|
14760
|
+
properties: {
|
|
14761
|
+
type: {
|
|
14762
|
+
"const": "stream"
|
|
14763
|
+
},
|
|
14764
|
+
title: {
|
|
14765
|
+
type: "string"
|
|
14766
|
+
},
|
|
14767
|
+
width: {
|
|
14768
|
+
type: "string"
|
|
14769
|
+
},
|
|
14770
|
+
source: {
|
|
14771
|
+
type: "string"
|
|
14772
|
+
}
|
|
14773
|
+
},
|
|
14774
|
+
required: [
|
|
14775
|
+
"type"
|
|
14776
|
+
]
|
|
14777
|
+
}
|
|
14778
|
+
}
|
|
14779
|
+
},
|
|
14780
|
+
schemas: [
|
|
14781
|
+
{
|
|
14782
|
+
$ref: "#/components/schemas/ShotboxDomainRecord"
|
|
14783
|
+
}
|
|
14784
|
+
]
|
|
14785
|
+
};
|
|
14786
|
+
}
|
|
14189
14787
|
case ":storyboard": {
|
|
14190
14788
|
return {
|
|
14191
14789
|
version: "3.1",
|