current-cli 0.1.5__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.5
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
@@ -1302,6 +1331,58 @@ paths:
1302
1331
  schema:
1303
1332
  $ref: '#/components/schemas/ApprovalDecideResponse'
1304
1333
  description: ''
1334
+ /api/workflows/definitions/:
1335
+ get:
1336
+ operationId: workflows_definitions_list
1337
+ description: |-
1338
+ Applied workflow definitions across the caller's workspaces. The
1339
+ portal reads this to offer definitions when binding a new trigger;
1340
+ writes go through the apply endpoint.
1341
+ parameters:
1342
+ - in: query
1343
+ name: workspace
1344
+ schema:
1345
+ type: string
1346
+ description: Filter by workspace UUID
1347
+ tags:
1348
+ - workflows
1349
+ security:
1350
+ - tokenAuth: []
1351
+ responses:
1352
+ '200':
1353
+ content:
1354
+ application/json:
1355
+ schema:
1356
+ type: array
1357
+ items:
1358
+ $ref: '#/components/schemas/WorkflowDefinition'
1359
+ description: ''
1360
+ /api/workflows/definitions/{id}/:
1361
+ get:
1362
+ operationId: workflows_definitions_retrieve
1363
+ description: |-
1364
+ Applied workflow definitions across the caller's workspaces. The
1365
+ portal reads this to offer definitions when binding a new trigger;
1366
+ writes go through the apply endpoint.
1367
+ parameters:
1368
+ - in: path
1369
+ name: id
1370
+ schema:
1371
+ type: string
1372
+ format: uuid
1373
+ description: A UUID string identifying this workflow definition.
1374
+ required: true
1375
+ tags:
1376
+ - workflows
1377
+ security:
1378
+ - tokenAuth: []
1379
+ responses:
1380
+ '200':
1381
+ content:
1382
+ application/json:
1383
+ schema:
1384
+ $ref: '#/components/schemas/WorkflowDefinition'
1385
+ description: ''
1305
1386
  /api/workflows/definitions/apply/:
1306
1387
  post:
1307
1388
  operationId: workflows_definitions_apply_create
@@ -3465,6 +3546,17 @@ components:
3465
3546
  nullable: true
3466
3547
  required:
3467
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
3468
3560
  ToolInvokeRequestRequest:
3469
3561
  type: object
3470
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.
@@ -467,6 +476,25 @@ POST /api/workflows/definitions/apply/
467
476
  Options:
468
477
  - `--data` (required) - Request body as JSON: inline, @file.json, or - for stdin.
469
478
 
479
+ ### current workflows definitions list
480
+
481
+ Applied workflow definitions across the caller's workspaces. The
482
+ portal reads this to offer definitions when binding a new trigger;
483
+ writes go through the apply endpoint.
484
+
485
+ GET /api/workflows/definitions/
486
+
487
+ Options:
488
+ - `--workspace` - Filter by workspace UUID
489
+
490
+ ### current workflows definitions retrieve <id>
491
+
492
+ Applied workflow definitions across the caller's workspaces. The
493
+ portal reads this to offer definitions when binding a new trigger;
494
+ writes go through the apply endpoint.
495
+
496
+ GET /api/workflows/definitions/{id}/
497
+
470
498
  ### current workflows destroy <id>
471
499
 
472
500
  Workflows across the caller's workspaces. Any member can create and edit.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "current-cli"
3
- version = "0.1.5"
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