@snokam/mcp-api 0.93.1 → 0.95.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "0.93.1",
3
+ "version": "0.95.1",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -97,6 +97,15 @@
97
97
  "type": "string"
98
98
  },
99
99
  "x-ms-summary": "The slug or id of the event"
100
+ },
101
+ {
102
+ "name": "token",
103
+ "in": "query",
104
+ "description": "Guest participation token; grants read access to a non-public event",
105
+ "schema": {
106
+ "type": "string"
107
+ },
108
+ "x-ms-summary": "Participant token"
100
109
  }
101
110
  ],
102
111
  "responses": {
@@ -2012,7 +2012,9 @@
2012
2012
  5,
2013
2013
  6,
2014
2014
  7,
2015
- 8
2015
+ 8,
2016
+ 9,
2017
+ 10
2016
2018
  ],
2017
2019
  "type": "integer",
2018
2020
  "format": "int32",
@@ -2094,7 +2096,10 @@
2094
2096
  "status": {
2095
2097
  "enum": [
2096
2098
  "CREATED",
2099
+ "INTRODUCTION_INTERVIEW",
2097
2100
  "INTRODUCTION",
2101
+ "TECHNICAL_INTERVIEW",
2102
+ "SALES_INTERVIEW",
2098
2103
  "OFFER",
2099
2104
  "SIGNED",
2100
2105
  "ONBOARDING",
@@ -2180,6 +2185,24 @@
2180
2185
  }
2181
2186
  }
2182
2187
  },
2188
+ "eventReference": {
2189
+ "type": "object",
2190
+ "properties": {
2191
+ "sanityType": {
2192
+ "enum": [
2193
+ "reference"
2194
+ ],
2195
+ "type": "string",
2196
+ "default": "reference"
2197
+ },
2198
+ "sanityRef": {
2199
+ "type": "string"
2200
+ },
2201
+ "sanityWeak": {
2202
+ "type": "boolean"
2203
+ }
2204
+ }
2205
+ },
2183
2206
  "issueCandidatePinRequest": {
2184
2207
  "type": "object",
2185
2208
  "properties": {
@@ -2266,6 +2289,27 @@
2266
2289
  }
2267
2290
  }
2268
2291
  },
2292
+ "pageEmployeeOrderInner": {
2293
+ "type": "object",
2294
+ "properties": {
2295
+ "sanityType": {
2296
+ "enum": [
2297
+ "reference"
2298
+ ],
2299
+ "type": "string",
2300
+ "default": "reference"
2301
+ },
2302
+ "sanityKey": {
2303
+ "type": "string"
2304
+ },
2305
+ "sanityRef": {
2306
+ "type": "string"
2307
+ },
2308
+ "sanityWeak": {
2309
+ "type": "boolean"
2310
+ }
2311
+ }
2312
+ },
2269
2313
  "pageMetaImage": {
2270
2314
  "type": "object",
2271
2315
  "properties": {
@@ -2416,12 +2460,15 @@
2416
2460
  "status": {
2417
2461
  "enum": [
2418
2462
  "CREATED",
2463
+ "INTRODUCTION_INTERVIEW",
2419
2464
  "INTRODUCTION",
2420
2465
  "OFFBOARDING",
2421
2466
  "OFFER",
2422
2467
  "ONBOARDING",
2423
2468
  "REJECTED",
2469
+ "SALES_INTERVIEW",
2424
2470
  "SIGNED",
2471
+ "TECHNICAL_INTERVIEW",
2425
2472
  "USER_CREATION_REVIEW"
2426
2473
  ],
2427
2474
  "type": "string",
@@ -2487,6 +2534,12 @@
2487
2534
  "grades": {
2488
2535
  "$ref": "#/components/schemas/sanityCandidateApplicationLetter"
2489
2536
  },
2537
+ "interviews": {
2538
+ "type": "array",
2539
+ "items": {
2540
+ "$ref": "#/components/schemas/sanityCandidateInterviewsInner"
2541
+ }
2542
+ },
2490
2543
  "jobPosition": {
2491
2544
  "$ref": "#/components/schemas/sanityCandidateJobPosition"
2492
2545
  },
@@ -2603,6 +2656,51 @@
2603
2656
  }
2604
2657
  }
2605
2658
  },
2659
+ "sanityCandidateInterviewsInner": {
2660
+ "type": "object",
2661
+ "properties": {
2662
+ "sanityType": {
2663
+ "enum": [
2664
+ "interview"
2665
+ ],
2666
+ "type": "string",
2667
+ "default": "interview"
2668
+ },
2669
+ "type": {
2670
+ "enum": [
2671
+ "INTRODUCTION_INTERVIEW",
2672
+ "SALES_INTERVIEW",
2673
+ "TECHNICAL_INTERVIEW"
2674
+ ],
2675
+ "type": "string",
2676
+ "default": "INTRODUCTION_INTERVIEW"
2677
+ },
2678
+ "completedAt": {
2679
+ "type": "string"
2680
+ },
2681
+ "eventRef": {
2682
+ "$ref": "#/components/schemas/eventReference"
2683
+ },
2684
+ "interviewers": {
2685
+ "type": "array",
2686
+ "items": {
2687
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
2688
+ }
2689
+ },
2690
+ "place": {
2691
+ "type": "string"
2692
+ },
2693
+ "sanityKey": {
2694
+ "type": "string"
2695
+ },
2696
+ "scheduledAt": {
2697
+ "type": "string"
2698
+ },
2699
+ "token": {
2700
+ "type": "string"
2701
+ }
2702
+ }
2703
+ },
2606
2704
  "sanityCandidateJobPosition": {
2607
2705
  "type": "object",
2608
2706
  "properties": {
@@ -3072,7 +3170,10 @@
3072
3170
  "status": {
3073
3171
  "enum": [
3074
3172
  "CREATED",
3173
+ "INTRODUCTION_INTERVIEW",
3075
3174
  "INTRODUCTION",
3175
+ "TECHNICAL_INTERVIEW",
3176
+ "SALES_INTERVIEW",
3076
3177
  "OFFER",
3077
3178
  "SIGNED",
3078
3179
  "ONBOARDING",
@@ -3145,6 +3246,12 @@
3145
3246
  "grades": {
3146
3247
  "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3147
3248
  },
3249
+ "interviews": {
3250
+ "type": "array",
3251
+ "items": {
3252
+ "$ref": "#/components/schemas/sanityPatchCandidateInterviewsInner"
3253
+ }
3254
+ },
3148
3255
  "jobPosition": {
3149
3256
  "$ref": "#/components/schemas/jobPositionReference"
3150
3257
  },
@@ -3256,6 +3363,51 @@
3256
3363
  }
3257
3364
  }
3258
3365
  },
3366
+ "sanityPatchCandidateInterviewsInner": {
3367
+ "type": "object",
3368
+ "properties": {
3369
+ "sanityType": {
3370
+ "enum": [
3371
+ "interview"
3372
+ ],
3373
+ "type": "string",
3374
+ "default": "interview"
3375
+ },
3376
+ "type": {
3377
+ "enum": [
3378
+ "INTRODUCTION_INTERVIEW",
3379
+ "TECHNICAL_INTERVIEW",
3380
+ "SALES_INTERVIEW"
3381
+ ],
3382
+ "type": "string",
3383
+ "default": "INTRODUCTION_INTERVIEW"
3384
+ },
3385
+ "completedAt": {
3386
+ "type": "string"
3387
+ },
3388
+ "eventRef": {
3389
+ "$ref": "#/components/schemas/eventReference"
3390
+ },
3391
+ "interviewers": {
3392
+ "type": "array",
3393
+ "items": {
3394
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
3395
+ }
3396
+ },
3397
+ "place": {
3398
+ "type": "string"
3399
+ },
3400
+ "sanityKey": {
3401
+ "type": "string"
3402
+ },
3403
+ "scheduledAt": {
3404
+ "type": "string"
3405
+ },
3406
+ "token": {
3407
+ "type": "string"
3408
+ }
3409
+ }
3410
+ },
3259
3411
  "sanityPatchCandidateSystemsActiveInner": {
3260
3412
  "type": "object",
3261
3413
  "properties": {
@@ -24800,10 +24800,14 @@
24800
24800
  "SanityCandidateStatus": {
24801
24801
  "enum": [
24802
24802
  "CREATED",
24803
- "INTRODUCTION",
24803
+ "INTRODUCTION_INTERVIEW",
24804
+ "TECHNICAL_INTERVIEW",
24805
+ "SALES_INTERVIEW",
24804
24806
  "OFFER",
24805
24807
  "SIGNED",
24806
24808
  "ONBOARDING",
24809
+ "USER_CREATION_REVIEW",
24810
+ "OFFBOARDING",
24807
24811
  "REJECTED"
24808
24812
  ],
24809
24813
  "type": "string"
@@ -31541,6 +31545,28 @@
31541
31545
  "type": "object",
31542
31546
  "nullable": true
31543
31547
  },
31548
+ "EventReference": {
31549
+ "properties": {
31550
+ "sanityWeak": {
31551
+ "type": "boolean"
31552
+ },
31553
+ "sanityType": {
31554
+ "type": "string",
31555
+ "enum": [
31556
+ "reference"
31557
+ ],
31558
+ "nullable": false
31559
+ },
31560
+ "sanityRef": {
31561
+ "type": "string"
31562
+ }
31563
+ },
31564
+ "required": [
31565
+ "sanityType",
31566
+ "sanityRef"
31567
+ ],
31568
+ "type": "object"
31569
+ },
31544
31570
  "TaskReference": {
31545
31571
  "properties": {
31546
31572
  "sanityWeak": {
@@ -33281,16 +33307,86 @@
33281
33307
  "startDate": {
33282
33308
  "type": "string"
33283
33309
  },
33310
+ "interviews": {
33311
+ "items": {
33312
+ "properties": {
33313
+ "sanityKey": {
33314
+ "type": "string"
33315
+ },
33316
+ "sanityType": {
33317
+ "type": "string",
33318
+ "enum": [
33319
+ "interview"
33320
+ ],
33321
+ "nullable": false
33322
+ },
33323
+ "completedAt": {
33324
+ "type": "string"
33325
+ },
33326
+ "token": {
33327
+ "type": "string"
33328
+ },
33329
+ "eventRef": {
33330
+ "$ref": "#/components/schemas/EventReference"
33331
+ },
33332
+ "interviewers": {
33333
+ "items": {
33334
+ "allOf": [
33335
+ {
33336
+ "properties": {
33337
+ "sanityKey": {
33338
+ "type": "string"
33339
+ }
33340
+ },
33341
+ "required": [
33342
+ "sanityKey"
33343
+ ],
33344
+ "type": "object"
33345
+ },
33346
+ {
33347
+ "$ref": "#/components/schemas/EmployeeReference"
33348
+ }
33349
+ ]
33350
+ },
33351
+ "type": "array"
33352
+ },
33353
+ "place": {
33354
+ "type": "string"
33355
+ },
33356
+ "scheduledAt": {
33357
+ "type": "string"
33358
+ },
33359
+ "type": {
33360
+ "type": "string",
33361
+ "enum": [
33362
+ "INTRODUCTION_INTERVIEW",
33363
+ "SALES_INTERVIEW",
33364
+ "TECHNICAL_INTERVIEW"
33365
+ ]
33366
+ }
33367
+ },
33368
+ "required": [
33369
+ "sanityKey",
33370
+ "sanityType",
33371
+ "scheduledAt",
33372
+ "type"
33373
+ ],
33374
+ "type": "object"
33375
+ },
33376
+ "type": "array"
33377
+ },
33284
33378
  "status": {
33285
33379
  "type": "string",
33286
33380
  "enum": [
33287
33381
  "CREATED",
33288
- "INTRODUCTION",
33382
+ "INTRODUCTION_INTERVIEW",
33289
33383
  "OFFBOARDING",
33290
33384
  "OFFER",
33291
33385
  "ONBOARDING",
33292
33386
  "REJECTED",
33387
+ "SALES_INTERVIEW",
33293
33388
  "SIGNED",
33389
+ "TECHNICAL_INTERVIEW",
33294
33390
  "USER_CREATION_REVIEW"
33295
33391
  ]
33296
33392
  },
@@ -33508,7 +33604,9 @@
33508
33604
  "type": "string",
33509
33605
  "enum": [
33510
33606
  "CREATED",
33511
- "INTRODUCTION",
33607
+ "INTRODUCTION_INTERVIEW",
33608
+ "TECHNICAL_INTERVIEW",
33609
+ "SALES_INTERVIEW",
33512
33610
  "OFFER",
33513
33611
  "SIGNED",
33514
33612
  "ONBOARDING",
@@ -33553,6 +33651,75 @@
33553
33651
  "type": "string",
33554
33652
  "nullable": true
33555
33653
  },
33654
+ "interviews": {
33655
+ "items": {
33656
+ "properties": {
33657
+ "sanityKey": {
33658
+ "type": "string"
33659
+ },
33660
+ "sanityType": {
33661
+ "type": "string",
33662
+ "enum": [
33663
+ "interview"
33664
+ ],
33665
+ "nullable": false
33666
+ },
33667
+ "completedAt": {
33668
+ "type": "string"
33669
+ },
33670
+ "token": {
33671
+ "type": "string"
33672
+ },
33673
+ "eventRef": {
33674
+ "$ref": "#/components/schemas/EventReference"
33675
+ },
33676
+ "interviewers": {
33677
+ "items": {
33678
+ "allOf": [
33679
+ {
33680
+ "properties": {
33681
+ "sanityKey": {
33682
+ "type": "string"
33683
+ }
33684
+ },
33685
+ "required": [
33686
+ "sanityKey"
33687
+ ],
33688
+ "type": "object"
33689
+ },
33690
+ {
33691
+ "$ref": "#/components/schemas/EmployeeReference"
33692
+ }
33693
+ ]
33694
+ },
33695
+ "type": "array"
33696
+ },
33697
+ "place": {
33698
+ "type": "string"
33699
+ },
33700
+ "scheduledAt": {
33701
+ "type": "string"
33702
+ },
33703
+ "type": {
33704
+ "type": "string",
33705
+ "enum": [
33706
+ "INTRODUCTION_INTERVIEW",
33707
+ "TECHNICAL_INTERVIEW",
33708
+ "SALES_INTERVIEW"
33709
+ ]
33710
+ }
33711
+ },
33712
+ "required": [
33713
+ "sanityKey",
33714
+ "sanityType",
33715
+ "scheduledAt",
33716
+ "type"
33717
+ ],
33718
+ "type": "object"
33719
+ },
33720
+ "type": "array",
33721
+ "nullable": true
33722
+ },
33556
33723
  "startDate": {
33557
33724
  "type": "string",
33558
33725
  "nullable": true
@@ -33901,7 +34068,10 @@
33901
34068
  "type": "string",
33902
34069
  "enum": [
33903
34070
  "CREATED",
34071
+ "INTRODUCTION_INTERVIEW",
33904
34072
  "INTRODUCTION",
34073
+ "TECHNICAL_INTERVIEW",
34074
+ "SALES_INTERVIEW",
33905
34075
  "OFFER",
33906
34076
  "SIGNED",
33907
34077
  "ONBOARDING",
@@ -97,6 +97,15 @@
97
97
  "type": "string"
98
98
  },
99
99
  "x-ms-summary": "The slug or id of the event"
100
+ },
101
+ {
102
+ "name": "token",
103
+ "in": "query",
104
+ "description": "Guest participation token; grants read access to a non-public event",
105
+ "schema": {
106
+ "type": "string"
107
+ },
108
+ "x-ms-summary": "Participant token"
100
109
  }
101
110
  ],
102
111
  "responses": {
@@ -2012,7 +2012,9 @@
2012
2012
  5,
2013
2013
  6,
2014
2014
  7,
2015
- 8
2015
+ 8,
2016
+ 9,
2017
+ 10
2016
2018
  ],
2017
2019
  "type": "integer",
2018
2020
  "format": "int32",
@@ -2094,7 +2096,10 @@
2094
2096
  "status": {
2095
2097
  "enum": [
2096
2098
  "CREATED",
2099
+ "INTRODUCTION_INTERVIEW",
2097
2100
  "INTRODUCTION",
2101
+ "TECHNICAL_INTERVIEW",
2102
+ "SALES_INTERVIEW",
2098
2103
  "OFFER",
2099
2104
  "SIGNED",
2100
2105
  "ONBOARDING",
@@ -2180,6 +2185,24 @@
2180
2185
  }
2181
2186
  }
2182
2187
  },
2188
+ "eventReference": {
2189
+ "type": "object",
2190
+ "properties": {
2191
+ "sanityType": {
2192
+ "enum": [
2193
+ "reference"
2194
+ ],
2195
+ "type": "string",
2196
+ "default": "reference"
2197
+ },
2198
+ "sanityRef": {
2199
+ "type": "string"
2200
+ },
2201
+ "sanityWeak": {
2202
+ "type": "boolean"
2203
+ }
2204
+ }
2205
+ },
2183
2206
  "issueCandidatePinRequest": {
2184
2207
  "type": "object",
2185
2208
  "properties": {
@@ -2266,6 +2289,27 @@
2266
2289
  }
2267
2290
  }
2268
2291
  },
2292
+ "pageEmployeeOrderInner": {
2293
+ "type": "object",
2294
+ "properties": {
2295
+ "sanityType": {
2296
+ "enum": [
2297
+ "reference"
2298
+ ],
2299
+ "type": "string",
2300
+ "default": "reference"
2301
+ },
2302
+ "sanityKey": {
2303
+ "type": "string"
2304
+ },
2305
+ "sanityRef": {
2306
+ "type": "string"
2307
+ },
2308
+ "sanityWeak": {
2309
+ "type": "boolean"
2310
+ }
2311
+ }
2312
+ },
2269
2313
  "pageMetaImage": {
2270
2314
  "type": "object",
2271
2315
  "properties": {
@@ -2416,12 +2460,15 @@
2416
2460
  "status": {
2417
2461
  "enum": [
2418
2462
  "CREATED",
2463
+ "INTRODUCTION_INTERVIEW",
2419
2464
  "INTRODUCTION",
2420
2465
  "OFFBOARDING",
2421
2466
  "OFFER",
2422
2467
  "ONBOARDING",
2423
2468
  "REJECTED",
2469
+ "SALES_INTERVIEW",
2424
2470
  "SIGNED",
2471
+ "TECHNICAL_INTERVIEW",
2425
2472
  "USER_CREATION_REVIEW"
2426
2473
  ],
2427
2474
  "type": "string",
@@ -2487,6 +2534,12 @@
2487
2534
  "grades": {
2488
2535
  "$ref": "#/components/schemas/sanityCandidateApplicationLetter"
2489
2536
  },
2537
+ "interviews": {
2538
+ "type": "array",
2539
+ "items": {
2540
+ "$ref": "#/components/schemas/sanityCandidateInterviewsInner"
2541
+ }
2542
+ },
2490
2543
  "jobPosition": {
2491
2544
  "$ref": "#/components/schemas/sanityCandidateJobPosition"
2492
2545
  },
@@ -2603,6 +2656,51 @@
2603
2656
  }
2604
2657
  }
2605
2658
  },
2659
+ "sanityCandidateInterviewsInner": {
2660
+ "type": "object",
2661
+ "properties": {
2662
+ "sanityType": {
2663
+ "enum": [
2664
+ "interview"
2665
+ ],
2666
+ "type": "string",
2667
+ "default": "interview"
2668
+ },
2669
+ "type": {
2670
+ "enum": [
2671
+ "INTRODUCTION_INTERVIEW",
2672
+ "SALES_INTERVIEW",
2673
+ "TECHNICAL_INTERVIEW"
2674
+ ],
2675
+ "type": "string",
2676
+ "default": "INTRODUCTION_INTERVIEW"
2677
+ },
2678
+ "completedAt": {
2679
+ "type": "string"
2680
+ },
2681
+ "eventRef": {
2682
+ "$ref": "#/components/schemas/eventReference"
2683
+ },
2684
+ "interviewers": {
2685
+ "type": "array",
2686
+ "items": {
2687
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
2688
+ }
2689
+ },
2690
+ "place": {
2691
+ "type": "string"
2692
+ },
2693
+ "sanityKey": {
2694
+ "type": "string"
2695
+ },
2696
+ "scheduledAt": {
2697
+ "type": "string"
2698
+ },
2699
+ "token": {
2700
+ "type": "string"
2701
+ }
2702
+ }
2703
+ },
2606
2704
  "sanityCandidateJobPosition": {
2607
2705
  "type": "object",
2608
2706
  "properties": {
@@ -3072,7 +3170,10 @@
3072
3170
  "status": {
3073
3171
  "enum": [
3074
3172
  "CREATED",
3173
+ "INTRODUCTION_INTERVIEW",
3075
3174
  "INTRODUCTION",
3175
+ "TECHNICAL_INTERVIEW",
3176
+ "SALES_INTERVIEW",
3076
3177
  "OFFER",
3077
3178
  "SIGNED",
3078
3179
  "ONBOARDING",
@@ -3145,6 +3246,12 @@
3145
3246
  "grades": {
3146
3247
  "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3147
3248
  },
3249
+ "interviews": {
3250
+ "type": "array",
3251
+ "items": {
3252
+ "$ref": "#/components/schemas/sanityPatchCandidateInterviewsInner"
3253
+ }
3254
+ },
3148
3255
  "jobPosition": {
3149
3256
  "$ref": "#/components/schemas/jobPositionReference"
3150
3257
  },
@@ -3256,6 +3363,51 @@
3256
3363
  }
3257
3364
  }
3258
3365
  },
3366
+ "sanityPatchCandidateInterviewsInner": {
3367
+ "type": "object",
3368
+ "properties": {
3369
+ "sanityType": {
3370
+ "enum": [
3371
+ "interview"
3372
+ ],
3373
+ "type": "string",
3374
+ "default": "interview"
3375
+ },
3376
+ "type": {
3377
+ "enum": [
3378
+ "INTRODUCTION_INTERVIEW",
3379
+ "TECHNICAL_INTERVIEW",
3380
+ "SALES_INTERVIEW"
3381
+ ],
3382
+ "type": "string",
3383
+ "default": "INTRODUCTION_INTERVIEW"
3384
+ },
3385
+ "completedAt": {
3386
+ "type": "string"
3387
+ },
3388
+ "eventRef": {
3389
+ "$ref": "#/components/schemas/eventReference"
3390
+ },
3391
+ "interviewers": {
3392
+ "type": "array",
3393
+ "items": {
3394
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
3395
+ }
3396
+ },
3397
+ "place": {
3398
+ "type": "string"
3399
+ },
3400
+ "sanityKey": {
3401
+ "type": "string"
3402
+ },
3403
+ "scheduledAt": {
3404
+ "type": "string"
3405
+ },
3406
+ "token": {
3407
+ "type": "string"
3408
+ }
3409
+ }
3410
+ },
3259
3411
  "sanityPatchCandidateSystemsActiveInner": {
3260
3412
  "type": "object",
3261
3413
  "properties": {
@@ -24800,10 +24800,14 @@
24800
24800
  "SanityCandidateStatus": {
24801
24801
  "enum": [
24802
24802
  "CREATED",
24803
- "INTRODUCTION",
24803
+ "INTRODUCTION_INTERVIEW",
24804
+ "TECHNICAL_INTERVIEW",
24805
+ "SALES_INTERVIEW",
24804
24806
  "OFFER",
24805
24807
  "SIGNED",
24806
24808
  "ONBOARDING",
24809
+ "USER_CREATION_REVIEW",
24810
+ "OFFBOARDING",
24807
24811
  "REJECTED"
24808
24812
  ],
24809
24813
  "type": "string"
@@ -31541,6 +31545,28 @@
31541
31545
  "type": "object",
31542
31546
  "nullable": true
31543
31547
  },
31548
+ "EventReference": {
31549
+ "properties": {
31550
+ "sanityWeak": {
31551
+ "type": "boolean"
31552
+ },
31553
+ "sanityType": {
31554
+ "type": "string",
31555
+ "enum": [
31556
+ "reference"
31557
+ ],
31558
+ "nullable": false
31559
+ },
31560
+ "sanityRef": {
31561
+ "type": "string"
31562
+ }
31563
+ },
31564
+ "required": [
31565
+ "sanityType",
31566
+ "sanityRef"
31567
+ ],
31568
+ "type": "object"
31569
+ },
31544
31570
  "TaskReference": {
31545
31571
  "properties": {
31546
31572
  "sanityWeak": {
@@ -33281,16 +33307,86 @@
33281
33307
  "startDate": {
33282
33308
  "type": "string"
33283
33309
  },
33310
+ "interviews": {
33311
+ "items": {
33312
+ "properties": {
33313
+ "sanityKey": {
33314
+ "type": "string"
33315
+ },
33316
+ "sanityType": {
33317
+ "type": "string",
33318
+ "enum": [
33319
+ "interview"
33320
+ ],
33321
+ "nullable": false
33322
+ },
33323
+ "completedAt": {
33324
+ "type": "string"
33325
+ },
33326
+ "token": {
33327
+ "type": "string"
33328
+ },
33329
+ "eventRef": {
33330
+ "$ref": "#/components/schemas/EventReference"
33331
+ },
33332
+ "interviewers": {
33333
+ "items": {
33334
+ "allOf": [
33335
+ {
33336
+ "properties": {
33337
+ "sanityKey": {
33338
+ "type": "string"
33339
+ }
33340
+ },
33341
+ "required": [
33342
+ "sanityKey"
33343
+ ],
33344
+ "type": "object"
33345
+ },
33346
+ {
33347
+ "$ref": "#/components/schemas/EmployeeReference"
33348
+ }
33349
+ ]
33350
+ },
33351
+ "type": "array"
33352
+ },
33353
+ "place": {
33354
+ "type": "string"
33355
+ },
33356
+ "scheduledAt": {
33357
+ "type": "string"
33358
+ },
33359
+ "type": {
33360
+ "type": "string",
33361
+ "enum": [
33362
+ "INTRODUCTION_INTERVIEW",
33363
+ "SALES_INTERVIEW",
33364
+ "TECHNICAL_INTERVIEW"
33365
+ ]
33366
+ }
33367
+ },
33368
+ "required": [
33369
+ "sanityKey",
33370
+ "sanityType",
33371
+ "scheduledAt",
33372
+ "type"
33373
+ ],
33374
+ "type": "object"
33375
+ },
33376
+ "type": "array"
33377
+ },
33284
33378
  "status": {
33285
33379
  "type": "string",
33286
33380
  "enum": [
33287
33381
  "CREATED",
33288
- "INTRODUCTION",
33382
+ "INTRODUCTION_INTERVIEW",
33289
33383
  "OFFBOARDING",
33290
33384
  "OFFER",
33291
33385
  "ONBOARDING",
33292
33386
  "REJECTED",
33387
+ "SALES_INTERVIEW",
33293
33388
  "SIGNED",
33389
+ "TECHNICAL_INTERVIEW",
33294
33390
  "USER_CREATION_REVIEW"
33295
33391
  ]
33296
33392
  },
@@ -33508,7 +33604,9 @@
33508
33604
  "type": "string",
33509
33605
  "enum": [
33510
33606
  "CREATED",
33511
- "INTRODUCTION",
33607
+ "INTRODUCTION_INTERVIEW",
33608
+ "TECHNICAL_INTERVIEW",
33609
+ "SALES_INTERVIEW",
33512
33610
  "OFFER",
33513
33611
  "SIGNED",
33514
33612
  "ONBOARDING",
@@ -33553,6 +33651,75 @@
33553
33651
  "type": "string",
33554
33652
  "nullable": true
33555
33653
  },
33654
+ "interviews": {
33655
+ "items": {
33656
+ "properties": {
33657
+ "sanityKey": {
33658
+ "type": "string"
33659
+ },
33660
+ "sanityType": {
33661
+ "type": "string",
33662
+ "enum": [
33663
+ "interview"
33664
+ ],
33665
+ "nullable": false
33666
+ },
33667
+ "completedAt": {
33668
+ "type": "string"
33669
+ },
33670
+ "token": {
33671
+ "type": "string"
33672
+ },
33673
+ "eventRef": {
33674
+ "$ref": "#/components/schemas/EventReference"
33675
+ },
33676
+ "interviewers": {
33677
+ "items": {
33678
+ "allOf": [
33679
+ {
33680
+ "properties": {
33681
+ "sanityKey": {
33682
+ "type": "string"
33683
+ }
33684
+ },
33685
+ "required": [
33686
+ "sanityKey"
33687
+ ],
33688
+ "type": "object"
33689
+ },
33690
+ {
33691
+ "$ref": "#/components/schemas/EmployeeReference"
33692
+ }
33693
+ ]
33694
+ },
33695
+ "type": "array"
33696
+ },
33697
+ "place": {
33698
+ "type": "string"
33699
+ },
33700
+ "scheduledAt": {
33701
+ "type": "string"
33702
+ },
33703
+ "type": {
33704
+ "type": "string",
33705
+ "enum": [
33706
+ "INTRODUCTION_INTERVIEW",
33707
+ "TECHNICAL_INTERVIEW",
33708
+ "SALES_INTERVIEW"
33709
+ ]
33710
+ }
33711
+ },
33712
+ "required": [
33713
+ "sanityKey",
33714
+ "sanityType",
33715
+ "scheduledAt",
33716
+ "type"
33717
+ ],
33718
+ "type": "object"
33719
+ },
33720
+ "type": "array",
33721
+ "nullable": true
33722
+ },
33556
33723
  "startDate": {
33557
33724
  "type": "string",
33558
33725
  "nullable": true
@@ -33901,7 +34068,9 @@
33901
34068
  "type": "string",
33902
34069
  "enum": [
33903
34070
  "CREATED",
33904
- "INTRODUCTION",
34071
+ "INTRODUCTION_INTERVIEW",
34072
+ "TECHNICAL_INTERVIEW",
34073
+ "SALES_INTERVIEW",
33905
34074
  "OFFER",
33906
34075
  "SIGNED",
33907
34076
  "ONBOARDING",