@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.
@@ -1504,39 +1504,40 @@ function _schemasExactRecord(name) {
1504
1504
  type: "object",
1505
1505
  properties: {
1506
1506
  type: {
1507
- type: "string"
1507
+ oneOf: [
1508
+ {
1509
+ type: "null"
1510
+ },
1511
+ {
1512
+ type: "string"
1513
+ }
1514
+ ]
1508
1515
  },
1509
1516
  profile: {
1510
- $ref: "#/components/schemas/RenderProfile"
1511
- }
1512
- },
1513
- required: [
1514
- "type",
1515
- "profile"
1516
- ]
1517
- },
1518
- RenderProfile: {
1519
- oneOf: [
1520
- {
1521
- type: "string"
1522
- },
1523
- {
1524
- type: "array",
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
- $ref: "#/components/schemas/RenderProfileObject"
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
- type: "object",
4607
- properties: {
4608
- type: {
4609
- type: "string"
4619
+ oneOf: [
4620
+ {
4621
+ type: "null"
4610
4622
  },
4611
- file: {
4612
- oneOf: [
4613
- {
4614
- type: "null"
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
- type: "string"
4834
+ oneOf: [
4835
+ {
4836
+ type: "null"
4837
+ },
4838
+ {
4839
+ type: "string"
4840
+ }
4841
+ ]
4815
4842
  },
4816
4843
  profile: {
4817
- $ref: "#/components/schemas/RenderProfile"
4818
- }
4819
- },
4820
- required: [
4821
- "type",
4822
- "profile"
4823
- ]
4824
- },
4825
- RenderProfile: {
4826
- oneOf: [
4827
- {
4828
- type: "string"
4829
- },
4830
- {
4831
- type: "array",
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
- $ref: "#/components/schemas/RenderProfileObject"
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
- type: "string"
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
- type: "object",
7018
- properties: {
7019
- type: {
7020
- type: "string"
7057
+ oneOf: [
7058
+ {
7059
+ type: "null"
7021
7060
  },
7022
- file: {
7023
- oneOf: [
7024
- {
7025
- type: "null"
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
- type: "string"
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
- type: "string"
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
- type: "string"
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
- type: "object",
7944
- properties: {
7945
- type: {
7946
- type: "string"
8041
+ oneOf: [
8042
+ {
8043
+ type: "null"
7947
8044
  },
7948
- file: {
7949
- oneOf: [
7950
- {
7951
- type: "null"
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
- type: "string"
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
- type: "string"
8635
+ oneOf: [
8636
+ {
8637
+ type: "null"
8638
+ },
8639
+ {
8640
+ type: "string"
8641
+ }
8642
+ ]
8515
8643
  },
8516
8644
  profile: {
8517
- $ref: "#/components/schemas/RenderProfile"
8518
- }
8519
- },
8520
- required: [
8521
- "type",
8522
- "profile"
8523
- ]
8524
- },
8525
- RenderProfile: {
8526
- oneOf: [
8527
- {
8528
- type: "string"
8529
- },
8530
- {
8531
- type: "array",
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
- $ref: "#/components/schemas/RenderProfileObject"
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
- type: "object",
9419
- properties: {
9420
- type: {
9421
- type: "string"
9549
+ oneOf: [
9550
+ {
9551
+ type: "null"
9422
9552
  },
9423
- file: {
9424
- oneOf: [
9425
- {
9426
- type: "null"
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/SearchRecord"
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: {