@seamapi/types 1.320.0 → 1.321.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.
Files changed (26) hide show
  1. package/dist/connect.cjs +140 -33
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +315 -188
  4. package/lib/seam/connect/models/acs/acs-access-group.d.ts +105 -13
  5. package/lib/seam/connect/models/acs/acs-access-group.js +28 -0
  6. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +22 -22
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -4
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +0 -10
  11. package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +0 -6
  12. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +0 -2
  13. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
  14. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +32 -32
  15. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +14 -14
  16. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
  17. package/lib/seam/connect/openapi.d.ts +75 -12
  18. package/lib/seam/connect/openapi.js +101 -12
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +138 -112
  21. package/package.json +2 -2
  22. package/src/lib/seam/connect/models/acs/acs-access-group.ts +45 -0
  23. package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -4
  24. package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +0 -2
  25. package/src/lib/seam/connect/openapi.ts +114 -12
  26. package/src/lib/seam/connect/route-types.ts +138 -104
@@ -179,6 +179,7 @@ export default {
179
179
  'salto_ks_access_group',
180
180
  'brivo_group',
181
181
  'salto_space_group',
182
+ 'dormakaba_community_access_group',
182
183
  ],
183
184
  type: 'string',
184
185
  'x-deprecated': 'Use `external_type`.',
@@ -212,6 +213,7 @@ export default {
212
213
  'salto_ks_access_group',
213
214
  'brivo_group',
214
215
  'salto_space_group',
216
+ 'dormakaba_community_access_group',
215
217
  ],
216
218
  type: 'string',
217
219
  },
@@ -221,6 +223,31 @@ export default {
221
223
  },
222
224
  is_managed: { enum: [true], type: 'boolean' },
223
225
  name: { description: 'Name of the access group.', type: 'string' },
226
+ warnings: {
227
+ description: 'Warnings associated with the `acs_access_group`.',
228
+ items: {
229
+ description: 'Warning associated with the `acs_access_group`.',
230
+ properties: {
231
+ created_at: {
232
+ description: 'Date and time at which Seam created the warning.',
233
+ format: 'date-time',
234
+ type: 'string',
235
+ },
236
+ message: {
237
+ description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
238
+ type: 'string',
239
+ },
240
+ warning_code: {
241
+ description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
242
+ enum: ['unknown_issue_with_acs_access_group'],
243
+ type: 'string',
244
+ },
245
+ },
246
+ required: ['created_at', 'message', 'warning_code'],
247
+ type: 'object',
248
+ },
249
+ type: 'array',
250
+ },
224
251
  workspace_id: {
225
252
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
226
253
  format: 'uuid',
@@ -238,6 +265,7 @@ export default {
238
265
  'external_type',
239
266
  'external_type_display_name',
240
267
  'created_at',
268
+ 'warnings',
241
269
  'is_managed',
242
270
  ],
243
271
  type: 'object',
@@ -469,7 +497,7 @@ export default {
469
497
  },
470
498
  warning_code: {
471
499
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
472
- enum: ['unknown_issue_with_credential'],
500
+ enum: ['unknown_issue_with_acs_credential'],
473
501
  type: 'string',
474
502
  },
475
503
  },
@@ -580,11 +608,6 @@ export default {
580
608
  properties: {
581
609
  access_point_name: { type: 'string' },
582
610
  common_area_number: { format: 'float', type: 'number' },
583
- inner_access_points_names: {
584
- items: { type: 'string' },
585
- type: 'array',
586
- },
587
- lease_ids: { items: { type: 'string' }, type: 'array' },
588
611
  },
589
612
  required: ['access_point_name'],
590
613
  type: 'object',
@@ -1827,7 +1850,9 @@ export default {
1827
1850
  },
1828
1851
  warning_code: {
1829
1852
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
1830
- enum: ['unknown_issue_with_credential'],
1853
+ enum: [
1854
+ 'unknown_issue_with_acs_credential',
1855
+ ],
1831
1856
  type: 'string',
1832
1857
  },
1833
1858
  },
@@ -2114,7 +2139,9 @@ export default {
2114
2139
  },
2115
2140
  warning_code: {
2116
2141
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
2117
- enum: ['unknown_issue_with_credential'],
2142
+ enum: [
2143
+ 'unknown_issue_with_acs_credential',
2144
+ ],
2118
2145
  type: 'string',
2119
2146
  },
2120
2147
  },
@@ -2532,7 +2559,7 @@ export default {
2532
2559
  },
2533
2560
  warning_code: {
2534
2561
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
2535
- enum: ['unknown_issue_with_credential'],
2562
+ enum: ['unknown_issue_with_acs_credential'],
2536
2563
  type: 'string',
2537
2564
  },
2538
2565
  },
@@ -2819,7 +2846,7 @@ export default {
2819
2846
  },
2820
2847
  warning_code: {
2821
2848
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
2822
- enum: ['unknown_issue_with_credential'],
2849
+ enum: ['unknown_issue_with_acs_credential'],
2823
2850
  type: 'string',
2824
2851
  },
2825
2852
  },
@@ -11815,6 +11842,7 @@ export default {
11815
11842
  'salto_ks_access_group',
11816
11843
  'brivo_group',
11817
11844
  'salto_space_group',
11845
+ 'dormakaba_community_access_group',
11818
11846
  ],
11819
11847
  type: 'string',
11820
11848
  'x-deprecated': 'Use `external_type`.',
@@ -11848,6 +11876,7 @@ export default {
11848
11876
  'salto_ks_access_group',
11849
11877
  'brivo_group',
11850
11878
  'salto_space_group',
11879
+ 'dormakaba_community_access_group',
11851
11880
  ],
11852
11881
  type: 'string',
11853
11882
  },
@@ -11860,6 +11889,31 @@ export default {
11860
11889
  description: 'Name of the access group.',
11861
11890
  type: 'string',
11862
11891
  },
11892
+ warnings: {
11893
+ description: 'Warnings associated with the `acs_access_group`.',
11894
+ items: {
11895
+ description: 'Warning associated with the `acs_access_group`.',
11896
+ properties: {
11897
+ created_at: {
11898
+ description: 'Date and time at which Seam created the warning.',
11899
+ format: 'date-time',
11900
+ type: 'string',
11901
+ },
11902
+ message: {
11903
+ description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
11904
+ type: 'string',
11905
+ },
11906
+ warning_code: {
11907
+ description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
11908
+ enum: ['unknown_issue_with_acs_access_group'],
11909
+ type: 'string',
11910
+ },
11911
+ },
11912
+ required: ['created_at', 'message', 'warning_code'],
11913
+ type: 'object',
11914
+ },
11915
+ type: 'array',
11916
+ },
11863
11917
  workspace_id: {
11864
11918
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
11865
11919
  format: 'uuid',
@@ -11877,6 +11931,7 @@ export default {
11877
11931
  'external_type',
11878
11932
  'external_type_display_name',
11879
11933
  'created_at',
11934
+ 'warnings',
11880
11935
  'is_managed',
11881
11936
  ],
11882
11937
  type: 'object',
@@ -11949,6 +12004,7 @@ export default {
11949
12004
  'salto_ks_access_group',
11950
12005
  'brivo_group',
11951
12006
  'salto_space_group',
12007
+ 'dormakaba_community_access_group',
11952
12008
  ],
11953
12009
  type: 'string',
11954
12010
  'x-deprecated': 'Use `external_type`.',
@@ -11982,6 +12038,7 @@ export default {
11982
12038
  'salto_ks_access_group',
11983
12039
  'brivo_group',
11984
12040
  'salto_space_group',
12041
+ 'dormakaba_community_access_group',
11985
12042
  ],
11986
12043
  type: 'string',
11987
12044
  },
@@ -11994,6 +12051,35 @@ export default {
11994
12051
  description: 'Name of the access group.',
11995
12052
  type: 'string',
11996
12053
  },
12054
+ warnings: {
12055
+ description: 'Warnings associated with the `acs_access_group`.',
12056
+ items: {
12057
+ description: 'Warning associated with the `acs_access_group`.',
12058
+ properties: {
12059
+ created_at: {
12060
+ description: 'Date and time at which Seam created the warning.',
12061
+ format: 'date-time',
12062
+ type: 'string',
12063
+ },
12064
+ message: {
12065
+ description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
12066
+ type: 'string',
12067
+ },
12068
+ warning_code: {
12069
+ description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
12070
+ enum: ['unknown_issue_with_acs_access_group'],
12071
+ type: 'string',
12072
+ },
12073
+ },
12074
+ required: [
12075
+ 'created_at',
12076
+ 'message',
12077
+ 'warning_code',
12078
+ ],
12079
+ type: 'object',
12080
+ },
12081
+ type: 'array',
12082
+ },
11997
12083
  workspace_id: {
11998
12084
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
11999
12085
  format: 'uuid',
@@ -12011,6 +12097,7 @@ export default {
12011
12097
  'external_type',
12012
12098
  'external_type_display_name',
12013
12099
  'created_at',
12100
+ 'warnings',
12014
12101
  'is_managed',
12015
12102
  ],
12016
12103
  type: 'object',
@@ -13179,7 +13266,7 @@ export default {
13179
13266
  },
13180
13267
  warning_code: {
13181
13268
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13182
- enum: ['unknown_issue_with_credential'],
13269
+ enum: ['unknown_issue_with_acs_credential'],
13183
13270
  type: 'string',
13184
13271
  },
13185
13272
  },
@@ -13563,7 +13650,9 @@ export default {
13563
13650
  },
13564
13651
  warning_code: {
13565
13652
  description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13566
- enum: ['unknown_issue_with_credential'],
13653
+ enum: [
13654
+ 'unknown_issue_with_acs_credential',
13655
+ ],
13567
13656
  type: 'string',
13568
13657
  },
13569
13658
  },