@seamapi/types 1.549.0 → 1.550.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.
- package/dist/connect.cjs +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -0
- package/dist/index.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +7 -0
package/dist/connect.d.cts
CHANGED
|
@@ -71452,6 +71452,18 @@ declare const _default: {
|
|
|
71452
71452
|
format: string;
|
|
71453
71453
|
type: string;
|
|
71454
71454
|
};
|
|
71455
|
+
hotek_metadata: {
|
|
71456
|
+
properties: {
|
|
71457
|
+
auto_join: {
|
|
71458
|
+
type: string;
|
|
71459
|
+
};
|
|
71460
|
+
override: {
|
|
71461
|
+
type: string;
|
|
71462
|
+
};
|
|
71463
|
+
};
|
|
71464
|
+
type: string;
|
|
71465
|
+
'x-undocumented': string;
|
|
71466
|
+
};
|
|
71455
71467
|
is_multi_phone_sync_credential: {
|
|
71456
71468
|
default: boolean;
|
|
71457
71469
|
description: string;
|
|
@@ -123554,6 +123566,11 @@ type Routes = {
|
|
|
123554
123566
|
join_all_guest_acs_entrances?: boolean | undefined;
|
|
123555
123567
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
123556
123568
|
} | undefined;
|
|
123569
|
+
/** */
|
|
123570
|
+
hotek_metadata?: {
|
|
123571
|
+
override?: boolean | undefined;
|
|
123572
|
+
auto_join?: boolean | undefined;
|
|
123573
|
+
} | undefined;
|
|
123557
123574
|
/** Salto Space-specific metadata for the new credential. */
|
|
123558
123575
|
salto_space_metadata?: {
|
|
123559
123576
|
/** Indicates whether to assign a first, new card to a user. See also [Programming Salto Space Card-based Credentials](https://docs.seam.co/latest/device-and-system-integration-guides/salto-proaccess-space-access-system/programming-salto-space-card-based-credentials). */
|
package/dist/index.cjs
CHANGED
|
@@ -33916,6 +33916,14 @@ var openapi_default = {
|
|
|
33916
33916
|
format: "date-time",
|
|
33917
33917
|
type: "string"
|
|
33918
33918
|
},
|
|
33919
|
+
hotek_metadata: {
|
|
33920
|
+
properties: {
|
|
33921
|
+
auto_join: { type: "boolean" },
|
|
33922
|
+
override: { type: "boolean" }
|
|
33923
|
+
},
|
|
33924
|
+
type: "object",
|
|
33925
|
+
"x-undocumented": "in development"
|
|
33926
|
+
},
|
|
33919
33927
|
is_multi_phone_sync_credential: {
|
|
33920
33928
|
default: false,
|
|
33921
33929
|
description: "Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
|