current-cli 0.1.34__tar.gz → 0.1.35__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.5
2
2
  Name: current-cli
3
- Version: 0.1.34
3
+ Version: 0.1.35
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
@@ -811,6 +811,32 @@ paths:
811
811
  responses:
812
812
  '204':
813
813
  description: No response body
814
+ /api/integrations/connections/{id}/basecamp-accounts/:
815
+ get:
816
+ operationId: integrations_connections_basecamp_accounts_list
817
+ description: Basecamp accounts visible to the connected identity.
818
+ parameters:
819
+ - in: path
820
+ name: id
821
+ schema:
822
+ type: string
823
+ format: uuid
824
+ description: A UUID string identifying this integration connection.
825
+ required: true
826
+ tags:
827
+ - integrations
828
+ security:
829
+ - MessagingJobTokenAuth: []
830
+ - tokenAuth: []
831
+ responses:
832
+ '200':
833
+ content:
834
+ application/json:
835
+ schema:
836
+ type: array
837
+ items:
838
+ $ref: '#/components/schemas/BasecampAccount'
839
+ description: ''
814
840
  /api/integrations/connections/{id}/channels/:
815
841
  get:
816
842
  operationId: integrations_connections_channels_list
@@ -837,6 +863,42 @@ paths:
837
863
  items:
838
864
  $ref: '#/components/schemas/SlackChannel'
839
865
  description: ''
866
+ /api/integrations/connections/{id}/select-basecamp-account/:
867
+ post:
868
+ operationId: integrations_connections_select_basecamp_account_create
869
+ description: Choose the one Basecamp account synchronized into this workspace.
870
+ parameters:
871
+ - in: path
872
+ name: id
873
+ schema:
874
+ type: string
875
+ format: uuid
876
+ description: A UUID string identifying this integration connection.
877
+ required: true
878
+ tags:
879
+ - integrations
880
+ requestBody:
881
+ content:
882
+ application/json:
883
+ schema:
884
+ $ref: '#/components/schemas/BasecampAccountSelectionRequest'
885
+ application/x-www-form-urlencoded:
886
+ schema:
887
+ $ref: '#/components/schemas/BasecampAccountSelectionRequest'
888
+ multipart/form-data:
889
+ schema:
890
+ $ref: '#/components/schemas/BasecampAccountSelectionRequest'
891
+ required: true
892
+ security:
893
+ - MessagingJobTokenAuth: []
894
+ - tokenAuth: []
895
+ responses:
896
+ '200':
897
+ content:
898
+ application/json:
899
+ schema:
900
+ $ref: '#/components/schemas/IntegrationConnection'
901
+ description: ''
840
902
  /api/integrations/connections/{id}/teams-conversations/:
841
903
  get:
842
904
  operationId: integrations_connections_teams_conversations_list
@@ -3390,6 +3452,34 @@ components:
3390
3452
  format: uri
3391
3453
  required:
3392
3454
  - authorize_url
3455
+ BasecampAccount:
3456
+ type: object
3457
+ properties:
3458
+ account_id:
3459
+ type: string
3460
+ name:
3461
+ type: string
3462
+ href:
3463
+ type: string
3464
+ format: uri
3465
+ app_href:
3466
+ oneOf:
3467
+ - type: string
3468
+ format: uri
3469
+ - type: string
3470
+ maxLength: 0
3471
+ required:
3472
+ - account_id
3473
+ - href
3474
+ - name
3475
+ BasecampAccountSelectionRequest:
3476
+ type: object
3477
+ properties:
3478
+ account_id:
3479
+ type: string
3480
+ minLength: 1
3481
+ required:
3482
+ - account_id
3393
3483
  ClientCredentialsConnectRequestRequest:
3394
3484
  type: object
3395
3485
  description: |-
@@ -3980,16 +4070,19 @@ components:
3980
4070
  - workspace
3981
4071
  IntegrationConnectionStatusEnum:
3982
4072
  enum:
4073
+ - setup_required
3983
4074
  - active
3984
4075
  - error
3985
4076
  - revoked
3986
4077
  type: string
3987
4078
  description: |-
4079
+ * `setup_required` - Setup required
3988
4080
  * `active` - Active
3989
4081
  * `error` - Error
3990
4082
  * `revoked` - Revoked
3991
4083
  IntegrationProviderEnum:
3992
4084
  enum:
4085
+ - basecamp
3993
4086
  - slack
3994
4087
  - teams
3995
4088
  - sharepoint
@@ -3997,6 +4090,7 @@ components:
3997
4090
  - salesforce
3998
4091
  type: string
3999
4092
  description: |-
4093
+ * `basecamp` - Basecamp
4000
4094
  * `slack` - Slack
4001
4095
  * `teams` - Microsoft Teams
4002
4096
  * `sharepoint` - SharePoint
@@ -293,6 +293,12 @@ POST /api/integrations/connections/authorize/
293
293
  Options:
294
294
  - `--data` (required) - Request body as JSON: inline, @file.json, or - for stdin.
295
295
 
296
+ ### current integrations connections basecamp-accounts list <id>
297
+
298
+ Basecamp accounts visible to the connected identity.
299
+
300
+ GET /api/integrations/connections/{id}/basecamp-accounts/
301
+
296
302
  ### current integrations connections channels list <id>
297
303
 
298
304
  List public Slack channels — verifies a Slack connection works.
@@ -350,6 +356,15 @@ All known providers and whether OAuth credentials are configured.
350
356
 
351
357
  GET /api/integrations/connections/providers/
352
358
 
359
+ ### current integrations connections select-basecamp-account create <id>
360
+
361
+ Choose the one Basecamp account synchronized into this workspace.
362
+
363
+ POST /api/integrations/connections/{id}/select-basecamp-account/
364
+
365
+ Options:
366
+ - `--data` (required) - Request body as JSON: inline, @file.json, or - for stdin.
367
+
353
368
  ### current integrations connections teams-conversations list <id>
354
369
 
355
370
  Teams conversations the bot has seen, derived from the
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "current-cli"
3
- version = "0.1.34"
3
+ version = "0.1.35"
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