@seamapi/types 1.384.0 → 1.386.0

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.
Files changed (46) hide show
  1. package/dist/connect.cjs +629 -150
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +4211 -445
  4. package/lib/seam/connect/models/access-grants/access-grant.d.ts +8 -5
  5. package/lib/seam/connect/models/access-grants/access-grant.js +3 -0
  6. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  7. package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
  8. package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
  9. package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +156 -0
  11. package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -0
  12. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  13. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +80 -0
  14. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js +28 -0
  15. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js.map +1 -0
  16. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +80 -0
  17. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js +28 -0
  18. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js.map +1 -0
  19. package/lib/seam/connect/models/colors.d.ts +2 -0
  20. package/lib/seam/connect/models/colors.js +8 -0
  21. package/lib/seam/connect/models/colors.js.map +1 -0
  22. package/lib/seam/connect/models/events/access-grants.d.ts +277 -0
  23. package/lib/seam/connect/models/events/access-grants.js +60 -0
  24. package/lib/seam/connect/models/events/access-grants.js.map +1 -0
  25. package/lib/seam/connect/models/events/access-methods.d.ts +146 -0
  26. package/lib/seam/connect/models/events/access-methods.js +35 -0
  27. package/lib/seam/connect/models/events/access-methods.js.map +1 -0
  28. package/lib/seam/connect/models/workspaces/workspace.d.ts +33 -0
  29. package/lib/seam/connect/models/workspaces/workspace.js +8 -0
  30. package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
  31. package/lib/seam/connect/openapi.d.ts +523 -225
  32. package/lib/seam/connect/openapi.js +592 -171
  33. package/lib/seam/connect/openapi.js.map +1 -1
  34. package/lib/seam/connect/route-types.d.ts +3477 -198
  35. package/package.json +2 -2
  36. package/src/lib/seam/connect/models/access-grants/access-grant.ts +5 -0
  37. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +4 -2
  38. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -0
  39. package/src/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.ts +39 -0
  40. package/src/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.ts +37 -0
  41. package/src/lib/seam/connect/models/colors.ts +9 -0
  42. package/src/lib/seam/connect/models/events/access-grants.ts +92 -0
  43. package/src/lib/seam/connect/models/events/access-methods.ts +51 -0
  44. package/src/lib/seam/connect/models/workspaces/workspace.ts +9 -0
  45. package/src/lib/seam/connect/openapi.ts +615 -175
  46. package/src/lib/seam/connect/route-types.ts +3793 -36
@@ -9299,6 +9299,27 @@ declare const _default: {
9299
9299
  type: string;
9300
9300
  'x-deprecated': string;
9301
9301
  };
9302
+ connect_webview_customization: {
9303
+ properties: {
9304
+ inviter_logo_url: {
9305
+ type: string;
9306
+ };
9307
+ logo_shape: {
9308
+ enum: string[];
9309
+ type: string;
9310
+ };
9311
+ primary_button_color: {
9312
+ type: string;
9313
+ };
9314
+ primary_button_text_color: {
9315
+ type: string;
9316
+ };
9317
+ success_message: {
9318
+ type: string;
9319
+ };
9320
+ };
9321
+ type: string;
9322
+ };
9302
9323
  is_sandbox: {
9303
9324
  type: string;
9304
9325
  };
@@ -18248,142 +18269,6 @@ declare const _default: {
18248
18269
  'x-response-key': string;
18249
18270
  };
18250
18271
  };
18251
- '/devices/simulate/access_code_lock': {
18252
- post: {
18253
- operationId: string;
18254
- requestBody: {
18255
- content: {
18256
- 'application/json': {
18257
- schema: {
18258
- properties: {
18259
- access_code_id: {
18260
- format: string;
18261
- type: string;
18262
- };
18263
- device_id: {
18264
- format: string;
18265
- type: string;
18266
- };
18267
- };
18268
- required: string[];
18269
- type: string;
18270
- };
18271
- };
18272
- };
18273
- };
18274
- responses: {
18275
- 200: {
18276
- content: {
18277
- 'application/json': {
18278
- schema: {
18279
- properties: {
18280
- ok: {
18281
- type: string;
18282
- };
18283
- };
18284
- required: string[];
18285
- type: string;
18286
- };
18287
- };
18288
- };
18289
- description: string;
18290
- };
18291
- 400: {
18292
- description: string;
18293
- };
18294
- 401: {
18295
- description: string;
18296
- };
18297
- };
18298
- security: ({
18299
- api_key: never[];
18300
- pat_with_workspace?: never;
18301
- console_session_with_workspace?: never;
18302
- } | {
18303
- pat_with_workspace: never[];
18304
- api_key?: never;
18305
- console_session_with_workspace?: never;
18306
- } | {
18307
- console_session_with_workspace: never[];
18308
- api_key?: never;
18309
- pat_with_workspace?: never;
18310
- })[];
18311
- summary: string;
18312
- tags: string[];
18313
- 'x-fern-sdk-group-name': string[];
18314
- 'x-fern-sdk-method-name': string;
18315
- 'x-response-key': null;
18316
- 'x-undocumented': string;
18317
- };
18318
- };
18319
- '/devices/simulate/access_code_unlock': {
18320
- post: {
18321
- operationId: string;
18322
- requestBody: {
18323
- content: {
18324
- 'application/json': {
18325
- schema: {
18326
- properties: {
18327
- access_code_id: {
18328
- format: string;
18329
- type: string;
18330
- };
18331
- device_id: {
18332
- format: string;
18333
- type: string;
18334
- };
18335
- };
18336
- required: string[];
18337
- type: string;
18338
- };
18339
- };
18340
- };
18341
- };
18342
- responses: {
18343
- 200: {
18344
- content: {
18345
- 'application/json': {
18346
- schema: {
18347
- properties: {
18348
- ok: {
18349
- type: string;
18350
- };
18351
- };
18352
- required: string[];
18353
- type: string;
18354
- };
18355
- };
18356
- };
18357
- description: string;
18358
- };
18359
- 400: {
18360
- description: string;
18361
- };
18362
- 401: {
18363
- description: string;
18364
- };
18365
- };
18366
- security: ({
18367
- api_key: never[];
18368
- pat_with_workspace?: never;
18369
- console_session_with_workspace?: never;
18370
- } | {
18371
- pat_with_workspace: never[];
18372
- api_key?: never;
18373
- console_session_with_workspace?: never;
18374
- } | {
18375
- console_session_with_workspace: never[];
18376
- api_key?: never;
18377
- pat_with_workspace?: never;
18378
- })[];
18379
- summary: string;
18380
- tags: string[];
18381
- 'x-fern-sdk-group-name': string[];
18382
- 'x-fern-sdk-method-name': string;
18383
- 'x-response-key': null;
18384
- 'x-undocumented': string;
18385
- };
18386
- };
18387
18272
  '/devices/simulate/connect': {
18388
18273
  post: {
18389
18274
  operationId: string;
@@ -19721,7 +19606,7 @@ declare const _default: {
19721
19606
  'x-response-key': string;
19722
19607
  };
19723
19608
  };
19724
- '/locks/unlock_door': {
19609
+ '/locks/simulate/keypad_code_entry': {
19725
19610
  post: {
19726
19611
  operationId: string;
19727
19612
  requestBody: {
@@ -19729,12 +19614,11 @@ declare const _default: {
19729
19614
  'application/json': {
19730
19615
  schema: {
19731
19616
  properties: {
19732
- device_id: {
19733
- format: string;
19617
+ code: {
19734
19618
  type: string;
19735
19619
  };
19736
- sync: {
19737
- default: boolean;
19620
+ device_id: {
19621
+ format: string;
19738
19622
  type: string;
19739
19623
  };
19740
19624
  };
@@ -19772,25 +19656,17 @@ declare const _default: {
19772
19656
  };
19773
19657
  };
19774
19658
  security: ({
19775
- client_session: never[];
19659
+ api_key: never[];
19776
19660
  pat_with_workspace?: never;
19777
19661
  console_session_with_workspace?: never;
19778
- api_key?: never;
19779
19662
  } | {
19780
19663
  pat_with_workspace: never[];
19781
- client_session?: never;
19782
- console_session_with_workspace?: never;
19783
19664
  api_key?: never;
19665
+ console_session_with_workspace?: never;
19784
19666
  } | {
19785
19667
  console_session_with_workspace: never[];
19786
- client_session?: never;
19787
- pat_with_workspace?: never;
19788
19668
  api_key?: never;
19789
- } | {
19790
- api_key: never[];
19791
- client_session?: never;
19792
19669
  pat_with_workspace?: never;
19793
- console_session_with_workspace?: never;
19794
19670
  })[];
19795
19671
  summary: string;
19796
19672
  tags: string[];
@@ -19799,9 +19675,10 @@ declare const _default: {
19799
19675
  'x-fern-sdk-method-name': string;
19800
19676
  'x-fern-sdk-return-value': string;
19801
19677
  'x-response-key': string;
19678
+ 'x-undocumented': string;
19802
19679
  };
19803
19680
  };
19804
- '/networks/get': {
19681
+ '/locks/simulate/manual_lock_via_keypad': {
19805
19682
  post: {
19806
19683
  operationId: string;
19807
19684
  requestBody: {
@@ -19809,7 +19686,7 @@ declare const _default: {
19809
19686
  'application/json': {
19810
19687
  schema: {
19811
19688
  properties: {
19812
- network_id: {
19689
+ device_id: {
19813
19690
  format: string;
19814
19691
  type: string;
19815
19692
  };
@@ -19826,7 +19703,7 @@ declare const _default: {
19826
19703
  'application/json': {
19827
19704
  schema: {
19828
19705
  properties: {
19829
- network: {
19706
+ action_attempt: {
19830
19707
  $ref: string;
19831
19708
  };
19832
19709
  ok: {
@@ -19848,34 +19725,46 @@ declare const _default: {
19848
19725
  };
19849
19726
  };
19850
19727
  security: ({
19851
- pat_with_workspace: never[];
19728
+ api_key: never[];
19729
+ pat_with_workspace?: never;
19852
19730
  console_session_with_workspace?: never;
19731
+ } | {
19732
+ pat_with_workspace: never[];
19853
19733
  api_key?: never;
19734
+ console_session_with_workspace?: never;
19854
19735
  } | {
19855
19736
  console_session_with_workspace: never[];
19856
- pat_with_workspace?: never;
19857
19737
  api_key?: never;
19858
- } | {
19859
- api_key: never[];
19860
19738
  pat_with_workspace?: never;
19861
- console_session_with_workspace?: never;
19862
19739
  })[];
19863
19740
  summary: string;
19864
19741
  tags: string[];
19742
+ 'x-action-attempt-type': string;
19865
19743
  'x-fern-sdk-group-name': string[];
19866
19744
  'x-fern-sdk-method-name': string;
19867
19745
  'x-fern-sdk-return-value': string;
19868
19746
  'x-response-key': string;
19747
+ 'x-undocumented': string;
19869
19748
  };
19870
19749
  };
19871
- '/networks/list': {
19750
+ '/locks/unlock_door': {
19872
19751
  post: {
19873
19752
  operationId: string;
19874
19753
  requestBody: {
19875
19754
  content: {
19876
19755
  'application/json': {
19877
19756
  schema: {
19878
- properties: {};
19757
+ properties: {
19758
+ device_id: {
19759
+ format: string;
19760
+ type: string;
19761
+ };
19762
+ sync: {
19763
+ default: boolean;
19764
+ type: string;
19765
+ };
19766
+ };
19767
+ required: string[];
19879
19768
  type: string;
19880
19769
  };
19881
19770
  };
@@ -19887,11 +19776,8 @@ declare const _default: {
19887
19776
  'application/json': {
19888
19777
  schema: {
19889
19778
  properties: {
19890
- networks: {
19891
- items: {
19892
- $ref: string;
19893
- };
19894
- type: string;
19779
+ action_attempt: {
19780
+ $ref: string;
19895
19781
  };
19896
19782
  ok: {
19897
19783
  type: string;
@@ -19912,27 +19798,36 @@ declare const _default: {
19912
19798
  };
19913
19799
  };
19914
19800
  security: ({
19801
+ client_session: never[];
19802
+ pat_with_workspace?: never;
19803
+ console_session_with_workspace?: never;
19804
+ api_key?: never;
19805
+ } | {
19915
19806
  pat_with_workspace: never[];
19807
+ client_session?: never;
19916
19808
  console_session_with_workspace?: never;
19917
19809
  api_key?: never;
19918
19810
  } | {
19919
19811
  console_session_with_workspace: never[];
19812
+ client_session?: never;
19920
19813
  pat_with_workspace?: never;
19921
19814
  api_key?: never;
19922
19815
  } | {
19923
19816
  api_key: never[];
19817
+ client_session?: never;
19924
19818
  pat_with_workspace?: never;
19925
19819
  console_session_with_workspace?: never;
19926
19820
  })[];
19927
19821
  summary: string;
19928
19822
  tags: string[];
19823
+ 'x-action-attempt-type': string;
19929
19824
  'x-fern-sdk-group-name': string[];
19930
19825
  'x-fern-sdk-method-name': string;
19931
19826
  'x-fern-sdk-return-value': string;
19932
19827
  'x-response-key': string;
19933
19828
  };
19934
19829
  };
19935
- '/noise_sensors/list': {
19830
+ '/networks/get': {
19936
19831
  post: {
19937
19832
  operationId: string;
19938
19833
  requestBody: {
@@ -19940,31 +19835,162 @@ declare const _default: {
19940
19835
  'application/json': {
19941
19836
  schema: {
19942
19837
  properties: {
19943
- connect_webview_id: {
19944
- description: string;
19945
- format: string;
19946
- type: string;
19947
- };
19948
- connected_account_id: {
19949
- description: string;
19838
+ network_id: {
19950
19839
  format: string;
19951
19840
  type: string;
19952
19841
  };
19953
- connected_account_ids: {
19954
- description: string;
19955
- items: {
19956
- format: string;
19842
+ };
19843
+ required: string[];
19844
+ type: string;
19845
+ };
19846
+ };
19847
+ };
19848
+ };
19849
+ responses: {
19850
+ 200: {
19851
+ content: {
19852
+ 'application/json': {
19853
+ schema: {
19854
+ properties: {
19855
+ network: {
19856
+ $ref: string;
19857
+ };
19858
+ ok: {
19957
19859
  type: string;
19958
19860
  };
19959
- type: string;
19960
- };
19961
- created_before: {
19962
- description: string;
19963
- format: string;
19964
- type: string;
19965
19861
  };
19966
- custom_metadata_has: {
19967
- additionalProperties: {
19862
+ required: string[];
19863
+ type: string;
19864
+ };
19865
+ };
19866
+ };
19867
+ description: string;
19868
+ };
19869
+ 400: {
19870
+ description: string;
19871
+ };
19872
+ 401: {
19873
+ description: string;
19874
+ };
19875
+ };
19876
+ security: ({
19877
+ pat_with_workspace: never[];
19878
+ console_session_with_workspace?: never;
19879
+ api_key?: never;
19880
+ } | {
19881
+ console_session_with_workspace: never[];
19882
+ pat_with_workspace?: never;
19883
+ api_key?: never;
19884
+ } | {
19885
+ api_key: never[];
19886
+ pat_with_workspace?: never;
19887
+ console_session_with_workspace?: never;
19888
+ })[];
19889
+ summary: string;
19890
+ tags: string[];
19891
+ 'x-fern-sdk-group-name': string[];
19892
+ 'x-fern-sdk-method-name': string;
19893
+ 'x-fern-sdk-return-value': string;
19894
+ 'x-response-key': string;
19895
+ };
19896
+ };
19897
+ '/networks/list': {
19898
+ post: {
19899
+ operationId: string;
19900
+ requestBody: {
19901
+ content: {
19902
+ 'application/json': {
19903
+ schema: {
19904
+ properties: {};
19905
+ type: string;
19906
+ };
19907
+ };
19908
+ };
19909
+ };
19910
+ responses: {
19911
+ 200: {
19912
+ content: {
19913
+ 'application/json': {
19914
+ schema: {
19915
+ properties: {
19916
+ networks: {
19917
+ items: {
19918
+ $ref: string;
19919
+ };
19920
+ type: string;
19921
+ };
19922
+ ok: {
19923
+ type: string;
19924
+ };
19925
+ };
19926
+ required: string[];
19927
+ type: string;
19928
+ };
19929
+ };
19930
+ };
19931
+ description: string;
19932
+ };
19933
+ 400: {
19934
+ description: string;
19935
+ };
19936
+ 401: {
19937
+ description: string;
19938
+ };
19939
+ };
19940
+ security: ({
19941
+ pat_with_workspace: never[];
19942
+ console_session_with_workspace?: never;
19943
+ api_key?: never;
19944
+ } | {
19945
+ console_session_with_workspace: never[];
19946
+ pat_with_workspace?: never;
19947
+ api_key?: never;
19948
+ } | {
19949
+ api_key: never[];
19950
+ pat_with_workspace?: never;
19951
+ console_session_with_workspace?: never;
19952
+ })[];
19953
+ summary: string;
19954
+ tags: string[];
19955
+ 'x-fern-sdk-group-name': string[];
19956
+ 'x-fern-sdk-method-name': string;
19957
+ 'x-fern-sdk-return-value': string;
19958
+ 'x-response-key': string;
19959
+ };
19960
+ };
19961
+ '/noise_sensors/list': {
19962
+ post: {
19963
+ operationId: string;
19964
+ requestBody: {
19965
+ content: {
19966
+ 'application/json': {
19967
+ schema: {
19968
+ properties: {
19969
+ connect_webview_id: {
19970
+ description: string;
19971
+ format: string;
19972
+ type: string;
19973
+ };
19974
+ connected_account_id: {
19975
+ description: string;
19976
+ format: string;
19977
+ type: string;
19978
+ };
19979
+ connected_account_ids: {
19980
+ description: string;
19981
+ items: {
19982
+ format: string;
19983
+ type: string;
19984
+ };
19985
+ type: string;
19986
+ };
19987
+ created_before: {
19988
+ description: string;
19989
+ format: string;
19990
+ type: string;
19991
+ };
19992
+ custom_metadata_has: {
19993
+ additionalProperties: {
19968
19994
  oneOf: {
19969
19995
  type: string;
19970
19996
  }[];
@@ -22216,6 +22242,65 @@ declare const _default: {
22216
22242
  'x-undocumented': string;
22217
22243
  };
22218
22244
  };
22245
+ '/seam/instant_key/v1/client_sessions/exchange_short_code': {
22246
+ post: {
22247
+ description: string;
22248
+ operationId: string;
22249
+ requestBody: {
22250
+ content: {
22251
+ 'application/json': {
22252
+ schema: {
22253
+ properties: {
22254
+ short_code: {
22255
+ description: string;
22256
+ type: string;
22257
+ };
22258
+ };
22259
+ required: string[];
22260
+ type: string;
22261
+ };
22262
+ };
22263
+ };
22264
+ };
22265
+ responses: {
22266
+ 200: {
22267
+ content: {
22268
+ 'application/json': {
22269
+ schema: {
22270
+ properties: {
22271
+ client_session: {
22272
+ $ref: string;
22273
+ };
22274
+ ok: {
22275
+ type: string;
22276
+ };
22277
+ };
22278
+ required: string[];
22279
+ type: string;
22280
+ };
22281
+ };
22282
+ };
22283
+ description: string;
22284
+ };
22285
+ 400: {
22286
+ description: string;
22287
+ };
22288
+ 401: {
22289
+ description: string;
22290
+ };
22291
+ };
22292
+ security: {
22293
+ certified_client: never[];
22294
+ }[];
22295
+ summary: string;
22296
+ tags: string[];
22297
+ 'x-fern-sdk-group-name': string[];
22298
+ 'x-fern-sdk-method-name': string;
22299
+ 'x-fern-sdk-return-value': string;
22300
+ 'x-response-key': string;
22301
+ 'x-title': string;
22302
+ };
22303
+ };
22219
22304
  '/thermostats/activate_climate_preset': {
22220
22305
  post: {
22221
22306
  description: string;
@@ -24722,20 +24807,6 @@ declare const _default: {
24722
24807
  type?: never;
24723
24808
  } | {
24724
24809
  properties: {
24725
- desired_access_methods: {
24726
- items: {
24727
- properties: {
24728
- mode: {
24729
- description: string;
24730
- enum: string[];
24731
- type: string;
24732
- };
24733
- };
24734
- required: string[];
24735
- type: string;
24736
- };
24737
- type: string;
24738
- };
24739
24810
  ends_at: {
24740
24811
  description: string;
24741
24812
  format: string;
@@ -24762,6 +24833,10 @@ declare const _default: {
24762
24833
  };
24763
24834
  type: string;
24764
24835
  };
24836
+ name: {
24837
+ description: string;
24838
+ type: string;
24839
+ };
24765
24840
  };
24766
24841
  type: string;
24767
24842
  };
@@ -24773,6 +24848,20 @@ declare const _default: {
24773
24848
  };
24774
24849
  type: string;
24775
24850
  };
24851
+ requested_access_methods: {
24852
+ items: {
24853
+ properties: {
24854
+ mode: {
24855
+ description: string;
24856
+ enum: string[];
24857
+ type: string;
24858
+ };
24859
+ };
24860
+ required: string[];
24861
+ type: string;
24862
+ };
24863
+ type: string;
24864
+ };
24776
24865
  starts_at: {
24777
24866
  description: string;
24778
24867
  format: string;
@@ -24800,6 +24889,14 @@ declare const _default: {
24800
24889
  format: string;
24801
24890
  type: string;
24802
24891
  };
24892
+ access_method_ids: {
24893
+ description: string;
24894
+ items: {
24895
+ format: string;
24896
+ type: string;
24897
+ };
24898
+ type: string;
24899
+ };
24803
24900
  created_at: {
24804
24901
  description: string;
24805
24902
  format: string;
@@ -24821,6 +24918,14 @@ declare const _default: {
24821
24918
  description: string;
24822
24919
  items: {
24823
24920
  properties: {
24921
+ created_access_method_ids: {
24922
+ description: string;
24923
+ items: {
24924
+ format: string;
24925
+ type: string;
24926
+ };
24927
+ type: string;
24928
+ };
24824
24929
  created_at: {
24825
24930
  description: string;
24826
24931
  format: string;
@@ -24835,14 +24940,6 @@ declare const _default: {
24835
24940
  enum: string[];
24836
24941
  type: string;
24837
24942
  };
24838
- provisioned_access_method_ids: {
24839
- description: string;
24840
- items: {
24841
- format: string;
24842
- type: string;
24843
- };
24844
- type: string;
24845
- };
24846
24943
  };
24847
24944
  required: string[];
24848
24945
  type: string;
@@ -24940,6 +25037,14 @@ declare const _default: {
24940
25037
  format: string;
24941
25038
  type: string;
24942
25039
  };
25040
+ access_method_ids: {
25041
+ description: string;
25042
+ items: {
25043
+ format: string;
25044
+ type: string;
25045
+ };
25046
+ type: string;
25047
+ };
24943
25048
  created_at: {
24944
25049
  description: string;
24945
25050
  format: string;
@@ -24961,6 +25066,14 @@ declare const _default: {
24961
25066
  description: string;
24962
25067
  items: {
24963
25068
  properties: {
25069
+ created_access_method_ids: {
25070
+ description: string;
25071
+ items: {
25072
+ format: string;
25073
+ type: string;
25074
+ };
25075
+ type: string;
25076
+ };
24964
25077
  created_at: {
24965
25078
  description: string;
24966
25079
  format: string;
@@ -24975,14 +25088,6 @@ declare const _default: {
24975
25088
  enum: string[];
24976
25089
  type: string;
24977
25090
  };
24978
- provisioned_access_method_ids: {
24979
- description: string;
24980
- items: {
24981
- format: string;
24982
- type: string;
24983
- };
24984
- type: string;
24985
- };
24986
25091
  };
24987
25092
  required: string[];
24988
25093
  type: string;
@@ -25095,6 +25200,14 @@ declare const _default: {
25095
25200
  format: string;
25096
25201
  type: string;
25097
25202
  };
25203
+ access_method_ids: {
25204
+ description: string;
25205
+ items: {
25206
+ format: string;
25207
+ type: string;
25208
+ };
25209
+ type: string;
25210
+ };
25098
25211
  created_at: {
25099
25212
  description: string;
25100
25213
  format: string;
@@ -25116,6 +25229,14 @@ declare const _default: {
25116
25229
  description: string;
25117
25230
  items: {
25118
25231
  properties: {
25232
+ created_access_method_ids: {
25233
+ description: string;
25234
+ items: {
25235
+ format: string;
25236
+ type: string;
25237
+ };
25238
+ type: string;
25239
+ };
25119
25240
  created_at: {
25120
25241
  description: string;
25121
25242
  format: string;
@@ -25130,14 +25251,6 @@ declare const _default: {
25130
25251
  enum: string[];
25131
25252
  type: string;
25132
25253
  };
25133
- provisioned_access_method_ids: {
25134
- description: string;
25135
- items: {
25136
- format: string;
25137
- type: string;
25138
- };
25139
- type: string;
25140
- };
25141
25254
  };
25142
25255
  required: string[];
25143
25256
  type: string;
@@ -25203,7 +25316,7 @@ declare const _default: {
25203
25316
  'x-undocumented': string;
25204
25317
  };
25205
25318
  };
25206
- '/unstable_access_grants/list_access_methods': {
25319
+ '/unstable_access_methods/list': {
25207
25320
  post: {
25208
25321
  description: string;
25209
25322
  operationId: string;
@@ -26949,6 +27062,12 @@ declare const _default: {
26949
27062
  'application/json': {
26950
27063
  schema: {
26951
27064
  properties: {
27065
+ max_use_count: {
27066
+ default: number;
27067
+ description: string;
27068
+ format: string;
27069
+ type: string;
27070
+ };
26952
27071
  user_identity_id: {
26953
27072
  description: string;
26954
27073
  format: string;
@@ -28314,6 +28433,28 @@ declare const _default: {
28314
28433
  type: string;
28315
28434
  'x-deprecated': string;
28316
28435
  };
28436
+ connect_webview_customization: {
28437
+ properties: {
28438
+ logo_shape: {
28439
+ enum: string[];
28440
+ nullable: boolean;
28441
+ type: string;
28442
+ };
28443
+ primary_button_color: {
28444
+ nullable: boolean;
28445
+ type: string;
28446
+ };
28447
+ primary_button_text_color: {
28448
+ nullable: boolean;
28449
+ type: string;
28450
+ };
28451
+ success_message: {
28452
+ nullable: boolean;
28453
+ type: string;
28454
+ };
28455
+ };
28456
+ type: string;
28457
+ };
28317
28458
  is_sandbox: {
28318
28459
  default: boolean;
28319
28460
  type: string;
@@ -28322,17 +28463,25 @@ declare const _default: {
28322
28463
  type: string;
28323
28464
  };
28324
28465
  webview_logo_shape: {
28466
+ deprecated: boolean;
28325
28467
  enum: string[];
28326
28468
  type: string;
28469
+ 'x-deprecated': string;
28327
28470
  };
28328
28471
  webview_primary_button_color: {
28472
+ deprecated: boolean;
28329
28473
  type: string;
28474
+ 'x-deprecated': string;
28330
28475
  };
28331
28476
  webview_primary_button_text_color: {
28477
+ deprecated: boolean;
28332
28478
  type: string;
28479
+ 'x-deprecated': string;
28333
28480
  };
28334
28481
  webview_success_message: {
28482
+ deprecated: boolean;
28335
28483
  type: string;
28484
+ 'x-deprecated': string;
28336
28485
  };
28337
28486
  };
28338
28487
  required: string[];
@@ -28719,6 +28868,155 @@ declare const _default: {
28719
28868
  'x-response-key': string;
28720
28869
  };
28721
28870
  };
28871
+ '/workspaces/update': {
28872
+ patch: {
28873
+ operationId: string;
28874
+ requestBody: {
28875
+ content: {
28876
+ 'application/json': {
28877
+ schema: {
28878
+ properties: {
28879
+ connect_partner_name: {
28880
+ type: string;
28881
+ };
28882
+ connect_webview_customization: {
28883
+ properties: {
28884
+ logo_shape: {
28885
+ enum: string[];
28886
+ nullable: boolean;
28887
+ type: string;
28888
+ };
28889
+ primary_button_color: {
28890
+ nullable: boolean;
28891
+ type: string;
28892
+ };
28893
+ primary_button_text_color: {
28894
+ nullable: boolean;
28895
+ type: string;
28896
+ };
28897
+ success_message: {
28898
+ nullable: boolean;
28899
+ type: string;
28900
+ };
28901
+ };
28902
+ type: string;
28903
+ };
28904
+ is_suspended: {
28905
+ type: string;
28906
+ };
28907
+ name: {
28908
+ type: string;
28909
+ };
28910
+ };
28911
+ type: string;
28912
+ };
28913
+ };
28914
+ };
28915
+ };
28916
+ responses: {
28917
+ 200: {
28918
+ description: string;
28919
+ };
28920
+ 400: {
28921
+ description: string;
28922
+ };
28923
+ 401: {
28924
+ description: string;
28925
+ };
28926
+ };
28927
+ security: ({
28928
+ api_key: never[];
28929
+ console_session_with_workspace?: never;
28930
+ pat_with_workspace?: never;
28931
+ } | {
28932
+ console_session_with_workspace: never[];
28933
+ api_key?: never;
28934
+ pat_with_workspace?: never;
28935
+ } | {
28936
+ pat_with_workspace: never[];
28937
+ api_key?: never;
28938
+ console_session_with_workspace?: never;
28939
+ })[];
28940
+ summary: string;
28941
+ tags: string[];
28942
+ 'x-fern-ignore': boolean;
28943
+ 'x-response-key': null;
28944
+ };
28945
+ post: {
28946
+ operationId: string;
28947
+ requestBody: {
28948
+ content: {
28949
+ 'application/json': {
28950
+ schema: {
28951
+ properties: {
28952
+ connect_partner_name: {
28953
+ type: string;
28954
+ };
28955
+ connect_webview_customization: {
28956
+ properties: {
28957
+ logo_shape: {
28958
+ enum: string[];
28959
+ nullable: boolean;
28960
+ type: string;
28961
+ };
28962
+ primary_button_color: {
28963
+ nullable: boolean;
28964
+ type: string;
28965
+ };
28966
+ primary_button_text_color: {
28967
+ nullable: boolean;
28968
+ type: string;
28969
+ };
28970
+ success_message: {
28971
+ nullable: boolean;
28972
+ type: string;
28973
+ };
28974
+ };
28975
+ type: string;
28976
+ };
28977
+ is_suspended: {
28978
+ type: string;
28979
+ };
28980
+ name: {
28981
+ type: string;
28982
+ };
28983
+ };
28984
+ type: string;
28985
+ };
28986
+ };
28987
+ };
28988
+ };
28989
+ responses: {
28990
+ 200: {
28991
+ description: string;
28992
+ };
28993
+ 400: {
28994
+ description: string;
28995
+ };
28996
+ 401: {
28997
+ description: string;
28998
+ };
28999
+ };
29000
+ security: ({
29001
+ api_key: never[];
29002
+ console_session_with_workspace?: never;
29003
+ pat_with_workspace?: never;
29004
+ } | {
29005
+ console_session_with_workspace: never[];
29006
+ api_key?: never;
29007
+ pat_with_workspace?: never;
29008
+ } | {
29009
+ pat_with_workspace: never[];
29010
+ api_key?: never;
29011
+ console_session_with_workspace?: never;
29012
+ })[];
29013
+ summary: string;
29014
+ tags: string[];
29015
+ 'x-fern-sdk-group-name': string[];
29016
+ 'x-fern-sdk-method-name': string;
29017
+ 'x-response-key': null;
29018
+ };
29019
+ };
28722
29020
  };
28723
29021
  servers: {
28724
29022
  url: string;