@seamapi/types 1.87.0 → 1.88.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.
@@ -2225,6 +2225,7 @@ export interface Routes {
2225
2225
  limit?: number;
2226
2226
  created_before?: Date | undefined;
2227
2227
  user_identifier_key?: string | undefined;
2228
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined;
2228
2229
  };
2229
2230
  formData: {};
2230
2231
  jsonResponse: {
@@ -2790,6 +2791,7 @@ export interface Routes {
2790
2791
  limit?: number;
2791
2792
  created_before?: Date | undefined;
2792
2793
  user_identifier_key?: string | undefined;
2794
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined;
2793
2795
  };
2794
2796
  formData: {};
2795
2797
  jsonResponse: {
@@ -3944,6 +3946,7 @@ export interface Routes {
3944
3946
  limit?: number;
3945
3947
  created_before?: Date | undefined;
3946
3948
  user_identifier_key?: string | undefined;
3949
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined;
3947
3950
  };
3948
3951
  formData: {};
3949
3952
  jsonResponse: {
@@ -6776,6 +6779,7 @@ export interface Routes {
6776
6779
  limit?: number;
6777
6780
  created_before?: Date | undefined;
6778
6781
  user_identifier_key?: string | undefined;
6782
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined;
6779
6783
  };
6780
6784
  formData: {};
6781
6785
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.87.0",
3
+ "version": "1.88.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -7977,6 +7977,17 @@ export default {
7977
7977
  nullable: true,
7978
7978
  type: 'string',
7979
7979
  },
7980
+ custom_metadata_has: {
7981
+ additionalProperties: {
7982
+ nullable: true,
7983
+ oneOf: [
7984
+ { maxLength: 500, type: 'string' },
7985
+ { type: 'boolean' },
7986
+ { format: 'null', nullable: true, type: 'string' },
7987
+ ],
7988
+ },
7989
+ type: 'object',
7990
+ },
7980
7991
  device_ids: {
7981
7992
  items: { format: 'uuid', type: 'string' },
7982
7993
  type: 'array',
@@ -8275,6 +8286,17 @@ export default {
8275
8286
  nullable: true,
8276
8287
  type: 'string',
8277
8288
  },
8289
+ custom_metadata_has: {
8290
+ additionalProperties: {
8291
+ nullable: true,
8292
+ oneOf: [
8293
+ { maxLength: 500, type: 'string' },
8294
+ { type: 'boolean' },
8295
+ { format: 'null', nullable: true, type: 'string' },
8296
+ ],
8297
+ },
8298
+ type: 'object',
8299
+ },
8278
8300
  device_ids: {
8279
8301
  items: { format: 'uuid', type: 'string' },
8280
8302
  type: 'array',
@@ -9109,6 +9131,17 @@ export default {
9109
9131
  nullable: true,
9110
9132
  type: 'string',
9111
9133
  },
9134
+ custom_metadata_has: {
9135
+ additionalProperties: {
9136
+ nullable: true,
9137
+ oneOf: [
9138
+ { maxLength: 500, type: 'string' },
9139
+ { type: 'boolean' },
9140
+ { format: 'null', nullable: true, type: 'string' },
9141
+ ],
9142
+ },
9143
+ type: 'object',
9144
+ },
9112
9145
  device_ids: {
9113
9146
  items: { format: 'uuid', type: 'string' },
9114
9147
  type: 'array',
@@ -10729,6 +10762,17 @@ export default {
10729
10762
  nullable: true,
10730
10763
  type: 'string',
10731
10764
  },
10765
+ custom_metadata_has: {
10766
+ additionalProperties: {
10767
+ nullable: true,
10768
+ oneOf: [
10769
+ { maxLength: 500, type: 'string' },
10770
+ { type: 'boolean' },
10771
+ { format: 'null', nullable: true, type: 'string' },
10772
+ ],
10773
+ },
10774
+ type: 'object',
10775
+ },
10732
10776
  device_ids: {
10733
10777
  items: { format: 'uuid', type: 'string' },
10734
10778
  type: 'array',
@@ -2734,6 +2734,7 @@ export interface Routes {
2734
2734
  limit?: number
2735
2735
  created_before?: Date | undefined
2736
2736
  user_identifier_key?: string | undefined
2737
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined
2737
2738
  }
2738
2739
  formData: {}
2739
2740
  jsonResponse: {
@@ -3641,6 +3642,7 @@ export interface Routes {
3641
3642
  limit?: number
3642
3643
  created_before?: Date | undefined
3643
3644
  user_identifier_key?: string | undefined
3645
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined
3644
3646
  }
3645
3647
  formData: {}
3646
3648
  jsonResponse: {
@@ -5439,6 +5441,7 @@ export interface Routes {
5439
5441
  limit?: number
5440
5442
  created_before?: Date | undefined
5441
5443
  user_identifier_key?: string | undefined
5444
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined
5442
5445
  }
5443
5446
  formData: {}
5444
5447
  jsonResponse: {
@@ -9341,6 +9344,7 @@ export interface Routes {
9341
9344
  limit?: number
9342
9345
  created_before?: Date | undefined
9343
9346
  user_identifier_key?: string | undefined
9347
+ custom_metadata_has?: Record<string, string | boolean | null> | undefined
9344
9348
  }
9345
9349
  formData: {}
9346
9350
  jsonResponse: {