@seamapi/types 1.416.2 → 1.417.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 +15 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +25 -0
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -4498,6 +4498,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4498
4498
|
acs_entrance_id: z.ZodString;
|
|
4499
4499
|
created_at: z.ZodString;
|
|
4500
4500
|
display_name: z.ZodString;
|
|
4501
|
+
connected_account_id: z.ZodString;
|
|
4501
4502
|
errors: z.ZodArray<z.ZodObject<{
|
|
4502
4503
|
error_code: z.ZodString;
|
|
4503
4504
|
message: z.ZodString;
|
|
@@ -4626,6 +4627,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4626
4627
|
message: string;
|
|
4627
4628
|
error_code: string;
|
|
4628
4629
|
}[];
|
|
4630
|
+
connected_account_id: string;
|
|
4629
4631
|
acs_system_id: string;
|
|
4630
4632
|
acs_entrance_id: string;
|
|
4631
4633
|
salto_ks_metadata?: {
|
|
@@ -4674,6 +4676,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4674
4676
|
message: string;
|
|
4675
4677
|
error_code: string;
|
|
4676
4678
|
}[];
|
|
4679
|
+
connected_account_id: string;
|
|
4677
4680
|
acs_system_id: string;
|
|
4678
4681
|
acs_entrance_id: string;
|
|
4679
4682
|
salto_ks_metadata?: {
|
|
@@ -22585,6 +22588,11 @@ declare const _default: {
|
|
|
22585
22588
|
required: string[];
|
|
22586
22589
|
type: string;
|
|
22587
22590
|
};
|
|
22591
|
+
connected_account_id: {
|
|
22592
|
+
description: string;
|
|
22593
|
+
format: string;
|
|
22594
|
+
type: string;
|
|
22595
|
+
};
|
|
22588
22596
|
created_at: {
|
|
22589
22597
|
description: string;
|
|
22590
22598
|
format: string;
|
|
@@ -31651,6 +31659,11 @@ declare const _default: {
|
|
|
31651
31659
|
required: string[];
|
|
31652
31660
|
type: string;
|
|
31653
31661
|
};
|
|
31662
|
+
connected_account_id: {
|
|
31663
|
+
description: string;
|
|
31664
|
+
format: string;
|
|
31665
|
+
type: string;
|
|
31666
|
+
};
|
|
31654
31667
|
created_at: {
|
|
31655
31668
|
description: string;
|
|
31656
31669
|
format: string;
|
|
@@ -67542,6 +67555,8 @@ interface Routes {
|
|
|
67542
67555
|
created_at: string;
|
|
67543
67556
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
67544
67557
|
display_name: string;
|
|
67558
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
67559
|
+
connected_account_id: string;
|
|
67545
67560
|
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
67546
67561
|
errors: Array<{
|
|
67547
67562
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
@@ -68839,6 +68854,8 @@ interface Routes {
|
|
|
68839
68854
|
created_at: string;
|
|
68840
68855
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
68841
68856
|
display_name: string;
|
|
68857
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
68858
|
+
connected_account_id: string;
|
|
68842
68859
|
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
68843
68860
|
errors: Array<{
|
|
68844
68861
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
@@ -73653,6 +73670,8 @@ interface Routes {
|
|
|
73653
73670
|
created_at: string;
|
|
73654
73671
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73655
73672
|
display_name: string;
|
|
73673
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73674
|
+
connected_account_id: string;
|
|
73656
73675
|
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73657
73676
|
errors: Array<{
|
|
73658
73677
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
@@ -73781,6 +73800,8 @@ interface Routes {
|
|
|
73781
73800
|
created_at: string;
|
|
73782
73801
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73783
73802
|
display_name: string;
|
|
73803
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73804
|
+
connected_account_id: string;
|
|
73784
73805
|
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73785
73806
|
errors: Array<{
|
|
73786
73807
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
@@ -75176,6 +75197,8 @@ interface Routes {
|
|
|
75176
75197
|
created_at: string;
|
|
75177
75198
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
75178
75199
|
display_name: string;
|
|
75200
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
75201
|
+
connected_account_id: string;
|
|
75179
75202
|
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
75180
75203
|
errors: Array<{
|
|
75181
75204
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
@@ -102475,6 +102498,8 @@ interface Routes {
|
|
|
102475
102498
|
created_at: string;
|
|
102476
102499
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
102477
102500
|
display_name: string;
|
|
102501
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
102502
|
+
connected_account_id: string;
|
|
102478
102503
|
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
102479
102504
|
errors: Array<{
|
|
102480
102505
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
@@ -4,6 +4,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
4
4
|
acs_entrance_id: z.ZodString;
|
|
5
5
|
created_at: z.ZodString;
|
|
6
6
|
display_name: z.ZodString;
|
|
7
|
+
connected_account_id: z.ZodString;
|
|
7
8
|
errors: z.ZodArray<z.ZodObject<{
|
|
8
9
|
error_code: z.ZodString;
|
|
9
10
|
message: z.ZodString;
|
|
@@ -132,6 +133,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
132
133
|
message: string;
|
|
133
134
|
error_code: string;
|
|
134
135
|
}[];
|
|
136
|
+
connected_account_id: string;
|
|
135
137
|
acs_system_id: string;
|
|
136
138
|
acs_entrance_id: string;
|
|
137
139
|
salto_ks_metadata?: {
|
|
@@ -180,6 +182,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
180
182
|
message: string;
|
|
181
183
|
error_code: string;
|
|
182
184
|
}[];
|
|
185
|
+
connected_account_id: string;
|
|
183
186
|
acs_system_id: string;
|
|
184
187
|
acs_entrance_id: string;
|
|
185
188
|
salto_ks_metadata?: {
|
|
@@ -17,6 +17,10 @@ export const acs_entrance = z.object({
|
|
|
17
17
|
display_name: z
|
|
18
18
|
.string()
|
|
19
19
|
.describe('Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).'),
|
|
20
|
+
connected_account_id: z
|
|
21
|
+
.string()
|
|
22
|
+
.uuid()
|
|
23
|
+
.describe('ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).'),
|
|
20
24
|
errors: z
|
|
21
25
|
.array(z.object({
|
|
22
26
|
error_code: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,uCAAuC,EACvC,yCAAyC,EACzC,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,GACjC,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAE,iCAAiC,EAAE,MAAM,2BAA2B,CAAA;AAE7E,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,yNAAyN,CAC1N;IACH,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,iHAAiH,CAClH;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,8IAA8I,CAC/I;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,4HAA4H,CAC7H;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC;aACV,MAAM,EAAE;aACR,QAAQ,CACP,oGAAoG,CACrG;QACH,OAAO,EAAE,CAAC;aACP,MAAM,EAAE;aACR,QAAQ,CACP,wGAAwG,CACzG;KACJ,CAAC,CACH;SACA,QAAQ,CACP,kIAAkI,CACnI;IACH,cAAc,EAAE,2BAA2B;SACxC,QAAQ,EAAE;SACV,QAAQ,CACP,mJAAmJ,CACpJ;IACH,mBAAmB,EAAE,gCAAgC;SAClD,QAAQ,EAAE;SACV,QAAQ,CACP,wJAAwJ,CACzJ;IACH,iBAAiB,EAAE,8BAA8B;SAC9C,QAAQ,EAAE;SACV,QAAQ,CACP,sJAAsJ,CACvJ;IACH,4BAA4B,EAAE,yCAAyC;SACpE,QAAQ,EAAE;SACV,QAAQ,CACP,iKAAiK,CAClK;IACH,0BAA0B,EAAE,uCAAuC;SAChE,QAAQ,EAAE;SACV,QAAQ,CACP,+JAA+J,CAChK;IACH,oBAAoB,EAAE,iCAAiC;SACpD,QAAQ,EAAE;SACV,QAAQ,CACP,yJAAyJ,CAC1J;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"acs-entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,uCAAuC,EACvC,yCAAyC,EACzC,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,GACjC,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAE,iCAAiC,EAAE,MAAM,2BAA2B,CAAA;AAE7E,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,yNAAyN,CAC1N;IACH,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,iHAAiH,CAClH;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,8IAA8I,CAC/I;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,4HAA4H,CAC7H;IACH,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,mPAAmP,CACpP;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC;aACV,MAAM,EAAE;aACR,QAAQ,CACP,oGAAoG,CACrG;QACH,OAAO,EAAE,CAAC;aACP,MAAM,EAAE;aACR,QAAQ,CACP,wGAAwG,CACzG;KACJ,CAAC,CACH;SACA,QAAQ,CACP,kIAAkI,CACnI;IACH,cAAc,EAAE,2BAA2B;SACxC,QAAQ,EAAE;SACV,QAAQ,CACP,mJAAmJ,CACpJ;IACH,mBAAmB,EAAE,gCAAgC;SAClD,QAAQ,EAAE;SACV,QAAQ,CACP,wJAAwJ,CACzJ;IACH,iBAAiB,EAAE,8BAA8B;SAC9C,QAAQ,EAAE;SACV,QAAQ,CACP,sJAAsJ,CACvJ;IACH,4BAA4B,EAAE,yCAAyC;SACpE,QAAQ,EAAE;SACV,QAAQ,CACP,iKAAiK,CAClK;IACH,0BAA0B,EAAE,uCAAuC;SAChE,QAAQ,EAAE;SACV,QAAQ,CACP,+JAA+J,CAChK;IACH,oBAAoB,EAAE,iCAAiC;SACpD,QAAQ,EAAE;SACV,QAAQ,CACP,yJAAyJ,CAC1J;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -186,6 +186,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
186
186
|
acs_entrance_id: z.ZodString;
|
|
187
187
|
created_at: z.ZodString;
|
|
188
188
|
display_name: z.ZodString;
|
|
189
|
+
connected_account_id: z.ZodString;
|
|
189
190
|
errors: z.ZodArray<z.ZodObject<{
|
|
190
191
|
error_code: z.ZodString;
|
|
191
192
|
message: z.ZodString;
|
|
@@ -314,6 +315,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
314
315
|
message: string;
|
|
315
316
|
error_code: string;
|
|
316
317
|
}[];
|
|
318
|
+
connected_account_id: string;
|
|
317
319
|
acs_system_id: string;
|
|
318
320
|
acs_entrance_id: string;
|
|
319
321
|
salto_ks_metadata?: {
|
|
@@ -362,6 +364,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
362
364
|
message: string;
|
|
363
365
|
error_code: string;
|
|
364
366
|
}[];
|
|
367
|
+
connected_account_id: string;
|
|
365
368
|
acs_system_id: string;
|
|
366
369
|
acs_entrance_id: string;
|
|
367
370
|
salto_ks_metadata?: {
|
|
@@ -448,6 +451,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
448
451
|
message: string;
|
|
449
452
|
error_code: string;
|
|
450
453
|
}[];
|
|
454
|
+
connected_account_id: string;
|
|
451
455
|
acs_system_id: string;
|
|
452
456
|
acs_entrance_id: string;
|
|
453
457
|
salto_ks_metadata?: {
|
|
@@ -567,6 +571,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
567
571
|
message: string;
|
|
568
572
|
error_code: string;
|
|
569
573
|
}[];
|
|
574
|
+
connected_account_id: string;
|
|
570
575
|
acs_system_id: string;
|
|
571
576
|
acs_entrance_id: string;
|
|
572
577
|
salto_ks_metadata?: {
|
|
@@ -694,6 +699,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
694
699
|
message: string;
|
|
695
700
|
error_code: string;
|
|
696
701
|
}[];
|
|
702
|
+
connected_account_id: string;
|
|
697
703
|
acs_system_id: string;
|
|
698
704
|
acs_entrance_id: string;
|
|
699
705
|
salto_ks_metadata?: {
|
|
@@ -821,6 +827,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
821
827
|
message: string;
|
|
822
828
|
error_code: string;
|
|
823
829
|
}[];
|
|
830
|
+
connected_account_id: string;
|
|
824
831
|
acs_system_id: string;
|
|
825
832
|
acs_entrance_id: string;
|
|
826
833
|
salto_ks_metadata?: {
|
|
@@ -1086,6 +1093,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1086
1093
|
acs_entrance_id: z.ZodString;
|
|
1087
1094
|
created_at: z.ZodString;
|
|
1088
1095
|
display_name: z.ZodString;
|
|
1096
|
+
connected_account_id: z.ZodString;
|
|
1089
1097
|
errors: z.ZodArray<z.ZodObject<{
|
|
1090
1098
|
error_code: z.ZodString;
|
|
1091
1099
|
message: z.ZodString;
|
|
@@ -1214,6 +1222,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1214
1222
|
message: string;
|
|
1215
1223
|
error_code: string;
|
|
1216
1224
|
}[];
|
|
1225
|
+
connected_account_id: string;
|
|
1217
1226
|
acs_system_id: string;
|
|
1218
1227
|
acs_entrance_id: string;
|
|
1219
1228
|
salto_ks_metadata?: {
|
|
@@ -1262,6 +1271,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1262
1271
|
message: string;
|
|
1263
1272
|
error_code: string;
|
|
1264
1273
|
}[];
|
|
1274
|
+
connected_account_id: string;
|
|
1265
1275
|
acs_system_id: string;
|
|
1266
1276
|
acs_entrance_id: string;
|
|
1267
1277
|
salto_ks_metadata?: {
|
|
@@ -1348,6 +1358,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1348
1358
|
message: string;
|
|
1349
1359
|
error_code: string;
|
|
1350
1360
|
}[];
|
|
1361
|
+
connected_account_id: string;
|
|
1351
1362
|
acs_system_id: string;
|
|
1352
1363
|
acs_entrance_id: string;
|
|
1353
1364
|
salto_ks_metadata?: {
|
|
@@ -1467,6 +1478,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1467
1478
|
message: string;
|
|
1468
1479
|
error_code: string;
|
|
1469
1480
|
}[];
|
|
1481
|
+
connected_account_id: string;
|
|
1470
1482
|
acs_system_id: string;
|
|
1471
1483
|
acs_entrance_id: string;
|
|
1472
1484
|
salto_ks_metadata?: {
|
|
@@ -1594,6 +1606,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1594
1606
|
message: string;
|
|
1595
1607
|
error_code: string;
|
|
1596
1608
|
}[];
|
|
1609
|
+
connected_account_id: string;
|
|
1597
1610
|
acs_system_id: string;
|
|
1598
1611
|
acs_entrance_id: string;
|
|
1599
1612
|
salto_ks_metadata?: {
|
|
@@ -1721,6 +1734,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1721
1734
|
message: string;
|
|
1722
1735
|
error_code: string;
|
|
1723
1736
|
}[];
|
|
1737
|
+
connected_account_id: string;
|
|
1724
1738
|
acs_system_id: string;
|
|
1725
1739
|
acs_entrance_id: string;
|
|
1726
1740
|
salto_ks_metadata?: {
|
|
@@ -1850,6 +1864,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1850
1864
|
message: string;
|
|
1851
1865
|
error_code: string;
|
|
1852
1866
|
}[];
|
|
1867
|
+
connected_account_id: string;
|
|
1853
1868
|
acs_system_id: string;
|
|
1854
1869
|
acs_entrance_id: string;
|
|
1855
1870
|
salto_ks_metadata?: {
|
|
@@ -1979,6 +1994,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1979
1994
|
message: string;
|
|
1980
1995
|
error_code: string;
|
|
1981
1996
|
}[];
|
|
1997
|
+
connected_account_id: string;
|
|
1982
1998
|
acs_system_id: string;
|
|
1983
1999
|
acs_entrance_id: string;
|
|
1984
2000
|
salto_ks_metadata?: {
|
|
@@ -903,6 +903,11 @@ declare const _default: {
|
|
|
903
903
|
required: string[];
|
|
904
904
|
type: string;
|
|
905
905
|
};
|
|
906
|
+
connected_account_id: {
|
|
907
|
+
description: string;
|
|
908
|
+
format: string;
|
|
909
|
+
type: string;
|
|
910
|
+
};
|
|
906
911
|
created_at: {
|
|
907
912
|
description: string;
|
|
908
913
|
format: string;
|
|
@@ -9969,6 +9974,11 @@ declare const _default: {
|
|
|
9969
9974
|
required: string[];
|
|
9970
9975
|
type: string;
|
|
9971
9976
|
};
|
|
9977
|
+
connected_account_id: {
|
|
9978
|
+
description: string;
|
|
9979
|
+
format: string;
|
|
9980
|
+
type: string;
|
|
9981
|
+
};
|
|
9972
9982
|
created_at: {
|
|
9973
9983
|
description: string;
|
|
9974
9984
|
format: string;
|
|
@@ -2308,6 +2308,11 @@ export default {
|
|
|
2308
2308
|
required: ['door_type', 'door_name'],
|
|
2309
2309
|
type: 'object',
|
|
2310
2310
|
},
|
|
2311
|
+
connected_account_id: {
|
|
2312
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
2313
|
+
format: 'uuid',
|
|
2314
|
+
type: 'string',
|
|
2315
|
+
},
|
|
2311
2316
|
created_at: {
|
|
2312
2317
|
description: 'Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.',
|
|
2313
2318
|
format: 'date-time',
|
|
@@ -2487,6 +2492,7 @@ export default {
|
|
|
2487
2492
|
'acs_entrance_id',
|
|
2488
2493
|
'created_at',
|
|
2489
2494
|
'display_name',
|
|
2495
|
+
'connected_account_id',
|
|
2490
2496
|
'errors',
|
|
2491
2497
|
],
|
|
2492
2498
|
type: 'object',
|
|
@@ -16564,6 +16570,11 @@ export default {
|
|
|
16564
16570
|
required: ['door_type', 'door_name'],
|
|
16565
16571
|
type: 'object',
|
|
16566
16572
|
},
|
|
16573
|
+
connected_account_id: {
|
|
16574
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
16575
|
+
format: 'uuid',
|
|
16576
|
+
type: 'string',
|
|
16577
|
+
},
|
|
16567
16578
|
created_at: {
|
|
16568
16579
|
description: 'Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.',
|
|
16569
16580
|
format: 'date-time',
|
|
@@ -16743,6 +16754,7 @@ export default {
|
|
|
16743
16754
|
'acs_entrance_id',
|
|
16744
16755
|
'created_at',
|
|
16745
16756
|
'display_name',
|
|
16757
|
+
'connected_account_id',
|
|
16746
16758
|
'errors',
|
|
16747
16759
|
],
|
|
16748
16760
|
type: 'object',
|