@seamapi/types 1.86.0 → 1.87.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 (26) hide show
  1. package/dist/connect.cjs +22 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +45 -0
  4. package/lib/seam/connect/openapi.d.ts +44 -0
  5. package/lib/seam/connect/openapi.js +22 -0
  6. package/lib/seam/connect/openapi.js.map +1 -1
  7. package/lib/seam/connect/route-types.d.ts +1 -0
  8. package/lib/seam/connect/unstable/models/events/access_code_events.d.ts +70 -0
  9. package/lib/seam/connect/unstable/models/events/access_code_events.js +33 -0
  10. package/lib/seam/connect/unstable/models/events/access_code_events.js.map +1 -0
  11. package/lib/seam/connect/unstable/models/events/connected_account_events.d.ts +48 -0
  12. package/lib/seam/connect/unstable/models/events/connected_account_events.js +24 -0
  13. package/lib/seam/connect/unstable/models/events/connected_account_events.js.map +1 -0
  14. package/lib/seam/connect/unstable/models/events/device_events.d.ts +63 -0
  15. package/lib/seam/connect/unstable/models/events/device_events.js +21 -0
  16. package/lib/seam/connect/unstable/models/events/device_events.js.map +1 -0
  17. package/lib/seam/connect/unstable/models/events/lock_events.d.ts +42 -0
  18. package/lib/seam/connect/unstable/models/events/lock_events.js +22 -0
  19. package/lib/seam/connect/unstable/models/events/lock_events.js.map +1 -0
  20. package/package.json +1 -1
  21. package/src/lib/seam/connect/openapi.ts +22 -0
  22. package/src/lib/seam/connect/route-types.ts +1 -0
  23. package/src/lib/seam/connect/unstable/models/events/access_code_events.ts +37 -0
  24. package/src/lib/seam/connect/unstable/models/events/connected_account_events.ts +27 -0
  25. package/src/lib/seam/connect/unstable/models/events/device_events.ts +24 -0
  26. package/src/lib/seam/connect/unstable/models/events/lock_events.ts +25 -0
@@ -11358,6 +11358,28 @@ declare const _default: {
11358
11358
  'application/json': {
11359
11359
  schema: {
11360
11360
  properties: {
11361
+ custom_metadata: {
11362
+ additionalProperties: {
11363
+ nullable: boolean;
11364
+ oneOf: ({
11365
+ maxLength: number;
11366
+ type: string;
11367
+ format?: never;
11368
+ nullable?: never;
11369
+ } | {
11370
+ type: string;
11371
+ maxLength?: never;
11372
+ format?: never;
11373
+ nullable?: never;
11374
+ } | {
11375
+ format: string;
11376
+ nullable: boolean;
11377
+ type: string;
11378
+ maxLength?: never;
11379
+ })[];
11380
+ };
11381
+ type: string;
11382
+ };
11361
11383
  device_id: {
11362
11384
  format: string;
11363
11385
  type: string;
@@ -11437,6 +11459,28 @@ declare const _default: {
11437
11459
  'application/json': {
11438
11460
  schema: {
11439
11461
  properties: {
11462
+ custom_metadata: {
11463
+ additionalProperties: {
11464
+ nullable: boolean;
11465
+ oneOf: ({
11466
+ maxLength: number;
11467
+ type: string;
11468
+ format?: never;
11469
+ nullable?: never;
11470
+ } | {
11471
+ type: string;
11472
+ maxLength?: never;
11473
+ format?: never;
11474
+ nullable?: never;
11475
+ } | {
11476
+ format: string;
11477
+ nullable: boolean;
11478
+ type: string;
11479
+ maxLength?: never;
11480
+ })[];
11481
+ };
11482
+ type: string;
11483
+ };
11440
11484
  device_id: {
11441
11485
  format: string;
11442
11486
  type: string;
@@ -19636,6 +19680,7 @@ interface Routes {
19636
19680
  } | undefined;
19637
19681
  name?: (string | null) | undefined;
19638
19682
  is_managed?: boolean;
19683
+ custom_metadata?: Record<string, string | boolean | null> | undefined;
19639
19684
  };
19640
19685
  formData: {};
19641
19686
  jsonResponse: {};
@@ -11284,6 +11284,28 @@ declare const _default: {
11284
11284
  'application/json': {
11285
11285
  schema: {
11286
11286
  properties: {
11287
+ custom_metadata: {
11288
+ additionalProperties: {
11289
+ nullable: boolean;
11290
+ oneOf: ({
11291
+ maxLength: number;
11292
+ type: string;
11293
+ format?: never;
11294
+ nullable?: never;
11295
+ } | {
11296
+ type: string;
11297
+ maxLength?: never;
11298
+ format?: never;
11299
+ nullable?: never;
11300
+ } | {
11301
+ format: string;
11302
+ nullable: boolean;
11303
+ type: string;
11304
+ maxLength?: never;
11305
+ })[];
11306
+ };
11307
+ type: string;
11308
+ };
11287
11309
  device_id: {
11288
11310
  format: string;
11289
11311
  type: string;
@@ -11363,6 +11385,28 @@ declare const _default: {
11363
11385
  'application/json': {
11364
11386
  schema: {
11365
11387
  properties: {
11388
+ custom_metadata: {
11389
+ additionalProperties: {
11390
+ nullable: boolean;
11391
+ oneOf: ({
11392
+ maxLength: number;
11393
+ type: string;
11394
+ format?: never;
11395
+ nullable?: never;
11396
+ } | {
11397
+ type: string;
11398
+ maxLength?: never;
11399
+ format?: never;
11400
+ nullable?: never;
11401
+ } | {
11402
+ format: string;
11403
+ nullable: boolean;
11404
+ type: string;
11405
+ maxLength?: never;
11406
+ })[];
11407
+ };
11408
+ type: string;
11409
+ };
11366
11410
  device_id: {
11367
11411
  format: string;
11368
11412
  type: string;
@@ -8453,6 +8453,17 @@ export default {
8453
8453
  'application/json': {
8454
8454
  schema: {
8455
8455
  properties: {
8456
+ custom_metadata: {
8457
+ additionalProperties: {
8458
+ nullable: true,
8459
+ oneOf: [
8460
+ { maxLength: 500, type: 'string' },
8461
+ { type: 'boolean' },
8462
+ { format: 'null', nullable: true, type: 'string' },
8463
+ ],
8464
+ },
8465
+ type: 'object',
8466
+ },
8456
8467
  device_id: { format: 'uuid', type: 'string' },
8457
8468
  is_managed: { default: true, type: 'boolean' },
8458
8469
  name: { nullable: true, type: 'string' },
@@ -8499,6 +8510,17 @@ export default {
8499
8510
  'application/json': {
8500
8511
  schema: {
8501
8512
  properties: {
8513
+ custom_metadata: {
8514
+ additionalProperties: {
8515
+ nullable: true,
8516
+ oneOf: [
8517
+ { maxLength: 500, type: 'string' },
8518
+ { type: 'boolean' },
8519
+ { format: 'null', nullable: true, type: 'string' },
8520
+ ],
8521
+ },
8522
+ type: 'object',
8523
+ },
8502
8524
  device_id: { format: 'uuid', type: 'string' },
8503
8525
  is_managed: { default: true, type: 'boolean' },
8504
8526
  name: { nullable: true, type: 'string' },