@seamapi/types 1.72.0 → 1.73.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.
@@ -7242,6 +7242,7 @@ export interface Routes {
7242
7242
  email_address?: (string | null) | undefined;
7243
7243
  first_name?: (string | null) | undefined;
7244
7244
  last_name?: (string | null) | undefined;
7245
+ display_name: string;
7245
7246
  created_at: string;
7246
7247
  workspace_id: string;
7247
7248
  };
@@ -7327,6 +7328,7 @@ export interface Routes {
7327
7328
  email_address?: (string | null) | undefined;
7328
7329
  first_name?: (string | null) | undefined;
7329
7330
  last_name?: (string | null) | undefined;
7331
+ display_name: string;
7330
7332
  created_at: string;
7331
7333
  workspace_id: string;
7332
7334
  };
@@ -7358,6 +7360,7 @@ export interface Routes {
7358
7360
  email_address?: (string | null) | undefined;
7359
7361
  first_name?: (string | null) | undefined;
7360
7362
  last_name?: (string | null) | undefined;
7363
+ display_name: string;
7361
7364
  created_at: string;
7362
7365
  workspace_id: string;
7363
7366
  }>;
@@ -5,11 +5,13 @@ export declare const user_identity: z.ZodObject<{
5
5
  email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6
6
  first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7
7
  last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
+ display_name: z.ZodString;
8
9
  created_at: z.ZodString;
9
10
  workspace_id: z.ZodString;
10
11
  }, "strip", z.ZodTypeAny, {
11
12
  workspace_id: string;
12
13
  created_at: string;
14
+ display_name: string;
13
15
  user_identity_id: string;
14
16
  user_identity_key?: string | null | undefined;
15
17
  email_address?: string | null | undefined;
@@ -18,6 +20,7 @@ export declare const user_identity: z.ZodObject<{
18
20
  }, {
19
21
  workspace_id: string;
20
22
  created_at: string;
23
+ display_name: string;
21
24
  user_identity_id: string;
22
25
  user_identity_key?: string | null | undefined;
23
26
  email_address?: string | null | undefined;
@@ -5,6 +5,7 @@ export const user_identity = z.object({
5
5
  email_address: z.string().email().nullish(),
6
6
  first_name: z.string().nullish(),
7
7
  last_name: z.string().nullish(),
8
+ display_name: z.string(),
8
9
  created_at: z.string().datetime(),
9
10
  workspace_id: z.string().uuid(),
10
11
  });
@@ -1 +1 @@
1
- {"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/user-identity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACnC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACvC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,OAAO,EAAE;IAC3C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CAChC,CAAC,CAAA"}
1
+ {"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/user-identity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACnC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACvC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,OAAO,EAAE;IAC3C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC/B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CAChC,CAAC,CAAA"}
@@ -2,4 +2,4 @@ import * as schemas from './public-models/index.js';
2
2
  export * from './route-specs.js';
3
3
  export * from './route-types.js';
4
4
  export { schemas };
5
- export type { DeviceCategory, DeviceConnectionType, DeviceModelV1, ImageReference, Manufacturer, ManufacturerAnnotationCode, ManufacturerIntegrationSupportLevel, } from './public-models/index.js';
5
+ export type { DeviceCategory, DeviceConnectionType, DeviceModelV1, ImageReference, Manufacturer, ManufacturerAnnotation, ManufacturerAnnotationCode, ManufacturerIntegrationSupportLevel, } from './public-models/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.72.0",
3
+ "version": "1.73.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -11059,6 +11059,7 @@ export default {
11059
11059
  user_identity: {
11060
11060
  properties: {
11061
11061
  created_at: { format: 'date-time', type: 'string' },
11062
+ display_name: { type: 'string' },
11062
11063
  email_address: {
11063
11064
  format: 'email',
11064
11065
  nullable: true,
@@ -11072,6 +11073,7 @@ export default {
11072
11073
  },
11073
11074
  required: [
11074
11075
  'user_identity_id',
11076
+ 'display_name',
11075
11077
  'created_at',
11076
11078
  'workspace_id',
11077
11079
  ],
@@ -11321,6 +11323,7 @@ export default {
11321
11323
  user_identity: {
11322
11324
  properties: {
11323
11325
  created_at: { format: 'date-time', type: 'string' },
11326
+ display_name: { type: 'string' },
11324
11327
  email_address: {
11325
11328
  format: 'email',
11326
11329
  nullable: true,
@@ -11334,6 +11337,7 @@ export default {
11334
11337
  },
11335
11338
  required: [
11336
11339
  'user_identity_id',
11340
+ 'display_name',
11337
11341
  'created_at',
11338
11342
  'workspace_id',
11339
11343
  ],
@@ -11460,6 +11464,7 @@ export default {
11460
11464
  items: {
11461
11465
  properties: {
11462
11466
  created_at: { format: 'date-time', type: 'string' },
11467
+ display_name: { type: 'string' },
11463
11468
  email_address: {
11464
11469
  format: 'email',
11465
11470
  nullable: true,
@@ -11473,6 +11478,7 @@ export default {
11473
11478
  },
11474
11479
  required: [
11475
11480
  'user_identity_id',
11481
+ 'display_name',
11476
11482
  'created_at',
11477
11483
  'workspace_id',
11478
11484
  ],
@@ -11514,6 +11520,7 @@ export default {
11514
11520
  items: {
11515
11521
  properties: {
11516
11522
  created_at: { format: 'date-time', type: 'string' },
11523
+ display_name: { type: 'string' },
11517
11524
  email_address: {
11518
11525
  format: 'email',
11519
11526
  nullable: true,
@@ -11527,6 +11534,7 @@ export default {
11527
11534
  },
11528
11535
  required: [
11529
11536
  'user_identity_id',
11537
+ 'display_name',
11530
11538
  'created_at',
11531
11539
  'workspace_id',
11532
11540
  ],
@@ -9995,6 +9995,7 @@ export interface Routes {
9995
9995
  email_address?: (string | null) | undefined
9996
9996
  first_name?: (string | null) | undefined
9997
9997
  last_name?: (string | null) | undefined
9998
+ display_name: string
9998
9999
  created_at: string
9999
10000
  workspace_id: string
10000
10001
  }
@@ -10082,6 +10083,7 @@ export interface Routes {
10082
10083
  email_address?: (string | null) | undefined
10083
10084
  first_name?: (string | null) | undefined
10084
10085
  last_name?: (string | null) | undefined
10086
+ display_name: string
10085
10087
  created_at: string
10086
10088
  workspace_id: string
10087
10089
  }
@@ -10113,6 +10115,7 @@ export interface Routes {
10113
10115
  email_address?: (string | null) | undefined
10114
10116
  first_name?: (string | null) | undefined
10115
10117
  last_name?: (string | null) | undefined
10118
+ display_name: string
10116
10119
  created_at: string
10117
10120
  workspace_id: string
10118
10121
  }>
@@ -6,6 +6,7 @@ export const user_identity = z.object({
6
6
  email_address: z.string().email().nullish(),
7
7
  first_name: z.string().nullish(),
8
8
  last_name: z.string().nullish(),
9
+ display_name: z.string(),
9
10
  created_at: z.string().datetime(),
10
11
  workspace_id: z.string().uuid(),
11
12
  })
@@ -10,6 +10,7 @@ export type {
10
10
  DeviceModelV1,
11
11
  ImageReference,
12
12
  Manufacturer,
13
+ ManufacturerAnnotation,
13
14
  ManufacturerAnnotationCode,
14
15
  ManufacturerIntegrationSupportLevel,
15
16
  } from './public-models/index.js'