current-cli 0.1.14__tar.gz → 0.1.16__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.14 → current_cli-0.1.16}/PKG-INFO +1 -1
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/schema.yml +53 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/llms.txt +14 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/pyproject.toml +1 -1
- {current_cli-0.1.14 → current_cli-0.1.16}/.gitignore +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/README.md +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/__init__.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/build.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/config.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/docs.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/http.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/main.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/current_cli/schema.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/scripts/bump_version.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/__init__.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/conftest.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/test_auth.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/test_docs.py +0 -0
- {current_cli-0.1.14 → current_cli-0.1.16}/tests/test_requests.py +0 -0
|
@@ -520,6 +520,47 @@ paths:
|
|
|
520
520
|
items:
|
|
521
521
|
$ref: '#/components/schemas/ProviderInfo'
|
|
522
522
|
description: ''
|
|
523
|
+
/api/integrations/teams/app-package/:
|
|
524
|
+
get:
|
|
525
|
+
operationId: integrations_teams_app_package
|
|
526
|
+
description: |-
|
|
527
|
+
Download the Teams app package (manifest + icons) as a zip.
|
|
528
|
+
|
|
529
|
+
The bot is a single-tenant Azure registration in the platform's home
|
|
530
|
+
tenant; customer tenants get the bot by uploading this package to their
|
|
531
|
+
Teams org catalog — no Azure work on their side. Admin-gated like the
|
|
532
|
+
rest of the integration surface.
|
|
533
|
+
parameters:
|
|
534
|
+
- in: query
|
|
535
|
+
name: workspace
|
|
536
|
+
schema:
|
|
537
|
+
type: string
|
|
538
|
+
description: Workspace UUID; the caller must be an admin of it.
|
|
539
|
+
required: true
|
|
540
|
+
tags:
|
|
541
|
+
- integrations
|
|
542
|
+
security:
|
|
543
|
+
- tokenAuth: []
|
|
544
|
+
responses:
|
|
545
|
+
'200':
|
|
546
|
+
content:
|
|
547
|
+
application/zip:
|
|
548
|
+
schema:
|
|
549
|
+
type: string
|
|
550
|
+
format: binary
|
|
551
|
+
description: ''
|
|
552
|
+
'403':
|
|
553
|
+
content:
|
|
554
|
+
application/json:
|
|
555
|
+
schema:
|
|
556
|
+
$ref: '#/components/schemas/ErrorDetail'
|
|
557
|
+
description: ''
|
|
558
|
+
'404':
|
|
559
|
+
content:
|
|
560
|
+
application/json:
|
|
561
|
+
schema:
|
|
562
|
+
$ref: '#/components/schemas/ErrorDetail'
|
|
563
|
+
description: ''
|
|
523
564
|
/api/observations/observations/:
|
|
524
565
|
get:
|
|
525
566
|
operationId: observations_observations_list
|
|
@@ -2736,6 +2777,13 @@ components:
|
|
|
2736
2777
|
format: uuid
|
|
2737
2778
|
required:
|
|
2738
2779
|
- workspace
|
|
2780
|
+
ErrorDetail:
|
|
2781
|
+
type: object
|
|
2782
|
+
properties:
|
|
2783
|
+
detail:
|
|
2784
|
+
type: string
|
|
2785
|
+
required:
|
|
2786
|
+
- detail
|
|
2739
2787
|
FeedItem:
|
|
2740
2788
|
type: object
|
|
2741
2789
|
description: One write in a project's history feed.
|
|
@@ -3525,6 +3573,10 @@ components:
|
|
|
3525
3573
|
produced_at:
|
|
3526
3574
|
type: string
|
|
3527
3575
|
format: date-time
|
|
3576
|
+
supersedes:
|
|
3577
|
+
type: string
|
|
3578
|
+
format: uuid
|
|
3579
|
+
nullable: true
|
|
3528
3580
|
required:
|
|
3529
3581
|
- data
|
|
3530
3582
|
- produced_at
|
|
@@ -3610,6 +3662,7 @@ components:
|
|
|
3610
3662
|
$ref: '#/components/schemas/RunApproval'
|
|
3611
3663
|
trigger:
|
|
3612
3664
|
nullable: true
|
|
3665
|
+
workflow_config: {}
|
|
3613
3666
|
required:
|
|
3614
3667
|
- approvals
|
|
3615
3668
|
- definition
|
|
@@ -205,6 +205,20 @@ powers the approval-routing FYI picker.
|
|
|
205
205
|
|
|
206
206
|
GET /api/integrations/connections/{id}/teams-conversations/
|
|
207
207
|
|
|
208
|
+
### current integrations teams app-package get
|
|
209
|
+
|
|
210
|
+
Download the Teams app package (manifest + icons) as a zip.
|
|
211
|
+
|
|
212
|
+
The bot is a single-tenant Azure registration in the platform's home
|
|
213
|
+
tenant; customer tenants get the bot by uploading this package to their
|
|
214
|
+
Teams org catalog — no Azure work on their side. Admin-gated like the
|
|
215
|
+
rest of the integration surface.
|
|
216
|
+
|
|
217
|
+
GET /api/integrations/teams/app-package/
|
|
218
|
+
|
|
219
|
+
Options:
|
|
220
|
+
- `--workspace` - Workspace UUID; the caller must be an admin of it.
|
|
221
|
+
|
|
208
222
|
### current login <email>
|
|
209
223
|
|
|
210
224
|
Sign in with a magic link and store the auth token.
|
|
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
|