@nxtedition/types 23.0.54 → 23.0.57
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 +2 -0
- package/dist/nxtpression.d.ts +156 -25
- package/dist/records/domains/asset.d.ts +4 -0
- package/dist/records/domains/connection/empty.d.ts +1 -1
- package/dist/records/domains/connection/facebook.d.ts +1 -1
- package/dist/records/domains/connection/file/ftp.d.ts +2 -2
- package/dist/records/domains/connection/file/http.d.ts +130 -0
- package/dist/records/domains/connection/file/http.js +20 -0
- package/dist/records/domains/connection/file/index.d.ts +6 -4
- package/dist/records/domains/connection/file/index.js +1 -0
- package/dist/records/domains/connection/file/s3.d.ts +1 -1
- package/dist/records/domains/connection/file/sftp.d.ts +2 -2
- package/dist/records/domains/connection/file/smb.d.ts +3 -3
- package/dist/records/domains/connection/index.d.ts +2 -2
- package/dist/records/domains/connection/reuters.d.ts +1 -1
- package/dist/records/domains/publish/empty.d.ts +3 -3
- package/dist/records/domains/publish/facebook.d.ts +1 -1
- package/dist/records/domains/publish/file-legacy.d.ts +1 -1
- package/dist/records/domains/publish/file.d.ts +1 -1
- package/dist/records/domains/publish/index.d.ts +6 -2
- package/dist/records/domains/publish/youtube.d.ts +1 -1
- package/dist/records/validate/assert-guard.js +2572 -298
- package/dist/records/validate/assert.js +2573 -298
- package/dist/records/validate/is.js +169 -41
- package/dist/records/validate/schemas.js +2181 -124
- package/dist/records/validate/stringify.js +804 -60
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +3959 -537
- package/dist/records/validate/validate.js +2159 -283
- package/package.json +1 -1
|
@@ -1228,10 +1228,10 @@ function _schemasExactRecord(name) {
|
|
|
1228
1228
|
style: {
|
|
1229
1229
|
oneOf: [
|
|
1230
1230
|
{
|
|
1231
|
-
"const": "
|
|
1231
|
+
"const": "italic"
|
|
1232
1232
|
},
|
|
1233
1233
|
{
|
|
1234
|
-
"const": "
|
|
1234
|
+
"const": "normal"
|
|
1235
1235
|
}
|
|
1236
1236
|
]
|
|
1237
1237
|
}
|
|
@@ -1300,10 +1300,10 @@ function _schemasExactRecord(name) {
|
|
|
1300
1300
|
style: {
|
|
1301
1301
|
oneOf: [
|
|
1302
1302
|
{
|
|
1303
|
-
"const": "
|
|
1303
|
+
"const": "italic"
|
|
1304
1304
|
},
|
|
1305
1305
|
{
|
|
1306
|
-
"const": "
|
|
1306
|
+
"const": "normal"
|
|
1307
1307
|
}
|
|
1308
1308
|
]
|
|
1309
1309
|
}
|
|
@@ -1414,10 +1414,10 @@ function _schemasExactRecord(name) {
|
|
|
1414
1414
|
style: {
|
|
1415
1415
|
oneOf: [
|
|
1416
1416
|
{
|
|
1417
|
-
"const": "
|
|
1417
|
+
"const": "italic"
|
|
1418
1418
|
},
|
|
1419
1419
|
{
|
|
1420
|
-
"const": "
|
|
1420
|
+
"const": "normal"
|
|
1421
1421
|
}
|
|
1422
1422
|
]
|
|
1423
1423
|
},
|
|
@@ -1800,6 +1800,32 @@ function _schemasDomainRecord(domain) {
|
|
|
1800
1800
|
]
|
|
1801
1801
|
};
|
|
1802
1802
|
}
|
|
1803
|
+
case ":asset.rawTypes?": {
|
|
1804
|
+
return {
|
|
1805
|
+
version: "3.1",
|
|
1806
|
+
components: {
|
|
1807
|
+
schemas: {
|
|
1808
|
+
AssetRawTypesProvidedRecord: {
|
|
1809
|
+
type: "object",
|
|
1810
|
+
properties: {
|
|
1811
|
+
value: {
|
|
1812
|
+
type: "array",
|
|
1813
|
+
items: {
|
|
1814
|
+
type: "string"
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
},
|
|
1818
|
+
required: []
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
schemas: [
|
|
1823
|
+
{
|
|
1824
|
+
$ref: "#/components/schemas/AssetRawTypesProvidedRecord"
|
|
1825
|
+
}
|
|
1826
|
+
]
|
|
1827
|
+
};
|
|
1828
|
+
}
|
|
1803
1829
|
case ":asset.types?": {
|
|
1804
1830
|
return {
|
|
1805
1831
|
version: "3.1",
|
|
@@ -3048,62 +3074,2014 @@ function _schemasDomainRecord(domain) {
|
|
|
3048
3074
|
username: {
|
|
3049
3075
|
type: "string"
|
|
3050
3076
|
},
|
|
3051
|
-
password: {
|
|
3052
|
-
type: "string"
|
|
3077
|
+
password: {
|
|
3078
|
+
type: "string"
|
|
3079
|
+
},
|
|
3080
|
+
utf8: {
|
|
3081
|
+
type: "boolean"
|
|
3082
|
+
},
|
|
3083
|
+
timezone: {
|
|
3084
|
+
type: "string"
|
|
3085
|
+
},
|
|
3086
|
+
type: {
|
|
3087
|
+
"const": "file"
|
|
3088
|
+
},
|
|
3089
|
+
port: {
|
|
3090
|
+
oneOf: [
|
|
3091
|
+
{
|
|
3092
|
+
type: "string"
|
|
3093
|
+
},
|
|
3094
|
+
{
|
|
3095
|
+
type: "number"
|
|
3096
|
+
}
|
|
3097
|
+
]
|
|
3098
|
+
},
|
|
3099
|
+
ignoreMissing: {
|
|
3100
|
+
type: "boolean"
|
|
3101
|
+
},
|
|
3102
|
+
concurrency: {
|
|
3103
|
+
type: "number"
|
|
3104
|
+
},
|
|
3105
|
+
stabilityThreshold: {
|
|
3106
|
+
type: "number"
|
|
3107
|
+
},
|
|
3108
|
+
pollInterval: {
|
|
3109
|
+
type: "number"
|
|
3110
|
+
},
|
|
3111
|
+
listConcurrency: {
|
|
3112
|
+
type: "number"
|
|
3113
|
+
},
|
|
3114
|
+
metafile: {
|
|
3115
|
+
type: "object",
|
|
3116
|
+
properties: {
|
|
3117
|
+
content: {
|
|
3118
|
+
type: "string"
|
|
3119
|
+
}
|
|
3120
|
+
},
|
|
3121
|
+
required: []
|
|
3122
|
+
},
|
|
3123
|
+
userNotificationsEnabled: {
|
|
3124
|
+
type: "boolean"
|
|
3125
|
+
}
|
|
3126
|
+
},
|
|
3127
|
+
required: []
|
|
3128
|
+
},
|
|
3129
|
+
FileConnectionHttpRecord: {
|
|
3130
|
+
type: "object",
|
|
3131
|
+
properties: {
|
|
3132
|
+
protocol: {
|
|
3133
|
+
"const": "http"
|
|
3134
|
+
},
|
|
3135
|
+
secure: {
|
|
3136
|
+
type: "boolean"
|
|
3137
|
+
},
|
|
3138
|
+
authType: {
|
|
3139
|
+
oneOf: [
|
|
3140
|
+
{
|
|
3141
|
+
"const": "none"
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"const": "oauth2"
|
|
3145
|
+
}
|
|
3146
|
+
]
|
|
3147
|
+
},
|
|
3148
|
+
oauth2: {
|
|
3149
|
+
type: "object",
|
|
3150
|
+
properties: {
|
|
3151
|
+
client: {
|
|
3152
|
+
type: "object",
|
|
3153
|
+
properties: {
|
|
3154
|
+
id: {
|
|
3155
|
+
type: "string"
|
|
3156
|
+
},
|
|
3157
|
+
secret: {
|
|
3158
|
+
type: "string"
|
|
3159
|
+
},
|
|
3160
|
+
secretParamName: {
|
|
3161
|
+
type: "string"
|
|
3162
|
+
},
|
|
3163
|
+
idParamName: {
|
|
3164
|
+
type: "string"
|
|
3165
|
+
}
|
|
3166
|
+
},
|
|
3167
|
+
required: []
|
|
3168
|
+
},
|
|
3169
|
+
auth: {
|
|
3170
|
+
type: "object",
|
|
3171
|
+
properties: {
|
|
3172
|
+
tokenHost: {
|
|
3173
|
+
type: "string"
|
|
3174
|
+
},
|
|
3175
|
+
tokenPath: {
|
|
3176
|
+
type: "string"
|
|
3177
|
+
},
|
|
3178
|
+
refreshPath: {
|
|
3179
|
+
type: "string"
|
|
3180
|
+
},
|
|
3181
|
+
revokePath: {
|
|
3182
|
+
type: "string"
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
required: []
|
|
3186
|
+
},
|
|
3187
|
+
tokenParams: {
|
|
3188
|
+
type: "object",
|
|
3189
|
+
properties: {},
|
|
3190
|
+
required: [],
|
|
3191
|
+
description: "Default (static) parameters to be sent with the token request.\nUsername and password should not be stored here, but rather provided\nby the hub through the `connect` rpc method.",
|
|
3192
|
+
additionalProperties: {
|
|
3193
|
+
type: "string"
|
|
3194
|
+
}
|
|
3195
|
+
},
|
|
3196
|
+
grantType: {
|
|
3197
|
+
"const": "password"
|
|
3198
|
+
},
|
|
3199
|
+
token: {
|
|
3200
|
+
type: "object",
|
|
3201
|
+
properties: {
|
|
3202
|
+
accessToken: {
|
|
3203
|
+
type: "string"
|
|
3204
|
+
},
|
|
3205
|
+
refreshToken: {
|
|
3206
|
+
oneOf: [
|
|
3207
|
+
{
|
|
3208
|
+
type: "null"
|
|
3209
|
+
},
|
|
3210
|
+
{
|
|
3211
|
+
type: "string"
|
|
3212
|
+
}
|
|
3213
|
+
]
|
|
3214
|
+
},
|
|
3215
|
+
expiresAt: {
|
|
3216
|
+
oneOf: [
|
|
3217
|
+
{
|
|
3218
|
+
type: "null"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
type: "number"
|
|
3222
|
+
}
|
|
3223
|
+
]
|
|
3224
|
+
},
|
|
3225
|
+
idToken: {
|
|
3226
|
+
type: "string"
|
|
3227
|
+
}
|
|
3228
|
+
},
|
|
3229
|
+
required: [
|
|
3230
|
+
"accessToken",
|
|
3231
|
+
"refreshToken",
|
|
3232
|
+
"expiresAt"
|
|
3233
|
+
]
|
|
3234
|
+
},
|
|
3235
|
+
error: {
|
|
3236
|
+
type: "string"
|
|
3237
|
+
}
|
|
3238
|
+
},
|
|
3239
|
+
required: []
|
|
3240
|
+
},
|
|
3241
|
+
actions: {
|
|
3242
|
+
$ref: "#/components/schemas/HttpConnectionActions"
|
|
3243
|
+
},
|
|
3244
|
+
type: {
|
|
3245
|
+
"const": "file"
|
|
3246
|
+
},
|
|
3247
|
+
host: {
|
|
3248
|
+
type: "string"
|
|
3249
|
+
},
|
|
3250
|
+
port: {
|
|
3251
|
+
oneOf: [
|
|
3252
|
+
{
|
|
3253
|
+
type: "string"
|
|
3254
|
+
},
|
|
3255
|
+
{
|
|
3256
|
+
type: "number"
|
|
3257
|
+
}
|
|
3258
|
+
]
|
|
3259
|
+
},
|
|
3260
|
+
ignoreMissing: {
|
|
3261
|
+
type: "boolean"
|
|
3262
|
+
},
|
|
3263
|
+
concurrency: {
|
|
3264
|
+
type: "number"
|
|
3265
|
+
},
|
|
3266
|
+
stabilityThreshold: {
|
|
3267
|
+
type: "number"
|
|
3268
|
+
},
|
|
3269
|
+
pollInterval: {
|
|
3270
|
+
type: "number"
|
|
3271
|
+
},
|
|
3272
|
+
listConcurrency: {
|
|
3273
|
+
type: "number"
|
|
3274
|
+
},
|
|
3275
|
+
metafile: {
|
|
3276
|
+
type: "object",
|
|
3277
|
+
properties: {
|
|
3278
|
+
content: {
|
|
3279
|
+
type: "string"
|
|
3280
|
+
}
|
|
3281
|
+
},
|
|
3282
|
+
required: []
|
|
3283
|
+
},
|
|
3284
|
+
userNotificationsEnabled: {
|
|
3285
|
+
type: "boolean"
|
|
3286
|
+
}
|
|
3287
|
+
},
|
|
3288
|
+
required: []
|
|
3289
|
+
},
|
|
3290
|
+
HttpConnectionActions: {
|
|
3291
|
+
type: "object",
|
|
3292
|
+
properties: {
|
|
3293
|
+
ping: {
|
|
3294
|
+
$ref: "#/components/schemas/FileConnectionHttpActionRecordstringunknownundefined"
|
|
3295
|
+
},
|
|
3296
|
+
head: {
|
|
3297
|
+
$ref: "#/components/schemas/FileConnectionHttpAction__typeFileConnectionHeadResponseundefined"
|
|
3298
|
+
},
|
|
3299
|
+
list: {
|
|
3300
|
+
$ref: "#/components/schemas/FileConnectionHttpAction__typeArrayFileConnectionListResponseItem"
|
|
3301
|
+
},
|
|
3302
|
+
get: {
|
|
3303
|
+
$ref: "#/components/schemas/FileConnectionHttpAction__typeundefined"
|
|
3304
|
+
},
|
|
3305
|
+
put: {
|
|
3306
|
+
$ref: "#/components/schemas/FileConnectionHttpAction__typeundefined.o1"
|
|
3307
|
+
},
|
|
3308
|
+
del: {
|
|
3309
|
+
$ref: "#/components/schemas/FileConnectionHttpAction__typeundefined.o2"
|
|
3310
|
+
}
|
|
3311
|
+
},
|
|
3312
|
+
required: []
|
|
3313
|
+
},
|
|
3314
|
+
FileConnectionHttpActionRecordstringunknownundefined: {
|
|
3315
|
+
type: "object",
|
|
3316
|
+
properties: {
|
|
3317
|
+
request: {
|
|
3318
|
+
$ref: "#/components/schemas/__type.o6"
|
|
3319
|
+
},
|
|
3320
|
+
response: {
|
|
3321
|
+
$ref: "#/components/schemas/HttpConnectionResponseHandlerundefined"
|
|
3322
|
+
}
|
|
3323
|
+
},
|
|
3324
|
+
required: []
|
|
3325
|
+
},
|
|
3326
|
+
"__type.o6": {
|
|
3327
|
+
type: "object",
|
|
3328
|
+
properties: {
|
|
3329
|
+
origin: {
|
|
3330
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedRecordstringunknownconnectionFileConnectionHttpRecord"
|
|
3331
|
+
},
|
|
3332
|
+
path: {
|
|
3333
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedRecordstringunknownconnectionFileConnectionHttpRecord"
|
|
3334
|
+
},
|
|
3335
|
+
method: {
|
|
3336
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedRecordstringunknownconnectionFileConnectionHttpRecord"
|
|
3337
|
+
},
|
|
3338
|
+
params: {
|
|
3339
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedRecordstringunknownconnectionFileConnectionHttpRecord"
|
|
3340
|
+
},
|
|
3341
|
+
form: {
|
|
3342
|
+
$ref: "#/components/schemas/NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedRecordstringunknownconnectionFileConnectionHttpRecord"
|
|
3343
|
+
},
|
|
3344
|
+
headers: {
|
|
3345
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedRecordstringunknownconnectionFileConnectionHttpRecord.o1"
|
|
3346
|
+
},
|
|
3347
|
+
throwOnError: {
|
|
3348
|
+
$ref: "#/components/schemas/NxtpressionbooleanundefinedRecordstringunknownconnectionFileConnectionHttpRecord"
|
|
3349
|
+
}
|
|
3350
|
+
},
|
|
3351
|
+
required: []
|
|
3352
|
+
},
|
|
3353
|
+
NxtpressionstringundefinedRecordstringunknownconnectionFileConnectionHttpRecord: {
|
|
3354
|
+
oneOf: [
|
|
3355
|
+
{
|
|
3356
|
+
type: "string"
|
|
3357
|
+
},
|
|
3358
|
+
{
|
|
3359
|
+
$ref: "#/components/schemas/__type.o7"
|
|
3360
|
+
}
|
|
3361
|
+
]
|
|
3362
|
+
},
|
|
3363
|
+
"__type.o7": {
|
|
3364
|
+
type: "object",
|
|
3365
|
+
properties: {
|
|
3366
|
+
__context: {
|
|
3367
|
+
$ref: "#/components/schemas/RecordstringunknownconnectionFileConnectionHttpRecord",
|
|
3368
|
+
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."
|
|
3369
|
+
},
|
|
3370
|
+
__returnValue: {
|
|
3371
|
+
type: "string",
|
|
3372
|
+
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."
|
|
3373
|
+
}
|
|
3374
|
+
},
|
|
3375
|
+
required: [
|
|
3376
|
+
"__context"
|
|
3377
|
+
]
|
|
3378
|
+
},
|
|
3379
|
+
RecordstringunknownconnectionFileConnectionHttpRecord: {
|
|
3380
|
+
type: "object",
|
|
3381
|
+
properties: {
|
|
3382
|
+
connection: {
|
|
3383
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
3384
|
+
}
|
|
3385
|
+
},
|
|
3386
|
+
required: [
|
|
3387
|
+
"connection"
|
|
3388
|
+
],
|
|
3389
|
+
additionalProperties: {}
|
|
3390
|
+
},
|
|
3391
|
+
NxtpressionkeystringstringundefinedundefinedRecordstringunknownconnectionFileConnectionHttpRecord: {
|
|
3392
|
+
oneOf: [
|
|
3393
|
+
{
|
|
3394
|
+
type: "string"
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
type: "object",
|
|
3398
|
+
properties: {},
|
|
3399
|
+
required: [],
|
|
3400
|
+
additionalProperties: {
|
|
3401
|
+
type: "string"
|
|
3402
|
+
}
|
|
3403
|
+
},
|
|
3404
|
+
{
|
|
3405
|
+
$ref: "#/components/schemas/__type.o10"
|
|
3406
|
+
}
|
|
3407
|
+
]
|
|
3408
|
+
},
|
|
3409
|
+
"__type.o10": {
|
|
3410
|
+
type: "object",
|
|
3411
|
+
properties: {
|
|
3412
|
+
__context: {
|
|
3413
|
+
$ref: "#/components/schemas/RecordstringunknownconnectionFileConnectionHttpRecord",
|
|
3414
|
+
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."
|
|
3415
|
+
},
|
|
3416
|
+
__returnValue: {
|
|
3417
|
+
type: "object",
|
|
3418
|
+
properties: {},
|
|
3419
|
+
required: [],
|
|
3420
|
+
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.",
|
|
3421
|
+
additionalProperties: {
|
|
3422
|
+
type: "string"
|
|
3423
|
+
}
|
|
3424
|
+
}
|
|
3425
|
+
},
|
|
3426
|
+
required: [
|
|
3427
|
+
"__context"
|
|
3428
|
+
]
|
|
3429
|
+
},
|
|
3430
|
+
NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedRecordstringunknownconnectionFileConnectionHttpRecord: {
|
|
3431
|
+
oneOf: [
|
|
3432
|
+
{
|
|
3433
|
+
type: "string"
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
type: "object",
|
|
3437
|
+
properties: {},
|
|
3438
|
+
required: [],
|
|
3439
|
+
additionalProperties: {
|
|
3440
|
+
type: "object",
|
|
3441
|
+
properties: {
|
|
3442
|
+
value: {},
|
|
3443
|
+
filename: {
|
|
3444
|
+
type: "string"
|
|
3445
|
+
}
|
|
3446
|
+
},
|
|
3447
|
+
required: [
|
|
3448
|
+
"value"
|
|
3449
|
+
]
|
|
3450
|
+
}
|
|
3451
|
+
},
|
|
3452
|
+
{
|
|
3453
|
+
$ref: "#/components/schemas/__type.o13"
|
|
3454
|
+
}
|
|
3455
|
+
]
|
|
3456
|
+
},
|
|
3457
|
+
"__type.o13": {
|
|
3458
|
+
type: "object",
|
|
3459
|
+
properties: {
|
|
3460
|
+
__context: {
|
|
3461
|
+
$ref: "#/components/schemas/RecordstringunknownconnectionFileConnectionHttpRecord",
|
|
3462
|
+
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."
|
|
3463
|
+
},
|
|
3464
|
+
__returnValue: {
|
|
3465
|
+
type: "object",
|
|
3466
|
+
properties: {},
|
|
3467
|
+
required: [],
|
|
3468
|
+
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.",
|
|
3469
|
+
additionalProperties: {
|
|
3470
|
+
type: "object",
|
|
3471
|
+
properties: {
|
|
3472
|
+
value: {},
|
|
3473
|
+
filename: {
|
|
3474
|
+
type: "string"
|
|
3475
|
+
}
|
|
3476
|
+
},
|
|
3477
|
+
required: [
|
|
3478
|
+
"value"
|
|
3479
|
+
]
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3482
|
+
},
|
|
3483
|
+
required: [
|
|
3484
|
+
"__context"
|
|
3485
|
+
]
|
|
3486
|
+
},
|
|
3487
|
+
"NxtpressionkeystringstringundefinedundefinedRecordstringunknownconnectionFileConnectionHttpRecord.o1": {
|
|
3488
|
+
oneOf: [
|
|
3489
|
+
{
|
|
3490
|
+
type: "string"
|
|
3491
|
+
},
|
|
3492
|
+
{
|
|
3493
|
+
type: "object",
|
|
3494
|
+
properties: {},
|
|
3495
|
+
required: [],
|
|
3496
|
+
additionalProperties: {
|
|
3497
|
+
type: "string"
|
|
3498
|
+
}
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
$ref: "#/components/schemas/__type.o15"
|
|
3502
|
+
}
|
|
3503
|
+
]
|
|
3504
|
+
},
|
|
3505
|
+
"__type.o15": {
|
|
3506
|
+
type: "object",
|
|
3507
|
+
properties: {
|
|
3508
|
+
__context: {
|
|
3509
|
+
$ref: "#/components/schemas/RecordstringunknownconnectionFileConnectionHttpRecord",
|
|
3510
|
+
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."
|
|
3511
|
+
},
|
|
3512
|
+
__returnValue: {
|
|
3513
|
+
type: "object",
|
|
3514
|
+
properties: {},
|
|
3515
|
+
required: [],
|
|
3516
|
+
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.",
|
|
3517
|
+
additionalProperties: {
|
|
3518
|
+
type: "string"
|
|
3519
|
+
}
|
|
3520
|
+
}
|
|
3521
|
+
},
|
|
3522
|
+
required: [
|
|
3523
|
+
"__context"
|
|
3524
|
+
]
|
|
3525
|
+
},
|
|
3526
|
+
NxtpressionbooleanundefinedRecordstringunknownconnectionFileConnectionHttpRecord: {
|
|
3527
|
+
oneOf: [
|
|
3528
|
+
{
|
|
3529
|
+
type: "string"
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
type: "boolean"
|
|
3533
|
+
},
|
|
3534
|
+
{
|
|
3535
|
+
$ref: "#/components/schemas/__type.o16"
|
|
3536
|
+
}
|
|
3537
|
+
]
|
|
3538
|
+
},
|
|
3539
|
+
"__type.o16": {
|
|
3540
|
+
type: "object",
|
|
3541
|
+
properties: {
|
|
3542
|
+
__context: {
|
|
3543
|
+
$ref: "#/components/schemas/RecordstringunknownconnectionFileConnectionHttpRecord",
|
|
3544
|
+
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."
|
|
3545
|
+
},
|
|
3546
|
+
__returnValue: {
|
|
3547
|
+
type: "boolean",
|
|
3548
|
+
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."
|
|
3549
|
+
}
|
|
3550
|
+
},
|
|
3551
|
+
required: [
|
|
3552
|
+
"__context"
|
|
3553
|
+
]
|
|
3554
|
+
},
|
|
3555
|
+
HttpConnectionResponseHandlerundefined: {
|
|
3556
|
+
type: "object",
|
|
3557
|
+
properties: {
|
|
3558
|
+
responseFormat: {
|
|
3559
|
+
oneOf: [
|
|
3560
|
+
{
|
|
3561
|
+
"const": "text"
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"const": "json"
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"const": "stream"
|
|
3568
|
+
}
|
|
3569
|
+
]
|
|
3570
|
+
},
|
|
3571
|
+
error: {
|
|
3572
|
+
$ref: "#/components/schemas/Nxtpressionstringnullundefined__type",
|
|
3573
|
+
description: "Resolve to an error message to indicate failure"
|
|
3574
|
+
},
|
|
3575
|
+
transform: {
|
|
3576
|
+
$ref: "#/components/schemas/Nxtpressionundefined__type",
|
|
3577
|
+
description: "Resolve to the desired output. Input will be parsed according to responseFormat."
|
|
3578
|
+
}
|
|
3579
|
+
},
|
|
3580
|
+
required: [],
|
|
3581
|
+
description: "Describes how to handle the response from an HTTP action"
|
|
3582
|
+
},
|
|
3583
|
+
Nxtpressionstringnullundefined__type: {
|
|
3584
|
+
oneOf: [
|
|
3585
|
+
{
|
|
3586
|
+
type: "null"
|
|
3587
|
+
},
|
|
3588
|
+
{
|
|
3589
|
+
type: "string"
|
|
3590
|
+
},
|
|
3591
|
+
{
|
|
3592
|
+
$ref: "#/components/schemas/__type.o17"
|
|
3593
|
+
}
|
|
3594
|
+
]
|
|
3595
|
+
},
|
|
3596
|
+
"__type.o17": {
|
|
3597
|
+
type: "object",
|
|
3598
|
+
properties: {
|
|
3599
|
+
__context: {
|
|
3600
|
+
$ref: "#/components/schemas/__type.o18",
|
|
3601
|
+
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."
|
|
3602
|
+
},
|
|
3603
|
+
__returnValue: {
|
|
3604
|
+
oneOf: [
|
|
3605
|
+
{
|
|
3606
|
+
type: "null"
|
|
3607
|
+
},
|
|
3608
|
+
{
|
|
3609
|
+
type: "string"
|
|
3610
|
+
}
|
|
3611
|
+
],
|
|
3612
|
+
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."
|
|
3613
|
+
}
|
|
3614
|
+
},
|
|
3615
|
+
required: [
|
|
3616
|
+
"__context"
|
|
3617
|
+
]
|
|
3618
|
+
},
|
|
3619
|
+
"__type.o18": {
|
|
3620
|
+
type: "object",
|
|
3621
|
+
properties: {
|
|
3622
|
+
connection: {
|
|
3623
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
3624
|
+
},
|
|
3625
|
+
headers: {
|
|
3626
|
+
$ref: "#/components/schemas/Recordstringstringstringundefined"
|
|
3627
|
+
},
|
|
3628
|
+
statusCode: {
|
|
3629
|
+
type: "number"
|
|
3630
|
+
}
|
|
3631
|
+
},
|
|
3632
|
+
required: [
|
|
3633
|
+
"connection",
|
|
3634
|
+
"headers",
|
|
3635
|
+
"statusCode"
|
|
3636
|
+
]
|
|
3637
|
+
},
|
|
3638
|
+
Recordstringstringstringundefined: {
|
|
3639
|
+
type: "object",
|
|
3640
|
+
properties: {},
|
|
3641
|
+
required: [],
|
|
3642
|
+
description: "Construct a type with a set of properties K of type T",
|
|
3643
|
+
additionalProperties: {
|
|
3644
|
+
oneOf: [
|
|
3645
|
+
{
|
|
3646
|
+
type: "string"
|
|
3647
|
+
},
|
|
3648
|
+
{
|
|
3649
|
+
type: "array",
|
|
3650
|
+
items: {
|
|
3651
|
+
type: "string"
|
|
3652
|
+
}
|
|
3653
|
+
}
|
|
3654
|
+
]
|
|
3655
|
+
}
|
|
3656
|
+
},
|
|
3657
|
+
Nxtpressionundefined__type: {
|
|
3658
|
+
oneOf: [
|
|
3659
|
+
{
|
|
3660
|
+
type: "string"
|
|
3661
|
+
},
|
|
3662
|
+
{
|
|
3663
|
+
$ref: "#/components/schemas/__type.o19"
|
|
3664
|
+
}
|
|
3665
|
+
]
|
|
3666
|
+
},
|
|
3667
|
+
"__type.o19": {
|
|
3668
|
+
type: "object",
|
|
3669
|
+
properties: {
|
|
3670
|
+
__context: {
|
|
3671
|
+
$ref: "#/components/schemas/__type.o20",
|
|
3672
|
+
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."
|
|
3673
|
+
}
|
|
3674
|
+
},
|
|
3675
|
+
required: [
|
|
3676
|
+
"__context"
|
|
3677
|
+
]
|
|
3678
|
+
},
|
|
3679
|
+
"__type.o20": {
|
|
3680
|
+
type: "object",
|
|
3681
|
+
properties: {
|
|
3682
|
+
connection: {
|
|
3683
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
3684
|
+
},
|
|
3685
|
+
json: {
|
|
3686
|
+
description: "Body parsed as JSON if responseFormat is 'json'"
|
|
3687
|
+
},
|
|
3688
|
+
text: {
|
|
3689
|
+
type: "string",
|
|
3690
|
+
description: "Body as text if responseFormat is 'text'"
|
|
3691
|
+
},
|
|
3692
|
+
headers: {
|
|
3693
|
+
$ref: "#/components/schemas/Recordstringstringstringundefined",
|
|
3694
|
+
description: "Response headers"
|
|
3695
|
+
},
|
|
3696
|
+
statusCode: {
|
|
3697
|
+
type: "number",
|
|
3698
|
+
description: "Response status code"
|
|
3699
|
+
}
|
|
3700
|
+
},
|
|
3701
|
+
required: [
|
|
3702
|
+
"connection",
|
|
3703
|
+
"headers",
|
|
3704
|
+
"statusCode"
|
|
3705
|
+
]
|
|
3706
|
+
},
|
|
3707
|
+
FileConnectionHttpAction__typeFileConnectionHeadResponseundefined: {
|
|
3708
|
+
type: "object",
|
|
3709
|
+
properties: {
|
|
3710
|
+
request: {
|
|
3711
|
+
$ref: "#/components/schemas/__type.o21"
|
|
3712
|
+
},
|
|
3713
|
+
response: {
|
|
3714
|
+
$ref: "#/components/schemas/HttpConnectionResponseHandlerFileConnectionHeadResponseundefined"
|
|
3715
|
+
}
|
|
3716
|
+
},
|
|
3717
|
+
required: []
|
|
3718
|
+
},
|
|
3719
|
+
"__type.o21": {
|
|
3720
|
+
type: "object",
|
|
3721
|
+
properties: {
|
|
3722
|
+
origin: {
|
|
3723
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedfilepathstringconnectionFileConnectionHttpRecord"
|
|
3724
|
+
},
|
|
3725
|
+
path: {
|
|
3726
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedfilepathstringconnectionFileConnectionHttpRecord"
|
|
3727
|
+
},
|
|
3728
|
+
method: {
|
|
3729
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedfilepathstringconnectionFileConnectionHttpRecord"
|
|
3730
|
+
},
|
|
3731
|
+
params: {
|
|
3732
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedfilepathstringconnectionFileConnectionHttpRecord"
|
|
3733
|
+
},
|
|
3734
|
+
form: {
|
|
3735
|
+
$ref: "#/components/schemas/NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedfilepathstringconnectionFileConnectionHttpRecord"
|
|
3736
|
+
},
|
|
3737
|
+
headers: {
|
|
3738
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedfilepathstringconnectionFileConnectionHttpRecord.o1"
|
|
3739
|
+
},
|
|
3740
|
+
throwOnError: {
|
|
3741
|
+
$ref: "#/components/schemas/NxtpressionbooleanundefinedfilepathstringconnectionFileConnectionHttpRecord"
|
|
3742
|
+
}
|
|
3743
|
+
},
|
|
3744
|
+
required: []
|
|
3745
|
+
},
|
|
3746
|
+
NxtpressionstringundefinedfilepathstringconnectionFileConnectionHttpRecord: {
|
|
3747
|
+
oneOf: [
|
|
3748
|
+
{
|
|
3749
|
+
type: "string"
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
$ref: "#/components/schemas/__type.o22"
|
|
3753
|
+
}
|
|
3754
|
+
]
|
|
3755
|
+
},
|
|
3756
|
+
"__type.o22": {
|
|
3757
|
+
type: "object",
|
|
3758
|
+
properties: {
|
|
3759
|
+
__context: {
|
|
3760
|
+
$ref: "#/components/schemas/filepathstringconnectionFileConnectionHttpRecord",
|
|
3761
|
+
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."
|
|
3762
|
+
},
|
|
3763
|
+
__returnValue: {
|
|
3764
|
+
type: "string",
|
|
3765
|
+
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."
|
|
3766
|
+
}
|
|
3767
|
+
},
|
|
3768
|
+
required: [
|
|
3769
|
+
"__context"
|
|
3770
|
+
]
|
|
3771
|
+
},
|
|
3772
|
+
filepathstringconnectionFileConnectionHttpRecord: {
|
|
3773
|
+
type: "object",
|
|
3774
|
+
properties: {
|
|
3775
|
+
filepath: {
|
|
3776
|
+
type: "string"
|
|
3777
|
+
},
|
|
3778
|
+
connection: {
|
|
3779
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
3780
|
+
}
|
|
3781
|
+
},
|
|
3782
|
+
required: [
|
|
3783
|
+
"filepath",
|
|
3784
|
+
"connection"
|
|
3785
|
+
]
|
|
3786
|
+
},
|
|
3787
|
+
NxtpressionkeystringstringundefinedundefinedfilepathstringconnectionFileConnectionHttpRecord: {
|
|
3788
|
+
oneOf: [
|
|
3789
|
+
{
|
|
3790
|
+
type: "string"
|
|
3791
|
+
},
|
|
3792
|
+
{
|
|
3793
|
+
type: "object",
|
|
3794
|
+
properties: {},
|
|
3795
|
+
required: [],
|
|
3796
|
+
additionalProperties: {
|
|
3797
|
+
type: "string"
|
|
3798
|
+
}
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
$ref: "#/components/schemas/__type.o24"
|
|
3802
|
+
}
|
|
3803
|
+
]
|
|
3804
|
+
},
|
|
3805
|
+
"__type.o24": {
|
|
3806
|
+
type: "object",
|
|
3807
|
+
properties: {
|
|
3808
|
+
__context: {
|
|
3809
|
+
$ref: "#/components/schemas/filepathstringconnectionFileConnectionHttpRecord",
|
|
3810
|
+
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."
|
|
3811
|
+
},
|
|
3812
|
+
__returnValue: {
|
|
3813
|
+
type: "object",
|
|
3814
|
+
properties: {},
|
|
3815
|
+
required: [],
|
|
3816
|
+
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.",
|
|
3817
|
+
additionalProperties: {
|
|
3818
|
+
type: "string"
|
|
3819
|
+
}
|
|
3820
|
+
}
|
|
3821
|
+
},
|
|
3822
|
+
required: [
|
|
3823
|
+
"__context"
|
|
3824
|
+
]
|
|
3825
|
+
},
|
|
3826
|
+
NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedfilepathstringconnectionFileConnectionHttpRecord: {
|
|
3827
|
+
oneOf: [
|
|
3828
|
+
{
|
|
3829
|
+
type: "string"
|
|
3830
|
+
},
|
|
3831
|
+
{
|
|
3832
|
+
type: "object",
|
|
3833
|
+
properties: {},
|
|
3834
|
+
required: [],
|
|
3835
|
+
additionalProperties: {
|
|
3836
|
+
type: "object",
|
|
3837
|
+
properties: {
|
|
3838
|
+
value: {},
|
|
3839
|
+
filename: {
|
|
3840
|
+
type: "string"
|
|
3841
|
+
}
|
|
3842
|
+
},
|
|
3843
|
+
required: [
|
|
3844
|
+
"value"
|
|
3845
|
+
]
|
|
3846
|
+
}
|
|
3847
|
+
},
|
|
3848
|
+
{
|
|
3849
|
+
$ref: "#/components/schemas/__type.o25"
|
|
3850
|
+
}
|
|
3851
|
+
]
|
|
3852
|
+
},
|
|
3853
|
+
"__type.o25": {
|
|
3854
|
+
type: "object",
|
|
3855
|
+
properties: {
|
|
3856
|
+
__context: {
|
|
3857
|
+
$ref: "#/components/schemas/filepathstringconnectionFileConnectionHttpRecord",
|
|
3858
|
+
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."
|
|
3859
|
+
},
|
|
3860
|
+
__returnValue: {
|
|
3861
|
+
type: "object",
|
|
3862
|
+
properties: {},
|
|
3863
|
+
required: [],
|
|
3864
|
+
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.",
|
|
3865
|
+
additionalProperties: {
|
|
3866
|
+
type: "object",
|
|
3867
|
+
properties: {
|
|
3868
|
+
value: {},
|
|
3869
|
+
filename: {
|
|
3870
|
+
type: "string"
|
|
3871
|
+
}
|
|
3872
|
+
},
|
|
3873
|
+
required: [
|
|
3874
|
+
"value"
|
|
3875
|
+
]
|
|
3876
|
+
}
|
|
3877
|
+
}
|
|
3878
|
+
},
|
|
3879
|
+
required: [
|
|
3880
|
+
"__context"
|
|
3881
|
+
]
|
|
3882
|
+
},
|
|
3883
|
+
"NxtpressionkeystringstringundefinedundefinedfilepathstringconnectionFileConnectionHttpRecord.o1": {
|
|
3884
|
+
oneOf: [
|
|
3885
|
+
{
|
|
3886
|
+
type: "string"
|
|
3887
|
+
},
|
|
3888
|
+
{
|
|
3889
|
+
type: "object",
|
|
3890
|
+
properties: {},
|
|
3891
|
+
required: [],
|
|
3892
|
+
additionalProperties: {
|
|
3893
|
+
type: "string"
|
|
3894
|
+
}
|
|
3895
|
+
},
|
|
3896
|
+
{
|
|
3897
|
+
$ref: "#/components/schemas/__type.o26"
|
|
3898
|
+
}
|
|
3899
|
+
]
|
|
3900
|
+
},
|
|
3901
|
+
"__type.o26": {
|
|
3902
|
+
type: "object",
|
|
3903
|
+
properties: {
|
|
3904
|
+
__context: {
|
|
3905
|
+
$ref: "#/components/schemas/filepathstringconnectionFileConnectionHttpRecord",
|
|
3906
|
+
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."
|
|
3907
|
+
},
|
|
3908
|
+
__returnValue: {
|
|
3909
|
+
type: "object",
|
|
3910
|
+
properties: {},
|
|
3911
|
+
required: [],
|
|
3912
|
+
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.",
|
|
3913
|
+
additionalProperties: {
|
|
3914
|
+
type: "string"
|
|
3915
|
+
}
|
|
3916
|
+
}
|
|
3917
|
+
},
|
|
3918
|
+
required: [
|
|
3919
|
+
"__context"
|
|
3920
|
+
]
|
|
3921
|
+
},
|
|
3922
|
+
NxtpressionbooleanundefinedfilepathstringconnectionFileConnectionHttpRecord: {
|
|
3923
|
+
oneOf: [
|
|
3924
|
+
{
|
|
3925
|
+
type: "string"
|
|
3926
|
+
},
|
|
3927
|
+
{
|
|
3928
|
+
type: "boolean"
|
|
3929
|
+
},
|
|
3930
|
+
{
|
|
3931
|
+
$ref: "#/components/schemas/__type.o27"
|
|
3932
|
+
}
|
|
3933
|
+
]
|
|
3934
|
+
},
|
|
3935
|
+
"__type.o27": {
|
|
3936
|
+
type: "object",
|
|
3937
|
+
properties: {
|
|
3938
|
+
__context: {
|
|
3939
|
+
$ref: "#/components/schemas/filepathstringconnectionFileConnectionHttpRecord",
|
|
3940
|
+
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."
|
|
3941
|
+
},
|
|
3942
|
+
__returnValue: {
|
|
3943
|
+
type: "boolean",
|
|
3944
|
+
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."
|
|
3945
|
+
}
|
|
3946
|
+
},
|
|
3947
|
+
required: [
|
|
3948
|
+
"__context"
|
|
3949
|
+
]
|
|
3950
|
+
},
|
|
3951
|
+
HttpConnectionResponseHandlerFileConnectionHeadResponseundefined: {
|
|
3952
|
+
type: "object",
|
|
3953
|
+
properties: {
|
|
3954
|
+
responseFormat: {
|
|
3955
|
+
oneOf: [
|
|
3956
|
+
{
|
|
3957
|
+
"const": "text"
|
|
3958
|
+
},
|
|
3959
|
+
{
|
|
3960
|
+
"const": "json"
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"const": "stream"
|
|
3964
|
+
}
|
|
3965
|
+
]
|
|
3966
|
+
},
|
|
3967
|
+
error: {
|
|
3968
|
+
$ref: "#/components/schemas/Nxtpressionstringnullundefined__type",
|
|
3969
|
+
description: "Resolve to an error message to indicate failure"
|
|
3970
|
+
},
|
|
3971
|
+
transform: {
|
|
3972
|
+
$ref: "#/components/schemas/NxtpressionFileConnectionHeadResponseundefined__type",
|
|
3973
|
+
description: "Resolve to the desired output. Input will be parsed according to responseFormat."
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
required: [],
|
|
3977
|
+
description: "Describes how to handle the response from an HTTP action"
|
|
3978
|
+
},
|
|
3979
|
+
NxtpressionFileConnectionHeadResponseundefined__type: {
|
|
3980
|
+
oneOf: [
|
|
3981
|
+
{
|
|
3982
|
+
type: "string"
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
$ref: "#/components/schemas/FileConnectionHeadResponse"
|
|
3986
|
+
},
|
|
3987
|
+
{
|
|
3988
|
+
$ref: "#/components/schemas/__type.o28"
|
|
3989
|
+
}
|
|
3990
|
+
]
|
|
3991
|
+
},
|
|
3992
|
+
FileConnectionHeadResponse: {
|
|
3993
|
+
type: "object",
|
|
3994
|
+
properties: {
|
|
3995
|
+
size: {
|
|
3996
|
+
type: "number"
|
|
3997
|
+
},
|
|
3998
|
+
hash: {
|
|
3999
|
+
type: "string"
|
|
4000
|
+
}
|
|
4001
|
+
},
|
|
4002
|
+
required: []
|
|
4003
|
+
},
|
|
4004
|
+
"__type.o28": {
|
|
4005
|
+
type: "object",
|
|
4006
|
+
properties: {
|
|
4007
|
+
__context: {
|
|
4008
|
+
$ref: "#/components/schemas/__type.o20",
|
|
4009
|
+
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."
|
|
4010
|
+
},
|
|
4011
|
+
__returnValue: {
|
|
4012
|
+
$ref: "#/components/schemas/FileConnectionHeadResponse",
|
|
4013
|
+
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."
|
|
4014
|
+
}
|
|
4015
|
+
},
|
|
4016
|
+
required: [
|
|
4017
|
+
"__context"
|
|
4018
|
+
]
|
|
4019
|
+
},
|
|
4020
|
+
FileConnectionHttpAction__typeArrayFileConnectionListResponseItem: {
|
|
4021
|
+
type: "object",
|
|
4022
|
+
properties: {
|
|
4023
|
+
request: {
|
|
4024
|
+
$ref: "#/components/schemas/__type.o29"
|
|
4025
|
+
},
|
|
4026
|
+
response: {
|
|
4027
|
+
$ref: "#/components/schemas/HttpConnectionResponseHandlerArrayFileConnectionListResponseItem"
|
|
4028
|
+
}
|
|
4029
|
+
},
|
|
4030
|
+
required: []
|
|
4031
|
+
},
|
|
4032
|
+
"__type.o29": {
|
|
4033
|
+
type: "object",
|
|
4034
|
+
properties: {
|
|
4035
|
+
origin: {
|
|
4036
|
+
$ref: "#/components/schemas/NxtpressionstringundefineddirpathstringundefinedconnectionFileConnectionHttpRecord"
|
|
4037
|
+
},
|
|
4038
|
+
path: {
|
|
4039
|
+
$ref: "#/components/schemas/NxtpressionstringundefineddirpathstringundefinedconnectionFileConnectionHttpRecord"
|
|
4040
|
+
},
|
|
4041
|
+
method: {
|
|
4042
|
+
$ref: "#/components/schemas/NxtpressionstringundefineddirpathstringundefinedconnectionFileConnectionHttpRecord"
|
|
4043
|
+
},
|
|
4044
|
+
params: {
|
|
4045
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefineddirpathstringundefinedconnectionFileConnectionHttpRecord"
|
|
4046
|
+
},
|
|
4047
|
+
form: {
|
|
4048
|
+
$ref: "#/components/schemas/NxtpressionnamestringvalueunknownfilenamestringundefinedundefineddirpathstringundefinedconnectionFileConnectionHttpRecord"
|
|
4049
|
+
},
|
|
4050
|
+
headers: {
|
|
4051
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefineddirpathstringundefinedconnectionFileConnectionHttpRecord.o1"
|
|
4052
|
+
},
|
|
4053
|
+
throwOnError: {
|
|
4054
|
+
$ref: "#/components/schemas/NxtpressionbooleanundefineddirpathstringundefinedconnectionFileConnectionHttpRecord"
|
|
4055
|
+
}
|
|
4056
|
+
},
|
|
4057
|
+
required: []
|
|
4058
|
+
},
|
|
4059
|
+
NxtpressionstringundefineddirpathstringundefinedconnectionFileConnectionHttpRecord: {
|
|
4060
|
+
oneOf: [
|
|
4061
|
+
{
|
|
4062
|
+
type: "string"
|
|
4063
|
+
},
|
|
4064
|
+
{
|
|
4065
|
+
$ref: "#/components/schemas/__type.o30"
|
|
4066
|
+
}
|
|
4067
|
+
]
|
|
4068
|
+
},
|
|
4069
|
+
"__type.o30": {
|
|
4070
|
+
type: "object",
|
|
4071
|
+
properties: {
|
|
4072
|
+
__context: {
|
|
4073
|
+
$ref: "#/components/schemas/dirpathstringundefinedconnectionFileConnectionHttpRecord",
|
|
4074
|
+
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."
|
|
4075
|
+
},
|
|
4076
|
+
__returnValue: {
|
|
4077
|
+
type: "string",
|
|
4078
|
+
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."
|
|
4079
|
+
}
|
|
4080
|
+
},
|
|
4081
|
+
required: [
|
|
4082
|
+
"__context"
|
|
4083
|
+
]
|
|
4084
|
+
},
|
|
4085
|
+
dirpathstringundefinedconnectionFileConnectionHttpRecord: {
|
|
4086
|
+
type: "object",
|
|
4087
|
+
properties: {
|
|
4088
|
+
dirpath: {
|
|
4089
|
+
type: "string"
|
|
4090
|
+
},
|
|
4091
|
+
connection: {
|
|
4092
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
4093
|
+
}
|
|
4094
|
+
},
|
|
4095
|
+
required: [
|
|
4096
|
+
"connection"
|
|
4097
|
+
]
|
|
4098
|
+
},
|
|
4099
|
+
NxtpressionkeystringstringundefinedundefineddirpathstringundefinedconnectionFileConnectionHttpRecord: {
|
|
4100
|
+
oneOf: [
|
|
4101
|
+
{
|
|
4102
|
+
type: "string"
|
|
4103
|
+
},
|
|
4104
|
+
{
|
|
4105
|
+
type: "object",
|
|
4106
|
+
properties: {},
|
|
4107
|
+
required: [],
|
|
4108
|
+
additionalProperties: {
|
|
4109
|
+
type: "string"
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
4112
|
+
{
|
|
4113
|
+
$ref: "#/components/schemas/__type.o32"
|
|
4114
|
+
}
|
|
4115
|
+
]
|
|
4116
|
+
},
|
|
4117
|
+
"__type.o32": {
|
|
4118
|
+
type: "object",
|
|
4119
|
+
properties: {
|
|
4120
|
+
__context: {
|
|
4121
|
+
$ref: "#/components/schemas/dirpathstringundefinedconnectionFileConnectionHttpRecord",
|
|
4122
|
+
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."
|
|
4123
|
+
},
|
|
4124
|
+
__returnValue: {
|
|
4125
|
+
type: "object",
|
|
4126
|
+
properties: {},
|
|
4127
|
+
required: [],
|
|
4128
|
+
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.",
|
|
4129
|
+
additionalProperties: {
|
|
4130
|
+
type: "string"
|
|
4131
|
+
}
|
|
4132
|
+
}
|
|
4133
|
+
},
|
|
4134
|
+
required: [
|
|
4135
|
+
"__context"
|
|
4136
|
+
]
|
|
4137
|
+
},
|
|
4138
|
+
NxtpressionnamestringvalueunknownfilenamestringundefinedundefineddirpathstringundefinedconnectionFileConnectionHttpRecord: {
|
|
4139
|
+
oneOf: [
|
|
4140
|
+
{
|
|
4141
|
+
type: "string"
|
|
4142
|
+
},
|
|
4143
|
+
{
|
|
4144
|
+
type: "object",
|
|
4145
|
+
properties: {},
|
|
4146
|
+
required: [],
|
|
4147
|
+
additionalProperties: {
|
|
4148
|
+
type: "object",
|
|
4149
|
+
properties: {
|
|
4150
|
+
value: {},
|
|
4151
|
+
filename: {
|
|
4152
|
+
type: "string"
|
|
4153
|
+
}
|
|
4154
|
+
},
|
|
4155
|
+
required: [
|
|
4156
|
+
"value"
|
|
4157
|
+
]
|
|
4158
|
+
}
|
|
4159
|
+
},
|
|
4160
|
+
{
|
|
4161
|
+
$ref: "#/components/schemas/__type.o33"
|
|
4162
|
+
}
|
|
4163
|
+
]
|
|
4164
|
+
},
|
|
4165
|
+
"__type.o33": {
|
|
4166
|
+
type: "object",
|
|
4167
|
+
properties: {
|
|
4168
|
+
__context: {
|
|
4169
|
+
$ref: "#/components/schemas/dirpathstringundefinedconnectionFileConnectionHttpRecord",
|
|
4170
|
+
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."
|
|
4171
|
+
},
|
|
4172
|
+
__returnValue: {
|
|
4173
|
+
type: "object",
|
|
4174
|
+
properties: {},
|
|
4175
|
+
required: [],
|
|
4176
|
+
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.",
|
|
4177
|
+
additionalProperties: {
|
|
4178
|
+
type: "object",
|
|
4179
|
+
properties: {
|
|
4180
|
+
value: {},
|
|
4181
|
+
filename: {
|
|
4182
|
+
type: "string"
|
|
4183
|
+
}
|
|
4184
|
+
},
|
|
4185
|
+
required: [
|
|
4186
|
+
"value"
|
|
4187
|
+
]
|
|
4188
|
+
}
|
|
4189
|
+
}
|
|
4190
|
+
},
|
|
4191
|
+
required: [
|
|
4192
|
+
"__context"
|
|
4193
|
+
]
|
|
4194
|
+
},
|
|
4195
|
+
"NxtpressionkeystringstringundefinedundefineddirpathstringundefinedconnectionFileConnectionHttpRecord.o1": {
|
|
4196
|
+
oneOf: [
|
|
4197
|
+
{
|
|
4198
|
+
type: "string"
|
|
4199
|
+
},
|
|
4200
|
+
{
|
|
4201
|
+
type: "object",
|
|
4202
|
+
properties: {},
|
|
4203
|
+
required: [],
|
|
4204
|
+
additionalProperties: {
|
|
4205
|
+
type: "string"
|
|
4206
|
+
}
|
|
4207
|
+
},
|
|
4208
|
+
{
|
|
4209
|
+
$ref: "#/components/schemas/__type.o34"
|
|
4210
|
+
}
|
|
4211
|
+
]
|
|
4212
|
+
},
|
|
4213
|
+
"__type.o34": {
|
|
4214
|
+
type: "object",
|
|
4215
|
+
properties: {
|
|
4216
|
+
__context: {
|
|
4217
|
+
$ref: "#/components/schemas/dirpathstringundefinedconnectionFileConnectionHttpRecord",
|
|
4218
|
+
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."
|
|
4219
|
+
},
|
|
4220
|
+
__returnValue: {
|
|
4221
|
+
type: "object",
|
|
4222
|
+
properties: {},
|
|
4223
|
+
required: [],
|
|
4224
|
+
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.",
|
|
4225
|
+
additionalProperties: {
|
|
4226
|
+
type: "string"
|
|
4227
|
+
}
|
|
4228
|
+
}
|
|
4229
|
+
},
|
|
4230
|
+
required: [
|
|
4231
|
+
"__context"
|
|
4232
|
+
]
|
|
4233
|
+
},
|
|
4234
|
+
NxtpressionbooleanundefineddirpathstringundefinedconnectionFileConnectionHttpRecord: {
|
|
4235
|
+
oneOf: [
|
|
4236
|
+
{
|
|
4237
|
+
type: "string"
|
|
4238
|
+
},
|
|
4239
|
+
{
|
|
4240
|
+
type: "boolean"
|
|
4241
|
+
},
|
|
4242
|
+
{
|
|
4243
|
+
$ref: "#/components/schemas/__type.o35"
|
|
4244
|
+
}
|
|
4245
|
+
]
|
|
4246
|
+
},
|
|
4247
|
+
"__type.o35": {
|
|
4248
|
+
type: "object",
|
|
4249
|
+
properties: {
|
|
4250
|
+
__context: {
|
|
4251
|
+
$ref: "#/components/schemas/dirpathstringundefinedconnectionFileConnectionHttpRecord",
|
|
4252
|
+
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."
|
|
4253
|
+
},
|
|
4254
|
+
__returnValue: {
|
|
4255
|
+
type: "boolean",
|
|
4256
|
+
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."
|
|
4257
|
+
}
|
|
4258
|
+
},
|
|
4259
|
+
required: [
|
|
4260
|
+
"__context"
|
|
4261
|
+
]
|
|
4262
|
+
},
|
|
4263
|
+
HttpConnectionResponseHandlerArrayFileConnectionListResponseItem: {
|
|
4264
|
+
type: "object",
|
|
4265
|
+
properties: {
|
|
4266
|
+
responseFormat: {
|
|
4267
|
+
oneOf: [
|
|
4268
|
+
{
|
|
4269
|
+
"const": "text"
|
|
4270
|
+
},
|
|
4271
|
+
{
|
|
4272
|
+
"const": "json"
|
|
4273
|
+
},
|
|
4274
|
+
{
|
|
4275
|
+
"const": "stream"
|
|
4276
|
+
}
|
|
4277
|
+
]
|
|
4278
|
+
},
|
|
4279
|
+
error: {
|
|
4280
|
+
$ref: "#/components/schemas/Nxtpressionstringnullundefined__type",
|
|
4281
|
+
description: "Resolve to an error message to indicate failure"
|
|
4282
|
+
},
|
|
4283
|
+
transform: {
|
|
4284
|
+
oneOf: [
|
|
4285
|
+
{
|
|
4286
|
+
type: "string"
|
|
4287
|
+
},
|
|
4288
|
+
{
|
|
4289
|
+
type: "array",
|
|
4290
|
+
items: {
|
|
4291
|
+
$ref: "#/components/schemas/FileConnectionListResponseItem"
|
|
4292
|
+
}
|
|
4293
|
+
},
|
|
4294
|
+
{
|
|
4295
|
+
$ref: "#/components/schemas/__type.o36"
|
|
4296
|
+
}
|
|
4297
|
+
],
|
|
4298
|
+
description: "Resolve to the desired output. Input will be parsed according to responseFormat."
|
|
4299
|
+
}
|
|
4300
|
+
},
|
|
4301
|
+
required: [],
|
|
4302
|
+
description: "Describes how to handle the response from an HTTP action"
|
|
4303
|
+
},
|
|
4304
|
+
FileConnectionListResponseItem: {
|
|
4305
|
+
type: "object",
|
|
4306
|
+
properties: {
|
|
4307
|
+
name: {
|
|
4308
|
+
type: "string"
|
|
4309
|
+
},
|
|
4310
|
+
isDir: {
|
|
4311
|
+
type: "boolean"
|
|
4312
|
+
},
|
|
4313
|
+
size: {
|
|
4314
|
+
type: "number"
|
|
4315
|
+
},
|
|
4316
|
+
date: {
|
|
4317
|
+
type: "string"
|
|
4318
|
+
},
|
|
4319
|
+
path: {
|
|
4320
|
+
type: "string"
|
|
4321
|
+
}
|
|
4322
|
+
},
|
|
4323
|
+
required: [
|
|
4324
|
+
"name",
|
|
4325
|
+
"isDir",
|
|
4326
|
+
"size",
|
|
4327
|
+
"path"
|
|
4328
|
+
]
|
|
4329
|
+
},
|
|
4330
|
+
"__type.o36": {
|
|
4331
|
+
type: "object",
|
|
4332
|
+
properties: {
|
|
4333
|
+
__context: {
|
|
4334
|
+
$ref: "#/components/schemas/__type.o20",
|
|
4335
|
+
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."
|
|
4336
|
+
},
|
|
4337
|
+
__returnValue: {
|
|
4338
|
+
type: "array",
|
|
4339
|
+
items: {
|
|
4340
|
+
$ref: "#/components/schemas/FileConnectionListResponseItem"
|
|
4341
|
+
},
|
|
4342
|
+
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."
|
|
4343
|
+
}
|
|
4344
|
+
},
|
|
4345
|
+
required: [
|
|
4346
|
+
"__context",
|
|
4347
|
+
"__returnValue"
|
|
4348
|
+
]
|
|
4349
|
+
},
|
|
4350
|
+
FileConnectionHttpAction__typeundefined: {
|
|
4351
|
+
type: "object",
|
|
4352
|
+
properties: {
|
|
4353
|
+
request: {
|
|
4354
|
+
$ref: "#/components/schemas/__type.o37"
|
|
4355
|
+
},
|
|
4356
|
+
response: {
|
|
4357
|
+
$ref: "#/components/schemas/HttpConnectionResponseHandlerundefined"
|
|
4358
|
+
}
|
|
4359
|
+
},
|
|
4360
|
+
required: []
|
|
4361
|
+
},
|
|
4362
|
+
"__type.o37": {
|
|
4363
|
+
type: "object",
|
|
4364
|
+
properties: {
|
|
4365
|
+
origin: {
|
|
4366
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord"
|
|
4367
|
+
},
|
|
4368
|
+
path: {
|
|
4369
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord"
|
|
4370
|
+
},
|
|
4371
|
+
method: {
|
|
4372
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord"
|
|
4373
|
+
},
|
|
4374
|
+
params: {
|
|
4375
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord"
|
|
4376
|
+
},
|
|
4377
|
+
form: {
|
|
4378
|
+
$ref: "#/components/schemas/NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord"
|
|
4379
|
+
},
|
|
4380
|
+
headers: {
|
|
4381
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord.o1"
|
|
4382
|
+
},
|
|
4383
|
+
throwOnError: {
|
|
4384
|
+
$ref: "#/components/schemas/NxtpressionbooleanundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord"
|
|
4385
|
+
}
|
|
4386
|
+
},
|
|
4387
|
+
required: []
|
|
4388
|
+
},
|
|
4389
|
+
NxtpressionstringundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord: {
|
|
4390
|
+
oneOf: [
|
|
4391
|
+
{
|
|
4392
|
+
type: "string"
|
|
4393
|
+
},
|
|
4394
|
+
{
|
|
4395
|
+
$ref: "#/components/schemas/__type.o38"
|
|
4396
|
+
}
|
|
4397
|
+
]
|
|
4398
|
+
},
|
|
4399
|
+
"__type.o38": {
|
|
4400
|
+
type: "object",
|
|
4401
|
+
properties: {
|
|
4402
|
+
__context: {
|
|
4403
|
+
$ref: "#/components/schemas/idstringoffsetnumberundefinedconnectionFileConnectionHttpRecord",
|
|
4404
|
+
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."
|
|
4405
|
+
},
|
|
4406
|
+
__returnValue: {
|
|
4407
|
+
type: "string",
|
|
4408
|
+
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."
|
|
4409
|
+
}
|
|
4410
|
+
},
|
|
4411
|
+
required: [
|
|
4412
|
+
"__context"
|
|
4413
|
+
]
|
|
4414
|
+
},
|
|
4415
|
+
idstringoffsetnumberundefinedconnectionFileConnectionHttpRecord: {
|
|
4416
|
+
type: "object",
|
|
4417
|
+
properties: {
|
|
4418
|
+
id: {
|
|
4419
|
+
type: "string"
|
|
4420
|
+
},
|
|
4421
|
+
offset: {
|
|
4422
|
+
type: "number"
|
|
4423
|
+
},
|
|
4424
|
+
connection: {
|
|
4425
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
4426
|
+
}
|
|
4427
|
+
},
|
|
4428
|
+
required: [
|
|
4429
|
+
"id",
|
|
4430
|
+
"connection"
|
|
4431
|
+
]
|
|
4432
|
+
},
|
|
4433
|
+
NxtpressionkeystringstringundefinedundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord: {
|
|
4434
|
+
oneOf: [
|
|
4435
|
+
{
|
|
4436
|
+
type: "string"
|
|
4437
|
+
},
|
|
4438
|
+
{
|
|
4439
|
+
type: "object",
|
|
4440
|
+
properties: {},
|
|
4441
|
+
required: [],
|
|
4442
|
+
additionalProperties: {
|
|
4443
|
+
type: "string"
|
|
4444
|
+
}
|
|
4445
|
+
},
|
|
4446
|
+
{
|
|
4447
|
+
$ref: "#/components/schemas/__type.o40"
|
|
4448
|
+
}
|
|
4449
|
+
]
|
|
4450
|
+
},
|
|
4451
|
+
"__type.o40": {
|
|
4452
|
+
type: "object",
|
|
4453
|
+
properties: {
|
|
4454
|
+
__context: {
|
|
4455
|
+
$ref: "#/components/schemas/idstringoffsetnumberundefinedconnectionFileConnectionHttpRecord",
|
|
4456
|
+
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."
|
|
4457
|
+
},
|
|
4458
|
+
__returnValue: {
|
|
4459
|
+
type: "object",
|
|
4460
|
+
properties: {},
|
|
4461
|
+
required: [],
|
|
4462
|
+
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.",
|
|
4463
|
+
additionalProperties: {
|
|
4464
|
+
type: "string"
|
|
4465
|
+
}
|
|
4466
|
+
}
|
|
4467
|
+
},
|
|
4468
|
+
required: [
|
|
4469
|
+
"__context"
|
|
4470
|
+
]
|
|
4471
|
+
},
|
|
4472
|
+
NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord: {
|
|
4473
|
+
oneOf: [
|
|
4474
|
+
{
|
|
4475
|
+
type: "string"
|
|
4476
|
+
},
|
|
4477
|
+
{
|
|
4478
|
+
type: "object",
|
|
4479
|
+
properties: {},
|
|
4480
|
+
required: [],
|
|
4481
|
+
additionalProperties: {
|
|
4482
|
+
type: "object",
|
|
4483
|
+
properties: {
|
|
4484
|
+
value: {},
|
|
4485
|
+
filename: {
|
|
4486
|
+
type: "string"
|
|
4487
|
+
}
|
|
4488
|
+
},
|
|
4489
|
+
required: [
|
|
4490
|
+
"value"
|
|
4491
|
+
]
|
|
4492
|
+
}
|
|
4493
|
+
},
|
|
4494
|
+
{
|
|
4495
|
+
$ref: "#/components/schemas/__type.o41"
|
|
4496
|
+
}
|
|
4497
|
+
]
|
|
4498
|
+
},
|
|
4499
|
+
"__type.o41": {
|
|
4500
|
+
type: "object",
|
|
4501
|
+
properties: {
|
|
4502
|
+
__context: {
|
|
4503
|
+
$ref: "#/components/schemas/idstringoffsetnumberundefinedconnectionFileConnectionHttpRecord",
|
|
4504
|
+
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."
|
|
4505
|
+
},
|
|
4506
|
+
__returnValue: {
|
|
4507
|
+
type: "object",
|
|
4508
|
+
properties: {},
|
|
4509
|
+
required: [],
|
|
4510
|
+
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.",
|
|
4511
|
+
additionalProperties: {
|
|
4512
|
+
type: "object",
|
|
4513
|
+
properties: {
|
|
4514
|
+
value: {},
|
|
4515
|
+
filename: {
|
|
4516
|
+
type: "string"
|
|
4517
|
+
}
|
|
4518
|
+
},
|
|
4519
|
+
required: [
|
|
4520
|
+
"value"
|
|
4521
|
+
]
|
|
4522
|
+
}
|
|
4523
|
+
}
|
|
4524
|
+
},
|
|
4525
|
+
required: [
|
|
4526
|
+
"__context"
|
|
4527
|
+
]
|
|
4528
|
+
},
|
|
4529
|
+
"NxtpressionkeystringstringundefinedundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord.o1": {
|
|
4530
|
+
oneOf: [
|
|
4531
|
+
{
|
|
4532
|
+
type: "string"
|
|
4533
|
+
},
|
|
4534
|
+
{
|
|
4535
|
+
type: "object",
|
|
4536
|
+
properties: {},
|
|
4537
|
+
required: [],
|
|
4538
|
+
additionalProperties: {
|
|
4539
|
+
type: "string"
|
|
4540
|
+
}
|
|
4541
|
+
},
|
|
4542
|
+
{
|
|
4543
|
+
$ref: "#/components/schemas/__type.o42"
|
|
4544
|
+
}
|
|
4545
|
+
]
|
|
4546
|
+
},
|
|
4547
|
+
"__type.o42": {
|
|
4548
|
+
type: "object",
|
|
4549
|
+
properties: {
|
|
4550
|
+
__context: {
|
|
4551
|
+
$ref: "#/components/schemas/idstringoffsetnumberundefinedconnectionFileConnectionHttpRecord",
|
|
4552
|
+
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."
|
|
4553
|
+
},
|
|
4554
|
+
__returnValue: {
|
|
4555
|
+
type: "object",
|
|
4556
|
+
properties: {},
|
|
4557
|
+
required: [],
|
|
4558
|
+
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.",
|
|
4559
|
+
additionalProperties: {
|
|
4560
|
+
type: "string"
|
|
4561
|
+
}
|
|
4562
|
+
}
|
|
4563
|
+
},
|
|
4564
|
+
required: [
|
|
4565
|
+
"__context"
|
|
4566
|
+
]
|
|
4567
|
+
},
|
|
4568
|
+
NxtpressionbooleanundefinedidstringoffsetnumberundefinedconnectionFileConnectionHttpRecord: {
|
|
4569
|
+
oneOf: [
|
|
4570
|
+
{
|
|
4571
|
+
type: "string"
|
|
4572
|
+
},
|
|
4573
|
+
{
|
|
4574
|
+
type: "boolean"
|
|
4575
|
+
},
|
|
4576
|
+
{
|
|
4577
|
+
$ref: "#/components/schemas/__type.o43"
|
|
4578
|
+
}
|
|
4579
|
+
]
|
|
4580
|
+
},
|
|
4581
|
+
"__type.o43": {
|
|
4582
|
+
type: "object",
|
|
4583
|
+
properties: {
|
|
4584
|
+
__context: {
|
|
4585
|
+
$ref: "#/components/schemas/idstringoffsetnumberundefinedconnectionFileConnectionHttpRecord",
|
|
4586
|
+
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."
|
|
4587
|
+
},
|
|
4588
|
+
__returnValue: {
|
|
4589
|
+
type: "boolean",
|
|
4590
|
+
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."
|
|
4591
|
+
}
|
|
4592
|
+
},
|
|
4593
|
+
required: [
|
|
4594
|
+
"__context"
|
|
4595
|
+
]
|
|
4596
|
+
},
|
|
4597
|
+
"FileConnectionHttpAction__typeundefined.o1": {
|
|
4598
|
+
type: "object",
|
|
4599
|
+
properties: {
|
|
4600
|
+
request: {
|
|
4601
|
+
$ref: "#/components/schemas/__type.o44"
|
|
4602
|
+
},
|
|
4603
|
+
response: {
|
|
4604
|
+
$ref: "#/components/schemas/HttpConnectionResponseHandlerundefined"
|
|
4605
|
+
}
|
|
4606
|
+
},
|
|
4607
|
+
required: []
|
|
4608
|
+
},
|
|
4609
|
+
"__type.o44": {
|
|
4610
|
+
type: "object",
|
|
4611
|
+
properties: {
|
|
4612
|
+
origin: {
|
|
4613
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord"
|
|
4614
|
+
},
|
|
4615
|
+
path: {
|
|
4616
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord"
|
|
4617
|
+
},
|
|
4618
|
+
method: {
|
|
4619
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord"
|
|
4620
|
+
},
|
|
4621
|
+
params: {
|
|
4622
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord"
|
|
4623
|
+
},
|
|
4624
|
+
form: {
|
|
4625
|
+
$ref: "#/components/schemas/NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord"
|
|
4626
|
+
},
|
|
4627
|
+
headers: {
|
|
4628
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord.o1"
|
|
4629
|
+
},
|
|
4630
|
+
throwOnError: {
|
|
4631
|
+
$ref: "#/components/schemas/NxtpressionbooleanundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord"
|
|
4632
|
+
}
|
|
4633
|
+
},
|
|
4634
|
+
required: []
|
|
4635
|
+
},
|
|
4636
|
+
NxtpressionstringundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord: {
|
|
4637
|
+
oneOf: [
|
|
4638
|
+
{
|
|
4639
|
+
type: "string"
|
|
4640
|
+
},
|
|
4641
|
+
{
|
|
4642
|
+
$ref: "#/components/schemas/__type.o45"
|
|
4643
|
+
}
|
|
4644
|
+
]
|
|
4645
|
+
},
|
|
4646
|
+
"__type.o45": {
|
|
4647
|
+
type: "object",
|
|
4648
|
+
properties: {
|
|
4649
|
+
__context: {
|
|
4650
|
+
$ref: "#/components/schemas/filepathstringstreamunknownconnectionFileConnectionHttpRecord",
|
|
4651
|
+
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."
|
|
4652
|
+
},
|
|
4653
|
+
__returnValue: {
|
|
4654
|
+
type: "string",
|
|
4655
|
+
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."
|
|
4656
|
+
}
|
|
4657
|
+
},
|
|
4658
|
+
required: [
|
|
4659
|
+
"__context"
|
|
4660
|
+
]
|
|
4661
|
+
},
|
|
4662
|
+
filepathstringstreamunknownconnectionFileConnectionHttpRecord: {
|
|
4663
|
+
type: "object",
|
|
4664
|
+
properties: {
|
|
4665
|
+
filepath: {
|
|
4666
|
+
type: "string"
|
|
4667
|
+
},
|
|
4668
|
+
stream: {},
|
|
4669
|
+
connection: {
|
|
4670
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
4671
|
+
}
|
|
4672
|
+
},
|
|
4673
|
+
required: [
|
|
4674
|
+
"filepath",
|
|
4675
|
+
"stream",
|
|
4676
|
+
"connection"
|
|
4677
|
+
]
|
|
4678
|
+
},
|
|
4679
|
+
NxtpressionkeystringstringundefinedundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord: {
|
|
4680
|
+
oneOf: [
|
|
4681
|
+
{
|
|
4682
|
+
type: "string"
|
|
4683
|
+
},
|
|
4684
|
+
{
|
|
4685
|
+
type: "object",
|
|
4686
|
+
properties: {},
|
|
4687
|
+
required: [],
|
|
4688
|
+
additionalProperties: {
|
|
4689
|
+
type: "string"
|
|
4690
|
+
}
|
|
4691
|
+
},
|
|
4692
|
+
{
|
|
4693
|
+
$ref: "#/components/schemas/__type.o47"
|
|
4694
|
+
}
|
|
4695
|
+
]
|
|
4696
|
+
},
|
|
4697
|
+
"__type.o47": {
|
|
4698
|
+
type: "object",
|
|
4699
|
+
properties: {
|
|
4700
|
+
__context: {
|
|
4701
|
+
$ref: "#/components/schemas/filepathstringstreamunknownconnectionFileConnectionHttpRecord",
|
|
4702
|
+
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."
|
|
4703
|
+
},
|
|
4704
|
+
__returnValue: {
|
|
4705
|
+
type: "object",
|
|
4706
|
+
properties: {},
|
|
4707
|
+
required: [],
|
|
4708
|
+
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.",
|
|
4709
|
+
additionalProperties: {
|
|
4710
|
+
type: "string"
|
|
4711
|
+
}
|
|
4712
|
+
}
|
|
4713
|
+
},
|
|
4714
|
+
required: [
|
|
4715
|
+
"__context"
|
|
4716
|
+
]
|
|
4717
|
+
},
|
|
4718
|
+
NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord: {
|
|
4719
|
+
oneOf: [
|
|
4720
|
+
{
|
|
4721
|
+
type: "string"
|
|
4722
|
+
},
|
|
4723
|
+
{
|
|
4724
|
+
type: "object",
|
|
4725
|
+
properties: {},
|
|
4726
|
+
required: [],
|
|
4727
|
+
additionalProperties: {
|
|
4728
|
+
type: "object",
|
|
4729
|
+
properties: {
|
|
4730
|
+
value: {},
|
|
4731
|
+
filename: {
|
|
4732
|
+
type: "string"
|
|
4733
|
+
}
|
|
4734
|
+
},
|
|
4735
|
+
required: [
|
|
4736
|
+
"value"
|
|
4737
|
+
]
|
|
4738
|
+
}
|
|
4739
|
+
},
|
|
4740
|
+
{
|
|
4741
|
+
$ref: "#/components/schemas/__type.o48"
|
|
4742
|
+
}
|
|
4743
|
+
]
|
|
4744
|
+
},
|
|
4745
|
+
"__type.o48": {
|
|
4746
|
+
type: "object",
|
|
4747
|
+
properties: {
|
|
4748
|
+
__context: {
|
|
4749
|
+
$ref: "#/components/schemas/filepathstringstreamunknownconnectionFileConnectionHttpRecord",
|
|
4750
|
+
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."
|
|
4751
|
+
},
|
|
4752
|
+
__returnValue: {
|
|
4753
|
+
type: "object",
|
|
4754
|
+
properties: {},
|
|
4755
|
+
required: [],
|
|
4756
|
+
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.",
|
|
4757
|
+
additionalProperties: {
|
|
4758
|
+
type: "object",
|
|
4759
|
+
properties: {
|
|
4760
|
+
value: {},
|
|
4761
|
+
filename: {
|
|
4762
|
+
type: "string"
|
|
4763
|
+
}
|
|
4764
|
+
},
|
|
4765
|
+
required: [
|
|
4766
|
+
"value"
|
|
4767
|
+
]
|
|
4768
|
+
}
|
|
4769
|
+
}
|
|
4770
|
+
},
|
|
4771
|
+
required: [
|
|
4772
|
+
"__context"
|
|
4773
|
+
]
|
|
4774
|
+
},
|
|
4775
|
+
"NxtpressionkeystringstringundefinedundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord.o1": {
|
|
4776
|
+
oneOf: [
|
|
4777
|
+
{
|
|
4778
|
+
type: "string"
|
|
4779
|
+
},
|
|
4780
|
+
{
|
|
4781
|
+
type: "object",
|
|
4782
|
+
properties: {},
|
|
4783
|
+
required: [],
|
|
4784
|
+
additionalProperties: {
|
|
4785
|
+
type: "string"
|
|
4786
|
+
}
|
|
4787
|
+
},
|
|
4788
|
+
{
|
|
4789
|
+
$ref: "#/components/schemas/__type.o49"
|
|
4790
|
+
}
|
|
4791
|
+
]
|
|
4792
|
+
},
|
|
4793
|
+
"__type.o49": {
|
|
4794
|
+
type: "object",
|
|
4795
|
+
properties: {
|
|
4796
|
+
__context: {
|
|
4797
|
+
$ref: "#/components/schemas/filepathstringstreamunknownconnectionFileConnectionHttpRecord",
|
|
4798
|
+
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."
|
|
4799
|
+
},
|
|
4800
|
+
__returnValue: {
|
|
4801
|
+
type: "object",
|
|
4802
|
+
properties: {},
|
|
4803
|
+
required: [],
|
|
4804
|
+
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.",
|
|
4805
|
+
additionalProperties: {
|
|
4806
|
+
type: "string"
|
|
4807
|
+
}
|
|
4808
|
+
}
|
|
4809
|
+
},
|
|
4810
|
+
required: [
|
|
4811
|
+
"__context"
|
|
4812
|
+
]
|
|
4813
|
+
},
|
|
4814
|
+
NxtpressionbooleanundefinedfilepathstringstreamunknownconnectionFileConnectionHttpRecord: {
|
|
4815
|
+
oneOf: [
|
|
4816
|
+
{
|
|
4817
|
+
type: "string"
|
|
4818
|
+
},
|
|
4819
|
+
{
|
|
4820
|
+
type: "boolean"
|
|
4821
|
+
},
|
|
4822
|
+
{
|
|
4823
|
+
$ref: "#/components/schemas/__type.o50"
|
|
4824
|
+
}
|
|
4825
|
+
]
|
|
4826
|
+
},
|
|
4827
|
+
"__type.o50": {
|
|
4828
|
+
type: "object",
|
|
4829
|
+
properties: {
|
|
4830
|
+
__context: {
|
|
4831
|
+
$ref: "#/components/schemas/filepathstringstreamunknownconnectionFileConnectionHttpRecord",
|
|
4832
|
+
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."
|
|
4833
|
+
},
|
|
4834
|
+
__returnValue: {
|
|
4835
|
+
type: "boolean",
|
|
4836
|
+
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."
|
|
4837
|
+
}
|
|
4838
|
+
},
|
|
4839
|
+
required: [
|
|
4840
|
+
"__context"
|
|
4841
|
+
]
|
|
4842
|
+
},
|
|
4843
|
+
"FileConnectionHttpAction__typeundefined.o2": {
|
|
4844
|
+
type: "object",
|
|
4845
|
+
properties: {
|
|
4846
|
+
request: {
|
|
4847
|
+
$ref: "#/components/schemas/__type.o51"
|
|
4848
|
+
},
|
|
4849
|
+
response: {
|
|
4850
|
+
$ref: "#/components/schemas/HttpConnectionResponseHandlerundefined"
|
|
4851
|
+
}
|
|
4852
|
+
},
|
|
4853
|
+
required: []
|
|
4854
|
+
},
|
|
4855
|
+
"__type.o51": {
|
|
4856
|
+
type: "object",
|
|
4857
|
+
properties: {
|
|
4858
|
+
origin: {
|
|
4859
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedidstringconnectionFileConnectionHttpRecord"
|
|
4860
|
+
},
|
|
4861
|
+
path: {
|
|
4862
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedidstringconnectionFileConnectionHttpRecord"
|
|
4863
|
+
},
|
|
4864
|
+
method: {
|
|
4865
|
+
$ref: "#/components/schemas/NxtpressionstringundefinedidstringconnectionFileConnectionHttpRecord"
|
|
4866
|
+
},
|
|
4867
|
+
params: {
|
|
4868
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedidstringconnectionFileConnectionHttpRecord"
|
|
4869
|
+
},
|
|
4870
|
+
form: {
|
|
4871
|
+
$ref: "#/components/schemas/NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedidstringconnectionFileConnectionHttpRecord"
|
|
4872
|
+
},
|
|
4873
|
+
headers: {
|
|
4874
|
+
$ref: "#/components/schemas/NxtpressionkeystringstringundefinedundefinedidstringconnectionFileConnectionHttpRecord.o1"
|
|
4875
|
+
},
|
|
4876
|
+
throwOnError: {
|
|
4877
|
+
$ref: "#/components/schemas/NxtpressionbooleanundefinedidstringconnectionFileConnectionHttpRecord"
|
|
4878
|
+
}
|
|
4879
|
+
},
|
|
4880
|
+
required: []
|
|
4881
|
+
},
|
|
4882
|
+
NxtpressionstringundefinedidstringconnectionFileConnectionHttpRecord: {
|
|
4883
|
+
oneOf: [
|
|
4884
|
+
{
|
|
4885
|
+
type: "string"
|
|
4886
|
+
},
|
|
4887
|
+
{
|
|
4888
|
+
$ref: "#/components/schemas/__type.o52"
|
|
4889
|
+
}
|
|
4890
|
+
]
|
|
4891
|
+
},
|
|
4892
|
+
"__type.o52": {
|
|
4893
|
+
type: "object",
|
|
4894
|
+
properties: {
|
|
4895
|
+
__context: {
|
|
4896
|
+
$ref: "#/components/schemas/idstringconnectionFileConnectionHttpRecord",
|
|
4897
|
+
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."
|
|
4898
|
+
},
|
|
4899
|
+
__returnValue: {
|
|
4900
|
+
type: "string",
|
|
4901
|
+
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."
|
|
4902
|
+
}
|
|
4903
|
+
},
|
|
4904
|
+
required: [
|
|
4905
|
+
"__context"
|
|
4906
|
+
]
|
|
4907
|
+
},
|
|
4908
|
+
idstringconnectionFileConnectionHttpRecord: {
|
|
4909
|
+
type: "object",
|
|
4910
|
+
properties: {
|
|
4911
|
+
id: {
|
|
4912
|
+
type: "string"
|
|
4913
|
+
},
|
|
4914
|
+
connection: {
|
|
4915
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
4916
|
+
}
|
|
4917
|
+
},
|
|
4918
|
+
required: [
|
|
4919
|
+
"id",
|
|
4920
|
+
"connection"
|
|
4921
|
+
]
|
|
4922
|
+
},
|
|
4923
|
+
NxtpressionkeystringstringundefinedundefinedidstringconnectionFileConnectionHttpRecord: {
|
|
4924
|
+
oneOf: [
|
|
4925
|
+
{
|
|
4926
|
+
type: "string"
|
|
4927
|
+
},
|
|
4928
|
+
{
|
|
4929
|
+
type: "object",
|
|
4930
|
+
properties: {},
|
|
4931
|
+
required: [],
|
|
4932
|
+
additionalProperties: {
|
|
4933
|
+
type: "string"
|
|
4934
|
+
}
|
|
4935
|
+
},
|
|
4936
|
+
{
|
|
4937
|
+
$ref: "#/components/schemas/__type.o54"
|
|
4938
|
+
}
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
4941
|
+
"__type.o54": {
|
|
4942
|
+
type: "object",
|
|
4943
|
+
properties: {
|
|
4944
|
+
__context: {
|
|
4945
|
+
$ref: "#/components/schemas/idstringconnectionFileConnectionHttpRecord",
|
|
4946
|
+
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."
|
|
4947
|
+
},
|
|
4948
|
+
__returnValue: {
|
|
4949
|
+
type: "object",
|
|
4950
|
+
properties: {},
|
|
4951
|
+
required: [],
|
|
4952
|
+
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.",
|
|
4953
|
+
additionalProperties: {
|
|
4954
|
+
type: "string"
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4957
|
+
},
|
|
4958
|
+
required: [
|
|
4959
|
+
"__context"
|
|
4960
|
+
]
|
|
4961
|
+
},
|
|
4962
|
+
NxtpressionnamestringvalueunknownfilenamestringundefinedundefinedidstringconnectionFileConnectionHttpRecord: {
|
|
4963
|
+
oneOf: [
|
|
4964
|
+
{
|
|
4965
|
+
type: "string"
|
|
4966
|
+
},
|
|
4967
|
+
{
|
|
4968
|
+
type: "object",
|
|
4969
|
+
properties: {},
|
|
4970
|
+
required: [],
|
|
4971
|
+
additionalProperties: {
|
|
4972
|
+
type: "object",
|
|
4973
|
+
properties: {
|
|
4974
|
+
value: {},
|
|
4975
|
+
filename: {
|
|
4976
|
+
type: "string"
|
|
4977
|
+
}
|
|
4978
|
+
},
|
|
4979
|
+
required: [
|
|
4980
|
+
"value"
|
|
4981
|
+
]
|
|
4982
|
+
}
|
|
4983
|
+
},
|
|
4984
|
+
{
|
|
4985
|
+
$ref: "#/components/schemas/__type.o55"
|
|
4986
|
+
}
|
|
4987
|
+
]
|
|
4988
|
+
},
|
|
4989
|
+
"__type.o55": {
|
|
4990
|
+
type: "object",
|
|
4991
|
+
properties: {
|
|
4992
|
+
__context: {
|
|
4993
|
+
$ref: "#/components/schemas/idstringconnectionFileConnectionHttpRecord",
|
|
4994
|
+
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."
|
|
4995
|
+
},
|
|
4996
|
+
__returnValue: {
|
|
4997
|
+
type: "object",
|
|
4998
|
+
properties: {},
|
|
4999
|
+
required: [],
|
|
5000
|
+
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.",
|
|
5001
|
+
additionalProperties: {
|
|
5002
|
+
type: "object",
|
|
5003
|
+
properties: {
|
|
5004
|
+
value: {},
|
|
5005
|
+
filename: {
|
|
5006
|
+
type: "string"
|
|
5007
|
+
}
|
|
5008
|
+
},
|
|
5009
|
+
required: [
|
|
5010
|
+
"value"
|
|
5011
|
+
]
|
|
5012
|
+
}
|
|
5013
|
+
}
|
|
5014
|
+
},
|
|
5015
|
+
required: [
|
|
5016
|
+
"__context"
|
|
5017
|
+
]
|
|
5018
|
+
},
|
|
5019
|
+
"NxtpressionkeystringstringundefinedundefinedidstringconnectionFileConnectionHttpRecord.o1": {
|
|
5020
|
+
oneOf: [
|
|
5021
|
+
{
|
|
5022
|
+
type: "string"
|
|
5023
|
+
},
|
|
5024
|
+
{
|
|
5025
|
+
type: "object",
|
|
5026
|
+
properties: {},
|
|
5027
|
+
required: [],
|
|
5028
|
+
additionalProperties: {
|
|
5029
|
+
type: "string"
|
|
5030
|
+
}
|
|
3053
5031
|
},
|
|
3054
|
-
|
|
3055
|
-
|
|
5032
|
+
{
|
|
5033
|
+
$ref: "#/components/schemas/__type.o56"
|
|
5034
|
+
}
|
|
5035
|
+
]
|
|
5036
|
+
},
|
|
5037
|
+
"__type.o56": {
|
|
5038
|
+
type: "object",
|
|
5039
|
+
properties: {
|
|
5040
|
+
__context: {
|
|
5041
|
+
$ref: "#/components/schemas/idstringconnectionFileConnectionHttpRecord",
|
|
5042
|
+
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."
|
|
3056
5043
|
},
|
|
3057
|
-
|
|
5044
|
+
__returnValue: {
|
|
5045
|
+
type: "object",
|
|
5046
|
+
properties: {},
|
|
5047
|
+
required: [],
|
|
5048
|
+
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.",
|
|
5049
|
+
additionalProperties: {
|
|
5050
|
+
type: "string"
|
|
5051
|
+
}
|
|
5052
|
+
}
|
|
5053
|
+
},
|
|
5054
|
+
required: [
|
|
5055
|
+
"__context"
|
|
5056
|
+
]
|
|
5057
|
+
},
|
|
5058
|
+
NxtpressionbooleanundefinedidstringconnectionFileConnectionHttpRecord: {
|
|
5059
|
+
oneOf: [
|
|
5060
|
+
{
|
|
3058
5061
|
type: "string"
|
|
3059
5062
|
},
|
|
3060
|
-
|
|
3061
|
-
"const": "file"
|
|
3062
|
-
},
|
|
3063
|
-
port: {
|
|
3064
|
-
oneOf: [
|
|
3065
|
-
{
|
|
3066
|
-
type: "string"
|
|
3067
|
-
},
|
|
3068
|
-
{
|
|
3069
|
-
type: "number"
|
|
3070
|
-
}
|
|
3071
|
-
]
|
|
3072
|
-
},
|
|
3073
|
-
ignoreMissing: {
|
|
5063
|
+
{
|
|
3074
5064
|
type: "boolean"
|
|
3075
5065
|
},
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
}
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
},
|
|
3088
|
-
metafile: {
|
|
3089
|
-
type: "object",
|
|
3090
|
-
properties: {
|
|
3091
|
-
content: {
|
|
3092
|
-
type: "string"
|
|
3093
|
-
}
|
|
3094
|
-
},
|
|
3095
|
-
required: [
|
|
3096
|
-
"content"
|
|
3097
|
-
]
|
|
5066
|
+
{
|
|
5067
|
+
$ref: "#/components/schemas/__type.o57"
|
|
5068
|
+
}
|
|
5069
|
+
]
|
|
5070
|
+
},
|
|
5071
|
+
"__type.o57": {
|
|
5072
|
+
type: "object",
|
|
5073
|
+
properties: {
|
|
5074
|
+
__context: {
|
|
5075
|
+
$ref: "#/components/schemas/idstringconnectionFileConnectionHttpRecord",
|
|
5076
|
+
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."
|
|
3098
5077
|
},
|
|
3099
|
-
|
|
3100
|
-
type: "boolean"
|
|
5078
|
+
__returnValue: {
|
|
5079
|
+
type: "boolean",
|
|
5080
|
+
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."
|
|
3101
5081
|
}
|
|
3102
5082
|
},
|
|
3103
5083
|
required: [
|
|
3104
|
-
"
|
|
3105
|
-
"host",
|
|
3106
|
-
"type"
|
|
5084
|
+
"__context"
|
|
3107
5085
|
]
|
|
3108
5086
|
},
|
|
3109
5087
|
FileConnectionS3Record: {
|
|
@@ -3154,18 +5132,13 @@ function _schemasDomainRecord(domain) {
|
|
|
3154
5132
|
type: "string"
|
|
3155
5133
|
}
|
|
3156
5134
|
},
|
|
3157
|
-
required: [
|
|
3158
|
-
"content"
|
|
3159
|
-
]
|
|
5135
|
+
required: []
|
|
3160
5136
|
},
|
|
3161
5137
|
userNotificationsEnabled: {
|
|
3162
5138
|
type: "boolean"
|
|
3163
5139
|
}
|
|
3164
5140
|
},
|
|
3165
|
-
required: [
|
|
3166
|
-
"protocol",
|
|
3167
|
-
"type"
|
|
3168
|
-
]
|
|
5141
|
+
required: []
|
|
3169
5142
|
},
|
|
3170
5143
|
FileConnectionSmbRecord: {
|
|
3171
5144
|
type: "object",
|
|
@@ -3223,20 +5196,13 @@ function _schemasDomainRecord(domain) {
|
|
|
3223
5196
|
type: "string"
|
|
3224
5197
|
}
|
|
3225
5198
|
},
|
|
3226
|
-
required: [
|
|
3227
|
-
"content"
|
|
3228
|
-
]
|
|
5199
|
+
required: []
|
|
3229
5200
|
},
|
|
3230
5201
|
userNotificationsEnabled: {
|
|
3231
5202
|
type: "boolean"
|
|
3232
5203
|
}
|
|
3233
5204
|
},
|
|
3234
|
-
required: [
|
|
3235
|
-
"protocol",
|
|
3236
|
-
"host",
|
|
3237
|
-
"share",
|
|
3238
|
-
"type"
|
|
3239
|
-
]
|
|
5205
|
+
required: []
|
|
3240
5206
|
},
|
|
3241
5207
|
FileConnectionSftpRecord: {
|
|
3242
5208
|
type: "object",
|
|
@@ -3316,19 +5282,13 @@ function _schemasDomainRecord(domain) {
|
|
|
3316
5282
|
type: "string"
|
|
3317
5283
|
}
|
|
3318
5284
|
},
|
|
3319
|
-
required: [
|
|
3320
|
-
"content"
|
|
3321
|
-
]
|
|
5285
|
+
required: []
|
|
3322
5286
|
},
|
|
3323
5287
|
userNotificationsEnabled: {
|
|
3324
5288
|
type: "boolean"
|
|
3325
5289
|
}
|
|
3326
5290
|
},
|
|
3327
|
-
required: [
|
|
3328
|
-
"protocol",
|
|
3329
|
-
"host",
|
|
3330
|
-
"type"
|
|
3331
|
-
]
|
|
5291
|
+
required: []
|
|
3332
5292
|
},
|
|
3333
5293
|
FacebookConnectionRecord: {
|
|
3334
5294
|
type: "object",
|
|
@@ -3346,9 +5306,7 @@ function _schemasDomainRecord(domain) {
|
|
|
3346
5306
|
type: "boolean"
|
|
3347
5307
|
}
|
|
3348
5308
|
},
|
|
3349
|
-
required: [
|
|
3350
|
-
"type"
|
|
3351
|
-
]
|
|
5309
|
+
required: []
|
|
3352
5310
|
},
|
|
3353
5311
|
ReutersConnectionRecord: {
|
|
3354
5312
|
type: "object",
|
|
@@ -3369,9 +5327,7 @@ function _schemasDomainRecord(domain) {
|
|
|
3369
5327
|
type: "boolean"
|
|
3370
5328
|
}
|
|
3371
5329
|
},
|
|
3372
|
-
required: [
|
|
3373
|
-
"type"
|
|
3374
|
-
]
|
|
5330
|
+
required: []
|
|
3375
5331
|
},
|
|
3376
5332
|
EmptyConnectionRecord: {
|
|
3377
5333
|
type: "object",
|
|
@@ -3383,9 +5339,7 @@ function _schemasDomainRecord(domain) {
|
|
|
3383
5339
|
type: "boolean"
|
|
3384
5340
|
}
|
|
3385
5341
|
},
|
|
3386
|
-
required: [
|
|
3387
|
-
"type"
|
|
3388
|
-
]
|
|
5342
|
+
required: []
|
|
3389
5343
|
}
|
|
3390
5344
|
}
|
|
3391
5345
|
},
|
|
@@ -3395,6 +5349,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3395
5349
|
{
|
|
3396
5350
|
$ref: "#/components/schemas/FileConnectionFtpRecord"
|
|
3397
5351
|
},
|
|
5352
|
+
{
|
|
5353
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
5354
|
+
},
|
|
3398
5355
|
{
|
|
3399
5356
|
$ref: "#/components/schemas/FileConnectionS3Record"
|
|
3400
5357
|
},
|
|
@@ -7065,30 +9022,6 @@ function _schemasDomainRecord(domain) {
|
|
|
7065
9022
|
type: {
|
|
7066
9023
|
type: "null"
|
|
7067
9024
|
},
|
|
7068
|
-
asset: {
|
|
7069
|
-
oneOf: [
|
|
7070
|
-
{
|
|
7071
|
-
type: "null"
|
|
7072
|
-
},
|
|
7073
|
-
{
|
|
7074
|
-
type: "string"
|
|
7075
|
-
}
|
|
7076
|
-
]
|
|
7077
|
-
}
|
|
7078
|
-
},
|
|
7079
|
-
required: [
|
|
7080
|
-
"type"
|
|
7081
|
-
]
|
|
7082
|
-
},
|
|
7083
|
-
FacebookPublishRecord: {
|
|
7084
|
-
type: "object",
|
|
7085
|
-
properties: {
|
|
7086
|
-
type: {
|
|
7087
|
-
"const": "facebook"
|
|
7088
|
-
},
|
|
7089
|
-
pageId: {
|
|
7090
|
-
type: "string"
|
|
7091
|
-
},
|
|
7092
9025
|
asset: {
|
|
7093
9026
|
oneOf: [
|
|
7094
9027
|
{
|
|
@@ -7133,9 +9066,7 @@ function _schemasDomainRecord(domain) {
|
|
|
7133
9066
|
}
|
|
7134
9067
|
}
|
|
7135
9068
|
},
|
|
7136
|
-
required: [
|
|
7137
|
-
"type"
|
|
7138
|
-
]
|
|
9069
|
+
required: []
|
|
7139
9070
|
},
|
|
7140
9071
|
PublishRenderBase: {
|
|
7141
9072
|
type: "object",
|
|
@@ -7447,6 +9378,61 @@ function _schemasDomainRecord(domain) {
|
|
|
7447
9378
|
"msg"
|
|
7448
9379
|
]
|
|
7449
9380
|
},
|
|
9381
|
+
FacebookPublishRecord: {
|
|
9382
|
+
type: "object",
|
|
9383
|
+
properties: {
|
|
9384
|
+
type: {
|
|
9385
|
+
"const": "facebook"
|
|
9386
|
+
},
|
|
9387
|
+
pageId: {
|
|
9388
|
+
type: "string"
|
|
9389
|
+
},
|
|
9390
|
+
asset: {
|
|
9391
|
+
oneOf: [
|
|
9392
|
+
{
|
|
9393
|
+
type: "null"
|
|
9394
|
+
},
|
|
9395
|
+
{
|
|
9396
|
+
type: "string"
|
|
9397
|
+
}
|
|
9398
|
+
]
|
|
9399
|
+
},
|
|
9400
|
+
connection: {
|
|
9401
|
+
type: "string"
|
|
9402
|
+
},
|
|
9403
|
+
render: {
|
|
9404
|
+
$ref: "#/components/schemas/PublishRenderBase"
|
|
9405
|
+
},
|
|
9406
|
+
draft: {},
|
|
9407
|
+
published: {},
|
|
9408
|
+
remote: {},
|
|
9409
|
+
error: {
|
|
9410
|
+
oneOf: [
|
|
9411
|
+
{
|
|
9412
|
+
type: "null"
|
|
9413
|
+
},
|
|
9414
|
+
{
|
|
9415
|
+
type: "object",
|
|
9416
|
+
properties: {
|
|
9417
|
+
method: {
|
|
9418
|
+
type: "string"
|
|
9419
|
+
}
|
|
9420
|
+
},
|
|
9421
|
+
required: [
|
|
9422
|
+
"method"
|
|
9423
|
+
]
|
|
9424
|
+
}
|
|
9425
|
+
]
|
|
9426
|
+
},
|
|
9427
|
+
messages: {
|
|
9428
|
+
type: "array",
|
|
9429
|
+
items: {
|
|
9430
|
+
$ref: "#/components/schemas/Message"
|
|
9431
|
+
}
|
|
9432
|
+
}
|
|
9433
|
+
},
|
|
9434
|
+
required: []
|
|
9435
|
+
},
|
|
7450
9436
|
FilePublishRecordLegacy: {
|
|
7451
9437
|
type: "object",
|
|
7452
9438
|
properties: {
|
|
@@ -7509,9 +9495,7 @@ function _schemasDomainRecord(domain) {
|
|
|
7509
9495
|
}
|
|
7510
9496
|
}
|
|
7511
9497
|
},
|
|
7512
|
-
required: [
|
|
7513
|
-
"type"
|
|
7514
|
-
]
|
|
9498
|
+
required: []
|
|
7515
9499
|
},
|
|
7516
9500
|
FilePublishDraft: {
|
|
7517
9501
|
type: "object",
|
|
@@ -7648,9 +9632,7 @@ function _schemasDomainRecord(domain) {
|
|
|
7648
9632
|
}
|
|
7649
9633
|
}
|
|
7650
9634
|
},
|
|
7651
|
-
required: [
|
|
7652
|
-
"type"
|
|
7653
|
-
]
|
|
9635
|
+
required: []
|
|
7654
9636
|
},
|
|
7655
9637
|
RecordstringFilePublishRender: {
|
|
7656
9638
|
type: "object",
|
|
@@ -7872,9 +9854,7 @@ function _schemasDomainRecord(domain) {
|
|
|
7872
9854
|
}
|
|
7873
9855
|
}
|
|
7874
9856
|
},
|
|
7875
|
-
required: [
|
|
7876
|
-
"type"
|
|
7877
|
-
]
|
|
9857
|
+
required: []
|
|
7878
9858
|
}
|
|
7879
9859
|
}
|
|
7880
9860
|
},
|
|
@@ -8423,9 +10403,7 @@ function _schemasDomainRecord(domain) {
|
|
|
8423
10403
|
}
|
|
8424
10404
|
}
|
|
8425
10405
|
},
|
|
8426
|
-
required: [
|
|
8427
|
-
"type"
|
|
8428
|
-
]
|
|
10406
|
+
required: []
|
|
8429
10407
|
},
|
|
8430
10408
|
FilePublishDraft: {
|
|
8431
10409
|
type: "object",
|
|
@@ -11536,6 +13514,85 @@ function _schemasDomainRecord(domain) {
|
|
|
11536
13514
|
},
|
|
11537
13515
|
required: []
|
|
11538
13516
|
}
|
|
13517
|
+
},
|
|
13518
|
+
overridableProperties: {
|
|
13519
|
+
type: "array",
|
|
13520
|
+
items: {
|
|
13521
|
+
oneOf: [
|
|
13522
|
+
{
|
|
13523
|
+
type: "null"
|
|
13524
|
+
},
|
|
13525
|
+
{
|
|
13526
|
+
"const": "name"
|
|
13527
|
+
},
|
|
13528
|
+
{
|
|
13529
|
+
"const": "fontname"
|
|
13530
|
+
},
|
|
13531
|
+
{
|
|
13532
|
+
"const": "fontsize"
|
|
13533
|
+
},
|
|
13534
|
+
{
|
|
13535
|
+
"const": "primaryColour"
|
|
13536
|
+
},
|
|
13537
|
+
{
|
|
13538
|
+
"const": "secondaryColour"
|
|
13539
|
+
},
|
|
13540
|
+
{
|
|
13541
|
+
"const": "outlineColour"
|
|
13542
|
+
},
|
|
13543
|
+
{
|
|
13544
|
+
"const": "backColour"
|
|
13545
|
+
},
|
|
13546
|
+
{
|
|
13547
|
+
"const": "bold"
|
|
13548
|
+
},
|
|
13549
|
+
{
|
|
13550
|
+
"const": "italic"
|
|
13551
|
+
},
|
|
13552
|
+
{
|
|
13553
|
+
"const": "underline"
|
|
13554
|
+
},
|
|
13555
|
+
{
|
|
13556
|
+
"const": "strikeOut"
|
|
13557
|
+
},
|
|
13558
|
+
{
|
|
13559
|
+
"const": "scaleX"
|
|
13560
|
+
},
|
|
13561
|
+
{
|
|
13562
|
+
"const": "scaleY"
|
|
13563
|
+
},
|
|
13564
|
+
{
|
|
13565
|
+
"const": "spacing"
|
|
13566
|
+
},
|
|
13567
|
+
{
|
|
13568
|
+
"const": "angle"
|
|
13569
|
+
},
|
|
13570
|
+
{
|
|
13571
|
+
"const": "borderStyle"
|
|
13572
|
+
},
|
|
13573
|
+
{
|
|
13574
|
+
"const": "outline"
|
|
13575
|
+
},
|
|
13576
|
+
{
|
|
13577
|
+
"const": "shadow"
|
|
13578
|
+
},
|
|
13579
|
+
{
|
|
13580
|
+
"const": "alignment"
|
|
13581
|
+
},
|
|
13582
|
+
{
|
|
13583
|
+
"const": "marginL"
|
|
13584
|
+
},
|
|
13585
|
+
{
|
|
13586
|
+
"const": "marginR"
|
|
13587
|
+
},
|
|
13588
|
+
{
|
|
13589
|
+
"const": "marginV"
|
|
13590
|
+
},
|
|
13591
|
+
{
|
|
13592
|
+
"const": "encoding"
|
|
13593
|
+
}
|
|
13594
|
+
]
|
|
13595
|
+
}
|
|
11539
13596
|
}
|
|
11540
13597
|
},
|
|
11541
13598
|
required: []
|