@seamapi/types 1.45.0 → 1.46.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 +2 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -4
- package/lib/seam/connect/openapi.js +2 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -2
- package/src/lib/seam/connect/route-types.ts +4 -4
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -13255,10 +13255,10 @@ interface Routes {
|
|
|
13255
13255
|
jsonResponse: {
|
|
13256
13256
|
acs_system: {
|
|
13257
13257
|
acs_system_id: string;
|
|
13258
|
-
external_type: 'pti_site' | 'alta_org' | 'brivo_system';
|
|
13258
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
|
|
13259
13259
|
external_type_display_name: string;
|
|
13260
13260
|
/** deprecated: use external_type */
|
|
13261
|
-
system_type: 'pti_site' | 'alta_org' | 'brivo_system';
|
|
13261
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
|
|
13262
13262
|
/** deprecated: use external_type_display_name */
|
|
13263
13263
|
system_type_display_name: string;
|
|
13264
13264
|
name: string;
|
|
@@ -13279,10 +13279,10 @@ interface Routes {
|
|
|
13279
13279
|
jsonResponse: {
|
|
13280
13280
|
acs_systems: Array<{
|
|
13281
13281
|
acs_system_id: string;
|
|
13282
|
-
external_type: 'pti_site' | 'alta_org' | 'brivo_system';
|
|
13282
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
|
|
13283
13283
|
external_type_display_name: string;
|
|
13284
13284
|
/** deprecated: use external_type */
|
|
13285
|
-
system_type: 'pti_site' | 'alta_org' | 'brivo_system';
|
|
13285
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_system';
|
|
13286
13286
|
/** deprecated: use external_type_display_name */
|
|
13287
13287
|
system_type_display_name: string;
|
|
13288
13288
|
name: string;
|
|
@@ -100,14 +100,14 @@ export default {
|
|
|
100
100
|
connected_account_ids: { items: { type: 'string' }, type: 'array' },
|
|
101
101
|
created_at: { format: 'date-time', type: 'string' },
|
|
102
102
|
external_type: {
|
|
103
|
-
enum: ['pti_site', 'alta_org', 'brivo_system'],
|
|
103
|
+
enum: ['pti_site', 'alta_org', 'salto_site', 'brivo_system'],
|
|
104
104
|
type: 'string',
|
|
105
105
|
},
|
|
106
106
|
external_type_display_name: { type: 'string' },
|
|
107
107
|
name: { type: 'string' },
|
|
108
108
|
system_type: {
|
|
109
109
|
description: 'deprecated: use external_type',
|
|
110
|
-
enum: ['pti_site', 'alta_org', 'brivo_system'],
|
|
110
|
+
enum: ['pti_site', 'alta_org', 'salto_site', 'brivo_system'],
|
|
111
111
|
type: 'string',
|
|
112
112
|
},
|
|
113
113
|
system_type_display_name: {
|