@snokam/mcp-api 2.59.0 → 2.60.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 +396 -176
- package/specs/production/blog.json +1135 -154
- package/specs/production/chatgpt.json +24 -1
- package/specs/production/employees.json +1187 -308
- package/specs/production/events.json +841 -267
- package/specs/production/recruitment.json +743 -260
- package/specs/test/accounting.json +396 -176
- package/specs/test/blog.json +1135 -154
- package/specs/test/chatgpt.json +24 -1
- package/specs/test/employees.json +1187 -308
- package/specs/test/events.json +841 -267
- package/specs/test/recruitment.json +743 -260
|
@@ -2755,10 +2755,17 @@
|
|
|
2755
2755
|
"properties": {
|
|
2756
2756
|
"sanityType": {
|
|
2757
2757
|
"enum": [
|
|
2758
|
-
|
|
2758
|
+
1
|
|
2759
2759
|
],
|
|
2760
|
-
"type": "
|
|
2761
|
-
"
|
|
2760
|
+
"type": "integer",
|
|
2761
|
+
"format": "int32",
|
|
2762
|
+
"default": 1
|
|
2763
|
+
},
|
|
2764
|
+
"sanityKey": {
|
|
2765
|
+
"type": "string"
|
|
2766
|
+
},
|
|
2767
|
+
"marksOption": {
|
|
2768
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
2762
2769
|
},
|
|
2763
2770
|
"marks": {
|
|
2764
2771
|
"type": "array",
|
|
@@ -2766,8 +2773,8 @@
|
|
|
2766
2773
|
"type": "string"
|
|
2767
2774
|
}
|
|
2768
2775
|
},
|
|
2769
|
-
"
|
|
2770
|
-
"
|
|
2776
|
+
"textOption": {
|
|
2777
|
+
"$ref": "#/components/schemas/option_string"
|
|
2771
2778
|
},
|
|
2772
2779
|
"text": {
|
|
2773
2780
|
"type": "string"
|
|
@@ -2779,15 +2786,19 @@
|
|
|
2779
2786
|
"properties": {
|
|
2780
2787
|
"sanityType": {
|
|
2781
2788
|
"enum": [
|
|
2782
|
-
|
|
2789
|
+
1
|
|
2783
2790
|
],
|
|
2784
|
-
"type": "
|
|
2785
|
-
"
|
|
2791
|
+
"type": "integer",
|
|
2792
|
+
"format": "int32",
|
|
2793
|
+
"default": 1
|
|
2786
2794
|
},
|
|
2787
|
-
"
|
|
2795
|
+
"sanityKey": {
|
|
2788
2796
|
"type": "string"
|
|
2789
2797
|
},
|
|
2790
|
-
"
|
|
2798
|
+
"hrefOption": {
|
|
2799
|
+
"$ref": "#/components/schemas/option_string"
|
|
2800
|
+
},
|
|
2801
|
+
"href": {
|
|
2791
2802
|
"type": "string"
|
|
2792
2803
|
}
|
|
2793
2804
|
}
|
|
@@ -3665,6 +3676,42 @@
|
|
|
3665
3676
|
},
|
|
3666
3677
|
"nullable": true
|
|
3667
3678
|
},
|
|
3679
|
+
"option_list`1": {
|
|
3680
|
+
"type": "object",
|
|
3681
|
+
"properties": {
|
|
3682
|
+
"value": {
|
|
3683
|
+
"type": "array",
|
|
3684
|
+
"items": {
|
|
3685
|
+
"type": "string"
|
|
3686
|
+
}
|
|
3687
|
+
}
|
|
3688
|
+
}
|
|
3689
|
+
},
|
|
3690
|
+
"option_nullable`1": {
|
|
3691
|
+
"type": "object",
|
|
3692
|
+
"properties": {
|
|
3693
|
+
"value": {
|
|
3694
|
+
"enum": [
|
|
3695
|
+
1,
|
|
3696
|
+
2,
|
|
3697
|
+
3,
|
|
3698
|
+
4
|
|
3699
|
+
],
|
|
3700
|
+
"type": "integer",
|
|
3701
|
+
"format": "int32",
|
|
3702
|
+
"default": 1,
|
|
3703
|
+
"nullable": true
|
|
3704
|
+
}
|
|
3705
|
+
}
|
|
3706
|
+
},
|
|
3707
|
+
"option_string": {
|
|
3708
|
+
"type": "object",
|
|
3709
|
+
"properties": {
|
|
3710
|
+
"value": {
|
|
3711
|
+
"type": "string"
|
|
3712
|
+
}
|
|
3713
|
+
}
|
|
3714
|
+
},
|
|
3668
3715
|
"ownershipSnapshot": {
|
|
3669
3716
|
"required": [
|
|
3670
3717
|
"date",
|
|
@@ -3700,10 +3747,11 @@
|
|
|
3700
3747
|
"properties": {
|
|
3701
3748
|
"sanityType": {
|
|
3702
3749
|
"enum": [
|
|
3703
|
-
|
|
3750
|
+
1
|
|
3704
3751
|
],
|
|
3705
|
-
"type": "
|
|
3706
|
-
"
|
|
3752
|
+
"type": "integer",
|
|
3753
|
+
"format": "int32",
|
|
3754
|
+
"default": 1
|
|
3707
3755
|
},
|
|
3708
3756
|
"sanityKey": {
|
|
3709
3757
|
"type": "string"
|
|
@@ -3711,8 +3759,12 @@
|
|
|
3711
3759
|
"sanityRef": {
|
|
3712
3760
|
"type": "string"
|
|
3713
3761
|
},
|
|
3762
|
+
"sanityWeakOption": {
|
|
3763
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
3764
|
+
},
|
|
3714
3765
|
"sanityWeak": {
|
|
3715
|
-
"type": "boolean"
|
|
3766
|
+
"type": "boolean",
|
|
3767
|
+
"nullable": true
|
|
3716
3768
|
}
|
|
3717
3769
|
}
|
|
3718
3770
|
},
|
|
@@ -4261,70 +4313,118 @@
|
|
|
4261
4313
|
"properties": {
|
|
4262
4314
|
"gender": {
|
|
4263
4315
|
"enum": [
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4316
|
+
1,
|
|
4317
|
+
2,
|
|
4318
|
+
3
|
|
4267
4319
|
],
|
|
4268
|
-
"type": "
|
|
4269
|
-
"
|
|
4320
|
+
"type": "integer",
|
|
4321
|
+
"format": "int32",
|
|
4322
|
+
"default": 1
|
|
4270
4323
|
},
|
|
4271
|
-
"
|
|
4324
|
+
"sanityType": {
|
|
4272
4325
|
"enum": [
|
|
4273
|
-
|
|
4274
|
-
"married",
|
|
4275
|
-
"single"
|
|
4326
|
+
1
|
|
4276
4327
|
],
|
|
4277
|
-
"type": "
|
|
4278
|
-
"
|
|
4279
|
-
"
|
|
4328
|
+
"type": "integer",
|
|
4329
|
+
"format": "int32",
|
|
4330
|
+
"default": 1
|
|
4280
4331
|
},
|
|
4281
|
-
"
|
|
4332
|
+
"maritalStatusOption": {
|
|
4333
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4334
|
+
},
|
|
4335
|
+
"maritalStatus": {
|
|
4282
4336
|
"enum": [
|
|
4283
|
-
|
|
4337
|
+
1,
|
|
4338
|
+
2,
|
|
4339
|
+
3
|
|
4284
4340
|
],
|
|
4285
|
-
"type": "
|
|
4286
|
-
"
|
|
4341
|
+
"type": "integer",
|
|
4342
|
+
"format": "int32",
|
|
4343
|
+
"default": 1,
|
|
4344
|
+
"nullable": true
|
|
4287
4345
|
},
|
|
4288
|
-
"
|
|
4346
|
+
"active": {
|
|
4347
|
+
"type": "boolean"
|
|
4348
|
+
},
|
|
4349
|
+
"birthDate": {
|
|
4289
4350
|
"type": "string"
|
|
4290
4351
|
},
|
|
4291
|
-
"
|
|
4352
|
+
"blurredImage": {
|
|
4353
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4354
|
+
},
|
|
4355
|
+
"boardMember": {
|
|
4292
4356
|
"type": "boolean"
|
|
4293
4357
|
},
|
|
4358
|
+
"email": {
|
|
4359
|
+
"type": "string"
|
|
4360
|
+
},
|
|
4361
|
+
"image": {
|
|
4362
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4363
|
+
},
|
|
4364
|
+
"name": {
|
|
4365
|
+
"type": "string"
|
|
4366
|
+
},
|
|
4367
|
+
"sanityCreatedAt": {
|
|
4368
|
+
"type": "string"
|
|
4369
|
+
},
|
|
4370
|
+
"sanityId": {
|
|
4371
|
+
"type": "string"
|
|
4372
|
+
},
|
|
4373
|
+
"sanityRev": {
|
|
4374
|
+
"type": "string"
|
|
4375
|
+
},
|
|
4376
|
+
"sanityUpdatedAt": {
|
|
4377
|
+
"type": "string"
|
|
4378
|
+
},
|
|
4379
|
+
"slug": {
|
|
4380
|
+
"$ref": "#/components/schemas/slug"
|
|
4381
|
+
},
|
|
4382
|
+
"startDate": {
|
|
4383
|
+
"type": "string"
|
|
4384
|
+
},
|
|
4385
|
+
"telephone": {
|
|
4386
|
+
"type": "string"
|
|
4387
|
+
},
|
|
4388
|
+
"aboutOption": {
|
|
4389
|
+
"$ref": "#/components/schemas/option_string"
|
|
4390
|
+
},
|
|
4391
|
+
"about": {
|
|
4392
|
+
"type": "string"
|
|
4393
|
+
},
|
|
4394
|
+
"addressOption": {
|
|
4395
|
+
"$ref": "#/components/schemas/option_string"
|
|
4396
|
+
},
|
|
4294
4397
|
"address": {
|
|
4295
4398
|
"type": "string"
|
|
4296
4399
|
},
|
|
4400
|
+
"allergiesOption": {
|
|
4401
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
4402
|
+
},
|
|
4297
4403
|
"allergies": {
|
|
4298
4404
|
"type": "array",
|
|
4299
4405
|
"items": {
|
|
4300
4406
|
"type": "string"
|
|
4301
4407
|
}
|
|
4302
4408
|
},
|
|
4303
|
-
"birth_date": {
|
|
4304
|
-
"type": "string"
|
|
4305
|
-
},
|
|
4306
|
-
"blurred_image": {
|
|
4307
|
-
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4308
|
-
},
|
|
4309
|
-
"boardMember": {
|
|
4310
|
-
"type": "boolean"
|
|
4311
|
-
},
|
|
4312
4409
|
"cliftonStrengths": {
|
|
4313
4410
|
"type": "array",
|
|
4314
4411
|
"items": {
|
|
4315
4412
|
"$ref": "#/components/schemas/sanityEmployeeCliftonStrengthsInner"
|
|
4316
4413
|
}
|
|
4317
4414
|
},
|
|
4415
|
+
"coinbaseAccountEmailOption": {
|
|
4416
|
+
"$ref": "#/components/schemas/option_string"
|
|
4417
|
+
},
|
|
4318
4418
|
"coinbaseAccountEmail": {
|
|
4319
4419
|
"type": "string"
|
|
4320
4420
|
},
|
|
4321
4421
|
"commissionTier": {
|
|
4322
4422
|
"$ref": "#/components/schemas/sanityEmployeeCommissionTier"
|
|
4323
4423
|
},
|
|
4324
|
-
"
|
|
4325
|
-
"
|
|
4424
|
+
"educationOption": {
|
|
4425
|
+
"$ref": "#/components/schemas/option_string"
|
|
4326
4426
|
},
|
|
4327
|
-
"
|
|
4427
|
+
"education": {
|
|
4328
4428
|
"type": "string"
|
|
4329
4429
|
},
|
|
4330
4430
|
"equipment": {
|
|
@@ -4333,9 +4433,13 @@
|
|
|
4333
4433
|
"$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
|
|
4334
4434
|
}
|
|
4335
4435
|
},
|
|
4436
|
+
"graduationYearOption": {
|
|
4437
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4438
|
+
},
|
|
4336
4439
|
"graduationYear": {
|
|
4337
4440
|
"type": "number",
|
|
4338
|
-
"format": "double"
|
|
4441
|
+
"format": "double",
|
|
4442
|
+
"nullable": true
|
|
4339
4443
|
},
|
|
4340
4444
|
"groups": {
|
|
4341
4445
|
"type": "array",
|
|
@@ -4343,18 +4447,34 @@
|
|
|
4343
4447
|
"$ref": "#/components/schemas/sanityEmployeeGroupsInner"
|
|
4344
4448
|
}
|
|
4345
4449
|
},
|
|
4346
|
-
"
|
|
4347
|
-
"$ref": "#/components/schemas/
|
|
4450
|
+
"innovativeSalaryOption": {
|
|
4451
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4348
4452
|
},
|
|
4349
4453
|
"innovativeSalary": {
|
|
4350
|
-
"type": "boolean"
|
|
4454
|
+
"type": "boolean",
|
|
4455
|
+
"nullable": true
|
|
4456
|
+
},
|
|
4457
|
+
"innovativeSalaryPercentageOption": {
|
|
4458
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4351
4459
|
},
|
|
4352
4460
|
"innovativeSalaryPercentage": {
|
|
4353
4461
|
"type": "number",
|
|
4354
|
-
"format": "double"
|
|
4462
|
+
"format": "double",
|
|
4463
|
+
"nullable": true
|
|
4464
|
+
},
|
|
4465
|
+
"isBotOption": {
|
|
4466
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4355
4467
|
},
|
|
4356
4468
|
"isBot": {
|
|
4357
|
-
"type": "boolean"
|
|
4469
|
+
"type": "boolean",
|
|
4470
|
+
"nullable": true
|
|
4471
|
+
},
|
|
4472
|
+
"isSeekingProjectOption": {
|
|
4473
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4474
|
+
},
|
|
4475
|
+
"isSeekingProject": {
|
|
4476
|
+
"type": "boolean",
|
|
4477
|
+
"nullable": true
|
|
4358
4478
|
},
|
|
4359
4479
|
"manager": {
|
|
4360
4480
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
@@ -4365,38 +4485,30 @@
|
|
|
4365
4485
|
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
|
|
4366
4486
|
}
|
|
4367
4487
|
},
|
|
4368
|
-
"name": {
|
|
4369
|
-
"type": "string"
|
|
4370
|
-
},
|
|
4371
4488
|
"nextOfKin": {
|
|
4372
4489
|
"type": "array",
|
|
4373
4490
|
"items": {
|
|
4374
4491
|
"$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
|
|
4375
4492
|
}
|
|
4376
4493
|
},
|
|
4494
|
+
"nrOfChildrenOption": {
|
|
4495
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4496
|
+
},
|
|
4377
4497
|
"nrOfChildren": {
|
|
4378
4498
|
"type": "number",
|
|
4379
|
-
"format": "double"
|
|
4380
|
-
|
|
4381
|
-
"position": {
|
|
4382
|
-
"type": "string"
|
|
4383
|
-
},
|
|
4384
|
-
"sanityCreatedAt": {
|
|
4385
|
-
"type": "string"
|
|
4386
|
-
},
|
|
4387
|
-
"sanityId": {
|
|
4388
|
-
"type": "string"
|
|
4499
|
+
"format": "double",
|
|
4500
|
+
"nullable": true
|
|
4389
4501
|
},
|
|
4390
|
-
"
|
|
4391
|
-
"
|
|
4502
|
+
"personalProjectRequirementsOption": {
|
|
4503
|
+
"$ref": "#/components/schemas/option_string"
|
|
4392
4504
|
},
|
|
4393
|
-
"
|
|
4505
|
+
"personalProjectRequirements": {
|
|
4394
4506
|
"type": "string"
|
|
4395
4507
|
},
|
|
4396
|
-
"
|
|
4397
|
-
"$ref": "#/components/schemas/
|
|
4508
|
+
"positionOption": {
|
|
4509
|
+
"$ref": "#/components/schemas/option_string"
|
|
4398
4510
|
},
|
|
4399
|
-
"
|
|
4511
|
+
"position": {
|
|
4400
4512
|
"type": "string"
|
|
4401
4513
|
},
|
|
4402
4514
|
"tags": {
|
|
@@ -4410,32 +4522,34 @@
|
|
|
4410
4522
|
"items": {
|
|
4411
4523
|
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInner"
|
|
4412
4524
|
}
|
|
4413
|
-
},
|
|
4414
|
-
"telephone": {
|
|
4415
|
-
"type": "string"
|
|
4416
4525
|
}
|
|
4417
4526
|
}
|
|
4418
4527
|
},
|
|
4419
4528
|
"sanityEmployeeCliftonStrengthsInner": {
|
|
4420
4529
|
"type": "object",
|
|
4421
4530
|
"properties": {
|
|
4422
|
-
"
|
|
4531
|
+
"sanityType": {
|
|
4423
4532
|
"enum": [
|
|
4424
|
-
|
|
4425
|
-
"influencing",
|
|
4426
|
-
"relationship_building",
|
|
4427
|
-
"strategic_thinking"
|
|
4533
|
+
1
|
|
4428
4534
|
],
|
|
4429
|
-
"type": "
|
|
4430
|
-
"
|
|
4431
|
-
"
|
|
4535
|
+
"type": "integer",
|
|
4536
|
+
"format": "int32",
|
|
4537
|
+
"default": 1
|
|
4432
4538
|
},
|
|
4433
|
-
"
|
|
4539
|
+
"domainOption": {
|
|
4540
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4541
|
+
},
|
|
4542
|
+
"domain": {
|
|
4434
4543
|
"enum": [
|
|
4435
|
-
|
|
4544
|
+
1,
|
|
4545
|
+
2,
|
|
4546
|
+
3,
|
|
4547
|
+
4
|
|
4436
4548
|
],
|
|
4437
|
-
"type": "
|
|
4438
|
-
"
|
|
4549
|
+
"type": "integer",
|
|
4550
|
+
"format": "int32",
|
|
4551
|
+
"default": 1,
|
|
4552
|
+
"nullable": true
|
|
4439
4553
|
},
|
|
4440
4554
|
"sanityCreatedAt": {
|
|
4441
4555
|
"type": "string"
|
|
@@ -4459,14 +4573,11 @@
|
|
|
4459
4573
|
"properties": {
|
|
4460
4574
|
"sanityType": {
|
|
4461
4575
|
"enum": [
|
|
4462
|
-
|
|
4576
|
+
1
|
|
4463
4577
|
],
|
|
4464
|
-
"type": "
|
|
4465
|
-
"
|
|
4466
|
-
|
|
4467
|
-
"commission": {
|
|
4468
|
-
"type": "number",
|
|
4469
|
-
"format": "double"
|
|
4578
|
+
"type": "integer",
|
|
4579
|
+
"format": "int32",
|
|
4580
|
+
"default": 1
|
|
4470
4581
|
},
|
|
4471
4582
|
"sanityCreatedAt": {
|
|
4472
4583
|
"type": "string"
|
|
@@ -4482,6 +4593,14 @@
|
|
|
4482
4593
|
},
|
|
4483
4594
|
"title": {
|
|
4484
4595
|
"type": "string"
|
|
4596
|
+
},
|
|
4597
|
+
"commissionOption": {
|
|
4598
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4599
|
+
},
|
|
4600
|
+
"commission": {
|
|
4601
|
+
"type": "number",
|
|
4602
|
+
"format": "double",
|
|
4603
|
+
"nullable": true
|
|
4485
4604
|
}
|
|
4486
4605
|
}
|
|
4487
4606
|
},
|
|
@@ -4490,10 +4609,17 @@
|
|
|
4490
4609
|
"properties": {
|
|
4491
4610
|
"sanityType": {
|
|
4492
4611
|
"enum": [
|
|
4493
|
-
|
|
4612
|
+
1
|
|
4494
4613
|
],
|
|
4495
|
-
"type": "
|
|
4496
|
-
"
|
|
4614
|
+
"type": "integer",
|
|
4615
|
+
"format": "int32",
|
|
4616
|
+
"default": 1
|
|
4617
|
+
},
|
|
4618
|
+
"sanityId": {
|
|
4619
|
+
"type": "string"
|
|
4620
|
+
},
|
|
4621
|
+
"title": {
|
|
4622
|
+
"type": "string"
|
|
4497
4623
|
},
|
|
4498
4624
|
"description": {
|
|
4499
4625
|
"type": "array",
|
|
@@ -4509,12 +4635,6 @@
|
|
|
4509
4635
|
"items": {
|
|
4510
4636
|
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4511
4637
|
}
|
|
4512
|
-
},
|
|
4513
|
-
"sanityId": {
|
|
4514
|
-
"type": "string"
|
|
4515
|
-
},
|
|
4516
|
-
"title": {
|
|
4517
|
-
"type": "string"
|
|
4518
4638
|
}
|
|
4519
4639
|
}
|
|
4520
4640
|
},
|
|
@@ -4523,26 +4643,15 @@
|
|
|
4523
4643
|
"properties": {
|
|
4524
4644
|
"sanityType": {
|
|
4525
4645
|
"enum": [
|
|
4526
|
-
|
|
4646
|
+
1
|
|
4527
4647
|
],
|
|
4528
|
-
"type": "
|
|
4529
|
-
"
|
|
4530
|
-
|
|
4531
|
-
"description": {
|
|
4532
|
-
"type": "array",
|
|
4533
|
-
"items": {
|
|
4534
|
-
"$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
|
|
4535
|
-
}
|
|
4648
|
+
"type": "integer",
|
|
4649
|
+
"format": "int32",
|
|
4650
|
+
"default": 1
|
|
4536
4651
|
},
|
|
4537
4652
|
"image": {
|
|
4538
4653
|
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
4539
4654
|
},
|
|
4540
|
-
"leaders": {
|
|
4541
|
-
"type": "array",
|
|
4542
|
-
"items": {
|
|
4543
|
-
"$ref": "#/components/schemas/pageEmployeeOrderInner"
|
|
4544
|
-
}
|
|
4545
|
-
},
|
|
4546
4655
|
"name": {
|
|
4547
4656
|
"type": "string"
|
|
4548
4657
|
},
|
|
@@ -4557,6 +4666,24 @@
|
|
|
4557
4666
|
},
|
|
4558
4667
|
"sanityUpdatedAt": {
|
|
4559
4668
|
"type": "string"
|
|
4669
|
+
},
|
|
4670
|
+
"descriptionOption": {
|
|
4671
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
4672
|
+
},
|
|
4673
|
+
"description": {
|
|
4674
|
+
"type": "array",
|
|
4675
|
+
"items": {
|
|
4676
|
+
"$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
|
|
4677
|
+
}
|
|
4678
|
+
},
|
|
4679
|
+
"leadersOption": {
|
|
4680
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
4681
|
+
},
|
|
4682
|
+
"leaders": {
|
|
4683
|
+
"type": "array",
|
|
4684
|
+
"items": {
|
|
4685
|
+
"$ref": "#/components/schemas/pageEmployeeOrderInner"
|
|
4686
|
+
}
|
|
4560
4687
|
}
|
|
4561
4688
|
}
|
|
4562
4689
|
},
|
|
@@ -4565,10 +4692,11 @@
|
|
|
4565
4692
|
"properties": {
|
|
4566
4693
|
"sanityType": {
|
|
4567
4694
|
"enum": [
|
|
4568
|
-
|
|
4695
|
+
1
|
|
4569
4696
|
],
|
|
4570
|
-
"type": "
|
|
4571
|
-
"
|
|
4697
|
+
"type": "integer",
|
|
4698
|
+
"format": "int32",
|
|
4699
|
+
"default": 1
|
|
4572
4700
|
},
|
|
4573
4701
|
"email": {
|
|
4574
4702
|
"type": "string"
|
|
@@ -4585,14 +4713,14 @@
|
|
|
4585
4713
|
"slug": {
|
|
4586
4714
|
"$ref": "#/components/schemas/slug"
|
|
4587
4715
|
},
|
|
4716
|
+
"telephone": {
|
|
4717
|
+
"type": "string"
|
|
4718
|
+
},
|
|
4588
4719
|
"tags": {
|
|
4589
4720
|
"type": "array",
|
|
4590
4721
|
"items": {
|
|
4591
4722
|
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
|
|
4592
4723
|
}
|
|
4593
|
-
},
|
|
4594
|
-
"telephone": {
|
|
4595
|
-
"type": "string"
|
|
4596
4724
|
}
|
|
4597
4725
|
}
|
|
4598
4726
|
},
|
|
@@ -4601,17 +4729,24 @@
|
|
|
4601
4729
|
"properties": {
|
|
4602
4730
|
"sanityType": {
|
|
4603
4731
|
"enum": [
|
|
4604
|
-
|
|
4732
|
+
1
|
|
4605
4733
|
],
|
|
4606
|
-
"type": "
|
|
4607
|
-
"
|
|
4734
|
+
"type": "integer",
|
|
4735
|
+
"format": "int32",
|
|
4736
|
+
"default": 1
|
|
4608
4737
|
},
|
|
4609
|
-
"
|
|
4738
|
+
"sanityKey": {
|
|
4610
4739
|
"type": "string"
|
|
4611
4740
|
},
|
|
4612
|
-
"
|
|
4741
|
+
"nameOption": {
|
|
4742
|
+
"$ref": "#/components/schemas/option_string"
|
|
4743
|
+
},
|
|
4744
|
+
"name": {
|
|
4613
4745
|
"type": "string"
|
|
4614
4746
|
},
|
|
4747
|
+
"telephoneOption": {
|
|
4748
|
+
"$ref": "#/components/schemas/option_string"
|
|
4749
|
+
},
|
|
4615
4750
|
"telephone": {
|
|
4616
4751
|
"type": "string"
|
|
4617
4752
|
}
|
|
@@ -4620,55 +4755,74 @@
|
|
|
4620
4755
|
"sanitySystemsInnerDescriptionInner": {
|
|
4621
4756
|
"type": "object",
|
|
4622
4757
|
"properties": {
|
|
4623
|
-
"
|
|
4758
|
+
"sanityType": {
|
|
4624
4759
|
"enum": [
|
|
4625
|
-
|
|
4626
|
-
"number"
|
|
4760
|
+
1
|
|
4627
4761
|
],
|
|
4628
|
-
"type": "
|
|
4629
|
-
"
|
|
4630
|
-
"
|
|
4762
|
+
"type": "integer",
|
|
4763
|
+
"format": "int32",
|
|
4764
|
+
"default": 1
|
|
4631
4765
|
},
|
|
4632
|
-
"
|
|
4766
|
+
"listItemOption": {
|
|
4767
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4768
|
+
},
|
|
4769
|
+
"listItem": {
|
|
4633
4770
|
"enum": [
|
|
4634
|
-
|
|
4771
|
+
1,
|
|
4772
|
+
2
|
|
4635
4773
|
],
|
|
4636
|
-
"type": "
|
|
4637
|
-
"
|
|
4774
|
+
"type": "integer",
|
|
4775
|
+
"format": "int32",
|
|
4776
|
+
"default": 1,
|
|
4777
|
+
"nullable": true
|
|
4778
|
+
},
|
|
4779
|
+
"styleOption": {
|
|
4780
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4638
4781
|
},
|
|
4639
4782
|
"style": {
|
|
4640
4783
|
"enum": [
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4784
|
+
1,
|
|
4785
|
+
2,
|
|
4786
|
+
3,
|
|
4787
|
+
4,
|
|
4788
|
+
5,
|
|
4789
|
+
6,
|
|
4790
|
+
7,
|
|
4791
|
+
8
|
|
4649
4792
|
],
|
|
4650
|
-
"type": "
|
|
4651
|
-
"
|
|
4793
|
+
"type": "integer",
|
|
4794
|
+
"format": "int32",
|
|
4795
|
+
"default": 1,
|
|
4652
4796
|
"nullable": true
|
|
4653
4797
|
},
|
|
4798
|
+
"sanityKey": {
|
|
4799
|
+
"type": "string"
|
|
4800
|
+
},
|
|
4801
|
+
"childrenOption": {
|
|
4802
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
4803
|
+
},
|
|
4654
4804
|
"children": {
|
|
4655
4805
|
"type": "array",
|
|
4656
4806
|
"items": {
|
|
4657
4807
|
"$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
|
|
4658
4808
|
}
|
|
4659
4809
|
},
|
|
4810
|
+
"levelOption": {
|
|
4811
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
4812
|
+
},
|
|
4660
4813
|
"level": {
|
|
4661
4814
|
"type": "number",
|
|
4662
|
-
"format": "double"
|
|
4815
|
+
"format": "double",
|
|
4816
|
+
"nullable": true
|
|
4817
|
+
},
|
|
4818
|
+
"markDefsOption": {
|
|
4819
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
4663
4820
|
},
|
|
4664
4821
|
"markDefs": {
|
|
4665
4822
|
"type": "array",
|
|
4666
4823
|
"items": {
|
|
4667
4824
|
"$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
|
|
4668
4825
|
}
|
|
4669
|
-
},
|
|
4670
|
-
"sanityKey": {
|
|
4671
|
-
"type": "string"
|
|
4672
4826
|
}
|
|
4673
4827
|
}
|
|
4674
4828
|
},
|
|
@@ -4677,10 +4831,11 @@
|
|
|
4677
4831
|
"properties": {
|
|
4678
4832
|
"sanityType": {
|
|
4679
4833
|
"enum": [
|
|
4680
|
-
|
|
4834
|
+
1
|
|
4681
4835
|
],
|
|
4682
|
-
"type": "
|
|
4683
|
-
"
|
|
4836
|
+
"type": "integer",
|
|
4837
|
+
"format": "int32",
|
|
4838
|
+
"default": 1
|
|
4684
4839
|
},
|
|
4685
4840
|
"parent": {
|
|
4686
4841
|
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
|
|
@@ -4701,10 +4856,11 @@
|
|
|
4701
4856
|
"properties": {
|
|
4702
4857
|
"sanityType": {
|
|
4703
4858
|
"enum": [
|
|
4704
|
-
|
|
4859
|
+
1
|
|
4705
4860
|
],
|
|
4706
|
-
"type": "
|
|
4707
|
-
"
|
|
4861
|
+
"type": "integer",
|
|
4862
|
+
"format": "int32",
|
|
4863
|
+
"default": 1
|
|
4708
4864
|
},
|
|
4709
4865
|
"name": {
|
|
4710
4866
|
"type": "string"
|
|
@@ -4720,13 +4876,70 @@
|
|
|
4720
4876
|
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner": {
|
|
4721
4877
|
"type": "object",
|
|
4722
4878
|
"properties": {
|
|
4723
|
-
"
|
|
4724
|
-
"
|
|
4879
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf": {
|
|
4880
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf"
|
|
4725
4881
|
},
|
|
4726
|
-
"
|
|
4727
|
-
"
|
|
4882
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1": {
|
|
4883
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1"
|
|
4884
|
+
}
|
|
4885
|
+
}
|
|
4886
|
+
},
|
|
4887
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf": {
|
|
4888
|
+
"type": "object",
|
|
4889
|
+
"properties": {
|
|
4890
|
+
"sanityType": {
|
|
4891
|
+
"enum": [
|
|
4892
|
+
1
|
|
4893
|
+
],
|
|
4894
|
+
"type": "integer",
|
|
4895
|
+
"format": "int32",
|
|
4896
|
+
"default": 1
|
|
4728
4897
|
},
|
|
4729
|
-
"
|
|
4898
|
+
"sanityKey": {
|
|
4899
|
+
"type": "string"
|
|
4900
|
+
},
|
|
4901
|
+
"asset": {
|
|
4902
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
4903
|
+
}
|
|
4904
|
+
}
|
|
4905
|
+
},
|
|
4906
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1": {
|
|
4907
|
+
"type": "object",
|
|
4908
|
+
"properties": {
|
|
4909
|
+
"sanityType": {
|
|
4910
|
+
"enum": [
|
|
4911
|
+
1
|
|
4912
|
+
],
|
|
4913
|
+
"type": "integer",
|
|
4914
|
+
"format": "int32",
|
|
4915
|
+
"default": 1
|
|
4916
|
+
},
|
|
4917
|
+
"sanityKey": {
|
|
4918
|
+
"type": "string"
|
|
4919
|
+
},
|
|
4920
|
+
"asset": {
|
|
4921
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset"
|
|
4922
|
+
}
|
|
4923
|
+
}
|
|
4924
|
+
},
|
|
4925
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset": {
|
|
4926
|
+
"type": "object",
|
|
4927
|
+
"properties": {
|
|
4928
|
+
"sanityType": {
|
|
4929
|
+
"enum": [
|
|
4930
|
+
1
|
|
4931
|
+
],
|
|
4932
|
+
"type": "integer",
|
|
4933
|
+
"format": "int32",
|
|
4934
|
+
"default": 1
|
|
4935
|
+
},
|
|
4936
|
+
"sanityId": {
|
|
4937
|
+
"type": "string"
|
|
4938
|
+
},
|
|
4939
|
+
"filename": {
|
|
4940
|
+
"type": "string"
|
|
4941
|
+
},
|
|
4942
|
+
"playbackId": {
|
|
4730
4943
|
"type": "string"
|
|
4731
4944
|
}
|
|
4732
4945
|
}
|
|
@@ -4736,10 +4949,11 @@
|
|
|
4736
4949
|
"properties": {
|
|
4737
4950
|
"sanityType": {
|
|
4738
4951
|
"enum": [
|
|
4739
|
-
|
|
4952
|
+
1
|
|
4740
4953
|
],
|
|
4741
|
-
"type": "
|
|
4742
|
-
"
|
|
4954
|
+
"type": "integer",
|
|
4955
|
+
"format": "int32",
|
|
4956
|
+
"default": 1
|
|
4743
4957
|
},
|
|
4744
4958
|
"asset": {
|
|
4745
4959
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
@@ -4751,10 +4965,11 @@
|
|
|
4751
4965
|
"properties": {
|
|
4752
4966
|
"sanityType": {
|
|
4753
4967
|
"enum": [
|
|
4754
|
-
|
|
4968
|
+
1
|
|
4755
4969
|
],
|
|
4756
|
-
"type": "
|
|
4757
|
-
"
|
|
4970
|
+
"type": "integer",
|
|
4971
|
+
"format": "int32",
|
|
4972
|
+
"default": 1
|
|
4758
4973
|
},
|
|
4759
4974
|
"asset": {
|
|
4760
4975
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
@@ -4766,22 +4981,23 @@
|
|
|
4766
4981
|
"properties": {
|
|
4767
4982
|
"sanityType": {
|
|
4768
4983
|
"enum": [
|
|
4769
|
-
|
|
4984
|
+
1
|
|
4770
4985
|
],
|
|
4771
|
-
"type": "
|
|
4772
|
-
"
|
|
4986
|
+
"type": "integer",
|
|
4987
|
+
"format": "int32",
|
|
4988
|
+
"default": 1
|
|
4773
4989
|
},
|
|
4774
4990
|
"mimeType": {
|
|
4775
4991
|
"type": "string"
|
|
4776
4992
|
},
|
|
4777
|
-
"originalFilename": {
|
|
4778
|
-
"type": "string"
|
|
4779
|
-
},
|
|
4780
4993
|
"sanityId": {
|
|
4781
4994
|
"type": "string"
|
|
4782
4995
|
},
|
|
4783
4996
|
"url": {
|
|
4784
4997
|
"type": "string"
|
|
4998
|
+
},
|
|
4999
|
+
"originalFilename": {
|
|
5000
|
+
"type": "string"
|
|
4785
5001
|
}
|
|
4786
5002
|
}
|
|
4787
5003
|
},
|
|
@@ -4890,14 +5106,18 @@
|
|
|
4890
5106
|
"properties": {
|
|
4891
5107
|
"sanityType": {
|
|
4892
5108
|
"enum": [
|
|
4893
|
-
|
|
5109
|
+
1
|
|
4894
5110
|
],
|
|
4895
|
-
"type": "
|
|
4896
|
-
"
|
|
5111
|
+
"type": "integer",
|
|
5112
|
+
"format": "int32",
|
|
5113
|
+
"default": 1
|
|
4897
5114
|
},
|
|
4898
5115
|
"current": {
|
|
4899
5116
|
"type": "string"
|
|
4900
5117
|
},
|
|
5118
|
+
"sourceOption": {
|
|
5119
|
+
"$ref": "#/components/schemas/option_string"
|
|
5120
|
+
},
|
|
4901
5121
|
"source": {
|
|
4902
5122
|
"type": "string"
|
|
4903
5123
|
}
|