@seamapi/types 1.7.0 → 1.8.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 +3425 -1747
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4568 -2121
- package/lib/seam/connect/openapi.d.ts +4568 -2121
- package/lib/seam/connect/openapi.js +3452 -1774
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +46 -0
- package/lib/seam/connect/unstable/models/acs/user.d.ts +3 -3
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +6 -6
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +16 -16
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +4 -4
- package/lib/seam/connect/unstable/models/managed-device.d.ts +25 -25
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3452 -1774
- package/src/lib/seam/connect/route-types.ts +46 -0
|
@@ -462,6 +462,18 @@ export interface Routes {
|
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
464
|
}
|
|
465
|
+
'/acs/access_groups/add_user': {
|
|
466
|
+
route: '/acs/access_groups/add_user'
|
|
467
|
+
method: 'PATCH' | 'POST'
|
|
468
|
+
queryParams: {}
|
|
469
|
+
jsonBody: {}
|
|
470
|
+
commonParams: {
|
|
471
|
+
acs_access_group_id: string
|
|
472
|
+
acs_user_id: string
|
|
473
|
+
}
|
|
474
|
+
formData: {}
|
|
475
|
+
jsonResponse: {}
|
|
476
|
+
}
|
|
465
477
|
'/acs/access_groups/create': {
|
|
466
478
|
route: '/acs/access_groups/create'
|
|
467
479
|
method: 'POST'
|
|
@@ -538,6 +550,40 @@ export interface Routes {
|
|
|
538
550
|
}>
|
|
539
551
|
}
|
|
540
552
|
}
|
|
553
|
+
'/acs/access_groups/list_users': {
|
|
554
|
+
route: '/acs/access_groups/list_users'
|
|
555
|
+
method: 'GET' | 'POST'
|
|
556
|
+
queryParams: {}
|
|
557
|
+
jsonBody: {}
|
|
558
|
+
commonParams: {
|
|
559
|
+
acs_access_group_id: string
|
|
560
|
+
}
|
|
561
|
+
formData: {}
|
|
562
|
+
jsonResponse: {
|
|
563
|
+
acs_users: Array<{
|
|
564
|
+
acs_user_id: string
|
|
565
|
+
acs_system_id: string
|
|
566
|
+
workspace_id: string
|
|
567
|
+
created_at: string
|
|
568
|
+
display_name: string
|
|
569
|
+
full_name?: string | undefined
|
|
570
|
+
email?: string | undefined
|
|
571
|
+
phone_number?: string | undefined
|
|
572
|
+
}>
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
'/acs/access_groups/remove_user': {
|
|
576
|
+
route: '/acs/access_groups/remove_user'
|
|
577
|
+
method: 'DELETE' | 'POST'
|
|
578
|
+
queryParams: {}
|
|
579
|
+
jsonBody: {}
|
|
580
|
+
commonParams: {
|
|
581
|
+
acs_access_group_id: string
|
|
582
|
+
acs_user_id: string
|
|
583
|
+
}
|
|
584
|
+
formData: {}
|
|
585
|
+
jsonResponse: {}
|
|
586
|
+
}
|
|
541
587
|
'/acs/access_groups/update': {
|
|
542
588
|
route: '/acs/access_groups/update'
|
|
543
589
|
method: 'POST' | 'PATCH'
|