current-cli 0.1.18__tar.gz → 0.1.20__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.18 → current_cli-0.1.20}/PKG-INFO +1 -1
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/schema.yml +40 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/pyproject.toml +1 -1
- {current_cli-0.1.18 → current_cli-0.1.20}/.gitignore +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/README.md +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/__init__.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/build.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/config.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/docs.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/http.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/main.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/current_cli/schema.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/llms.txt +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/scripts/bump_version.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/__init__.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/conftest.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/test_auth.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/test_docs.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.20}/tests/test_requests.py +0 -0
|
@@ -3452,6 +3452,10 @@ components:
|
|
|
3452
3452
|
type: string
|
|
3453
3453
|
minLength: 1
|
|
3454
3454
|
maxLength: 255
|
|
3455
|
+
timezone:
|
|
3456
|
+
type: string
|
|
3457
|
+
minLength: 1
|
|
3458
|
+
maxLength: 64
|
|
3455
3459
|
Project:
|
|
3456
3460
|
type: object
|
|
3457
3461
|
properties:
|
|
@@ -3786,6 +3790,26 @@ components:
|
|
|
3786
3790
|
- gate_step_id
|
|
3787
3791
|
- proposal_record_id
|
|
3788
3792
|
- state
|
|
3793
|
+
RunClock:
|
|
3794
|
+
type: object
|
|
3795
|
+
description: The current time, told to a run that cannot read a clock.
|
|
3796
|
+
properties:
|
|
3797
|
+
now:
|
|
3798
|
+
type: string
|
|
3799
|
+
format: date-time
|
|
3800
|
+
timezone:
|
|
3801
|
+
type: string
|
|
3802
|
+
local_now:
|
|
3803
|
+
type: string
|
|
3804
|
+
format: date-time
|
|
3805
|
+
today:
|
|
3806
|
+
type: string
|
|
3807
|
+
format: date
|
|
3808
|
+
required:
|
|
3809
|
+
- local_now
|
|
3810
|
+
- now
|
|
3811
|
+
- timezone
|
|
3812
|
+
- today
|
|
3789
3813
|
RunDefinition:
|
|
3790
3814
|
type: object
|
|
3791
3815
|
description: Response of the machine definition endpoint.
|
|
@@ -3811,9 +3835,12 @@ components:
|
|
|
3811
3835
|
$ref: '#/components/schemas/RunApproval'
|
|
3812
3836
|
trigger:
|
|
3813
3837
|
nullable: true
|
|
3838
|
+
clock:
|
|
3839
|
+
$ref: '#/components/schemas/RunClock'
|
|
3814
3840
|
workflow_config: {}
|
|
3815
3841
|
required:
|
|
3816
3842
|
- approvals
|
|
3843
|
+
- clock
|
|
3817
3844
|
- definition
|
|
3818
3845
|
- project
|
|
3819
3846
|
- run_id
|
|
@@ -4067,6 +4094,7 @@ components:
|
|
|
4067
4094
|
- schedule
|
|
4068
4095
|
- project_created
|
|
4069
4096
|
- project_status_changed
|
|
4097
|
+
- project_field
|
|
4070
4098
|
- slack_message
|
|
4071
4099
|
- teams_message
|
|
4072
4100
|
- email_received
|
|
@@ -4076,6 +4104,7 @@ components:
|
|
|
4076
4104
|
* `schedule` - Schedule
|
|
4077
4105
|
* `project_created` - Project created
|
|
4078
4106
|
* `project_status_changed` - Project status changed
|
|
4107
|
+
* `project_field` - Project field
|
|
4079
4108
|
* `slack_message` - Slack message
|
|
4080
4109
|
* `teams_message` - Teams message
|
|
4081
4110
|
* `email_received` - Email received
|
|
@@ -4262,6 +4291,9 @@ components:
|
|
|
4262
4291
|
has_admin_gate:
|
|
4263
4292
|
type: boolean
|
|
4264
4293
|
readOnly: true
|
|
4294
|
+
takes_project_input:
|
|
4295
|
+
type: boolean
|
|
4296
|
+
readOnly: true
|
|
4265
4297
|
last_run:
|
|
4266
4298
|
allOf:
|
|
4267
4299
|
- $ref: '#/components/schemas/WorkflowRun'
|
|
@@ -4286,6 +4318,7 @@ components:
|
|
|
4286
4318
|
- last_run
|
|
4287
4319
|
- name
|
|
4288
4320
|
- run_counts
|
|
4321
|
+
- takes_project_input
|
|
4289
4322
|
- trigger
|
|
4290
4323
|
- updated_at
|
|
4291
4324
|
- workspace
|
|
@@ -4588,6 +4621,9 @@ components:
|
|
|
4588
4621
|
type: string
|
|
4589
4622
|
format: date-time
|
|
4590
4623
|
readOnly: true
|
|
4624
|
+
timezone:
|
|
4625
|
+
type: string
|
|
4626
|
+
maxLength: 64
|
|
4591
4627
|
required:
|
|
4592
4628
|
- created_at
|
|
4593
4629
|
- id
|
|
@@ -4713,6 +4749,10 @@ components:
|
|
|
4713
4749
|
type: string
|
|
4714
4750
|
minLength: 1
|
|
4715
4751
|
maxLength: 255
|
|
4752
|
+
timezone:
|
|
4753
|
+
type: string
|
|
4754
|
+
minLength: 1
|
|
4755
|
+
maxLength: 64
|
|
4716
4756
|
required:
|
|
4717
4757
|
- name
|
|
4718
4758
|
securitySchemes:
|
|
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
|
|
File without changes
|