current-cli 0.1.18__tar.gz → 0.1.19__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.19}/PKG-INFO +1 -1
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/schema.yml +36 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/pyproject.toml +1 -1
- {current_cli-0.1.18 → current_cli-0.1.19}/.gitignore +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/README.md +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/__init__.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/build.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/config.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/docs.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/http.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/main.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/current_cli/schema.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/llms.txt +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/scripts/bump_version.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/tests/__init__.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/tests/conftest.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/tests/test_auth.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/tests/test_docs.py +0 -0
- {current_cli-0.1.18 → current_cli-0.1.19}/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
|
|
@@ -4588,6 +4617,9 @@ components:
|
|
|
4588
4617
|
type: string
|
|
4589
4618
|
format: date-time
|
|
4590
4619
|
readOnly: true
|
|
4620
|
+
timezone:
|
|
4621
|
+
type: string
|
|
4622
|
+
maxLength: 64
|
|
4591
4623
|
required:
|
|
4592
4624
|
- created_at
|
|
4593
4625
|
- id
|
|
@@ -4713,6 +4745,10 @@ components:
|
|
|
4713
4745
|
type: string
|
|
4714
4746
|
minLength: 1
|
|
4715
4747
|
maxLength: 255
|
|
4748
|
+
timezone:
|
|
4749
|
+
type: string
|
|
4750
|
+
minLength: 1
|
|
4751
|
+
maxLength: 64
|
|
4716
4752
|
required:
|
|
4717
4753
|
- name
|
|
4718
4754
|
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
|