current-cli 0.1.5__tar.gz → 0.1.6__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.5 → current_cli-0.1.6}/PKG-INFO +1 -1
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/schema.yml +52 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/llms.txt +19 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/pyproject.toml +1 -1
- {current_cli-0.1.5 → current_cli-0.1.6}/.gitignore +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/README.md +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/__init__.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/build.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/config.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/docs.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/http.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/main.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/current_cli/schema.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/scripts/bump_version.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/__init__.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/conftest.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/test_auth.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/test_docs.py +0 -0
- {current_cli-0.1.5 → current_cli-0.1.6}/tests/test_requests.py +0 -0
|
@@ -1302,6 +1302,58 @@ paths:
|
|
|
1302
1302
|
schema:
|
|
1303
1303
|
$ref: '#/components/schemas/ApprovalDecideResponse'
|
|
1304
1304
|
description: ''
|
|
1305
|
+
/api/workflows/definitions/:
|
|
1306
|
+
get:
|
|
1307
|
+
operationId: workflows_definitions_list
|
|
1308
|
+
description: |-
|
|
1309
|
+
Applied workflow definitions across the caller's workspaces. The
|
|
1310
|
+
portal reads this to offer definitions when binding a new trigger;
|
|
1311
|
+
writes go through the apply endpoint.
|
|
1312
|
+
parameters:
|
|
1313
|
+
- in: query
|
|
1314
|
+
name: workspace
|
|
1315
|
+
schema:
|
|
1316
|
+
type: string
|
|
1317
|
+
description: Filter by workspace UUID
|
|
1318
|
+
tags:
|
|
1319
|
+
- workflows
|
|
1320
|
+
security:
|
|
1321
|
+
- tokenAuth: []
|
|
1322
|
+
responses:
|
|
1323
|
+
'200':
|
|
1324
|
+
content:
|
|
1325
|
+
application/json:
|
|
1326
|
+
schema:
|
|
1327
|
+
type: array
|
|
1328
|
+
items:
|
|
1329
|
+
$ref: '#/components/schemas/WorkflowDefinition'
|
|
1330
|
+
description: ''
|
|
1331
|
+
/api/workflows/definitions/{id}/:
|
|
1332
|
+
get:
|
|
1333
|
+
operationId: workflows_definitions_retrieve
|
|
1334
|
+
description: |-
|
|
1335
|
+
Applied workflow definitions across the caller's workspaces. The
|
|
1336
|
+
portal reads this to offer definitions when binding a new trigger;
|
|
1337
|
+
writes go through the apply endpoint.
|
|
1338
|
+
parameters:
|
|
1339
|
+
- in: path
|
|
1340
|
+
name: id
|
|
1341
|
+
schema:
|
|
1342
|
+
type: string
|
|
1343
|
+
format: uuid
|
|
1344
|
+
description: A UUID string identifying this workflow definition.
|
|
1345
|
+
required: true
|
|
1346
|
+
tags:
|
|
1347
|
+
- workflows
|
|
1348
|
+
security:
|
|
1349
|
+
- tokenAuth: []
|
|
1350
|
+
responses:
|
|
1351
|
+
'200':
|
|
1352
|
+
content:
|
|
1353
|
+
application/json:
|
|
1354
|
+
schema:
|
|
1355
|
+
$ref: '#/components/schemas/WorkflowDefinition'
|
|
1356
|
+
description: ''
|
|
1305
1357
|
/api/workflows/definitions/apply/:
|
|
1306
1358
|
post:
|
|
1307
1359
|
operationId: workflows_definitions_apply_create
|
|
@@ -467,6 +467,25 @@ POST /api/workflows/definitions/apply/
|
|
|
467
467
|
Options:
|
|
468
468
|
- `--data` (required) - Request body as JSON: inline, @file.json, or - for stdin.
|
|
469
469
|
|
|
470
|
+
### current workflows definitions list
|
|
471
|
+
|
|
472
|
+
Applied workflow definitions across the caller's workspaces. The
|
|
473
|
+
portal reads this to offer definitions when binding a new trigger;
|
|
474
|
+
writes go through the apply endpoint.
|
|
475
|
+
|
|
476
|
+
GET /api/workflows/definitions/
|
|
477
|
+
|
|
478
|
+
Options:
|
|
479
|
+
- `--workspace` - Filter by workspace UUID
|
|
480
|
+
|
|
481
|
+
### current workflows definitions retrieve <id>
|
|
482
|
+
|
|
483
|
+
Applied workflow definitions across the caller's workspaces. The
|
|
484
|
+
portal reads this to offer definitions when binding a new trigger;
|
|
485
|
+
writes go through the apply endpoint.
|
|
486
|
+
|
|
487
|
+
GET /api/workflows/definitions/{id}/
|
|
488
|
+
|
|
470
489
|
### current workflows destroy <id>
|
|
471
490
|
|
|
472
491
|
Workflows across the caller's workspaces. Any member can create and edit.
|
|
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
|