@seamapi/types 1.332.0 → 1.333.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 +1578 -318
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3297 -472
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +902 -35
- package/lib/seam/connect/models/access-codes/managed-access-code.js +238 -6
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +568 -25
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +85 -23
- package/lib/seam/connect/models/connected-accounts/connected-account.js +27 -9
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +28 -7
- package/lib/seam/connect/models/devices/phone.d.ts +28 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +28 -7
- package/lib/seam/connect/models/events/acs/{access_groups.js → access-groups.js} +1 -1
- package/lib/seam/connect/models/events/acs/{access_groups.js.map → access-groups.js.map} +1 -1
- package/lib/seam/connect/models/events/acs/index.js +1 -1
- package/lib/seam/connect/models/events/index.d.ts +1 -0
- package/lib/seam/connect/models/events/index.js +1 -0
- package/lib/seam/connect/models/events/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -0
- package/lib/seam/connect/models/events/seam-event.js +2 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +174 -164
- package/lib/seam/connect/openapi.js +1331 -205
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1539 -210
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +282 -7
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +32 -9
- package/src/lib/seam/connect/models/events/acs/index.ts +1 -1
- package/src/lib/seam/connect/models/events/index.ts +1 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +1452 -229
- package/src/lib/seam/connect/route-types.ts +2349 -654
- /package/lib/seam/connect/models/events/acs/{access_groups.d.ts → access-groups.d.ts} +0 -0
- /package/src/lib/seam/connect/models/events/acs/{access_groups.ts → access-groups.ts} +0 -0
|
@@ -38,23 +38,26 @@ declare const _default: {
|
|
|
38
38
|
description: string;
|
|
39
39
|
items: {
|
|
40
40
|
oneOf: ({
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
41
|
+
oneOf: {
|
|
42
|
+
description: string;
|
|
43
|
+
properties: {
|
|
44
|
+
error_code: {
|
|
45
|
+
description: string;
|
|
46
|
+
enum: string[];
|
|
47
|
+
type: string;
|
|
48
|
+
};
|
|
49
|
+
is_access_code_error: {
|
|
50
|
+
enum: boolean[];
|
|
51
|
+
type: string;
|
|
52
|
+
};
|
|
53
|
+
message: {
|
|
54
|
+
type: string;
|
|
55
|
+
};
|
|
51
56
|
};
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
type: string;
|
|
57
|
+
required: string[];
|
|
58
|
+
type: string;
|
|
59
|
+
}[];
|
|
56
60
|
description?: never;
|
|
57
|
-
oneOf?: never;
|
|
58
61
|
} | {
|
|
59
62
|
description: string;
|
|
60
63
|
oneOf: {
|
|
@@ -76,27 +79,27 @@ declare const _default: {
|
|
|
76
79
|
required: string[];
|
|
77
80
|
type: string;
|
|
78
81
|
}[];
|
|
79
|
-
properties?: never;
|
|
80
|
-
required?: never;
|
|
81
|
-
type?: never;
|
|
82
82
|
} | {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
83
|
+
oneOf: {
|
|
84
|
+
description: string;
|
|
85
|
+
properties: {
|
|
86
|
+
error_code: {
|
|
87
|
+
description: string;
|
|
88
|
+
enum: string[];
|
|
89
|
+
type: string;
|
|
90
|
+
};
|
|
91
|
+
is_connected_account_error: {
|
|
92
|
+
enum: boolean[];
|
|
93
|
+
type: string;
|
|
94
|
+
};
|
|
95
|
+
message: {
|
|
96
|
+
type: string;
|
|
97
|
+
};
|
|
93
98
|
};
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
type: string;
|
|
99
|
+
required: string[];
|
|
100
|
+
type: string;
|
|
101
|
+
}[];
|
|
98
102
|
description?: never;
|
|
99
|
-
oneOf?: never;
|
|
100
103
|
})[];
|
|
101
104
|
};
|
|
102
105
|
type: string;
|
|
@@ -164,16 +167,21 @@ declare const _default: {
|
|
|
164
167
|
warnings: {
|
|
165
168
|
description: string;
|
|
166
169
|
items: {
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
170
|
+
oneOf: {
|
|
171
|
+
description: string;
|
|
172
|
+
properties: {
|
|
173
|
+
message: {
|
|
174
|
+
type: string;
|
|
175
|
+
};
|
|
176
|
+
warning_code: {
|
|
177
|
+
description: string;
|
|
178
|
+
enum: string[];
|
|
179
|
+
type: string;
|
|
180
|
+
};
|
|
173
181
|
};
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
182
|
+
required: string[];
|
|
183
|
+
type: string;
|
|
184
|
+
}[];
|
|
177
185
|
};
|
|
178
186
|
type: string;
|
|
179
187
|
};
|
|
@@ -2208,20 +2216,25 @@ declare const _default: {
|
|
|
2208
2216
|
};
|
|
2209
2217
|
errors: {
|
|
2210
2218
|
items: {
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2219
|
+
oneOf: {
|
|
2220
|
+
description: string;
|
|
2221
|
+
properties: {
|
|
2222
|
+
error_code: {
|
|
2223
|
+
description: string;
|
|
2224
|
+
enum: string[];
|
|
2225
|
+
type: string;
|
|
2226
|
+
};
|
|
2227
|
+
is_connected_account_error: {
|
|
2228
|
+
enum: boolean[];
|
|
2229
|
+
type: string;
|
|
2230
|
+
};
|
|
2231
|
+
message: {
|
|
2232
|
+
type: string;
|
|
2233
|
+
};
|
|
2221
2234
|
};
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2235
|
+
required: string[];
|
|
2236
|
+
type: string;
|
|
2237
|
+
}[];
|
|
2225
2238
|
};
|
|
2226
2239
|
type: string;
|
|
2227
2240
|
};
|
|
@@ -2248,21 +2261,7 @@ declare const _default: {
|
|
|
2248
2261
|
warnings: {
|
|
2249
2262
|
items: {
|
|
2250
2263
|
description: string;
|
|
2251
|
-
oneOf:
|
|
2252
|
-
properties: {
|
|
2253
|
-
message: {
|
|
2254
|
-
type: string;
|
|
2255
|
-
};
|
|
2256
|
-
warning_code: {
|
|
2257
|
-
type: string;
|
|
2258
|
-
description?: never;
|
|
2259
|
-
enum?: never;
|
|
2260
|
-
};
|
|
2261
|
-
};
|
|
2262
|
-
required: string[];
|
|
2263
|
-
type: string;
|
|
2264
|
-
description?: never;
|
|
2265
|
-
} | {
|
|
2264
|
+
oneOf: {
|
|
2266
2265
|
description: string;
|
|
2267
2266
|
properties: {
|
|
2268
2267
|
message: {
|
|
@@ -2276,7 +2275,7 @@ declare const _default: {
|
|
|
2276
2275
|
};
|
|
2277
2276
|
required: string[];
|
|
2278
2277
|
type: string;
|
|
2279
|
-
}
|
|
2278
|
+
}[];
|
|
2280
2279
|
};
|
|
2281
2280
|
type: string;
|
|
2282
2281
|
};
|
|
@@ -2386,26 +2385,27 @@ declare const _default: {
|
|
|
2386
2385
|
required: string[];
|
|
2387
2386
|
type: string;
|
|
2388
2387
|
}[];
|
|
2389
|
-
properties?: never;
|
|
2390
|
-
required?: never;
|
|
2391
|
-
type?: never;
|
|
2392
2388
|
} | {
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2389
|
+
oneOf: {
|
|
2390
|
+
description: string;
|
|
2391
|
+
properties: {
|
|
2392
|
+
error_code: {
|
|
2393
|
+
description: string;
|
|
2394
|
+
enum: string[];
|
|
2395
|
+
type: string;
|
|
2396
|
+
};
|
|
2397
|
+
is_connected_account_error: {
|
|
2398
|
+
enum: boolean[];
|
|
2399
|
+
type: string;
|
|
2400
|
+
};
|
|
2401
|
+
message: {
|
|
2402
|
+
type: string;
|
|
2403
|
+
};
|
|
2403
2404
|
};
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2405
|
+
required: string[];
|
|
2406
|
+
type: string;
|
|
2407
|
+
}[];
|
|
2407
2408
|
description?: never;
|
|
2408
|
-
oneOf?: never;
|
|
2409
2409
|
})[];
|
|
2410
2410
|
};
|
|
2411
2411
|
type: string;
|
|
@@ -6669,26 +6669,27 @@ declare const _default: {
|
|
|
6669
6669
|
required: string[];
|
|
6670
6670
|
type: string;
|
|
6671
6671
|
}[];
|
|
6672
|
-
properties?: never;
|
|
6673
|
-
required?: never;
|
|
6674
|
-
type?: never;
|
|
6675
6672
|
} | {
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6673
|
+
oneOf: {
|
|
6674
|
+
description: string;
|
|
6675
|
+
properties: {
|
|
6676
|
+
error_code: {
|
|
6677
|
+
description: string;
|
|
6678
|
+
enum: string[];
|
|
6679
|
+
type: string;
|
|
6680
|
+
};
|
|
6681
|
+
is_connected_account_error: {
|
|
6682
|
+
enum: boolean[];
|
|
6683
|
+
type: string;
|
|
6684
|
+
};
|
|
6685
|
+
message: {
|
|
6686
|
+
type: string;
|
|
6687
|
+
};
|
|
6686
6688
|
};
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6689
|
+
required: string[];
|
|
6690
|
+
type: string;
|
|
6691
|
+
}[];
|
|
6690
6692
|
description?: never;
|
|
6691
|
-
oneOf?: never;
|
|
6692
6693
|
})[];
|
|
6693
6694
|
};
|
|
6694
6695
|
type: string;
|
|
@@ -6893,23 +6894,26 @@ declare const _default: {
|
|
|
6893
6894
|
description: string;
|
|
6894
6895
|
items: {
|
|
6895
6896
|
oneOf: ({
|
|
6896
|
-
|
|
6897
|
-
|
|
6898
|
-
|
|
6899
|
-
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
|
|
6904
|
-
|
|
6905
|
-
|
|
6897
|
+
oneOf: {
|
|
6898
|
+
description: string;
|
|
6899
|
+
properties: {
|
|
6900
|
+
error_code: {
|
|
6901
|
+
description: string;
|
|
6902
|
+
enum: string[];
|
|
6903
|
+
type: string;
|
|
6904
|
+
};
|
|
6905
|
+
is_access_code_error: {
|
|
6906
|
+
enum: boolean[];
|
|
6907
|
+
type: string;
|
|
6908
|
+
};
|
|
6909
|
+
message: {
|
|
6910
|
+
type: string;
|
|
6911
|
+
};
|
|
6906
6912
|
};
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
type: string;
|
|
6913
|
+
required: string[];
|
|
6914
|
+
type: string;
|
|
6915
|
+
}[];
|
|
6911
6916
|
description?: never;
|
|
6912
|
-
oneOf?: never;
|
|
6913
6917
|
} | {
|
|
6914
6918
|
description: string;
|
|
6915
6919
|
oneOf: {
|
|
@@ -6931,27 +6935,27 @@ declare const _default: {
|
|
|
6931
6935
|
required: string[];
|
|
6932
6936
|
type: string;
|
|
6933
6937
|
}[];
|
|
6934
|
-
properties?: never;
|
|
6935
|
-
required?: never;
|
|
6936
|
-
type?: never;
|
|
6937
6938
|
} | {
|
|
6938
|
-
|
|
6939
|
-
|
|
6940
|
-
|
|
6941
|
-
|
|
6942
|
-
|
|
6943
|
-
|
|
6944
|
-
|
|
6945
|
-
|
|
6946
|
-
|
|
6947
|
-
|
|
6939
|
+
oneOf: {
|
|
6940
|
+
description: string;
|
|
6941
|
+
properties: {
|
|
6942
|
+
error_code: {
|
|
6943
|
+
description: string;
|
|
6944
|
+
enum: string[];
|
|
6945
|
+
type: string;
|
|
6946
|
+
};
|
|
6947
|
+
is_connected_account_error: {
|
|
6948
|
+
enum: boolean[];
|
|
6949
|
+
type: string;
|
|
6950
|
+
};
|
|
6951
|
+
message: {
|
|
6952
|
+
type: string;
|
|
6953
|
+
};
|
|
6948
6954
|
};
|
|
6949
|
-
|
|
6950
|
-
|
|
6951
|
-
|
|
6952
|
-
type: string;
|
|
6955
|
+
required: string[];
|
|
6956
|
+
type: string;
|
|
6957
|
+
}[];
|
|
6953
6958
|
description?: never;
|
|
6954
|
-
oneOf?: never;
|
|
6955
6959
|
})[];
|
|
6956
6960
|
};
|
|
6957
6961
|
type: string;
|
|
@@ -6983,16 +6987,21 @@ declare const _default: {
|
|
|
6983
6987
|
warnings: {
|
|
6984
6988
|
description: string;
|
|
6985
6989
|
items: {
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6990
|
+
oneOf: {
|
|
6991
|
+
description: string;
|
|
6992
|
+
properties: {
|
|
6993
|
+
message: {
|
|
6994
|
+
type: string;
|
|
6995
|
+
};
|
|
6996
|
+
warning_code: {
|
|
6997
|
+
description: string;
|
|
6998
|
+
enum: string[];
|
|
6999
|
+
type: string;
|
|
7000
|
+
};
|
|
6992
7001
|
};
|
|
6993
|
-
|
|
6994
|
-
|
|
6995
|
-
|
|
7002
|
+
required: string[];
|
|
7003
|
+
type: string;
|
|
7004
|
+
}[];
|
|
6996
7005
|
};
|
|
6997
7006
|
type: string;
|
|
6998
7007
|
};
|
|
@@ -7090,26 +7099,27 @@ declare const _default: {
|
|
|
7090
7099
|
required: string[];
|
|
7091
7100
|
type: string;
|
|
7092
7101
|
}[];
|
|
7093
|
-
properties?: never;
|
|
7094
|
-
required?: never;
|
|
7095
|
-
type?: never;
|
|
7096
7102
|
} | {
|
|
7097
|
-
|
|
7098
|
-
|
|
7099
|
-
|
|
7100
|
-
|
|
7101
|
-
|
|
7102
|
-
|
|
7103
|
-
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
|
|
7103
|
+
oneOf: {
|
|
7104
|
+
description: string;
|
|
7105
|
+
properties: {
|
|
7106
|
+
error_code: {
|
|
7107
|
+
description: string;
|
|
7108
|
+
enum: string[];
|
|
7109
|
+
type: string;
|
|
7110
|
+
};
|
|
7111
|
+
is_connected_account_error: {
|
|
7112
|
+
enum: boolean[];
|
|
7113
|
+
type: string;
|
|
7114
|
+
};
|
|
7115
|
+
message: {
|
|
7116
|
+
type: string;
|
|
7117
|
+
};
|
|
7107
7118
|
};
|
|
7108
|
-
|
|
7109
|
-
|
|
7110
|
-
|
|
7119
|
+
required: string[];
|
|
7120
|
+
type: string;
|
|
7121
|
+
}[];
|
|
7111
7122
|
description?: never;
|
|
7112
|
-
oneOf?: never;
|
|
7113
7123
|
})[];
|
|
7114
7124
|
};
|
|
7115
7125
|
type: string;
|