@nxtedition/types 23.0.57 → 23.0.59
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 +26 -1
- package/dist/nxtpression.d.ts +197 -11
- 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/published.d.ts +7 -3
- package/dist/records/domains/script.d.ts +4 -0
- package/dist/records/domains/search.d.ts +25 -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 +1255 -444
- package/dist/records/validate/assert.js +1260 -442
- package/dist/records/validate/is.js +59 -33
- package/dist/records/validate/schemas.js +699 -66
- package/dist/records/validate/stringify.js +110 -79
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +1835 -634
- package/dist/records/validate/validate.js +1187 -427
- package/dist/rpc.d.ts +4 -1
- package/package.json +1 -1
|
@@ -2517,6 +2517,121 @@ function _schemasDomainRecord(domain) {
|
|
|
2517
2517
|
]
|
|
2518
2518
|
};
|
|
2519
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
|
+
}
|
|
2520
2635
|
case ":clone": {
|
|
2521
2636
|
return {
|
|
2522
2637
|
version: "3.1",
|
|
@@ -3057,6 +3172,36 @@ function _schemasDomainRecord(domain) {
|
|
|
3057
3172
|
]
|
|
3058
3173
|
};
|
|
3059
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
|
+
}
|
|
3060
3205
|
case ":connection": {
|
|
3061
3206
|
return {
|
|
3062
3207
|
version: "3.1",
|
|
@@ -6694,6 +6839,112 @@ function _schemasDomainRecord(domain) {
|
|
|
6694
6839
|
]
|
|
6695
6840
|
};
|
|
6696
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
|
+
}
|
|
6697
6948
|
case ":media.source": {
|
|
6698
6949
|
return {
|
|
6699
6950
|
version: "3.1",
|
|
@@ -8243,54 +8494,8 @@ function _schemasDomainRecord(domain) {
|
|
|
8243
8494
|
},
|
|
8244
8495
|
required: []
|
|
8245
8496
|
},
|
|
8246
|
-
filter: {
|
|
8247
|
-
|
|
8248
|
-
{
|
|
8249
|
-
type: "string"
|
|
8250
|
-
},
|
|
8251
|
-
{
|
|
8252
|
-
type: "object",
|
|
8253
|
-
properties: {
|
|
8254
|
-
__context: {
|
|
8255
|
-
$ref: "#/components/schemas/object",
|
|
8256
|
-
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."
|
|
8257
|
-
},
|
|
8258
|
-
__returnValue: {
|
|
8259
|
-
type: "string",
|
|
8260
|
-
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."
|
|
8261
|
-
}
|
|
8262
|
-
},
|
|
8263
|
-
required: [
|
|
8264
|
-
"__context",
|
|
8265
|
-
"__returnValue"
|
|
8266
|
-
]
|
|
8267
|
-
}
|
|
8268
|
-
]
|
|
8269
|
-
},
|
|
8270
|
-
expand: {
|
|
8271
|
-
oneOf: [
|
|
8272
|
-
{
|
|
8273
|
-
type: "string"
|
|
8274
|
-
},
|
|
8275
|
-
{
|
|
8276
|
-
type: "object",
|
|
8277
|
-
properties: {
|
|
8278
|
-
__context: {
|
|
8279
|
-
$ref: "#/components/schemas/object",
|
|
8280
|
-
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."
|
|
8281
|
-
},
|
|
8282
|
-
__returnValue: {
|
|
8283
|
-
type: "string",
|
|
8284
|
-
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."
|
|
8285
|
-
}
|
|
8286
|
-
},
|
|
8287
|
-
required: [
|
|
8288
|
-
"__context",
|
|
8289
|
-
"__returnValue"
|
|
8290
|
-
]
|
|
8291
|
-
}
|
|
8292
|
-
]
|
|
8293
|
-
}
|
|
8497
|
+
filter: {},
|
|
8498
|
+
expand: {}
|
|
8294
8499
|
},
|
|
8295
8500
|
required: []
|
|
8296
8501
|
},
|
|
@@ -8364,7 +8569,29 @@ function _schemasDomainRecord(domain) {
|
|
|
8364
8569
|
},
|
|
8365
8570
|
oneOf: {
|
|
8366
8571
|
type: "array",
|
|
8367
|
-
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
|
+
}
|
|
8368
8595
|
}
|
|
8369
8596
|
},
|
|
8370
8597
|
required: [
|
|
@@ -8494,11 +8721,6 @@ function _schemasDomainRecord(domain) {
|
|
|
8494
8721
|
"const": "tags"
|
|
8495
8722
|
}
|
|
8496
8723
|
]
|
|
8497
|
-
},
|
|
8498
|
-
object: {
|
|
8499
|
-
type: "object",
|
|
8500
|
-
properties: {},
|
|
8501
|
-
required: []
|
|
8502
8724
|
}
|
|
8503
8725
|
}
|
|
8504
8726
|
},
|
|
@@ -10647,10 +10869,25 @@ function _schemasDomainRecord(domain) {
|
|
|
10647
10869
|
type: "string"
|
|
10648
10870
|
},
|
|
10649
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: {
|
|
10650
10886
|
type: "array",
|
|
10651
10887
|
items: {
|
|
10652
10888
|
type: "string"
|
|
10653
|
-
}
|
|
10889
|
+
},
|
|
10890
|
+
deprecated: true
|
|
10654
10891
|
},
|
|
10655
10892
|
time: {
|
|
10656
10893
|
type: "number"
|
|
@@ -10658,6 +10895,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10658
10895
|
connection: {
|
|
10659
10896
|
type: "string"
|
|
10660
10897
|
},
|
|
10898
|
+
gallery: {
|
|
10899
|
+
type: "string"
|
|
10900
|
+
},
|
|
10661
10901
|
user: {
|
|
10662
10902
|
type: "string"
|
|
10663
10903
|
},
|
|
@@ -10667,10 +10907,7 @@ function _schemasDomainRecord(domain) {
|
|
|
10667
10907
|
},
|
|
10668
10908
|
required: [
|
|
10669
10909
|
"type",
|
|
10670
|
-
"
|
|
10671
|
-
"asset",
|
|
10672
|
-
"time",
|
|
10673
|
-
"connection"
|
|
10910
|
+
"time"
|
|
10674
10911
|
]
|
|
10675
10912
|
}
|
|
10676
10913
|
}
|
|
@@ -12011,6 +12248,23 @@ function _schemasDomainRecord(domain) {
|
|
|
12011
12248
|
properties: {
|
|
12012
12249
|
value: {
|
|
12013
12250
|
type: "string"
|
|
12251
|
+
},
|
|
12252
|
+
refs: {
|
|
12253
|
+
type: "array",
|
|
12254
|
+
items: {
|
|
12255
|
+
type: "object",
|
|
12256
|
+
properties: {
|
|
12257
|
+
mixin: {
|
|
12258
|
+
type: "string"
|
|
12259
|
+
},
|
|
12260
|
+
asset: {
|
|
12261
|
+
type: "string"
|
|
12262
|
+
}
|
|
12263
|
+
},
|
|
12264
|
+
required: [
|
|
12265
|
+
"mixin"
|
|
12266
|
+
]
|
|
12267
|
+
}
|
|
12014
12268
|
}
|
|
12015
12269
|
},
|
|
12016
12270
|
required: [
|
|
@@ -12752,7 +13006,14 @@ function _schemasDomainRecord(domain) {
|
|
|
12752
13006
|
type: "object",
|
|
12753
13007
|
properties: {
|
|
12754
13008
|
type: {
|
|
12755
|
-
|
|
13009
|
+
oneOf: [
|
|
13010
|
+
{
|
|
13011
|
+
"const": "conditions_and"
|
|
13012
|
+
},
|
|
13013
|
+
{
|
|
13014
|
+
"const": "conditions_or"
|
|
13015
|
+
}
|
|
13016
|
+
]
|
|
12756
13017
|
},
|
|
12757
13018
|
sort: {
|
|
12758
13019
|
type: "array",
|
|
@@ -12783,6 +13044,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12783
13044
|
},
|
|
12784
13045
|
view: {
|
|
12785
13046
|
oneOf: [
|
|
13047
|
+
{
|
|
13048
|
+
type: "null"
|
|
13049
|
+
},
|
|
12786
13050
|
{
|
|
12787
13051
|
"const": "GRID_VIEW"
|
|
12788
13052
|
},
|
|
@@ -12805,7 +13069,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12805
13069
|
},
|
|
12806
13070
|
conditions: {
|
|
12807
13071
|
type: "array",
|
|
12808
|
-
items: {
|
|
13072
|
+
items: {
|
|
13073
|
+
$ref: "#/components/schemas/SearchCondition"
|
|
13074
|
+
}
|
|
12809
13075
|
},
|
|
12810
13076
|
visibleColumnKeys: {
|
|
12811
13077
|
oneOf: [
|
|
@@ -12829,9 +13095,72 @@ function _schemasDomainRecord(domain) {
|
|
|
12829
13095
|
type: "string"
|
|
12830
13096
|
}
|
|
12831
13097
|
]
|
|
13098
|
+
},
|
|
13099
|
+
calendar: {
|
|
13100
|
+
type: "object",
|
|
13101
|
+
properties: {
|
|
13102
|
+
view: {
|
|
13103
|
+
oneOf: [
|
|
13104
|
+
{
|
|
13105
|
+
type: "null"
|
|
13106
|
+
},
|
|
13107
|
+
{
|
|
13108
|
+
"const": "day"
|
|
13109
|
+
},
|
|
13110
|
+
{
|
|
13111
|
+
"const": "week"
|
|
13112
|
+
},
|
|
13113
|
+
{
|
|
13114
|
+
"const": "month"
|
|
13115
|
+
},
|
|
13116
|
+
{
|
|
13117
|
+
"const": "work_week"
|
|
13118
|
+
}
|
|
13119
|
+
]
|
|
13120
|
+
},
|
|
13121
|
+
dateAccessor: {
|
|
13122
|
+
oneOf: [
|
|
13123
|
+
{
|
|
13124
|
+
type: "null"
|
|
13125
|
+
},
|
|
13126
|
+
{
|
|
13127
|
+
type: "string"
|
|
13128
|
+
}
|
|
13129
|
+
]
|
|
13130
|
+
},
|
|
13131
|
+
agenda: {
|
|
13132
|
+
type: "boolean"
|
|
13133
|
+
}
|
|
13134
|
+
},
|
|
13135
|
+
required: []
|
|
13136
|
+
},
|
|
13137
|
+
refreshInterval: {
|
|
13138
|
+
type: "number"
|
|
13139
|
+
},
|
|
13140
|
+
color: {
|
|
13141
|
+
type: "string"
|
|
13142
|
+
},
|
|
13143
|
+
icon: {
|
|
13144
|
+
type: "string"
|
|
12832
13145
|
}
|
|
12833
13146
|
},
|
|
12834
13147
|
required: []
|
|
13148
|
+
},
|
|
13149
|
+
SearchCondition: {
|
|
13150
|
+
type: "object",
|
|
13151
|
+
properties: {
|
|
13152
|
+
field: {
|
|
13153
|
+
type: "string"
|
|
13154
|
+
},
|
|
13155
|
+
type: {
|
|
13156
|
+
type: "string"
|
|
13157
|
+
},
|
|
13158
|
+
op: {
|
|
13159
|
+
type: "string"
|
|
13160
|
+
},
|
|
13161
|
+
value: {}
|
|
13162
|
+
},
|
|
13163
|
+
required: []
|
|
12835
13164
|
}
|
|
12836
13165
|
}
|
|
12837
13166
|
},
|
|
@@ -12866,9 +13195,7 @@ function _schemasDomainRecord(domain) {
|
|
|
12866
13195
|
type: "string"
|
|
12867
13196
|
}
|
|
12868
13197
|
},
|
|
12869
|
-
required: [
|
|
12870
|
-
"hits"
|
|
12871
|
-
]
|
|
13198
|
+
required: []
|
|
12872
13199
|
}
|
|
12873
13200
|
}
|
|
12874
13201
|
},
|
|
@@ -12879,6 +13206,60 @@ function _schemasDomainRecord(domain) {
|
|
|
12879
13206
|
]
|
|
12880
13207
|
};
|
|
12881
13208
|
}
|
|
13209
|
+
case ":search.conditions": {
|
|
13210
|
+
return {
|
|
13211
|
+
version: "3.1",
|
|
13212
|
+
components: {
|
|
13213
|
+
schemas: {
|
|
13214
|
+
SearchDomainConditionsRecord: {
|
|
13215
|
+
type: "object",
|
|
13216
|
+
properties: {
|
|
13217
|
+
value: {
|
|
13218
|
+
type: "array",
|
|
13219
|
+
items: {
|
|
13220
|
+
type: "string"
|
|
13221
|
+
}
|
|
13222
|
+
}
|
|
13223
|
+
},
|
|
13224
|
+
required: [],
|
|
13225
|
+
description: "legacy"
|
|
13226
|
+
}
|
|
13227
|
+
}
|
|
13228
|
+
},
|
|
13229
|
+
schemas: [
|
|
13230
|
+
{
|
|
13231
|
+
$ref: "#/components/schemas/SearchDomainConditionsRecord"
|
|
13232
|
+
}
|
|
13233
|
+
]
|
|
13234
|
+
};
|
|
13235
|
+
}
|
|
13236
|
+
case ":search.visibleColumnKeys": {
|
|
13237
|
+
return {
|
|
13238
|
+
version: "3.1",
|
|
13239
|
+
components: {
|
|
13240
|
+
schemas: {
|
|
13241
|
+
SearchDomainVisibleColumnKeysRecord: {
|
|
13242
|
+
type: "object",
|
|
13243
|
+
properties: {
|
|
13244
|
+
value: {
|
|
13245
|
+
type: "array",
|
|
13246
|
+
items: {
|
|
13247
|
+
type: "string"
|
|
13248
|
+
}
|
|
13249
|
+
}
|
|
13250
|
+
},
|
|
13251
|
+
required: [],
|
|
13252
|
+
description: "legacy"
|
|
13253
|
+
}
|
|
13254
|
+
}
|
|
13255
|
+
},
|
|
13256
|
+
schemas: [
|
|
13257
|
+
{
|
|
13258
|
+
$ref: "#/components/schemas/SearchDomainVisibleColumnKeysRecord"
|
|
13259
|
+
}
|
|
13260
|
+
]
|
|
13261
|
+
};
|
|
13262
|
+
}
|
|
12882
13263
|
case ":settings": {
|
|
12883
13264
|
return {
|
|
12884
13265
|
version: "3.1",
|
|
@@ -12905,6 +13286,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12905
13286
|
"module": {
|
|
12906
13287
|
type: "object",
|
|
12907
13288
|
properties: {
|
|
13289
|
+
editor: {
|
|
13290
|
+
type: "string"
|
|
13291
|
+
},
|
|
12908
13292
|
tabs: {
|
|
12909
13293
|
$ref: "#/components/schemas/ModuleTabs"
|
|
12910
13294
|
}
|
|
@@ -13011,6 +13395,12 @@ function _schemasDomainRecord(domain) {
|
|
|
13011
13395
|
toolbarTags: {
|
|
13012
13396
|
type: "object",
|
|
13013
13397
|
properties: {
|
|
13398
|
+
include: {
|
|
13399
|
+
type: "array",
|
|
13400
|
+
items: {
|
|
13401
|
+
type: "string"
|
|
13402
|
+
}
|
|
13403
|
+
},
|
|
13014
13404
|
exclude: {
|
|
13015
13405
|
type: "array",
|
|
13016
13406
|
items: {
|
|
@@ -13131,6 +13521,18 @@ function _schemasDomainRecord(domain) {
|
|
|
13131
13521
|
},
|
|
13132
13522
|
maxTabs: {
|
|
13133
13523
|
type: "number"
|
|
13524
|
+
},
|
|
13525
|
+
layout: {
|
|
13526
|
+
type: "object",
|
|
13527
|
+
properties: {
|
|
13528
|
+
bookmarks: {
|
|
13529
|
+
type: "number"
|
|
13530
|
+
},
|
|
13531
|
+
browser: {
|
|
13532
|
+
type: "number"
|
|
13533
|
+
}
|
|
13534
|
+
},
|
|
13535
|
+
required: []
|
|
13134
13536
|
}
|
|
13135
13537
|
},
|
|
13136
13538
|
required: []
|
|
@@ -13244,6 +13646,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13244
13646
|
"const": "disabled"
|
|
13245
13647
|
}
|
|
13246
13648
|
]
|
|
13649
|
+
},
|
|
13650
|
+
countFloatedDuration: {
|
|
13651
|
+
type: "boolean"
|
|
13247
13652
|
}
|
|
13248
13653
|
},
|
|
13249
13654
|
required: []
|
|
@@ -13908,6 +14313,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13908
14313
|
properties: {
|
|
13909
14314
|
maxHeight: {
|
|
13910
14315
|
type: "number"
|
|
14316
|
+
},
|
|
14317
|
+
titleLines: {
|
|
14318
|
+
type: "number"
|
|
13911
14319
|
}
|
|
13912
14320
|
},
|
|
13913
14321
|
required: []
|
|
@@ -13993,6 +14401,12 @@ function _schemasDomainRecord(domain) {
|
|
|
13993
14401
|
utils: {
|
|
13994
14402
|
type: "boolean"
|
|
13995
14403
|
},
|
|
14404
|
+
utilsAssetEditor: {
|
|
14405
|
+
type: "boolean"
|
|
14406
|
+
},
|
|
14407
|
+
utilsAssetPanel: {
|
|
14408
|
+
type: "boolean"
|
|
14409
|
+
},
|
|
13996
14410
|
history: {
|
|
13997
14411
|
type: "boolean"
|
|
13998
14412
|
},
|
|
@@ -14087,6 +14501,51 @@ function _schemasDomainRecord(domain) {
|
|
|
14087
14501
|
},
|
|
14088
14502
|
suppressDeleteAlert: {
|
|
14089
14503
|
type: "boolean"
|
|
14504
|
+
},
|
|
14505
|
+
clone: {
|
|
14506
|
+
type: "object",
|
|
14507
|
+
properties: {
|
|
14508
|
+
duplicate: {
|
|
14509
|
+
type: "object",
|
|
14510
|
+
properties: {
|
|
14511
|
+
titlePrefix: {
|
|
14512
|
+
type: "string"
|
|
14513
|
+
},
|
|
14514
|
+
titleSuffix: {
|
|
14515
|
+
type: "string"
|
|
14516
|
+
}
|
|
14517
|
+
},
|
|
14518
|
+
required: []
|
|
14519
|
+
}
|
|
14520
|
+
},
|
|
14521
|
+
required: []
|
|
14522
|
+
},
|
|
14523
|
+
utilsAssetEditorPanel: {
|
|
14524
|
+
type: "object",
|
|
14525
|
+
properties: {
|
|
14526
|
+
stateFilter: {
|
|
14527
|
+
type: "array",
|
|
14528
|
+
items: {
|
|
14529
|
+
type: "number"
|
|
14530
|
+
}
|
|
14531
|
+
},
|
|
14532
|
+
textFilter: {
|
|
14533
|
+
type: "string"
|
|
14534
|
+
},
|
|
14535
|
+
showEmpty: {
|
|
14536
|
+
type: "boolean"
|
|
14537
|
+
},
|
|
14538
|
+
selectedRecord: {
|
|
14539
|
+
type: "string"
|
|
14540
|
+
},
|
|
14541
|
+
subscribeSearchHits: {
|
|
14542
|
+
type: "boolean"
|
|
14543
|
+
},
|
|
14544
|
+
parseRegex: {
|
|
14545
|
+
type: "boolean"
|
|
14546
|
+
}
|
|
14547
|
+
},
|
|
14548
|
+
required: []
|
|
14090
14549
|
}
|
|
14091
14550
|
},
|
|
14092
14551
|
required: []
|
|
@@ -14110,7 +14569,17 @@ function _schemasDomainRecord(domain) {
|
|
|
14110
14569
|
type: "number"
|
|
14111
14570
|
},
|
|
14112
14571
|
activeTab: {
|
|
14113
|
-
|
|
14572
|
+
oneOf: [
|
|
14573
|
+
{
|
|
14574
|
+
type: "null"
|
|
14575
|
+
},
|
|
14576
|
+
{
|
|
14577
|
+
type: "string"
|
|
14578
|
+
}
|
|
14579
|
+
]
|
|
14580
|
+
},
|
|
14581
|
+
priority: {
|
|
14582
|
+
type: "number"
|
|
14114
14583
|
}
|
|
14115
14584
|
},
|
|
14116
14585
|
required: []
|
|
@@ -14119,7 +14588,17 @@ function _schemasDomainRecord(domain) {
|
|
|
14119
14588
|
type: "object",
|
|
14120
14589
|
properties: {
|
|
14121
14590
|
activeTab: {
|
|
14122
|
-
|
|
14591
|
+
oneOf: [
|
|
14592
|
+
{
|
|
14593
|
+
type: "null"
|
|
14594
|
+
},
|
|
14595
|
+
{
|
|
14596
|
+
type: "string"
|
|
14597
|
+
}
|
|
14598
|
+
]
|
|
14599
|
+
},
|
|
14600
|
+
priority: {
|
|
14601
|
+
type: "number"
|
|
14123
14602
|
}
|
|
14124
14603
|
},
|
|
14125
14604
|
required: []
|
|
@@ -14233,6 +14712,160 @@ function _schemasDomainRecord(domain) {
|
|
|
14233
14712
|
]
|
|
14234
14713
|
};
|
|
14235
14714
|
}
|
|
14715
|
+
case ":shotbox": {
|
|
14716
|
+
return {
|
|
14717
|
+
version: "3.1",
|
|
14718
|
+
components: {
|
|
14719
|
+
schemas: {
|
|
14720
|
+
ShotboxDomainRecord: {
|
|
14721
|
+
type: "object",
|
|
14722
|
+
properties: {
|
|
14723
|
+
pages: {
|
|
14724
|
+
type: "array",
|
|
14725
|
+
items: {
|
|
14726
|
+
$ref: "#/components/schemas/ShotboxPage"
|
|
14727
|
+
}
|
|
14728
|
+
}
|
|
14729
|
+
},
|
|
14730
|
+
required: []
|
|
14731
|
+
},
|
|
14732
|
+
ShotboxPage: {
|
|
14733
|
+
type: "object",
|
|
14734
|
+
properties: {
|
|
14735
|
+
stickyTopRow: {
|
|
14736
|
+
type: "boolean"
|
|
14737
|
+
},
|
|
14738
|
+
inferGroups: {
|
|
14739
|
+
type: "boolean"
|
|
14740
|
+
},
|
|
14741
|
+
layout: {
|
|
14742
|
+
type: "array",
|
|
14743
|
+
items: {
|
|
14744
|
+
oneOf: [
|
|
14745
|
+
{
|
|
14746
|
+
type: "array",
|
|
14747
|
+
items: {
|
|
14748
|
+
$ref: "#/components/schemas/ShotboxGroup"
|
|
14749
|
+
}
|
|
14750
|
+
},
|
|
14751
|
+
{
|
|
14752
|
+
$ref: "#/components/schemas/ShotboxEventGroup"
|
|
14753
|
+
},
|
|
14754
|
+
{
|
|
14755
|
+
$ref: "#/components/schemas/ShotboxStreamGroup"
|
|
14756
|
+
}
|
|
14757
|
+
]
|
|
14758
|
+
}
|
|
14759
|
+
}
|
|
14760
|
+
},
|
|
14761
|
+
required: []
|
|
14762
|
+
},
|
|
14763
|
+
ShotboxGroup: {
|
|
14764
|
+
oneOf: [
|
|
14765
|
+
{
|
|
14766
|
+
$ref: "#/components/schemas/ShotboxEventGroup"
|
|
14767
|
+
},
|
|
14768
|
+
{
|
|
14769
|
+
$ref: "#/components/schemas/ShotboxStreamGroup"
|
|
14770
|
+
}
|
|
14771
|
+
]
|
|
14772
|
+
},
|
|
14773
|
+
ShotboxEventGroup: {
|
|
14774
|
+
type: "object",
|
|
14775
|
+
properties: {
|
|
14776
|
+
id: {
|
|
14777
|
+
type: "string"
|
|
14778
|
+
},
|
|
14779
|
+
title: {
|
|
14780
|
+
type: "string"
|
|
14781
|
+
},
|
|
14782
|
+
sticky: {
|
|
14783
|
+
type: "boolean"
|
|
14784
|
+
},
|
|
14785
|
+
type: {
|
|
14786
|
+
oneOf: [
|
|
14787
|
+
{
|
|
14788
|
+
"const": "trigger"
|
|
14789
|
+
},
|
|
14790
|
+
{
|
|
14791
|
+
"const": "toggle"
|
|
14792
|
+
}
|
|
14793
|
+
]
|
|
14794
|
+
},
|
|
14795
|
+
width: {
|
|
14796
|
+
type: "string"
|
|
14797
|
+
},
|
|
14798
|
+
include: {
|
|
14799
|
+
type: "array",
|
|
14800
|
+
items: {
|
|
14801
|
+
type: "string"
|
|
14802
|
+
}
|
|
14803
|
+
},
|
|
14804
|
+
exclude: {
|
|
14805
|
+
type: "array",
|
|
14806
|
+
items: {
|
|
14807
|
+
type: "string"
|
|
14808
|
+
}
|
|
14809
|
+
},
|
|
14810
|
+
states: {
|
|
14811
|
+
type: "object",
|
|
14812
|
+
properties: {
|
|
14813
|
+
completed: {
|
|
14814
|
+
type: "boolean"
|
|
14815
|
+
}
|
|
14816
|
+
},
|
|
14817
|
+
required: [
|
|
14818
|
+
"completed"
|
|
14819
|
+
]
|
|
14820
|
+
},
|
|
14821
|
+
flow: {
|
|
14822
|
+
oneOf: [
|
|
14823
|
+
{
|
|
14824
|
+
"const": "column"
|
|
14825
|
+
},
|
|
14826
|
+
{
|
|
14827
|
+
"const": "row"
|
|
14828
|
+
}
|
|
14829
|
+
]
|
|
14830
|
+
},
|
|
14831
|
+
minRows: {
|
|
14832
|
+
type: "number"
|
|
14833
|
+
},
|
|
14834
|
+
maxRows: {
|
|
14835
|
+
type: "number"
|
|
14836
|
+
}
|
|
14837
|
+
},
|
|
14838
|
+
required: []
|
|
14839
|
+
},
|
|
14840
|
+
ShotboxStreamGroup: {
|
|
14841
|
+
type: "object",
|
|
14842
|
+
properties: {
|
|
14843
|
+
type: {
|
|
14844
|
+
"const": "stream"
|
|
14845
|
+
},
|
|
14846
|
+
title: {
|
|
14847
|
+
type: "string"
|
|
14848
|
+
},
|
|
14849
|
+
width: {
|
|
14850
|
+
type: "string"
|
|
14851
|
+
},
|
|
14852
|
+
source: {
|
|
14853
|
+
type: "string"
|
|
14854
|
+
}
|
|
14855
|
+
},
|
|
14856
|
+
required: [
|
|
14857
|
+
"type"
|
|
14858
|
+
]
|
|
14859
|
+
}
|
|
14860
|
+
}
|
|
14861
|
+
},
|
|
14862
|
+
schemas: [
|
|
14863
|
+
{
|
|
14864
|
+
$ref: "#/components/schemas/ShotboxDomainRecord"
|
|
14865
|
+
}
|
|
14866
|
+
]
|
|
14867
|
+
};
|
|
14868
|
+
}
|
|
14236
14869
|
case ":storyboard": {
|
|
14237
14870
|
return {
|
|
14238
14871
|
version: "3.1",
|