current-cli 0.1.6__tar.gz → 0.1.8__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.8}/PKG-INFO +1 -1
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/schema.yml +49 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/llms.txt +9 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/pyproject.toml +1 -1
- {current_cli-0.1.6 → current_cli-0.1.8}/.gitignore +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/README.md +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/__init__.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/build.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/config.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/docs.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/http.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/main.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/current_cli/schema.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/scripts/bump_version.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/tests/__init__.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/tests/conftest.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/tests/test_auth.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/tests/test_bump_version.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/tests/test_command_tree.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/tests/test_docs.py +0 -0
- {current_cli-0.1.6 → current_cli-0.1.8}/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
|
|
@@ -2421,6 +2450,9 @@ components:
|
|
|
2421
2450
|
company:
|
|
2422
2451
|
type: string
|
|
2423
2452
|
maxLength: 255
|
|
2453
|
+
role:
|
|
2454
|
+
type: string
|
|
2455
|
+
maxLength: 255
|
|
2424
2456
|
membership:
|
|
2425
2457
|
type: string
|
|
2426
2458
|
format: uuid
|
|
@@ -2525,6 +2557,9 @@ components:
|
|
|
2525
2557
|
company:
|
|
2526
2558
|
type: string
|
|
2527
2559
|
maxLength: 255
|
|
2560
|
+
role:
|
|
2561
|
+
type: string
|
|
2562
|
+
maxLength: 255
|
|
2528
2563
|
required:
|
|
2529
2564
|
- name
|
|
2530
2565
|
- workspace
|
|
@@ -2879,6 +2914,9 @@ components:
|
|
|
2879
2914
|
company:
|
|
2880
2915
|
type: string
|
|
2881
2916
|
maxLength: 255
|
|
2917
|
+
role:
|
|
2918
|
+
type: string
|
|
2919
|
+
maxLength: 255
|
|
2882
2920
|
PatchedProjectFieldDefinitionRequest:
|
|
2883
2921
|
type: object
|
|
2884
2922
|
properties:
|
|
@@ -3517,6 +3555,17 @@ components:
|
|
|
3517
3555
|
nullable: true
|
|
3518
3556
|
required:
|
|
3519
3557
|
- title
|
|
3558
|
+
TeamsConversation:
|
|
3559
|
+
type: object
|
|
3560
|
+
description: A Teams conversation the bot has seen (ledger-derived).
|
|
3561
|
+
properties:
|
|
3562
|
+
id:
|
|
3563
|
+
type: string
|
|
3564
|
+
name:
|
|
3565
|
+
type: string
|
|
3566
|
+
required:
|
|
3567
|
+
- id
|
|
3568
|
+
- name
|
|
3520
3569
|
ToolInvokeRequestRequest:
|
|
3521
3570
|
type: object
|
|
3522
3571
|
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
|