@seamapi/types 1.972.0 → 1.974.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.
@@ -28710,7 +28710,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28710
28710
  code: z.ZodOptional<z.ZodString>;
28711
28711
  access_code_is_managed: z.ZodOptional<z.ZodBoolean>;
28712
28712
  action_attempt_id: z.ZodOptional<z.ZodString>;
28713
- method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote"]>;
28713
+ method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote", "card"]>;
28714
+ user_identity_id: z.ZodOptional<z.ZodString>;
28715
+ acs_system_id: z.ZodOptional<z.ZodString>;
28716
+ acs_user_id: z.ZodOptional<z.ZodString>;
28717
+ acs_entrance_id: z.ZodOptional<z.ZodString>;
28714
28718
  is_via_bluetooth: z.ZodOptional<z.ZodBoolean>;
28715
28719
  is_via_nfc: z.ZodOptional<z.ZodBoolean>;
28716
28720
  }, "strip", z.ZodTypeAny, {
@@ -28721,10 +28725,14 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28721
28725
  event_id: string;
28722
28726
  occurred_at: string;
28723
28727
  event_type: "lock.locked";
28724
- method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28728
+ method: "unknown" | "card" | "keycode" | "manual" | "automatic" | "remote";
28725
28729
  code?: string | undefined;
28726
28730
  customer_key?: string | undefined;
28727
28731
  access_code_id?: string | undefined;
28732
+ user_identity_id?: string | undefined;
28733
+ acs_user_id?: string | undefined;
28734
+ acs_entrance_id?: string | undefined;
28735
+ acs_system_id?: string | undefined;
28728
28736
  action_attempt_id?: string | undefined;
28729
28737
  event_description?: string | undefined;
28730
28738
  device_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -28740,10 +28748,14 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28740
28748
  event_id: string;
28741
28749
  occurred_at: string;
28742
28750
  event_type: "lock.locked";
28743
- method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28751
+ method: "unknown" | "card" | "keycode" | "manual" | "automatic" | "remote";
28744
28752
  code?: string | undefined;
28745
28753
  customer_key?: string | undefined;
28746
28754
  access_code_id?: string | undefined;
28755
+ user_identity_id?: string | undefined;
28756
+ acs_user_id?: string | undefined;
28757
+ acs_entrance_id?: string | undefined;
28758
+ acs_system_id?: string | undefined;
28747
28759
  action_attempt_id?: string | undefined;
28748
28760
  event_description?: string | undefined;
28749
28761
  device_custom_metadata?: Record<string, string | boolean> | undefined;
@@ -28767,7 +28779,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28767
28779
  code: z.ZodOptional<z.ZodString>;
28768
28780
  access_code_is_managed: z.ZodOptional<z.ZodBoolean>;
28769
28781
  action_attempt_id: z.ZodOptional<z.ZodString>;
28770
- method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote"]>;
28782
+ method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote", "card"]>;
28771
28783
  user_identity_id: z.ZodOptional<z.ZodString>;
28772
28784
  acs_system_id: z.ZodOptional<z.ZodString>;
28773
28785
  acs_user_id: z.ZodOptional<z.ZodString>;
@@ -28782,7 +28794,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28782
28794
  event_id: string;
28783
28795
  occurred_at: string;
28784
28796
  event_type: "lock.unlocked";
28785
- method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28797
+ method: "unknown" | "card" | "keycode" | "manual" | "automatic" | "remote";
28786
28798
  code?: string | undefined;
28787
28799
  device_id?: string | undefined;
28788
28800
  customer_key?: string | undefined;
@@ -28805,7 +28817,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
28805
28817
  event_id: string;
28806
28818
  occurred_at: string;
28807
28819
  event_type: "lock.unlocked";
28808
- method: "unknown" | "keycode" | "manual" | "automatic" | "remote";
28820
+ method: "unknown" | "card" | "keycode" | "manual" | "automatic" | "remote";
28809
28821
  code?: string | undefined;
28810
28822
  device_id?: string | undefined;
28811
28823
  customer_key?: string | undefined;
@@ -78318,7 +78330,31 @@ type Routes = {
78318
78330
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
78319
78331
  action_attempt_id?: string | undefined;
78320
78332
  /** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
78321
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
78333
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
78334
+ /**
78335
+ undocumented: Unreleased.
78336
+ ---
78337
+ ID of the user identity associated with the lock event.
78338
+ */
78339
+ user_identity_id?: string | undefined;
78340
+ /**
78341
+ undocumented: Unreleased.
78342
+ ---
78343
+ ID of the ACS system associated with the lock event.
78344
+ */
78345
+ acs_system_id?: string | undefined;
78346
+ /**
78347
+ undocumented: Unreleased.
78348
+ ---
78349
+ ID of the ACS user associated with the lock event.
78350
+ */
78351
+ acs_user_id?: string | undefined;
78352
+ /**
78353
+ undocumented: Unreleased.
78354
+ ---
78355
+ ID of the ACS entrance associated with the lock event.
78356
+ */
78357
+ acs_entrance_id?: string | undefined;
78322
78358
  /**
78323
78359
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
78324
78360
  */
@@ -78364,7 +78400,7 @@ type Routes = {
78364
78400
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
78365
78401
  action_attempt_id?: string | undefined;
78366
78402
  /** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
78367
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
78403
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
78368
78404
  /**
78369
78405
  undocumented: Unreleased.
78370
78406
  ---
@@ -81620,7 +81656,31 @@ type Routes = {
81620
81656
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
81621
81657
  action_attempt_id?: string | undefined;
81622
81658
  /** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
81623
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
81659
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
81660
+ /**
81661
+ undocumented: Unreleased.
81662
+ ---
81663
+ ID of the user identity associated with the lock event.
81664
+ */
81665
+ user_identity_id?: string | undefined;
81666
+ /**
81667
+ undocumented: Unreleased.
81668
+ ---
81669
+ ID of the ACS system associated with the lock event.
81670
+ */
81671
+ acs_system_id?: string | undefined;
81672
+ /**
81673
+ undocumented: Unreleased.
81674
+ ---
81675
+ ID of the ACS user associated with the lock event.
81676
+ */
81677
+ acs_user_id?: string | undefined;
81678
+ /**
81679
+ undocumented: Unreleased.
81680
+ ---
81681
+ ID of the ACS entrance associated with the lock event.
81682
+ */
81683
+ acs_entrance_id?: string | undefined;
81624
81684
  /**
81625
81685
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
81626
81686
  */
@@ -81666,7 +81726,7 @@ type Routes = {
81666
81726
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
81667
81727
  action_attempt_id?: string | undefined;
81668
81728
  /** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
81669
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
81729
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
81670
81730
  /**
81671
81731
  undocumented: Unreleased.
81672
81732
  ---
@@ -111954,7 +112014,31 @@ type Routes = {
111954
112014
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
111955
112015
  action_attempt_id?: string | undefined;
111956
112016
  /** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
111957
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
112017
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
112018
+ /**
112019
+ undocumented: Unreleased.
112020
+ ---
112021
+ ID of the user identity associated with the lock event.
112022
+ */
112023
+ user_identity_id?: string | undefined;
112024
+ /**
112025
+ undocumented: Unreleased.
112026
+ ---
112027
+ ID of the ACS system associated with the lock event.
112028
+ */
112029
+ acs_system_id?: string | undefined;
112030
+ /**
112031
+ undocumented: Unreleased.
112032
+ ---
112033
+ ID of the ACS user associated with the lock event.
112034
+ */
112035
+ acs_user_id?: string | undefined;
112036
+ /**
112037
+ undocumented: Unreleased.
112038
+ ---
112039
+ ID of the ACS entrance associated with the lock event.
112040
+ */
112041
+ acs_entrance_id?: string | undefined;
111958
112042
  /**
111959
112043
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
111960
112044
  */
@@ -112000,7 +112084,7 @@ type Routes = {
112000
112084
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
112001
112085
  action_attempt_id?: string | undefined;
112002
112086
  /** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
112003
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
112087
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
112004
112088
  /**
112005
112089
  undocumented: Unreleased.
112006
112090
  ---
@@ -150218,7 +150302,31 @@ type Routes = {
150218
150302
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
150219
150303
  action_attempt_id?: string | undefined;
150220
150304
  /** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
150221
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
150305
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
150306
+ /**
150307
+ undocumented: Unreleased.
150308
+ ---
150309
+ ID of the user identity associated with the lock event.
150310
+ */
150311
+ user_identity_id?: string | undefined;
150312
+ /**
150313
+ undocumented: Unreleased.
150314
+ ---
150315
+ ID of the ACS system associated with the lock event.
150316
+ */
150317
+ acs_system_id?: string | undefined;
150318
+ /**
150319
+ undocumented: Unreleased.
150320
+ ---
150321
+ ID of the ACS user associated with the lock event.
150322
+ */
150323
+ acs_user_id?: string | undefined;
150324
+ /**
150325
+ undocumented: Unreleased.
150326
+ ---
150327
+ ID of the ACS entrance associated with the lock event.
150328
+ */
150329
+ acs_entrance_id?: string | undefined;
150222
150330
  /**
150223
150331
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
150224
150332
  */
@@ -150264,7 +150372,7 @@ type Routes = {
150264
150372
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
150265
150373
  action_attempt_id?: string | undefined;
150266
150374
  /** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
150267
- method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
150375
+ method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
150268
150376
  /**
150269
150377
  undocumented: Unreleased.
150270
150378
  ---
package/dist/index.cjs CHANGED
@@ -2289,6 +2289,7 @@ var PROVIDER_CATEGORY_MAP = {
2289
2289
  "sensi",
2290
2290
  "assa_abloy_vostio",
2291
2291
  "avigilon_alta",
2292
+ "kisi",
2292
2293
  "keynest",
2293
2294
  "hotek",
2294
2295
  "ultraloq",
@@ -2322,7 +2323,7 @@ var PROVIDER_CATEGORY_MAP = {
2322
2323
  "sifely",
2323
2324
  "thirty_three_lock"
2324
2325
  ],
2325
- beta: ["kisi", "salto_ks_accept"],
2326
+ beta: ["salto_ks_accept"],
2326
2327
  thermostats: ["ecobee", "nest", "sensi", "honeywell_resideo", "first_alert"],
2327
2328
  noise_sensors: ["minut", "noiseaware"],
2328
2329
  access_control_systems: [
@@ -6519,8 +6520,8 @@ var device_event_issue_properties = {
6519
6520
  device_errors: zod.z.array(common_event_error).describe("Errors associated with the device."),
6520
6521
  device_warnings: zod.z.array(common_event_warning).describe("Warnings associated with the device.")
6521
6522
  };
6522
- var lock_method = zod.z.enum(["keycode", "manual", "automatic", "unknown", "remote"]).describe(
6523
- "Method by which the affected lock device was locked or unlocked. `keycode`: locked or unlocked using an access code (see `access_code_id`). `manual`: a direct physical action, such as turning a thumbturn or pressing a button. `remote`: a remote action initiated via an app, Bluetooth, or the Seam API (see `action_attempt_id` for Seam-initiated actions; see `is_via_bluetooth` or `is_via_nfc` for the specific transport). `automatic`: triggered automatically without user interaction, for example by an auto-relock timer. `unknown`: the method could not be determined from the provider event."
6523
+ var lock_method = zod.z.enum(["keycode", "manual", "automatic", "unknown", "remote", "card"]).describe(
6524
+ "Method by which the affected lock device was locked or unlocked. `keycode`: locked or unlocked using an access code (see `access_code_id`). `manual`: a direct physical action, such as turning a thumbturn or pressing a button. `remote`: a remote action initiated via an app, Bluetooth, or the Seam API (see `action_attempt_id` for Seam-initiated actions; see `is_via_bluetooth` or `is_via_nfc` for the specific transport). `automatic`: triggered automatically without user interaction, for example by an auto-relock timer. `card`: a physical credential (RFID card or NFC wallet pass) was presented at the reader. `unknown`: the method could not be determined from the provider event."
6524
6525
  );
6525
6526
  var device_connected_event = device_event.extend({
6526
6527
  event_type: zod.z.literal("device.connected")
@@ -6738,6 +6739,26 @@ var lock_locked_event = device_event.extend({
6738
6739
  method: lock_method.describe(
6739
6740
  "Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined."
6740
6741
  ),
6742
+ user_identity_id: zod.z.string().uuid().optional().describe(`
6743
+ undocumented: Unreleased.
6744
+ ---
6745
+ ID of the user identity associated with the lock event.
6746
+ `),
6747
+ acs_system_id: zod.z.string().uuid().optional().describe(`
6748
+ undocumented: Unreleased.
6749
+ ---
6750
+ ID of the ACS system associated with the lock event.
6751
+ `),
6752
+ acs_user_id: zod.z.string().uuid().optional().describe(`
6753
+ undocumented: Unreleased.
6754
+ ---
6755
+ ID of the ACS user associated with the lock event.
6756
+ `),
6757
+ acs_entrance_id: zod.z.string().uuid().optional().describe(`
6758
+ undocumented: Unreleased.
6759
+ ---
6760
+ ID of the ACS entrance associated with the lock event.
6761
+ `),
6741
6762
  is_via_bluetooth: zod.z.boolean().optional().describe(`
6742
6763
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
6743
6764
  `),
@@ -30659,6 +30680,21 @@ var openapi = {
30659
30680
  description: "Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set.",
30660
30681
  type: "boolean"
30661
30682
  },
30683
+ acs_entrance_id: {
30684
+ description: "\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the lock event.\n ",
30685
+ format: "uuid",
30686
+ type: "string"
30687
+ },
30688
+ acs_system_id: {
30689
+ description: "\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the lock event.\n ",
30690
+ format: "uuid",
30691
+ type: "string"
30692
+ },
30693
+ acs_user_id: {
30694
+ description: "\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the lock event.\n ",
30695
+ format: "uuid",
30696
+ type: "string"
30697
+ },
30662
30698
  action_attempt_id: {
30663
30699
  description: "ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt).",
30664
30700
  format: "uuid",
@@ -30721,7 +30757,14 @@ var openapi = {
30721
30757
  },
30722
30758
  method: {
30723
30759
  description: "Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined.",
30724
- enum: ["keycode", "manual", "automatic", "unknown", "remote"],
30760
+ enum: [
30761
+ "keycode",
30762
+ "manual",
30763
+ "automatic",
30764
+ "unknown",
30765
+ "remote",
30766
+ "card"
30767
+ ],
30725
30768
  type: "string"
30726
30769
  },
30727
30770
  occurred_at: {
@@ -30729,6 +30772,11 @@ var openapi = {
30729
30772
  format: "date-time",
30730
30773
  type: "string"
30731
30774
  },
30775
+ user_identity_id: {
30776
+ description: "\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the lock event.\n ",
30777
+ format: "uuid",
30778
+ type: "string"
30779
+ },
30732
30780
  workspace_id: {
30733
30781
  description: "ID of the workspace associated with the event.",
30734
30782
  format: "uuid",
@@ -30837,7 +30885,14 @@ var openapi = {
30837
30885
  },
30838
30886
  method: {
30839
30887
  description: "Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined.",
30840
- enum: ["keycode", "manual", "automatic", "unknown", "remote"],
30888
+ enum: [
30889
+ "keycode",
30890
+ "manual",
30891
+ "automatic",
30892
+ "unknown",
30893
+ "remote",
30894
+ "card"
30895
+ ],
30841
30896
  type: "string"
30842
30897
  },
30843
30898
  occurred_at: {