current-cli 0.1.15__tar.gz → 0.1.17__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.15 → current_cli-0.1.17}/PKG-INFO +1 -1
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/schema.yml +50 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/llms.txt +14 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/pyproject.toml +1 -1
- {current_cli-0.1.15 → current_cli-0.1.17}/.gitignore +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/README.md +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/__init__.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/build.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/config.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/docs.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/http.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/main.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/current_cli/schema.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/scripts/bump_version.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/tests/__init__.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/tests/conftest.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/tests/test_auth.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/tests/test_docs.py +0 -0
- {current_cli-0.1.15 → current_cli-0.1.17}/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
|
|
@@ -2718,6 +2759,7 @@ components:
|
|
|
2718
2759
|
- boolean
|
|
2719
2760
|
- date
|
|
2720
2761
|
- url
|
|
2762
|
+
- contact
|
|
2721
2763
|
type: string
|
|
2722
2764
|
description: |-
|
|
2723
2765
|
* `text` - Text
|
|
@@ -2725,6 +2767,7 @@ components:
|
|
|
2725
2767
|
* `boolean` - Boolean
|
|
2726
2768
|
* `date` - Date
|
|
2727
2769
|
* `url` - URL
|
|
2770
|
+
* `contact` - Contact
|
|
2728
2771
|
DefinitionApplyRequest:
|
|
2729
2772
|
type: object
|
|
2730
2773
|
description: |-
|
|
@@ -2736,6 +2779,13 @@ components:
|
|
|
2736
2779
|
format: uuid
|
|
2737
2780
|
required:
|
|
2738
2781
|
- workspace
|
|
2782
|
+
ErrorDetail:
|
|
2783
|
+
type: object
|
|
2784
|
+
properties:
|
|
2785
|
+
detail:
|
|
2786
|
+
type: string
|
|
2787
|
+
required:
|
|
2788
|
+
- detail
|
|
2739
2789
|
FeedItem:
|
|
2740
2790
|
type: object
|
|
2741
2791
|
description: One write in a project's history feed.
|
|
@@ -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
|