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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: current-cli
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Command line interface for the Current API, generated from its OpenAPI schema at runtime
5
5
  Author-email: Orin <your-email@example.com>
6
6
  License-Expression: MIT
@@ -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.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "current-cli"
3
- version = "0.1.6"
3
+ version = "0.1.7"
4
4
  description = "Command line interface for the Current API, generated from its OpenAPI schema at runtime"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes