@seamapi/types 1.25.0 → 1.26.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 +10 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +35 -0
- package/lib/seam/connect/openapi.d.ts +30 -0
- package/lib/seam/connect/openapi.js +10 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
|
@@ -15,6 +15,7 @@ export interface Routes {
|
|
|
15
15
|
prefer_native_scheduling?: boolean | undefined;
|
|
16
16
|
use_backup_access_code_pool?: boolean | undefined;
|
|
17
17
|
allow_external_modification?: boolean | undefined;
|
|
18
|
+
is_external_modification_allowed?: boolean | undefined;
|
|
18
19
|
};
|
|
19
20
|
commonParams: {};
|
|
20
21
|
formData: {};
|
|
@@ -79,6 +80,7 @@ export interface Routes {
|
|
|
79
80
|
prefer_native_scheduling?: boolean | undefined;
|
|
80
81
|
use_backup_access_code_pool?: boolean | undefined;
|
|
81
82
|
allow_external_modification?: boolean | undefined;
|
|
83
|
+
is_external_modification_allowed?: boolean | undefined;
|
|
82
84
|
};
|
|
83
85
|
commonParams: {};
|
|
84
86
|
formData: {};
|
|
@@ -301,6 +303,7 @@ export interface Routes {
|
|
|
301
303
|
jsonBody: {};
|
|
302
304
|
commonParams: {
|
|
303
305
|
access_code_id: string;
|
|
306
|
+
is_external_modification_allowed?: boolean | undefined;
|
|
304
307
|
allow_external_modification?: boolean | undefined;
|
|
305
308
|
force?: boolean | undefined;
|
|
306
309
|
sync?: boolean;
|
|
@@ -407,6 +410,7 @@ export interface Routes {
|
|
|
407
410
|
access_code_id: string;
|
|
408
411
|
is_managed: boolean;
|
|
409
412
|
allow_external_modification?: boolean | undefined;
|
|
413
|
+
is_external_modification_allowed?: boolean | undefined;
|
|
410
414
|
force?: boolean | undefined;
|
|
411
415
|
};
|
|
412
416
|
formData: {};
|
|
@@ -426,6 +430,7 @@ export interface Routes {
|
|
|
426
430
|
prefer_native_scheduling?: boolean | undefined;
|
|
427
431
|
use_backup_access_code_pool?: boolean | undefined;
|
|
428
432
|
allow_external_modification?: boolean | undefined;
|
|
433
|
+
is_external_modification_allowed?: boolean | undefined;
|
|
429
434
|
access_code_id: string;
|
|
430
435
|
device_id?: string | undefined;
|
|
431
436
|
type?: ('ongoing' | 'time_bound') | undefined;
|
package/package.json
CHANGED
|
@@ -1520,6 +1520,7 @@ export default {
|
|
|
1520
1520
|
common_code_key: { type: 'string' },
|
|
1521
1521
|
device_id: { format: 'uuid', type: 'string' },
|
|
1522
1522
|
ends_at: { type: 'string' },
|
|
1523
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
1523
1524
|
name: { type: 'string' },
|
|
1524
1525
|
prefer_native_scheduling: { type: 'boolean' },
|
|
1525
1526
|
starts_at: { type: 'string' },
|
|
@@ -1595,6 +1596,7 @@ export default {
|
|
|
1595
1596
|
type: 'array',
|
|
1596
1597
|
},
|
|
1597
1598
|
ends_at: { type: 'string' },
|
|
1599
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
1598
1600
|
name: { type: 'string' },
|
|
1599
1601
|
prefer_native_scheduling: { type: 'boolean' },
|
|
1600
1602
|
starts_at: { type: 'string' },
|
|
@@ -1667,6 +1669,7 @@ export default {
|
|
|
1667
1669
|
type: 'array',
|
|
1668
1670
|
},
|
|
1669
1671
|
ends_at: { type: 'string' },
|
|
1672
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
1670
1673
|
name: { type: 'string' },
|
|
1671
1674
|
prefer_native_scheduling: { type: 'boolean' },
|
|
1672
1675
|
starts_at: { type: 'string' },
|
|
@@ -2091,6 +2094,7 @@ export default {
|
|
|
2091
2094
|
access_code_id: { format: 'uuid', type: 'string' },
|
|
2092
2095
|
allow_external_modification: { type: 'boolean' },
|
|
2093
2096
|
force: { type: 'boolean' },
|
|
2097
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2094
2098
|
sync: { default: false, type: 'boolean' },
|
|
2095
2099
|
},
|
|
2096
2100
|
required: ['access_code_id'],
|
|
@@ -2134,6 +2138,7 @@ export default {
|
|
|
2134
2138
|
access_code_id: { format: 'uuid', type: 'string' },
|
|
2135
2139
|
allow_external_modification: { type: 'boolean' },
|
|
2136
2140
|
force: { type: 'boolean' },
|
|
2141
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2137
2142
|
sync: { default: false, type: 'boolean' },
|
|
2138
2143
|
},
|
|
2139
2144
|
required: ['access_code_id'],
|
|
@@ -2407,6 +2412,7 @@ export default {
|
|
|
2407
2412
|
access_code_id: { format: 'uuid', type: 'string' },
|
|
2408
2413
|
allow_external_modification: { type: 'boolean' },
|
|
2409
2414
|
force: { type: 'boolean' },
|
|
2415
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2410
2416
|
is_managed: { type: 'boolean' },
|
|
2411
2417
|
},
|
|
2412
2418
|
required: ['access_code_id', 'is_managed'],
|
|
@@ -2450,6 +2456,7 @@ export default {
|
|
|
2450
2456
|
access_code_id: { format: 'uuid', type: 'string' },
|
|
2451
2457
|
allow_external_modification: { type: 'boolean' },
|
|
2452
2458
|
force: { type: 'boolean' },
|
|
2459
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2453
2460
|
is_managed: { type: 'boolean' },
|
|
2454
2461
|
},
|
|
2455
2462
|
required: ['access_code_id', 'is_managed'],
|
|
@@ -2507,6 +2514,7 @@ export default {
|
|
|
2507
2514
|
},
|
|
2508
2515
|
device_id: { format: 'uuid', type: 'string' },
|
|
2509
2516
|
ends_at: { type: 'string' },
|
|
2517
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2510
2518
|
is_managed: { type: 'boolean' },
|
|
2511
2519
|
name: { type: 'string' },
|
|
2512
2520
|
prefer_native_scheduling: { type: 'boolean' },
|
|
@@ -2572,6 +2580,7 @@ export default {
|
|
|
2572
2580
|
},
|
|
2573
2581
|
device_id: { format: 'uuid', type: 'string' },
|
|
2574
2582
|
ends_at: { type: 'string' },
|
|
2583
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2575
2584
|
is_managed: { type: 'boolean' },
|
|
2576
2585
|
name: { type: 'string' },
|
|
2577
2586
|
prefer_native_scheduling: { type: 'boolean' },
|
|
@@ -2639,6 +2648,7 @@ export default {
|
|
|
2639
2648
|
},
|
|
2640
2649
|
device_id: { format: 'uuid', type: 'string' },
|
|
2641
2650
|
ends_at: { type: 'string' },
|
|
2651
|
+
is_external_modification_allowed: { type: 'boolean' },
|
|
2642
2652
|
is_managed: { type: 'boolean' },
|
|
2643
2653
|
name: { type: 'string' },
|
|
2644
2654
|
prefer_native_scheduling: { type: 'boolean' },
|
|
@@ -15,6 +15,7 @@ export interface Routes {
|
|
|
15
15
|
prefer_native_scheduling?: boolean | undefined
|
|
16
16
|
use_backup_access_code_pool?: boolean | undefined
|
|
17
17
|
allow_external_modification?: boolean | undefined
|
|
18
|
+
is_external_modification_allowed?: boolean | undefined
|
|
18
19
|
}
|
|
19
20
|
commonParams: {}
|
|
20
21
|
formData: {}
|
|
@@ -82,6 +83,7 @@ export interface Routes {
|
|
|
82
83
|
prefer_native_scheduling?: boolean | undefined
|
|
83
84
|
use_backup_access_code_pool?: boolean | undefined
|
|
84
85
|
allow_external_modification?: boolean | undefined
|
|
86
|
+
is_external_modification_allowed?: boolean | undefined
|
|
85
87
|
}
|
|
86
88
|
commonParams: {}
|
|
87
89
|
formData: {}
|
|
@@ -309,6 +311,7 @@ export interface Routes {
|
|
|
309
311
|
jsonBody: {}
|
|
310
312
|
commonParams: {
|
|
311
313
|
access_code_id: string
|
|
314
|
+
is_external_modification_allowed?: boolean | undefined
|
|
312
315
|
allow_external_modification?: boolean | undefined
|
|
313
316
|
force?: boolean | undefined
|
|
314
317
|
sync?: boolean
|
|
@@ -418,6 +421,7 @@ export interface Routes {
|
|
|
418
421
|
access_code_id: string
|
|
419
422
|
is_managed: boolean
|
|
420
423
|
allow_external_modification?: boolean | undefined
|
|
424
|
+
is_external_modification_allowed?: boolean | undefined
|
|
421
425
|
force?: boolean | undefined
|
|
422
426
|
}
|
|
423
427
|
formData: {}
|
|
@@ -437,6 +441,7 @@ export interface Routes {
|
|
|
437
441
|
prefer_native_scheduling?: boolean | undefined
|
|
438
442
|
use_backup_access_code_pool?: boolean | undefined
|
|
439
443
|
allow_external_modification?: boolean | undefined
|
|
444
|
+
is_external_modification_allowed?: boolean | undefined
|
|
440
445
|
access_code_id: string
|
|
441
446
|
device_id?: string | undefined
|
|
442
447
|
type?: ('ongoing' | 'time_bound') | undefined
|