@nxtedition/types 23.0.35 → 23.0.38

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/schema.json CHANGED
@@ -1277,6 +1277,9 @@
1277
1277
  ":media.updateSubtitles?": {
1278
1278
  "$ref": "#/definitions/Record<string,unknown>"
1279
1279
  },
1280
+ ":monitor.stats?": {
1281
+ "$ref": "#/definitions/MonitorStatsRecord"
1282
+ },
1280
1283
  ":panel": {
1281
1284
  "$ref": "#/definitions/PanelDomainPanelRecord"
1282
1285
  },
@@ -1328,6 +1331,9 @@
1328
1331
  ":render.result?": {
1329
1332
  "$ref": "#/definitions/RenderDomainResultRecord"
1330
1333
  },
1334
+ ":render.schedulers?": {
1335
+ "$ref": "#/definitions/RenderDomainSchedulersRecord"
1336
+ },
1331
1337
  ":render.stats?": {
1332
1338
  "$ref": "#/definitions/RenderDomainStatsRecord"
1333
1339
  },
@@ -1442,6 +1448,7 @@
1442
1448
  ":media.transcriptChanges",
1443
1449
  ":media.updateGraphics?",
1444
1450
  ":media.updateSubtitles?",
1451
+ ":monitor.stats?",
1445
1452
  ":panel",
1446
1453
  ":permission",
1447
1454
  ":permission?",
@@ -1459,6 +1466,7 @@
1459
1466
  ":render-preset",
1460
1467
  ":render.query?",
1461
1468
  ":render.result?",
1469
+ ":render.schedulers?",
1462
1470
  ":render.stats?",
1463
1471
  ":revs?",
1464
1472
  ":role.tags",
@@ -1552,6 +1560,7 @@
1552
1560
  ":media.transcriptChanges",
1553
1561
  ":media.updateGraphics?",
1554
1562
  ":media.updateSubtitles?",
1563
+ ":monitor.stats?",
1555
1564
  ":panel",
1556
1565
  ":permission",
1557
1566
  ":permission?",
@@ -1569,6 +1578,7 @@
1569
1578
  ":render-preset",
1570
1579
  ":render.query?",
1571
1580
  ":render.result?",
1581
+ ":render.schedulers?",
1572
1582
  ":render.stats?",
1573
1583
  ":revs?",
1574
1584
  ":role.tags",
@@ -3765,115 +3775,792 @@
3765
3775
  ],
3766
3776
  "type": "object"
3767
3777
  },
3768
- "MoveOperation": {
3778
+ "MonitorStatsBuddyInfo": {
3769
3779
  "additionalProperties": false,
3770
3780
  "properties": {
3771
- "from": {
3772
- "type": "string"
3781
+ "high": {
3782
+ "items": {
3783
+ "type": "number"
3784
+ },
3785
+ "type": "array"
3773
3786
  },
3774
- "op": {
3775
- "const": "move",
3776
- "type": "string"
3787
+ "normal": {
3788
+ "items": {
3789
+ "type": "number"
3790
+ },
3791
+ "type": "array"
3777
3792
  },
3778
- "path": {
3779
- "type": "string"
3793
+ "timestamp": {
3794
+ "type": "number"
3780
3795
  }
3781
3796
  },
3782
3797
  "required": [
3783
- "from",
3784
- "op",
3785
- "path"
3798
+ "timestamp"
3786
3799
  ],
3787
3800
  "type": "object"
3788
3801
  },
3789
- "NotificationReason": {
3790
- "enum": [
3791
- "always",
3792
- "assigned",
3793
- "author",
3794
- "mentioned",
3795
- "participated"
3796
- ],
3797
- "type": "string"
3802
+ "MonitorStatsMemInfo": {
3803
+ "additionalProperties": {
3804
+ "type": [
3805
+ "string",
3806
+ "number",
3807
+ "boolean"
3808
+ ]
3809
+ },
3810
+ "type": "object"
3798
3811
  },
3799
- "NxtError": {
3812
+ "MonitorStatsNetworkInfo": {
3800
3813
  "additionalProperties": false,
3801
3814
  "properties": {
3802
- "cause": {
3803
- "$ref": "#/definitions/NxtError"
3804
- },
3805
- "code": {
3806
- "type": "string"
3807
- },
3808
- "data": {
3809
- "additionalProperties": true,
3810
- "properties": {},
3811
- "type": "object"
3812
- },
3813
- "errors": {
3815
+ "bonding": {
3814
3816
  "items": {
3815
- "$ref": "#/definitions/NxtError"
3817
+ "additionalProperties": false,
3818
+ "properties": {
3819
+ "name": {
3820
+ "type": "string"
3821
+ },
3822
+ "rxBytes": {
3823
+ "type": "number"
3824
+ },
3825
+ "rxBytesOrigin": {
3826
+ "type": "number"
3827
+ },
3828
+ "rxBytesSec": {
3829
+ "type": "number"
3830
+ },
3831
+ "rxBytesValue": {
3832
+ "type": "number"
3833
+ },
3834
+ "rxDropped": {
3835
+ "type": "number"
3836
+ },
3837
+ "rxDroppedOrigin": {
3838
+ "type": "number"
3839
+ },
3840
+ "rxDroppedSec": {
3841
+ "type": "number"
3842
+ },
3843
+ "rxDroppedValue": {
3844
+ "type": "number"
3845
+ },
3846
+ "rxErrors": {
3847
+ "type": "number"
3848
+ },
3849
+ "rxErrorsOrigin": {
3850
+ "type": "number"
3851
+ },
3852
+ "rxErrorsSec": {
3853
+ "type": "number"
3854
+ },
3855
+ "rxErrorsValue": {
3856
+ "type": "number"
3857
+ },
3858
+ "rxPackets": {
3859
+ "type": "number"
3860
+ },
3861
+ "rxPacketsOrigin": {
3862
+ "type": "number"
3863
+ },
3864
+ "rxPacketsSec": {
3865
+ "type": "number"
3866
+ },
3867
+ "rxPacketsValue": {
3868
+ "type": "number"
3869
+ },
3870
+ "slaves": {
3871
+ "items": {
3872
+ "type": "string"
3873
+ },
3874
+ "type": "array"
3875
+ },
3876
+ "timestamp": {
3877
+ "type": "number"
3878
+ },
3879
+ "txBytes": {
3880
+ "type": "number"
3881
+ },
3882
+ "txBytesOrigin": {
3883
+ "type": "number"
3884
+ },
3885
+ "txBytesSec": {
3886
+ "type": "number"
3887
+ },
3888
+ "txBytesValue": {
3889
+ "type": "number"
3890
+ },
3891
+ "txDropped": {
3892
+ "type": "number"
3893
+ },
3894
+ "txDroppedOrigin": {
3895
+ "type": "number"
3896
+ },
3897
+ "txDroppedSec": {
3898
+ "type": "number"
3899
+ },
3900
+ "txDroppedValue": {
3901
+ "type": "number"
3902
+ },
3903
+ "txErrors": {
3904
+ "type": "number"
3905
+ },
3906
+ "txErrorsOrigin": {
3907
+ "type": "number"
3908
+ },
3909
+ "txErrorsSec": {
3910
+ "type": "number"
3911
+ },
3912
+ "txErrorsValue": {
3913
+ "type": "number"
3914
+ }
3915
+ },
3916
+ "required": [
3917
+ "name",
3918
+ "slaves"
3919
+ ],
3920
+ "type": "object"
3816
3921
  },
3817
3922
  "type": "array"
3818
3923
  },
3819
- "exitCode": {
3820
- "type": "number"
3821
- },
3822
- "headers": {
3823
- "$ref": "#/definitions/Record<string,string>"
3824
- },
3825
- "message": {
3826
- "type": "string"
3827
- },
3828
- "signalCode": {
3829
- "type": "number"
3830
- },
3831
- "statusCode": {
3832
- "type": "number"
3924
+ "eth": {
3925
+ "items": {
3926
+ "additionalProperties": false,
3927
+ "properties": {
3928
+ "name": {
3929
+ "type": "string"
3930
+ },
3931
+ "rxBroadcastBytes": {
3932
+ "type": "number"
3933
+ },
3934
+ "rxBytes": {
3935
+ "type": "number"
3936
+ },
3937
+ "rxBytesOrigin": {
3938
+ "type": "number"
3939
+ },
3940
+ "rxBytesSec": {
3941
+ "type": "number"
3942
+ },
3943
+ "rxBytesValue": {
3944
+ "type": "number"
3945
+ },
3946
+ "rxDropped": {
3947
+ "type": "number"
3948
+ },
3949
+ "rxDroppedOrigin": {
3950
+ "type": "number"
3951
+ },
3952
+ "rxDroppedSec": {
3953
+ "type": "number"
3954
+ },
3955
+ "rxDroppedValue": {
3956
+ "type": "number"
3957
+ },
3958
+ "rxErrors": {
3959
+ "type": "number"
3960
+ },
3961
+ "rxErrorsOrigin": {
3962
+ "type": "number"
3963
+ },
3964
+ "rxErrorsSec": {
3965
+ "type": "number"
3966
+ },
3967
+ "rxErrorsValue": {
3968
+ "type": "number"
3969
+ },
3970
+ "rxMulticastBytes": {
3971
+ "type": "number"
3972
+ },
3973
+ "rxPackets": {
3974
+ "type": "number"
3975
+ },
3976
+ "rxPacketsOrigin": {
3977
+ "type": "number"
3978
+ },
3979
+ "rxPacketsSec": {
3980
+ "type": "number"
3981
+ },
3982
+ "rxPacketsValue": {
3983
+ "type": "number"
3984
+ },
3985
+ "rxUnicastBytes": {
3986
+ "type": "number"
3987
+ },
3988
+ "speed": {
3989
+ "type": "number"
3990
+ },
3991
+ "timestamp": {
3992
+ "type": "number"
3993
+ },
3994
+ "txBytes": {
3995
+ "type": "number"
3996
+ },
3997
+ "txBytesOrigin": {
3998
+ "type": "number"
3999
+ },
4000
+ "txBytesSec": {
4001
+ "type": "number"
4002
+ },
4003
+ "txBytesValue": {
4004
+ "type": "number"
4005
+ },
4006
+ "txDropped": {
4007
+ "type": "number"
4008
+ },
4009
+ "txDroppedOrigin": {
4010
+ "type": "number"
4011
+ },
4012
+ "txDroppedSec": {
4013
+ "type": "number"
4014
+ },
4015
+ "txDroppedValue": {
4016
+ "type": "number"
4017
+ },
4018
+ "txErrors": {
4019
+ "type": "number"
4020
+ },
4021
+ "txErrorsOrigin": {
4022
+ "type": "number"
4023
+ },
4024
+ "txErrorsSec": {
4025
+ "type": "number"
4026
+ },
4027
+ "txErrorsValue": {
4028
+ "type": "number"
4029
+ }
4030
+ },
4031
+ "required": [
4032
+ "name"
4033
+ ],
4034
+ "type": "object"
4035
+ },
4036
+ "type": "array"
3833
4037
  },
3834
- "type": {
3835
- "type": "string"
3836
- }
3837
- },
3838
- "required": [
3839
- "message"
3840
- ],
3841
- "type": "object"
3842
- },
3843
- "Nxtpression": {
3844
- "anyOf": [
3845
- {
4038
+ "sockstat": {
3846
4039
  "additionalProperties": false,
3847
4040
  "properties": {
3848
- "__context": {
3849
- "additionalProperties": true,
3850
- "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.",
3851
- "properties": {},
3852
- "type": "object"
4041
+ "frag": {
4042
+ "$ref": "#/definitions/Record<string,unknown>"
3853
4043
  },
3854
- "__returnValue": {
3855
- "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.",
3856
- "type": "string"
4044
+ "raw": {
4045
+ "$ref": "#/definitions/Record<string,unknown>"
3857
4046
  },
3858
- "length": {
4047
+ "sockets": {
4048
+ "$ref": "#/definitions/Record<string,unknown>"
4049
+ },
4050
+ "tcp": {
4051
+ "$ref": "#/definitions/Record<string,unknown>"
4052
+ },
4053
+ "timestamp": {
3859
4054
  "type": "number"
4055
+ },
4056
+ "udp": {
4057
+ "$ref": "#/definitions/Record<string,unknown>"
4058
+ },
4059
+ "udplite": {
4060
+ "$ref": "#/definitions/Record<string,unknown>"
3860
4061
  }
3861
4062
  },
3862
4063
  "required": [
3863
- "__context",
3864
- "__returnValue",
3865
- "length"
4064
+ "timestamp"
3866
4065
  ],
3867
4066
  "type": "object"
3868
4067
  },
3869
- {
3870
- "type": "string"
3871
- }
3872
- ]
3873
- },
3874
- "Nxtpression<Record<string,unknown>,{id:string;}>": {
3875
- "anyOf": [
3876
- {
4068
+ "softnet": {
4069
+ "additionalProperties": false,
4070
+ "properties": {
4071
+ "cpus": {
4072
+ "items": {
4073
+ "additionalProperties": false,
4074
+ "properties": {
4075
+ "cpu": {
4076
+ "type": "number"
4077
+ },
4078
+ "dropped": {
4079
+ "type": "number"
4080
+ },
4081
+ "processed": {
4082
+ "type": "number"
4083
+ },
4084
+ "squeezed": {
4085
+ "type": "number"
4086
+ }
4087
+ },
4088
+ "required": [
4089
+ "cpu"
4090
+ ],
4091
+ "type": "object"
4092
+ },
4093
+ "type": "array"
4094
+ },
4095
+ "processed": {
4096
+ "type": "number"
4097
+ },
4098
+ "processedDay": {
4099
+ "type": "number"
4100
+ },
4101
+ "processedHour": {
4102
+ "type": "number"
4103
+ },
4104
+ "processedMinute": {
4105
+ "type": "number"
4106
+ },
4107
+ "squeezed": {
4108
+ "type": "number"
4109
+ },
4110
+ "squeezedDay": {
4111
+ "type": "number"
4112
+ },
4113
+ "squeezedHour": {
4114
+ "type": "number"
4115
+ },
4116
+ "timestamp": {
4117
+ "type": "number"
4118
+ }
4119
+ },
4120
+ "required": [
4121
+ "cpus",
4122
+ "timestamp"
4123
+ ],
4124
+ "type": "object"
4125
+ }
4126
+ },
4127
+ "required": [
4128
+ "bonding",
4129
+ "eth",
4130
+ "sockstat",
4131
+ "softnet"
4132
+ ],
4133
+ "type": "object"
4134
+ },
4135
+ "MonitorStatsProcInfo": {
4136
+ "additionalProperties": false,
4137
+ "properties": {
4138
+ "active": {
4139
+ "type": "number"
4140
+ },
4141
+ "blocked": {
4142
+ "type": "number"
4143
+ },
4144
+ "bootTime": {
4145
+ "type": "number"
4146
+ },
4147
+ "cmdline": {},
4148
+ "contextSwitches": {
4149
+ "type": "number"
4150
+ },
4151
+ "cpu": {
4152
+ "$ref": "#/definitions/MonitorStatsProcInfoCpu"
4153
+ },
4154
+ "cpus": {
4155
+ "items": {
4156
+ "$ref": "#/definitions/MonitorStatsProcInfoCpu"
4157
+ },
4158
+ "type": "array"
4159
+ },
4160
+ "idle": {
4161
+ "type": "number"
4162
+ },
4163
+ "interrupts": {
4164
+ "items": {
4165
+ "type": "number"
4166
+ },
4167
+ "type": "array"
4168
+ },
4169
+ "load": {
4170
+ "items": {
4171
+ "type": "number"
4172
+ },
4173
+ "type": "array"
4174
+ },
4175
+ "processes": {
4176
+ "type": "number"
4177
+ },
4178
+ "running": {
4179
+ "type": "number"
4180
+ },
4181
+ "softirqs": {},
4182
+ "threads": {
4183
+ "type": "number"
4184
+ },
4185
+ "timestamp": {
4186
+ "type": "number"
4187
+ },
4188
+ "total": {
4189
+ "type": "number"
4190
+ },
4191
+ "utilization": {
4192
+ "type": "number"
4193
+ }
4194
+ },
4195
+ "required": [
4196
+ "active",
4197
+ "blocked",
4198
+ "bootTime",
4199
+ "cmdline",
4200
+ "contextSwitches",
4201
+ "cpu",
4202
+ "idle",
4203
+ "load",
4204
+ "processes",
4205
+ "running",
4206
+ "softirqs",
4207
+ "threads",
4208
+ "timestamp",
4209
+ "total",
4210
+ "utilization"
4211
+ ],
4212
+ "type": "object"
4213
+ },
4214
+ "MonitorStatsProcInfoCpu": {
4215
+ "additionalProperties": {
4216
+ "type": [
4217
+ "string",
4218
+ "number",
4219
+ "boolean"
4220
+ ]
4221
+ },
4222
+ "type": "object"
4223
+ },
4224
+ "MonitorStatsRecord": {
4225
+ "additionalProperties": false,
4226
+ "properties": {
4227
+ "buddyinfo": {
4228
+ "$ref": "#/definitions/MonitorStatsBuddyInfo"
4229
+ },
4230
+ "gpu": {},
4231
+ "meminfo": {
4232
+ "$ref": "#/definitions/MonitorStatsMemInfo"
4233
+ },
4234
+ "net": {
4235
+ "$ref": "#/definitions/MonitorStatsNetworkInfo"
4236
+ },
4237
+ "proc": {
4238
+ "$ref": "#/definitions/MonitorStatsProcInfo"
4239
+ },
4240
+ "var": {
4241
+ "additionalProperties": false,
4242
+ "properties": {
4243
+ "available": {
4244
+ "type": "number"
4245
+ },
4246
+ "timestamp": {
4247
+ "type": "number"
4248
+ },
4249
+ "used": {
4250
+ "type": "number"
4251
+ }
4252
+ },
4253
+ "required": [
4254
+ "available",
4255
+ "timestamp",
4256
+ "used"
4257
+ ],
4258
+ "type": "object"
4259
+ }
4260
+ },
4261
+ "required": [
4262
+ "buddyinfo",
4263
+ "gpu",
4264
+ "meminfo",
4265
+ "net",
4266
+ "proc",
4267
+ "var"
4268
+ ],
4269
+ "type": "object"
4270
+ },
4271
+ "MoveOperation": {
4272
+ "additionalProperties": false,
4273
+ "properties": {
4274
+ "from": {
4275
+ "type": "string"
4276
+ },
4277
+ "op": {
4278
+ "const": "move",
4279
+ "type": "string"
4280
+ },
4281
+ "path": {
4282
+ "type": "string"
4283
+ }
4284
+ },
4285
+ "required": [
4286
+ "from",
4287
+ "op",
4288
+ "path"
4289
+ ],
4290
+ "type": "object"
4291
+ },
4292
+ "NotificationReason": {
4293
+ "enum": [
4294
+ "always",
4295
+ "assigned",
4296
+ "author",
4297
+ "mentioned",
4298
+ "participated"
4299
+ ],
4300
+ "type": "string"
4301
+ },
4302
+ "NxtError": {
4303
+ "additionalProperties": false,
4304
+ "properties": {
4305
+ "cause": {
4306
+ "$ref": "#/definitions/NxtError"
4307
+ },
4308
+ "code": {
4309
+ "type": "string"
4310
+ },
4311
+ "data": {
4312
+ "additionalProperties": true,
4313
+ "properties": {},
4314
+ "type": "object"
4315
+ },
4316
+ "errors": {
4317
+ "items": {
4318
+ "$ref": "#/definitions/NxtError"
4319
+ },
4320
+ "type": "array"
4321
+ },
4322
+ "exitCode": {
4323
+ "type": "number"
4324
+ },
4325
+ "headers": {
4326
+ "$ref": "#/definitions/Record<string,string>"
4327
+ },
4328
+ "message": {
4329
+ "type": "string"
4330
+ },
4331
+ "signalCode": {
4332
+ "type": "number"
4333
+ },
4334
+ "statusCode": {
4335
+ "type": "number"
4336
+ },
4337
+ "type": {
4338
+ "type": "string"
4339
+ }
4340
+ },
4341
+ "required": [
4342
+ "message"
4343
+ ],
4344
+ "type": "object"
4345
+ },
4346
+ "NxtStatusNode": {
4347
+ "additionalProperties": false,
4348
+ "properties": {
4349
+ "address": {
4350
+ "type": "string"
4351
+ },
4352
+ "availability": {
4353
+ "type": "string"
4354
+ },
4355
+ "classes": {
4356
+ "items": {
4357
+ "type": "string"
4358
+ },
4359
+ "type": "array"
4360
+ },
4361
+ "leader": {
4362
+ "type": "boolean"
4363
+ },
4364
+ "level": {
4365
+ "type": "number"
4366
+ },
4367
+ "messages": {
4368
+ "items": {
4369
+ "additionalProperties": false,
4370
+ "properties": {
4371
+ "level": {
4372
+ "type": "number"
4373
+ },
4374
+ "msg": {
4375
+ "type": "string"
4376
+ }
4377
+ },
4378
+ "required": [
4379
+ "level",
4380
+ "msg"
4381
+ ],
4382
+ "type": "object"
4383
+ },
4384
+ "type": "array"
4385
+ },
4386
+ "role": {
4387
+ "type": "string"
4388
+ },
4389
+ "state": {
4390
+ "type": "string"
4391
+ },
4392
+ "status": {
4393
+ "type": "string"
4394
+ }
4395
+ },
4396
+ "required": [
4397
+ "level",
4398
+ "messages",
4399
+ "status"
4400
+ ],
4401
+ "type": "object"
4402
+ },
4403
+ "NxtStatusRecord": {
4404
+ "additionalProperties": false,
4405
+ "properties": {
4406
+ "level": {
4407
+ "type": "number"
4408
+ },
4409
+ "nodes": {
4410
+ "additionalProperties": {
4411
+ "$ref": "#/definitions/NxtStatusNode"
4412
+ },
4413
+ "type": "object"
4414
+ },
4415
+ "services": {
4416
+ "additionalProperties": {
4417
+ "$ref": "#/definitions/NxtStatusService"
4418
+ },
4419
+ "type": "object"
4420
+ },
4421
+ "status": {
4422
+ "type": "string"
4423
+ }
4424
+ },
4425
+ "required": [
4426
+ "level",
4427
+ "nodes",
4428
+ "services",
4429
+ "status"
4430
+ ],
4431
+ "type": "object"
4432
+ },
4433
+ "NxtStatusService": {
4434
+ "additionalProperties": false,
4435
+ "properties": {
4436
+ "image": {
4437
+ "type": "string"
4438
+ },
4439
+ "level": {
4440
+ "type": "number"
4441
+ },
4442
+ "messages": {
4443
+ "items": {
4444
+ "additionalProperties": false,
4445
+ "properties": {
4446
+ "level": {
4447
+ "type": "number"
4448
+ },
4449
+ "msg": {
4450
+ "type": "string"
4451
+ }
4452
+ },
4453
+ "required": [
4454
+ "level",
4455
+ "msg"
4456
+ ],
4457
+ "type": "object"
4458
+ },
4459
+ "type": "array"
4460
+ },
4461
+ "mode": {
4462
+ "type": "string"
4463
+ },
4464
+ "running": {
4465
+ "type": "number"
4466
+ },
4467
+ "status": {
4468
+ "type": "string"
4469
+ },
4470
+ "tasks": {
4471
+ "items": {
4472
+ "additionalProperties": false,
4473
+ "properties": {
4474
+ "container": {
4475
+ "type": "string"
4476
+ },
4477
+ "id": {
4478
+ "type": "string"
4479
+ },
4480
+ "level": {
4481
+ "type": "number"
4482
+ },
4483
+ "messages": {
4484
+ "items": {
4485
+ "additionalProperties": false,
4486
+ "properties": {
4487
+ "level": {
4488
+ "type": "number"
4489
+ },
4490
+ "msg": {
4491
+ "type": "string"
4492
+ }
4493
+ },
4494
+ "required": [
4495
+ "level",
4496
+ "msg"
4497
+ ],
4498
+ "type": "object"
4499
+ },
4500
+ "type": "array"
4501
+ },
4502
+ "node": {
4503
+ "type": "string"
4504
+ },
4505
+ "status": {
4506
+ "type": "string"
4507
+ }
4508
+ },
4509
+ "required": [
4510
+ "container",
4511
+ "id",
4512
+ "messages",
4513
+ "node"
4514
+ ],
4515
+ "type": "object"
4516
+ },
4517
+ "type": "array"
4518
+ },
4519
+ "total": {
4520
+ "type": "number"
4521
+ }
4522
+ },
4523
+ "required": [
4524
+ "level",
4525
+ "messages",
4526
+ "status"
4527
+ ],
4528
+ "type": "object"
4529
+ },
4530
+ "Nxtpression": {
4531
+ "anyOf": [
4532
+ {
4533
+ "additionalProperties": false,
4534
+ "properties": {
4535
+ "__context": {
4536
+ "additionalProperties": true,
4537
+ "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.",
4538
+ "properties": {},
4539
+ "type": "object"
4540
+ },
4541
+ "__returnValue": {
4542
+ "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.",
4543
+ "type": "string"
4544
+ },
4545
+ "length": {
4546
+ "type": "number"
4547
+ }
4548
+ },
4549
+ "required": [
4550
+ "__context",
4551
+ "__returnValue",
4552
+ "length"
4553
+ ],
4554
+ "type": "object"
4555
+ },
4556
+ {
4557
+ "type": "string"
4558
+ }
4559
+ ]
4560
+ },
4561
+ "Nxtpression<Record<string,unknown>,{id:string;}>": {
4562
+ "anyOf": [
4563
+ {
3877
4564
  "$ref": "#/definitions/Record<string,unknown>"
3878
4565
  },
3879
4566
  {
@@ -5204,50 +5891,225 @@
5204
5891
  }
5205
5892
  },
5206
5893
  "required": [
5207
- "engines",
5208
- "languages"
5894
+ "engines",
5895
+ "languages"
5896
+ ],
5897
+ "type": "object"
5898
+ },
5899
+ "nxt.status?": {
5900
+ "$ref": "#/definitions/NxtStatusRecord"
5901
+ },
5902
+ "storage.locations?": {
5903
+ "$ref": "#/definitions/StorageLocationsRecord"
5904
+ },
5905
+ "storage.zones?": {
5906
+ "$ref": "#/definitions/StorageZonesRecord"
5907
+ }
5908
+ },
5909
+ "required": [
5910
+ ":permission",
5911
+ "asset-daemon",
5912
+ "asset-daemon:user-notify.state",
5913
+ "asset.assignees",
5914
+ "asset.clone",
5915
+ "asset.deadlines",
5916
+ "asset.duration",
5917
+ "asset.embedding",
5918
+ "asset.icon",
5919
+ "asset.locations",
5920
+ "asset.media",
5921
+ "asset.tags",
5922
+ "asset.title",
5923
+ "asset.types",
5924
+ "deepstream-replicator.stats?",
5925
+ "hub-transcribe:render-profile",
5926
+ "media.consolidate",
5927
+ "media.subtitles",
5928
+ "media.subtitles?",
5929
+ "media.transcribe?",
5930
+ "nxt.status?",
5931
+ "storage.locations?",
5932
+ "storage.zones?"
5933
+ ],
5934
+ "type": "object"
5935
+ },
5936
+ "RemoveOperation": {
5937
+ "additionalProperties": false,
5938
+ "properties": {
5939
+ "op": {
5940
+ "const": "remove",
5941
+ "type": "string"
5942
+ },
5943
+ "path": {
5944
+ "type": "string"
5945
+ }
5946
+ },
5947
+ "required": [
5948
+ "op",
5949
+ "path"
5950
+ ],
5951
+ "type": "object"
5952
+ },
5953
+ "RenderDomainCpuStats": {
5954
+ "additionalProperties": false,
5955
+ "properties": {
5956
+ "cpu": {
5957
+ "additionalProperties": false,
5958
+ "properties": {
5959
+ "idle": {
5960
+ "type": "number"
5961
+ },
5962
+ "total": {
5963
+ "type": "number"
5964
+ }
5965
+ },
5966
+ "required": [
5967
+ "idle",
5968
+ "total"
5969
+ ],
5970
+ "type": "object"
5971
+ },
5972
+ "mem": {
5973
+ "additionalProperties": false,
5974
+ "properties": {
5975
+ "arcstats": {
5976
+ "additionalProperties": false,
5977
+ "properties": {
5978
+ "size": {
5979
+ "type": "number"
5980
+ }
5981
+ },
5982
+ "required": [
5983
+ "size"
5984
+ ],
5985
+ "type": "object"
5986
+ },
5987
+ "meminfo": {
5988
+ "additionalProperties": false,
5989
+ "properties": {
5990
+ "active": {
5991
+ "type": "number"
5992
+ },
5993
+ "available": {
5994
+ "type": "number"
5995
+ },
5996
+ "buffcache": {
5997
+ "type": "number"
5998
+ },
5999
+ "buffers": {
6000
+ "type": "number"
6001
+ },
6002
+ "cached": {
6003
+ "type": "number"
6004
+ },
6005
+ "free": {
6006
+ "type": "number"
6007
+ },
6008
+ "kernelStack": {
6009
+ "type": "number"
6010
+ },
6011
+ "memAvailable": {
6012
+ "type": "number"
6013
+ },
6014
+ "memTotal": {
6015
+ "type": "number"
6016
+ },
6017
+ "reclaimable": {
6018
+ "type": "number"
6019
+ },
6020
+ "sReclaimable": {
6021
+ "type": "number"
6022
+ },
6023
+ "slab": {
6024
+ "type": "number"
6025
+ },
6026
+ "swapfree": {
6027
+ "type": "number"
6028
+ },
6029
+ "swaptotal": {
6030
+ "type": "number"
6031
+ },
6032
+ "swapused": {
6033
+ "type": "number"
6034
+ },
6035
+ "total": {
6036
+ "type": "number"
6037
+ },
6038
+ "used": {
6039
+ "type": "number"
6040
+ }
6041
+ },
6042
+ "required": [
6043
+ "active",
6044
+ "available",
6045
+ "buffcache",
6046
+ "buffers",
6047
+ "cached",
6048
+ "free",
6049
+ "kernelStack",
6050
+ "memAvailable",
6051
+ "memTotal",
6052
+ "reclaimable",
6053
+ "sReclaimable",
6054
+ "slab",
6055
+ "swapfree",
6056
+ "swaptotal",
6057
+ "swapused",
6058
+ "total",
6059
+ "used"
6060
+ ],
6061
+ "type": "object"
6062
+ },
6063
+ "total": {
6064
+ "type": "number"
6065
+ },
6066
+ "used": {
6067
+ "type": "number"
6068
+ }
6069
+ },
6070
+ "required": [
6071
+ "arcstats",
6072
+ "meminfo",
6073
+ "total",
6074
+ "used"
5209
6075
  ],
5210
6076
  "type": "object"
5211
6077
  }
5212
6078
  },
5213
6079
  "required": [
5214
- ":permission",
5215
- "asset-daemon",
5216
- "asset-daemon:user-notify.state",
5217
- "asset.assignees",
5218
- "asset.clone",
5219
- "asset.deadlines",
5220
- "asset.duration",
5221
- "asset.embedding",
5222
- "asset.icon",
5223
- "asset.locations",
5224
- "asset.media",
5225
- "asset.tags",
5226
- "asset.title",
5227
- "asset.types",
5228
- "deepstream-replicator.stats?",
5229
- "hub-transcribe:render-profile",
5230
- "media.consolidate",
5231
- "media.subtitles",
5232
- "media.subtitles?",
5233
- "media.transcribe?"
6080
+ "cpu",
6081
+ "mem"
5234
6082
  ],
5235
6083
  "type": "object"
5236
6084
  },
5237
- "RemoveOperation": {
6085
+ "RenderDomainGpuStats": {
6086
+ "additionalProperties": {},
6087
+ "type": "object"
6088
+ },
6089
+ "RenderDomainNetStats": {
5238
6090
  "additionalProperties": false,
5239
6091
  "properties": {
5240
- "op": {
5241
- "const": "remove",
5242
- "type": "string"
6092
+ "dev": {
6093
+ "additionalProperties": false,
6094
+ "properties": {
6095
+ "used": {
6096
+ "type": "number"
6097
+ }
6098
+ },
6099
+ "required": [
6100
+ "used"
6101
+ ],
6102
+ "type": "object"
5243
6103
  },
5244
- "path": {
6104
+ "type": {
5245
6105
  "type": "string"
6106
+ },
6107
+ "used": {
6108
+ "type": "number"
5246
6109
  }
5247
6110
  },
5248
6111
  "required": [
5249
- "op",
5250
- "path"
6112
+ "used"
5251
6113
  ],
5252
6114
  "type": "object"
5253
6115
  },
@@ -5310,22 +6172,216 @@
5310
6172
  },
5311
6173
  "type": "object"
5312
6174
  },
6175
+ "RenderDomainSchedulersRecord": {
6176
+ "additionalProperties": {
6177
+ "items": {
6178
+ "type": "number"
6179
+ },
6180
+ "type": "array"
6181
+ },
6182
+ "type": "object"
6183
+ },
5313
6184
  "RenderDomainStatsRecord": {
5314
6185
  "additionalProperties": false,
5315
6186
  "properties": {
6187
+ "activeCount": {
6188
+ "type": "number"
6189
+ },
6190
+ "available": {
6191
+ "type": "boolean"
6192
+ },
6193
+ "cpu": {
6194
+ "type": "number"
6195
+ },
6196
+ "cpuAvailable": {
6197
+ "type": "boolean"
6198
+ },
6199
+ "cpuCompute": {
6200
+ "type": "number"
6201
+ },
6202
+ "cpuComputeAvailable": {
6203
+ "type": "boolean"
6204
+ },
6205
+ "cpuComputeLimit": {
6206
+ "type": "number"
6207
+ },
6208
+ "cpuComputeReservation": {
6209
+ "type": "number"
6210
+ },
6211
+ "cpuComputeTotal": {
6212
+ "type": "number"
6213
+ },
6214
+ "cpuComputeValue": {
6215
+ "type": "number"
6216
+ },
6217
+ "cpuMemory": {
6218
+ "type": "number"
6219
+ },
6220
+ "cpuMemoryAvailable": {
6221
+ "type": "boolean"
6222
+ },
6223
+ "cpuMemoryLimit": {
6224
+ "type": "number"
6225
+ },
6226
+ "cpuMemoryReservation": {
6227
+ "type": "number"
6228
+ },
6229
+ "cpuMemoryTotal": {
6230
+ "type": "number"
6231
+ },
6232
+ "cpuMemoryValue": {
6233
+ "type": "number"
6234
+ },
6235
+ "cpuStat": {
6236
+ "$ref": "#/definitions/RenderDomainCpuStats"
6237
+ },
5316
6238
  "error": {
5317
6239
  "items": {
5318
6240
  "$ref": "#/definitions/Record<string,unknown>"
5319
6241
  },
5320
6242
  "type": "array"
5321
6243
  },
6244
+ "gpuAvailable": {
6245
+ "type": "boolean"
6246
+ },
6247
+ "gpuCompute": {
6248
+ "type": "number"
6249
+ },
6250
+ "gpuComputeAvailable": {
6251
+ "type": "boolean"
6252
+ },
6253
+ "gpuComputeLimit": {
6254
+ "type": "number"
6255
+ },
6256
+ "gpuComputeReservation": {
6257
+ "type": "number"
6258
+ },
6259
+ "gpuComputeTotal": {
6260
+ "type": "number"
6261
+ },
6262
+ "gpuComputeValue": {
6263
+ "type": "number"
6264
+ },
6265
+ "gpuDecoder": {
6266
+ "type": "number"
6267
+ },
6268
+ "gpuDecoderLimit": {
6269
+ "type": "number"
6270
+ },
6271
+ "gpuDecoderTotal": {
6272
+ "type": "number"
6273
+ },
6274
+ "gpuDecoderValue": {
6275
+ "type": "null"
6276
+ },
6277
+ "gpuEncoder": {
6278
+ "type": "number"
6279
+ },
6280
+ "gpuEncoderLimit": {
6281
+ "type": "number"
6282
+ },
6283
+ "gpuEncoderTotal": {
6284
+ "type": "number"
6285
+ },
6286
+ "gpuEncoderValue": {
6287
+ "type": "number"
6288
+ },
6289
+ "gpuMemory": {
6290
+ "type": "number"
6291
+ },
6292
+ "gpuMemoryAvailable": {
6293
+ "type": "boolean"
6294
+ },
6295
+ "gpuMemoryLimit": {
6296
+ "type": "number"
6297
+ },
6298
+ "gpuMemoryReservation": {
6299
+ "type": "number"
6300
+ },
6301
+ "gpuMemoryTotal": {
6302
+ "type": "number"
6303
+ },
6304
+ "gpuMemoryValue": {
6305
+ "type": "number"
6306
+ },
6307
+ "gpuQueueAvailable": {
6308
+ "type": "boolean"
6309
+ },
6310
+ "gpuQueueLimit": {
6311
+ "type": "number"
6312
+ },
6313
+ "gpuQueueReservation": {
6314
+ "type": "number"
6315
+ },
6316
+ "gpuQueueTotal": {
6317
+ "type": "number"
6318
+ },
6319
+ "gpuQueueValue": {
6320
+ "type": "number"
6321
+ },
6322
+ "gpuStat": {
6323
+ "$ref": "#/definitions/RenderDomainGpuStats"
6324
+ },
6325
+ "gpuType": {
6326
+ "type": "string"
6327
+ },
6328
+ "lag": {
6329
+ "type": "number"
6330
+ },
6331
+ "memory": {
6332
+ "type": "number"
6333
+ },
6334
+ "netAvailable": {
6335
+ "type": "boolean"
6336
+ },
6337
+ "netStat": {
6338
+ "$ref": "#/definitions/RenderDomainNetStats"
6339
+ },
6340
+ "netTransfer": {
6341
+ "type": "number"
6342
+ },
6343
+ "netTransferAvailable": {
6344
+ "type": "boolean"
6345
+ },
6346
+ "netTransferLimit": {
6347
+ "type": "number"
6348
+ },
6349
+ "netTransferReservation": {
6350
+ "type": "number"
6351
+ },
6352
+ "netTransferTotal": {
6353
+ "type": "number"
6354
+ },
6355
+ "netTransferValue": {
6356
+ "type": "number"
6357
+ },
5322
6358
  "progress": {
5323
6359
  "type": "number"
5324
6360
  },
5325
6361
  "status": {
5326
- "type": "string"
6362
+ "anyOf": [
6363
+ {
6364
+ "items": {
6365
+ "type": "string"
6366
+ },
6367
+ "type": "array"
6368
+ },
6369
+ {
6370
+ "type": "string"
6371
+ }
6372
+ ]
6373
+ },
6374
+ "toobusy": {
6375
+ "type": "boolean"
6376
+ },
6377
+ "totalCount": {
6378
+ "type": "number"
5327
6379
  }
5328
6380
  },
6381
+ "required": [
6382
+ "activeCount",
6383
+ "totalCount"
6384
+ ],
5329
6385
  "type": "object"
5330
6386
  },
5331
6387
  "RenderPreset": {
@@ -7051,6 +8107,119 @@
7051
8107
  ],
7052
8108
  "type": "object"
7053
8109
  },
8110
+ "StorageLocationsRecord": {
8111
+ "additionalProperties": {
8112
+ "$ref": "#/definitions/StorageLocationsRecordEntry"
8113
+ },
8114
+ "type": "object"
8115
+ },
8116
+ "StorageLocationsRecordEntry": {
8117
+ "additionalProperties": false,
8118
+ "properties": {
8119
+ "allows": {
8120
+ "items": {
8121
+ "enum": [
8122
+ "del",
8123
+ "get",
8124
+ "put"
8125
+ ],
8126
+ "type": "string"
8127
+ },
8128
+ "type": "array"
8129
+ },
8130
+ "available": {
8131
+ "type": "number"
8132
+ },
8133
+ "cache": {
8134
+ "type": "boolean"
8135
+ },
8136
+ "capacity": {
8137
+ "type": "number"
8138
+ },
8139
+ "free": {
8140
+ "type": "number"
8141
+ },
8142
+ "id": {
8143
+ "type": "string"
8144
+ },
8145
+ "latency": {
8146
+ "type": "number"
8147
+ },
8148
+ "location": {
8149
+ "type": "string"
8150
+ },
8151
+ "net": {
8152
+ "additionalProperties": false,
8153
+ "properties": {
8154
+ "rx": {
8155
+ "type": "number"
8156
+ },
8157
+ "tx": {
8158
+ "type": "number"
8159
+ }
8160
+ },
8161
+ "required": [
8162
+ "rx",
8163
+ "tx"
8164
+ ],
8165
+ "type": "object"
8166
+ },
8167
+ "origin": {
8168
+ "type": "string"
8169
+ },
8170
+ "size": {
8171
+ "type": "number"
8172
+ },
8173
+ "timestamp": {
8174
+ "type": "string"
8175
+ },
8176
+ "type": {
8177
+ "type": "string"
8178
+ },
8179
+ "zone": {
8180
+ "type": "string"
8181
+ }
8182
+ },
8183
+ "required": [
8184
+ "allows",
8185
+ "available",
8186
+ "cache",
8187
+ "capacity",
8188
+ "free",
8189
+ "id",
8190
+ "latency",
8191
+ "location",
8192
+ "net",
8193
+ "origin",
8194
+ "size",
8195
+ "timestamp",
8196
+ "type",
8197
+ "zone"
8198
+ ],
8199
+ "type": "object"
8200
+ },
8201
+ "StorageZonesRecord": {
8202
+ "additionalProperties": {
8203
+ "additionalProperties": false,
8204
+ "properties": {
8205
+ "locations": {
8206
+ "items": {
8207
+ "type": "string"
8208
+ },
8209
+ "type": "array"
8210
+ },
8211
+ "priority": {
8212
+ "type": "number"
8213
+ }
8214
+ },
8215
+ "required": [
8216
+ "locations",
8217
+ "priority"
8218
+ ],
8219
+ "type": "object"
8220
+ },
8221
+ "type": "object"
8222
+ },
7054
8223
  "StoryboardDomainPipelinesRecord": {
7055
8224
  "additionalProperties": false,
7056
8225
  "properties": {