current-cli 0.1.6__tar.gz → 0.1.7__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.6 → current_cli-0.1.7}/PKG-INFO +1 -1
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/schema.yml +40 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/llms.txt +9 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/pyproject.toml +1 -1
- {current_cli-0.1.6 → current_cli-0.1.7}/.gitignore +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/README.md +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/__init__.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/build.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/config.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/docs.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/http.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/main.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/current_cli/schema.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/scripts/bump_version.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/__init__.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/conftest.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/test_auth.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/test_docs.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.7}/tests/test_requests.py +0 -0
|
@@ -397,6 +397,35 @@ paths:
|
|
|
397
397
|
items:
|
|
398
398
|
$ref: '#/components/schemas/SlackChannel'
|
|
399
399
|
description: ''
|
|
400
|
+
/api/integrations/connections/{id}/teams-conversations/:
|
|
401
|
+
get:
|
|
402
|
+
operationId: integrations_connections_teams_conversations_list
|
|
403
|
+
description: |-
|
|
404
|
+
Teams conversations the bot has seen, derived from the
|
|
405
|
+
observations ledger (there is no conversation table and the Bot
|
|
406
|
+
Connector has no listing API). Personal DMs are excluded — this
|
|
407
|
+
powers the approval-routing FYI picker.
|
|
408
|
+
parameters:
|
|
409
|
+
- in: path
|
|
410
|
+
name: id
|
|
411
|
+
schema:
|
|
412
|
+
type: string
|
|
413
|
+
format: uuid
|
|
414
|
+
description: A UUID string identifying this integration connection.
|
|
415
|
+
required: true
|
|
416
|
+
tags:
|
|
417
|
+
- integrations
|
|
418
|
+
security:
|
|
419
|
+
- tokenAuth: []
|
|
420
|
+
responses:
|
|
421
|
+
'200':
|
|
422
|
+
content:
|
|
423
|
+
application/json:
|
|
424
|
+
schema:
|
|
425
|
+
type: array
|
|
426
|
+
items:
|
|
427
|
+
$ref: '#/components/schemas/TeamsConversation'
|
|
428
|
+
description: ''
|
|
400
429
|
/api/integrations/connections/authorize/:
|
|
401
430
|
post:
|
|
402
431
|
operationId: integrations_connections_authorize_create
|
|
@@ -3517,6 +3546,17 @@ components:
|
|
|
3517
3546
|
nullable: true
|
|
3518
3547
|
required:
|
|
3519
3548
|
- title
|
|
3549
|
+
TeamsConversation:
|
|
3550
|
+
type: object
|
|
3551
|
+
description: A Teams conversation the bot has seen (ledger-derived).
|
|
3552
|
+
properties:
|
|
3553
|
+
id:
|
|
3554
|
+
type: string
|
|
3555
|
+
name:
|
|
3556
|
+
type: string
|
|
3557
|
+
required:
|
|
3558
|
+
- id
|
|
3559
|
+
- name
|
|
3520
3560
|
ToolInvokeRequestRequest:
|
|
3521
3561
|
type: object
|
|
3522
3562
|
properties:
|
|
@@ -178,6 +178,15 @@ All known providers and whether OAuth credentials are configured.
|
|
|
178
178
|
|
|
179
179
|
GET /api/integrations/connections/providers/
|
|
180
180
|
|
|
181
|
+
### current integrations connections teams-conversations list <id>
|
|
182
|
+
|
|
183
|
+
Teams conversations the bot has seen, derived from the
|
|
184
|
+
observations ledger (there is no conversation table and the Bot
|
|
185
|
+
Connector has no listing API). Personal DMs are excluded — this
|
|
186
|
+
powers the approval-routing FYI picker.
|
|
187
|
+
|
|
188
|
+
GET /api/integrations/connections/{id}/teams-conversations/
|
|
189
|
+
|
|
181
190
|
### current login <email>
|
|
182
191
|
|
|
183
192
|
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
|