@nxtedition/types 23.0.41 → 23.0.42
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/render-preset.d.ts +2 -2
- package/dist/common/render-profile.d.ts +3 -0
- package/dist/common/render-scene.d.ts +1 -1
- package/dist/nxtpression.d.ts +31 -6
- package/dist/records/domains/deepstream.d.ts +1 -0
- package/dist/records/domains/publish.d.ts +6 -2
- package/dist/records/domains/search.d.ts +15 -1
- package/dist/records/domains/template.d.ts +1 -0
- package/dist/records/validate/assert-guard.js +300 -93
- package/dist/records/validate/assert.js +301 -93
- package/dist/records/validate/is.js +25 -15
- package/dist/records/validate/schemas.js +395 -146
- package/dist/records/validate/stringify.js +47 -36
- package/dist/records/validate/utils.js +9 -1
- package/dist/records/validate/validate-equals.d.ts +5 -0
- package/dist/records/validate/validate-equals.js +24363 -0
- package/dist/records/validate/validate.js +267 -83
- package/package.json +1 -1
- package/dist/records/validate/utils.test.d.ts +0 -1
- package/dist/records/validate/utils.test.js +0 -35
|
@@ -1504,39 +1504,40 @@ function _schemasExactRecord(name) {
|
|
|
1504
1504
|
type: "object",
|
|
1505
1505
|
properties: {
|
|
1506
1506
|
type: {
|
|
1507
|
-
|
|
1507
|
+
oneOf: [
|
|
1508
|
+
{
|
|
1509
|
+
type: "null"
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
type: "string"
|
|
1513
|
+
}
|
|
1514
|
+
]
|
|
1508
1515
|
},
|
|
1509
1516
|
profile: {
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
items: {
|
|
1526
|
-
oneOf: [
|
|
1527
|
-
{
|
|
1528
|
-
type: "string"
|
|
1529
|
-
},
|
|
1530
|
-
{
|
|
1531
|
-
$ref: "#/components/schemas/RenderProfileObject"
|
|
1517
|
+
oneOf: [
|
|
1518
|
+
{
|
|
1519
|
+
type: "string"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
type: "array",
|
|
1523
|
+
items: {
|
|
1524
|
+
oneOf: [
|
|
1525
|
+
{
|
|
1526
|
+
type: "string"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
$ref: "#/components/schemas/RenderProfileObject"
|
|
1530
|
+
}
|
|
1531
|
+
]
|
|
1532
1532
|
}
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
$ref: "#/components/schemas/RenderProfileObject"
|
|
1536
|
+
}
|
|
1537
|
+
]
|
|
1538
1538
|
}
|
|
1539
|
-
|
|
1539
|
+
},
|
|
1540
|
+
required: []
|
|
1540
1541
|
},
|
|
1541
1542
|
RenderProfileObject: {
|
|
1542
1543
|
type: "object",
|
|
@@ -1569,8 +1570,17 @@ function _schemasExactRecord(name) {
|
|
|
1569
1570
|
audio: {
|
|
1570
1571
|
type: "object",
|
|
1571
1572
|
properties: {
|
|
1573
|
+
codec: {
|
|
1574
|
+
type: "string"
|
|
1575
|
+
},
|
|
1572
1576
|
pan: {
|
|
1573
1577
|
type: "string"
|
|
1578
|
+
},
|
|
1579
|
+
samplerate: {
|
|
1580
|
+
type: "number"
|
|
1581
|
+
},
|
|
1582
|
+
split: {
|
|
1583
|
+
type: "boolean"
|
|
1574
1584
|
}
|
|
1575
1585
|
},
|
|
1576
1586
|
required: []
|
|
@@ -3484,6 +3494,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3484
3494
|
type: "string"
|
|
3485
3495
|
}
|
|
3486
3496
|
]
|
|
3497
|
+
},
|
|
3498
|
+
version: {
|
|
3499
|
+
type: "number"
|
|
3487
3500
|
}
|
|
3488
3501
|
},
|
|
3489
3502
|
required: []
|
|
@@ -4603,23 +4616,30 @@ function _schemasDomainRecord(domain) {
|
|
|
4603
4616
|
type: "string"
|
|
4604
4617
|
},
|
|
4605
4618
|
input: {
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
type: "string"
|
|
4619
|
+
oneOf: [
|
|
4620
|
+
{
|
|
4621
|
+
type: "null"
|
|
4610
4622
|
},
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
},
|
|
4616
|
-
{
|
|
4623
|
+
{
|
|
4624
|
+
type: "object",
|
|
4625
|
+
properties: {
|
|
4626
|
+
type: {
|
|
4617
4627
|
type: "string"
|
|
4628
|
+
},
|
|
4629
|
+
file: {
|
|
4630
|
+
oneOf: [
|
|
4631
|
+
{
|
|
4632
|
+
type: "null"
|
|
4633
|
+
},
|
|
4634
|
+
{
|
|
4635
|
+
type: "string"
|
|
4636
|
+
}
|
|
4637
|
+
]
|
|
4618
4638
|
}
|
|
4619
|
-
|
|
4639
|
+
},
|
|
4640
|
+
required: []
|
|
4620
4641
|
}
|
|
4621
|
-
|
|
4622
|
-
required: []
|
|
4642
|
+
]
|
|
4623
4643
|
},
|
|
4624
4644
|
lang: {
|
|
4625
4645
|
type: "string"
|
|
@@ -4811,39 +4831,40 @@ function _schemasDomainRecord(domain) {
|
|
|
4811
4831
|
type: "object",
|
|
4812
4832
|
properties: {
|
|
4813
4833
|
type: {
|
|
4814
|
-
|
|
4834
|
+
oneOf: [
|
|
4835
|
+
{
|
|
4836
|
+
type: "null"
|
|
4837
|
+
},
|
|
4838
|
+
{
|
|
4839
|
+
type: "string"
|
|
4840
|
+
}
|
|
4841
|
+
]
|
|
4815
4842
|
},
|
|
4816
4843
|
profile: {
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
items: {
|
|
4833
|
-
oneOf: [
|
|
4834
|
-
{
|
|
4835
|
-
type: "string"
|
|
4836
|
-
},
|
|
4837
|
-
{
|
|
4838
|
-
$ref: "#/components/schemas/RenderProfileObject"
|
|
4844
|
+
oneOf: [
|
|
4845
|
+
{
|
|
4846
|
+
type: "string"
|
|
4847
|
+
},
|
|
4848
|
+
{
|
|
4849
|
+
type: "array",
|
|
4850
|
+
items: {
|
|
4851
|
+
oneOf: [
|
|
4852
|
+
{
|
|
4853
|
+
type: "string"
|
|
4854
|
+
},
|
|
4855
|
+
{
|
|
4856
|
+
$ref: "#/components/schemas/RenderProfileObject"
|
|
4857
|
+
}
|
|
4858
|
+
]
|
|
4839
4859
|
}
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4860
|
+
},
|
|
4861
|
+
{
|
|
4862
|
+
$ref: "#/components/schemas/RenderProfileObject"
|
|
4863
|
+
}
|
|
4864
|
+
]
|
|
4845
4865
|
}
|
|
4846
|
-
|
|
4866
|
+
},
|
|
4867
|
+
required: []
|
|
4847
4868
|
},
|
|
4848
4869
|
RenderProfileObject: {
|
|
4849
4870
|
type: "object",
|
|
@@ -4876,8 +4897,17 @@ function _schemasDomainRecord(domain) {
|
|
|
4876
4897
|
audio: {
|
|
4877
4898
|
type: "object",
|
|
4878
4899
|
properties: {
|
|
4900
|
+
codec: {
|
|
4901
|
+
type: "string"
|
|
4902
|
+
},
|
|
4879
4903
|
pan: {
|
|
4880
4904
|
type: "string"
|
|
4905
|
+
},
|
|
4906
|
+
samplerate: {
|
|
4907
|
+
type: "number"
|
|
4908
|
+
},
|
|
4909
|
+
split: {
|
|
4910
|
+
type: "boolean"
|
|
4881
4911
|
}
|
|
4882
4912
|
},
|
|
4883
4913
|
required: []
|
|
@@ -6906,6 +6936,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6906
6936
|
},
|
|
6907
6937
|
{
|
|
6908
6938
|
$ref: "#/components/schemas/FilePublishRecordLegacy"
|
|
6939
|
+
},
|
|
6940
|
+
{
|
|
6941
|
+
$ref: "#/components/schemas/EmptyPublishRecord"
|
|
6909
6942
|
}
|
|
6910
6943
|
]
|
|
6911
6944
|
},
|
|
@@ -6940,7 +6973,14 @@ function _schemasDomainRecord(domain) {
|
|
|
6940
6973
|
"const": "youtube"
|
|
6941
6974
|
},
|
|
6942
6975
|
asset: {
|
|
6943
|
-
|
|
6976
|
+
oneOf: [
|
|
6977
|
+
{
|
|
6978
|
+
type: "null"
|
|
6979
|
+
},
|
|
6980
|
+
{
|
|
6981
|
+
type: "string"
|
|
6982
|
+
}
|
|
6983
|
+
]
|
|
6944
6984
|
},
|
|
6945
6985
|
connection: {
|
|
6946
6986
|
type: "string"
|
|
@@ -7014,23 +7054,30 @@ function _schemasDomainRecord(domain) {
|
|
|
7014
7054
|
type: "string"
|
|
7015
7055
|
},
|
|
7016
7056
|
input: {
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
|
|
7020
|
-
type: "string"
|
|
7057
|
+
oneOf: [
|
|
7058
|
+
{
|
|
7059
|
+
type: "null"
|
|
7021
7060
|
},
|
|
7022
|
-
|
|
7023
|
-
|
|
7024
|
-
|
|
7025
|
-
|
|
7026
|
-
},
|
|
7027
|
-
{
|
|
7061
|
+
{
|
|
7062
|
+
type: "object",
|
|
7063
|
+
properties: {
|
|
7064
|
+
type: {
|
|
7028
7065
|
type: "string"
|
|
7066
|
+
},
|
|
7067
|
+
file: {
|
|
7068
|
+
oneOf: [
|
|
7069
|
+
{
|
|
7070
|
+
type: "null"
|
|
7071
|
+
},
|
|
7072
|
+
{
|
|
7073
|
+
type: "string"
|
|
7074
|
+
}
|
|
7075
|
+
]
|
|
7029
7076
|
}
|
|
7030
|
-
|
|
7077
|
+
},
|
|
7078
|
+
required: []
|
|
7031
7079
|
}
|
|
7032
|
-
|
|
7033
|
-
required: []
|
|
7080
|
+
]
|
|
7034
7081
|
},
|
|
7035
7082
|
lang: {
|
|
7036
7083
|
type: "string"
|
|
@@ -7216,8 +7263,17 @@ function _schemasDomainRecord(domain) {
|
|
|
7216
7263
|
audio: {
|
|
7217
7264
|
type: "object",
|
|
7218
7265
|
properties: {
|
|
7266
|
+
codec: {
|
|
7267
|
+
type: "string"
|
|
7268
|
+
},
|
|
7219
7269
|
pan: {
|
|
7220
7270
|
type: "string"
|
|
7271
|
+
},
|
|
7272
|
+
samplerate: {
|
|
7273
|
+
type: "number"
|
|
7274
|
+
},
|
|
7275
|
+
split: {
|
|
7276
|
+
type: "boolean"
|
|
7221
7277
|
}
|
|
7222
7278
|
},
|
|
7223
7279
|
required: []
|
|
@@ -7294,7 +7350,14 @@ function _schemasDomainRecord(domain) {
|
|
|
7294
7350
|
"const": "facebook"
|
|
7295
7351
|
},
|
|
7296
7352
|
asset: {
|
|
7297
|
-
|
|
7353
|
+
oneOf: [
|
|
7354
|
+
{
|
|
7355
|
+
type: "null"
|
|
7356
|
+
},
|
|
7357
|
+
{
|
|
7358
|
+
type: "string"
|
|
7359
|
+
}
|
|
7360
|
+
]
|
|
7298
7361
|
},
|
|
7299
7362
|
connection: {
|
|
7300
7363
|
type: "string"
|
|
@@ -7365,7 +7428,14 @@ function _schemasDomainRecord(domain) {
|
|
|
7365
7428
|
"const": "file"
|
|
7366
7429
|
},
|
|
7367
7430
|
asset: {
|
|
7368
|
-
|
|
7431
|
+
oneOf: [
|
|
7432
|
+
{
|
|
7433
|
+
type: "null"
|
|
7434
|
+
},
|
|
7435
|
+
{
|
|
7436
|
+
type: "string"
|
|
7437
|
+
}
|
|
7438
|
+
]
|
|
7369
7439
|
},
|
|
7370
7440
|
connection: {
|
|
7371
7441
|
type: "string"
|
|
@@ -7600,7 +7670,14 @@ function _schemasDomainRecord(domain) {
|
|
|
7600
7670
|
"const": "file"
|
|
7601
7671
|
},
|
|
7602
7672
|
asset: {
|
|
7603
|
-
|
|
7673
|
+
oneOf: [
|
|
7674
|
+
{
|
|
7675
|
+
type: "null"
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
type: "string"
|
|
7679
|
+
}
|
|
7680
|
+
]
|
|
7604
7681
|
},
|
|
7605
7682
|
connection: {
|
|
7606
7683
|
type: "string"
|
|
@@ -7680,6 +7757,27 @@ function _schemasDomainRecord(domain) {
|
|
|
7680
7757
|
"filename"
|
|
7681
7758
|
],
|
|
7682
7759
|
additionalProperties: {}
|
|
7760
|
+
},
|
|
7761
|
+
EmptyPublishRecord: {
|
|
7762
|
+
type: "object",
|
|
7763
|
+
properties: {
|
|
7764
|
+
type: {
|
|
7765
|
+
type: "null"
|
|
7766
|
+
},
|
|
7767
|
+
asset: {
|
|
7768
|
+
oneOf: [
|
|
7769
|
+
{
|
|
7770
|
+
type: "null"
|
|
7771
|
+
},
|
|
7772
|
+
{
|
|
7773
|
+
type: "string"
|
|
7774
|
+
}
|
|
7775
|
+
]
|
|
7776
|
+
}
|
|
7777
|
+
},
|
|
7778
|
+
required: [
|
|
7779
|
+
"type"
|
|
7780
|
+
]
|
|
7683
7781
|
}
|
|
7684
7782
|
}
|
|
7685
7783
|
},
|
|
@@ -7940,23 +8038,30 @@ function _schemasDomainRecord(domain) {
|
|
|
7940
8038
|
type: "string"
|
|
7941
8039
|
},
|
|
7942
8040
|
input: {
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
type: "string"
|
|
8041
|
+
oneOf: [
|
|
8042
|
+
{
|
|
8043
|
+
type: "null"
|
|
7947
8044
|
},
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
},
|
|
7953
|
-
{
|
|
8045
|
+
{
|
|
8046
|
+
type: "object",
|
|
8047
|
+
properties: {
|
|
8048
|
+
type: {
|
|
7954
8049
|
type: "string"
|
|
8050
|
+
},
|
|
8051
|
+
file: {
|
|
8052
|
+
oneOf: [
|
|
8053
|
+
{
|
|
8054
|
+
type: "null"
|
|
8055
|
+
},
|
|
8056
|
+
{
|
|
8057
|
+
type: "string"
|
|
8058
|
+
}
|
|
8059
|
+
]
|
|
7955
8060
|
}
|
|
7956
|
-
|
|
8061
|
+
},
|
|
8062
|
+
required: []
|
|
7957
8063
|
}
|
|
7958
|
-
|
|
7959
|
-
required: []
|
|
8064
|
+
]
|
|
7960
8065
|
},
|
|
7961
8066
|
lang: {
|
|
7962
8067
|
type: "string"
|
|
@@ -8142,8 +8247,17 @@ function _schemasDomainRecord(domain) {
|
|
|
8142
8247
|
audio: {
|
|
8143
8248
|
type: "object",
|
|
8144
8249
|
properties: {
|
|
8250
|
+
codec: {
|
|
8251
|
+
type: "string"
|
|
8252
|
+
},
|
|
8145
8253
|
pan: {
|
|
8146
8254
|
type: "string"
|
|
8255
|
+
},
|
|
8256
|
+
samplerate: {
|
|
8257
|
+
type: "number"
|
|
8258
|
+
},
|
|
8259
|
+
split: {
|
|
8260
|
+
type: "boolean"
|
|
8147
8261
|
}
|
|
8148
8262
|
},
|
|
8149
8263
|
required: []
|
|
@@ -8245,7 +8359,14 @@ function _schemasDomainRecord(domain) {
|
|
|
8245
8359
|
"const": "file"
|
|
8246
8360
|
},
|
|
8247
8361
|
asset: {
|
|
8248
|
-
|
|
8362
|
+
oneOf: [
|
|
8363
|
+
{
|
|
8364
|
+
type: "null"
|
|
8365
|
+
},
|
|
8366
|
+
{
|
|
8367
|
+
type: "string"
|
|
8368
|
+
}
|
|
8369
|
+
]
|
|
8249
8370
|
},
|
|
8250
8371
|
connection: {
|
|
8251
8372
|
type: "string"
|
|
@@ -8511,39 +8632,40 @@ function _schemasDomainRecord(domain) {
|
|
|
8511
8632
|
type: "object",
|
|
8512
8633
|
properties: {
|
|
8513
8634
|
type: {
|
|
8514
|
-
|
|
8635
|
+
oneOf: [
|
|
8636
|
+
{
|
|
8637
|
+
type: "null"
|
|
8638
|
+
},
|
|
8639
|
+
{
|
|
8640
|
+
type: "string"
|
|
8641
|
+
}
|
|
8642
|
+
]
|
|
8515
8643
|
},
|
|
8516
8644
|
profile: {
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8520
|
-
|
|
8521
|
-
|
|
8522
|
-
|
|
8523
|
-
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
items: {
|
|
8533
|
-
oneOf: [
|
|
8534
|
-
{
|
|
8535
|
-
type: "string"
|
|
8536
|
-
},
|
|
8537
|
-
{
|
|
8538
|
-
$ref: "#/components/schemas/RenderProfileObject"
|
|
8645
|
+
oneOf: [
|
|
8646
|
+
{
|
|
8647
|
+
type: "string"
|
|
8648
|
+
},
|
|
8649
|
+
{
|
|
8650
|
+
type: "array",
|
|
8651
|
+
items: {
|
|
8652
|
+
oneOf: [
|
|
8653
|
+
{
|
|
8654
|
+
type: "string"
|
|
8655
|
+
},
|
|
8656
|
+
{
|
|
8657
|
+
$ref: "#/components/schemas/RenderProfileObject"
|
|
8658
|
+
}
|
|
8659
|
+
]
|
|
8539
8660
|
}
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
|
|
8544
|
-
|
|
8661
|
+
},
|
|
8662
|
+
{
|
|
8663
|
+
$ref: "#/components/schemas/RenderProfileObject"
|
|
8664
|
+
}
|
|
8665
|
+
]
|
|
8545
8666
|
}
|
|
8546
|
-
|
|
8667
|
+
},
|
|
8668
|
+
required: []
|
|
8547
8669
|
},
|
|
8548
8670
|
RenderProfileObject: {
|
|
8549
8671
|
type: "object",
|
|
@@ -8576,8 +8698,17 @@ function _schemasDomainRecord(domain) {
|
|
|
8576
8698
|
audio: {
|
|
8577
8699
|
type: "object",
|
|
8578
8700
|
properties: {
|
|
8701
|
+
codec: {
|
|
8702
|
+
type: "string"
|
|
8703
|
+
},
|
|
8579
8704
|
pan: {
|
|
8580
8705
|
type: "string"
|
|
8706
|
+
},
|
|
8707
|
+
samplerate: {
|
|
8708
|
+
type: "number"
|
|
8709
|
+
},
|
|
8710
|
+
split: {
|
|
8711
|
+
type: "boolean"
|
|
8581
8712
|
}
|
|
8582
8713
|
},
|
|
8583
8714
|
required: []
|
|
@@ -9415,23 +9546,30 @@ function _schemasDomainRecord(domain) {
|
|
|
9415
9546
|
type: "string"
|
|
9416
9547
|
},
|
|
9417
9548
|
input: {
|
|
9418
|
-
|
|
9419
|
-
|
|
9420
|
-
|
|
9421
|
-
type: "string"
|
|
9549
|
+
oneOf: [
|
|
9550
|
+
{
|
|
9551
|
+
type: "null"
|
|
9422
9552
|
},
|
|
9423
|
-
|
|
9424
|
-
|
|
9425
|
-
|
|
9426
|
-
|
|
9427
|
-
},
|
|
9428
|
-
{
|
|
9553
|
+
{
|
|
9554
|
+
type: "object",
|
|
9555
|
+
properties: {
|
|
9556
|
+
type: {
|
|
9429
9557
|
type: "string"
|
|
9558
|
+
},
|
|
9559
|
+
file: {
|
|
9560
|
+
oneOf: [
|
|
9561
|
+
{
|
|
9562
|
+
type: "null"
|
|
9563
|
+
},
|
|
9564
|
+
{
|
|
9565
|
+
type: "string"
|
|
9566
|
+
}
|
|
9567
|
+
]
|
|
9430
9568
|
}
|
|
9431
|
-
|
|
9569
|
+
},
|
|
9570
|
+
required: []
|
|
9432
9571
|
}
|
|
9433
|
-
|
|
9434
|
-
required: []
|
|
9572
|
+
]
|
|
9435
9573
|
},
|
|
9436
9574
|
lang: {
|
|
9437
9575
|
type: "string"
|
|
@@ -9617,8 +9755,17 @@ function _schemasDomainRecord(domain) {
|
|
|
9617
9755
|
audio: {
|
|
9618
9756
|
type: "object",
|
|
9619
9757
|
properties: {
|
|
9758
|
+
codec: {
|
|
9759
|
+
type: "string"
|
|
9760
|
+
},
|
|
9620
9761
|
pan: {
|
|
9621
9762
|
type: "string"
|
|
9763
|
+
},
|
|
9764
|
+
samplerate: {
|
|
9765
|
+
type: "number"
|
|
9766
|
+
},
|
|
9767
|
+
split: {
|
|
9768
|
+
type: "boolean"
|
|
9622
9769
|
}
|
|
9623
9770
|
},
|
|
9624
9771
|
required: []
|
|
@@ -10537,12 +10684,111 @@ function _schemasDomainRecord(domain) {
|
|
|
10537
10684
|
]
|
|
10538
10685
|
};
|
|
10539
10686
|
}
|
|
10540
|
-
case ":search
|
|
10687
|
+
case ":search": {
|
|
10541
10688
|
return {
|
|
10542
10689
|
version: "3.1",
|
|
10543
10690
|
components: {
|
|
10544
10691
|
schemas: {
|
|
10545
10692
|
SearchRecord: {
|
|
10693
|
+
type: "object",
|
|
10694
|
+
properties: {
|
|
10695
|
+
type: {
|
|
10696
|
+
"const": "conditions_and"
|
|
10697
|
+
},
|
|
10698
|
+
sort: {
|
|
10699
|
+
type: "array",
|
|
10700
|
+
items: {
|
|
10701
|
+
type: "object",
|
|
10702
|
+
properties: {},
|
|
10703
|
+
required: [],
|
|
10704
|
+
additionalProperties: {
|
|
10705
|
+
oneOf: [
|
|
10706
|
+
{
|
|
10707
|
+
"const": "asc"
|
|
10708
|
+
},
|
|
10709
|
+
{
|
|
10710
|
+
"const": "desc"
|
|
10711
|
+
}
|
|
10712
|
+
]
|
|
10713
|
+
}
|
|
10714
|
+
}
|
|
10715
|
+
},
|
|
10716
|
+
showDefault: {
|
|
10717
|
+
type: "boolean"
|
|
10718
|
+
},
|
|
10719
|
+
showDeleted: {
|
|
10720
|
+
type: "boolean"
|
|
10721
|
+
},
|
|
10722
|
+
showHidden: {
|
|
10723
|
+
type: "boolean"
|
|
10724
|
+
},
|
|
10725
|
+
view: {
|
|
10726
|
+
oneOf: [
|
|
10727
|
+
{
|
|
10728
|
+
"const": "GRID_VIEW"
|
|
10729
|
+
},
|
|
10730
|
+
{
|
|
10731
|
+
"const": "LIST_VIEW"
|
|
10732
|
+
},
|
|
10733
|
+
{
|
|
10734
|
+
"const": "CALENDAR_VIEW"
|
|
10735
|
+
},
|
|
10736
|
+
{
|
|
10737
|
+
"const": "MAP_VIEW"
|
|
10738
|
+
},
|
|
10739
|
+
{
|
|
10740
|
+
"const": "AGENDA_VIEW"
|
|
10741
|
+
},
|
|
10742
|
+
{
|
|
10743
|
+
"const": "RESOURCE_VIEW"
|
|
10744
|
+
}
|
|
10745
|
+
]
|
|
10746
|
+
},
|
|
10747
|
+
conditions: {
|
|
10748
|
+
type: "array",
|
|
10749
|
+
items: {}
|
|
10750
|
+
},
|
|
10751
|
+
visibleColumnKeys: {
|
|
10752
|
+
oneOf: [
|
|
10753
|
+
{
|
|
10754
|
+
type: "null"
|
|
10755
|
+
},
|
|
10756
|
+
{
|
|
10757
|
+
type: "array",
|
|
10758
|
+
items: {
|
|
10759
|
+
type: "string"
|
|
10760
|
+
}
|
|
10761
|
+
}
|
|
10762
|
+
]
|
|
10763
|
+
},
|
|
10764
|
+
connectionId: {
|
|
10765
|
+
oneOf: [
|
|
10766
|
+
{
|
|
10767
|
+
type: "null"
|
|
10768
|
+
},
|
|
10769
|
+
{
|
|
10770
|
+
type: "string"
|
|
10771
|
+
}
|
|
10772
|
+
]
|
|
10773
|
+
}
|
|
10774
|
+
},
|
|
10775
|
+
required: []
|
|
10776
|
+
}
|
|
10777
|
+
}
|
|
10778
|
+
},
|
|
10779
|
+
schemas: [
|
|
10780
|
+
{
|
|
10781
|
+
$ref: "#/components/schemas/SearchRecord"
|
|
10782
|
+
}
|
|
10783
|
+
]
|
|
10784
|
+
};
|
|
10785
|
+
}
|
|
10786
|
+
case ":search?": {
|
|
10787
|
+
return {
|
|
10788
|
+
version: "3.1",
|
|
10789
|
+
components: {
|
|
10790
|
+
schemas: {
|
|
10791
|
+
SearchRecordProvided: {
|
|
10546
10792
|
type: "object",
|
|
10547
10793
|
properties: {
|
|
10548
10794
|
hits: {
|
|
@@ -10569,7 +10815,7 @@ function _schemasDomainRecord(domain) {
|
|
|
10569
10815
|
},
|
|
10570
10816
|
schemas: [
|
|
10571
10817
|
{
|
|
10572
|
-
$ref: "#/components/schemas/
|
|
10818
|
+
$ref: "#/components/schemas/SearchRecordProvided"
|
|
10573
10819
|
}
|
|
10574
10820
|
]
|
|
10575
10821
|
};
|
|
@@ -12055,6 +12301,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12055
12301
|
TemplateRecord: {
|
|
12056
12302
|
type: "object",
|
|
12057
12303
|
properties: {
|
|
12304
|
+
controller: {
|
|
12305
|
+
type: "string"
|
|
12306
|
+
},
|
|
12058
12307
|
mixin: {
|
|
12059
12308
|
type: "array",
|
|
12060
12309
|
items: {
|