@nxtedition/types 23.1.8 → 23.1.10
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/settings.d.ts +10 -0
- package/dist/nxtpression.d.ts +82 -25
- package/dist/records/domains/event.d.ts +24 -1
- package/dist/records/domains/index.d.ts +3 -1
- package/dist/records/domains/index.js +1 -0
- package/dist/records/domains/media.d.ts +12 -0
- package/dist/records/domains/monitor.d.ts +13 -0
- package/dist/records/domains/story.d.ts +14 -0
- package/dist/records/domains/story.js +1 -0
- package/dist/records/domains/template.d.ts +2 -22
- package/dist/records/validate/assert-guard.js +1996 -667
- package/dist/records/validate/assert.js +2003 -670
- package/dist/records/validate/is.js +96 -23
- package/dist/records/validate/schemas.js +1384 -420
- package/dist/records/validate/stringify.js +176 -29
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +2351 -867
- package/dist/records/validate/validate.js +1752 -602
- package/dist/rpc.d.ts +1 -1
- package/dist/rpc.js +3 -3
- package/package.json +2 -2
|
@@ -1737,20 +1737,20 @@ function _schemaExactRecord(name) {
|
|
|
1737
1737
|
weight: {
|
|
1738
1738
|
oneOf: [
|
|
1739
1739
|
{
|
|
1740
|
-
"const": "
|
|
1740
|
+
"const": "normal"
|
|
1741
1741
|
},
|
|
1742
1742
|
{
|
|
1743
|
-
"const": "
|
|
1743
|
+
"const": "bold"
|
|
1744
1744
|
}
|
|
1745
1745
|
]
|
|
1746
1746
|
},
|
|
1747
1747
|
style: {
|
|
1748
1748
|
oneOf: [
|
|
1749
1749
|
{
|
|
1750
|
-
"const": "
|
|
1750
|
+
"const": "normal"
|
|
1751
1751
|
},
|
|
1752
1752
|
{
|
|
1753
|
-
"const": "
|
|
1753
|
+
"const": "italic"
|
|
1754
1754
|
}
|
|
1755
1755
|
]
|
|
1756
1756
|
}
|
|
@@ -1810,20 +1810,20 @@ function _schemaExactRecord(name) {
|
|
|
1810
1810
|
weight: {
|
|
1811
1811
|
oneOf: [
|
|
1812
1812
|
{
|
|
1813
|
-
"const": "
|
|
1813
|
+
"const": "normal"
|
|
1814
1814
|
},
|
|
1815
1815
|
{
|
|
1816
|
-
"const": "
|
|
1816
|
+
"const": "bold"
|
|
1817
1817
|
}
|
|
1818
1818
|
]
|
|
1819
1819
|
},
|
|
1820
1820
|
style: {
|
|
1821
1821
|
oneOf: [
|
|
1822
1822
|
{
|
|
1823
|
-
"const": "
|
|
1823
|
+
"const": "normal"
|
|
1824
1824
|
},
|
|
1825
1825
|
{
|
|
1826
|
-
"const": "
|
|
1826
|
+
"const": "italic"
|
|
1827
1827
|
}
|
|
1828
1828
|
]
|
|
1829
1829
|
}
|
|
@@ -2315,10 +2315,10 @@ function _schemaExactRecord(name) {
|
|
|
2315
2315
|
style: {
|
|
2316
2316
|
oneOf: [
|
|
2317
2317
|
{
|
|
2318
|
-
"const": "
|
|
2318
|
+
"const": "normal"
|
|
2319
2319
|
},
|
|
2320
2320
|
{
|
|
2321
|
-
"const": "
|
|
2321
|
+
"const": "italic"
|
|
2322
2322
|
}
|
|
2323
2323
|
]
|
|
2324
2324
|
},
|
|
@@ -7101,125 +7101,23 @@ function _schemaDomainRecord(domain) {
|
|
|
7101
7101
|
}
|
|
7102
7102
|
};
|
|
7103
7103
|
}
|
|
7104
|
-
case ":
|
|
7104
|
+
case ":template": {
|
|
7105
7105
|
return {
|
|
7106
7106
|
version: "3.1",
|
|
7107
7107
|
components: {
|
|
7108
7108
|
schemas: {
|
|
7109
|
-
|
|
7110
|
-
type: "object",
|
|
7111
|
-
properties: {
|
|
7112
|
-
start: {
|
|
7113
|
-
oneOf: [
|
|
7114
|
-
{
|
|
7115
|
-
type: "null"
|
|
7116
|
-
},
|
|
7117
|
-
{
|
|
7118
|
-
type: "number"
|
|
7119
|
-
}
|
|
7120
|
-
]
|
|
7121
|
-
},
|
|
7122
|
-
end: {
|
|
7123
|
-
oneOf: [
|
|
7124
|
-
{
|
|
7125
|
-
type: "null"
|
|
7126
|
-
},
|
|
7127
|
-
{
|
|
7128
|
-
type: "number"
|
|
7129
|
-
}
|
|
7130
|
-
]
|
|
7131
|
-
},
|
|
7132
|
-
duration: {
|
|
7133
|
-
oneOf: [
|
|
7134
|
-
{
|
|
7135
|
-
type: "null"
|
|
7136
|
-
},
|
|
7137
|
-
{
|
|
7138
|
-
type: "number"
|
|
7139
|
-
}
|
|
7140
|
-
]
|
|
7141
|
-
},
|
|
7142
|
-
position: {
|
|
7143
|
-
type: "string"
|
|
7144
|
-
},
|
|
7145
|
-
text: {
|
|
7146
|
-
type: "string"
|
|
7147
|
-
},
|
|
7148
|
-
lang: {
|
|
7149
|
-
type: "string"
|
|
7150
|
-
},
|
|
7151
|
-
style: {
|
|
7152
|
-
type: "string"
|
|
7153
|
-
},
|
|
7154
|
-
styleOverrides: {
|
|
7155
|
-
$ref: "#/components/schemas/SubtitleEventStyleOverrides"
|
|
7156
|
-
}
|
|
7157
|
-
},
|
|
7158
|
-
required: []
|
|
7159
|
-
},
|
|
7160
|
-
SubtitleEventStyleOverrides: {
|
|
7109
|
+
TemplateRecord: {
|
|
7161
7110
|
type: "object",
|
|
7162
7111
|
properties: {
|
|
7163
|
-
|
|
7164
|
-
type: "string"
|
|
7165
|
-
},
|
|
7166
|
-
marginR: {
|
|
7167
|
-
type: "string"
|
|
7168
|
-
},
|
|
7169
|
-
marginV: {
|
|
7170
|
-
type: "string"
|
|
7171
|
-
},
|
|
7172
|
-
alignment: {
|
|
7173
|
-
type: "string"
|
|
7174
|
-
},
|
|
7175
|
-
fontname: {
|
|
7176
|
-
type: "string"
|
|
7177
|
-
},
|
|
7178
|
-
fontsize: {
|
|
7179
|
-
type: "string"
|
|
7180
|
-
},
|
|
7181
|
-
primaryColour: {
|
|
7182
|
-
type: "string"
|
|
7183
|
-
},
|
|
7184
|
-
secondaryColour: {
|
|
7185
|
-
type: "string"
|
|
7186
|
-
},
|
|
7187
|
-
outlineColour: {
|
|
7188
|
-
type: "string"
|
|
7189
|
-
},
|
|
7190
|
-
backColour: {
|
|
7191
|
-
type: "string"
|
|
7192
|
-
},
|
|
7193
|
-
bold: {
|
|
7112
|
+
source: {
|
|
7194
7113
|
type: "string"
|
|
7195
7114
|
},
|
|
7196
|
-
|
|
7115
|
+
controller: {
|
|
7197
7116
|
type: "string"
|
|
7198
7117
|
},
|
|
7199
|
-
|
|
7118
|
+
type: {
|
|
7200
7119
|
type: "string"
|
|
7201
7120
|
},
|
|
7202
|
-
strikeOut: {
|
|
7203
|
-
type: "string"
|
|
7204
|
-
}
|
|
7205
|
-
},
|
|
7206
|
-
required: []
|
|
7207
|
-
}
|
|
7208
|
-
}
|
|
7209
|
-
},
|
|
7210
|
-
schema: {
|
|
7211
|
-
$ref: "#/components/schemas/EventRecord"
|
|
7212
|
-
}
|
|
7213
|
-
};
|
|
7214
|
-
}
|
|
7215
|
-
case ":event._template?": {
|
|
7216
|
-
return {
|
|
7217
|
-
version: "3.1",
|
|
7218
|
-
components: {
|
|
7219
|
-
schemas: {
|
|
7220
|
-
EventTemplateRecord: {
|
|
7221
|
-
type: "object",
|
|
7222
|
-
properties: {
|
|
7223
7121
|
mixin: {
|
|
7224
7122
|
type: "array",
|
|
7225
7123
|
items: {
|
|
@@ -7227,179 +7125,1102 @@ function _schemaDomainRecord(domain) {
|
|
|
7227
7125
|
}
|
|
7228
7126
|
},
|
|
7229
7127
|
properties: {
|
|
7230
|
-
$ref: "#/components/schemas/
|
|
7231
|
-
},
|
|
7232
|
-
layout: {
|
|
7233
|
-
type: "object",
|
|
7234
|
-
properties: {
|
|
7235
|
-
title: {
|
|
7236
|
-
type: "string"
|
|
7237
|
-
}
|
|
7238
|
-
},
|
|
7239
|
-
required: []
|
|
7240
|
-
},
|
|
7241
|
-
controller: {
|
|
7242
|
-
type: "string"
|
|
7128
|
+
$ref: "#/components/schemas/RecordstringTemplateProperty"
|
|
7243
7129
|
}
|
|
7244
7130
|
},
|
|
7245
7131
|
required: []
|
|
7246
7132
|
},
|
|
7247
|
-
|
|
7248
|
-
type: "object",
|
|
7249
|
-
properties: {},
|
|
7250
|
-
required: []
|
|
7251
|
-
}
|
|
7252
|
-
}
|
|
7253
|
-
},
|
|
7254
|
-
schema: {
|
|
7255
|
-
$ref: "#/components/schemas/EventTemplateRecord"
|
|
7256
|
-
}
|
|
7257
|
-
};
|
|
7258
|
-
}
|
|
7259
|
-
case ":event.overlay?": {
|
|
7260
|
-
return {
|
|
7261
|
-
version: "3.1",
|
|
7262
|
-
components: {
|
|
7263
|
-
schemas: {
|
|
7264
|
-
EventOverlayRecord: {
|
|
7133
|
+
RecordstringTemplateProperty: {
|
|
7265
7134
|
type: "object",
|
|
7266
7135
|
properties: {},
|
|
7267
7136
|
required: [],
|
|
7137
|
+
description: "Construct a type with a set of properties K of type T",
|
|
7268
7138
|
additionalProperties: {
|
|
7269
|
-
|
|
7270
|
-
properties: {
|
|
7271
|
-
data: {
|
|
7272
|
-
$ref: "#/components/schemas/EventPropsRecord"
|
|
7273
|
-
}
|
|
7274
|
-
},
|
|
7275
|
-
required: [
|
|
7276
|
-
"data"
|
|
7277
|
-
]
|
|
7139
|
+
$ref: "#/components/schemas/TemplateProperty"
|
|
7278
7140
|
}
|
|
7279
7141
|
},
|
|
7280
|
-
|
|
7142
|
+
TemplateProperty: {
|
|
7281
7143
|
type: "object",
|
|
7282
7144
|
properties: {
|
|
7283
|
-
|
|
7145
|
+
path: {
|
|
7284
7146
|
type: "string"
|
|
7285
7147
|
},
|
|
7286
|
-
|
|
7287
|
-
|
|
7288
|
-
|
|
7289
|
-
|
|
7148
|
+
render: {
|
|
7149
|
+
type: "object",
|
|
7150
|
+
properties: {
|
|
7151
|
+
type: {
|
|
7152
|
+
"const": "image"
|
|
7290
7153
|
},
|
|
7291
|
-
{
|
|
7292
|
-
type: "
|
|
7154
|
+
profile: {
|
|
7155
|
+
type: "object",
|
|
7156
|
+
properties: {
|
|
7157
|
+
format: {
|
|
7158
|
+
type: "string"
|
|
7159
|
+
},
|
|
7160
|
+
video: {
|
|
7161
|
+
type: "object",
|
|
7162
|
+
properties: {
|
|
7163
|
+
width: {
|
|
7164
|
+
type: "number"
|
|
7165
|
+
},
|
|
7166
|
+
height: {
|
|
7167
|
+
type: "number"
|
|
7168
|
+
},
|
|
7169
|
+
fit: {
|
|
7170
|
+
"const": "cover"
|
|
7171
|
+
}
|
|
7172
|
+
},
|
|
7173
|
+
required: [
|
|
7174
|
+
"width",
|
|
7175
|
+
"height",
|
|
7176
|
+
"fit"
|
|
7177
|
+
]
|
|
7178
|
+
}
|
|
7179
|
+
},
|
|
7180
|
+
required: []
|
|
7293
7181
|
}
|
|
7182
|
+
},
|
|
7183
|
+
required: [
|
|
7184
|
+
"type"
|
|
7294
7185
|
]
|
|
7295
7186
|
},
|
|
7296
|
-
|
|
7297
|
-
type: "string"
|
|
7298
|
-
},
|
|
7299
|
-
startTime: {
|
|
7300
|
-
type: "number"
|
|
7301
|
-
},
|
|
7302
|
-
shotboxGroup: {
|
|
7187
|
+
type: {
|
|
7303
7188
|
oneOf: [
|
|
7304
7189
|
{
|
|
7305
|
-
|
|
7190
|
+
"const": "string"
|
|
7306
7191
|
},
|
|
7307
7192
|
{
|
|
7308
|
-
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7193
|
+
"const": "number"
|
|
7194
|
+
},
|
|
7195
|
+
{
|
|
7196
|
+
"const": "boolean"
|
|
7197
|
+
},
|
|
7198
|
+
{
|
|
7199
|
+
"const": "object"
|
|
7200
|
+
},
|
|
7201
|
+
{
|
|
7202
|
+
"const": "array"
|
|
7203
|
+
},
|
|
7204
|
+
{
|
|
7205
|
+
"const": "asset"
|
|
7206
|
+
},
|
|
7207
|
+
{
|
|
7208
|
+
"const": "datetime"
|
|
7209
|
+
},
|
|
7210
|
+
{
|
|
7211
|
+
"const": "rpc"
|
|
7312
7212
|
}
|
|
7313
|
-
]
|
|
7314
|
-
|
|
7213
|
+
],
|
|
7214
|
+
description: "Specifying what type of data will be entered into the field."
|
|
7215
|
+
},
|
|
7216
|
+
title: {
|
|
7217
|
+
type: "string",
|
|
7218
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
7219
|
+
},
|
|
7220
|
+
description: {
|
|
7221
|
+
type: "string"
|
|
7222
|
+
},
|
|
7223
|
+
required: {
|
|
7224
|
+
type: "boolean",
|
|
7225
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
7226
|
+
},
|
|
7227
|
+
oneOf: {
|
|
7228
|
+
type: "array",
|
|
7229
|
+
items: {
|
|
7230
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7231
|
+
}
|
|
7232
|
+
},
|
|
7233
|
+
anyOf: {
|
|
7234
|
+
type: "array",
|
|
7235
|
+
items: {
|
|
7236
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7237
|
+
}
|
|
7238
|
+
},
|
|
7239
|
+
"enum": {
|
|
7240
|
+
type: "array",
|
|
7241
|
+
items: {}
|
|
7242
|
+
},
|
|
7243
|
+
minItems: {
|
|
7244
|
+
type: "number"
|
|
7245
|
+
},
|
|
7246
|
+
maxItems: {
|
|
7247
|
+
type: "number"
|
|
7248
|
+
},
|
|
7249
|
+
items: {
|
|
7250
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7251
|
+
},
|
|
7252
|
+
properties: {
|
|
7253
|
+
$ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
|
|
7254
|
+
},
|
|
7255
|
+
"default": {},
|
|
7256
|
+
"const": {},
|
|
7257
|
+
widget: {
|
|
7258
|
+
oneOf: [
|
|
7259
|
+
{
|
|
7260
|
+
type: "string"
|
|
7261
|
+
},
|
|
7262
|
+
{
|
|
7263
|
+
$ref: "#/components/schemas/WidgetOptions"
|
|
7264
|
+
}
|
|
7265
|
+
]
|
|
7266
|
+
},
|
|
7267
|
+
placeholder: {
|
|
7268
|
+
type: "string"
|
|
7269
|
+
},
|
|
7270
|
+
helpText: {
|
|
7271
|
+
type: "string"
|
|
7272
|
+
},
|
|
7273
|
+
invalid: {
|
|
7274
|
+
type: "boolean"
|
|
7275
|
+
},
|
|
7276
|
+
emptyValue: {}
|
|
7277
|
+
},
|
|
7278
|
+
required: []
|
|
7279
|
+
},
|
|
7280
|
+
SchemaPropertyunknown: {
|
|
7281
|
+
type: "object",
|
|
7282
|
+
properties: {
|
|
7283
|
+
type: {
|
|
7284
|
+
oneOf: [
|
|
7285
|
+
{
|
|
7286
|
+
"const": "string"
|
|
7287
|
+
},
|
|
7288
|
+
{
|
|
7289
|
+
"const": "number"
|
|
7290
|
+
},
|
|
7291
|
+
{
|
|
7292
|
+
"const": "boolean"
|
|
7293
|
+
},
|
|
7294
|
+
{
|
|
7295
|
+
"const": "object"
|
|
7296
|
+
},
|
|
7297
|
+
{
|
|
7298
|
+
"const": "array"
|
|
7299
|
+
},
|
|
7300
|
+
{
|
|
7301
|
+
"const": "asset"
|
|
7302
|
+
},
|
|
7303
|
+
{
|
|
7304
|
+
"const": "datetime"
|
|
7305
|
+
},
|
|
7306
|
+
{
|
|
7307
|
+
"const": "rpc"
|
|
7308
|
+
}
|
|
7309
|
+
],
|
|
7310
|
+
description: "Specifying what type of data will be entered into the field."
|
|
7311
|
+
},
|
|
7312
|
+
title: {
|
|
7313
|
+
type: "string",
|
|
7314
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
7315
|
+
},
|
|
7316
|
+
description: {
|
|
7317
|
+
type: "string"
|
|
7318
|
+
},
|
|
7319
|
+
required: {
|
|
7320
|
+
type: "boolean",
|
|
7321
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
7322
|
+
},
|
|
7323
|
+
oneOf: {
|
|
7324
|
+
type: "array",
|
|
7325
|
+
items: {
|
|
7326
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7327
|
+
}
|
|
7328
|
+
},
|
|
7329
|
+
anyOf: {
|
|
7330
|
+
type: "array",
|
|
7331
|
+
items: {
|
|
7332
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7333
|
+
}
|
|
7334
|
+
},
|
|
7335
|
+
"enum": {
|
|
7336
|
+
type: "array",
|
|
7337
|
+
items: {}
|
|
7338
|
+
},
|
|
7339
|
+
minItems: {
|
|
7340
|
+
type: "number"
|
|
7341
|
+
},
|
|
7342
|
+
maxItems: {
|
|
7343
|
+
type: "number"
|
|
7344
|
+
},
|
|
7345
|
+
items: {
|
|
7346
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7347
|
+
},
|
|
7348
|
+
properties: {
|
|
7349
|
+
$ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
|
|
7350
|
+
},
|
|
7351
|
+
"default": {},
|
|
7352
|
+
"const": {},
|
|
7353
|
+
widget: {
|
|
7354
|
+
oneOf: [
|
|
7355
|
+
{
|
|
7356
|
+
type: "string"
|
|
7357
|
+
},
|
|
7358
|
+
{
|
|
7359
|
+
$ref: "#/components/schemas/WidgetOptions"
|
|
7360
|
+
}
|
|
7361
|
+
]
|
|
7362
|
+
},
|
|
7363
|
+
placeholder: {
|
|
7364
|
+
type: "string"
|
|
7365
|
+
},
|
|
7366
|
+
helpText: {
|
|
7367
|
+
type: "string"
|
|
7368
|
+
},
|
|
7369
|
+
invalid: {
|
|
7370
|
+
type: "boolean"
|
|
7371
|
+
},
|
|
7372
|
+
emptyValue: {}
|
|
7373
|
+
},
|
|
7374
|
+
required: []
|
|
7375
|
+
},
|
|
7376
|
+
RecordstringSchemaPropertyunknown: {
|
|
7377
|
+
type: "object",
|
|
7378
|
+
properties: {},
|
|
7379
|
+
required: [],
|
|
7380
|
+
description: "Construct a type with a set of properties K of type T",
|
|
7381
|
+
additionalProperties: {
|
|
7382
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7383
|
+
}
|
|
7384
|
+
},
|
|
7385
|
+
WidgetOptions: {
|
|
7386
|
+
type: "object",
|
|
7387
|
+
properties: {
|
|
7388
|
+
type: {
|
|
7389
|
+
type: "string"
|
|
7390
|
+
},
|
|
7391
|
+
readOnly: {
|
|
7392
|
+
type: "boolean"
|
|
7393
|
+
}
|
|
7394
|
+
},
|
|
7395
|
+
required: [],
|
|
7396
|
+
additionalProperties: {}
|
|
7397
|
+
}
|
|
7398
|
+
}
|
|
7399
|
+
},
|
|
7400
|
+
schema: {
|
|
7401
|
+
$ref: "#/components/schemas/TemplateRecord"
|
|
7402
|
+
}
|
|
7403
|
+
};
|
|
7404
|
+
}
|
|
7405
|
+
case ":event": {
|
|
7406
|
+
return {
|
|
7407
|
+
version: "3.1",
|
|
7408
|
+
components: {
|
|
7409
|
+
schemas: {
|
|
7410
|
+
EventRecord: {
|
|
7411
|
+
type: "object",
|
|
7412
|
+
properties: {
|
|
7413
|
+
start: {
|
|
7414
|
+
oneOf: [
|
|
7415
|
+
{
|
|
7416
|
+
type: "null"
|
|
7417
|
+
},
|
|
7418
|
+
{
|
|
7419
|
+
type: "number"
|
|
7420
|
+
}
|
|
7421
|
+
]
|
|
7422
|
+
},
|
|
7423
|
+
end: {
|
|
7424
|
+
oneOf: [
|
|
7425
|
+
{
|
|
7426
|
+
type: "null"
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
type: "number"
|
|
7430
|
+
}
|
|
7431
|
+
]
|
|
7432
|
+
},
|
|
7433
|
+
duration: {
|
|
7434
|
+
oneOf: [
|
|
7435
|
+
{
|
|
7436
|
+
type: "null"
|
|
7437
|
+
},
|
|
7438
|
+
{
|
|
7439
|
+
type: "number"
|
|
7440
|
+
}
|
|
7441
|
+
]
|
|
7442
|
+
},
|
|
7443
|
+
position: {
|
|
7444
|
+
type: "string"
|
|
7445
|
+
},
|
|
7446
|
+
text: {
|
|
7447
|
+
type: "string"
|
|
7448
|
+
},
|
|
7449
|
+
lang: {
|
|
7450
|
+
type: "string"
|
|
7451
|
+
},
|
|
7452
|
+
style: {
|
|
7453
|
+
type: "string"
|
|
7454
|
+
},
|
|
7455
|
+
styleOverrides: {
|
|
7456
|
+
$ref: "#/components/schemas/SubtitleEventStyleOverrides"
|
|
7457
|
+
}
|
|
7458
|
+
},
|
|
7459
|
+
required: []
|
|
7460
|
+
},
|
|
7461
|
+
SubtitleEventStyleOverrides: {
|
|
7462
|
+
type: "object",
|
|
7463
|
+
properties: {
|
|
7464
|
+
marginL: {
|
|
7465
|
+
type: "string"
|
|
7466
|
+
},
|
|
7467
|
+
marginR: {
|
|
7468
|
+
type: "string"
|
|
7469
|
+
},
|
|
7470
|
+
marginV: {
|
|
7471
|
+
type: "string"
|
|
7472
|
+
},
|
|
7473
|
+
alignment: {
|
|
7474
|
+
type: "string"
|
|
7475
|
+
},
|
|
7476
|
+
fontname: {
|
|
7477
|
+
type: "string"
|
|
7478
|
+
},
|
|
7479
|
+
fontsize: {
|
|
7480
|
+
type: "string"
|
|
7481
|
+
},
|
|
7482
|
+
primaryColour: {
|
|
7483
|
+
type: "string"
|
|
7484
|
+
},
|
|
7485
|
+
secondaryColour: {
|
|
7486
|
+
type: "string"
|
|
7487
|
+
},
|
|
7488
|
+
outlineColour: {
|
|
7489
|
+
type: "string"
|
|
7490
|
+
},
|
|
7491
|
+
backColour: {
|
|
7492
|
+
type: "string"
|
|
7493
|
+
},
|
|
7494
|
+
bold: {
|
|
7495
|
+
type: "string"
|
|
7496
|
+
},
|
|
7497
|
+
italic: {
|
|
7498
|
+
type: "string"
|
|
7499
|
+
},
|
|
7500
|
+
underline: {
|
|
7501
|
+
type: "string"
|
|
7502
|
+
},
|
|
7503
|
+
strikeOut: {
|
|
7504
|
+
type: "string"
|
|
7505
|
+
}
|
|
7506
|
+
},
|
|
7507
|
+
required: []
|
|
7508
|
+
}
|
|
7509
|
+
}
|
|
7510
|
+
},
|
|
7511
|
+
schema: {
|
|
7512
|
+
$ref: "#/components/schemas/EventRecord"
|
|
7513
|
+
}
|
|
7514
|
+
};
|
|
7515
|
+
}
|
|
7516
|
+
case ":event._template?": {
|
|
7517
|
+
return {
|
|
7518
|
+
version: "3.1",
|
|
7519
|
+
components: {
|
|
7520
|
+
schemas: {
|
|
7521
|
+
EventTemplateRecord: {
|
|
7522
|
+
type: "object",
|
|
7523
|
+
properties: {
|
|
7524
|
+
mixin: {
|
|
7525
|
+
type: "array",
|
|
7526
|
+
items: {
|
|
7527
|
+
type: "string"
|
|
7528
|
+
}
|
|
7529
|
+
},
|
|
7530
|
+
properties: {
|
|
7531
|
+
$ref: "#/components/schemas/RecordstringTemplateProperty"
|
|
7532
|
+
},
|
|
7533
|
+
layout: {
|
|
7534
|
+
type: "object",
|
|
7535
|
+
properties: {
|
|
7536
|
+
title: {
|
|
7537
|
+
type: "string"
|
|
7538
|
+
}
|
|
7539
|
+
},
|
|
7540
|
+
required: []
|
|
7541
|
+
},
|
|
7542
|
+
controller: {
|
|
7543
|
+
type: "string"
|
|
7544
|
+
}
|
|
7545
|
+
},
|
|
7546
|
+
required: []
|
|
7547
|
+
},
|
|
7548
|
+
RecordstringTemplateProperty: {
|
|
7549
|
+
type: "object",
|
|
7550
|
+
properties: {},
|
|
7551
|
+
required: [],
|
|
7552
|
+
description: "Construct a type with a set of properties K of type T",
|
|
7553
|
+
additionalProperties: {
|
|
7554
|
+
$ref: "#/components/schemas/TemplateProperty"
|
|
7555
|
+
}
|
|
7556
|
+
},
|
|
7557
|
+
TemplateProperty: {
|
|
7558
|
+
type: "object",
|
|
7559
|
+
properties: {
|
|
7560
|
+
path: {
|
|
7561
|
+
type: "string"
|
|
7562
|
+
},
|
|
7563
|
+
render: {
|
|
7564
|
+
type: "object",
|
|
7565
|
+
properties: {
|
|
7566
|
+
type: {
|
|
7567
|
+
"const": "image"
|
|
7568
|
+
},
|
|
7569
|
+
profile: {
|
|
7570
|
+
type: "object",
|
|
7571
|
+
properties: {
|
|
7572
|
+
format: {
|
|
7573
|
+
type: "string"
|
|
7574
|
+
},
|
|
7575
|
+
video: {
|
|
7576
|
+
type: "object",
|
|
7577
|
+
properties: {
|
|
7578
|
+
width: {
|
|
7579
|
+
type: "number"
|
|
7580
|
+
},
|
|
7581
|
+
height: {
|
|
7582
|
+
type: "number"
|
|
7583
|
+
},
|
|
7584
|
+
fit: {
|
|
7585
|
+
"const": "cover"
|
|
7586
|
+
}
|
|
7587
|
+
},
|
|
7588
|
+
required: [
|
|
7589
|
+
"width",
|
|
7590
|
+
"height",
|
|
7591
|
+
"fit"
|
|
7592
|
+
]
|
|
7593
|
+
}
|
|
7594
|
+
},
|
|
7595
|
+
required: []
|
|
7596
|
+
}
|
|
7597
|
+
},
|
|
7598
|
+
required: [
|
|
7599
|
+
"type"
|
|
7600
|
+
]
|
|
7601
|
+
},
|
|
7602
|
+
type: {
|
|
7603
|
+
oneOf: [
|
|
7604
|
+
{
|
|
7605
|
+
"const": "string"
|
|
7606
|
+
},
|
|
7607
|
+
{
|
|
7608
|
+
"const": "number"
|
|
7609
|
+
},
|
|
7610
|
+
{
|
|
7611
|
+
"const": "boolean"
|
|
7612
|
+
},
|
|
7613
|
+
{
|
|
7614
|
+
"const": "object"
|
|
7615
|
+
},
|
|
7616
|
+
{
|
|
7617
|
+
"const": "array"
|
|
7618
|
+
},
|
|
7619
|
+
{
|
|
7620
|
+
"const": "asset"
|
|
7621
|
+
},
|
|
7622
|
+
{
|
|
7623
|
+
"const": "datetime"
|
|
7624
|
+
},
|
|
7625
|
+
{
|
|
7626
|
+
"const": "rpc"
|
|
7627
|
+
}
|
|
7628
|
+
],
|
|
7629
|
+
description: "Specifying what type of data will be entered into the field."
|
|
7630
|
+
},
|
|
7631
|
+
title: {
|
|
7632
|
+
type: "string",
|
|
7633
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
7634
|
+
},
|
|
7635
|
+
description: {
|
|
7636
|
+
type: "string"
|
|
7637
|
+
},
|
|
7638
|
+
required: {
|
|
7639
|
+
type: "boolean",
|
|
7640
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
7641
|
+
},
|
|
7642
|
+
oneOf: {
|
|
7643
|
+
type: "array",
|
|
7644
|
+
items: {
|
|
7645
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7646
|
+
}
|
|
7647
|
+
},
|
|
7648
|
+
anyOf: {
|
|
7649
|
+
type: "array",
|
|
7650
|
+
items: {
|
|
7651
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7652
|
+
}
|
|
7653
|
+
},
|
|
7654
|
+
"enum": {
|
|
7655
|
+
type: "array",
|
|
7656
|
+
items: {}
|
|
7657
|
+
},
|
|
7658
|
+
minItems: {
|
|
7659
|
+
type: "number"
|
|
7660
|
+
},
|
|
7661
|
+
maxItems: {
|
|
7662
|
+
type: "number"
|
|
7663
|
+
},
|
|
7664
|
+
items: {
|
|
7665
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7666
|
+
},
|
|
7667
|
+
properties: {
|
|
7668
|
+
$ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
|
|
7669
|
+
},
|
|
7670
|
+
"default": {},
|
|
7671
|
+
"const": {},
|
|
7672
|
+
widget: {
|
|
7673
|
+
oneOf: [
|
|
7674
|
+
{
|
|
7675
|
+
type: "string"
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
$ref: "#/components/schemas/WidgetOptions"
|
|
7679
|
+
}
|
|
7680
|
+
]
|
|
7681
|
+
},
|
|
7682
|
+
placeholder: {
|
|
7683
|
+
type: "string"
|
|
7684
|
+
},
|
|
7685
|
+
helpText: {
|
|
7686
|
+
type: "string"
|
|
7687
|
+
},
|
|
7688
|
+
invalid: {
|
|
7689
|
+
type: "boolean"
|
|
7690
|
+
},
|
|
7691
|
+
emptyValue: {}
|
|
7692
|
+
},
|
|
7693
|
+
required: []
|
|
7694
|
+
},
|
|
7695
|
+
SchemaPropertyunknown: {
|
|
7696
|
+
type: "object",
|
|
7697
|
+
properties: {
|
|
7698
|
+
type: {
|
|
7699
|
+
oneOf: [
|
|
7700
|
+
{
|
|
7701
|
+
"const": "string"
|
|
7702
|
+
},
|
|
7703
|
+
{
|
|
7704
|
+
"const": "number"
|
|
7705
|
+
},
|
|
7706
|
+
{
|
|
7707
|
+
"const": "boolean"
|
|
7708
|
+
},
|
|
7709
|
+
{
|
|
7710
|
+
"const": "object"
|
|
7711
|
+
},
|
|
7712
|
+
{
|
|
7713
|
+
"const": "array"
|
|
7714
|
+
},
|
|
7715
|
+
{
|
|
7716
|
+
"const": "asset"
|
|
7717
|
+
},
|
|
7718
|
+
{
|
|
7719
|
+
"const": "datetime"
|
|
7720
|
+
},
|
|
7721
|
+
{
|
|
7722
|
+
"const": "rpc"
|
|
7723
|
+
}
|
|
7724
|
+
],
|
|
7725
|
+
description: "Specifying what type of data will be entered into the field."
|
|
7726
|
+
},
|
|
7727
|
+
title: {
|
|
7728
|
+
type: "string",
|
|
7729
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
7730
|
+
},
|
|
7731
|
+
description: {
|
|
7732
|
+
type: "string"
|
|
7733
|
+
},
|
|
7734
|
+
required: {
|
|
7735
|
+
type: "boolean",
|
|
7736
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
7737
|
+
},
|
|
7738
|
+
oneOf: {
|
|
7739
|
+
type: "array",
|
|
7740
|
+
items: {
|
|
7741
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7742
|
+
}
|
|
7743
|
+
},
|
|
7744
|
+
anyOf: {
|
|
7745
|
+
type: "array",
|
|
7746
|
+
items: {
|
|
7747
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7748
|
+
}
|
|
7749
|
+
},
|
|
7750
|
+
"enum": {
|
|
7751
|
+
type: "array",
|
|
7752
|
+
items: {}
|
|
7753
|
+
},
|
|
7754
|
+
minItems: {
|
|
7755
|
+
type: "number"
|
|
7756
|
+
},
|
|
7757
|
+
maxItems: {
|
|
7758
|
+
type: "number"
|
|
7759
|
+
},
|
|
7760
|
+
items: {
|
|
7761
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7762
|
+
},
|
|
7763
|
+
properties: {
|
|
7764
|
+
$ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
|
|
7765
|
+
},
|
|
7766
|
+
"default": {},
|
|
7767
|
+
"const": {},
|
|
7768
|
+
widget: {
|
|
7769
|
+
oneOf: [
|
|
7770
|
+
{
|
|
7771
|
+
type: "string"
|
|
7772
|
+
},
|
|
7773
|
+
{
|
|
7774
|
+
$ref: "#/components/schemas/WidgetOptions"
|
|
7775
|
+
}
|
|
7776
|
+
]
|
|
7777
|
+
},
|
|
7778
|
+
placeholder: {
|
|
7779
|
+
type: "string"
|
|
7780
|
+
},
|
|
7781
|
+
helpText: {
|
|
7782
|
+
type: "string"
|
|
7783
|
+
},
|
|
7784
|
+
invalid: {
|
|
7785
|
+
type: "boolean"
|
|
7786
|
+
},
|
|
7787
|
+
emptyValue: {}
|
|
7788
|
+
},
|
|
7789
|
+
required: []
|
|
7790
|
+
},
|
|
7791
|
+
RecordstringSchemaPropertyunknown: {
|
|
7792
|
+
type: "object",
|
|
7793
|
+
properties: {},
|
|
7794
|
+
required: [],
|
|
7795
|
+
description: "Construct a type with a set of properties K of type T",
|
|
7796
|
+
additionalProperties: {
|
|
7797
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7798
|
+
}
|
|
7799
|
+
},
|
|
7800
|
+
WidgetOptions: {
|
|
7801
|
+
type: "object",
|
|
7802
|
+
properties: {
|
|
7803
|
+
type: {
|
|
7804
|
+
type: "string"
|
|
7805
|
+
},
|
|
7806
|
+
readOnly: {
|
|
7807
|
+
type: "boolean"
|
|
7808
|
+
}
|
|
7809
|
+
},
|
|
7810
|
+
required: [],
|
|
7811
|
+
additionalProperties: {}
|
|
7812
|
+
}
|
|
7813
|
+
}
|
|
7814
|
+
},
|
|
7815
|
+
schema: {
|
|
7816
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
7817
|
+
}
|
|
7818
|
+
};
|
|
7819
|
+
}
|
|
7820
|
+
case ":event.overlay?": {
|
|
7821
|
+
return {
|
|
7822
|
+
version: "3.1",
|
|
7823
|
+
components: {
|
|
7824
|
+
schemas: {
|
|
7825
|
+
EventOverlayRecord: {
|
|
7826
|
+
type: "object",
|
|
7827
|
+
properties: {},
|
|
7828
|
+
required: [],
|
|
7829
|
+
additionalProperties: {
|
|
7830
|
+
type: "object",
|
|
7831
|
+
properties: {
|
|
7832
|
+
data: {
|
|
7833
|
+
$ref: "#/components/schemas/EventPropsRecord"
|
|
7834
|
+
}
|
|
7835
|
+
},
|
|
7836
|
+
required: [
|
|
7837
|
+
"data"
|
|
7838
|
+
]
|
|
7839
|
+
}
|
|
7840
|
+
},
|
|
7841
|
+
EventPropsRecord: {
|
|
7842
|
+
type: "object",
|
|
7843
|
+
properties: {
|
|
7844
|
+
source: {
|
|
7845
|
+
type: "string"
|
|
7846
|
+
},
|
|
7847
|
+
cueCard: {
|
|
7848
|
+
oneOf: [
|
|
7849
|
+
{
|
|
7850
|
+
type: "string"
|
|
7851
|
+
},
|
|
7852
|
+
{
|
|
7853
|
+
type: "boolean"
|
|
7854
|
+
}
|
|
7855
|
+
]
|
|
7856
|
+
},
|
|
7857
|
+
printRundownColor: {
|
|
7858
|
+
type: "string"
|
|
7859
|
+
},
|
|
7860
|
+
startTime: {
|
|
7861
|
+
type: "number"
|
|
7862
|
+
},
|
|
7863
|
+
shotboxGroup: {
|
|
7864
|
+
oneOf: [
|
|
7865
|
+
{
|
|
7866
|
+
type: "string"
|
|
7867
|
+
},
|
|
7868
|
+
{
|
|
7869
|
+
type: "array",
|
|
7870
|
+
items: {
|
|
7871
|
+
type: "string"
|
|
7872
|
+
}
|
|
7873
|
+
}
|
|
7874
|
+
]
|
|
7875
|
+
},
|
|
7315
7876
|
shotboxVisible: {
|
|
7316
7877
|
type: "boolean"
|
|
7317
7878
|
}
|
|
7318
7879
|
},
|
|
7319
7880
|
required: [],
|
|
7320
7881
|
additionalProperties: {
|
|
7321
|
-
$ref: "#/components/schemas/JsonValue"
|
|
7882
|
+
$ref: "#/components/schemas/JsonValue"
|
|
7883
|
+
}
|
|
7884
|
+
},
|
|
7885
|
+
JsonValue: {
|
|
7886
|
+
oneOf: [
|
|
7887
|
+
{
|
|
7888
|
+
type: "null"
|
|
7889
|
+
},
|
|
7890
|
+
{
|
|
7891
|
+
type: "string"
|
|
7892
|
+
},
|
|
7893
|
+
{
|
|
7894
|
+
type: "number"
|
|
7895
|
+
},
|
|
7896
|
+
{
|
|
7897
|
+
type: "boolean"
|
|
7898
|
+
},
|
|
7899
|
+
{
|
|
7900
|
+
$ref: "#/components/schemas/ArrayJsonValue"
|
|
7901
|
+
},
|
|
7902
|
+
{
|
|
7903
|
+
$ref: "#/components/schemas/__type.o1"
|
|
7904
|
+
}
|
|
7905
|
+
]
|
|
7906
|
+
},
|
|
7907
|
+
ArrayJsonValue: {
|
|
7908
|
+
type: "array",
|
|
7909
|
+
items: {
|
|
7910
|
+
$ref: "#/components/schemas/JsonValue"
|
|
7911
|
+
}
|
|
7912
|
+
},
|
|
7913
|
+
"__type.o1": {
|
|
7914
|
+
type: "object",
|
|
7915
|
+
properties: {},
|
|
7916
|
+
required: [],
|
|
7917
|
+
additionalProperties: {
|
|
7918
|
+
$ref: "#/components/schemas/JsonValue"
|
|
7919
|
+
}
|
|
7920
|
+
}
|
|
7921
|
+
}
|
|
7922
|
+
},
|
|
7923
|
+
schema: {
|
|
7924
|
+
$ref: "#/components/schemas/EventOverlayRecord"
|
|
7925
|
+
}
|
|
7926
|
+
};
|
|
7927
|
+
}
|
|
7928
|
+
case ":event.template?": {
|
|
7929
|
+
return {
|
|
7930
|
+
version: "3.1",
|
|
7931
|
+
components: {
|
|
7932
|
+
schemas: {
|
|
7933
|
+
EventTemplateRecord: {
|
|
7934
|
+
type: "object",
|
|
7935
|
+
properties: {
|
|
7936
|
+
mixin: {
|
|
7937
|
+
type: "array",
|
|
7938
|
+
items: {
|
|
7939
|
+
type: "string"
|
|
7940
|
+
}
|
|
7941
|
+
},
|
|
7942
|
+
properties: {
|
|
7943
|
+
$ref: "#/components/schemas/RecordstringTemplateProperty"
|
|
7944
|
+
},
|
|
7945
|
+
layout: {
|
|
7946
|
+
type: "object",
|
|
7947
|
+
properties: {
|
|
7948
|
+
title: {
|
|
7949
|
+
type: "string"
|
|
7950
|
+
}
|
|
7951
|
+
},
|
|
7952
|
+
required: []
|
|
7953
|
+
},
|
|
7954
|
+
controller: {
|
|
7955
|
+
type: "string"
|
|
7956
|
+
}
|
|
7957
|
+
},
|
|
7958
|
+
required: []
|
|
7959
|
+
},
|
|
7960
|
+
RecordstringTemplateProperty: {
|
|
7961
|
+
type: "object",
|
|
7962
|
+
properties: {},
|
|
7963
|
+
required: [],
|
|
7964
|
+
description: "Construct a type with a set of properties K of type T",
|
|
7965
|
+
additionalProperties: {
|
|
7966
|
+
$ref: "#/components/schemas/TemplateProperty"
|
|
7322
7967
|
}
|
|
7323
7968
|
},
|
|
7324
|
-
|
|
7325
|
-
|
|
7326
|
-
|
|
7327
|
-
|
|
7969
|
+
TemplateProperty: {
|
|
7970
|
+
type: "object",
|
|
7971
|
+
properties: {
|
|
7972
|
+
path: {
|
|
7973
|
+
type: "string"
|
|
7328
7974
|
},
|
|
7329
|
-
{
|
|
7975
|
+
render: {
|
|
7976
|
+
type: "object",
|
|
7977
|
+
properties: {
|
|
7978
|
+
type: {
|
|
7979
|
+
"const": "image"
|
|
7980
|
+
},
|
|
7981
|
+
profile: {
|
|
7982
|
+
type: "object",
|
|
7983
|
+
properties: {
|
|
7984
|
+
format: {
|
|
7985
|
+
type: "string"
|
|
7986
|
+
},
|
|
7987
|
+
video: {
|
|
7988
|
+
type: "object",
|
|
7989
|
+
properties: {
|
|
7990
|
+
width: {
|
|
7991
|
+
type: "number"
|
|
7992
|
+
},
|
|
7993
|
+
height: {
|
|
7994
|
+
type: "number"
|
|
7995
|
+
},
|
|
7996
|
+
fit: {
|
|
7997
|
+
"const": "cover"
|
|
7998
|
+
}
|
|
7999
|
+
},
|
|
8000
|
+
required: [
|
|
8001
|
+
"width",
|
|
8002
|
+
"height",
|
|
8003
|
+
"fit"
|
|
8004
|
+
]
|
|
8005
|
+
}
|
|
8006
|
+
},
|
|
8007
|
+
required: []
|
|
8008
|
+
}
|
|
8009
|
+
},
|
|
8010
|
+
required: [
|
|
8011
|
+
"type"
|
|
8012
|
+
]
|
|
8013
|
+
},
|
|
8014
|
+
type: {
|
|
8015
|
+
oneOf: [
|
|
8016
|
+
{
|
|
8017
|
+
"const": "string"
|
|
8018
|
+
},
|
|
8019
|
+
{
|
|
8020
|
+
"const": "number"
|
|
8021
|
+
},
|
|
8022
|
+
{
|
|
8023
|
+
"const": "boolean"
|
|
8024
|
+
},
|
|
8025
|
+
{
|
|
8026
|
+
"const": "object"
|
|
8027
|
+
},
|
|
8028
|
+
{
|
|
8029
|
+
"const": "array"
|
|
8030
|
+
},
|
|
8031
|
+
{
|
|
8032
|
+
"const": "asset"
|
|
8033
|
+
},
|
|
8034
|
+
{
|
|
8035
|
+
"const": "datetime"
|
|
8036
|
+
},
|
|
8037
|
+
{
|
|
8038
|
+
"const": "rpc"
|
|
8039
|
+
}
|
|
8040
|
+
],
|
|
8041
|
+
description: "Specifying what type of data will be entered into the field."
|
|
8042
|
+
},
|
|
8043
|
+
title: {
|
|
8044
|
+
type: "string",
|
|
8045
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
8046
|
+
},
|
|
8047
|
+
description: {
|
|
8048
|
+
type: "string"
|
|
8049
|
+
},
|
|
8050
|
+
required: {
|
|
8051
|
+
type: "boolean",
|
|
8052
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
8053
|
+
},
|
|
8054
|
+
oneOf: {
|
|
8055
|
+
type: "array",
|
|
8056
|
+
items: {
|
|
8057
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
8058
|
+
}
|
|
8059
|
+
},
|
|
8060
|
+
anyOf: {
|
|
8061
|
+
type: "array",
|
|
8062
|
+
items: {
|
|
8063
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
8064
|
+
}
|
|
8065
|
+
},
|
|
8066
|
+
"enum": {
|
|
8067
|
+
type: "array",
|
|
8068
|
+
items: {}
|
|
8069
|
+
},
|
|
8070
|
+
minItems: {
|
|
8071
|
+
type: "number"
|
|
8072
|
+
},
|
|
8073
|
+
maxItems: {
|
|
8074
|
+
type: "number"
|
|
8075
|
+
},
|
|
8076
|
+
items: {
|
|
8077
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
8078
|
+
},
|
|
8079
|
+
properties: {
|
|
8080
|
+
$ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
|
|
8081
|
+
},
|
|
8082
|
+
"default": {},
|
|
8083
|
+
"const": {},
|
|
8084
|
+
widget: {
|
|
8085
|
+
oneOf: [
|
|
8086
|
+
{
|
|
8087
|
+
type: "string"
|
|
8088
|
+
},
|
|
8089
|
+
{
|
|
8090
|
+
$ref: "#/components/schemas/WidgetOptions"
|
|
8091
|
+
}
|
|
8092
|
+
]
|
|
8093
|
+
},
|
|
8094
|
+
placeholder: {
|
|
8095
|
+
type: "string"
|
|
8096
|
+
},
|
|
8097
|
+
helpText: {
|
|
8098
|
+
type: "string"
|
|
8099
|
+
},
|
|
8100
|
+
invalid: {
|
|
8101
|
+
type: "boolean"
|
|
8102
|
+
},
|
|
8103
|
+
emptyValue: {}
|
|
8104
|
+
},
|
|
8105
|
+
required: []
|
|
8106
|
+
},
|
|
8107
|
+
SchemaPropertyunknown: {
|
|
8108
|
+
type: "object",
|
|
8109
|
+
properties: {
|
|
8110
|
+
type: {
|
|
8111
|
+
oneOf: [
|
|
8112
|
+
{
|
|
8113
|
+
"const": "string"
|
|
8114
|
+
},
|
|
8115
|
+
{
|
|
8116
|
+
"const": "number"
|
|
8117
|
+
},
|
|
8118
|
+
{
|
|
8119
|
+
"const": "boolean"
|
|
8120
|
+
},
|
|
8121
|
+
{
|
|
8122
|
+
"const": "object"
|
|
8123
|
+
},
|
|
8124
|
+
{
|
|
8125
|
+
"const": "array"
|
|
8126
|
+
},
|
|
8127
|
+
{
|
|
8128
|
+
"const": "asset"
|
|
8129
|
+
},
|
|
8130
|
+
{
|
|
8131
|
+
"const": "datetime"
|
|
8132
|
+
},
|
|
8133
|
+
{
|
|
8134
|
+
"const": "rpc"
|
|
8135
|
+
}
|
|
8136
|
+
],
|
|
8137
|
+
description: "Specifying what type of data will be entered into the field."
|
|
8138
|
+
},
|
|
8139
|
+
title: {
|
|
8140
|
+
type: "string",
|
|
8141
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
8142
|
+
},
|
|
8143
|
+
description: {
|
|
8144
|
+
type: "string"
|
|
8145
|
+
},
|
|
8146
|
+
required: {
|
|
8147
|
+
type: "boolean",
|
|
8148
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
8149
|
+
},
|
|
8150
|
+
oneOf: {
|
|
8151
|
+
type: "array",
|
|
8152
|
+
items: {
|
|
8153
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
8154
|
+
}
|
|
8155
|
+
},
|
|
8156
|
+
anyOf: {
|
|
8157
|
+
type: "array",
|
|
8158
|
+
items: {
|
|
8159
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
8160
|
+
}
|
|
8161
|
+
},
|
|
8162
|
+
"enum": {
|
|
8163
|
+
type: "array",
|
|
8164
|
+
items: {}
|
|
8165
|
+
},
|
|
8166
|
+
minItems: {
|
|
8167
|
+
type: "number"
|
|
8168
|
+
},
|
|
8169
|
+
maxItems: {
|
|
8170
|
+
type: "number"
|
|
8171
|
+
},
|
|
8172
|
+
items: {
|
|
8173
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
8174
|
+
},
|
|
8175
|
+
properties: {
|
|
8176
|
+
$ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
|
|
8177
|
+
},
|
|
8178
|
+
"default": {},
|
|
8179
|
+
"const": {},
|
|
8180
|
+
widget: {
|
|
8181
|
+
oneOf: [
|
|
8182
|
+
{
|
|
8183
|
+
type: "string"
|
|
8184
|
+
},
|
|
8185
|
+
{
|
|
8186
|
+
$ref: "#/components/schemas/WidgetOptions"
|
|
8187
|
+
}
|
|
8188
|
+
]
|
|
8189
|
+
},
|
|
8190
|
+
placeholder: {
|
|
7330
8191
|
type: "string"
|
|
7331
8192
|
},
|
|
7332
|
-
{
|
|
7333
|
-
type: "
|
|
8193
|
+
helpText: {
|
|
8194
|
+
type: "string"
|
|
7334
8195
|
},
|
|
7335
|
-
{
|
|
8196
|
+
invalid: {
|
|
7336
8197
|
type: "boolean"
|
|
7337
8198
|
},
|
|
7338
|
-
{
|
|
7339
|
-
|
|
7340
|
-
|
|
7341
|
-
{
|
|
7342
|
-
$ref: "#/components/schemas/__type.o1"
|
|
7343
|
-
}
|
|
7344
|
-
]
|
|
7345
|
-
},
|
|
7346
|
-
ArrayJsonValue: {
|
|
7347
|
-
type: "array",
|
|
7348
|
-
items: {
|
|
7349
|
-
$ref: "#/components/schemas/JsonValue"
|
|
7350
|
-
}
|
|
8199
|
+
emptyValue: {}
|
|
8200
|
+
},
|
|
8201
|
+
required: []
|
|
7351
8202
|
},
|
|
7352
|
-
|
|
8203
|
+
RecordstringSchemaPropertyunknown: {
|
|
7353
8204
|
type: "object",
|
|
7354
8205
|
properties: {},
|
|
7355
8206
|
required: [],
|
|
8207
|
+
description: "Construct a type with a set of properties K of type T",
|
|
7356
8208
|
additionalProperties: {
|
|
7357
|
-
$ref: "#/components/schemas/
|
|
8209
|
+
$ref: "#/components/schemas/SchemaPropertyunknown"
|
|
7358
8210
|
}
|
|
7359
|
-
}
|
|
7360
|
-
|
|
7361
|
-
},
|
|
7362
|
-
schema: {
|
|
7363
|
-
$ref: "#/components/schemas/EventOverlayRecord"
|
|
7364
|
-
}
|
|
7365
|
-
};
|
|
7366
|
-
}
|
|
7367
|
-
case ":event.template?": {
|
|
7368
|
-
return {
|
|
7369
|
-
version: "3.1",
|
|
7370
|
-
components: {
|
|
7371
|
-
schemas: {
|
|
7372
|
-
EventTemplateRecord: {
|
|
8211
|
+
},
|
|
8212
|
+
WidgetOptions: {
|
|
7373
8213
|
type: "object",
|
|
7374
8214
|
properties: {
|
|
7375
|
-
|
|
7376
|
-
type: "array",
|
|
7377
|
-
items: {
|
|
7378
|
-
type: "string"
|
|
7379
|
-
}
|
|
7380
|
-
},
|
|
7381
|
-
properties: {
|
|
7382
|
-
$ref: "#/components/schemas/object"
|
|
7383
|
-
},
|
|
7384
|
-
layout: {
|
|
7385
|
-
type: "object",
|
|
7386
|
-
properties: {
|
|
7387
|
-
title: {
|
|
7388
|
-
type: "string"
|
|
7389
|
-
}
|
|
7390
|
-
},
|
|
7391
|
-
required: []
|
|
7392
|
-
},
|
|
7393
|
-
controller: {
|
|
8215
|
+
type: {
|
|
7394
8216
|
type: "string"
|
|
8217
|
+
},
|
|
8218
|
+
readOnly: {
|
|
8219
|
+
type: "boolean"
|
|
7395
8220
|
}
|
|
7396
8221
|
},
|
|
7397
|
-
required: []
|
|
7398
|
-
|
|
7399
|
-
object: {
|
|
7400
|
-
type: "object",
|
|
7401
|
-
properties: {},
|
|
7402
|
-
required: []
|
|
8222
|
+
required: [],
|
|
8223
|
+
additionalProperties: {}
|
|
7403
8224
|
}
|
|
7404
8225
|
}
|
|
7405
8226
|
},
|
|
@@ -7584,6 +8405,118 @@ function _schemaDomainRecord(domain) {
|
|
|
7584
8405
|
}
|
|
7585
8406
|
};
|
|
7586
8407
|
}
|
|
8408
|
+
case ":event.status?": {
|
|
8409
|
+
return {
|
|
8410
|
+
version: "3.1",
|
|
8411
|
+
components: {
|
|
8412
|
+
schemas: {
|
|
8413
|
+
EventStatusRecord: {
|
|
8414
|
+
type: "object",
|
|
8415
|
+
properties: {
|
|
8416
|
+
messages: {
|
|
8417
|
+
type: "array",
|
|
8418
|
+
items: {
|
|
8419
|
+
type: "object",
|
|
8420
|
+
properties: {
|
|
8421
|
+
id: {
|
|
8422
|
+
type: "string"
|
|
8423
|
+
},
|
|
8424
|
+
msg: {
|
|
8425
|
+
type: "string"
|
|
8426
|
+
},
|
|
8427
|
+
level: {
|
|
8428
|
+
type: "number"
|
|
8429
|
+
},
|
|
8430
|
+
code: {
|
|
8431
|
+
type: "string"
|
|
8432
|
+
},
|
|
8433
|
+
expose: {
|
|
8434
|
+
oneOf: [
|
|
8435
|
+
{
|
|
8436
|
+
type: "null"
|
|
8437
|
+
},
|
|
8438
|
+
{
|
|
8439
|
+
type: "boolean"
|
|
8440
|
+
}
|
|
8441
|
+
]
|
|
8442
|
+
},
|
|
8443
|
+
index: {
|
|
8444
|
+
oneOf: [
|
|
8445
|
+
{
|
|
8446
|
+
type: "null"
|
|
8447
|
+
},
|
|
8448
|
+
{
|
|
8449
|
+
type: "number"
|
|
8450
|
+
}
|
|
8451
|
+
]
|
|
8452
|
+
},
|
|
8453
|
+
data: {
|
|
8454
|
+
type: "object",
|
|
8455
|
+
properties: {
|
|
8456
|
+
progress: {
|
|
8457
|
+
oneOf: [
|
|
8458
|
+
{
|
|
8459
|
+
type: "null"
|
|
8460
|
+
},
|
|
8461
|
+
{
|
|
8462
|
+
type: "number"
|
|
8463
|
+
}
|
|
8464
|
+
]
|
|
8465
|
+
}
|
|
8466
|
+
},
|
|
8467
|
+
required: []
|
|
8468
|
+
}
|
|
8469
|
+
},
|
|
8470
|
+
required: [
|
|
8471
|
+
"id",
|
|
8472
|
+
"msg",
|
|
8473
|
+
"level"
|
|
8474
|
+
]
|
|
8475
|
+
}
|
|
8476
|
+
}
|
|
8477
|
+
},
|
|
8478
|
+
required: []
|
|
8479
|
+
}
|
|
8480
|
+
}
|
|
8481
|
+
},
|
|
8482
|
+
schema: {
|
|
8483
|
+
$ref: "#/components/schemas/EventStatusRecord"
|
|
8484
|
+
}
|
|
8485
|
+
};
|
|
8486
|
+
}
|
|
8487
|
+
case ":event.schedule?": {
|
|
8488
|
+
return {
|
|
8489
|
+
version: "3.1",
|
|
8490
|
+
components: {
|
|
8491
|
+
schemas: {
|
|
8492
|
+
EventScheduleRecord: {
|
|
8493
|
+
type: "object",
|
|
8494
|
+
properties: {
|
|
8495
|
+
startTime: {
|
|
8496
|
+
type: "number"
|
|
8497
|
+
},
|
|
8498
|
+
transition: {
|
|
8499
|
+
type: "boolean"
|
|
8500
|
+
},
|
|
8501
|
+
transitionTime: {
|
|
8502
|
+
type: "number"
|
|
8503
|
+
},
|
|
8504
|
+
transitionDuration: {
|
|
8505
|
+
type: "number"
|
|
8506
|
+
},
|
|
8507
|
+
endTime: {
|
|
8508
|
+
type: "number"
|
|
8509
|
+
}
|
|
8510
|
+
},
|
|
8511
|
+
required: []
|
|
8512
|
+
}
|
|
8513
|
+
}
|
|
8514
|
+
},
|
|
8515
|
+
schema: {
|
|
8516
|
+
$ref: "#/components/schemas/EventScheduleRecord"
|
|
8517
|
+
}
|
|
8518
|
+
};
|
|
8519
|
+
}
|
|
7587
8520
|
case ":event.readDuration?": {
|
|
7588
8521
|
return {
|
|
7589
8522
|
version: "3.1",
|
|
@@ -9177,6 +10110,29 @@ function _schemaDomainRecord(domain) {
|
|
|
9177
10110
|
}
|
|
9178
10111
|
};
|
|
9179
10112
|
}
|
|
10113
|
+
case ":media.placeholder": {
|
|
10114
|
+
return {
|
|
10115
|
+
version: "3.1",
|
|
10116
|
+
components: {
|
|
10117
|
+
schemas: {
|
|
10118
|
+
MediaPlaceholderRecord: {
|
|
10119
|
+
type: "object",
|
|
10120
|
+
properties: {
|
|
10121
|
+
asset: {
|
|
10122
|
+
type: "string"
|
|
10123
|
+
}
|
|
10124
|
+
},
|
|
10125
|
+
required: [
|
|
10126
|
+
"asset"
|
|
10127
|
+
]
|
|
10128
|
+
}
|
|
10129
|
+
}
|
|
10130
|
+
},
|
|
10131
|
+
schema: {
|
|
10132
|
+
$ref: "#/components/schemas/MediaPlaceholderRecord"
|
|
10133
|
+
}
|
|
10134
|
+
};
|
|
10135
|
+
}
|
|
9180
10136
|
case ":media.consolidate": {
|
|
9181
10137
|
return {
|
|
9182
10138
|
version: "3.1",
|
|
@@ -9463,6 +10419,24 @@ function _schemaDomainRecord(domain) {
|
|
|
9463
10419
|
items: {
|
|
9464
10420
|
$ref: "#/components/schemas/Operation"
|
|
9465
10421
|
}
|
|
10422
|
+
},
|
|
10423
|
+
speakerLabels: {
|
|
10424
|
+
type: "object",
|
|
10425
|
+
properties: {},
|
|
10426
|
+
required: [],
|
|
10427
|
+
description: "Labels for speakers",
|
|
10428
|
+
additionalProperties: {
|
|
10429
|
+
type: "string"
|
|
10430
|
+
}
|
|
10431
|
+
},
|
|
10432
|
+
speakerRemaps: {
|
|
10433
|
+
type: "object",
|
|
10434
|
+
properties: {},
|
|
10435
|
+
required: [],
|
|
10436
|
+
description: "Override speaker IDs for specific paragraphs",
|
|
10437
|
+
additionalProperties: {
|
|
10438
|
+
type: "string"
|
|
10439
|
+
}
|
|
9466
10440
|
}
|
|
9467
10441
|
},
|
|
9468
10442
|
required: []
|
|
@@ -10415,6 +11389,9 @@ function _schemaDomainRecord(domain) {
|
|
|
10415
11389
|
"available",
|
|
10416
11390
|
"timestamp"
|
|
10417
11391
|
]
|
|
11392
|
+
},
|
|
11393
|
+
hostBridge: {
|
|
11394
|
+
$ref: "#/components/schemas/MonitorStatsHostBridge"
|
|
10418
11395
|
}
|
|
10419
11396
|
},
|
|
10420
11397
|
required: [
|
|
@@ -10423,7 +11400,8 @@ function _schemaDomainRecord(domain) {
|
|
|
10423
11400
|
"buddyinfo",
|
|
10424
11401
|
"meminfo",
|
|
10425
11402
|
"net",
|
|
10426
|
-
"var"
|
|
11403
|
+
"var",
|
|
11404
|
+
"hostBridge"
|
|
10427
11405
|
]
|
|
10428
11406
|
},
|
|
10429
11407
|
MonitorStatsProcInfo: {
|
|
@@ -10981,9 +11959,67 @@ function _schemaDomainRecord(domain) {
|
|
|
10981
11959
|
}
|
|
10982
11960
|
},
|
|
10983
11961
|
required: [
|
|
10984
|
-
"name"
|
|
10985
|
-
],
|
|
10986
|
-
additionalProperties: {}
|
|
11962
|
+
"name"
|
|
11963
|
+
],
|
|
11964
|
+
additionalProperties: {}
|
|
11965
|
+
},
|
|
11966
|
+
MonitorStatsHostBridge: {
|
|
11967
|
+
type: "object",
|
|
11968
|
+
properties: {
|
|
11969
|
+
types: {
|
|
11970
|
+
$ref: "#/components/schemas/Recordstringstring"
|
|
11971
|
+
},
|
|
11972
|
+
messages: {
|
|
11973
|
+
type: "array",
|
|
11974
|
+
items: {
|
|
11975
|
+
$ref: "#/components/schemas/MonitorStatsHostBridgeMessage"
|
|
11976
|
+
}
|
|
11977
|
+
},
|
|
11978
|
+
timestamp: {
|
|
11979
|
+
type: "number"
|
|
11980
|
+
}
|
|
11981
|
+
},
|
|
11982
|
+
required: [
|
|
11983
|
+
"types",
|
|
11984
|
+
"messages",
|
|
11985
|
+
"timestamp"
|
|
11986
|
+
]
|
|
11987
|
+
},
|
|
11988
|
+
Recordstringstring: {
|
|
11989
|
+
type: "object",
|
|
11990
|
+
properties: {},
|
|
11991
|
+
required: [],
|
|
11992
|
+
description: "Construct a type with a set of properties K of type T",
|
|
11993
|
+
additionalProperties: {
|
|
11994
|
+
type: "string"
|
|
11995
|
+
}
|
|
11996
|
+
},
|
|
11997
|
+
MonitorStatsHostBridgeMessage: {
|
|
11998
|
+
type: "object",
|
|
11999
|
+
properties: {
|
|
12000
|
+
type: {
|
|
12001
|
+
type: "string"
|
|
12002
|
+
},
|
|
12003
|
+
id: {
|
|
12004
|
+
type: "string"
|
|
12005
|
+
},
|
|
12006
|
+
level: {
|
|
12007
|
+
type: "number"
|
|
12008
|
+
},
|
|
12009
|
+
title: {
|
|
12010
|
+
type: "string"
|
|
12011
|
+
},
|
|
12012
|
+
msg: {
|
|
12013
|
+
type: "string"
|
|
12014
|
+
}
|
|
12015
|
+
},
|
|
12016
|
+
required: [
|
|
12017
|
+
"type",
|
|
12018
|
+
"id",
|
|
12019
|
+
"level",
|
|
12020
|
+
"title",
|
|
12021
|
+
"msg"
|
|
12022
|
+
]
|
|
10987
12023
|
}
|
|
10988
12024
|
}
|
|
10989
12025
|
},
|
|
@@ -19230,6 +20266,47 @@ function _schemaDomainRecord(domain) {
|
|
|
19230
20266
|
"const": "unfoldedUntilFolded"
|
|
19231
20267
|
}
|
|
19232
20268
|
]
|
|
20269
|
+
},
|
|
20270
|
+
stickyHeaders: {
|
|
20271
|
+
type: "boolean"
|
|
20272
|
+
},
|
|
20273
|
+
triggersColumn: {
|
|
20274
|
+
oneOf: [
|
|
20275
|
+
{
|
|
20276
|
+
"const": "title"
|
|
20277
|
+
},
|
|
20278
|
+
{
|
|
20279
|
+
"const": "triggers"
|
|
20280
|
+
}
|
|
20281
|
+
]
|
|
20282
|
+
},
|
|
20283
|
+
density: {
|
|
20284
|
+
oneOf: [
|
|
20285
|
+
{
|
|
20286
|
+
"const": "normal"
|
|
20287
|
+
},
|
|
20288
|
+
{
|
|
20289
|
+
"const": "compact"
|
|
20290
|
+
},
|
|
20291
|
+
{
|
|
20292
|
+
"const": "spacious"
|
|
20293
|
+
}
|
|
20294
|
+
]
|
|
20295
|
+
},
|
|
20296
|
+
showEvents: {
|
|
20297
|
+
type: "boolean"
|
|
20298
|
+
},
|
|
20299
|
+
showTriggers: {
|
|
20300
|
+
type: "boolean"
|
|
20301
|
+
},
|
|
20302
|
+
showReferenceDuration: {
|
|
20303
|
+
type: "boolean"
|
|
20304
|
+
},
|
|
20305
|
+
showSettingsColumn: {
|
|
20306
|
+
type: "boolean"
|
|
20307
|
+
},
|
|
20308
|
+
thumbnailColumnWidth: {
|
|
20309
|
+
type: "number"
|
|
19233
20310
|
}
|
|
19234
20311
|
},
|
|
19235
20312
|
required: [
|
|
@@ -19640,6 +20717,9 @@ function _schemaDomainRecord(domain) {
|
|
|
19640
20717
|
transcribe: {
|
|
19641
20718
|
type: "object",
|
|
19642
20719
|
properties: {
|
|
20720
|
+
showSpeakers: {
|
|
20721
|
+
type: "boolean"
|
|
20722
|
+
},
|
|
19643
20723
|
subtitleDisclaimer: {
|
|
19644
20724
|
type: "object",
|
|
19645
20725
|
properties: {
|
|
@@ -20200,6 +21280,9 @@ function _schemaDomainRecord(domain) {
|
|
|
20200
21280
|
},
|
|
20201
21281
|
systemHealthIgnore: {
|
|
20202
21282
|
type: "boolean"
|
|
21283
|
+
},
|
|
21284
|
+
systemHealthDebugLevel: {
|
|
21285
|
+
type: "boolean"
|
|
20203
21286
|
}
|
|
20204
21287
|
},
|
|
20205
21288
|
required: []
|
|
@@ -21497,6 +22580,61 @@ function _schemaDomainRecord(domain) {
|
|
|
21497
22580
|
}
|
|
21498
22581
|
};
|
|
21499
22582
|
}
|
|
22583
|
+
case ":story.editor": {
|
|
22584
|
+
return {
|
|
22585
|
+
version: "3.1",
|
|
22586
|
+
components: {
|
|
22587
|
+
schemas: {
|
|
22588
|
+
StoryDomainEditorRecord: {
|
|
22589
|
+
type: "object",
|
|
22590
|
+
properties: {
|
|
22591
|
+
value: {
|
|
22592
|
+
type: "object",
|
|
22593
|
+
properties: {
|
|
22594
|
+
object: {
|
|
22595
|
+
type: "string"
|
|
22596
|
+
},
|
|
22597
|
+
document: {
|
|
22598
|
+
$ref: "#/components/schemas/StoryDomainEditorRecordNode"
|
|
22599
|
+
}
|
|
22600
|
+
},
|
|
22601
|
+
required: []
|
|
22602
|
+
}
|
|
22603
|
+
},
|
|
22604
|
+
required: []
|
|
22605
|
+
},
|
|
22606
|
+
StoryDomainEditorRecordNode: {
|
|
22607
|
+
type: "object",
|
|
22608
|
+
properties: {
|
|
22609
|
+
type: {
|
|
22610
|
+
type: "string"
|
|
22611
|
+
},
|
|
22612
|
+
data: {
|
|
22613
|
+
$ref: "#/components/schemas/Recordstringunknown"
|
|
22614
|
+
},
|
|
22615
|
+
nodes: {
|
|
22616
|
+
type: "array",
|
|
22617
|
+
items: {
|
|
22618
|
+
$ref: "#/components/schemas/StoryDomainEditorRecordNode"
|
|
22619
|
+
}
|
|
22620
|
+
}
|
|
22621
|
+
},
|
|
22622
|
+
required: []
|
|
22623
|
+
},
|
|
22624
|
+
Recordstringunknown: {
|
|
22625
|
+
type: "object",
|
|
22626
|
+
properties: {},
|
|
22627
|
+
required: [],
|
|
22628
|
+
description: "Construct a type with a set of properties K of type T",
|
|
22629
|
+
additionalProperties: {}
|
|
22630
|
+
}
|
|
22631
|
+
}
|
|
22632
|
+
},
|
|
22633
|
+
schema: {
|
|
22634
|
+
$ref: "#/components/schemas/StoryDomainEditorRecord"
|
|
22635
|
+
}
|
|
22636
|
+
};
|
|
22637
|
+
}
|
|
21500
22638
|
case ":storyboard": {
|
|
21501
22639
|
return {
|
|
21502
22640
|
version: "3.1",
|
|
@@ -22145,180 +23283,6 @@ function _schemaDomainRecord(domain) {
|
|
|
22145
23283
|
}
|
|
22146
23284
|
};
|
|
22147
23285
|
}
|
|
22148
|
-
case ":template": {
|
|
22149
|
-
return {
|
|
22150
|
-
version: "3.1",
|
|
22151
|
-
components: {
|
|
22152
|
-
schemas: {
|
|
22153
|
-
TemplateRecord: {
|
|
22154
|
-
type: "object",
|
|
22155
|
-
properties: {
|
|
22156
|
-
source: {
|
|
22157
|
-
type: "string"
|
|
22158
|
-
},
|
|
22159
|
-
controller: {
|
|
22160
|
-
type: "string"
|
|
22161
|
-
},
|
|
22162
|
-
type: {
|
|
22163
|
-
type: "string"
|
|
22164
|
-
},
|
|
22165
|
-
mixin: {
|
|
22166
|
-
type: "array",
|
|
22167
|
-
items: {
|
|
22168
|
-
type: "string"
|
|
22169
|
-
}
|
|
22170
|
-
},
|
|
22171
|
-
properties: {
|
|
22172
|
-
$ref: "#/components/schemas/RecordstringTemplateProperty"
|
|
22173
|
-
}
|
|
22174
|
-
},
|
|
22175
|
-
required: []
|
|
22176
|
-
},
|
|
22177
|
-
RecordstringTemplateProperty: {
|
|
22178
|
-
type: "object",
|
|
22179
|
-
properties: {},
|
|
22180
|
-
required: [],
|
|
22181
|
-
description: "Construct a type with a set of properties K of type T",
|
|
22182
|
-
additionalProperties: {
|
|
22183
|
-
$ref: "#/components/schemas/TemplateProperty"
|
|
22184
|
-
}
|
|
22185
|
-
},
|
|
22186
|
-
TemplateProperty: {
|
|
22187
|
-
type: "object",
|
|
22188
|
-
properties: {
|
|
22189
|
-
path: {
|
|
22190
|
-
type: "string"
|
|
22191
|
-
},
|
|
22192
|
-
type: {
|
|
22193
|
-
type: "string"
|
|
22194
|
-
},
|
|
22195
|
-
label: {
|
|
22196
|
-
type: "string"
|
|
22197
|
-
},
|
|
22198
|
-
defaultValue: {
|
|
22199
|
-
type: "string"
|
|
22200
|
-
},
|
|
22201
|
-
widget: {
|
|
22202
|
-
type: "object",
|
|
22203
|
-
properties: {
|
|
22204
|
-
type: {
|
|
22205
|
-
type: "string"
|
|
22206
|
-
}
|
|
22207
|
-
},
|
|
22208
|
-
required: [
|
|
22209
|
-
"type"
|
|
22210
|
-
]
|
|
22211
|
-
},
|
|
22212
|
-
properties: {
|
|
22213
|
-
$ref: "#/components/schemas/object"
|
|
22214
|
-
},
|
|
22215
|
-
items: {
|
|
22216
|
-
type: "object",
|
|
22217
|
-
properties: {
|
|
22218
|
-
properties: {
|
|
22219
|
-
$ref: "#/components/schemas/RecordstringTemplatePropertySchema"
|
|
22220
|
-
}
|
|
22221
|
-
},
|
|
22222
|
-
required: []
|
|
22223
|
-
},
|
|
22224
|
-
render: {
|
|
22225
|
-
type: "object",
|
|
22226
|
-
properties: {
|
|
22227
|
-
type: {
|
|
22228
|
-
"const": "image"
|
|
22229
|
-
},
|
|
22230
|
-
profile: {
|
|
22231
|
-
type: "object",
|
|
22232
|
-
properties: {
|
|
22233
|
-
format: {
|
|
22234
|
-
type: "string"
|
|
22235
|
-
},
|
|
22236
|
-
video: {
|
|
22237
|
-
type: "object",
|
|
22238
|
-
properties: {
|
|
22239
|
-
width: {
|
|
22240
|
-
type: "number"
|
|
22241
|
-
},
|
|
22242
|
-
height: {
|
|
22243
|
-
type: "number"
|
|
22244
|
-
},
|
|
22245
|
-
fit: {
|
|
22246
|
-
"const": "cover"
|
|
22247
|
-
}
|
|
22248
|
-
},
|
|
22249
|
-
required: [
|
|
22250
|
-
"width",
|
|
22251
|
-
"height",
|
|
22252
|
-
"fit"
|
|
22253
|
-
]
|
|
22254
|
-
}
|
|
22255
|
-
},
|
|
22256
|
-
required: []
|
|
22257
|
-
}
|
|
22258
|
-
},
|
|
22259
|
-
required: [
|
|
22260
|
-
"type"
|
|
22261
|
-
]
|
|
22262
|
-
}
|
|
22263
|
-
},
|
|
22264
|
-
required: []
|
|
22265
|
-
},
|
|
22266
|
-
object: {
|
|
22267
|
-
type: "object",
|
|
22268
|
-
properties: {},
|
|
22269
|
-
required: []
|
|
22270
|
-
},
|
|
22271
|
-
RecordstringTemplatePropertySchema: {
|
|
22272
|
-
type: "object",
|
|
22273
|
-
properties: {},
|
|
22274
|
-
required: [],
|
|
22275
|
-
description: "Construct a type with a set of properties K of type T",
|
|
22276
|
-
additionalProperties: {
|
|
22277
|
-
$ref: "#/components/schemas/TemplatePropertySchema"
|
|
22278
|
-
}
|
|
22279
|
-
},
|
|
22280
|
-
TemplatePropertySchema: {
|
|
22281
|
-
type: "object",
|
|
22282
|
-
properties: {
|
|
22283
|
-
path: {
|
|
22284
|
-
type: "string"
|
|
22285
|
-
},
|
|
22286
|
-
type: {
|
|
22287
|
-
type: "string"
|
|
22288
|
-
},
|
|
22289
|
-
label: {
|
|
22290
|
-
type: "string"
|
|
22291
|
-
},
|
|
22292
|
-
defaultValue: {
|
|
22293
|
-
type: "string"
|
|
22294
|
-
},
|
|
22295
|
-
widget: {
|
|
22296
|
-
type: "object",
|
|
22297
|
-
properties: {
|
|
22298
|
-
type: {
|
|
22299
|
-
type: "string"
|
|
22300
|
-
}
|
|
22301
|
-
},
|
|
22302
|
-
required: [
|
|
22303
|
-
"type"
|
|
22304
|
-
]
|
|
22305
|
-
},
|
|
22306
|
-
items: {
|
|
22307
|
-
$ref: "#/components/schemas/TemplatePropertySchema"
|
|
22308
|
-
},
|
|
22309
|
-
properties: {
|
|
22310
|
-
$ref: "#/components/schemas/RecordstringTemplatePropertySchema"
|
|
22311
|
-
}
|
|
22312
|
-
},
|
|
22313
|
-
required: []
|
|
22314
|
-
}
|
|
22315
|
-
}
|
|
22316
|
-
},
|
|
22317
|
-
schema: {
|
|
22318
|
-
$ref: "#/components/schemas/TemplateRecord"
|
|
22319
|
-
}
|
|
22320
|
-
};
|
|
22321
|
-
}
|
|
22322
23286
|
case ":_user-notification-status": {
|
|
22323
23287
|
return {
|
|
22324
23288
|
version: "3.1",
|