@seamapi/types 1.56.0 → 1.56.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.
@@ -984,10 +984,10 @@ export interface Routes {
984
984
  jsonResponse: {
985
985
  acs_system: {
986
986
  acs_system_id: string;
987
- external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_cs_system_user';
987
+ external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
988
988
  external_type_display_name: string;
989
989
  /** deprecated: use external_type */
990
- system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_cs_system_user';
990
+ system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
991
991
  /** deprecated: use external_type_display_name */
992
992
  system_type_display_name: string;
993
993
  name: string;
@@ -1009,10 +1009,10 @@ export interface Routes {
1009
1009
  jsonResponse: {
1010
1010
  acs_systems: Array<{
1011
1011
  acs_system_id: string;
1012
- external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_cs_system_user';
1012
+ external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
1013
1013
  external_type_display_name: string;
1014
1014
  /** deprecated: use external_type */
1015
- system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_cs_system_user';
1015
+ system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system' | 'hid_cm_org' | 'visionline_system' | 'assa_abloy_credential_service_user';
1016
1016
  /** deprecated: use external_type_display_name */
1017
1017
  system_type_display_name: string;
1018
1018
  name: string;
@@ -1406,7 +1406,7 @@ export interface Routes {
1406
1406
  device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
1407
1407
  custom_redirect_url?: string | undefined;
1408
1408
  custom_redirect_failure_url?: string | undefined;
1409
- accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assaabloy_credential_service' | 'yale_access' | 'hid_cm'> | undefined;
1409
+ accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'yale_access' | 'hid_cm'> | undefined;
1410
1410
  provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
1411
1411
  custom_metadata?: Record<string, string | number | null | boolean> | undefined;
1412
1412
  automatically_manage_new_devices?: boolean | undefined;
@@ -1,11 +1,11 @@
1
1
  import { z } from 'zod';
2
- export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_system", "hid_cm_org", "visionline_system", "assa_abloy_cs_system_user"]>;
2
+ export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_system", "hid_cm_org", "visionline_system", "assa_abloy_credential_service_user"]>;
3
3
  export type AcsSystemExternalType = z.infer<typeof acs_system_external_type>;
4
4
  export declare const acs_system: z.ZodObject<{
5
5
  acs_system_id: z.ZodString;
6
- external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_system", "hid_cm_org", "visionline_system", "assa_abloy_cs_system_user"]>;
6
+ external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_system", "hid_cm_org", "visionline_system", "assa_abloy_credential_service_user"]>;
7
7
  external_type_display_name: z.ZodString;
8
- system_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_system", "hid_cm_org", "visionline_system", "assa_abloy_cs_system_user"]>;
8
+ system_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_system", "hid_cm_org", "visionline_system", "assa_abloy_credential_service_user"]>;
9
9
  system_type_display_name: z.ZodString;
10
10
  name: z.ZodString;
11
11
  created_at: z.ZodString;
@@ -16,9 +16,9 @@ export declare const acs_system: z.ZodObject<{
16
16
  workspace_id: string;
17
17
  created_at: string;
18
18
  acs_system_id: string;
19
- external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_cs_system_user";
19
+ external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_credential_service_user";
20
20
  external_type_display_name: string;
21
- system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_cs_system_user";
21
+ system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_credential_service_user";
22
22
  system_type_display_name: string;
23
23
  connected_account_ids: string[];
24
24
  }, {
@@ -26,9 +26,9 @@ export declare const acs_system: z.ZodObject<{
26
26
  workspace_id: string;
27
27
  created_at: string;
28
28
  acs_system_id: string;
29
- external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_cs_system_user";
29
+ external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_credential_service_user";
30
30
  external_type_display_name: string;
31
- system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_cs_system_user";
31
+ system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org" | "visionline_system" | "assa_abloy_credential_service_user";
32
32
  system_type_display_name: string;
33
33
  connected_account_ids: string[];
34
34
  }>;
@@ -7,7 +7,7 @@ export const acs_system_external_type = z.enum([
7
7
  'brivo_system',
8
8
  'hid_cm_org',
9
9
  'visionline_system',
10
- 'assa_abloy_cs_system_user',
10
+ 'assa_abloy_credential_service_user',
11
11
  ]);
12
12
  export const acs_system = z.object({
13
13
  acs_system_id: z.string().uuid(),
@@ -1 +1 @@
1
- {"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,kEAAkE;AAClE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,cAAc;IACd,YAAY;IACZ,mBAAmB;IACnB,2BAA2B;CAC5B,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAA"}
1
+ {"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,kEAAkE;AAClE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,cAAc;IACd,YAAY;IACZ,mBAAmB;IACnB,oCAAoC;CACrC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.56.0",
3
+ "version": "1.56.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -195,7 +195,7 @@ export default {
195
195
  'brivo_system',
196
196
  'hid_cm_org',
197
197
  'visionline_system',
198
- 'assa_abloy_cs_system_user',
198
+ 'assa_abloy_credential_service_user',
199
199
  ],
200
200
  type: 'string',
201
201
  },
@@ -210,7 +210,7 @@ export default {
210
210
  'brivo_system',
211
211
  'hid_cm_org',
212
212
  'visionline_system',
213
- 'assa_abloy_cs_system_user',
213
+ 'assa_abloy_credential_service_user',
214
214
  ],
215
215
  type: 'string',
216
216
  },
@@ -5536,7 +5536,7 @@ export default {
5536
5536
  'wyze',
5537
5537
  'seam_passport',
5538
5538
  'visionline',
5539
- 'assaabloy_credential_service',
5539
+ 'assa_abloy_credential_service',
5540
5540
  'yale_access',
5541
5541
  'hid_cm',
5542
5542
  ],
@@ -1022,7 +1022,7 @@ export interface Routes {
1022
1022
  | 'brivo_system'
1023
1023
  | 'hid_cm_org'
1024
1024
  | 'visionline_system'
1025
- | 'assa_abloy_cs_system_user'
1025
+ | 'assa_abloy_credential_service_user'
1026
1026
  external_type_display_name: string
1027
1027
  /** deprecated: use external_type */
1028
1028
  system_type:
@@ -1032,7 +1032,7 @@ export interface Routes {
1032
1032
  | 'brivo_system'
1033
1033
  | 'hid_cm_org'
1034
1034
  | 'visionline_system'
1035
- | 'assa_abloy_cs_system_user'
1035
+ | 'assa_abloy_credential_service_user'
1036
1036
  /** deprecated: use external_type_display_name */
1037
1037
  system_type_display_name: string
1038
1038
  name: string
@@ -1061,7 +1061,7 @@ export interface Routes {
1061
1061
  | 'brivo_system'
1062
1062
  | 'hid_cm_org'
1063
1063
  | 'visionline_system'
1064
- | 'assa_abloy_cs_system_user'
1064
+ | 'assa_abloy_credential_service_user'
1065
1065
  external_type_display_name: string
1066
1066
  /** deprecated: use external_type */
1067
1067
  system_type:
@@ -1071,7 +1071,7 @@ export interface Routes {
1071
1071
  | 'brivo_system'
1072
1072
  | 'hid_cm_org'
1073
1073
  | 'visionline_system'
1074
- | 'assa_abloy_cs_system_user'
1074
+ | 'assa_abloy_credential_service_user'
1075
1075
  /** deprecated: use external_type_display_name */
1076
1076
  system_type_display_name: string
1077
1077
  name: string
@@ -1506,7 +1506,7 @@ export interface Routes {
1506
1506
  | 'wyze'
1507
1507
  | 'seam_passport'
1508
1508
  | 'visionline'
1509
- | 'assaabloy_credential_service'
1509
+ | 'assa_abloy_credential_service'
1510
1510
  | 'yale_access'
1511
1511
  | 'hid_cm'
1512
1512
  >
@@ -8,7 +8,7 @@ export const acs_system_external_type = z.enum([
8
8
  'brivo_system',
9
9
  'hid_cm_org',
10
10
  'visionline_system',
11
- 'assa_abloy_cs_system_user',
11
+ 'assa_abloy_credential_service_user',
12
12
  ])
13
13
 
14
14
  export type AcsSystemExternalType = z.infer<typeof acs_system_external_type>