@nxtedition/types 23.0.54 → 23.0.55

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