@seamapi/types 1.369.1 → 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 (54) hide show
  1. package/dist/connect.cjs +380 -5
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +525 -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/acs/acs-users/acs-user.js +2 -0
  20. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
  21. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +20 -20
  22. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  23. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  24. package/lib/seam/connect/models/bridges/{bridge_client_session.js → bridge-client-session.js} +1 -1
  25. package/lib/seam/connect/models/bridges/{bridge_client_session.js.map → bridge-client-session.js.map} +1 -1
  26. package/lib/seam/connect/models/bridges/bridge-connected-system.d.ts +30 -0
  27. package/lib/seam/connect/models/bridges/bridge-connected-system.js +17 -0
  28. package/lib/seam/connect/models/bridges/bridge-connected-system.js.map +1 -0
  29. package/lib/seam/connect/models/bridges/index.d.ts +2 -1
  30. package/lib/seam/connect/models/bridges/index.js +2 -1
  31. package/lib/seam/connect/models/bridges/index.js.map +1 -1
  32. package/lib/seam/connect/models/index.d.ts +1 -0
  33. package/lib/seam/connect/models/index.js +1 -0
  34. package/lib/seam/connect/models/index.js.map +1 -1
  35. package/lib/seam/connect/models/pagination.js +1 -0
  36. package/lib/seam/connect/models/pagination.js.map +1 -1
  37. package/lib/seam/connect/openapi.d.ts +408 -0
  38. package/lib/seam/connect/openapi.js +375 -0
  39. package/lib/seam/connect/openapi.js.map +1 -1
  40. package/lib/seam/connect/route-types.d.ts +89 -0
  41. package/package.json +1 -1
  42. package/src/lib/seam/connect/internal/schemas.ts +3 -0
  43. package/src/lib/seam/connect/models/access-grants/access-grant.ts +34 -0
  44. package/src/lib/seam/connect/models/access-grants/access-method.ts +28 -0
  45. package/src/lib/seam/connect/models/access-grants/index.ts +2 -0
  46. package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +2 -0
  47. package/src/lib/seam/connect/models/bridges/bridge-connected-system.ts +19 -0
  48. package/src/lib/seam/connect/models/bridges/index.ts +2 -1
  49. package/src/lib/seam/connect/models/index.ts +1 -0
  50. package/src/lib/seam/connect/models/pagination.ts +1 -0
  51. package/src/lib/seam/connect/openapi.ts +400 -0
  52. package/src/lib/seam/connect/route-types.ts +96 -0
  53. /package/lib/seam/connect/models/bridges/{bridge_client_session.d.ts → bridge-client-session.d.ts} +0 -0
  54. /package/src/lib/seam/connect/models/bridges/{bridge_client_session.ts → bridge-client-session.ts} +0 -0
@@ -0,0 +1,30 @@
1
+ import { z } from 'zod';
2
+ export declare const bridge_connected_system: z.ZodObject<{
3
+ bridge_id: z.ZodString;
4
+ bridge_created_at: z.ZodString;
5
+ connected_account_id: z.ZodString;
6
+ connected_account_created_at: z.ZodString;
7
+ acs_system_id: z.ZodString;
8
+ acs_system_display_name: z.ZodString;
9
+ workspace_id: z.ZodString;
10
+ workspace_display_name: z.ZodString;
11
+ }, "strip", z.ZodTypeAny, {
12
+ connected_account_id: string;
13
+ bridge_id: string;
14
+ workspace_id: string;
15
+ acs_system_id: string;
16
+ bridge_created_at: string;
17
+ connected_account_created_at: string;
18
+ acs_system_display_name: string;
19
+ workspace_display_name: string;
20
+ }, {
21
+ connected_account_id: string;
22
+ bridge_id: string;
23
+ workspace_id: string;
24
+ acs_system_id: string;
25
+ bridge_created_at: string;
26
+ connected_account_created_at: string;
27
+ acs_system_display_name: string;
28
+ workspace_display_name: string;
29
+ }>;
30
+ export type BridgeConnectedSystem = z.infer<typeof bridge_connected_system>;
@@ -0,0 +1,17 @@
1
+ import { z } from 'zod';
2
+ export const bridge_connected_system = z.object({
3
+ bridge_id: z.string().uuid(),
4
+ bridge_created_at: z.string().datetime(),
5
+ connected_account_id: z.string().uuid(),
6
+ connected_account_created_at: z.string().datetime(),
7
+ acs_system_id: z.string().uuid(),
8
+ acs_system_display_name: z.string(),
9
+ workspace_id: z.string().uuid(),
10
+ workspace_display_name: z.string(),
11
+ }).describe(`
12
+ ---
13
+ route_path: /seam/bridge/v1/bridge_connected_systems
14
+ undocumented: Seam Bridge Client only.
15
+ ---
16
+ `);
17
+ //# sourceMappingURL=bridge-connected-system.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bridge-connected-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge-connected-system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC5B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACvC,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;CACnC,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
@@ -1,2 +1,3 @@
1
1
  export * from './bridge.js';
2
- export * from './bridge_client_session.js';
2
+ export * from './bridge-client-session.js';
3
+ export * from './bridge-connected-system.js';
@@ -1,3 +1,4 @@
1
1
  export * from './bridge.js';
2
- export * from './bridge_client_session.js';
2
+ export * from './bridge-client-session.js';
3
+ export * from './bridge-connected-system.js';
3
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,4BAA4B,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,8BAA8B,CAAA"}
@@ -1,4 +1,5 @@
1
1
  export * from './access-codes/index.js';
2
+ export * from './access-grants/index.js';
2
3
  export * from './acs/index.js';
3
4
  export * from './action-attempts/index.js';
4
5
  export * from './bridges/index.js';
@@ -1,4 +1,5 @@
1
1
  export * from './access-codes/index.js';
2
+ export * from './access-grants/index.js';
2
3
  export * from './acs/index.js';
3
4
  export * from './action-attempts/index.js';
4
5
  export * from './bridges/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,sBAAsB,CAAA;AACpC,cAAc,0BAA0B,CAAA;AACxC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,sBAAsB,CAAA;AACpC,cAAc,0BAA0B,CAAA;AACxC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
@@ -3,6 +3,7 @@ export const pagination = z
3
3
  .object({
4
4
  next_page_cursor: z
5
5
  .string()
6
+ .base64()
6
7
  .nullable()
7
8
  .describe('Opaque value that can be used to select the next page of results via the `page_cursor` parameter.'),
8
9
  has_next_page: z
@@ -1 +1 @@
1
- {"version":3,"file":"pagination.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/pagination.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC;KACxB,MAAM,CAAC;IACN,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,mGAAmG,CACpG;IACH,aAAa,EAAE,CAAC;SACb,OAAO,EAAE;SACT,QAAQ,CACP,oEAAoE,CACrE;IACH,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;CACpD,CAAC;KACD,QAAQ,CAAC,gDAAgD,CAAC,CAAA"}
1
+ {"version":3,"file":"pagination.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/pagination.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC;KACxB,MAAM,CAAC;IACN,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,mGAAmG,CACpG;IACH,aAAa,EAAE,CAAC;SACb,OAAO,EAAE;SACT,QAAQ,CACP,oEAAoE,CACrE;IACH,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;CACpD,CAAC;KACD,QAAQ,CAAC,gDAAgD,CAAC,CAAA"}
@@ -1156,6 +1156,7 @@ declare const _default: {
1156
1156
  };
1157
1157
  full_name: {
1158
1158
  description: string;
1159
+ minLength: number;
1159
1160
  type: string;
1160
1161
  };
1161
1162
  hid_acs_system_id: {
@@ -8394,6 +8395,7 @@ declare const _default: {
8394
8395
  };
8395
8396
  full_name: {
8396
8397
  description: string;
8398
+ minLength: number;
8397
8399
  type: string;
8398
8400
  };
8399
8401
  hid_acs_system_id: {
@@ -15531,6 +15533,7 @@ declare const _default: {
15531
15533
  };
15532
15534
  full_name: {
15533
15535
  description: string;
15536
+ minLength: number;
15534
15537
  type: string;
15535
15538
  };
15536
15539
  hid_acs_system_id: {
@@ -15633,6 +15636,7 @@ declare const _default: {
15633
15636
  };
15634
15637
  full_name: {
15635
15638
  description: string;
15639
+ minLength: number;
15636
15640
  type: string;
15637
15641
  };
15638
15642
  hid_acs_system_id: {
@@ -17860,6 +17864,7 @@ declare const _default: {
17860
17864
  'x-fern-sdk-group-name': string[];
17861
17865
  'x-fern-sdk-method-name': string;
17862
17866
  'x-response-key': null;
17867
+ 'x-undocumented': string;
17863
17868
  };
17864
17869
  };
17865
17870
  '/devices/simulate/access_code_unlock': {
@@ -17927,6 +17932,7 @@ declare const _default: {
17927
17932
  'x-fern-sdk-group-name': string[];
17928
17933
  'x-fern-sdk-method-name': string;
17929
17934
  'x-response-key': null;
17935
+ 'x-undocumented': string;
17930
17936
  };
17931
17937
  };
17932
17938
  '/devices/simulate/connect': {
@@ -21323,6 +21329,166 @@ declare const _default: {
21323
21329
  'x-undocumented': string;
21324
21330
  };
21325
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
+ };
21326
21492
  '/thermostats/activate_climate_preset': {
21327
21493
  post: {
21328
21494
  description: string;
@@ -23786,6 +23952,245 @@ declare const _default: {
23786
23952
  'x-title': string;
23787
23953
  };
23788
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
+ };
23789
24194
  '/unstable_locations/add_devices': {
23790
24195
  post: {
23791
24196
  description: string;
@@ -26736,6 +27141,9 @@ declare const _default: {
26736
27141
  webview_primary_button_text_color: {
26737
27142
  type: string;
26738
27143
  };
27144
+ webview_success_message: {
27145
+ type: string;
27146
+ };
26739
27147
  };
26740
27148
  required: string[];
26741
27149
  type: string;