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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: current-cli
3
- Version: 0.1.38
3
+ Version: 0.1.39
4
4
  Summary: Command line interface for the Current API, generated from its OpenAPI schema at runtime
5
5
  Author-email: Orin <your-email@example.com>
6
6
  License-Expression: MIT
@@ -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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "current-cli"
3
- version = "0.1.38"
3
+ version = "0.1.39"
4
4
  description = "Command line interface for the Current API, generated from its OpenAPI schema at runtime"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes