@seamapi/types 1.978.0 → 1.980.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.
Files changed (28) hide show
  1. package/dist/connect.cjs +100 -8
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +271 -46
  4. package/dist/index.cjs +100 -8
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
  7. package/lib/seam/connect/models/acs/acs-access-group.js +1 -0
  8. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
  10. package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
  11. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  13. package/lib/seam/connect/models/acs/acs-system.js +1 -0
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
  16. package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
  17. package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
  18. package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
  19. package/lib/seam/connect/openapi.js +76 -0
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +204 -28
  22. package/package.json +1 -1
  23. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -0
  24. package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
  25. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
  26. package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
  27. package/src/lib/seam/connect/openapi.ts +82 -0
  28. package/src/lib/seam/connect/route-types.ts +281 -0
package/dist/connect.cjs CHANGED
@@ -3466,7 +3466,8 @@ var acs_access_group_external_type = zod.z.enum([
3466
3466
  "dormakaba_community_access_group",
3467
3467
  "dormakaba_ambiance_access_group",
3468
3468
  "avigilon_alta_group",
3469
- "kisi_access_group"
3469
+ "kisi_access_group",
3470
+ "akiles_member_group"
3470
3471
  ]);
3471
3472
  var common_acs_access_group_error = zod.z.object({
3472
3473
  created_at: zod.z.string().datetime().describe("Date and time at which Seam created the error."),
@@ -3993,6 +3994,17 @@ var acs_encoder = zod.z.object({
3993
3994
 
3994
3995
  To verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/device-and-system-integration-guides#access-control-systems).
3995
3996
  `);
3997
+ var acs_entrance_akiles_metadata = zod.z.object({
3998
+ gadget_id: zod.z.string().optional().describe("ID of the Akiles gadget."),
3999
+ site_id: zod.z.string().optional().describe("ID of the Akiles site the gadget belongs to."),
4000
+ site_name: zod.z.string().optional().describe("Name of the Akiles site the gadget belongs to."),
4001
+ actions: zod.z.array(
4002
+ zod.z.object({
4003
+ id: zod.z.string().optional().describe("ID of the gadget action."),
4004
+ name: zod.z.string().optional().describe("Name of the gadget action.")
4005
+ }).partial()
4006
+ ).optional().describe("Actions the gadget exposes (for example, open).")
4007
+ }).partial().describe("Akiles-specific metadata for the entrance.");
3996
4008
  var acs_entrance_avigilon_alta_metadata = zod.z.object({
3997
4009
  entry_name: zod.z.string().optional().describe("Entry name for an Avigilon Alta system."),
3998
4010
  org_name: zod.z.string().optional().describe("Organization name for an Avigilon Alta system."),
@@ -4132,6 +4144,9 @@ var acs_entrance = zod.z.object({
4132
4144
  avigilon_alta_metadata: acs_entrance_avigilon_alta_metadata.optional().describe(
4133
4145
  "Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details)."
4134
4146
  ),
4147
+ akiles_metadata: acs_entrance_akiles_metadata.optional().describe(
4148
+ "Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details)."
4149
+ ),
4135
4150
  is_locked: zod.z.boolean().optional().describe(
4136
4151
  "Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked."
4137
4152
  )
@@ -4168,7 +4183,8 @@ var acs_system_external_type = zod.z.enum([
4168
4183
  "assa_abloy_vostio",
4169
4184
  "assa_abloy_vostio_credential_service",
4170
4185
  "hotek_site",
4171
- "kisi_organization"
4186
+ "kisi_organization",
4187
+ "akiles_organization"
4172
4188
  ]);
4173
4189
  var common_acs_system_error = zod.z.object({
4174
4190
  created_at: zod.z.string().datetime().describe("Date and time at which Seam created the error."),
@@ -10027,7 +10043,8 @@ var openapi = {
10027
10043
  "dormakaba_community_access_group",
10028
10044
  "dormakaba_ambiance_access_group",
10029
10045
  "avigilon_alta_group",
10030
- "kisi_access_group"
10046
+ "kisi_access_group",
10047
+ "akiles_member_group"
10031
10048
  ],
10032
10049
  type: "string",
10033
10050
  "x-deprecated": "Use `external_type`."
@@ -10122,7 +10139,8 @@ var openapi = {
10122
10139
  "dormakaba_community_access_group",
10123
10140
  "dormakaba_ambiance_access_group",
10124
10141
  "avigilon_alta_group",
10125
- "kisi_access_group"
10142
+ "kisi_access_group",
10143
+ "akiles_member_group"
10126
10144
  ],
10127
10145
  type: "string"
10128
10146
  },
@@ -11051,6 +11069,41 @@ var openapi = {
11051
11069
  format: "uuid",
11052
11070
  type: "string"
11053
11071
  },
11072
+ akiles_metadata: {
11073
+ description: "Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
11074
+ properties: {
11075
+ actions: {
11076
+ description: "Actions the gadget exposes (for example, open).",
11077
+ items: {
11078
+ properties: {
11079
+ id: {
11080
+ description: "ID of the gadget action.",
11081
+ type: "string"
11082
+ },
11083
+ name: {
11084
+ description: "Name of the gadget action.",
11085
+ type: "string"
11086
+ }
11087
+ },
11088
+ type: "object"
11089
+ },
11090
+ type: "array"
11091
+ },
11092
+ gadget_id: {
11093
+ description: "ID of the Akiles gadget.",
11094
+ type: "string"
11095
+ },
11096
+ site_id: {
11097
+ description: "ID of the Akiles site the gadget belongs to.",
11098
+ type: "string"
11099
+ },
11100
+ site_name: {
11101
+ description: "Name of the Akiles site the gadget belongs to.",
11102
+ type: "string"
11103
+ }
11104
+ },
11105
+ type: "object"
11106
+ },
11054
11107
  assa_abloy_vostio_metadata: {
11055
11108
  description: "ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
11056
11109
  properties: {
@@ -11746,7 +11799,8 @@ var openapi = {
11746
11799
  "assa_abloy_vostio",
11747
11800
  "assa_abloy_vostio_credential_service",
11748
11801
  "hotek_site",
11749
- "kisi_organization"
11802
+ "kisi_organization",
11803
+ "akiles_organization"
11750
11804
  ],
11751
11805
  type: "string"
11752
11806
  },
@@ -11800,7 +11854,8 @@ var openapi = {
11800
11854
  "assa_abloy_vostio",
11801
11855
  "assa_abloy_vostio_credential_service",
11802
11856
  "hotek_site",
11803
- "kisi_organization"
11857
+ "kisi_organization",
11858
+ "akiles_organization"
11804
11859
  ],
11805
11860
  type: "string",
11806
11861
  "x-deprecated": "Use `external_type`."
@@ -32629,6 +32684,41 @@ var openapi = {
32629
32684
  format: "uuid",
32630
32685
  type: "string"
32631
32686
  },
32687
+ akiles_metadata: {
32688
+ description: "Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
32689
+ properties: {
32690
+ actions: {
32691
+ description: "Actions the gadget exposes (for example, open).",
32692
+ items: {
32693
+ properties: {
32694
+ id: {
32695
+ description: "ID of the gadget action.",
32696
+ type: "string"
32697
+ },
32698
+ name: {
32699
+ description: "Name of the gadget action.",
32700
+ type: "string"
32701
+ }
32702
+ },
32703
+ type: "object"
32704
+ },
32705
+ type: "array"
32706
+ },
32707
+ gadget_id: {
32708
+ description: "ID of the Akiles gadget.",
32709
+ type: "string"
32710
+ },
32711
+ site_id: {
32712
+ description: "ID of the Akiles site the gadget belongs to.",
32713
+ type: "string"
32714
+ },
32715
+ site_name: {
32716
+ description: "Name of the Akiles site the gadget belongs to.",
32717
+ type: "string"
32718
+ }
32719
+ },
32720
+ type: "object"
32721
+ },
32632
32722
  assa_abloy_vostio_metadata: {
32633
32723
  description: "ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
32634
32724
  properties: {
@@ -35178,7 +35268,8 @@ var openapi = {
35178
35268
  "dormakaba_community_access_group",
35179
35269
  "dormakaba_ambiance_access_group",
35180
35270
  "avigilon_alta_group",
35181
- "kisi_access_group"
35271
+ "kisi_access_group",
35272
+ "akiles_member_group"
35182
35273
  ],
35183
35274
  type: "string",
35184
35275
  "x-deprecated": "Use `external_type`."
@@ -35273,7 +35364,8 @@ var openapi = {
35273
35364
  "dormakaba_community_access_group",
35274
35365
  "dormakaba_ambiance_access_group",
35275
35366
  "avigilon_alta_group",
35276
- "kisi_access_group"
35367
+ "kisi_access_group",
35368
+ "akiles_member_group"
35277
35369
  ],
35278
35370
  type: "string"
35279
35371
  },