@seamapi/types 1.40.0 → 1.41.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.
- package/dist/connect.cjs +55 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +57 -4
- package/lib/seam/connect/openapi.d.ts +47 -0
- package/lib/seam/connect/openapi.js +49 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +49 -4
- package/src/lib/seam/connect/route-types.ts +10 -4
|
@@ -986,6 +986,7 @@ export interface Routes {
|
|
|
986
986
|
user_identifier_key?: string | undefined;
|
|
987
987
|
connect_webview_ids?: string[] | undefined;
|
|
988
988
|
connected_account_ids?: string[] | undefined;
|
|
989
|
+
user_identity_ids?: string[] | undefined;
|
|
989
990
|
expires_at?: Date | undefined;
|
|
990
991
|
};
|
|
991
992
|
commonParams: {};
|
|
@@ -1030,6 +1031,7 @@ export interface Routes {
|
|
|
1030
1031
|
device_count: number;
|
|
1031
1032
|
connected_account_ids: string[];
|
|
1032
1033
|
connect_webview_ids: string[];
|
|
1034
|
+
user_identity_ids: string[];
|
|
1033
1035
|
workspace_id: string;
|
|
1034
1036
|
};
|
|
1035
1037
|
};
|
|
@@ -1042,6 +1044,7 @@ export interface Routes {
|
|
|
1042
1044
|
user_identifier_key?: string | undefined;
|
|
1043
1045
|
connect_webview_ids?: string[] | undefined;
|
|
1044
1046
|
connected_account_ids?: string[] | undefined;
|
|
1047
|
+
user_identity_ids?: string[] | undefined;
|
|
1045
1048
|
expires_at?: Date | undefined;
|
|
1046
1049
|
};
|
|
1047
1050
|
commonParams: {};
|
|
@@ -1066,6 +1069,7 @@ export interface Routes {
|
|
|
1066
1069
|
user_identifier_key?: string | undefined;
|
|
1067
1070
|
connected_account_ids?: string[] | undefined;
|
|
1068
1071
|
connect_webview_ids?: string[] | undefined;
|
|
1072
|
+
user_identity_ids?: string[] | undefined;
|
|
1069
1073
|
};
|
|
1070
1074
|
formData: {};
|
|
1071
1075
|
jsonResponse: {
|
|
@@ -1077,6 +1081,7 @@ export interface Routes {
|
|
|
1077
1081
|
device_count: number;
|
|
1078
1082
|
connected_account_ids: string[];
|
|
1079
1083
|
connect_webview_ids: string[];
|
|
1084
|
+
user_identity_ids: string[];
|
|
1080
1085
|
workspace_id: string;
|
|
1081
1086
|
};
|
|
1082
1087
|
};
|
|
@@ -1101,6 +1106,7 @@ export interface Routes {
|
|
|
1101
1106
|
device_count: number;
|
|
1102
1107
|
connected_account_ids: string[];
|
|
1103
1108
|
connect_webview_ids: string[];
|
|
1109
|
+
user_identity_ids: string[];
|
|
1104
1110
|
workspace_id: string;
|
|
1105
1111
|
}>;
|
|
1106
1112
|
};
|
|
@@ -1719,7 +1725,7 @@ export interface Routes {
|
|
|
1719
1725
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
1720
1726
|
device_ids?: string[] | undefined;
|
|
1721
1727
|
limit?: number;
|
|
1722
|
-
created_before?:
|
|
1728
|
+
created_before?: Date | undefined;
|
|
1723
1729
|
user_identifier_key?: string | undefined;
|
|
1724
1730
|
};
|
|
1725
1731
|
formData: {};
|
|
@@ -2188,7 +2194,7 @@ export interface Routes {
|
|
|
2188
2194
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
2189
2195
|
device_ids?: string[] | undefined;
|
|
2190
2196
|
limit?: number;
|
|
2191
|
-
created_before?:
|
|
2197
|
+
created_before?: Date | undefined;
|
|
2192
2198
|
user_identifier_key?: string | undefined;
|
|
2193
2199
|
};
|
|
2194
2200
|
formData: {};
|
|
@@ -2408,7 +2414,7 @@ export interface Routes {
|
|
|
2408
2414
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
2409
2415
|
device_ids?: string[] | undefined;
|
|
2410
2416
|
limit?: number;
|
|
2411
|
-
created_before?:
|
|
2417
|
+
created_before?: Date | undefined;
|
|
2412
2418
|
user_identifier_key?: string | undefined;
|
|
2413
2419
|
};
|
|
2414
2420
|
formData: {};
|
|
@@ -3270,7 +3276,7 @@ export interface Routes {
|
|
|
3270
3276
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
3271
3277
|
device_ids?: string[] | undefined;
|
|
3272
3278
|
limit?: number;
|
|
3273
|
-
created_before?:
|
|
3279
|
+
created_before?: Date | undefined;
|
|
3274
3280
|
user_identifier_key?: string | undefined;
|
|
3275
3281
|
};
|
|
3276
3282
|
formData: {};
|
package/package.json
CHANGED
|
@@ -226,6 +226,10 @@ export default {
|
|
|
226
226
|
device_count: { type: 'number' },
|
|
227
227
|
token: { type: 'string' },
|
|
228
228
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
229
|
+
user_identity_ids: {
|
|
230
|
+
items: { format: 'uuid', type: 'string' },
|
|
231
|
+
type: 'array',
|
|
232
|
+
},
|
|
229
233
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
230
234
|
},
|
|
231
235
|
required: [
|
|
@@ -236,6 +240,7 @@ export default {
|
|
|
236
240
|
'device_count',
|
|
237
241
|
'connected_account_ids',
|
|
238
242
|
'connect_webview_ids',
|
|
243
|
+
'user_identity_ids',
|
|
239
244
|
'workspace_id',
|
|
240
245
|
],
|
|
241
246
|
type: 'object',
|
|
@@ -4043,6 +4048,10 @@ export default {
|
|
|
4043
4048
|
type: 'string',
|
|
4044
4049
|
},
|
|
4045
4050
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4051
|
+
user_identity_ids: {
|
|
4052
|
+
items: { type: 'string' },
|
|
4053
|
+
type: 'array',
|
|
4054
|
+
},
|
|
4046
4055
|
},
|
|
4047
4056
|
type: 'object',
|
|
4048
4057
|
},
|
|
@@ -4097,6 +4106,10 @@ export default {
|
|
|
4097
4106
|
type: 'string',
|
|
4098
4107
|
},
|
|
4099
4108
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4109
|
+
user_identity_ids: {
|
|
4110
|
+
items: { type: 'string' },
|
|
4111
|
+
type: 'array',
|
|
4112
|
+
},
|
|
4100
4113
|
},
|
|
4101
4114
|
type: 'object',
|
|
4102
4115
|
},
|
|
@@ -4243,6 +4256,10 @@ export default {
|
|
|
4243
4256
|
type: 'string',
|
|
4244
4257
|
},
|
|
4245
4258
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4259
|
+
user_identity_ids: {
|
|
4260
|
+
items: { type: 'string' },
|
|
4261
|
+
type: 'array',
|
|
4262
|
+
},
|
|
4246
4263
|
},
|
|
4247
4264
|
type: 'object',
|
|
4248
4265
|
},
|
|
@@ -4297,6 +4314,10 @@ export default {
|
|
|
4297
4314
|
type: 'string',
|
|
4298
4315
|
},
|
|
4299
4316
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
4317
|
+
user_identity_ids: {
|
|
4318
|
+
items: { type: 'string' },
|
|
4319
|
+
type: 'array',
|
|
4320
|
+
},
|
|
4300
4321
|
},
|
|
4301
4322
|
type: 'object',
|
|
4302
4323
|
},
|
|
@@ -4347,6 +4368,10 @@ export default {
|
|
|
4347
4368
|
type: 'array',
|
|
4348
4369
|
},
|
|
4349
4370
|
user_identifier_key: { type: 'string' },
|
|
4371
|
+
user_identity_ids: {
|
|
4372
|
+
items: { type: 'string' },
|
|
4373
|
+
type: 'array',
|
|
4374
|
+
},
|
|
4350
4375
|
},
|
|
4351
4376
|
type: 'object',
|
|
4352
4377
|
},
|
|
@@ -4400,6 +4425,10 @@ export default {
|
|
|
4400
4425
|
type: 'array',
|
|
4401
4426
|
},
|
|
4402
4427
|
user_identifier_key: { type: 'string' },
|
|
4428
|
+
user_identity_ids: {
|
|
4429
|
+
items: { type: 'string' },
|
|
4430
|
+
type: 'array',
|
|
4431
|
+
},
|
|
4403
4432
|
},
|
|
4404
4433
|
type: 'object',
|
|
4405
4434
|
},
|
|
@@ -5090,7 +5119,11 @@ export default {
|
|
|
5090
5119
|
items: { format: 'uuid', type: 'string' },
|
|
5091
5120
|
type: 'array',
|
|
5092
5121
|
},
|
|
5093
|
-
created_before: {
|
|
5122
|
+
created_before: {
|
|
5123
|
+
format: 'date-time',
|
|
5124
|
+
nullable: true,
|
|
5125
|
+
type: 'string',
|
|
5126
|
+
},
|
|
5094
5127
|
device_ids: {
|
|
5095
5128
|
items: { format: 'uuid', type: 'string' },
|
|
5096
5129
|
type: 'array',
|
|
@@ -5399,7 +5432,11 @@ export default {
|
|
|
5399
5432
|
items: { format: 'uuid', type: 'string' },
|
|
5400
5433
|
type: 'array',
|
|
5401
5434
|
},
|
|
5402
|
-
created_before: {
|
|
5435
|
+
created_before: {
|
|
5436
|
+
format: 'date-time',
|
|
5437
|
+
nullable: true,
|
|
5438
|
+
type: 'string',
|
|
5439
|
+
},
|
|
5403
5440
|
device_ids: {
|
|
5404
5441
|
items: { format: 'uuid', type: 'string' },
|
|
5405
5442
|
type: 'array',
|
|
@@ -6200,7 +6237,11 @@ export default {
|
|
|
6200
6237
|
items: { format: 'uuid', type: 'string' },
|
|
6201
6238
|
type: 'array',
|
|
6202
6239
|
},
|
|
6203
|
-
created_before: {
|
|
6240
|
+
created_before: {
|
|
6241
|
+
format: 'date-time',
|
|
6242
|
+
nullable: true,
|
|
6243
|
+
type: 'string',
|
|
6244
|
+
},
|
|
6204
6245
|
device_ids: {
|
|
6205
6246
|
items: { format: 'uuid', type: 'string' },
|
|
6206
6247
|
type: 'array',
|
|
@@ -7550,7 +7591,11 @@ export default {
|
|
|
7550
7591
|
items: { format: 'uuid', type: 'string' },
|
|
7551
7592
|
type: 'array',
|
|
7552
7593
|
},
|
|
7553
|
-
created_before: {
|
|
7594
|
+
created_before: {
|
|
7595
|
+
format: 'date-time',
|
|
7596
|
+
nullable: true,
|
|
7597
|
+
type: 'string',
|
|
7598
|
+
},
|
|
7554
7599
|
device_ids: {
|
|
7555
7600
|
items: { format: 'uuid', type: 'string' },
|
|
7556
7601
|
type: 'array',
|
|
@@ -1032,6 +1032,7 @@ export interface Routes {
|
|
|
1032
1032
|
user_identifier_key?: string | undefined
|
|
1033
1033
|
connect_webview_ids?: string[] | undefined
|
|
1034
1034
|
connected_account_ids?: string[] | undefined
|
|
1035
|
+
user_identity_ids?: string[] | undefined
|
|
1035
1036
|
expires_at?: Date | undefined
|
|
1036
1037
|
}
|
|
1037
1038
|
commonParams: {}
|
|
@@ -1076,6 +1077,7 @@ export interface Routes {
|
|
|
1076
1077
|
device_count: number
|
|
1077
1078
|
connected_account_ids: string[]
|
|
1078
1079
|
connect_webview_ids: string[]
|
|
1080
|
+
user_identity_ids: string[]
|
|
1079
1081
|
workspace_id: string
|
|
1080
1082
|
}
|
|
1081
1083
|
}
|
|
@@ -1088,6 +1090,7 @@ export interface Routes {
|
|
|
1088
1090
|
user_identifier_key?: string | undefined
|
|
1089
1091
|
connect_webview_ids?: string[] | undefined
|
|
1090
1092
|
connected_account_ids?: string[] | undefined
|
|
1093
|
+
user_identity_ids?: string[] | undefined
|
|
1091
1094
|
expires_at?: Date | undefined
|
|
1092
1095
|
}
|
|
1093
1096
|
commonParams: {}
|
|
@@ -1112,6 +1115,7 @@ export interface Routes {
|
|
|
1112
1115
|
user_identifier_key?: string | undefined
|
|
1113
1116
|
connected_account_ids?: string[] | undefined
|
|
1114
1117
|
connect_webview_ids?: string[] | undefined
|
|
1118
|
+
user_identity_ids?: string[] | undefined
|
|
1115
1119
|
}
|
|
1116
1120
|
formData: {}
|
|
1117
1121
|
jsonResponse: {
|
|
@@ -1123,6 +1127,7 @@ export interface Routes {
|
|
|
1123
1127
|
device_count: number
|
|
1124
1128
|
connected_account_ids: string[]
|
|
1125
1129
|
connect_webview_ids: string[]
|
|
1130
|
+
user_identity_ids: string[]
|
|
1126
1131
|
workspace_id: string
|
|
1127
1132
|
}
|
|
1128
1133
|
}
|
|
@@ -1147,6 +1152,7 @@ export interface Routes {
|
|
|
1147
1152
|
device_count: number
|
|
1148
1153
|
connected_account_ids: string[]
|
|
1149
1154
|
connect_webview_ids: string[]
|
|
1155
|
+
user_identity_ids: string[]
|
|
1150
1156
|
workspace_id: string
|
|
1151
1157
|
}>
|
|
1152
1158
|
}
|
|
@@ -2102,7 +2108,7 @@ export interface Routes {
|
|
|
2102
2108
|
| undefined
|
|
2103
2109
|
device_ids?: string[] | undefined
|
|
2104
2110
|
limit?: number
|
|
2105
|
-
created_before?:
|
|
2111
|
+
created_before?: Date | undefined
|
|
2106
2112
|
user_identifier_key?: string | undefined
|
|
2107
2113
|
}
|
|
2108
2114
|
formData: {}
|
|
@@ -2890,7 +2896,7 @@ export interface Routes {
|
|
|
2890
2896
|
| undefined
|
|
2891
2897
|
device_ids?: string[] | undefined
|
|
2892
2898
|
limit?: number
|
|
2893
|
-
created_before?:
|
|
2899
|
+
created_before?: Date | undefined
|
|
2894
2900
|
user_identifier_key?: string | undefined
|
|
2895
2901
|
}
|
|
2896
2902
|
formData: {}
|
|
@@ -3336,7 +3342,7 @@ export interface Routes {
|
|
|
3336
3342
|
| undefined
|
|
3337
3343
|
device_ids?: string[] | undefined
|
|
3338
3344
|
limit?: number
|
|
3339
|
-
created_before?:
|
|
3345
|
+
created_before?: Date | undefined
|
|
3340
3346
|
user_identifier_key?: string | undefined
|
|
3341
3347
|
}
|
|
3342
3348
|
formData: {}
|
|
@@ -4501,7 +4507,7 @@ export interface Routes {
|
|
|
4501
4507
|
| undefined
|
|
4502
4508
|
device_ids?: string[] | undefined
|
|
4503
4509
|
limit?: number
|
|
4504
|
-
created_before?:
|
|
4510
|
+
created_before?: Date | undefined
|
|
4505
4511
|
user_identifier_key?: string | undefined
|
|
4506
4512
|
}
|
|
4507
4513
|
formData: {}
|