@seamapi/types 1.383.0 → 1.385.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 (52) hide show
  1. package/dist/connect.cjs +548 -137
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2068 -451
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/model-types.d.ts +1 -1
  8. package/lib/seam/connect/models/access-grants/access-grant.d.ts +8 -5
  9. package/lib/seam/connect/models/access-grants/access-grant.js +3 -0
  10. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  11. package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
  12. package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
  13. package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
  14. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +156 -0
  15. package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -0
  16. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  17. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +80 -0
  18. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js +28 -0
  19. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js.map +1 -0
  20. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +80 -0
  21. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js +28 -0
  22. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js.map +1 -0
  23. package/lib/seam/connect/models/index.d.ts +1 -0
  24. package/lib/seam/connect/models/index.js +1 -0
  25. package/lib/seam/connect/models/index.js.map +1 -1
  26. package/lib/seam/connect/models/instant-keys/index.d.ts +1 -0
  27. package/lib/seam/connect/models/instant-keys/index.js +2 -0
  28. package/lib/seam/connect/models/instant-keys/index.js.map +1 -0
  29. package/lib/seam/connect/models/instant-keys/instant-key.d.ts +27 -0
  30. package/lib/seam/connect/models/instant-keys/instant-key.js +16 -0
  31. package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -0
  32. package/lib/seam/connect/openapi.d.ts +420 -223
  33. package/lib/seam/connect/openapi.js +485 -132
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +1269 -33
  36. package/lib/seam/connect/schemas.d.ts +1 -1
  37. package/lib/seam/connect/schemas.js +1 -1
  38. package/lib/seam/connect/schemas.js.map +1 -1
  39. package/package.json +1 -1
  40. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  41. package/src/lib/seam/connect/model-types.ts +1 -0
  42. package/src/lib/seam/connect/models/access-grants/access-grant.ts +5 -0
  43. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +4 -2
  44. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -0
  45. package/src/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.ts +39 -0
  46. package/src/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.ts +37 -0
  47. package/src/lib/seam/connect/models/index.ts +1 -0
  48. package/src/lib/seam/connect/models/instant-keys/index.ts +1 -0
  49. package/src/lib/seam/connect/models/instant-keys/instant-key.ts +18 -0
  50. package/src/lib/seam/connect/openapi.ts +535 -166
  51. package/src/lib/seam/connect/route-types.ts +1395 -33
  52. package/src/lib/seam/connect/schemas.ts +1 -0
@@ -7622,6 +7622,42 @@ declare const _default: {
7622
7622
  })[];
7623
7623
  'x-route-path': string;
7624
7624
  };
7625
+ instant_key: {
7626
+ properties: {
7627
+ client_session_id: {
7628
+ format: string;
7629
+ type: string;
7630
+ };
7631
+ created_at: {
7632
+ format: string;
7633
+ type: string;
7634
+ };
7635
+ expires_at: {
7636
+ format: string;
7637
+ type: string;
7638
+ };
7639
+ instant_key_id: {
7640
+ format: string;
7641
+ type: string;
7642
+ };
7643
+ instant_key_url: {
7644
+ format: string;
7645
+ type: string;
7646
+ };
7647
+ user_identity_id: {
7648
+ format: string;
7649
+ type: string;
7650
+ };
7651
+ workspace_id: {
7652
+ format: string;
7653
+ type: string;
7654
+ };
7655
+ };
7656
+ required: string[];
7657
+ type: string;
7658
+ 'x-route-path': string;
7659
+ 'x-undocumented': string;
7660
+ };
7625
7661
  network: {
7626
7662
  properties: {
7627
7663
  created_at: {
@@ -18212,142 +18248,6 @@ declare const _default: {
18212
18248
  'x-response-key': string;
18213
18249
  };
18214
18250
  };
18215
- '/devices/simulate/access_code_lock': {
18216
- post: {
18217
- operationId: string;
18218
- requestBody: {
18219
- content: {
18220
- 'application/json': {
18221
- schema: {
18222
- properties: {
18223
- access_code_id: {
18224
- format: string;
18225
- type: string;
18226
- };
18227
- device_id: {
18228
- format: string;
18229
- type: string;
18230
- };
18231
- };
18232
- required: string[];
18233
- type: string;
18234
- };
18235
- };
18236
- };
18237
- };
18238
- responses: {
18239
- 200: {
18240
- content: {
18241
- 'application/json': {
18242
- schema: {
18243
- properties: {
18244
- ok: {
18245
- type: string;
18246
- };
18247
- };
18248
- required: string[];
18249
- type: string;
18250
- };
18251
- };
18252
- };
18253
- description: string;
18254
- };
18255
- 400: {
18256
- description: string;
18257
- };
18258
- 401: {
18259
- description: string;
18260
- };
18261
- };
18262
- security: ({
18263
- api_key: never[];
18264
- pat_with_workspace?: never;
18265
- console_session_with_workspace?: never;
18266
- } | {
18267
- pat_with_workspace: never[];
18268
- api_key?: never;
18269
- console_session_with_workspace?: never;
18270
- } | {
18271
- console_session_with_workspace: never[];
18272
- api_key?: never;
18273
- pat_with_workspace?: never;
18274
- })[];
18275
- summary: string;
18276
- tags: string[];
18277
- 'x-fern-sdk-group-name': string[];
18278
- 'x-fern-sdk-method-name': string;
18279
- 'x-response-key': null;
18280
- 'x-undocumented': string;
18281
- };
18282
- };
18283
- '/devices/simulate/access_code_unlock': {
18284
- post: {
18285
- operationId: string;
18286
- requestBody: {
18287
- content: {
18288
- 'application/json': {
18289
- schema: {
18290
- properties: {
18291
- access_code_id: {
18292
- format: string;
18293
- type: string;
18294
- };
18295
- device_id: {
18296
- format: string;
18297
- type: string;
18298
- };
18299
- };
18300
- required: string[];
18301
- type: string;
18302
- };
18303
- };
18304
- };
18305
- };
18306
- responses: {
18307
- 200: {
18308
- content: {
18309
- 'application/json': {
18310
- schema: {
18311
- properties: {
18312
- ok: {
18313
- type: string;
18314
- };
18315
- };
18316
- required: string[];
18317
- type: string;
18318
- };
18319
- };
18320
- };
18321
- description: string;
18322
- };
18323
- 400: {
18324
- description: string;
18325
- };
18326
- 401: {
18327
- description: string;
18328
- };
18329
- };
18330
- security: ({
18331
- api_key: never[];
18332
- pat_with_workspace?: never;
18333
- console_session_with_workspace?: never;
18334
- } | {
18335
- pat_with_workspace: never[];
18336
- api_key?: never;
18337
- console_session_with_workspace?: never;
18338
- } | {
18339
- console_session_with_workspace: never[];
18340
- api_key?: never;
18341
- pat_with_workspace?: never;
18342
- })[];
18343
- summary: string;
18344
- tags: string[];
18345
- 'x-fern-sdk-group-name': string[];
18346
- 'x-fern-sdk-method-name': string;
18347
- 'x-response-key': null;
18348
- 'x-undocumented': string;
18349
- };
18350
- };
18351
18251
  '/devices/simulate/connect': {
18352
18252
  post: {
18353
18253
  operationId: string;
@@ -19685,7 +19585,7 @@ declare const _default: {
19685
19585
  'x-response-key': string;
19686
19586
  };
19687
19587
  };
19688
- '/locks/unlock_door': {
19588
+ '/locks/simulate/keypad_code_entry': {
19689
19589
  post: {
19690
19590
  operationId: string;
19691
19591
  requestBody: {
@@ -19693,12 +19593,11 @@ declare const _default: {
19693
19593
  'application/json': {
19694
19594
  schema: {
19695
19595
  properties: {
19696
- device_id: {
19697
- format: string;
19596
+ code: {
19698
19597
  type: string;
19699
19598
  };
19700
- sync: {
19701
- default: boolean;
19599
+ device_id: {
19600
+ format: string;
19702
19601
  type: string;
19703
19602
  };
19704
19603
  };
@@ -19736,25 +19635,17 @@ declare const _default: {
19736
19635
  };
19737
19636
  };
19738
19637
  security: ({
19739
- client_session: never[];
19638
+ api_key: never[];
19740
19639
  pat_with_workspace?: never;
19741
19640
  console_session_with_workspace?: never;
19742
- api_key?: never;
19743
19641
  } | {
19744
19642
  pat_with_workspace: never[];
19745
- client_session?: never;
19746
- console_session_with_workspace?: never;
19747
19643
  api_key?: never;
19644
+ console_session_with_workspace?: never;
19748
19645
  } | {
19749
19646
  console_session_with_workspace: never[];
19750
- client_session?: never;
19751
- pat_with_workspace?: never;
19752
19647
  api_key?: never;
19753
- } | {
19754
- api_key: never[];
19755
- client_session?: never;
19756
19648
  pat_with_workspace?: never;
19757
- console_session_with_workspace?: never;
19758
19649
  })[];
19759
19650
  summary: string;
19760
19651
  tags: string[];
@@ -19763,9 +19654,10 @@ declare const _default: {
19763
19654
  'x-fern-sdk-method-name': string;
19764
19655
  'x-fern-sdk-return-value': string;
19765
19656
  'x-response-key': string;
19657
+ 'x-undocumented': string;
19766
19658
  };
19767
19659
  };
19768
- '/networks/get': {
19660
+ '/locks/simulate/manual_lock_via_keypad': {
19769
19661
  post: {
19770
19662
  operationId: string;
19771
19663
  requestBody: {
@@ -19773,7 +19665,7 @@ declare const _default: {
19773
19665
  'application/json': {
19774
19666
  schema: {
19775
19667
  properties: {
19776
- network_id: {
19668
+ device_id: {
19777
19669
  format: string;
19778
19670
  type: string;
19779
19671
  };
@@ -19790,7 +19682,7 @@ declare const _default: {
19790
19682
  'application/json': {
19791
19683
  schema: {
19792
19684
  properties: {
19793
- network: {
19685
+ action_attempt: {
19794
19686
  $ref: string;
19795
19687
  };
19796
19688
  ok: {
@@ -19812,34 +19704,45 @@ declare const _default: {
19812
19704
  };
19813
19705
  };
19814
19706
  security: ({
19815
- pat_with_workspace: never[];
19707
+ api_key: never[];
19708
+ pat_with_workspace?: never;
19816
19709
  console_session_with_workspace?: never;
19710
+ } | {
19711
+ pat_with_workspace: never[];
19817
19712
  api_key?: never;
19713
+ console_session_with_workspace?: never;
19818
19714
  } | {
19819
19715
  console_session_with_workspace: never[];
19820
- pat_with_workspace?: never;
19821
19716
  api_key?: never;
19822
- } | {
19823
- api_key: never[];
19824
19717
  pat_with_workspace?: never;
19825
- console_session_with_workspace?: never;
19826
19718
  })[];
19827
19719
  summary: string;
19828
19720
  tags: string[];
19721
+ 'x-action-attempt-type': string;
19829
19722
  'x-fern-sdk-group-name': string[];
19830
19723
  'x-fern-sdk-method-name': string;
19831
- 'x-fern-sdk-return-value': string;
19832
- 'x-response-key': string;
19724
+ 'x-response-key': null;
19725
+ 'x-undocumented': string;
19833
19726
  };
19834
19727
  };
19835
- '/networks/list': {
19728
+ '/locks/unlock_door': {
19836
19729
  post: {
19837
19730
  operationId: string;
19838
19731
  requestBody: {
19839
19732
  content: {
19840
19733
  'application/json': {
19841
19734
  schema: {
19842
- properties: {};
19735
+ properties: {
19736
+ device_id: {
19737
+ format: string;
19738
+ type: string;
19739
+ };
19740
+ sync: {
19741
+ default: boolean;
19742
+ type: string;
19743
+ };
19744
+ };
19745
+ required: string[];
19843
19746
  type: string;
19844
19747
  };
19845
19748
  };
@@ -19851,11 +19754,8 @@ declare const _default: {
19851
19754
  'application/json': {
19852
19755
  schema: {
19853
19756
  properties: {
19854
- networks: {
19855
- items: {
19856
- $ref: string;
19857
- };
19858
- type: string;
19757
+ action_attempt: {
19758
+ $ref: string;
19859
19759
  };
19860
19760
  ok: {
19861
19761
  type: string;
@@ -19876,27 +19776,36 @@ declare const _default: {
19876
19776
  };
19877
19777
  };
19878
19778
  security: ({
19779
+ client_session: never[];
19780
+ pat_with_workspace?: never;
19781
+ console_session_with_workspace?: never;
19782
+ api_key?: never;
19783
+ } | {
19879
19784
  pat_with_workspace: never[];
19785
+ client_session?: never;
19880
19786
  console_session_with_workspace?: never;
19881
19787
  api_key?: never;
19882
19788
  } | {
19883
19789
  console_session_with_workspace: never[];
19790
+ client_session?: never;
19884
19791
  pat_with_workspace?: never;
19885
19792
  api_key?: never;
19886
19793
  } | {
19887
19794
  api_key: never[];
19795
+ client_session?: never;
19888
19796
  pat_with_workspace?: never;
19889
19797
  console_session_with_workspace?: never;
19890
19798
  })[];
19891
19799
  summary: string;
19892
19800
  tags: string[];
19801
+ 'x-action-attempt-type': string;
19893
19802
  'x-fern-sdk-group-name': string[];
19894
19803
  'x-fern-sdk-method-name': string;
19895
19804
  'x-fern-sdk-return-value': string;
19896
19805
  'x-response-key': string;
19897
19806
  };
19898
19807
  };
19899
- '/noise_sensors/list': {
19808
+ '/networks/get': {
19900
19809
  post: {
19901
19810
  operationId: string;
19902
19811
  requestBody: {
@@ -19904,24 +19813,155 @@ declare const _default: {
19904
19813
  'application/json': {
19905
19814
  schema: {
19906
19815
  properties: {
19907
- connect_webview_id: {
19908
- description: string;
19909
- format: string;
19910
- type: string;
19911
- };
19912
- connected_account_id: {
19913
- description: string;
19816
+ network_id: {
19914
19817
  format: string;
19915
19818
  type: string;
19916
19819
  };
19917
- connected_account_ids: {
19918
- description: string;
19919
- items: {
19920
- format: string;
19921
- type: string;
19922
- };
19923
- type: string;
19924
- };
19820
+ };
19821
+ required: string[];
19822
+ type: string;
19823
+ };
19824
+ };
19825
+ };
19826
+ };
19827
+ responses: {
19828
+ 200: {
19829
+ content: {
19830
+ 'application/json': {
19831
+ schema: {
19832
+ properties: {
19833
+ network: {
19834
+ $ref: string;
19835
+ };
19836
+ ok: {
19837
+ type: string;
19838
+ };
19839
+ };
19840
+ required: string[];
19841
+ type: string;
19842
+ };
19843
+ };
19844
+ };
19845
+ description: string;
19846
+ };
19847
+ 400: {
19848
+ description: string;
19849
+ };
19850
+ 401: {
19851
+ description: string;
19852
+ };
19853
+ };
19854
+ security: ({
19855
+ pat_with_workspace: never[];
19856
+ console_session_with_workspace?: never;
19857
+ api_key?: never;
19858
+ } | {
19859
+ console_session_with_workspace: never[];
19860
+ pat_with_workspace?: never;
19861
+ api_key?: never;
19862
+ } | {
19863
+ api_key: never[];
19864
+ pat_with_workspace?: never;
19865
+ console_session_with_workspace?: never;
19866
+ })[];
19867
+ summary: string;
19868
+ tags: string[];
19869
+ 'x-fern-sdk-group-name': string[];
19870
+ 'x-fern-sdk-method-name': string;
19871
+ 'x-fern-sdk-return-value': string;
19872
+ 'x-response-key': string;
19873
+ };
19874
+ };
19875
+ '/networks/list': {
19876
+ post: {
19877
+ operationId: string;
19878
+ requestBody: {
19879
+ content: {
19880
+ 'application/json': {
19881
+ schema: {
19882
+ properties: {};
19883
+ type: string;
19884
+ };
19885
+ };
19886
+ };
19887
+ };
19888
+ responses: {
19889
+ 200: {
19890
+ content: {
19891
+ 'application/json': {
19892
+ schema: {
19893
+ properties: {
19894
+ networks: {
19895
+ items: {
19896
+ $ref: string;
19897
+ };
19898
+ type: string;
19899
+ };
19900
+ ok: {
19901
+ type: string;
19902
+ };
19903
+ };
19904
+ required: string[];
19905
+ type: string;
19906
+ };
19907
+ };
19908
+ };
19909
+ description: string;
19910
+ };
19911
+ 400: {
19912
+ description: string;
19913
+ };
19914
+ 401: {
19915
+ description: string;
19916
+ };
19917
+ };
19918
+ security: ({
19919
+ pat_with_workspace: never[];
19920
+ console_session_with_workspace?: never;
19921
+ api_key?: never;
19922
+ } | {
19923
+ console_session_with_workspace: never[];
19924
+ pat_with_workspace?: never;
19925
+ api_key?: never;
19926
+ } | {
19927
+ api_key: never[];
19928
+ pat_with_workspace?: never;
19929
+ console_session_with_workspace?: never;
19930
+ })[];
19931
+ summary: string;
19932
+ tags: string[];
19933
+ 'x-fern-sdk-group-name': string[];
19934
+ 'x-fern-sdk-method-name': string;
19935
+ 'x-fern-sdk-return-value': string;
19936
+ 'x-response-key': string;
19937
+ };
19938
+ };
19939
+ '/noise_sensors/list': {
19940
+ post: {
19941
+ operationId: string;
19942
+ requestBody: {
19943
+ content: {
19944
+ 'application/json': {
19945
+ schema: {
19946
+ properties: {
19947
+ connect_webview_id: {
19948
+ description: string;
19949
+ format: string;
19950
+ type: string;
19951
+ };
19952
+ connected_account_id: {
19953
+ description: string;
19954
+ format: string;
19955
+ type: string;
19956
+ };
19957
+ connected_account_ids: {
19958
+ description: string;
19959
+ items: {
19960
+ format: string;
19961
+ type: string;
19962
+ };
19963
+ type: string;
19964
+ };
19925
19965
  created_before: {
19926
19966
  description: string;
19927
19967
  format: string;
@@ -22180,6 +22220,65 @@ declare const _default: {
22180
22220
  'x-undocumented': string;
22181
22221
  };
22182
22222
  };
22223
+ '/seam/instant_key/v1/client_sessions/exchange_short_code': {
22224
+ post: {
22225
+ description: string;
22226
+ operationId: string;
22227
+ requestBody: {
22228
+ content: {
22229
+ 'application/json': {
22230
+ schema: {
22231
+ properties: {
22232
+ short_code: {
22233
+ description: string;
22234
+ type: string;
22235
+ };
22236
+ };
22237
+ required: string[];
22238
+ type: string;
22239
+ };
22240
+ };
22241
+ };
22242
+ };
22243
+ responses: {
22244
+ 200: {
22245
+ content: {
22246
+ 'application/json': {
22247
+ schema: {
22248
+ properties: {
22249
+ client_session: {
22250
+ $ref: string;
22251
+ };
22252
+ ok: {
22253
+ type: string;
22254
+ };
22255
+ };
22256
+ required: string[];
22257
+ type: string;
22258
+ };
22259
+ };
22260
+ };
22261
+ description: string;
22262
+ };
22263
+ 400: {
22264
+ description: string;
22265
+ };
22266
+ 401: {
22267
+ description: string;
22268
+ };
22269
+ };
22270
+ security: {
22271
+ certified_client: never[];
22272
+ }[];
22273
+ summary: string;
22274
+ tags: string[];
22275
+ 'x-fern-sdk-group-name': string[];
22276
+ 'x-fern-sdk-method-name': string;
22277
+ 'x-fern-sdk-return-value': string;
22278
+ 'x-response-key': string;
22279
+ 'x-title': string;
22280
+ };
22281
+ };
22183
22282
  '/thermostats/activate_climate_preset': {
22184
22283
  post: {
22185
22284
  description: string;
@@ -24686,20 +24785,6 @@ declare const _default: {
24686
24785
  type?: never;
24687
24786
  } | {
24688
24787
  properties: {
24689
- desired_access_methods: {
24690
- items: {
24691
- properties: {
24692
- mode: {
24693
- description: string;
24694
- enum: string[];
24695
- type: string;
24696
- };
24697
- };
24698
- required: string[];
24699
- type: string;
24700
- };
24701
- type: string;
24702
- };
24703
24788
  ends_at: {
24704
24789
  description: string;
24705
24790
  format: string;
@@ -24726,6 +24811,10 @@ declare const _default: {
24726
24811
  };
24727
24812
  type: string;
24728
24813
  };
24814
+ name: {
24815
+ description: string;
24816
+ type: string;
24817
+ };
24729
24818
  };
24730
24819
  type: string;
24731
24820
  };
@@ -24737,6 +24826,20 @@ declare const _default: {
24737
24826
  };
24738
24827
  type: string;
24739
24828
  };
24829
+ requested_access_methods: {
24830
+ items: {
24831
+ properties: {
24832
+ mode: {
24833
+ description: string;
24834
+ enum: string[];
24835
+ type: string;
24836
+ };
24837
+ };
24838
+ required: string[];
24839
+ type: string;
24840
+ };
24841
+ type: string;
24842
+ };
24740
24843
  starts_at: {
24741
24844
  description: string;
24742
24845
  format: string;
@@ -24764,6 +24867,14 @@ declare const _default: {
24764
24867
  format: string;
24765
24868
  type: string;
24766
24869
  };
24870
+ access_method_ids: {
24871
+ description: string;
24872
+ items: {
24873
+ format: string;
24874
+ type: string;
24875
+ };
24876
+ type: string;
24877
+ };
24767
24878
  created_at: {
24768
24879
  description: string;
24769
24880
  format: string;
@@ -24785,6 +24896,14 @@ declare const _default: {
24785
24896
  description: string;
24786
24897
  items: {
24787
24898
  properties: {
24899
+ created_access_method_ids: {
24900
+ description: string;
24901
+ items: {
24902
+ format: string;
24903
+ type: string;
24904
+ };
24905
+ type: string;
24906
+ };
24788
24907
  created_at: {
24789
24908
  description: string;
24790
24909
  format: string;
@@ -24799,14 +24918,6 @@ declare const _default: {
24799
24918
  enum: string[];
24800
24919
  type: string;
24801
24920
  };
24802
- provisioned_access_method_ids: {
24803
- description: string;
24804
- items: {
24805
- format: string;
24806
- type: string;
24807
- };
24808
- type: string;
24809
- };
24810
24921
  };
24811
24922
  required: string[];
24812
24923
  type: string;
@@ -24904,6 +25015,14 @@ declare const _default: {
24904
25015
  format: string;
24905
25016
  type: string;
24906
25017
  };
25018
+ access_method_ids: {
25019
+ description: string;
25020
+ items: {
25021
+ format: string;
25022
+ type: string;
25023
+ };
25024
+ type: string;
25025
+ };
24907
25026
  created_at: {
24908
25027
  description: string;
24909
25028
  format: string;
@@ -24925,6 +25044,14 @@ declare const _default: {
24925
25044
  description: string;
24926
25045
  items: {
24927
25046
  properties: {
25047
+ created_access_method_ids: {
25048
+ description: string;
25049
+ items: {
25050
+ format: string;
25051
+ type: string;
25052
+ };
25053
+ type: string;
25054
+ };
24928
25055
  created_at: {
24929
25056
  description: string;
24930
25057
  format: string;
@@ -24939,14 +25066,6 @@ declare const _default: {
24939
25066
  enum: string[];
24940
25067
  type: string;
24941
25068
  };
24942
- provisioned_access_method_ids: {
24943
- description: string;
24944
- items: {
24945
- format: string;
24946
- type: string;
24947
- };
24948
- type: string;
24949
- };
24950
25069
  };
24951
25070
  required: string[];
24952
25071
  type: string;
@@ -25059,6 +25178,14 @@ declare const _default: {
25059
25178
  format: string;
25060
25179
  type: string;
25061
25180
  };
25181
+ access_method_ids: {
25182
+ description: string;
25183
+ items: {
25184
+ format: string;
25185
+ type: string;
25186
+ };
25187
+ type: string;
25188
+ };
25062
25189
  created_at: {
25063
25190
  description: string;
25064
25191
  format: string;
@@ -25080,6 +25207,14 @@ declare const _default: {
25080
25207
  description: string;
25081
25208
  items: {
25082
25209
  properties: {
25210
+ created_access_method_ids: {
25211
+ description: string;
25212
+ items: {
25213
+ format: string;
25214
+ type: string;
25215
+ };
25216
+ type: string;
25217
+ };
25083
25218
  created_at: {
25084
25219
  description: string;
25085
25220
  format: string;
@@ -25094,14 +25229,6 @@ declare const _default: {
25094
25229
  enum: string[];
25095
25230
  type: string;
25096
25231
  };
25097
- provisioned_access_method_ids: {
25098
- description: string;
25099
- items: {
25100
- format: string;
25101
- type: string;
25102
- };
25103
- type: string;
25104
- };
25105
25232
  };
25106
25233
  required: string[];
25107
25234
  type: string;
@@ -25167,7 +25294,7 @@ declare const _default: {
25167
25294
  'x-undocumented': string;
25168
25295
  };
25169
25296
  };
25170
- '/unstable_access_grants/list_access_methods': {
25297
+ '/unstable_access_methods/list': {
25171
25298
  post: {
25172
25299
  description: string;
25173
25300
  operationId: string;
@@ -26904,6 +27031,76 @@ declare const _default: {
26904
27031
  'x-title': string;
26905
27032
  };
26906
27033
  };
27034
+ '/user_identities/generate_instant_key': {
27035
+ post: {
27036
+ description: string;
27037
+ operationId: string;
27038
+ requestBody: {
27039
+ content: {
27040
+ 'application/json': {
27041
+ schema: {
27042
+ properties: {
27043
+ user_identity_id: {
27044
+ description: string;
27045
+ format: string;
27046
+ type: string;
27047
+ };
27048
+ };
27049
+ required: string[];
27050
+ type: string;
27051
+ };
27052
+ };
27053
+ };
27054
+ };
27055
+ responses: {
27056
+ 200: {
27057
+ content: {
27058
+ 'application/json': {
27059
+ schema: {
27060
+ properties: {
27061
+ instant_key: {
27062
+ $ref: string;
27063
+ };
27064
+ ok: {
27065
+ type: string;
27066
+ };
27067
+ };
27068
+ required: string[];
27069
+ type: string;
27070
+ };
27071
+ };
27072
+ };
27073
+ description: string;
27074
+ };
27075
+ 400: {
27076
+ description: string;
27077
+ };
27078
+ 401: {
27079
+ description: string;
27080
+ };
27081
+ };
27082
+ security: ({
27083
+ api_key: never[];
27084
+ pat_with_workspace?: never;
27085
+ console_session_with_workspace?: never;
27086
+ } | {
27087
+ pat_with_workspace: never[];
27088
+ api_key?: never;
27089
+ console_session_with_workspace?: never;
27090
+ } | {
27091
+ console_session_with_workspace: never[];
27092
+ api_key?: never;
27093
+ pat_with_workspace?: never;
27094
+ })[];
27095
+ summary: string;
27096
+ tags: string[];
27097
+ 'x-fern-sdk-group-name': string[];
27098
+ 'x-fern-sdk-method-name': string;
27099
+ 'x-fern-sdk-return-value': string;
27100
+ 'x-response-key': string;
27101
+ 'x-title': string;
27102
+ };
27103
+ };
26907
27104
  '/user_identities/get': {
26908
27105
  post: {
26909
27106
  description: string;