@seamapi/types 1.76.0 → 1.77.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 +9 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -5
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +7 -5
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +1 -1
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -1
- package/src/lib/seam/connect/route-types.ts +32 -5
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -1
|
@@ -705,7 +705,7 @@ export interface Routes {
|
|
|
705
705
|
workspace_id: string;
|
|
706
706
|
created_at: string;
|
|
707
707
|
display_name: string;
|
|
708
|
-
external_type?: ('pti_user' | 'brivo_user' | '
|
|
708
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user') | undefined;
|
|
709
709
|
external_type_display_name?: string | undefined;
|
|
710
710
|
is_suspended: boolean;
|
|
711
711
|
access_schedule?: {
|
|
@@ -991,6 +991,7 @@ export interface Routes {
|
|
|
991
991
|
jsonBody: {};
|
|
992
992
|
commonParams: {
|
|
993
993
|
acs_system_id?: string | undefined;
|
|
994
|
+
acs_credential_id?: string | undefined;
|
|
994
995
|
};
|
|
995
996
|
formData: {};
|
|
996
997
|
jsonResponse: {
|
|
@@ -1092,7 +1093,7 @@ export interface Routes {
|
|
|
1092
1093
|
workspace_id: string;
|
|
1093
1094
|
created_at: string;
|
|
1094
1095
|
display_name: string;
|
|
1095
|
-
external_type?: ('pti_user' | 'brivo_user' | '
|
|
1096
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user') | undefined;
|
|
1096
1097
|
external_type_display_name?: string | undefined;
|
|
1097
1098
|
is_suspended: boolean;
|
|
1098
1099
|
access_schedule?: {
|
|
@@ -1135,7 +1136,7 @@ export interface Routes {
|
|
|
1135
1136
|
workspace_id: string;
|
|
1136
1137
|
created_at: string;
|
|
1137
1138
|
display_name: string;
|
|
1138
|
-
external_type?: ('pti_user' | 'brivo_user' | '
|
|
1139
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user') | undefined;
|
|
1139
1140
|
external_type_display_name?: string | undefined;
|
|
1140
1141
|
is_suspended: boolean;
|
|
1141
1142
|
access_schedule?: {
|
|
@@ -1167,7 +1168,7 @@ export interface Routes {
|
|
|
1167
1168
|
workspace_id: string;
|
|
1168
1169
|
created_at: string;
|
|
1169
1170
|
display_name: string;
|
|
1170
|
-
external_type?: ('pti_user' | 'brivo_user' | '
|
|
1171
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user') | undefined;
|
|
1171
1172
|
external_type_display_name?: string | undefined;
|
|
1172
1173
|
is_suspended: boolean;
|
|
1173
1174
|
access_schedule?: {
|
|
@@ -5564,6 +5565,7 @@ export interface Routes {
|
|
|
5564
5565
|
nfc_capability?: boolean;
|
|
5565
5566
|
application_version?: string;
|
|
5566
5567
|
seos_applet_version?: string;
|
|
5568
|
+
seos_tsm_endpoint_id?: number;
|
|
5567
5569
|
};
|
|
5568
5570
|
};
|
|
5569
5571
|
commonParams: {};
|
|
@@ -7846,7 +7848,7 @@ export interface Routes {
|
|
|
7846
7848
|
workspace_id: string;
|
|
7847
7849
|
created_at: string;
|
|
7848
7850
|
display_name: string;
|
|
7849
|
-
external_type?: ('pti_user' | 'brivo_user' | '
|
|
7851
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user') | undefined;
|
|
7850
7852
|
external_type_display_name?: string | undefined;
|
|
7851
7853
|
is_suspended: boolean;
|
|
7852
7854
|
access_schedule?: {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_user_external_type: z.ZodEnum<["pti_user", "brivo_user", "
|
|
2
|
+
export declare const acs_user_external_type: z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user"]>;
|
|
3
3
|
export type AcsUserExternalType = z.infer<typeof acs_user_external_type>;
|
|
4
4
|
export declare const acs_user: z.ZodObject<{
|
|
5
5
|
workspace_id: z.ZodString;
|
|
6
6
|
created_at: z.ZodString;
|
|
7
7
|
acs_system_id: z.ZodString;
|
|
8
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "
|
|
8
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user"]>>;
|
|
9
9
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
10
10
|
acs_user_id: z.ZodString;
|
|
11
11
|
display_name: z.ZodString;
|
|
@@ -32,7 +32,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
32
32
|
acs_user_id: string;
|
|
33
33
|
display_name: string;
|
|
34
34
|
is_suspended: boolean;
|
|
35
|
-
external_type?: "pti_user" | "brivo_user" | "
|
|
35
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | undefined;
|
|
36
36
|
external_type_display_name?: string | undefined;
|
|
37
37
|
hid_acs_system_id?: string | undefined;
|
|
38
38
|
access_schedule?: {
|
|
@@ -50,7 +50,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
50
50
|
acs_user_id: string;
|
|
51
51
|
display_name: string;
|
|
52
52
|
is_suspended: boolean;
|
|
53
|
-
external_type?: "pti_user" | "brivo_user" | "
|
|
53
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | undefined;
|
|
54
54
|
external_type_display_name?: string | undefined;
|
|
55
55
|
hid_acs_system_id?: string | undefined;
|
|
56
56
|
access_schedule?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;CAClB,CAAC,CAAA;AAIF,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM;KAC1B,MAAM,EAAE;KACR,IAAI,EAAE;KACN,MAAM,CACL,CAAC,GAAG,EAAE,EAAE;IACN,iDAAiD;IACjD,OAAO,mBAAmB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACtC,CAAC,EACD;IACE,OAAO,EAAE,oDAAoD;CAC9D,CACF,CAAA;AAEH,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,sBAAsB,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;IACzB,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;CACrC,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -254,7 +254,12 @@ export default {
|
|
|
254
254
|
},
|
|
255
255
|
email_address: { format: 'email', type: 'string' },
|
|
256
256
|
external_type: {
|
|
257
|
-
enum: [
|
|
257
|
+
enum: [
|
|
258
|
+
'pti_user',
|
|
259
|
+
'brivo_user',
|
|
260
|
+
'hid_credential_manager_user',
|
|
261
|
+
'salto_site_user',
|
|
262
|
+
],
|
|
258
263
|
type: 'string',
|
|
259
264
|
},
|
|
260
265
|
external_type_display_name: { type: 'string' },
|
|
@@ -5936,6 +5941,7 @@ export default {
|
|
|
5936
5941
|
'application/json': {
|
|
5937
5942
|
schema: {
|
|
5938
5943
|
properties: {
|
|
5944
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
5939
5945
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5940
5946
|
},
|
|
5941
5947
|
type: 'object',
|
|
@@ -9822,6 +9828,7 @@ export default {
|
|
|
9822
9828
|
hce_capability: { default: false, type: 'boolean' },
|
|
9823
9829
|
nfc_capability: { default: false, type: 'boolean' },
|
|
9824
9830
|
seos_applet_version: { default: '1.0.0', type: 'string' },
|
|
9831
|
+
seos_tsm_endpoint_id: { default: 1, type: 'number' },
|
|
9825
9832
|
},
|
|
9826
9833
|
type: 'object',
|
|
9827
9834
|
},
|
|
@@ -734,7 +734,12 @@ export interface Routes {
|
|
|
734
734
|
created_at: string
|
|
735
735
|
display_name: string
|
|
736
736
|
external_type?:
|
|
737
|
-
| (
|
|
737
|
+
| (
|
|
738
|
+
| 'pti_user'
|
|
739
|
+
| 'brivo_user'
|
|
740
|
+
| 'hid_credential_manager_user'
|
|
741
|
+
| 'salto_site_user'
|
|
742
|
+
)
|
|
738
743
|
| undefined
|
|
739
744
|
external_type_display_name?: string | undefined
|
|
740
745
|
is_suspended: boolean
|
|
@@ -1075,6 +1080,7 @@ export interface Routes {
|
|
|
1075
1080
|
jsonBody: {}
|
|
1076
1081
|
commonParams: {
|
|
1077
1082
|
acs_system_id?: string | undefined
|
|
1083
|
+
acs_credential_id?: string | undefined
|
|
1078
1084
|
}
|
|
1079
1085
|
formData: {}
|
|
1080
1086
|
jsonResponse: {
|
|
@@ -1207,7 +1213,12 @@ export interface Routes {
|
|
|
1207
1213
|
created_at: string
|
|
1208
1214
|
display_name: string
|
|
1209
1215
|
external_type?:
|
|
1210
|
-
| (
|
|
1216
|
+
| (
|
|
1217
|
+
| 'pti_user'
|
|
1218
|
+
| 'brivo_user'
|
|
1219
|
+
| 'hid_credential_manager_user'
|
|
1220
|
+
| 'salto_site_user'
|
|
1221
|
+
)
|
|
1211
1222
|
| undefined
|
|
1212
1223
|
external_type_display_name?: string | undefined
|
|
1213
1224
|
is_suspended: boolean
|
|
@@ -1254,7 +1265,12 @@ export interface Routes {
|
|
|
1254
1265
|
created_at: string
|
|
1255
1266
|
display_name: string
|
|
1256
1267
|
external_type?:
|
|
1257
|
-
| (
|
|
1268
|
+
| (
|
|
1269
|
+
| 'pti_user'
|
|
1270
|
+
| 'brivo_user'
|
|
1271
|
+
| 'hid_credential_manager_user'
|
|
1272
|
+
| 'salto_site_user'
|
|
1273
|
+
)
|
|
1258
1274
|
| undefined
|
|
1259
1275
|
external_type_display_name?: string | undefined
|
|
1260
1276
|
is_suspended: boolean
|
|
@@ -1290,7 +1306,12 @@ export interface Routes {
|
|
|
1290
1306
|
created_at: string
|
|
1291
1307
|
display_name: string
|
|
1292
1308
|
external_type?:
|
|
1293
|
-
| (
|
|
1309
|
+
| (
|
|
1310
|
+
| 'pti_user'
|
|
1311
|
+
| 'brivo_user'
|
|
1312
|
+
| 'hid_credential_manager_user'
|
|
1313
|
+
| 'salto_site_user'
|
|
1314
|
+
)
|
|
1294
1315
|
| undefined
|
|
1295
1316
|
external_type_display_name?: string | undefined
|
|
1296
1317
|
is_suspended: boolean
|
|
@@ -7638,6 +7659,7 @@ export interface Routes {
|
|
|
7638
7659
|
nfc_capability?: boolean
|
|
7639
7660
|
application_version?: string
|
|
7640
7661
|
seos_applet_version?: string
|
|
7662
|
+
seos_tsm_endpoint_id?: number
|
|
7641
7663
|
}
|
|
7642
7664
|
}
|
|
7643
7665
|
commonParams: {}
|
|
@@ -10804,7 +10826,12 @@ export interface Routes {
|
|
|
10804
10826
|
created_at: string
|
|
10805
10827
|
display_name: string
|
|
10806
10828
|
external_type?:
|
|
10807
|
-
| (
|
|
10829
|
+
| (
|
|
10830
|
+
| 'pti_user'
|
|
10831
|
+
| 'brivo_user'
|
|
10832
|
+
| 'hid_credential_manager_user'
|
|
10833
|
+
| 'salto_site_user'
|
|
10834
|
+
)
|
|
10808
10835
|
| undefined
|
|
10809
10836
|
external_type_display_name?: string | undefined
|
|
10810
10837
|
is_suspended: boolean
|