@snokam/mcp-api 0.14.0 → 0.15.0
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/package.json +1 -1
- package/specs/production/accounting.json +276 -950
- package/specs/production/blog.json +461 -2106
- package/specs/production/chatgpt.json +18 -18
- package/specs/production/employees.json +654 -2138
- package/specs/production/events.json +2498 -0
- package/specs/production/recruitment.json +572 -2055
- package/specs/production/sanity.json +37030 -22871
- package/specs/test/accounting.json +276 -950
- package/specs/test/blog.json +461 -2106
- package/specs/test/chatgpt.json +18 -18
- package/specs/test/employees.json +654 -2138
- package/specs/test/events.json +2498 -0
- package/specs/test/recruitment.json +572 -2055
- package/specs/test/sanity.json +37030 -22871
|
@@ -2750,6 +2750,48 @@
|
|
|
2750
2750
|
},
|
|
2751
2751
|
"nullable": true
|
|
2752
2752
|
},
|
|
2753
|
+
"componentBlocksInnerOneOfChildrenInner": {
|
|
2754
|
+
"type": "object",
|
|
2755
|
+
"properties": {
|
|
2756
|
+
"sanityType": {
|
|
2757
|
+
"enum": [
|
|
2758
|
+
"span"
|
|
2759
|
+
],
|
|
2760
|
+
"type": "string",
|
|
2761
|
+
"default": "span"
|
|
2762
|
+
},
|
|
2763
|
+
"marks": {
|
|
2764
|
+
"type": "array",
|
|
2765
|
+
"items": {
|
|
2766
|
+
"type": "string"
|
|
2767
|
+
}
|
|
2768
|
+
},
|
|
2769
|
+
"sanityKey": {
|
|
2770
|
+
"type": "string"
|
|
2771
|
+
},
|
|
2772
|
+
"text": {
|
|
2773
|
+
"type": "string"
|
|
2774
|
+
}
|
|
2775
|
+
}
|
|
2776
|
+
},
|
|
2777
|
+
"componentBlocksInnerOneOfMarkDefsInner": {
|
|
2778
|
+
"type": "object",
|
|
2779
|
+
"properties": {
|
|
2780
|
+
"sanityType": {
|
|
2781
|
+
"enum": [
|
|
2782
|
+
"link"
|
|
2783
|
+
],
|
|
2784
|
+
"type": "string",
|
|
2785
|
+
"default": "link"
|
|
2786
|
+
},
|
|
2787
|
+
"href": {
|
|
2788
|
+
"type": "string"
|
|
2789
|
+
},
|
|
2790
|
+
"sanityKey": {
|
|
2791
|
+
"type": "string"
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
},
|
|
2753
2795
|
"cryptoBuys": {
|
|
2754
2796
|
"type": "object",
|
|
2755
2797
|
"properties": {
|
|
@@ -3653,6 +3695,27 @@
|
|
|
3653
3695
|
}
|
|
3654
3696
|
}
|
|
3655
3697
|
},
|
|
3698
|
+
"pageEmployeeOrderInner": {
|
|
3699
|
+
"type": "object",
|
|
3700
|
+
"properties": {
|
|
3701
|
+
"sanityType": {
|
|
3702
|
+
"enum": [
|
|
3703
|
+
"reference"
|
|
3704
|
+
],
|
|
3705
|
+
"type": "string",
|
|
3706
|
+
"default": "reference"
|
|
3707
|
+
},
|
|
3708
|
+
"sanityKey": {
|
|
3709
|
+
"type": "string"
|
|
3710
|
+
},
|
|
3711
|
+
"sanityRef": {
|
|
3712
|
+
"type": "string"
|
|
3713
|
+
},
|
|
3714
|
+
"sanityWeak": {
|
|
3715
|
+
"type": "boolean"
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3718
|
+
},
|
|
3656
3719
|
"payItem": {
|
|
3657
3720
|
"type": "object",
|
|
3658
3721
|
"properties": {
|
|
@@ -4196,18 +4259,37 @@
|
|
|
4196
4259
|
"sanityEmployee": {
|
|
4197
4260
|
"type": "object",
|
|
4198
4261
|
"properties": {
|
|
4262
|
+
"gender": {
|
|
4263
|
+
"enum": [
|
|
4264
|
+
"female",
|
|
4265
|
+
"male",
|
|
4266
|
+
"These are not the genders you are looking for"
|
|
4267
|
+
],
|
|
4268
|
+
"type": "string",
|
|
4269
|
+
"default": "female"
|
|
4270
|
+
},
|
|
4271
|
+
"maritalStatus": {
|
|
4272
|
+
"enum": [
|
|
4273
|
+
"cohabitant",
|
|
4274
|
+
"married",
|
|
4275
|
+
"single"
|
|
4276
|
+
],
|
|
4277
|
+
"type": "string",
|
|
4278
|
+
"default": "cohabitant",
|
|
4279
|
+
"nullable": true
|
|
4280
|
+
},
|
|
4281
|
+
"sanityType": {
|
|
4282
|
+
"enum": [
|
|
4283
|
+
"employee"
|
|
4284
|
+
],
|
|
4285
|
+
"type": "string",
|
|
4286
|
+
"default": "employee"
|
|
4287
|
+
},
|
|
4199
4288
|
"about": {
|
|
4200
4289
|
"type": "string"
|
|
4201
4290
|
},
|
|
4202
4291
|
"active": {
|
|
4203
|
-
"type": "boolean"
|
|
4204
|
-
"nullable": true
|
|
4205
|
-
},
|
|
4206
|
-
"additionalData": {
|
|
4207
|
-
"type": "object",
|
|
4208
|
-
"additionalProperties": {
|
|
4209
|
-
"type": "object"
|
|
4210
|
-
}
|
|
4292
|
+
"type": "boolean"
|
|
4211
4293
|
},
|
|
4212
4294
|
"address": {
|
|
4213
4295
|
"type": "string"
|
|
@@ -4218,27 +4300,26 @@
|
|
|
4218
4300
|
"type": "string"
|
|
4219
4301
|
}
|
|
4220
4302
|
},
|
|
4221
|
-
"
|
|
4303
|
+
"birth_date": {
|
|
4222
4304
|
"type": "string"
|
|
4223
4305
|
},
|
|
4224
|
-
"
|
|
4225
|
-
"$ref": "#/components/schemas/
|
|
4306
|
+
"blurred_image": {
|
|
4307
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4226
4308
|
},
|
|
4227
4309
|
"boardMember": {
|
|
4228
|
-
"type": "boolean"
|
|
4229
|
-
"nullable": true
|
|
4310
|
+
"type": "boolean"
|
|
4230
4311
|
},
|
|
4231
4312
|
"cliftonStrengths": {
|
|
4232
4313
|
"type": "array",
|
|
4233
4314
|
"items": {
|
|
4234
|
-
"$ref": "#/components/schemas/
|
|
4315
|
+
"$ref": "#/components/schemas/sanityEmployeeCliftonStrengthsInner"
|
|
4235
4316
|
}
|
|
4236
4317
|
},
|
|
4237
4318
|
"coinbaseAccountEmail": {
|
|
4238
4319
|
"type": "string"
|
|
4239
4320
|
},
|
|
4240
4321
|
"commissionTier": {
|
|
4241
|
-
"$ref": "#/components/schemas/
|
|
4322
|
+
"$ref": "#/components/schemas/sanityEmployeeCommissionTier"
|
|
4242
4323
|
},
|
|
4243
4324
|
"education": {
|
|
4244
4325
|
"type": "string"
|
|
@@ -4249,69 +4330,42 @@
|
|
|
4249
4330
|
"equipment": {
|
|
4250
4331
|
"type": "array",
|
|
4251
4332
|
"items": {
|
|
4252
|
-
"$ref": "#/components/schemas/
|
|
4333
|
+
"$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
|
|
4253
4334
|
}
|
|
4254
4335
|
},
|
|
4255
|
-
"gender": {
|
|
4256
|
-
"enum": [
|
|
4257
|
-
0,
|
|
4258
|
-
1,
|
|
4259
|
-
2
|
|
4260
|
-
],
|
|
4261
|
-
"type": "integer",
|
|
4262
|
-
"format": "int32",
|
|
4263
|
-
"default": 0,
|
|
4264
|
-
"nullable": true
|
|
4265
|
-
},
|
|
4266
4336
|
"graduationYear": {
|
|
4267
4337
|
"type": "number",
|
|
4268
|
-
"format": "double"
|
|
4269
|
-
"nullable": true
|
|
4338
|
+
"format": "double"
|
|
4270
4339
|
},
|
|
4271
4340
|
"groups": {
|
|
4272
4341
|
"type": "array",
|
|
4273
4342
|
"items": {
|
|
4274
|
-
"$ref": "#/components/schemas/
|
|
4343
|
+
"$ref": "#/components/schemas/sanityEmployeeGroupsInner"
|
|
4275
4344
|
}
|
|
4276
4345
|
},
|
|
4277
4346
|
"image": {
|
|
4278
|
-
"$ref": "#/components/schemas/
|
|
4347
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4279
4348
|
},
|
|
4280
4349
|
"innovativeSalary": {
|
|
4281
|
-
"type": "boolean"
|
|
4282
|
-
"nullable": true
|
|
4350
|
+
"type": "boolean"
|
|
4283
4351
|
},
|
|
4284
4352
|
"innovativeSalaryPercentage": {
|
|
4285
4353
|
"type": "number",
|
|
4286
|
-
"format": "double"
|
|
4287
|
-
"nullable": true
|
|
4354
|
+
"format": "double"
|
|
4288
4355
|
},
|
|
4289
4356
|
"isBot": {
|
|
4290
|
-
"type": "boolean"
|
|
4291
|
-
"nullable": true
|
|
4357
|
+
"type": "boolean"
|
|
4292
4358
|
},
|
|
4293
4359
|
"isSeekingProject": {
|
|
4294
|
-
"type": "boolean"
|
|
4295
|
-
"nullable": true
|
|
4360
|
+
"type": "boolean"
|
|
4296
4361
|
},
|
|
4297
4362
|
"manager": {
|
|
4298
|
-
"$ref": "#/components/schemas/
|
|
4299
|
-
},
|
|
4300
|
-
"maritalStatus": {
|
|
4301
|
-
"enum": [
|
|
4302
|
-
0,
|
|
4303
|
-
1,
|
|
4304
|
-
2
|
|
4305
|
-
],
|
|
4306
|
-
"type": "integer",
|
|
4307
|
-
"format": "int32",
|
|
4308
|
-
"default": 0,
|
|
4309
|
-
"nullable": true
|
|
4363
|
+
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
4310
4364
|
},
|
|
4311
4365
|
"media": {
|
|
4312
4366
|
"type": "array",
|
|
4313
4367
|
"items": {
|
|
4314
|
-
"$ref": "#/components/schemas/
|
|
4368
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
|
|
4315
4369
|
}
|
|
4316
4370
|
},
|
|
4317
4371
|
"name": {
|
|
@@ -4320,13 +4374,12 @@
|
|
|
4320
4374
|
"nextOfKin": {
|
|
4321
4375
|
"type": "array",
|
|
4322
4376
|
"items": {
|
|
4323
|
-
"$ref": "#/components/schemas/
|
|
4377
|
+
"$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
|
|
4324
4378
|
}
|
|
4325
4379
|
},
|
|
4326
4380
|
"nrOfChildren": {
|
|
4327
4381
|
"type": "number",
|
|
4328
|
-
"format": "double"
|
|
4329
|
-
"nullable": true
|
|
4382
|
+
"format": "double"
|
|
4330
4383
|
},
|
|
4331
4384
|
"personalProjectRequirements": {
|
|
4332
4385
|
"type": "string"
|
|
@@ -4343,34 +4396,25 @@
|
|
|
4343
4396
|
"sanityRev": {
|
|
4344
4397
|
"type": "string"
|
|
4345
4398
|
},
|
|
4346
|
-
"sanityType": {
|
|
4347
|
-
"enum": [
|
|
4348
|
-
0
|
|
4349
|
-
],
|
|
4350
|
-
"type": "integer",
|
|
4351
|
-
"format": "int32",
|
|
4352
|
-
"default": 0,
|
|
4353
|
-
"nullable": true
|
|
4354
|
-
},
|
|
4355
4399
|
"sanityUpdatedAt": {
|
|
4356
4400
|
"type": "string"
|
|
4357
4401
|
},
|
|
4358
4402
|
"slug": {
|
|
4359
|
-
"$ref": "#/components/schemas/
|
|
4403
|
+
"$ref": "#/components/schemas/slug"
|
|
4360
4404
|
},
|
|
4361
|
-
"
|
|
4405
|
+
"start_date": {
|
|
4362
4406
|
"type": "string"
|
|
4363
4407
|
},
|
|
4364
4408
|
"tags": {
|
|
4365
4409
|
"type": "array",
|
|
4366
4410
|
"items": {
|
|
4367
|
-
"$ref": "#/components/schemas/
|
|
4411
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
|
|
4368
4412
|
}
|
|
4369
4413
|
},
|
|
4370
4414
|
"technologies": {
|
|
4371
4415
|
"type": "array",
|
|
4372
4416
|
"items": {
|
|
4373
|
-
"$ref": "#/components/schemas/
|
|
4417
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInner"
|
|
4374
4418
|
}
|
|
4375
4419
|
},
|
|
4376
4420
|
"telephone": {
|
|
@@ -4378,81 +4422,26 @@
|
|
|
4378
4422
|
}
|
|
4379
4423
|
}
|
|
4380
4424
|
},
|
|
4381
|
-
"
|
|
4425
|
+
"sanityEmployeeCliftonStrengthsInner": {
|
|
4382
4426
|
"type": "object",
|
|
4383
4427
|
"properties": {
|
|
4384
|
-
"
|
|
4385
|
-
"type": "object",
|
|
4386
|
-
"additionalProperties": {
|
|
4387
|
-
"type": "object"
|
|
4388
|
-
}
|
|
4389
|
-
},
|
|
4390
|
-
"asset": {
|
|
4391
|
-
"$ref": "#/components/schemas/sanityEmployee_blurred_image_asset"
|
|
4392
|
-
},
|
|
4393
|
-
"sanityType": {
|
|
4428
|
+
"domain": {
|
|
4394
4429
|
"enum": [
|
|
4395
|
-
|
|
4430
|
+
"executing",
|
|
4431
|
+
"influencing",
|
|
4432
|
+
"relationship_building",
|
|
4433
|
+
"strategic_thinking"
|
|
4396
4434
|
],
|
|
4397
|
-
"type": "
|
|
4398
|
-
"
|
|
4399
|
-
"default": 0,
|
|
4435
|
+
"type": "string",
|
|
4436
|
+
"default": "executing",
|
|
4400
4437
|
"nullable": true
|
|
4401
|
-
}
|
|
4402
|
-
}
|
|
4403
|
-
},
|
|
4404
|
-
"sanityEmployee_blurred_image_asset": {
|
|
4405
|
-
"type": "object",
|
|
4406
|
-
"properties": {
|
|
4407
|
-
"additionalData": {
|
|
4408
|
-
"type": "object",
|
|
4409
|
-
"additionalProperties": {
|
|
4410
|
-
"type": "object"
|
|
4411
|
-
}
|
|
4412
|
-
},
|
|
4413
|
-
"mimeType": {
|
|
4414
|
-
"type": "string"
|
|
4415
|
-
},
|
|
4416
|
-
"originalFilename": {
|
|
4417
|
-
"type": "string"
|
|
4418
|
-
},
|
|
4419
|
-
"sanityId": {
|
|
4420
|
-
"type": "string"
|
|
4421
4438
|
},
|
|
4422
4439
|
"sanityType": {
|
|
4423
4440
|
"enum": [
|
|
4424
|
-
|
|
4425
|
-
],
|
|
4426
|
-
"type": "integer",
|
|
4427
|
-
"format": "int32",
|
|
4428
|
-
"default": 0,
|
|
4429
|
-
"nullable": true
|
|
4430
|
-
},
|
|
4431
|
-
"url": {
|
|
4432
|
-
"type": "string"
|
|
4433
|
-
}
|
|
4434
|
-
}
|
|
4435
|
-
},
|
|
4436
|
-
"sanityEmployee_cliftonStrengths": {
|
|
4437
|
-
"type": "object",
|
|
4438
|
-
"properties": {
|
|
4439
|
-
"additionalData": {
|
|
4440
|
-
"type": "object",
|
|
4441
|
-
"additionalProperties": {
|
|
4442
|
-
"type": "object"
|
|
4443
|
-
}
|
|
4444
|
-
},
|
|
4445
|
-
"domain": {
|
|
4446
|
-
"enum": [
|
|
4447
|
-
0,
|
|
4448
|
-
1,
|
|
4449
|
-
2,
|
|
4450
|
-
3
|
|
4441
|
+
"cliftonStrength"
|
|
4451
4442
|
],
|
|
4452
|
-
"type": "
|
|
4453
|
-
"
|
|
4454
|
-
"default": 0,
|
|
4455
|
-
"nullable": true
|
|
4443
|
+
"type": "string",
|
|
4444
|
+
"default": "cliftonStrength"
|
|
4456
4445
|
},
|
|
4457
4446
|
"sanityCreatedAt": {
|
|
4458
4447
|
"type": "string"
|
|
@@ -4463,15 +4452,6 @@
|
|
|
4463
4452
|
"sanityRev": {
|
|
4464
4453
|
"type": "string"
|
|
4465
4454
|
},
|
|
4466
|
-
"sanityType": {
|
|
4467
|
-
"enum": [
|
|
4468
|
-
0
|
|
4469
|
-
],
|
|
4470
|
-
"type": "integer",
|
|
4471
|
-
"format": "int32",
|
|
4472
|
-
"default": 0,
|
|
4473
|
-
"nullable": true
|
|
4474
|
-
},
|
|
4475
4455
|
"sanityUpdatedAt": {
|
|
4476
4456
|
"type": "string"
|
|
4477
4457
|
},
|
|
@@ -4480,19 +4460,19 @@
|
|
|
4480
4460
|
}
|
|
4481
4461
|
}
|
|
4482
4462
|
},
|
|
4483
|
-
"
|
|
4463
|
+
"sanityEmployeeCommissionTier": {
|
|
4484
4464
|
"type": "object",
|
|
4485
4465
|
"properties": {
|
|
4486
|
-
"
|
|
4487
|
-
"
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4466
|
+
"sanityType": {
|
|
4467
|
+
"enum": [
|
|
4468
|
+
"commissionTier"
|
|
4469
|
+
],
|
|
4470
|
+
"type": "string",
|
|
4471
|
+
"default": "commissionTier"
|
|
4491
4472
|
},
|
|
4492
4473
|
"commission": {
|
|
4493
4474
|
"type": "number",
|
|
4494
|
-
"format": "double"
|
|
4495
|
-
"nullable": true
|
|
4475
|
+
"format": "double"
|
|
4496
4476
|
},
|
|
4497
4477
|
"sanityCreatedAt": {
|
|
4498
4478
|
"type": "string"
|
|
@@ -4503,15 +4483,6 @@
|
|
|
4503
4483
|
"sanityRev": {
|
|
4504
4484
|
"type": "string"
|
|
4505
4485
|
},
|
|
4506
|
-
"sanityType": {
|
|
4507
|
-
"enum": [
|
|
4508
|
-
0
|
|
4509
|
-
],
|
|
4510
|
-
"type": "integer",
|
|
4511
|
-
"format": "int32",
|
|
4512
|
-
"default": 0,
|
|
4513
|
-
"nullable": true
|
|
4514
|
-
},
|
|
4515
4486
|
"sanityUpdatedAt": {
|
|
4516
4487
|
"type": "string"
|
|
4517
4488
|
},
|
|
@@ -4520,307 +4491,66 @@
|
|
|
4520
4491
|
}
|
|
4521
4492
|
}
|
|
4522
4493
|
},
|
|
4523
|
-
"
|
|
4494
|
+
"sanityEmployeeEquipmentInner": {
|
|
4524
4495
|
"type": "object",
|
|
4525
4496
|
"properties": {
|
|
4526
|
-
"
|
|
4527
|
-
"
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4497
|
+
"sanityType": {
|
|
4498
|
+
"enum": [
|
|
4499
|
+
"equipment"
|
|
4500
|
+
],
|
|
4501
|
+
"type": "string",
|
|
4502
|
+
"default": "equipment"
|
|
4531
4503
|
},
|
|
4532
4504
|
"description": {
|
|
4533
4505
|
"type": "array",
|
|
4534
4506
|
"items": {
|
|
4535
|
-
"$ref": "#/components/schemas/
|
|
4507
|
+
"$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
|
|
4536
4508
|
}
|
|
4537
4509
|
},
|
|
4538
4510
|
"image": {
|
|
4539
|
-
"$ref": "#/components/schemas/
|
|
4511
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
4540
4512
|
},
|
|
4541
4513
|
"images": {
|
|
4542
4514
|
"type": "array",
|
|
4543
4515
|
"items": {
|
|
4544
|
-
"$ref": "#/components/schemas/
|
|
4516
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4545
4517
|
}
|
|
4546
4518
|
},
|
|
4547
4519
|
"sanityId": {
|
|
4548
4520
|
"type": "string"
|
|
4549
4521
|
},
|
|
4550
|
-
"sanityType": {
|
|
4551
|
-
"enum": [
|
|
4552
|
-
0
|
|
4553
|
-
],
|
|
4554
|
-
"type": "integer",
|
|
4555
|
-
"format": "int32",
|
|
4556
|
-
"default": 0,
|
|
4557
|
-
"nullable": true
|
|
4558
|
-
},
|
|
4559
4522
|
"title": {
|
|
4560
4523
|
"type": "string"
|
|
4561
4524
|
}
|
|
4562
4525
|
}
|
|
4563
4526
|
},
|
|
4564
|
-
"
|
|
4527
|
+
"sanityEmployeeGroupsInner": {
|
|
4565
4528
|
"type": "object",
|
|
4566
4529
|
"properties": {
|
|
4567
|
-
"
|
|
4568
|
-
"
|
|
4569
|
-
|
|
4570
|
-
|
|
4530
|
+
"sanityType": {
|
|
4531
|
+
"enum": [
|
|
4532
|
+
"group"
|
|
4533
|
+
],
|
|
4534
|
+
"type": "string",
|
|
4535
|
+
"default": "group"
|
|
4536
|
+
},
|
|
4537
|
+
"description": {
|
|
4538
|
+
"type": "array",
|
|
4539
|
+
"items": {
|
|
4540
|
+
"$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
|
|
4571
4541
|
}
|
|
4572
4542
|
},
|
|
4573
|
-
"
|
|
4543
|
+
"image": {
|
|
4544
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4545
|
+
},
|
|
4546
|
+
"leaders": {
|
|
4574
4547
|
"type": "array",
|
|
4575
4548
|
"items": {
|
|
4576
|
-
"$ref": "#/components/schemas/
|
|
4549
|
+
"$ref": "#/components/schemas/pageEmployeeOrderInner"
|
|
4577
4550
|
}
|
|
4578
4551
|
},
|
|
4579
|
-
"
|
|
4580
|
-
"type": "
|
|
4581
|
-
"format": "double",
|
|
4582
|
-
"nullable": true
|
|
4583
|
-
},
|
|
4584
|
-
"listItem": {
|
|
4585
|
-
"enum": [
|
|
4586
|
-
0,
|
|
4587
|
-
1
|
|
4588
|
-
],
|
|
4589
|
-
"type": "integer",
|
|
4590
|
-
"format": "int32",
|
|
4591
|
-
"default": 0,
|
|
4592
|
-
"nullable": true
|
|
4593
|
-
},
|
|
4594
|
-
"markDefs": {
|
|
4595
|
-
"type": "array",
|
|
4596
|
-
"items": {
|
|
4597
|
-
"$ref": "#/components/schemas/sanityEmployee_equipment_description_markDefs"
|
|
4598
|
-
}
|
|
4599
|
-
},
|
|
4600
|
-
"sanityKey": {
|
|
4601
|
-
"type": "string"
|
|
4602
|
-
},
|
|
4603
|
-
"sanityType": {
|
|
4604
|
-
"enum": [
|
|
4605
|
-
0
|
|
4606
|
-
],
|
|
4607
|
-
"type": "integer",
|
|
4608
|
-
"format": "int32",
|
|
4609
|
-
"default": 0,
|
|
4610
|
-
"nullable": true
|
|
4611
|
-
},
|
|
4612
|
-
"style": {
|
|
4613
|
-
"enum": [
|
|
4614
|
-
0,
|
|
4615
|
-
1,
|
|
4616
|
-
2,
|
|
4617
|
-
3,
|
|
4618
|
-
4,
|
|
4619
|
-
5,
|
|
4620
|
-
6,
|
|
4621
|
-
7
|
|
4622
|
-
],
|
|
4623
|
-
"type": "integer",
|
|
4624
|
-
"format": "int32",
|
|
4625
|
-
"default": 0,
|
|
4626
|
-
"nullable": true
|
|
4627
|
-
}
|
|
4628
|
-
}
|
|
4629
|
-
},
|
|
4630
|
-
"sanityEmployee_equipment_description_children": {
|
|
4631
|
-
"type": "object",
|
|
4632
|
-
"properties": {
|
|
4633
|
-
"additionalData": {
|
|
4634
|
-
"type": "object",
|
|
4635
|
-
"additionalProperties": {
|
|
4636
|
-
"type": "object"
|
|
4637
|
-
}
|
|
4638
|
-
},
|
|
4639
|
-
"marks": {
|
|
4640
|
-
"type": "array",
|
|
4641
|
-
"items": {
|
|
4642
|
-
"type": "string"
|
|
4643
|
-
}
|
|
4644
|
-
},
|
|
4645
|
-
"sanityKey": {
|
|
4646
|
-
"type": "string"
|
|
4647
|
-
},
|
|
4648
|
-
"sanityType": {
|
|
4649
|
-
"enum": [
|
|
4650
|
-
0
|
|
4651
|
-
],
|
|
4652
|
-
"type": "integer",
|
|
4653
|
-
"format": "int32",
|
|
4654
|
-
"default": 0,
|
|
4655
|
-
"nullable": true
|
|
4656
|
-
},
|
|
4657
|
-
"text": {
|
|
4658
|
-
"type": "string"
|
|
4659
|
-
}
|
|
4660
|
-
}
|
|
4661
|
-
},
|
|
4662
|
-
"sanityEmployee_equipment_description_markDefs": {
|
|
4663
|
-
"type": "object",
|
|
4664
|
-
"properties": {
|
|
4665
|
-
"additionalData": {
|
|
4666
|
-
"type": "object",
|
|
4667
|
-
"additionalProperties": {
|
|
4668
|
-
"type": "object"
|
|
4669
|
-
}
|
|
4670
|
-
},
|
|
4671
|
-
"href": {
|
|
4672
|
-
"type": "string"
|
|
4673
|
-
},
|
|
4674
|
-
"sanityKey": {
|
|
4675
|
-
"type": "string"
|
|
4676
|
-
},
|
|
4677
|
-
"sanityType": {
|
|
4678
|
-
"enum": [
|
|
4679
|
-
0
|
|
4680
|
-
],
|
|
4681
|
-
"type": "integer",
|
|
4682
|
-
"format": "int32",
|
|
4683
|
-
"default": 0,
|
|
4684
|
-
"nullable": true
|
|
4685
|
-
}
|
|
4686
|
-
}
|
|
4687
|
-
},
|
|
4688
|
-
"sanityEmployee_equipment_image": {
|
|
4689
|
-
"type": "object",
|
|
4690
|
-
"properties": {
|
|
4691
|
-
"additionalData": {
|
|
4692
|
-
"type": "object",
|
|
4693
|
-
"additionalProperties": {
|
|
4694
|
-
"type": "object"
|
|
4695
|
-
}
|
|
4696
|
-
},
|
|
4697
|
-
"asset": {
|
|
4698
|
-
"$ref": "#/components/schemas/sanityEmployee_equipment_image_asset"
|
|
4699
|
-
},
|
|
4700
|
-
"sanityType": {
|
|
4701
|
-
"enum": [
|
|
4702
|
-
0
|
|
4703
|
-
],
|
|
4704
|
-
"type": "integer",
|
|
4705
|
-
"format": "int32",
|
|
4706
|
-
"default": 0,
|
|
4707
|
-
"nullable": true
|
|
4708
|
-
}
|
|
4709
|
-
}
|
|
4710
|
-
},
|
|
4711
|
-
"sanityEmployee_equipment_image_asset": {
|
|
4712
|
-
"type": "object",
|
|
4713
|
-
"properties": {
|
|
4714
|
-
"additionalData": {
|
|
4715
|
-
"type": "object",
|
|
4716
|
-
"additionalProperties": {
|
|
4717
|
-
"type": "object"
|
|
4718
|
-
}
|
|
4719
|
-
},
|
|
4720
|
-
"mimeType": {
|
|
4721
|
-
"type": "string"
|
|
4722
|
-
},
|
|
4723
|
-
"originalFilename": {
|
|
4724
|
-
"type": "string"
|
|
4725
|
-
},
|
|
4726
|
-
"sanityId": {
|
|
4727
|
-
"type": "string"
|
|
4728
|
-
},
|
|
4729
|
-
"sanityType": {
|
|
4730
|
-
"enum": [
|
|
4731
|
-
0
|
|
4732
|
-
],
|
|
4733
|
-
"type": "integer",
|
|
4734
|
-
"format": "int32",
|
|
4735
|
-
"default": 0,
|
|
4736
|
-
"nullable": true
|
|
4737
|
-
},
|
|
4738
|
-
"url": {
|
|
4739
|
-
"type": "string"
|
|
4740
|
-
}
|
|
4741
|
-
}
|
|
4742
|
-
},
|
|
4743
|
-
"sanityEmployee_equipment_images": {
|
|
4744
|
-
"type": "object",
|
|
4745
|
-
"properties": {
|
|
4746
|
-
"additionalData": {
|
|
4747
|
-
"type": "object",
|
|
4748
|
-
"additionalProperties": {
|
|
4749
|
-
"type": "object"
|
|
4750
|
-
}
|
|
4751
|
-
},
|
|
4752
|
-
"asset": {
|
|
4753
|
-
"$ref": "#/components/schemas/sanityEmployee_equipment_images_asset"
|
|
4754
|
-
},
|
|
4755
|
-
"sanityType": {
|
|
4756
|
-
"enum": [
|
|
4757
|
-
0
|
|
4758
|
-
],
|
|
4759
|
-
"type": "integer",
|
|
4760
|
-
"format": "int32",
|
|
4761
|
-
"default": 0,
|
|
4762
|
-
"nullable": true
|
|
4763
|
-
}
|
|
4764
|
-
}
|
|
4765
|
-
},
|
|
4766
|
-
"sanityEmployee_equipment_images_asset": {
|
|
4767
|
-
"type": "object",
|
|
4768
|
-
"properties": {
|
|
4769
|
-
"additionalData": {
|
|
4770
|
-
"type": "object",
|
|
4771
|
-
"additionalProperties": {
|
|
4772
|
-
"type": "object"
|
|
4773
|
-
}
|
|
4774
|
-
},
|
|
4775
|
-
"mimeType": {
|
|
4776
|
-
"type": "string"
|
|
4777
|
-
},
|
|
4778
|
-
"originalFilename": {
|
|
4779
|
-
"type": "string"
|
|
4780
|
-
},
|
|
4781
|
-
"sanityId": {
|
|
4782
|
-
"type": "string"
|
|
4783
|
-
},
|
|
4784
|
-
"sanityType": {
|
|
4785
|
-
"enum": [
|
|
4786
|
-
0
|
|
4787
|
-
],
|
|
4788
|
-
"type": "integer",
|
|
4789
|
-
"format": "int32",
|
|
4790
|
-
"default": 0,
|
|
4791
|
-
"nullable": true
|
|
4792
|
-
},
|
|
4793
|
-
"url": {
|
|
4794
|
-
"type": "string"
|
|
4795
|
-
}
|
|
4796
|
-
}
|
|
4797
|
-
},
|
|
4798
|
-
"sanityEmployee_groups": {
|
|
4799
|
-
"type": "object",
|
|
4800
|
-
"properties": {
|
|
4801
|
-
"additionalData": {
|
|
4802
|
-
"type": "object",
|
|
4803
|
-
"additionalProperties": {
|
|
4804
|
-
"type": "object"
|
|
4805
|
-
}
|
|
4806
|
-
},
|
|
4807
|
-
"description": {
|
|
4808
|
-
"type": "array",
|
|
4809
|
-
"items": {
|
|
4810
|
-
"$ref": "#/components/schemas/sanityEmployee_groups_description"
|
|
4811
|
-
}
|
|
4812
|
-
},
|
|
4813
|
-
"image": {
|
|
4814
|
-
"$ref": "#/components/schemas/sanityEmployee_groups_image"
|
|
4815
|
-
},
|
|
4816
|
-
"leaders": {
|
|
4817
|
-
"type": "array",
|
|
4818
|
-
"items": {
|
|
4819
|
-
"$ref": "#/components/schemas/sanityEmployee_groups_leaders"
|
|
4820
|
-
}
|
|
4821
|
-
},
|
|
4822
|
-
"name": {
|
|
4823
|
-
"type": "string"
|
|
4552
|
+
"name": {
|
|
4553
|
+
"type": "string"
|
|
4824
4554
|
},
|
|
4825
4555
|
"sanityCreatedAt": {
|
|
4826
4556
|
"type": "string"
|
|
@@ -4831,298 +4561,26 @@
|
|
|
4831
4561
|
"sanityRev": {
|
|
4832
4562
|
"type": "string"
|
|
4833
4563
|
},
|
|
4834
|
-
"sanityType": {
|
|
4835
|
-
"enum": [
|
|
4836
|
-
0
|
|
4837
|
-
],
|
|
4838
|
-
"type": "integer",
|
|
4839
|
-
"format": "int32",
|
|
4840
|
-
"default": 0,
|
|
4841
|
-
"nullable": true
|
|
4842
|
-
},
|
|
4843
4564
|
"sanityUpdatedAt": {
|
|
4844
4565
|
"type": "string"
|
|
4845
4566
|
}
|
|
4846
4567
|
}
|
|
4847
4568
|
},
|
|
4848
|
-
"
|
|
4569
|
+
"sanityEmployeeManager": {
|
|
4849
4570
|
"type": "object",
|
|
4850
4571
|
"properties": {
|
|
4851
|
-
"additionalData": {
|
|
4852
|
-
"type": "object",
|
|
4853
|
-
"additionalProperties": {
|
|
4854
|
-
"type": "object"
|
|
4855
|
-
}
|
|
4856
|
-
},
|
|
4857
|
-
"children": {
|
|
4858
|
-
"type": "array",
|
|
4859
|
-
"items": {
|
|
4860
|
-
"$ref": "#/components/schemas/sanityEmployee_groups_description_children"
|
|
4861
|
-
}
|
|
4862
|
-
},
|
|
4863
|
-
"level": {
|
|
4864
|
-
"type": "number",
|
|
4865
|
-
"format": "double",
|
|
4866
|
-
"nullable": true
|
|
4867
|
-
},
|
|
4868
|
-
"listItem": {
|
|
4869
|
-
"enum": [
|
|
4870
|
-
0,
|
|
4871
|
-
1
|
|
4872
|
-
],
|
|
4873
|
-
"type": "integer",
|
|
4874
|
-
"format": "int32",
|
|
4875
|
-
"default": 0,
|
|
4876
|
-
"nullable": true
|
|
4877
|
-
},
|
|
4878
|
-
"markDefs": {
|
|
4879
|
-
"type": "array",
|
|
4880
|
-
"items": {
|
|
4881
|
-
"$ref": "#/components/schemas/sanityEmployee_groups_description_markDefs"
|
|
4882
|
-
}
|
|
4883
|
-
},
|
|
4884
|
-
"sanityKey": {
|
|
4885
|
-
"type": "string"
|
|
4886
|
-
},
|
|
4887
|
-
"sanityType": {
|
|
4888
|
-
"enum": [
|
|
4889
|
-
0
|
|
4890
|
-
],
|
|
4891
|
-
"type": "integer",
|
|
4892
|
-
"format": "int32",
|
|
4893
|
-
"default": 0,
|
|
4894
|
-
"nullable": true
|
|
4895
|
-
},
|
|
4896
|
-
"style": {
|
|
4897
|
-
"enum": [
|
|
4898
|
-
0,
|
|
4899
|
-
1,
|
|
4900
|
-
2,
|
|
4901
|
-
3,
|
|
4902
|
-
4,
|
|
4903
|
-
5,
|
|
4904
|
-
6,
|
|
4905
|
-
7
|
|
4906
|
-
],
|
|
4907
|
-
"type": "integer",
|
|
4908
|
-
"format": "int32",
|
|
4909
|
-
"default": 0,
|
|
4910
|
-
"nullable": true
|
|
4911
|
-
}
|
|
4912
|
-
}
|
|
4913
|
-
},
|
|
4914
|
-
"sanityEmployee_groups_description_children": {
|
|
4915
|
-
"type": "object",
|
|
4916
|
-
"properties": {
|
|
4917
|
-
"additionalData": {
|
|
4918
|
-
"type": "object",
|
|
4919
|
-
"additionalProperties": {
|
|
4920
|
-
"type": "object"
|
|
4921
|
-
}
|
|
4922
|
-
},
|
|
4923
|
-
"marks": {
|
|
4924
|
-
"type": "array",
|
|
4925
|
-
"items": {
|
|
4926
|
-
"type": "string"
|
|
4927
|
-
}
|
|
4928
|
-
},
|
|
4929
|
-
"sanityKey": {
|
|
4930
|
-
"type": "string"
|
|
4931
|
-
},
|
|
4932
|
-
"sanityType": {
|
|
4933
|
-
"enum": [
|
|
4934
|
-
0
|
|
4935
|
-
],
|
|
4936
|
-
"type": "integer",
|
|
4937
|
-
"format": "int32",
|
|
4938
|
-
"default": 0,
|
|
4939
|
-
"nullable": true
|
|
4940
|
-
},
|
|
4941
|
-
"text": {
|
|
4942
|
-
"type": "string"
|
|
4943
|
-
}
|
|
4944
|
-
}
|
|
4945
|
-
},
|
|
4946
|
-
"sanityEmployee_groups_description_markDefs": {
|
|
4947
|
-
"type": "object",
|
|
4948
|
-
"properties": {
|
|
4949
|
-
"additionalData": {
|
|
4950
|
-
"type": "object",
|
|
4951
|
-
"additionalProperties": {
|
|
4952
|
-
"type": "object"
|
|
4953
|
-
}
|
|
4954
|
-
},
|
|
4955
|
-
"href": {
|
|
4956
|
-
"type": "string"
|
|
4957
|
-
},
|
|
4958
|
-
"sanityKey": {
|
|
4959
|
-
"type": "string"
|
|
4960
|
-
},
|
|
4961
|
-
"sanityType": {
|
|
4962
|
-
"enum": [
|
|
4963
|
-
0
|
|
4964
|
-
],
|
|
4965
|
-
"type": "integer",
|
|
4966
|
-
"format": "int32",
|
|
4967
|
-
"default": 0,
|
|
4968
|
-
"nullable": true
|
|
4969
|
-
}
|
|
4970
|
-
}
|
|
4971
|
-
},
|
|
4972
|
-
"sanityEmployee_groups_image": {
|
|
4973
|
-
"type": "object",
|
|
4974
|
-
"properties": {
|
|
4975
|
-
"additionalData": {
|
|
4976
|
-
"type": "object",
|
|
4977
|
-
"additionalProperties": {
|
|
4978
|
-
"type": "object"
|
|
4979
|
-
}
|
|
4980
|
-
},
|
|
4981
|
-
"asset": {
|
|
4982
|
-
"$ref": "#/components/schemas/sanityEmployee_groups_image_asset"
|
|
4983
|
-
},
|
|
4984
|
-
"sanityType": {
|
|
4985
|
-
"enum": [
|
|
4986
|
-
0
|
|
4987
|
-
],
|
|
4988
|
-
"type": "integer",
|
|
4989
|
-
"format": "int32",
|
|
4990
|
-
"default": 0,
|
|
4991
|
-
"nullable": true
|
|
4992
|
-
}
|
|
4993
|
-
}
|
|
4994
|
-
},
|
|
4995
|
-
"sanityEmployee_groups_image_asset": {
|
|
4996
|
-
"type": "object",
|
|
4997
|
-
"properties": {
|
|
4998
|
-
"additionalData": {
|
|
4999
|
-
"type": "object",
|
|
5000
|
-
"additionalProperties": {
|
|
5001
|
-
"type": "object"
|
|
5002
|
-
}
|
|
5003
|
-
},
|
|
5004
|
-
"mimeType": {
|
|
5005
|
-
"type": "string"
|
|
5006
|
-
},
|
|
5007
|
-
"originalFilename": {
|
|
5008
|
-
"type": "string"
|
|
5009
|
-
},
|
|
5010
|
-
"sanityId": {
|
|
5011
|
-
"type": "string"
|
|
5012
|
-
},
|
|
5013
4572
|
"sanityType": {
|
|
5014
4573
|
"enum": [
|
|
5015
|
-
|
|
4574
|
+
"employee"
|
|
5016
4575
|
],
|
|
5017
|
-
"type": "
|
|
5018
|
-
"
|
|
5019
|
-
"default": 0,
|
|
5020
|
-
"nullable": true
|
|
5021
|
-
},
|
|
5022
|
-
"url": {
|
|
5023
|
-
"type": "string"
|
|
5024
|
-
}
|
|
5025
|
-
}
|
|
5026
|
-
},
|
|
5027
|
-
"sanityEmployee_groups_leaders": {
|
|
5028
|
-
"type": "object",
|
|
5029
|
-
"properties": {
|
|
5030
|
-
"sanityKey": {
|
|
5031
|
-
"type": "string"
|
|
5032
|
-
},
|
|
5033
|
-
"additionalData": {
|
|
5034
|
-
"type": "object",
|
|
5035
|
-
"additionalProperties": {
|
|
5036
|
-
"type": "object"
|
|
5037
|
-
}
|
|
5038
|
-
},
|
|
5039
|
-
"sanityRef": {
|
|
5040
|
-
"type": "string"
|
|
5041
|
-
},
|
|
5042
|
-
"sanityType": {
|
|
5043
|
-
"enum": [
|
|
5044
|
-
0
|
|
5045
|
-
],
|
|
5046
|
-
"type": "integer",
|
|
5047
|
-
"format": "int32",
|
|
5048
|
-
"default": 0,
|
|
5049
|
-
"nullable": true
|
|
5050
|
-
},
|
|
5051
|
-
"sanityWeak": {
|
|
5052
|
-
"type": "boolean",
|
|
5053
|
-
"nullable": true
|
|
5054
|
-
}
|
|
5055
|
-
}
|
|
5056
|
-
},
|
|
5057
|
-
"sanityEmployee_image": {
|
|
5058
|
-
"type": "object",
|
|
5059
|
-
"properties": {
|
|
5060
|
-
"additionalData": {
|
|
5061
|
-
"type": "object",
|
|
5062
|
-
"additionalProperties": {
|
|
5063
|
-
"type": "object"
|
|
5064
|
-
}
|
|
5065
|
-
},
|
|
5066
|
-
"asset": {
|
|
5067
|
-
"$ref": "#/components/schemas/sanityEmployee_image_asset"
|
|
5068
|
-
},
|
|
5069
|
-
"sanityType": {
|
|
5070
|
-
"enum": [
|
|
5071
|
-
0
|
|
5072
|
-
],
|
|
5073
|
-
"type": "integer",
|
|
5074
|
-
"format": "int32",
|
|
5075
|
-
"default": 0,
|
|
5076
|
-
"nullable": true
|
|
5077
|
-
}
|
|
5078
|
-
}
|
|
5079
|
-
},
|
|
5080
|
-
"sanityEmployee_image_asset": {
|
|
5081
|
-
"type": "object",
|
|
5082
|
-
"properties": {
|
|
5083
|
-
"additionalData": {
|
|
5084
|
-
"type": "object",
|
|
5085
|
-
"additionalProperties": {
|
|
5086
|
-
"type": "object"
|
|
5087
|
-
}
|
|
5088
|
-
},
|
|
5089
|
-
"mimeType": {
|
|
5090
|
-
"type": "string"
|
|
5091
|
-
},
|
|
5092
|
-
"originalFilename": {
|
|
5093
|
-
"type": "string"
|
|
5094
|
-
},
|
|
5095
|
-
"sanityId": {
|
|
5096
|
-
"type": "string"
|
|
5097
|
-
},
|
|
5098
|
-
"sanityType": {
|
|
5099
|
-
"enum": [
|
|
5100
|
-
0
|
|
5101
|
-
],
|
|
5102
|
-
"type": "integer",
|
|
5103
|
-
"format": "int32",
|
|
5104
|
-
"default": 0,
|
|
5105
|
-
"nullable": true
|
|
5106
|
-
},
|
|
5107
|
-
"url": {
|
|
5108
|
-
"type": "string"
|
|
5109
|
-
}
|
|
5110
|
-
}
|
|
5111
|
-
},
|
|
5112
|
-
"sanityEmployee_manager": {
|
|
5113
|
-
"type": "object",
|
|
5114
|
-
"properties": {
|
|
5115
|
-
"additionalData": {
|
|
5116
|
-
"type": "object",
|
|
5117
|
-
"additionalProperties": {
|
|
5118
|
-
"type": "object"
|
|
5119
|
-
}
|
|
4576
|
+
"type": "string",
|
|
4577
|
+
"default": "employee"
|
|
5120
4578
|
},
|
|
5121
4579
|
"email": {
|
|
5122
4580
|
"type": "string"
|
|
5123
4581
|
},
|
|
5124
4582
|
"image": {
|
|
5125
|
-
"$ref": "#/components/schemas/
|
|
4583
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
5126
4584
|
},
|
|
5127
4585
|
"name": {
|
|
5128
4586
|
"type": "string"
|
|
@@ -5130,22 +4588,13 @@
|
|
|
5130
4588
|
"sanityId": {
|
|
5131
4589
|
"type": "string"
|
|
5132
4590
|
},
|
|
5133
|
-
"sanityType": {
|
|
5134
|
-
"enum": [
|
|
5135
|
-
0
|
|
5136
|
-
],
|
|
5137
|
-
"type": "integer",
|
|
5138
|
-
"format": "int32",
|
|
5139
|
-
"default": 0,
|
|
5140
|
-
"nullable": true
|
|
5141
|
-
},
|
|
5142
4591
|
"slug": {
|
|
5143
|
-
"$ref": "#/components/schemas/
|
|
4592
|
+
"$ref": "#/components/schemas/slug"
|
|
5144
4593
|
},
|
|
5145
4594
|
"tags": {
|
|
5146
4595
|
"type": "array",
|
|
5147
4596
|
"items": {
|
|
5148
|
-
"$ref": "#/components/schemas/
|
|
4597
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
|
|
5149
4598
|
}
|
|
5150
4599
|
},
|
|
5151
4600
|
"telephone": {
|
|
@@ -5153,165 +4602,115 @@
|
|
|
5153
4602
|
}
|
|
5154
4603
|
}
|
|
5155
4604
|
},
|
|
5156
|
-
"
|
|
4605
|
+
"sanityEmployeeNextOfKinInner": {
|
|
5157
4606
|
"type": "object",
|
|
5158
4607
|
"properties": {
|
|
5159
|
-
"
|
|
5160
|
-
"
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
"mimeType": {
|
|
5166
|
-
"type": "string"
|
|
4608
|
+
"sanityType": {
|
|
4609
|
+
"enum": [
|
|
4610
|
+
"nextofkin"
|
|
4611
|
+
],
|
|
4612
|
+
"type": "string",
|
|
4613
|
+
"default": "nextofkin"
|
|
5167
4614
|
},
|
|
5168
|
-
"
|
|
4615
|
+
"name": {
|
|
5169
4616
|
"type": "string"
|
|
5170
4617
|
},
|
|
5171
|
-
"
|
|
4618
|
+
"sanityKey": {
|
|
5172
4619
|
"type": "string"
|
|
5173
4620
|
},
|
|
5174
|
-
"
|
|
5175
|
-
"enum": [
|
|
5176
|
-
0
|
|
5177
|
-
],
|
|
5178
|
-
"type": "integer",
|
|
5179
|
-
"format": "int32",
|
|
5180
|
-
"default": 0,
|
|
5181
|
-
"nullable": true
|
|
5182
|
-
},
|
|
5183
|
-
"url": {
|
|
4621
|
+
"telephone": {
|
|
5184
4622
|
"type": "string"
|
|
5185
4623
|
}
|
|
5186
4624
|
}
|
|
5187
4625
|
},
|
|
5188
|
-
"
|
|
4626
|
+
"sanitySystemsInnerDescriptionInner": {
|
|
5189
4627
|
"type": "object",
|
|
5190
4628
|
"properties": {
|
|
5191
|
-
"
|
|
5192
|
-
"
|
|
5193
|
-
|
|
5194
|
-
"
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
"
|
|
5199
|
-
},
|
|
5200
|
-
"sanityId": {
|
|
5201
|
-
"type": "string"
|
|
4629
|
+
"listItem": {
|
|
4630
|
+
"enum": [
|
|
4631
|
+
"bullet",
|
|
4632
|
+
"number"
|
|
4633
|
+
],
|
|
4634
|
+
"type": "string",
|
|
4635
|
+
"default": "bullet",
|
|
4636
|
+
"nullable": true
|
|
5202
4637
|
},
|
|
5203
4638
|
"sanityType": {
|
|
5204
4639
|
"enum": [
|
|
5205
|
-
|
|
4640
|
+
"block"
|
|
5206
4641
|
],
|
|
5207
|
-
"type": "
|
|
5208
|
-
"
|
|
5209
|
-
|
|
4642
|
+
"type": "string",
|
|
4643
|
+
"default": "block"
|
|
4644
|
+
},
|
|
4645
|
+
"style": {
|
|
4646
|
+
"enum": [
|
|
4647
|
+
"blockquote",
|
|
4648
|
+
"h1",
|
|
4649
|
+
"h2",
|
|
4650
|
+
"h3",
|
|
4651
|
+
"h4",
|
|
4652
|
+
"h5",
|
|
4653
|
+
"h6",
|
|
4654
|
+
"normal"
|
|
4655
|
+
],
|
|
4656
|
+
"type": "string",
|
|
4657
|
+
"default": "blockquote",
|
|
5210
4658
|
"nullable": true
|
|
5211
4659
|
},
|
|
5212
|
-
"
|
|
5213
|
-
"
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
},
|
|
5217
|
-
"sanityEmployee_nextOfKin": {
|
|
5218
|
-
"type": "object",
|
|
5219
|
-
"properties": {
|
|
5220
|
-
"additionalData": {
|
|
5221
|
-
"type": "object",
|
|
5222
|
-
"additionalProperties": {
|
|
5223
|
-
"type": "object"
|
|
4660
|
+
"children": {
|
|
4661
|
+
"type": "array",
|
|
4662
|
+
"items": {
|
|
4663
|
+
"$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
|
|
5224
4664
|
}
|
|
5225
4665
|
},
|
|
5226
|
-
"
|
|
5227
|
-
"type": "
|
|
5228
|
-
|
|
5229
|
-
"sanityKey": {
|
|
5230
|
-
"type": "string"
|
|
4666
|
+
"level": {
|
|
4667
|
+
"type": "number",
|
|
4668
|
+
"format": "double"
|
|
5231
4669
|
},
|
|
5232
|
-
"
|
|
5233
|
-
"
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
"format": "int32",
|
|
5238
|
-
"default": 0,
|
|
5239
|
-
"nullable": true
|
|
4670
|
+
"markDefs": {
|
|
4671
|
+
"type": "array",
|
|
4672
|
+
"items": {
|
|
4673
|
+
"$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
|
|
4674
|
+
}
|
|
5240
4675
|
},
|
|
5241
|
-
"
|
|
4676
|
+
"sanityKey": {
|
|
5242
4677
|
"type": "string"
|
|
5243
4678
|
}
|
|
5244
4679
|
}
|
|
5245
4680
|
},
|
|
5246
|
-
"
|
|
4681
|
+
"sanityTechnologyWithRelationsProjectsInnerTechnologiesInner": {
|
|
5247
4682
|
"type": "object",
|
|
5248
4683
|
"properties": {
|
|
5249
|
-
"additionalData": {
|
|
5250
|
-
"type": "object",
|
|
5251
|
-
"additionalProperties": {
|
|
5252
|
-
"type": "object"
|
|
5253
|
-
}
|
|
5254
|
-
},
|
|
5255
|
-
"name": {
|
|
5256
|
-
"type": "string"
|
|
5257
|
-
},
|
|
5258
|
-
"sanityId": {
|
|
5259
|
-
"type": "string"
|
|
5260
|
-
},
|
|
5261
4684
|
"sanityType": {
|
|
5262
4685
|
"enum": [
|
|
5263
|
-
|
|
4686
|
+
"technology"
|
|
5264
4687
|
],
|
|
5265
|
-
"type": "
|
|
5266
|
-
"
|
|
5267
|
-
"default": 0,
|
|
5268
|
-
"nullable": true
|
|
5269
|
-
},
|
|
5270
|
-
"slug": {
|
|
5271
|
-
"$ref": "#/components/schemas/sanitySlug"
|
|
5272
|
-
}
|
|
5273
|
-
}
|
|
5274
|
-
},
|
|
5275
|
-
"sanityEmployee_technologies": {
|
|
5276
|
-
"type": "object",
|
|
5277
|
-
"properties": {
|
|
5278
|
-
"additionalData": {
|
|
5279
|
-
"type": "object",
|
|
5280
|
-
"additionalProperties": {
|
|
5281
|
-
"type": "object"
|
|
5282
|
-
}
|
|
4688
|
+
"type": "string",
|
|
4689
|
+
"default": "technology"
|
|
5283
4690
|
},
|
|
5284
4691
|
"parent": {
|
|
5285
|
-
"$ref": "#/components/schemas/
|
|
4692
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
|
|
5286
4693
|
},
|
|
5287
4694
|
"sanityId": {
|
|
5288
4695
|
"type": "string"
|
|
5289
4696
|
},
|
|
5290
|
-
"sanityType": {
|
|
5291
|
-
"enum": [
|
|
5292
|
-
0
|
|
5293
|
-
],
|
|
5294
|
-
"type": "integer",
|
|
5295
|
-
"format": "int32",
|
|
5296
|
-
"default": 0,
|
|
5297
|
-
"nullable": true
|
|
5298
|
-
},
|
|
5299
4697
|
"slug": {
|
|
5300
|
-
"$ref": "#/components/schemas/
|
|
4698
|
+
"$ref": "#/components/schemas/slug"
|
|
5301
4699
|
},
|
|
5302
4700
|
"title": {
|
|
5303
4701
|
"type": "string"
|
|
5304
4702
|
}
|
|
5305
4703
|
}
|
|
5306
4704
|
},
|
|
5307
|
-
"
|
|
4705
|
+
"sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
|
|
5308
4706
|
"type": "object",
|
|
5309
4707
|
"properties": {
|
|
5310
|
-
"
|
|
5311
|
-
"
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
4708
|
+
"sanityType": {
|
|
4709
|
+
"enum": [
|
|
4710
|
+
"tag"
|
|
4711
|
+
],
|
|
4712
|
+
"type": "string",
|
|
4713
|
+
"default": "tag"
|
|
5315
4714
|
},
|
|
5316
4715
|
"name": {
|
|
5317
4716
|
"type": "string"
|
|
@@ -5319,166 +4718,75 @@
|
|
|
5319
4718
|
"sanityId": {
|
|
5320
4719
|
"type": "string"
|
|
5321
4720
|
},
|
|
5322
|
-
"sanityType": {
|
|
5323
|
-
"enum": [
|
|
5324
|
-
0
|
|
5325
|
-
],
|
|
5326
|
-
"type": "integer",
|
|
5327
|
-
"format": "int32",
|
|
5328
|
-
"default": 0,
|
|
5329
|
-
"nullable": true
|
|
5330
|
-
},
|
|
5331
4721
|
"slug": {
|
|
5332
|
-
"$ref": "#/components/schemas/
|
|
4722
|
+
"$ref": "#/components/schemas/slug"
|
|
5333
4723
|
}
|
|
5334
4724
|
}
|
|
5335
4725
|
},
|
|
5336
|
-
"
|
|
4726
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner": {
|
|
5337
4727
|
"type": "object",
|
|
5338
4728
|
"properties": {
|
|
5339
|
-
"
|
|
5340
|
-
"
|
|
4729
|
+
"actualInstance": {
|
|
4730
|
+
"type": "object"
|
|
4731
|
+
},
|
|
4732
|
+
"isNullable": {
|
|
4733
|
+
"type": "boolean"
|
|
5341
4734
|
},
|
|
5342
|
-
"
|
|
5343
|
-
"
|
|
4735
|
+
"schemaType": {
|
|
4736
|
+
"type": "string"
|
|
5344
4737
|
}
|
|
5345
4738
|
}
|
|
5346
4739
|
},
|
|
5347
|
-
"
|
|
4740
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
|
|
5348
4741
|
"type": "object",
|
|
5349
4742
|
"properties": {
|
|
5350
|
-
"additionalData": {
|
|
5351
|
-
"type": "object",
|
|
5352
|
-
"additionalProperties": {
|
|
5353
|
-
"type": "object"
|
|
5354
|
-
}
|
|
5355
|
-
},
|
|
5356
|
-
"asset": {
|
|
5357
|
-
"$ref": "#/components/schemas/sanityGalleryMediaSanityImage_asset"
|
|
5358
|
-
},
|
|
5359
|
-
"sanityKey": {
|
|
5360
|
-
"type": "string"
|
|
5361
|
-
},
|
|
5362
4743
|
"sanityType": {
|
|
5363
4744
|
"enum": [
|
|
5364
|
-
|
|
4745
|
+
"image"
|
|
5365
4746
|
],
|
|
5366
|
-
"type": "
|
|
5367
|
-
"
|
|
5368
|
-
|
|
5369
|
-
|
|
4747
|
+
"type": "string",
|
|
4748
|
+
"default": "image"
|
|
4749
|
+
},
|
|
4750
|
+
"asset": {
|
|
4751
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
5370
4752
|
}
|
|
5371
4753
|
}
|
|
5372
4754
|
},
|
|
5373
|
-
"
|
|
4755
|
+
"sanityTvCategoryDashboardsInnerBackgroundImage": {
|
|
5374
4756
|
"type": "object",
|
|
5375
4757
|
"properties": {
|
|
5376
|
-
"additionalData": {
|
|
5377
|
-
"type": "object",
|
|
5378
|
-
"additionalProperties": {
|
|
5379
|
-
"type": "object"
|
|
5380
|
-
}
|
|
5381
|
-
},
|
|
5382
|
-
"mimeType": {
|
|
5383
|
-
"type": "string"
|
|
5384
|
-
},
|
|
5385
|
-
"originalFilename": {
|
|
5386
|
-
"type": "string"
|
|
5387
|
-
},
|
|
5388
|
-
"sanityId": {
|
|
5389
|
-
"type": "string"
|
|
5390
|
-
},
|
|
5391
4758
|
"sanityType": {
|
|
5392
4759
|
"enum": [
|
|
5393
|
-
|
|
4760
|
+
"image"
|
|
5394
4761
|
],
|
|
5395
|
-
"type": "
|
|
5396
|
-
"
|
|
5397
|
-
"default": 0,
|
|
5398
|
-
"nullable": true
|
|
4762
|
+
"type": "string",
|
|
4763
|
+
"default": "image"
|
|
5399
4764
|
},
|
|
5400
|
-
"
|
|
5401
|
-
"
|
|
4765
|
+
"asset": {
|
|
4766
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
5402
4767
|
}
|
|
5403
4768
|
}
|
|
5404
4769
|
},
|
|
5405
|
-
"
|
|
4770
|
+
"sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
|
|
5406
4771
|
"type": "object",
|
|
5407
4772
|
"properties": {
|
|
5408
|
-
"additionalData": {
|
|
5409
|
-
"type": "object",
|
|
5410
|
-
"additionalProperties": {
|
|
5411
|
-
"type": "object"
|
|
5412
|
-
}
|
|
5413
|
-
},
|
|
5414
|
-
"asset": {
|
|
5415
|
-
"$ref": "#/components/schemas/sanityGalleryMediaSanityVideo_asset"
|
|
5416
|
-
},
|
|
5417
|
-
"sanityKey": {
|
|
5418
|
-
"type": "string"
|
|
5419
|
-
},
|
|
5420
4773
|
"sanityType": {
|
|
5421
4774
|
"enum": [
|
|
5422
|
-
|
|
4775
|
+
"sanity.imageAsset"
|
|
5423
4776
|
],
|
|
5424
|
-
"type": "
|
|
5425
|
-
"
|
|
5426
|
-
"default": 0,
|
|
5427
|
-
"nullable": true
|
|
5428
|
-
}
|
|
5429
|
-
}
|
|
5430
|
-
},
|
|
5431
|
-
"sanityGalleryMediaSanityVideo_asset": {
|
|
5432
|
-
"type": "object",
|
|
5433
|
-
"properties": {
|
|
5434
|
-
"additionalData": {
|
|
5435
|
-
"type": "object",
|
|
5436
|
-
"additionalProperties": {
|
|
5437
|
-
"type": "object"
|
|
5438
|
-
}
|
|
4777
|
+
"type": "string",
|
|
4778
|
+
"default": "sanity.imageAsset"
|
|
5439
4779
|
},
|
|
5440
|
-
"
|
|
4780
|
+
"mimeType": {
|
|
5441
4781
|
"type": "string"
|
|
5442
4782
|
},
|
|
5443
|
-
"
|
|
4783
|
+
"originalFilename": {
|
|
5444
4784
|
"type": "string"
|
|
5445
4785
|
},
|
|
5446
4786
|
"sanityId": {
|
|
5447
4787
|
"type": "string"
|
|
5448
4788
|
},
|
|
5449
|
-
"
|
|
5450
|
-
"enum": [
|
|
5451
|
-
0
|
|
5452
|
-
],
|
|
5453
|
-
"type": "integer",
|
|
5454
|
-
"format": "int32",
|
|
5455
|
-
"default": 0,
|
|
5456
|
-
"nullable": true
|
|
5457
|
-
}
|
|
5458
|
-
}
|
|
5459
|
-
},
|
|
5460
|
-
"sanitySlug": {
|
|
5461
|
-
"type": "object",
|
|
5462
|
-
"properties": {
|
|
5463
|
-
"additionalData": {
|
|
5464
|
-
"type": "object",
|
|
5465
|
-
"additionalProperties": {
|
|
5466
|
-
"type": "object"
|
|
5467
|
-
}
|
|
5468
|
-
},
|
|
5469
|
-
"current": {
|
|
5470
|
-
"type": "string"
|
|
5471
|
-
},
|
|
5472
|
-
"sanityType": {
|
|
5473
|
-
"enum": [
|
|
5474
|
-
0
|
|
5475
|
-
],
|
|
5476
|
-
"type": "integer",
|
|
5477
|
-
"format": "int32",
|
|
5478
|
-
"default": 0,
|
|
5479
|
-
"nullable": true
|
|
5480
|
-
},
|
|
5481
|
-
"source": {
|
|
4789
|
+
"url": {
|
|
5482
4790
|
"type": "string"
|
|
5483
4791
|
}
|
|
5484
4792
|
}
|
|
@@ -5583,6 +4891,24 @@
|
|
|
5583
4891
|
}
|
|
5584
4892
|
}
|
|
5585
4893
|
},
|
|
4894
|
+
"slug": {
|
|
4895
|
+
"type": "object",
|
|
4896
|
+
"properties": {
|
|
4897
|
+
"sanityType": {
|
|
4898
|
+
"enum": [
|
|
4899
|
+
"slug"
|
|
4900
|
+
],
|
|
4901
|
+
"type": "string",
|
|
4902
|
+
"default": "slug"
|
|
4903
|
+
},
|
|
4904
|
+
"current": {
|
|
4905
|
+
"type": "string"
|
|
4906
|
+
},
|
|
4907
|
+
"source": {
|
|
4908
|
+
"type": "string"
|
|
4909
|
+
}
|
|
4910
|
+
}
|
|
4911
|
+
},
|
|
5586
4912
|
"statistics": {
|
|
5587
4913
|
"type": "object",
|
|
5588
4914
|
"properties": {
|