@seamapi/types 1.85.0 → 1.85.1

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.
@@ -10197,10 +10197,20 @@ declare const _default: {
10197
10197
  properties: {
10198
10198
  custom_metadata_has: {
10199
10199
  additionalProperties: {
10200
+ nullable: boolean;
10200
10201
  oneOf: ({
10201
10202
  maxLength: number;
10202
10203
  type: string;
10204
+ format?: never;
10205
+ nullable?: never;
10206
+ } | {
10207
+ type: string;
10208
+ maxLength?: never;
10209
+ format?: never;
10210
+ nullable?: never;
10203
10211
  } | {
10212
+ format: string;
10213
+ nullable: boolean;
10204
10214
  type: string;
10205
10215
  maxLength?: never;
10206
10216
  })[];
@@ -10468,10 +10478,20 @@ declare const _default: {
10468
10478
  properties: {
10469
10479
  custom_metadata_has: {
10470
10480
  additionalProperties: {
10481
+ nullable: boolean;
10471
10482
  oneOf: ({
10472
10483
  maxLength: number;
10473
10484
  type: string;
10485
+ format?: never;
10486
+ nullable?: never;
10487
+ } | {
10488
+ type: string;
10489
+ maxLength?: never;
10490
+ format?: never;
10491
+ nullable?: never;
10474
10492
  } | {
10493
+ format: string;
10494
+ nullable: boolean;
10475
10495
  type: string;
10476
10496
  maxLength?: never;
10477
10497
  })[];
@@ -18282,7 +18302,7 @@ interface Routes {
18282
18302
  commonParams: {
18283
18303
  user_identifier_key?: string | undefined;
18284
18304
  /** Returns devices where the webview's custom_metadata contains all of the provided key/value pairs. */
18285
- custom_metadata_has?: Record<string, string | boolean> | undefined;
18305
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined;
18286
18306
  };
18287
18307
  formData: {};
18288
18308
  jsonResponse: {
@@ -18371,7 +18391,7 @@ interface Routes {
18371
18391
  jsonBody: {};
18372
18392
  commonParams: {
18373
18393
  /** Returns devices where the account's custom_metadata contains all of the provided key/value pairs. */
18374
- custom_metadata_has?: Record<string, string | boolean> | undefined;
18394
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined;
18375
18395
  };
18376
18396
  formData: {};
18377
18397
  jsonResponse: {
@@ -10123,10 +10123,20 @@ declare const _default: {
10123
10123
  properties: {
10124
10124
  custom_metadata_has: {
10125
10125
  additionalProperties: {
10126
+ nullable: boolean;
10126
10127
  oneOf: ({
10127
10128
  maxLength: number;
10128
10129
  type: string;
10130
+ format?: never;
10131
+ nullable?: never;
10132
+ } | {
10133
+ type: string;
10134
+ maxLength?: never;
10135
+ format?: never;
10136
+ nullable?: never;
10129
10137
  } | {
10138
+ format: string;
10139
+ nullable: boolean;
10130
10140
  type: string;
10131
10141
  maxLength?: never;
10132
10142
  })[];
@@ -10394,10 +10404,20 @@ declare const _default: {
10394
10404
  properties: {
10395
10405
  custom_metadata_has: {
10396
10406
  additionalProperties: {
10407
+ nullable: boolean;
10397
10408
  oneOf: ({
10398
10409
  maxLength: number;
10399
10410
  type: string;
10411
+ format?: never;
10412
+ nullable?: never;
10413
+ } | {
10414
+ type: string;
10415
+ maxLength?: never;
10416
+ format?: never;
10417
+ nullable?: never;
10400
10418
  } | {
10419
+ format: string;
10420
+ nullable: boolean;
10401
10421
  type: string;
10402
10422
  maxLength?: never;
10403
10423
  })[];
@@ -7453,9 +7453,11 @@ export default {
7453
7453
  properties: {
7454
7454
  custom_metadata_has: {
7455
7455
  additionalProperties: {
7456
+ nullable: true,
7456
7457
  oneOf: [
7457
7458
  { maxLength: 500, type: 'string' },
7458
7459
  { type: 'boolean' },
7460
+ { format: 'null', nullable: true, type: 'string' },
7459
7461
  ],
7460
7462
  },
7461
7463
  description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
@@ -7642,9 +7644,11 @@ export default {
7642
7644
  properties: {
7643
7645
  custom_metadata_has: {
7644
7646
  additionalProperties: {
7647
+ nullable: true,
7645
7648
  oneOf: [
7646
7649
  { maxLength: 500, type: 'string' },
7647
7650
  { type: 'boolean' },
7651
+ { format: 'null', nullable: true, type: 'string' },
7648
7652
  ],
7649
7653
  },
7650
7654
  description: "Returns devices where the account's custom_metadata contains all of the provided key/value pairs.",