@@ -36,11 +36,13 @@ paths:
36
36
$ref : ' #/components/responses/200'
37
37
/headers :
38
38
get :
39
+ operationId : getHeaders
39
40
responses :
40
41
" 200 " :
41
42
$ref : ' #/components/responses/200'
42
43
/health :
43
44
get :
45
+ operationId : getHealth
44
46
responses :
45
47
" 200 " :
46
48
$ref : ' #/components/responses/200'
93
95
# schema:
94
96
# $ref: "#/components/schemas/VersionDelta"
95
97
post :
98
+ operationId : postRepositoryBranch
96
99
parameters :
97
100
- name : repository
98
101
in : " path"
@@ -142,6 +145,7 @@ paths:
142
145
$ref : ' #/components/responses/200'
143
146
/v2/repositories/{repository}/branches/{branch}/listen :
144
147
get :
148
+ operationId : listenRepositoryBranch
145
149
parameters :
146
150
- name : lastKnown
147
151
in : " query"
@@ -200,6 +204,7 @@ paths:
200
204
type : string
201
205
/v2/repositories/{repository}/branches/{branch}/poll :
202
206
get :
207
+ operationId : pollRepositoryBranch
203
208
parameters :
204
209
- name : lastKnown
205
210
in : " query"
@@ -231,6 +236,7 @@ paths:
231
236
type : object
232
237
/v2/repositories/{repository}/branches/{branch}/pollHash :
233
238
get :
239
+ operationId : pollRepositoryBranchHash
234
240
parameters :
235
241
- name : lastKnown
236
242
in : " query"
@@ -258,6 +264,7 @@ paths:
258
264
$ref : ' #/components/responses/200'
259
265
/v2/repositories/{repository}/branches/{branch}/query :
260
266
post :
267
+ operationId : postRepositoryBranchQuery
261
268
parameters :
262
269
- name : repository
263
270
in : " path"
@@ -331,7 +338,7 @@ paths:
331
338
type : object
332
339
/v2/repositories/{repository}/versions/{versionHash}/history/{oldestVersionHash} :
333
340
get :
334
- description : " TODO "
341
+ operationId : getOldestVersionHash
335
342
responses :
336
343
" 200 " :
337
344
$ref : ' #/components/responses/200'
@@ -353,6 +360,7 @@ paths:
353
360
type : string
354
361
/v2/repositories/{repository}/versions/{versionHash}/query :
355
362
post :
363
+ operationId : postRepositoryVersionHashQuery
356
364
parameters :
357
365
- name : versionHash
358
366
in : " path"
@@ -372,6 +380,7 @@ paths:
372
380
373
381
/v2/versions/{versionHash} :
374
382
get :
383
+ operationId : getVersionHash
375
384
parameters :
376
385
- name : lastKnown
377
386
in : " query"
@@ -394,7 +403,7 @@ paths:
394
403
type : object
395
404
/v2/versions/{versionHash}/history/{oldestVersionHash} :
396
405
get :
397
- description : " TODO "
406
+ operationId : getOldestVersionHashForVersion
398
407
responses :
399
408
" 200 " :
400
409
$ref : ' #/components/responses/200'
@@ -409,158 +418,6 @@ paths:
409
418
required : true
410
419
schema :
411
420
type : string
412
- /json :
413
- get :
414
- responses :
415
- " 200 " :
416
- $ref : ' #/components/responses/200'
417
- /json/{repositoryId} :
418
- get :
419
- parameters :
420
- - name : repositoryId
421
- in : " path"
422
- required : true
423
- schema :
424
- type : string
425
- responses :
426
- " 200 " :
427
- $ref : ' #/components/responses/200json'
428
- /json/{repositoryId}/{versionHash} :
429
- get :
430
- parameters :
431
- - name : versionHash
432
- in : " path"
433
- required : true
434
- schema :
435
- type : string
436
- - name : repositoryId
437
- in : " path"
438
- required : true
439
- schema :
440
- type : string
441
- responses :
442
- " 200 " :
443
- $ref : ' #/components/responses/200json'
444
- /json/{repositoryId}/{versionHash}/poll :
445
- get :
446
- parameters :
447
- - name : repositoryId
448
- in : " path"
449
- required : true
450
- schema :
451
- type : string
452
- - name : versionHash
453
- in : " path"
454
- required : true
455
- schema :
456
- type : string
457
- responses :
458
- " 200 " :
459
- $ref : ' #/components/responses/200json'
460
- /json/{repositoryId}/{versionHash}/update :
461
- post :
462
- parameters :
463
- - name : repositoryId
464
- in : " path"
465
- required : true
466
- schema :
467
- type : string
468
- - name : versionHash
469
- in : " path"
470
- required : true
471
- schema :
472
- type : string
473
- responses :
474
- " 404 " :
475
- description : " Not Found"
476
- content :
477
- ' */* ' :
478
- schema :
479
- type : string
480
- " 403 " :
481
- $ref : ' #/components/responses/403'
482
- " 401 " :
483
- $ref : ' #/components/responses/401'
484
- " 500 " :
485
- $ref : ' #/components/responses/500'
486
- " 200 " :
487
- $ref : ' #/components/responses/200json'
488
- /json/{repositoryId}/init :
489
- post :
490
- parameters :
491
- - name : repositoryId
492
- in : " path"
493
- required : true
494
- schema :
495
- type : string
496
- responses :
497
- " 200 " :
498
- $ref : ' #/components/responses/200json'
499
- /json/{repositoryId}/ws :
500
- get :
501
- parameters :
502
- - name : repositoryId
503
- in : " path"
504
- required : true
505
- schema :
506
- type : string
507
- - name : Connection
508
- in : " header"
509
- required : true
510
- description : " Websocket Connection parameter"
511
- schema :
512
- type : string
513
- - name : Upgrade
514
- in : " header"
515
- required : true
516
- description : " Websocket Upgrade parameter"
517
- schema :
518
- type : string
519
- - name : Sec-WebSocket-Key
520
- in : " header"
521
- required : true
522
- description : " Websocket Sec-WebSocket-Key parameter"
523
- schema :
524
- type : string
525
- responses :
526
- " 403 " :
527
- $ref : ' #/components/responses/403'
528
- " 401 " :
529
- $ref : ' #/components/responses/401'
530
- " 500 " :
531
- $ref : ' #/components/responses/500'
532
- " 101 " :
533
- description : " Switching Protocols"
534
- headers :
535
- Connection :
536
- required : true
537
- schema :
538
- type : string
539
- Upgrade :
540
- required : true
541
- schema :
542
- type : string
543
- Sec-WebSocket-Accept :
544
- required : true
545
- schema :
546
- type : string
547
- /json/generate-ids :
548
- post :
549
- parameters :
550
- - name : quantity
551
- in : " query"
552
- required : false
553
- schema :
554
- type : integer
555
- responses :
556
- " 403 " :
557
- $ref : ' #/components/responses/403'
558
- " 401 " :
559
- $ref : ' #/components/responses/401'
560
- " 500 " :
561
- $ref : ' #/components/responses/500'
562
- " 200 " :
563
- $ref : ' #/components/responses/200json'
564
421
/counter/{key} :
565
422
post :
566
423
parameters :
@@ -680,48 +537,6 @@ paths:
680
537
$ref : ' #/components/responses/200'
681
538
" 404 " :
682
539
$ref : ' #/components/responses/404'
683
- /json/v2/{repositoryId}/ws :
684
- get :
685
- parameters :
686
- - name : repositoryId
687
- in : " path"
688
- required : true
689
- schema :
690
- type : string
691
- - name : Connection
692
- in : " header"
693
- required : true
694
- description : " Websocket Connection parameter"
695
- schema :
696
- type : string
697
- - name : Upgrade
698
- in : " header"
699
- required : true
700
- description : " Websocket Upgrade parameter"
701
- schema :
702
- type : string
703
- - name : Sec-WebSocket-Key
704
- in : " header"
705
- required : true
706
- description : " Websocket Sec-WebSocket-Key parameter"
707
- schema :
708
- type : string
709
- responses :
710
- " 101 " :
711
- description : " Switching Protocols"
712
- headers :
713
- Connection :
714
- required : true
715
- schema :
716
- type : string
717
- Upgrade :
718
- required : true
719
- schema :
720
- type : string
721
- Sec-WebSocket-Accept :
722
- required : true
723
- schema :
724
- type : string
725
540
components :
726
541
responses :
727
542
" 200 " :
0 commit comments