current-cli 0.1.38__tar.gz → 0.1.39__tar.gz
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.
- {current_cli-0.1.38 → current_cli-0.1.39}/PKG-INFO +1 -1
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/schema.yml +39 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/llms.txt +9 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/pyproject.toml +1 -1
- {current_cli-0.1.38 → current_cli-0.1.39}/.gitignore +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/README.md +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/__init__.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/build.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/config.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/docs.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/http.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/main.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/current_cli/schema.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/scripts/bump_version.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/__init__.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/conftest.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/test_auth.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/test_docs.py +0 -0
- {current_cli-0.1.38 → current_cli-0.1.39}/tests/test_requests.py +0 -0
|
@@ -1834,6 +1834,34 @@ paths:
|
|
|
1834
1834
|
responses:
|
|
1835
1835
|
'204':
|
|
1836
1836
|
description: No response body
|
|
1837
|
+
/api/projects/projects/{id}/closeout/:
|
|
1838
|
+
get:
|
|
1839
|
+
operationId: projects_projects_closeout_retrieve
|
|
1840
|
+
description: |-
|
|
1841
|
+
The project's current closeout review — the review.json a
|
|
1842
|
+
closeout workflow run wrote to workspace storage, parsed and
|
|
1843
|
+
validated server-side. ``review`` is null when no run has written
|
|
1844
|
+
one yet.
|
|
1845
|
+
parameters:
|
|
1846
|
+
- in: path
|
|
1847
|
+
name: id
|
|
1848
|
+
schema:
|
|
1849
|
+
type: string
|
|
1850
|
+
format: uuid
|
|
1851
|
+
description: A UUID string identifying this project.
|
|
1852
|
+
required: true
|
|
1853
|
+
tags:
|
|
1854
|
+
- projects
|
|
1855
|
+
security:
|
|
1856
|
+
- MessagingJobTokenAuth: []
|
|
1857
|
+
- tokenAuth: []
|
|
1858
|
+
responses:
|
|
1859
|
+
'200':
|
|
1860
|
+
content:
|
|
1861
|
+
application/json:
|
|
1862
|
+
schema:
|
|
1863
|
+
$ref: '#/components/schemas/CloseoutResponse'
|
|
1864
|
+
description: ''
|
|
1837
1865
|
/api/projects/projects/{id}/feed/:
|
|
1838
1866
|
get:
|
|
1839
1867
|
operationId: projects_projects_feed_retrieve
|
|
@@ -3596,6 +3624,17 @@ components:
|
|
|
3596
3624
|
- client_secret
|
|
3597
3625
|
- login_host
|
|
3598
3626
|
- workspace
|
|
3627
|
+
CloseoutResponse:
|
|
3628
|
+
type: object
|
|
3629
|
+
description: |-
|
|
3630
|
+
Response of the project closeout endpoint: the validated review
|
|
3631
|
+
document (the ``core.review.ReviewDocument`` contract), or null when no
|
|
3632
|
+
closeout run has written one yet.
|
|
3633
|
+
properties:
|
|
3634
|
+
review:
|
|
3635
|
+
nullable: true
|
|
3636
|
+
required:
|
|
3637
|
+
- review
|
|
3599
3638
|
ColorEnum:
|
|
3600
3639
|
enum:
|
|
3601
3640
|
- neutral
|
|
@@ -561,6 +561,15 @@ newest happening first.
|
|
|
561
561
|
|
|
562
562
|
GET /api/observations/observations/{id}/
|
|
563
563
|
|
|
564
|
+
### current projects closeout retrieve <id>
|
|
565
|
+
|
|
566
|
+
The project's current closeout review — the review.json a
|
|
567
|
+
closeout workflow run wrote to workspace storage, parsed and
|
|
568
|
+
validated server-side. ``review`` is null when no run has written
|
|
569
|
+
one yet.
|
|
570
|
+
|
|
571
|
+
GET /api/projects/projects/{id}/closeout/
|
|
572
|
+
|
|
564
573
|
### current projects create
|
|
565
574
|
|
|
566
575
|
Projects across the caller's workspaces. Any member can create a
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|