@seamapi/types 1.369.2 → 1.370.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 (48) hide show
  1. package/dist/connect.cjs +370 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +519 -28
  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/models/access-grants/access-grant.d.ts +57 -0
  8. package/lib/seam/connect/models/access-grants/access-grant.js +29 -0
  9. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -0
  10. package/lib/seam/connect/models/access-grants/access-method.d.ts +21 -0
  11. package/lib/seam/connect/models/access-grants/access-method.js +24 -0
  12. package/lib/seam/connect/models/access-grants/access-method.js.map +1 -0
  13. package/lib/seam/connect/models/access-grants/index.d.ts +2 -0
  14. package/lib/seam/connect/models/access-grants/index.js +3 -0
  15. package/lib/seam/connect/models/access-grants/index.js.map +1 -0
  16. package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +4 -4
  17. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  18. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
  19. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
  20. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  21. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  22. package/lib/seam/connect/models/bridges/{bridge_client_session.js → bridge-client-session.js} +1 -1
  23. package/lib/seam/connect/models/bridges/{bridge_client_session.js.map → bridge-client-session.js.map} +1 -1
  24. package/lib/seam/connect/models/bridges/bridge-connected-system.d.ts +30 -0
  25. package/lib/seam/connect/models/bridges/bridge-connected-system.js +17 -0
  26. package/lib/seam/connect/models/bridges/bridge-connected-system.js.map +1 -0
  27. package/lib/seam/connect/models/bridges/index.d.ts +2 -1
  28. package/lib/seam/connect/models/bridges/index.js +2 -1
  29. package/lib/seam/connect/models/bridges/index.js.map +1 -1
  30. package/lib/seam/connect/models/index.d.ts +1 -0
  31. package/lib/seam/connect/models/index.js +1 -0
  32. package/lib/seam/connect/models/index.js.map +1 -1
  33. package/lib/seam/connect/openapi.d.ts +402 -0
  34. package/lib/seam/connect/openapi.js +369 -0
  35. package/lib/seam/connect/openapi.js.map +1 -1
  36. package/lib/seam/connect/route-types.d.ts +89 -0
  37. package/package.json +1 -1
  38. package/src/lib/seam/connect/internal/schemas.ts +3 -0
  39. package/src/lib/seam/connect/models/access-grants/access-grant.ts +34 -0
  40. package/src/lib/seam/connect/models/access-grants/access-method.ts +28 -0
  41. package/src/lib/seam/connect/models/access-grants/index.ts +2 -0
  42. package/src/lib/seam/connect/models/bridges/bridge-connected-system.ts +19 -0
  43. package/src/lib/seam/connect/models/bridges/index.ts +2 -1
  44. package/src/lib/seam/connect/models/index.ts +1 -0
  45. package/src/lib/seam/connect/openapi.ts +394 -0
  46. package/src/lib/seam/connect/route-types.ts +96 -0
  47. /package/lib/seam/connect/models/bridges/{bridge_client_session.d.ts → bridge-client-session.d.ts} +0 -0
  48. /package/src/lib/seam/connect/models/bridges/{bridge_client_session.ts → bridge-client-session.ts} +0 -0
@@ -21329,6 +21329,166 @@ declare const _default: {
21329
21329
  'x-undocumented': string;
21330
21330
  };
21331
21331
  };
21332
+ '/seam/bridge/v1/bridge_connected_systems/list': {
21333
+ get: {
21334
+ description: string;
21335
+ operationId: string;
21336
+ responses: {
21337
+ 200: {
21338
+ content: {
21339
+ 'application/json': {
21340
+ schema: {
21341
+ properties: {
21342
+ bridge_connected_systems: {
21343
+ items: {
21344
+ properties: {
21345
+ acs_system_display_name: {
21346
+ type: string;
21347
+ };
21348
+ acs_system_id: {
21349
+ format: string;
21350
+ type: string;
21351
+ };
21352
+ bridge_created_at: {
21353
+ format: string;
21354
+ type: string;
21355
+ };
21356
+ bridge_id: {
21357
+ format: string;
21358
+ type: string;
21359
+ };
21360
+ connected_account_created_at: {
21361
+ format: string;
21362
+ type: string;
21363
+ };
21364
+ connected_account_id: {
21365
+ format: string;
21366
+ type: string;
21367
+ };
21368
+ workspace_display_name: {
21369
+ type: string;
21370
+ };
21371
+ workspace_id: {
21372
+ format: string;
21373
+ type: string;
21374
+ };
21375
+ };
21376
+ required: string[];
21377
+ type: string;
21378
+ 'x-route-path': string;
21379
+ 'x-undocumented': string;
21380
+ };
21381
+ type: string;
21382
+ };
21383
+ ok: {
21384
+ type: string;
21385
+ };
21386
+ };
21387
+ required: string[];
21388
+ type: string;
21389
+ };
21390
+ };
21391
+ };
21392
+ description: string;
21393
+ };
21394
+ 400: {
21395
+ description: string;
21396
+ };
21397
+ 401: {
21398
+ description: string;
21399
+ };
21400
+ };
21401
+ security: {
21402
+ bridge_client_session: never[];
21403
+ }[];
21404
+ summary: string;
21405
+ tags: never[];
21406
+ 'x-fern-ignore': boolean;
21407
+ 'x-response-key': string;
21408
+ 'x-title': string;
21409
+ 'x-undocumented': string;
21410
+ };
21411
+ post: {
21412
+ description: string;
21413
+ operationId: string;
21414
+ responses: {
21415
+ 200: {
21416
+ content: {
21417
+ 'application/json': {
21418
+ schema: {
21419
+ properties: {
21420
+ bridge_connected_systems: {
21421
+ items: {
21422
+ properties: {
21423
+ acs_system_display_name: {
21424
+ type: string;
21425
+ };
21426
+ acs_system_id: {
21427
+ format: string;
21428
+ type: string;
21429
+ };
21430
+ bridge_created_at: {
21431
+ format: string;
21432
+ type: string;
21433
+ };
21434
+ bridge_id: {
21435
+ format: string;
21436
+ type: string;
21437
+ };
21438
+ connected_account_created_at: {
21439
+ format: string;
21440
+ type: string;
21441
+ };
21442
+ connected_account_id: {
21443
+ format: string;
21444
+ type: string;
21445
+ };
21446
+ workspace_display_name: {
21447
+ type: string;
21448
+ };
21449
+ workspace_id: {
21450
+ format: string;
21451
+ type: string;
21452
+ };
21453
+ };
21454
+ required: string[];
21455
+ type: string;
21456
+ 'x-route-path': string;
21457
+ 'x-undocumented': string;
21458
+ };
21459
+ type: string;
21460
+ };
21461
+ ok: {
21462
+ type: string;
21463
+ };
21464
+ };
21465
+ required: string[];
21466
+ type: string;
21467
+ };
21468
+ };
21469
+ };
21470
+ description: string;
21471
+ };
21472
+ 400: {
21473
+ description: string;
21474
+ };
21475
+ 401: {
21476
+ description: string;
21477
+ };
21478
+ };
21479
+ security: {
21480
+ bridge_client_session: never[];
21481
+ }[];
21482
+ summary: string;
21483
+ tags: never[];
21484
+ 'x-fern-sdk-group-name': string[];
21485
+ 'x-fern-sdk-method-name': string;
21486
+ 'x-fern-sdk-return-value': string;
21487
+ 'x-response-key': string;
21488
+ 'x-title': string;
21489
+ 'x-undocumented': string;
21490
+ };
21491
+ };
21332
21492
  '/thermostats/activate_climate_preset': {
21333
21493
  post: {
21334
21494
  description: string;
@@ -23792,6 +23952,245 @@ declare const _default: {
23792
23952
  'x-title': string;
23793
23953
  };
23794
23954
  };
23955
+ '/unstable_access_grants/create': {
23956
+ post: {
23957
+ description: string;
23958
+ operationId: string;
23959
+ requestBody: {
23960
+ content: {
23961
+ 'application/json': {
23962
+ schema: {
23963
+ allOf: ({
23964
+ oneOf: ({
23965
+ properties: {
23966
+ user_identity_id: {
23967
+ description: string;
23968
+ format: string;
23969
+ type: string;
23970
+ };
23971
+ user_identity?: never;
23972
+ };
23973
+ type: string;
23974
+ } | {
23975
+ properties: {
23976
+ user_identity: {
23977
+ description: string;
23978
+ properties: {
23979
+ email_address: {
23980
+ description: string;
23981
+ format: string;
23982
+ nullable: boolean;
23983
+ type: string;
23984
+ };
23985
+ full_name: {
23986
+ minLength: number;
23987
+ nullable: boolean;
23988
+ type: string;
23989
+ };
23990
+ phone_number: {
23991
+ description: string;
23992
+ nullable: boolean;
23993
+ type: string;
23994
+ };
23995
+ };
23996
+ type: string;
23997
+ 'x-route-path': string;
23998
+ };
23999
+ user_identity_id?: never;
24000
+ };
24001
+ type: string;
24002
+ })[];
24003
+ properties?: never;
24004
+ required?: never;
24005
+ type?: never;
24006
+ } | {
24007
+ properties: {
24008
+ desired_access_methods: {
24009
+ items: {
24010
+ properties: {
24011
+ mode: {
24012
+ description: string;
24013
+ enum: string[];
24014
+ type: string;
24015
+ };
24016
+ };
24017
+ required: string[];
24018
+ type: string;
24019
+ };
24020
+ type: string;
24021
+ };
24022
+ ends_at: {
24023
+ description: string;
24024
+ format: string;
24025
+ type: string;
24026
+ };
24027
+ location: {
24028
+ description: string;
24029
+ properties: {
24030
+ acs_entrance_ids: {
24031
+ default: never[];
24032
+ description: string;
24033
+ items: {
24034
+ format: string;
24035
+ type: string;
24036
+ };
24037
+ type: string;
24038
+ };
24039
+ device_ids: {
24040
+ default: never[];
24041
+ description: string;
24042
+ items: {
24043
+ format: string;
24044
+ type: string;
24045
+ };
24046
+ type: string;
24047
+ };
24048
+ };
24049
+ type: string;
24050
+ };
24051
+ location_ids: {
24052
+ description: string;
24053
+ items: {
24054
+ format: string;
24055
+ type: string;
24056
+ };
24057
+ type: string;
24058
+ };
24059
+ starts_at: {
24060
+ description: string;
24061
+ format: string;
24062
+ type: string;
24063
+ };
24064
+ };
24065
+ required: string[];
24066
+ type: string;
24067
+ oneOf?: never;
24068
+ })[];
24069
+ };
24070
+ };
24071
+ };
24072
+ };
24073
+ responses: {
24074
+ 200: {
24075
+ content: {
24076
+ 'application/json': {
24077
+ schema: {
24078
+ properties: {
24079
+ access_grant: {
24080
+ properties: {
24081
+ access_grant_id: {
24082
+ description: string;
24083
+ format: string;
24084
+ type: string;
24085
+ };
24086
+ access_methods: {
24087
+ description: string;
24088
+ items: {
24089
+ properties: {
24090
+ access_method_key: {
24091
+ description: string;
24092
+ type: string;
24093
+ };
24094
+ created_at: {
24095
+ description: string;
24096
+ format: string;
24097
+ type: string;
24098
+ };
24099
+ display_name: {
24100
+ description: string;
24101
+ type: string;
24102
+ };
24103
+ issued_at: {
24104
+ description: string;
24105
+ format: string;
24106
+ nullable: boolean;
24107
+ type: string;
24108
+ };
24109
+ mode: {
24110
+ description: string;
24111
+ enum: string[];
24112
+ type: string;
24113
+ };
24114
+ };
24115
+ required: string[];
24116
+ type: string;
24117
+ 'x-undocumented': string;
24118
+ };
24119
+ type: string;
24120
+ };
24121
+ created_at: {
24122
+ description: string;
24123
+ format: string;
24124
+ type: string;
24125
+ };
24126
+ display_name: {
24127
+ description: string;
24128
+ type: string;
24129
+ };
24130
+ location_ids: {
24131
+ description: string;
24132
+ items: {
24133
+ format: string;
24134
+ type: string;
24135
+ };
24136
+ type: string;
24137
+ };
24138
+ user_identity_id: {
24139
+ description: string;
24140
+ format: string;
24141
+ type: string;
24142
+ };
24143
+ workspace_id: {
24144
+ description: string;
24145
+ format: string;
24146
+ type: string;
24147
+ };
24148
+ };
24149
+ required: string[];
24150
+ type: string;
24151
+ 'x-undocumented': string;
24152
+ };
24153
+ ok: {
24154
+ type: string;
24155
+ };
24156
+ };
24157
+ required: string[];
24158
+ type: string;
24159
+ };
24160
+ };
24161
+ };
24162
+ description: string;
24163
+ };
24164
+ 400: {
24165
+ description: string;
24166
+ };
24167
+ 401: {
24168
+ description: string;
24169
+ };
24170
+ };
24171
+ security: ({
24172
+ pat_with_workspace: never[];
24173
+ console_session_with_workspace?: never;
24174
+ api_key?: never;
24175
+ } | {
24176
+ console_session_with_workspace: never[];
24177
+ pat_with_workspace?: never;
24178
+ api_key?: never;
24179
+ } | {
24180
+ api_key: never[];
24181
+ pat_with_workspace?: never;
24182
+ console_session_with_workspace?: never;
24183
+ })[];
24184
+ summary: string;
24185
+ tags: never[];
24186
+ 'x-fern-sdk-group-name': string[];
24187
+ 'x-fern-sdk-method-name': string;
24188
+ 'x-fern-sdk-return-value': string;
24189
+ 'x-response-key': string;
24190
+ 'x-title': string;
24191
+ 'x-undocumented': string;
24192
+ };
24193
+ };
23795
24194
  '/unstable_locations/add_devices': {
23796
24195
  post: {
23797
24196
  description: string;
@@ -26742,6 +27141,9 @@ declare const _default: {
26742
27141
  webview_primary_button_text_color: {
26743
27142
  type: string;
26744
27143
  };
27144
+ webview_success_message: {
27145
+ type: string;
27146
+ };
26745
27147
  };
26746
27148
  required: string[];
26747
27149
  type: string;