@seamapi/http 1.36.0 → 1.38.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/README.md +13 -0
- package/dist/connect.cjs +5266 -1193
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3123 -669
- package/lib/seam/connect/options.d.ts +2 -1
- package/lib/seam/connect/options.js.map +1 -1
- package/lib/seam/connect/parse-options.d.ts +1 -1
- package/lib/seam/connect/parse-options.js +2 -0
- package/lib/seam/connect/parse-options.js.map +1 -1
- package/lib/seam/connect/routes/access-codes/access-codes.d.ts +110 -30
- package/lib/seam/connect/routes/access-codes/access-codes.js +30 -20
- package/lib/seam/connect/routes/access-codes/access-codes.js.map +1 -1
- package/lib/seam/connect/routes/access-codes/simulate/simulate.d.ts +11 -3
- package/lib/seam/connect/routes/access-codes/simulate/simulate.js +3 -2
- package/lib/seam/connect/routes/access-codes/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/access-codes/unmanaged/unmanaged.d.ts +55 -15
- package/lib/seam/connect/routes/access-codes/unmanaged/unmanaged.js +15 -10
- package/lib/seam/connect/routes/access-codes/unmanaged/unmanaged.js.map +1 -1
- package/lib/seam/connect/routes/access-grants/access-grants.d.ts +55 -15
- package/lib/seam/connect/routes/access-grants/access-grants.js +15 -10
- package/lib/seam/connect/routes/access-grants/access-grants.js.map +1 -1
- package/lib/seam/connect/routes/access-methods/access-methods.d.ts +33 -9
- package/lib/seam/connect/routes/access-methods/access-methods.js +9 -6
- package/lib/seam/connect/routes/access-methods/access-methods.js.map +1 -1
- package/lib/seam/connect/routes/acs/access-groups/access-groups.d.ts +68 -18
- package/lib/seam/connect/routes/acs/access-groups/access-groups.js +22 -12
- package/lib/seam/connect/routes/acs/access-groups/access-groups.js.map +1 -1
- package/lib/seam/connect/routes/acs/access-groups/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/access-groups/index.js +1 -0
- package/lib/seam/connect/routes/acs/access-groups/index.js.map +1 -1
- package/lib/seam/connect/routes/acs/access-groups/unmanaged/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/access-groups/unmanaged/index.js +6 -0
- package/lib/seam/connect/routes/acs/access-groups/unmanaged/index.js.map +1 -0
- package/lib/seam/connect/routes/acs/access-groups/unmanaged/unmanaged.d.ts +45 -0
- package/lib/seam/connect/routes/acs/access-groups/unmanaged/unmanaged.js +114 -0
- package/lib/seam/connect/routes/acs/access-groups/unmanaged/unmanaged.js.map +1 -0
- package/lib/seam/connect/routes/acs/acs.d.ts +4 -0
- package/lib/seam/connect/routes/acs/acs.js +8 -0
- package/lib/seam/connect/routes/acs/acs.js.map +1 -1
- package/lib/seam/connect/routes/acs/credential-pools/credential-pools.d.ts +33 -0
- package/lib/seam/connect/routes/acs/credential-pools/credential-pools.js +102 -0
- package/lib/seam/connect/routes/acs/credential-pools/credential-pools.js.map +1 -0
- package/lib/seam/connect/routes/acs/credential-pools/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/credential-pools/index.js +6 -0
- package/lib/seam/connect/routes/acs/credential-pools/index.js.map +1 -0
- package/lib/seam/connect/routes/acs/credential-provisioning-automations/credential-provisioning-automations.d.ts +33 -0
- package/lib/seam/connect/routes/acs/credential-provisioning-automations/credential-provisioning-automations.js +102 -0
- package/lib/seam/connect/routes/acs/credential-provisioning-automations/credential-provisioning-automations.js.map +1 -0
- package/lib/seam/connect/routes/acs/credential-provisioning-automations/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/credential-provisioning-automations/index.js +6 -0
- package/lib/seam/connect/routes/acs/credential-provisioning-automations/index.js.map +1 -0
- package/lib/seam/connect/routes/acs/credentials/credentials.d.ts +102 -24
- package/lib/seam/connect/routes/acs/credentials/credentials.js +40 -16
- package/lib/seam/connect/routes/acs/credentials/credentials.js.map +1 -1
- package/lib/seam/connect/routes/acs/credentials/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/credentials/index.js +1 -0
- package/lib/seam/connect/routes/acs/credentials/index.js.map +1 -1
- package/lib/seam/connect/routes/acs/credentials/unmanaged/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/credentials/unmanaged/index.js +6 -0
- package/lib/seam/connect/routes/acs/credentials/unmanaged/index.js.map +1 -0
- package/lib/seam/connect/routes/acs/credentials/unmanaged/unmanaged.d.ts +45 -0
- package/lib/seam/connect/routes/acs/credentials/unmanaged/unmanaged.js +114 -0
- package/lib/seam/connect/routes/acs/credentials/unmanaged/unmanaged.js.map +1 -0
- package/lib/seam/connect/routes/acs/encoders/encoders.d.ts +52 -12
- package/lib/seam/connect/routes/acs/encoders/encoders.js +12 -10
- package/lib/seam/connect/routes/acs/encoders/encoders.js.map +1 -1
- package/lib/seam/connect/routes/acs/encoders/simulate/simulate.d.ts +44 -12
- package/lib/seam/connect/routes/acs/encoders/simulate/simulate.js +12 -8
- package/lib/seam/connect/routes/acs/encoders/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/acs/entrances/entrances.d.ts +44 -12
- package/lib/seam/connect/routes/acs/entrances/entrances.js +12 -8
- package/lib/seam/connect/routes/acs/entrances/entrances.js.map +1 -1
- package/lib/seam/connect/routes/acs/index.d.ts +2 -0
- package/lib/seam/connect/routes/acs/index.js +2 -0
- package/lib/seam/connect/routes/acs/index.js.map +1 -1
- package/lib/seam/connect/routes/acs/systems/systems.d.ts +33 -9
- package/lib/seam/connect/routes/acs/systems/systems.js +9 -6
- package/lib/seam/connect/routes/acs/systems/systems.js.map +1 -1
- package/lib/seam/connect/routes/acs/users/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/users/index.js +1 -0
- package/lib/seam/connect/routes/acs/users/index.js.map +1 -1
- package/lib/seam/connect/routes/acs/users/unmanaged/index.d.ts +1 -0
- package/lib/seam/connect/routes/acs/users/unmanaged/index.js +6 -0
- package/lib/seam/connect/routes/acs/users/unmanaged/index.js.map +1 -0
- package/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.d.ts +45 -0
- package/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.js +114 -0
- package/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.js.map +1 -0
- package/lib/seam/connect/routes/acs/users/users.d.ts +123 -33
- package/lib/seam/connect/routes/acs/users/users.js +37 -22
- package/lib/seam/connect/routes/acs/users/users.js.map +1 -1
- package/lib/seam/connect/routes/action-attempts/action-attempts.d.ts +21 -5
- package/lib/seam/connect/routes/action-attempts/action-attempts.js +5 -4
- package/lib/seam/connect/routes/action-attempts/action-attempts.js.map +1 -1
- package/lib/seam/connect/routes/bridges/bridges.d.ts +45 -0
- package/lib/seam/connect/routes/bridges/bridges.js +114 -0
- package/lib/seam/connect/routes/bridges/bridges.js.map +1 -0
- package/lib/seam/connect/routes/bridges/index.d.ts +1 -0
- package/lib/seam/connect/routes/bridges/index.js +6 -0
- package/lib/seam/connect/routes/bridges/index.js.map +1 -0
- package/lib/seam/connect/routes/client-sessions/client-sessions.d.ts +77 -21
- package/lib/seam/connect/routes/client-sessions/client-sessions.js +21 -14
- package/lib/seam/connect/routes/client-sessions/client-sessions.js.map +1 -1
- package/lib/seam/connect/routes/connect-webviews/connect-webviews.d.ts +44 -12
- package/lib/seam/connect/routes/connect-webviews/connect-webviews.js +12 -8
- package/lib/seam/connect/routes/connect-webviews/connect-webviews.js.map +1 -1
- package/lib/seam/connect/routes/connected-accounts/connected-accounts.d.ts +55 -15
- package/lib/seam/connect/routes/connected-accounts/connected-accounts.js +15 -10
- package/lib/seam/connect/routes/connected-accounts/connected-accounts.js.map +1 -1
- package/lib/seam/connect/routes/devices/devices.d.ts +56 -12
- package/lib/seam/connect/routes/devices/devices.js +24 -8
- package/lib/seam/connect/routes/devices/devices.js.map +1 -1
- package/lib/seam/connect/routes/devices/simulate/simulate.d.ts +33 -9
- package/lib/seam/connect/routes/devices/simulate/simulate.js +9 -6
- package/lib/seam/connect/routes/devices/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/devices/unmanaged/unmanaged.d.ts +33 -9
- package/lib/seam/connect/routes/devices/unmanaged/unmanaged.js +9 -6
- package/lib/seam/connect/routes/devices/unmanaged/unmanaged.js.map +1 -1
- package/lib/seam/connect/routes/events/events.d.ts +22 -6
- package/lib/seam/connect/routes/events/events.js +6 -4
- package/lib/seam/connect/routes/events/events.js.map +1 -1
- package/lib/seam/connect/routes/index.d.ts +7 -0
- package/lib/seam/connect/routes/index.js +7 -0
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/locks/index.d.ts +1 -0
- package/lib/seam/connect/routes/locks/index.js +1 -0
- package/lib/seam/connect/routes/locks/index.js.map +1 -1
- package/lib/seam/connect/routes/locks/locks.d.ts +44 -10
- package/lib/seam/connect/routes/locks/locks.js +14 -8
- package/lib/seam/connect/routes/locks/locks.js.map +1 -1
- package/lib/seam/connect/routes/locks/simulate/index.d.ts +1 -0
- package/lib/seam/connect/routes/locks/simulate/index.js +6 -0
- package/lib/seam/connect/routes/locks/simulate/index.js.map +1 -0
- package/lib/seam/connect/routes/locks/simulate/simulate.d.ts +45 -0
- package/lib/seam/connect/routes/locks/simulate/simulate.js +114 -0
- package/lib/seam/connect/routes/locks/simulate/simulate.js.map +1 -0
- package/lib/seam/connect/routes/networks/index.d.ts +1 -0
- package/lib/seam/connect/routes/networks/index.js +6 -0
- package/lib/seam/connect/routes/networks/index.js.map +1 -0
- package/lib/seam/connect/routes/networks/networks.d.ts +45 -0
- package/lib/seam/connect/routes/networks/networks.js +114 -0
- package/lib/seam/connect/routes/networks/networks.js.map +1 -0
- package/lib/seam/connect/routes/noise-sensors/noise-sensors.d.ts +11 -3
- package/lib/seam/connect/routes/noise-sensors/noise-sensors.js +3 -2
- package/lib/seam/connect/routes/noise-sensors/noise-sensors.js.map +1 -1
- package/lib/seam/connect/routes/noise-sensors/noise-thresholds/noise-thresholds.d.ts +55 -15
- package/lib/seam/connect/routes/noise-sensors/noise-thresholds/noise-thresholds.js +15 -10
- package/lib/seam/connect/routes/noise-sensors/noise-thresholds/noise-thresholds.js.map +1 -1
- package/lib/seam/connect/routes/noise-sensors/simulate/simulate.d.ts +11 -3
- package/lib/seam/connect/routes/noise-sensors/simulate/simulate.js +3 -2
- package/lib/seam/connect/routes/noise-sensors/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/phones/phones.d.ts +33 -9
- package/lib/seam/connect/routes/phones/phones.js +9 -6
- package/lib/seam/connect/routes/phones/phones.js.map +1 -1
- package/lib/seam/connect/routes/phones/simulate/simulate.d.ts +11 -3
- package/lib/seam/connect/routes/phones/simulate/simulate.js +3 -2
- package/lib/seam/connect/routes/phones/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/seam/bridge/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/bridge/index.js +6 -0
- package/lib/seam/connect/routes/seam/bridge/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/bridge-client-sessions.d.ts +81 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/bridge-client-sessions.js +150 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/bridge-client-sessions.js.map +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/index.js +6 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/bridge-connected-systems.d.ts +33 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/bridge-connected-systems.js +102 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/bridge-connected-systems.js.map +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/index.js +6 -0
- package/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/index.d.ts +3 -0
- package/lib/seam/connect/routes/seam/bridge/v1/index.js +8 -0
- package/lib/seam/connect/routes/seam/bridge/v1/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/bridge/v1/v1.d.ts +23 -0
- package/lib/seam/connect/routes/seam/bridge/v1/v1.js +97 -0
- package/lib/seam/connect/routes/seam/bridge/v1/v1.js.map +1 -0
- package/lib/seam/connect/routes/seam/index.d.ts +4 -0
- package/lib/seam/connect/routes/seam/index.js +9 -0
- package/lib/seam/connect/routes/seam/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/instant-key/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/instant-key/index.js +6 -0
- package/lib/seam/connect/routes/seam/instant-key/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/client-sessions.d.ts +33 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/client-sessions.js +102 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/client-sessions.js.map +1 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/index.js +6 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/index.d.ts +2 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/index.js +7 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/v1.d.ts +21 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/v1.js +93 -0
- package/lib/seam/connect/routes/seam/instant-key/v1/v1.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/index.js +6 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/acs.d.ts +21 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/acs.js +93 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/acs.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/credentials.d.ts +33 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/credentials.js +102 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/credentials.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/index.js +6 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/index.d.ts +2 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/index.js +7 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/index.d.ts +3 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/index.js +8 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/index.js +6 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/phone-sessions.d.ts +33 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/phone-sessions.js +102 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/phone-sessions.js.map +1 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/v1.d.ts +23 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/v1.js +97 -0
- package/lib/seam/connect/routes/seam/mobile-sdk/v1/v1.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/partner/index.js +6 -0
- package/lib/seam/connect/routes/seam/partner/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/building-blocks.d.ts +21 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/building-blocks.js +93 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/building-blocks.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/index.d.ts +2 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/index.js +7 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/index.js +6 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/spaces.d.ts +33 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/spaces.js +102 -0
- package/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/spaces.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/index.d.ts +3 -0
- package/lib/seam/connect/routes/seam/partner/v1/index.js +8 -0
- package/lib/seam/connect/routes/seam/partner/v1/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/resources/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/resources/index.js +6 -0
- package/lib/seam/connect/routes/seam/partner/v1/resources/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/resources/resources.d.ts +33 -0
- package/lib/seam/connect/routes/seam/partner/v1/resources/resources.js +102 -0
- package/lib/seam/connect/routes/seam/partner/v1/resources/resources.js.map +1 -0
- package/lib/seam/connect/routes/seam/partner/v1/v1.d.ts +23 -0
- package/lib/seam/connect/routes/seam/partner/v1/v1.js +97 -0
- package/lib/seam/connect/routes/seam/partner/v1/v1.js.map +1 -0
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +275 -205
- package/lib/seam/connect/routes/seam-http-endpoints.js +545 -35
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/seam/connect/routes/seam-http.d.ts +12 -0
- package/lib/seam/connect/routes/seam-http.js +24 -0
- package/lib/seam/connect/routes/seam-http.js.map +1 -1
- package/lib/seam/connect/routes/spaces/spaces.d.ts +99 -27
- package/lib/seam/connect/routes/spaces/spaces.js +27 -18
- package/lib/seam/connect/routes/spaces/spaces.js.map +1 -1
- package/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.d.ts +32 -8
- package/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.js +8 -6
- package/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.js.map +1 -1
- package/lib/seam/connect/routes/thermostats/schedules/schedules.d.ts +55 -15
- package/lib/seam/connect/routes/thermostats/schedules/schedules.js +15 -10
- package/lib/seam/connect/routes/thermostats/schedules/schedules.js.map +1 -1
- package/lib/seam/connect/routes/thermostats/simulate/simulate.d.ts +22 -6
- package/lib/seam/connect/routes/thermostats/simulate/simulate.js +6 -4
- package/lib/seam/connect/routes/thermostats/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/thermostats/thermostats.d.ts +158 -34
- package/lib/seam/connect/routes/thermostats/thermostats.js +46 -28
- package/lib/seam/connect/routes/thermostats/thermostats.js.map +1 -1
- package/lib/seam/connect/routes/unstable-access-grants/index.d.ts +1 -0
- package/lib/seam/connect/routes/unstable-access-grants/index.js +6 -0
- package/lib/seam/connect/routes/unstable-access-grants/index.js.map +1 -0
- package/lib/seam/connect/routes/unstable-access-grants/unstable-access-grants.d.ts +69 -0
- package/lib/seam/connect/routes/unstable-access-grants/unstable-access-grants.js +138 -0
- package/lib/seam/connect/routes/unstable-access-grants/unstable-access-grants.js.map +1 -0
- package/lib/seam/connect/routes/unstable-access-methods/index.d.ts +1 -0
- package/lib/seam/connect/routes/unstable-access-methods/index.js +6 -0
- package/lib/seam/connect/routes/unstable-access-methods/index.js.map +1 -0
- package/lib/seam/connect/routes/unstable-access-methods/unstable-access-methods.d.ts +57 -0
- package/lib/seam/connect/routes/unstable-access-methods/unstable-access-methods.js +126 -0
- package/lib/seam/connect/routes/unstable-access-methods/unstable-access-methods.js.map +1 -0
- package/lib/seam/connect/routes/unstable-locations/index.d.ts +1 -0
- package/lib/seam/connect/routes/unstable-locations/index.js +6 -0
- package/lib/seam/connect/routes/unstable-locations/index.js.map +1 -0
- package/lib/seam/connect/routes/unstable-locations/unstable-locations.d.ts +129 -0
- package/lib/seam/connect/routes/unstable-locations/unstable-locations.js +198 -0
- package/lib/seam/connect/routes/unstable-locations/unstable-locations.js.map +1 -0
- package/lib/seam/connect/routes/unstable-partner/building-blocks/building-blocks.d.ts +69 -0
- package/lib/seam/connect/routes/unstable-partner/building-blocks/building-blocks.js +138 -0
- package/lib/seam/connect/routes/unstable-partner/building-blocks/building-blocks.js.map +1 -0
- package/lib/seam/connect/routes/unstable-partner/building-blocks/index.d.ts +1 -0
- package/lib/seam/connect/routes/unstable-partner/building-blocks/index.js +6 -0
- package/lib/seam/connect/routes/unstable-partner/building-blocks/index.js.map +1 -0
- package/lib/seam/connect/routes/unstable-partner/index.d.ts +3 -0
- package/lib/seam/connect/routes/unstable-partner/index.js +8 -0
- package/lib/seam/connect/routes/unstable-partner/index.js.map +1 -0
- package/lib/seam/connect/routes/unstable-partner/resources/index.d.ts +1 -0
- package/lib/seam/connect/routes/unstable-partner/resources/index.js +6 -0
- package/lib/seam/connect/routes/unstable-partner/resources/index.js.map +1 -0
- package/lib/seam/connect/routes/unstable-partner/resources/resources.d.ts +33 -0
- package/lib/seam/connect/routes/unstable-partner/resources/resources.js +102 -0
- package/lib/seam/connect/routes/unstable-partner/resources/resources.js.map +1 -0
- package/lib/seam/connect/routes/unstable-partner/unstable-partner.d.ts +23 -0
- package/lib/seam/connect/routes/unstable-partner/unstable-partner.js +97 -0
- package/lib/seam/connect/routes/unstable-partner/unstable-partner.js.map +1 -0
- package/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.d.ts +44 -12
- package/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.js +12 -8
- package/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.js.map +1 -1
- package/lib/seam/connect/routes/user-identities/user-identities.d.ts +143 -39
- package/lib/seam/connect/routes/user-identities/user-identities.js +39 -26
- package/lib/seam/connect/routes/user-identities/user-identities.js.map +1 -1
- package/lib/seam/connect/routes/webhooks/webhooks.d.ts +55 -15
- package/lib/seam/connect/routes/webhooks/webhooks.js +15 -10
- package/lib/seam/connect/routes/webhooks/webhooks.js.map +1 -1
- package/lib/seam/connect/routes/workspaces/workspaces.d.ts +54 -14
- package/lib/seam/connect/routes/workspaces/workspaces.js +14 -10
- package/lib/seam/connect/routes/workspaces/workspaces.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/options.ts +2 -1
- package/src/lib/seam/connect/parse-options.ts +2 -0
- package/src/lib/seam/connect/routes/access-codes/access-codes.ts +198 -48
- package/src/lib/seam/connect/routes/access-codes/simulate/simulate.ts +25 -8
- package/src/lib/seam/connect/routes/access-codes/unmanaged/unmanaged.ts +97 -25
- package/src/lib/seam/connect/routes/access-grants/access-grants.ts +99 -23
- package/src/lib/seam/connect/routes/access-methods/access-methods.ts +59 -14
- package/src/lib/seam/connect/routes/acs/access-groups/access-groups.ts +129 -32
- package/src/lib/seam/connect/routes/acs/access-groups/index.ts +1 -0
- package/src/lib/seam/connect/routes/acs/access-groups/unmanaged/index.ts +6 -0
- package/src/lib/seam/connect/routes/acs/access-groups/unmanaged/unmanaged.ts +255 -0
- package/src/lib/seam/connect/routes/acs/acs.ts +13 -0
- package/src/lib/seam/connect/routes/acs/credential-pools/credential-pools.ts +210 -0
- package/src/lib/seam/connect/routes/acs/credential-pools/index.ts +6 -0
- package/src/lib/seam/connect/routes/acs/credential-provisioning-automations/credential-provisioning-automations.ts +217 -0
- package/src/lib/seam/connect/routes/acs/credential-provisioning-automations/index.ts +6 -0
- package/src/lib/seam/connect/routes/acs/credentials/credentials.ts +202 -41
- package/src/lib/seam/connect/routes/acs/credentials/index.ts +1 -0
- package/src/lib/seam/connect/routes/acs/credentials/unmanaged/index.ts +6 -0
- package/src/lib/seam/connect/routes/acs/credentials/unmanaged/unmanaged.ts +259 -0
- package/src/lib/seam/connect/routes/acs/encoders/encoders.ts +93 -22
- package/src/lib/seam/connect/routes/acs/encoders/simulate/simulate.ts +88 -20
- package/src/lib/seam/connect/routes/acs/entrances/entrances.ts +78 -23
- package/src/lib/seam/connect/routes/acs/index.ts +2 -0
- package/src/lib/seam/connect/routes/acs/systems/systems.ts +65 -18
- package/src/lib/seam/connect/routes/acs/users/index.ts +1 -0
- package/src/lib/seam/connect/routes/acs/users/unmanaged/index.ts +6 -0
- package/src/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.ts +250 -0
- package/src/lib/seam/connect/routes/acs/users/users.ts +219 -51
- package/src/lib/seam/connect/routes/action-attempts/action-attempts.ts +39 -9
- package/src/lib/seam/connect/routes/bridges/bridges.ts +242 -0
- package/src/lib/seam/connect/routes/bridges/index.ts +6 -0
- package/src/lib/seam/connect/routes/client-sessions/client-sessions.ts +134 -34
- package/src/lib/seam/connect/routes/connect-webviews/connect-webviews.ts +78 -20
- package/src/lib/seam/connect/routes/connected-accounts/connected-accounts.ts +93 -23
- package/src/lib/seam/connect/routes/devices/devices.ts +109 -19
- package/src/lib/seam/connect/routes/devices/simulate/simulate.ts +52 -14
- package/src/lib/seam/connect/routes/devices/unmanaged/unmanaged.ts +58 -14
- package/src/lib/seam/connect/routes/events/events.ts +35 -9
- package/src/lib/seam/connect/routes/index.ts +7 -0
- package/src/lib/seam/connect/routes/locks/index.ts +1 -0
- package/src/lib/seam/connect/routes/locks/locks.ts +75 -17
- package/src/lib/seam/connect/routes/locks/simulate/index.ts +6 -0
- package/src/lib/seam/connect/routes/locks/simulate/simulate.ts +258 -0
- package/src/lib/seam/connect/routes/networks/index.ts +6 -0
- package/src/lib/seam/connect/routes/networks/networks.ts +245 -0
- package/src/lib/seam/connect/routes/noise-sensors/noise-sensors.ts +20 -5
- package/src/lib/seam/connect/routes/noise-sensors/noise-thresholds/noise-thresholds.ts +105 -34
- package/src/lib/seam/connect/routes/noise-sensors/simulate/simulate.ts +24 -5
- package/src/lib/seam/connect/routes/phones/phones.ts +52 -14
- package/src/lib/seam/connect/routes/phones/simulate/simulate.ts +21 -5
- package/src/lib/seam/connect/routes/seam/bridge/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/bridge-client-sessions.ts +401 -0
- package/src/lib/seam/connect/routes/seam/bridge/v1/bridge-client-sessions/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/bridge-connected-systems.ts +217 -0
- package/src/lib/seam/connect/routes/seam/bridge/v1/bridge-connected-systems/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/bridge/v1/index.ts +8 -0
- package/src/lib/seam/connect/routes/seam/bridge/v1/v1.ts +184 -0
- package/src/lib/seam/connect/routes/seam/index.ts +9 -0
- package/src/lib/seam/connect/routes/seam/instant-key/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/client-sessions.ts +221 -0
- package/src/lib/seam/connect/routes/seam/instant-key/v1/client-sessions/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/instant-key/v1/index.ts +7 -0
- package/src/lib/seam/connect/routes/seam/instant-key/v1/v1.ts +176 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/acs.ts +176 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/credentials.ts +214 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/credentials/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/acs/index.ts +7 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/index.ts +8 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/phone-sessions/phone-sessions.ts +217 -0
- package/src/lib/seam/connect/routes/seam/mobile-sdk/v1/v1.ts +181 -0
- package/src/lib/seam/connect/routes/seam/partner/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/building-blocks/building-blocks.ts +179 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/building-blocks/index.ts +7 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/spaces.ts +217 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/index.ts +8 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/resources/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/resources/resources.ts +211 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/v1.ts +181 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +2672 -205
- package/src/lib/seam/connect/routes/seam-http.ts +30 -0
- package/src/lib/seam/connect/routes/spaces/spaces.ts +156 -42
- package/src/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.ts +60 -17
- package/src/lib/seam/connect/routes/thermostats/schedules/schedules.ts +97 -28
- package/src/lib/seam/connect/routes/thermostats/simulate/simulate.ts +42 -10
- package/src/lib/seam/connect/routes/thermostats/thermostats.ts +303 -65
- package/src/lib/seam/connect/routes/unstable-access-grants/index.ts +6 -0
- package/src/lib/seam/connect/routes/unstable-access-grants/unstable-access-grants.ts +329 -0
- package/src/lib/seam/connect/routes/unstable-access-methods/index.ts +6 -0
- package/src/lib/seam/connect/routes/unstable-access-methods/unstable-access-methods.ts +292 -0
- package/src/lib/seam/connect/routes/unstable-locations/index.ts +6 -0
- package/src/lib/seam/connect/routes/unstable-locations/unstable-locations.ts +535 -0
- package/src/lib/seam/connect/routes/unstable-partner/building-blocks/building-blocks.ts +359 -0
- package/src/lib/seam/connect/routes/unstable-partner/building-blocks/index.ts +6 -0
- package/src/lib/seam/connect/routes/unstable-partner/index.ts +8 -0
- package/src/lib/seam/connect/routes/unstable-partner/resources/index.ts +6 -0
- package/src/lib/seam/connect/routes/unstable-partner/resources/resources.ts +214 -0
- package/src/lib/seam/connect/routes/unstable-partner/unstable-partner.ts +184 -0
- package/src/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.ts +96 -29
- package/src/lib/seam/connect/routes/user-identities/user-identities.ts +261 -64
- package/src/lib/seam/connect/routes/webhooks/webhooks.ts +93 -23
- package/src/lib/seam/connect/routes/workspaces/workspaces.ts +95 -23
- package/src/lib/version.ts +1 -1
|
@@ -32,41 +32,828 @@ import {
|
|
|
32
32
|
import type { SeamHttpRequest } from 'lib/seam/connect/seam-http-request.js'
|
|
33
33
|
import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
|
|
34
34
|
|
|
35
|
-
import {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
import {
|
|
69
|
-
|
|
35
|
+
import {
|
|
36
|
+
type AccessCodesCreateMultipleOptions,
|
|
37
|
+
type AccessCodesCreateMultipleParameters,
|
|
38
|
+
type AccessCodesCreateMultipleRequest,
|
|
39
|
+
type AccessCodesCreateOptions,
|
|
40
|
+
type AccessCodesCreateParameters,
|
|
41
|
+
type AccessCodesCreateRequest,
|
|
42
|
+
type AccessCodesDeleteOptions,
|
|
43
|
+
type AccessCodesDeleteParameters,
|
|
44
|
+
type AccessCodesDeleteRequest,
|
|
45
|
+
type AccessCodesGenerateCodeOptions,
|
|
46
|
+
type AccessCodesGenerateCodeParameters,
|
|
47
|
+
type AccessCodesGenerateCodeRequest,
|
|
48
|
+
type AccessCodesGetOptions,
|
|
49
|
+
type AccessCodesGetParameters,
|
|
50
|
+
type AccessCodesGetRequest,
|
|
51
|
+
type AccessCodesListOptions,
|
|
52
|
+
type AccessCodesListParameters,
|
|
53
|
+
type AccessCodesListRequest,
|
|
54
|
+
type AccessCodesPullBackupAccessCodeOptions,
|
|
55
|
+
type AccessCodesPullBackupAccessCodeParameters,
|
|
56
|
+
type AccessCodesPullBackupAccessCodeRequest,
|
|
57
|
+
type AccessCodesReportDeviceConstraintsOptions,
|
|
58
|
+
type AccessCodesReportDeviceConstraintsParameters,
|
|
59
|
+
type AccessCodesReportDeviceConstraintsRequest,
|
|
60
|
+
type AccessCodesUpdateMultipleOptions,
|
|
61
|
+
type AccessCodesUpdateMultipleParameters,
|
|
62
|
+
type AccessCodesUpdateMultipleRequest,
|
|
63
|
+
type AccessCodesUpdateOptions,
|
|
64
|
+
type AccessCodesUpdateParameters,
|
|
65
|
+
type AccessCodesUpdateRequest,
|
|
66
|
+
SeamHttpAccessCodes,
|
|
67
|
+
} from './access-codes/index.js'
|
|
68
|
+
import {
|
|
69
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeOptions,
|
|
70
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeParameters,
|
|
71
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeRequest,
|
|
72
|
+
SeamHttpAccessCodesSimulate,
|
|
73
|
+
} from './access-codes/simulate/index.js'
|
|
74
|
+
import {
|
|
75
|
+
type AccessCodesUnmanagedConvertToManagedOptions,
|
|
76
|
+
type AccessCodesUnmanagedConvertToManagedParameters,
|
|
77
|
+
type AccessCodesUnmanagedConvertToManagedRequest,
|
|
78
|
+
type AccessCodesUnmanagedDeleteOptions,
|
|
79
|
+
type AccessCodesUnmanagedDeleteParameters,
|
|
80
|
+
type AccessCodesUnmanagedDeleteRequest,
|
|
81
|
+
type AccessCodesUnmanagedGetOptions,
|
|
82
|
+
type AccessCodesUnmanagedGetParameters,
|
|
83
|
+
type AccessCodesUnmanagedGetRequest,
|
|
84
|
+
type AccessCodesUnmanagedListOptions,
|
|
85
|
+
type AccessCodesUnmanagedListParameters,
|
|
86
|
+
type AccessCodesUnmanagedListRequest,
|
|
87
|
+
type AccessCodesUnmanagedUpdateOptions,
|
|
88
|
+
type AccessCodesUnmanagedUpdateParameters,
|
|
89
|
+
type AccessCodesUnmanagedUpdateRequest,
|
|
90
|
+
SeamHttpAccessCodesUnmanaged,
|
|
91
|
+
} from './access-codes/unmanaged/index.js'
|
|
92
|
+
import {
|
|
93
|
+
type AccessGrantsCreateOptions,
|
|
94
|
+
type AccessGrantsCreateParameters,
|
|
95
|
+
type AccessGrantsCreateRequest,
|
|
96
|
+
type AccessGrantsDeleteOptions,
|
|
97
|
+
type AccessGrantsDeleteParameters,
|
|
98
|
+
type AccessGrantsDeleteRequest,
|
|
99
|
+
type AccessGrantsGetOptions,
|
|
100
|
+
type AccessGrantsGetParameters,
|
|
101
|
+
type AccessGrantsGetRequest,
|
|
102
|
+
type AccessGrantsListOptions,
|
|
103
|
+
type AccessGrantsListParameters,
|
|
104
|
+
type AccessGrantsListRequest,
|
|
105
|
+
type AccessGrantsUpdateOptions,
|
|
106
|
+
type AccessGrantsUpdateParameters,
|
|
107
|
+
type AccessGrantsUpdateRequest,
|
|
108
|
+
SeamHttpAccessGrants,
|
|
109
|
+
} from './access-grants/index.js'
|
|
110
|
+
import {
|
|
111
|
+
type AccessMethodsDeleteOptions,
|
|
112
|
+
type AccessMethodsDeleteParameters,
|
|
113
|
+
type AccessMethodsDeleteRequest,
|
|
114
|
+
type AccessMethodsGetOptions,
|
|
115
|
+
type AccessMethodsGetParameters,
|
|
116
|
+
type AccessMethodsGetRequest,
|
|
117
|
+
type AccessMethodsListOptions,
|
|
118
|
+
type AccessMethodsListParameters,
|
|
119
|
+
type AccessMethodsListRequest,
|
|
120
|
+
SeamHttpAccessMethods,
|
|
121
|
+
} from './access-methods/index.js'
|
|
122
|
+
import {
|
|
123
|
+
type AcsAccessGroupsAddUserOptions,
|
|
124
|
+
type AcsAccessGroupsAddUserParameters,
|
|
125
|
+
type AcsAccessGroupsAddUserRequest,
|
|
126
|
+
type AcsAccessGroupsGetOptions,
|
|
127
|
+
type AcsAccessGroupsGetParameters,
|
|
128
|
+
type AcsAccessGroupsGetRequest,
|
|
129
|
+
type AcsAccessGroupsListAccessibleEntrancesOptions,
|
|
130
|
+
type AcsAccessGroupsListAccessibleEntrancesParameters,
|
|
131
|
+
type AcsAccessGroupsListAccessibleEntrancesRequest,
|
|
132
|
+
type AcsAccessGroupsListOptions,
|
|
133
|
+
type AcsAccessGroupsListParameters,
|
|
134
|
+
type AcsAccessGroupsListRequest,
|
|
135
|
+
type AcsAccessGroupsListUsersOptions,
|
|
136
|
+
type AcsAccessGroupsListUsersParameters,
|
|
137
|
+
type AcsAccessGroupsListUsersRequest,
|
|
138
|
+
type AcsAccessGroupsRemoveUserOptions,
|
|
139
|
+
type AcsAccessGroupsRemoveUserParameters,
|
|
140
|
+
type AcsAccessGroupsRemoveUserRequest,
|
|
141
|
+
SeamHttpAcsAccessGroups,
|
|
142
|
+
} from './acs/access-groups/index.js'
|
|
143
|
+
import {
|
|
144
|
+
type AcsAccessGroupsUnmanagedGetOptions,
|
|
145
|
+
type AcsAccessGroupsUnmanagedGetParameters,
|
|
146
|
+
type AcsAccessGroupsUnmanagedGetRequest,
|
|
147
|
+
type AcsAccessGroupsUnmanagedListOptions,
|
|
148
|
+
type AcsAccessGroupsUnmanagedListParameters,
|
|
149
|
+
type AcsAccessGroupsUnmanagedListRequest,
|
|
150
|
+
SeamHttpAcsAccessGroupsUnmanaged,
|
|
151
|
+
} from './acs/access-groups/unmanaged/index.js'
|
|
152
|
+
import {
|
|
153
|
+
type AcsCredentialPoolsListOptions,
|
|
154
|
+
type AcsCredentialPoolsListParameters,
|
|
155
|
+
type AcsCredentialPoolsListRequest,
|
|
156
|
+
SeamHttpAcsCredentialPools,
|
|
157
|
+
} from './acs/credential-pools/index.js'
|
|
158
|
+
import {
|
|
159
|
+
type AcsCredentialProvisioningAutomationsLaunchOptions,
|
|
160
|
+
type AcsCredentialProvisioningAutomationsLaunchParameters,
|
|
161
|
+
type AcsCredentialProvisioningAutomationsLaunchRequest,
|
|
162
|
+
SeamHttpAcsCredentialProvisioningAutomations,
|
|
163
|
+
} from './acs/credential-provisioning-automations/index.js'
|
|
164
|
+
import {
|
|
165
|
+
type AcsCredentialsAssignOptions,
|
|
166
|
+
type AcsCredentialsAssignParameters,
|
|
167
|
+
type AcsCredentialsAssignRequest,
|
|
168
|
+
type AcsCredentialsCreateOfflineCodeOptions,
|
|
169
|
+
type AcsCredentialsCreateOfflineCodeParameters,
|
|
170
|
+
type AcsCredentialsCreateOfflineCodeRequest,
|
|
171
|
+
type AcsCredentialsCreateOptions,
|
|
172
|
+
type AcsCredentialsCreateParameters,
|
|
173
|
+
type AcsCredentialsCreateRequest,
|
|
174
|
+
type AcsCredentialsDeleteOptions,
|
|
175
|
+
type AcsCredentialsDeleteParameters,
|
|
176
|
+
type AcsCredentialsDeleteRequest,
|
|
177
|
+
type AcsCredentialsGetOptions,
|
|
178
|
+
type AcsCredentialsGetParameters,
|
|
179
|
+
type AcsCredentialsGetRequest,
|
|
180
|
+
type AcsCredentialsListAccessibleEntrancesOptions,
|
|
181
|
+
type AcsCredentialsListAccessibleEntrancesParameters,
|
|
182
|
+
type AcsCredentialsListAccessibleEntrancesRequest,
|
|
183
|
+
type AcsCredentialsListOptions,
|
|
184
|
+
type AcsCredentialsListParameters,
|
|
185
|
+
type AcsCredentialsListRequest,
|
|
186
|
+
type AcsCredentialsUnassignOptions,
|
|
187
|
+
type AcsCredentialsUnassignParameters,
|
|
188
|
+
type AcsCredentialsUnassignRequest,
|
|
189
|
+
type AcsCredentialsUpdateOptions,
|
|
190
|
+
type AcsCredentialsUpdateParameters,
|
|
191
|
+
type AcsCredentialsUpdateRequest,
|
|
192
|
+
SeamHttpAcsCredentials,
|
|
193
|
+
} from './acs/credentials/index.js'
|
|
194
|
+
import {
|
|
195
|
+
type AcsCredentialsUnmanagedGetOptions,
|
|
196
|
+
type AcsCredentialsUnmanagedGetParameters,
|
|
197
|
+
type AcsCredentialsUnmanagedGetRequest,
|
|
198
|
+
type AcsCredentialsUnmanagedListOptions,
|
|
199
|
+
type AcsCredentialsUnmanagedListParameters,
|
|
200
|
+
type AcsCredentialsUnmanagedListRequest,
|
|
201
|
+
SeamHttpAcsCredentialsUnmanaged,
|
|
202
|
+
} from './acs/credentials/unmanaged/index.js'
|
|
203
|
+
import {
|
|
204
|
+
type AcsEncodersEncodeAccessMethodOptions,
|
|
205
|
+
type AcsEncodersEncodeAccessMethodParameters,
|
|
206
|
+
type AcsEncodersEncodeAccessMethodRequest,
|
|
207
|
+
type AcsEncodersEncodeCredentialOptions,
|
|
208
|
+
type AcsEncodersEncodeCredentialParameters,
|
|
209
|
+
type AcsEncodersEncodeCredentialRequest,
|
|
210
|
+
type AcsEncodersGetOptions,
|
|
211
|
+
type AcsEncodersGetParameters,
|
|
212
|
+
type AcsEncodersGetRequest,
|
|
213
|
+
type AcsEncodersListOptions,
|
|
214
|
+
type AcsEncodersListParameters,
|
|
215
|
+
type AcsEncodersListRequest,
|
|
216
|
+
type AcsEncodersScanCredentialOptions,
|
|
217
|
+
type AcsEncodersScanCredentialParameters,
|
|
218
|
+
type AcsEncodersScanCredentialRequest,
|
|
219
|
+
SeamHttpAcsEncoders,
|
|
220
|
+
} from './acs/encoders/index.js'
|
|
221
|
+
import {
|
|
222
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailOptions,
|
|
223
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailParameters,
|
|
224
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailRequest,
|
|
225
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions,
|
|
226
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters,
|
|
227
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest,
|
|
228
|
+
type AcsEncodersSimulateNextCredentialScanWillFailOptions,
|
|
229
|
+
type AcsEncodersSimulateNextCredentialScanWillFailParameters,
|
|
230
|
+
type AcsEncodersSimulateNextCredentialScanWillFailRequest,
|
|
231
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedOptions,
|
|
232
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedParameters,
|
|
233
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedRequest,
|
|
234
|
+
SeamHttpAcsEncodersSimulate,
|
|
235
|
+
} from './acs/encoders/simulate/index.js'
|
|
236
|
+
import {
|
|
237
|
+
type AcsEntrancesGetOptions,
|
|
238
|
+
type AcsEntrancesGetParameters,
|
|
239
|
+
type AcsEntrancesGetRequest,
|
|
240
|
+
type AcsEntrancesGrantAccessOptions,
|
|
241
|
+
type AcsEntrancesGrantAccessParameters,
|
|
242
|
+
type AcsEntrancesGrantAccessRequest,
|
|
243
|
+
type AcsEntrancesListCredentialsWithAccessOptions,
|
|
244
|
+
type AcsEntrancesListCredentialsWithAccessParameters,
|
|
245
|
+
type AcsEntrancesListCredentialsWithAccessRequest,
|
|
246
|
+
type AcsEntrancesListOptions,
|
|
247
|
+
type AcsEntrancesListParameters,
|
|
248
|
+
type AcsEntrancesListRequest,
|
|
249
|
+
SeamHttpAcsEntrances,
|
|
250
|
+
} from './acs/entrances/index.js'
|
|
251
|
+
import {
|
|
252
|
+
type AcsSystemsGetOptions,
|
|
253
|
+
type AcsSystemsGetParameters,
|
|
254
|
+
type AcsSystemsGetRequest,
|
|
255
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions,
|
|
256
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters,
|
|
257
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest,
|
|
258
|
+
type AcsSystemsListOptions,
|
|
259
|
+
type AcsSystemsListParameters,
|
|
260
|
+
type AcsSystemsListRequest,
|
|
261
|
+
SeamHttpAcsSystems,
|
|
262
|
+
} from './acs/systems/index.js'
|
|
263
|
+
import {
|
|
264
|
+
type AcsUsersAddToAccessGroupOptions,
|
|
265
|
+
type AcsUsersAddToAccessGroupParameters,
|
|
266
|
+
type AcsUsersAddToAccessGroupRequest,
|
|
267
|
+
type AcsUsersCreateOptions,
|
|
268
|
+
type AcsUsersCreateParameters,
|
|
269
|
+
type AcsUsersCreateRequest,
|
|
270
|
+
type AcsUsersDeleteOptions,
|
|
271
|
+
type AcsUsersDeleteParameters,
|
|
272
|
+
type AcsUsersDeleteRequest,
|
|
273
|
+
type AcsUsersGetOptions,
|
|
274
|
+
type AcsUsersGetParameters,
|
|
275
|
+
type AcsUsersGetRequest,
|
|
276
|
+
type AcsUsersListAccessibleEntrancesOptions,
|
|
277
|
+
type AcsUsersListAccessibleEntrancesParameters,
|
|
278
|
+
type AcsUsersListAccessibleEntrancesRequest,
|
|
279
|
+
type AcsUsersListOptions,
|
|
280
|
+
type AcsUsersListParameters,
|
|
281
|
+
type AcsUsersListRequest,
|
|
282
|
+
type AcsUsersRemoveFromAccessGroupOptions,
|
|
283
|
+
type AcsUsersRemoveFromAccessGroupParameters,
|
|
284
|
+
type AcsUsersRemoveFromAccessGroupRequest,
|
|
285
|
+
type AcsUsersRevokeAccessToAllEntrancesOptions,
|
|
286
|
+
type AcsUsersRevokeAccessToAllEntrancesParameters,
|
|
287
|
+
type AcsUsersRevokeAccessToAllEntrancesRequest,
|
|
288
|
+
type AcsUsersSuspendOptions,
|
|
289
|
+
type AcsUsersSuspendParameters,
|
|
290
|
+
type AcsUsersSuspendRequest,
|
|
291
|
+
type AcsUsersUnsuspendOptions,
|
|
292
|
+
type AcsUsersUnsuspendParameters,
|
|
293
|
+
type AcsUsersUnsuspendRequest,
|
|
294
|
+
type AcsUsersUpdateOptions,
|
|
295
|
+
type AcsUsersUpdateParameters,
|
|
296
|
+
type AcsUsersUpdateRequest,
|
|
297
|
+
SeamHttpAcsUsers,
|
|
298
|
+
} from './acs/users/index.js'
|
|
299
|
+
import {
|
|
300
|
+
type AcsUsersUnmanagedGetOptions,
|
|
301
|
+
type AcsUsersUnmanagedGetParameters,
|
|
302
|
+
type AcsUsersUnmanagedGetRequest,
|
|
303
|
+
type AcsUsersUnmanagedListOptions,
|
|
304
|
+
type AcsUsersUnmanagedListParameters,
|
|
305
|
+
type AcsUsersUnmanagedListRequest,
|
|
306
|
+
SeamHttpAcsUsersUnmanaged,
|
|
307
|
+
} from './acs/users/unmanaged/index.js'
|
|
308
|
+
import {
|
|
309
|
+
type ActionAttemptsGetOptions,
|
|
310
|
+
type ActionAttemptsGetParameters,
|
|
311
|
+
type ActionAttemptsGetRequest,
|
|
312
|
+
type ActionAttemptsListOptions,
|
|
313
|
+
type ActionAttemptsListParameters,
|
|
314
|
+
type ActionAttemptsListRequest,
|
|
315
|
+
SeamHttpActionAttempts,
|
|
316
|
+
} from './action-attempts/index.js'
|
|
317
|
+
import {
|
|
318
|
+
type BridgesGetOptions,
|
|
319
|
+
type BridgesGetParameters,
|
|
320
|
+
type BridgesGetRequest,
|
|
321
|
+
type BridgesListOptions,
|
|
322
|
+
type BridgesListParameters,
|
|
323
|
+
type BridgesListRequest,
|
|
324
|
+
SeamHttpBridges,
|
|
325
|
+
} from './bridges/index.js'
|
|
326
|
+
import {
|
|
327
|
+
type ClientSessionsCreateOptions,
|
|
328
|
+
type ClientSessionsCreateParameters,
|
|
329
|
+
type ClientSessionsCreateRequest,
|
|
330
|
+
type ClientSessionsDeleteOptions,
|
|
331
|
+
type ClientSessionsDeleteParameters,
|
|
332
|
+
type ClientSessionsDeleteRequest,
|
|
333
|
+
type ClientSessionsGetOptions,
|
|
334
|
+
type ClientSessionsGetOrCreateOptions,
|
|
335
|
+
type ClientSessionsGetOrCreateParameters,
|
|
336
|
+
type ClientSessionsGetOrCreateRequest,
|
|
337
|
+
type ClientSessionsGetParameters,
|
|
338
|
+
type ClientSessionsGetRequest,
|
|
339
|
+
type ClientSessionsGrantAccessOptions,
|
|
340
|
+
type ClientSessionsGrantAccessParameters,
|
|
341
|
+
type ClientSessionsGrantAccessRequest,
|
|
342
|
+
type ClientSessionsListOptions,
|
|
343
|
+
type ClientSessionsListParameters,
|
|
344
|
+
type ClientSessionsListRequest,
|
|
345
|
+
type ClientSessionsRevokeOptions,
|
|
346
|
+
type ClientSessionsRevokeParameters,
|
|
347
|
+
type ClientSessionsRevokeRequest,
|
|
348
|
+
SeamHttpClientSessions,
|
|
349
|
+
} from './client-sessions/index.js'
|
|
350
|
+
import {
|
|
351
|
+
type ConnectWebviewsCreateOptions,
|
|
352
|
+
type ConnectWebviewsCreateParameters,
|
|
353
|
+
type ConnectWebviewsCreateRequest,
|
|
354
|
+
type ConnectWebviewsDeleteOptions,
|
|
355
|
+
type ConnectWebviewsDeleteParameters,
|
|
356
|
+
type ConnectWebviewsDeleteRequest,
|
|
357
|
+
type ConnectWebviewsGetOptions,
|
|
358
|
+
type ConnectWebviewsGetParameters,
|
|
359
|
+
type ConnectWebviewsGetRequest,
|
|
360
|
+
type ConnectWebviewsListOptions,
|
|
361
|
+
type ConnectWebviewsListParameters,
|
|
362
|
+
type ConnectWebviewsListRequest,
|
|
363
|
+
SeamHttpConnectWebviews,
|
|
364
|
+
} from './connect-webviews/index.js'
|
|
365
|
+
import {
|
|
366
|
+
type ConnectedAccountsDeleteOptions,
|
|
367
|
+
type ConnectedAccountsDeleteParameters,
|
|
368
|
+
type ConnectedAccountsDeleteRequest,
|
|
369
|
+
type ConnectedAccountsGetOptions,
|
|
370
|
+
type ConnectedAccountsGetParameters,
|
|
371
|
+
type ConnectedAccountsGetRequest,
|
|
372
|
+
type ConnectedAccountsListOptions,
|
|
373
|
+
type ConnectedAccountsListParameters,
|
|
374
|
+
type ConnectedAccountsListRequest,
|
|
375
|
+
type ConnectedAccountsSyncOptions,
|
|
376
|
+
type ConnectedAccountsSyncParameters,
|
|
377
|
+
type ConnectedAccountsSyncRequest,
|
|
378
|
+
type ConnectedAccountsUpdateOptions,
|
|
379
|
+
type ConnectedAccountsUpdateParameters,
|
|
380
|
+
type ConnectedAccountsUpdateRequest,
|
|
381
|
+
SeamHttpConnectedAccounts,
|
|
382
|
+
} from './connected-accounts/index.js'
|
|
383
|
+
import {
|
|
384
|
+
type DevicesDeleteOptions,
|
|
385
|
+
type DevicesDeleteParameters,
|
|
386
|
+
type DevicesDeleteRequest,
|
|
387
|
+
type DevicesGetOptions,
|
|
388
|
+
type DevicesGetParameters,
|
|
389
|
+
type DevicesGetRequest,
|
|
390
|
+
type DevicesListDeviceProvidersOptions,
|
|
391
|
+
type DevicesListDeviceProvidersParameters,
|
|
392
|
+
type DevicesListDeviceProvidersRequest,
|
|
393
|
+
type DevicesListOptions,
|
|
394
|
+
type DevicesListParameters,
|
|
395
|
+
type DevicesListRequest,
|
|
396
|
+
type DevicesUpdateOptions,
|
|
397
|
+
type DevicesUpdateParameters,
|
|
398
|
+
type DevicesUpdateRequest,
|
|
399
|
+
SeamHttpDevices,
|
|
400
|
+
} from './devices/index.js'
|
|
401
|
+
import {
|
|
402
|
+
type DevicesSimulateConnectOptions,
|
|
403
|
+
type DevicesSimulateConnectParameters,
|
|
404
|
+
type DevicesSimulateConnectRequest,
|
|
405
|
+
type DevicesSimulateDisconnectOptions,
|
|
406
|
+
type DevicesSimulateDisconnectParameters,
|
|
407
|
+
type DevicesSimulateDisconnectRequest,
|
|
408
|
+
type DevicesSimulateRemoveOptions,
|
|
409
|
+
type DevicesSimulateRemoveParameters,
|
|
410
|
+
type DevicesSimulateRemoveRequest,
|
|
411
|
+
SeamHttpDevicesSimulate,
|
|
412
|
+
} from './devices/simulate/index.js'
|
|
413
|
+
import {
|
|
414
|
+
type DevicesUnmanagedGetOptions,
|
|
415
|
+
type DevicesUnmanagedGetParameters,
|
|
416
|
+
type DevicesUnmanagedGetRequest,
|
|
417
|
+
type DevicesUnmanagedListOptions,
|
|
418
|
+
type DevicesUnmanagedListParameters,
|
|
419
|
+
type DevicesUnmanagedListRequest,
|
|
420
|
+
type DevicesUnmanagedUpdateOptions,
|
|
421
|
+
type DevicesUnmanagedUpdateParameters,
|
|
422
|
+
type DevicesUnmanagedUpdateRequest,
|
|
423
|
+
SeamHttpDevicesUnmanaged,
|
|
424
|
+
} from './devices/unmanaged/index.js'
|
|
425
|
+
import {
|
|
426
|
+
type EventsGetOptions,
|
|
427
|
+
type EventsGetParameters,
|
|
428
|
+
type EventsGetRequest,
|
|
429
|
+
type EventsListOptions,
|
|
430
|
+
type EventsListParameters,
|
|
431
|
+
type EventsListRequest,
|
|
432
|
+
SeamHttpEvents,
|
|
433
|
+
} from './events/index.js'
|
|
434
|
+
import {
|
|
435
|
+
type LocksGetOptions,
|
|
436
|
+
type LocksGetParameters,
|
|
437
|
+
type LocksGetRequest,
|
|
438
|
+
type LocksListOptions,
|
|
439
|
+
type LocksListParameters,
|
|
440
|
+
type LocksListRequest,
|
|
441
|
+
type LocksLockDoorOptions,
|
|
442
|
+
type LocksLockDoorParameters,
|
|
443
|
+
type LocksLockDoorRequest,
|
|
444
|
+
type LocksUnlockDoorOptions,
|
|
445
|
+
type LocksUnlockDoorParameters,
|
|
446
|
+
type LocksUnlockDoorRequest,
|
|
447
|
+
SeamHttpLocks,
|
|
448
|
+
} from './locks/index.js'
|
|
449
|
+
import {
|
|
450
|
+
type LocksSimulateKeypadCodeEntryOptions,
|
|
451
|
+
type LocksSimulateKeypadCodeEntryParameters,
|
|
452
|
+
type LocksSimulateKeypadCodeEntryRequest,
|
|
453
|
+
type LocksSimulateManualLockViaKeypadOptions,
|
|
454
|
+
type LocksSimulateManualLockViaKeypadParameters,
|
|
455
|
+
type LocksSimulateManualLockViaKeypadRequest,
|
|
456
|
+
SeamHttpLocksSimulate,
|
|
457
|
+
} from './locks/simulate/index.js'
|
|
458
|
+
import {
|
|
459
|
+
type NetworksGetOptions,
|
|
460
|
+
type NetworksGetParameters,
|
|
461
|
+
type NetworksGetRequest,
|
|
462
|
+
type NetworksListOptions,
|
|
463
|
+
type NetworksListParameters,
|
|
464
|
+
type NetworksListRequest,
|
|
465
|
+
SeamHttpNetworks,
|
|
466
|
+
} from './networks/index.js'
|
|
467
|
+
import {
|
|
468
|
+
type NoiseSensorsListOptions,
|
|
469
|
+
type NoiseSensorsListParameters,
|
|
470
|
+
type NoiseSensorsListRequest,
|
|
471
|
+
SeamHttpNoiseSensors,
|
|
472
|
+
} from './noise-sensors/index.js'
|
|
473
|
+
import {
|
|
474
|
+
type NoiseSensorsNoiseThresholdsCreateOptions,
|
|
475
|
+
type NoiseSensorsNoiseThresholdsCreateParameters,
|
|
476
|
+
type NoiseSensorsNoiseThresholdsCreateRequest,
|
|
477
|
+
type NoiseSensorsNoiseThresholdsDeleteOptions,
|
|
478
|
+
type NoiseSensorsNoiseThresholdsDeleteParameters,
|
|
479
|
+
type NoiseSensorsNoiseThresholdsDeleteRequest,
|
|
480
|
+
type NoiseSensorsNoiseThresholdsGetOptions,
|
|
481
|
+
type NoiseSensorsNoiseThresholdsGetParameters,
|
|
482
|
+
type NoiseSensorsNoiseThresholdsGetRequest,
|
|
483
|
+
type NoiseSensorsNoiseThresholdsListOptions,
|
|
484
|
+
type NoiseSensorsNoiseThresholdsListParameters,
|
|
485
|
+
type NoiseSensorsNoiseThresholdsListRequest,
|
|
486
|
+
type NoiseSensorsNoiseThresholdsUpdateOptions,
|
|
487
|
+
type NoiseSensorsNoiseThresholdsUpdateParameters,
|
|
488
|
+
type NoiseSensorsNoiseThresholdsUpdateRequest,
|
|
489
|
+
SeamHttpNoiseSensorsNoiseThresholds,
|
|
490
|
+
} from './noise-sensors/noise-thresholds/index.js'
|
|
491
|
+
import {
|
|
492
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdOptions,
|
|
493
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdParameters,
|
|
494
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdRequest,
|
|
495
|
+
SeamHttpNoiseSensorsSimulate,
|
|
496
|
+
} from './noise-sensors/simulate/index.js'
|
|
497
|
+
import {
|
|
498
|
+
type PhonesDeactivateOptions,
|
|
499
|
+
type PhonesDeactivateParameters,
|
|
500
|
+
type PhonesDeactivateRequest,
|
|
501
|
+
type PhonesGetOptions,
|
|
502
|
+
type PhonesGetParameters,
|
|
503
|
+
type PhonesGetRequest,
|
|
504
|
+
type PhonesListOptions,
|
|
505
|
+
type PhonesListParameters,
|
|
506
|
+
type PhonesListRequest,
|
|
507
|
+
SeamHttpPhones,
|
|
508
|
+
} from './phones/index.js'
|
|
509
|
+
import {
|
|
510
|
+
type PhonesSimulateCreateSandboxPhoneOptions,
|
|
511
|
+
type PhonesSimulateCreateSandboxPhoneParameters,
|
|
512
|
+
type PhonesSimulateCreateSandboxPhoneRequest,
|
|
513
|
+
SeamHttpPhonesSimulate,
|
|
514
|
+
} from './phones/simulate/index.js'
|
|
515
|
+
import {
|
|
516
|
+
type SeamBridgeV1BridgeClientSessionsCreateOptions,
|
|
517
|
+
type SeamBridgeV1BridgeClientSessionsCreateParameters,
|
|
518
|
+
type SeamBridgeV1BridgeClientSessionsCreateRequest,
|
|
519
|
+
type SeamBridgeV1BridgeClientSessionsGetOptions,
|
|
520
|
+
type SeamBridgeV1BridgeClientSessionsGetParameters,
|
|
521
|
+
type SeamBridgeV1BridgeClientSessionsGetRequest,
|
|
522
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenOptions,
|
|
523
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters,
|
|
524
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest,
|
|
525
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeOptions,
|
|
526
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters,
|
|
527
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest,
|
|
528
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusOptions,
|
|
529
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusParameters,
|
|
530
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusRequest,
|
|
531
|
+
SeamHttpSeamBridgeV1BridgeClientSessions,
|
|
532
|
+
} from './seam/bridge/v1/bridge-client-sessions/index.js'
|
|
533
|
+
import {
|
|
534
|
+
type SeamBridgeV1BridgeConnectedSystemsListOptions,
|
|
535
|
+
type SeamBridgeV1BridgeConnectedSystemsListParameters,
|
|
536
|
+
type SeamBridgeV1BridgeConnectedSystemsListRequest,
|
|
537
|
+
SeamHttpSeamBridgeV1BridgeConnectedSystems,
|
|
538
|
+
} from './seam/bridge/v1/bridge-connected-systems/index.js'
|
|
539
|
+
import {
|
|
540
|
+
SeamHttpSeamInstantKeyV1ClientSessions,
|
|
541
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeOptions,
|
|
542
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters,
|
|
543
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest,
|
|
544
|
+
} from './seam/instant-key/v1/client-sessions/index.js'
|
|
545
|
+
import {
|
|
546
|
+
SeamHttpSeamMobileSdkV1AcsCredentials,
|
|
547
|
+
type SeamMobileSdkV1AcsCredentialsListOptions,
|
|
548
|
+
type SeamMobileSdkV1AcsCredentialsListParameters,
|
|
549
|
+
type SeamMobileSdkV1AcsCredentialsListRequest,
|
|
550
|
+
} from './seam/mobile-sdk/v1/acs/credentials/index.js'
|
|
551
|
+
import {
|
|
552
|
+
SeamHttpSeamMobileSdkV1PhoneSessions,
|
|
553
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateOptions,
|
|
554
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateParameters,
|
|
555
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateRequest,
|
|
556
|
+
} from './seam/mobile-sdk/v1/phone-sessions/index.js'
|
|
557
|
+
import {
|
|
558
|
+
SeamHttpSeamPartnerV1BuildingBlocksSpaces,
|
|
559
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions,
|
|
560
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters,
|
|
561
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest,
|
|
562
|
+
} from './seam/partner/v1/building-blocks/spaces/index.js'
|
|
563
|
+
import {
|
|
564
|
+
SeamHttpSeamPartnerV1Resources,
|
|
565
|
+
type SeamPartnerV1ResourcesListOptions,
|
|
566
|
+
type SeamPartnerV1ResourcesListParameters,
|
|
567
|
+
type SeamPartnerV1ResourcesListRequest,
|
|
568
|
+
} from './seam/partner/v1/resources/index.js'
|
|
569
|
+
import {
|
|
570
|
+
SeamHttpSpaces,
|
|
571
|
+
type SpacesAddAcsEntrancesOptions,
|
|
572
|
+
type SpacesAddAcsEntrancesParameters,
|
|
573
|
+
type SpacesAddAcsEntrancesRequest,
|
|
574
|
+
type SpacesAddDevicesOptions,
|
|
575
|
+
type SpacesAddDevicesParameters,
|
|
576
|
+
type SpacesAddDevicesRequest,
|
|
577
|
+
type SpacesCreateOptions,
|
|
578
|
+
type SpacesCreateParameters,
|
|
579
|
+
type SpacesCreateRequest,
|
|
580
|
+
type SpacesDeleteOptions,
|
|
581
|
+
type SpacesDeleteParameters,
|
|
582
|
+
type SpacesDeleteRequest,
|
|
583
|
+
type SpacesGetOptions,
|
|
584
|
+
type SpacesGetParameters,
|
|
585
|
+
type SpacesGetRequest,
|
|
586
|
+
type SpacesListOptions,
|
|
587
|
+
type SpacesListParameters,
|
|
588
|
+
type SpacesListRequest,
|
|
589
|
+
type SpacesRemoveAcsEntrancesOptions,
|
|
590
|
+
type SpacesRemoveAcsEntrancesParameters,
|
|
591
|
+
type SpacesRemoveAcsEntrancesRequest,
|
|
592
|
+
type SpacesRemoveDevicesOptions,
|
|
593
|
+
type SpacesRemoveDevicesParameters,
|
|
594
|
+
type SpacesRemoveDevicesRequest,
|
|
595
|
+
type SpacesUpdateOptions,
|
|
596
|
+
type SpacesUpdateParameters,
|
|
597
|
+
type SpacesUpdateRequest,
|
|
598
|
+
} from './spaces/index.js'
|
|
599
|
+
import {
|
|
600
|
+
SeamHttpThermostatsDailyPrograms,
|
|
601
|
+
type ThermostatsDailyProgramsCreateOptions,
|
|
602
|
+
type ThermostatsDailyProgramsCreateParameters,
|
|
603
|
+
type ThermostatsDailyProgramsCreateRequest,
|
|
604
|
+
type ThermostatsDailyProgramsDeleteOptions,
|
|
605
|
+
type ThermostatsDailyProgramsDeleteParameters,
|
|
606
|
+
type ThermostatsDailyProgramsDeleteRequest,
|
|
607
|
+
type ThermostatsDailyProgramsUpdateOptions,
|
|
608
|
+
type ThermostatsDailyProgramsUpdateParameters,
|
|
609
|
+
type ThermostatsDailyProgramsUpdateRequest,
|
|
610
|
+
} from './thermostats/daily-programs/index.js'
|
|
611
|
+
import {
|
|
612
|
+
SeamHttpThermostats,
|
|
613
|
+
type ThermostatsActivateClimatePresetOptions,
|
|
614
|
+
type ThermostatsActivateClimatePresetParameters,
|
|
615
|
+
type ThermostatsActivateClimatePresetRequest,
|
|
616
|
+
type ThermostatsCoolOptions,
|
|
617
|
+
type ThermostatsCoolParameters,
|
|
618
|
+
type ThermostatsCoolRequest,
|
|
619
|
+
type ThermostatsCreateClimatePresetOptions,
|
|
620
|
+
type ThermostatsCreateClimatePresetParameters,
|
|
621
|
+
type ThermostatsCreateClimatePresetRequest,
|
|
622
|
+
type ThermostatsDeleteClimatePresetOptions,
|
|
623
|
+
type ThermostatsDeleteClimatePresetParameters,
|
|
624
|
+
type ThermostatsDeleteClimatePresetRequest,
|
|
625
|
+
type ThermostatsGetOptions,
|
|
626
|
+
type ThermostatsGetParameters,
|
|
627
|
+
type ThermostatsGetRequest,
|
|
628
|
+
type ThermostatsHeatCoolOptions,
|
|
629
|
+
type ThermostatsHeatCoolParameters,
|
|
630
|
+
type ThermostatsHeatCoolRequest,
|
|
631
|
+
type ThermostatsHeatOptions,
|
|
632
|
+
type ThermostatsHeatParameters,
|
|
633
|
+
type ThermostatsHeatRequest,
|
|
634
|
+
type ThermostatsListOptions,
|
|
635
|
+
type ThermostatsListParameters,
|
|
636
|
+
type ThermostatsListRequest,
|
|
637
|
+
type ThermostatsOffOptions,
|
|
638
|
+
type ThermostatsOffParameters,
|
|
639
|
+
type ThermostatsOffRequest,
|
|
640
|
+
type ThermostatsSetFallbackClimatePresetOptions,
|
|
641
|
+
type ThermostatsSetFallbackClimatePresetParameters,
|
|
642
|
+
type ThermostatsSetFallbackClimatePresetRequest,
|
|
643
|
+
type ThermostatsSetFanModeOptions,
|
|
644
|
+
type ThermostatsSetFanModeParameters,
|
|
645
|
+
type ThermostatsSetFanModeRequest,
|
|
646
|
+
type ThermostatsSetHvacModeOptions,
|
|
647
|
+
type ThermostatsSetHvacModeParameters,
|
|
648
|
+
type ThermostatsSetHvacModeRequest,
|
|
649
|
+
type ThermostatsSetTemperatureThresholdOptions,
|
|
650
|
+
type ThermostatsSetTemperatureThresholdParameters,
|
|
651
|
+
type ThermostatsSetTemperatureThresholdRequest,
|
|
652
|
+
type ThermostatsUpdateClimatePresetOptions,
|
|
653
|
+
type ThermostatsUpdateClimatePresetParameters,
|
|
654
|
+
type ThermostatsUpdateClimatePresetRequest,
|
|
655
|
+
type ThermostatsUpdateWeeklyProgramOptions,
|
|
656
|
+
type ThermostatsUpdateWeeklyProgramParameters,
|
|
657
|
+
type ThermostatsUpdateWeeklyProgramRequest,
|
|
658
|
+
} from './thermostats/index.js'
|
|
659
|
+
import {
|
|
660
|
+
SeamHttpThermostatsSchedules,
|
|
661
|
+
type ThermostatsSchedulesCreateOptions,
|
|
662
|
+
type ThermostatsSchedulesCreateParameters,
|
|
663
|
+
type ThermostatsSchedulesCreateRequest,
|
|
664
|
+
type ThermostatsSchedulesDeleteOptions,
|
|
665
|
+
type ThermostatsSchedulesDeleteParameters,
|
|
666
|
+
type ThermostatsSchedulesDeleteRequest,
|
|
667
|
+
type ThermostatsSchedulesGetOptions,
|
|
668
|
+
type ThermostatsSchedulesGetParameters,
|
|
669
|
+
type ThermostatsSchedulesGetRequest,
|
|
670
|
+
type ThermostatsSchedulesListOptions,
|
|
671
|
+
type ThermostatsSchedulesListParameters,
|
|
672
|
+
type ThermostatsSchedulesListRequest,
|
|
673
|
+
type ThermostatsSchedulesUpdateOptions,
|
|
674
|
+
type ThermostatsSchedulesUpdateParameters,
|
|
675
|
+
type ThermostatsSchedulesUpdateRequest,
|
|
676
|
+
} from './thermostats/schedules/index.js'
|
|
677
|
+
import {
|
|
678
|
+
SeamHttpThermostatsSimulate,
|
|
679
|
+
type ThermostatsSimulateHvacModeAdjustedOptions,
|
|
680
|
+
type ThermostatsSimulateHvacModeAdjustedParameters,
|
|
681
|
+
type ThermostatsSimulateHvacModeAdjustedRequest,
|
|
682
|
+
type ThermostatsSimulateTemperatureReachedOptions,
|
|
683
|
+
type ThermostatsSimulateTemperatureReachedParameters,
|
|
684
|
+
type ThermostatsSimulateTemperatureReachedRequest,
|
|
685
|
+
} from './thermostats/simulate/index.js'
|
|
686
|
+
import {
|
|
687
|
+
SeamHttpUnstableAccessGrants,
|
|
688
|
+
type UnstableAccessGrantsCreateOptions,
|
|
689
|
+
type UnstableAccessGrantsCreateParameters,
|
|
690
|
+
type UnstableAccessGrantsCreateRequest,
|
|
691
|
+
type UnstableAccessGrantsDeleteOptions,
|
|
692
|
+
type UnstableAccessGrantsDeleteParameters,
|
|
693
|
+
type UnstableAccessGrantsDeleteRequest,
|
|
694
|
+
type UnstableAccessGrantsGetOptions,
|
|
695
|
+
type UnstableAccessGrantsGetParameters,
|
|
696
|
+
type UnstableAccessGrantsGetRequest,
|
|
697
|
+
type UnstableAccessGrantsListOptions,
|
|
698
|
+
type UnstableAccessGrantsListParameters,
|
|
699
|
+
type UnstableAccessGrantsListRequest,
|
|
700
|
+
} from './unstable-access-grants/index.js'
|
|
701
|
+
import {
|
|
702
|
+
SeamHttpUnstableAccessMethods,
|
|
703
|
+
type UnstableAccessMethodsDeleteOptions,
|
|
704
|
+
type UnstableAccessMethodsDeleteParameters,
|
|
705
|
+
type UnstableAccessMethodsDeleteRequest,
|
|
706
|
+
type UnstableAccessMethodsGetOptions,
|
|
707
|
+
type UnstableAccessMethodsGetParameters,
|
|
708
|
+
type UnstableAccessMethodsGetRequest,
|
|
709
|
+
type UnstableAccessMethodsListOptions,
|
|
710
|
+
type UnstableAccessMethodsListParameters,
|
|
711
|
+
type UnstableAccessMethodsListRequest,
|
|
712
|
+
} from './unstable-access-methods/index.js'
|
|
713
|
+
import {
|
|
714
|
+
SeamHttpUnstableLocations,
|
|
715
|
+
type UnstableLocationsAddAcsEntrancesOptions,
|
|
716
|
+
type UnstableLocationsAddAcsEntrancesParameters,
|
|
717
|
+
type UnstableLocationsAddAcsEntrancesRequest,
|
|
718
|
+
type UnstableLocationsAddDevicesOptions,
|
|
719
|
+
type UnstableLocationsAddDevicesParameters,
|
|
720
|
+
type UnstableLocationsAddDevicesRequest,
|
|
721
|
+
type UnstableLocationsCreateOptions,
|
|
722
|
+
type UnstableLocationsCreateParameters,
|
|
723
|
+
type UnstableLocationsCreateRequest,
|
|
724
|
+
type UnstableLocationsDeleteOptions,
|
|
725
|
+
type UnstableLocationsDeleteParameters,
|
|
726
|
+
type UnstableLocationsDeleteRequest,
|
|
727
|
+
type UnstableLocationsGetOptions,
|
|
728
|
+
type UnstableLocationsGetParameters,
|
|
729
|
+
type UnstableLocationsGetRequest,
|
|
730
|
+
type UnstableLocationsListOptions,
|
|
731
|
+
type UnstableLocationsListParameters,
|
|
732
|
+
type UnstableLocationsListRequest,
|
|
733
|
+
type UnstableLocationsRemoveAcsEntrancesOptions,
|
|
734
|
+
type UnstableLocationsRemoveAcsEntrancesParameters,
|
|
735
|
+
type UnstableLocationsRemoveAcsEntrancesRequest,
|
|
736
|
+
type UnstableLocationsRemoveDevicesOptions,
|
|
737
|
+
type UnstableLocationsRemoveDevicesParameters,
|
|
738
|
+
type UnstableLocationsRemoveDevicesRequest,
|
|
739
|
+
type UnstableLocationsUpdateOptions,
|
|
740
|
+
type UnstableLocationsUpdateParameters,
|
|
741
|
+
type UnstableLocationsUpdateRequest,
|
|
742
|
+
} from './unstable-locations/index.js'
|
|
743
|
+
import {
|
|
744
|
+
SeamHttpUnstablePartnerBuildingBlocks,
|
|
745
|
+
type UnstablePartnerBuildingBlocksConnectAccountsOptions,
|
|
746
|
+
type UnstablePartnerBuildingBlocksConnectAccountsParameters,
|
|
747
|
+
type UnstablePartnerBuildingBlocksConnectAccountsRequest,
|
|
748
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkOptions,
|
|
749
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkParameters,
|
|
750
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkRequest,
|
|
751
|
+
type UnstablePartnerBuildingBlocksManageDevicesOptions,
|
|
752
|
+
type UnstablePartnerBuildingBlocksManageDevicesParameters,
|
|
753
|
+
type UnstablePartnerBuildingBlocksManageDevicesRequest,
|
|
754
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesOptions,
|
|
755
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesParameters,
|
|
756
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesRequest,
|
|
757
|
+
} from './unstable-partner/building-blocks/index.js'
|
|
758
|
+
import {
|
|
759
|
+
SeamHttpUnstablePartnerResources,
|
|
760
|
+
type UnstablePartnerResourcesPushOptions,
|
|
761
|
+
type UnstablePartnerResourcesPushParameters,
|
|
762
|
+
type UnstablePartnerResourcesPushRequest,
|
|
763
|
+
} from './unstable-partner/resources/index.js'
|
|
764
|
+
import {
|
|
765
|
+
SeamHttpUserIdentitiesEnrollmentAutomations,
|
|
766
|
+
type UserIdentitiesEnrollmentAutomationsDeleteOptions,
|
|
767
|
+
type UserIdentitiesEnrollmentAutomationsDeleteParameters,
|
|
768
|
+
type UserIdentitiesEnrollmentAutomationsDeleteRequest,
|
|
769
|
+
type UserIdentitiesEnrollmentAutomationsGetOptions,
|
|
770
|
+
type UserIdentitiesEnrollmentAutomationsGetParameters,
|
|
771
|
+
type UserIdentitiesEnrollmentAutomationsGetRequest,
|
|
772
|
+
type UserIdentitiesEnrollmentAutomationsLaunchOptions,
|
|
773
|
+
type UserIdentitiesEnrollmentAutomationsLaunchParameters,
|
|
774
|
+
type UserIdentitiesEnrollmentAutomationsLaunchRequest,
|
|
775
|
+
type UserIdentitiesEnrollmentAutomationsListOptions,
|
|
776
|
+
type UserIdentitiesEnrollmentAutomationsListParameters,
|
|
777
|
+
type UserIdentitiesEnrollmentAutomationsListRequest,
|
|
778
|
+
} from './user-identities/enrollment-automations/index.js'
|
|
779
|
+
import {
|
|
780
|
+
SeamHttpUserIdentities,
|
|
781
|
+
type UserIdentitiesAddAcsUserOptions,
|
|
782
|
+
type UserIdentitiesAddAcsUserParameters,
|
|
783
|
+
type UserIdentitiesAddAcsUserRequest,
|
|
784
|
+
type UserIdentitiesCreateOptions,
|
|
785
|
+
type UserIdentitiesCreateParameters,
|
|
786
|
+
type UserIdentitiesCreateRequest,
|
|
787
|
+
type UserIdentitiesDeleteOptions,
|
|
788
|
+
type UserIdentitiesDeleteParameters,
|
|
789
|
+
type UserIdentitiesDeleteRequest,
|
|
790
|
+
type UserIdentitiesGenerateInstantKeyOptions,
|
|
791
|
+
type UserIdentitiesGenerateInstantKeyParameters,
|
|
792
|
+
type UserIdentitiesGenerateInstantKeyRequest,
|
|
793
|
+
type UserIdentitiesGetOptions,
|
|
794
|
+
type UserIdentitiesGetParameters,
|
|
795
|
+
type UserIdentitiesGetRequest,
|
|
796
|
+
type UserIdentitiesGrantAccessToDeviceOptions,
|
|
797
|
+
type UserIdentitiesGrantAccessToDeviceParameters,
|
|
798
|
+
type UserIdentitiesGrantAccessToDeviceRequest,
|
|
799
|
+
type UserIdentitiesListAccessibleDevicesOptions,
|
|
800
|
+
type UserIdentitiesListAccessibleDevicesParameters,
|
|
801
|
+
type UserIdentitiesListAccessibleDevicesRequest,
|
|
802
|
+
type UserIdentitiesListAcsSystemsOptions,
|
|
803
|
+
type UserIdentitiesListAcsSystemsParameters,
|
|
804
|
+
type UserIdentitiesListAcsSystemsRequest,
|
|
805
|
+
type UserIdentitiesListAcsUsersOptions,
|
|
806
|
+
type UserIdentitiesListAcsUsersParameters,
|
|
807
|
+
type UserIdentitiesListAcsUsersRequest,
|
|
808
|
+
type UserIdentitiesListOptions,
|
|
809
|
+
type UserIdentitiesListParameters,
|
|
810
|
+
type UserIdentitiesListRequest,
|
|
811
|
+
type UserIdentitiesRemoveAcsUserOptions,
|
|
812
|
+
type UserIdentitiesRemoveAcsUserParameters,
|
|
813
|
+
type UserIdentitiesRemoveAcsUserRequest,
|
|
814
|
+
type UserIdentitiesRevokeAccessToDeviceOptions,
|
|
815
|
+
type UserIdentitiesRevokeAccessToDeviceParameters,
|
|
816
|
+
type UserIdentitiesRevokeAccessToDeviceRequest,
|
|
817
|
+
type UserIdentitiesUpdateOptions,
|
|
818
|
+
type UserIdentitiesUpdateParameters,
|
|
819
|
+
type UserIdentitiesUpdateRequest,
|
|
820
|
+
} from './user-identities/index.js'
|
|
821
|
+
import {
|
|
822
|
+
SeamHttpWebhooks,
|
|
823
|
+
type WebhooksCreateOptions,
|
|
824
|
+
type WebhooksCreateParameters,
|
|
825
|
+
type WebhooksCreateRequest,
|
|
826
|
+
type WebhooksDeleteOptions,
|
|
827
|
+
type WebhooksDeleteParameters,
|
|
828
|
+
type WebhooksDeleteRequest,
|
|
829
|
+
type WebhooksGetOptions,
|
|
830
|
+
type WebhooksGetParameters,
|
|
831
|
+
type WebhooksGetRequest,
|
|
832
|
+
type WebhooksListOptions,
|
|
833
|
+
type WebhooksListParameters,
|
|
834
|
+
type WebhooksListRequest,
|
|
835
|
+
type WebhooksUpdateOptions,
|
|
836
|
+
type WebhooksUpdateParameters,
|
|
837
|
+
type WebhooksUpdateRequest,
|
|
838
|
+
} from './webhooks/index.js'
|
|
839
|
+
import {
|
|
840
|
+
SeamHttpWorkspaces,
|
|
841
|
+
type WorkspacesCreateOptions,
|
|
842
|
+
type WorkspacesCreateParameters,
|
|
843
|
+
type WorkspacesCreateRequest,
|
|
844
|
+
type WorkspacesGetOptions,
|
|
845
|
+
type WorkspacesGetParameters,
|
|
846
|
+
type WorkspacesGetRequest,
|
|
847
|
+
type WorkspacesListOptions,
|
|
848
|
+
type WorkspacesListParameters,
|
|
849
|
+
type WorkspacesListRequest,
|
|
850
|
+
type WorkspacesResetSandboxOptions,
|
|
851
|
+
type WorkspacesResetSandboxParameters,
|
|
852
|
+
type WorkspacesResetSandboxRequest,
|
|
853
|
+
type WorkspacesUpdateOptions,
|
|
854
|
+
type WorkspacesUpdateParameters,
|
|
855
|
+
type WorkspacesUpdateRequest,
|
|
856
|
+
} from './workspaces/index.js'
|
|
70
857
|
|
|
71
858
|
export class SeamHttpEndpoints {
|
|
72
859
|
client: Client
|
|
@@ -195,7 +982,10 @@ export class SeamHttpEndpoints {
|
|
|
195
982
|
await clientSessions.get()
|
|
196
983
|
}
|
|
197
984
|
|
|
198
|
-
get ['/access_codes/create']():
|
|
985
|
+
get ['/access_codes/create'](): (
|
|
986
|
+
parameters?: AccessCodesCreateParameters,
|
|
987
|
+
options?: AccessCodesCreateOptions,
|
|
988
|
+
) => AccessCodesCreateRequest {
|
|
199
989
|
const { client, defaults } = this
|
|
200
990
|
return function accessCodesCreate(
|
|
201
991
|
...args: Parameters<SeamHttpAccessCodes['create']>
|
|
@@ -205,7 +995,10 @@ export class SeamHttpEndpoints {
|
|
|
205
995
|
}
|
|
206
996
|
}
|
|
207
997
|
|
|
208
|
-
get ['/access_codes/create_multiple']():
|
|
998
|
+
get ['/access_codes/create_multiple'](): (
|
|
999
|
+
parameters?: AccessCodesCreateMultipleParameters,
|
|
1000
|
+
options?: AccessCodesCreateMultipleOptions,
|
|
1001
|
+
) => AccessCodesCreateMultipleRequest {
|
|
209
1002
|
const { client, defaults } = this
|
|
210
1003
|
return function accessCodesCreateMultiple(
|
|
211
1004
|
...args: Parameters<SeamHttpAccessCodes['createMultiple']>
|
|
@@ -215,7 +1008,10 @@ export class SeamHttpEndpoints {
|
|
|
215
1008
|
}
|
|
216
1009
|
}
|
|
217
1010
|
|
|
218
|
-
get ['/access_codes/delete']():
|
|
1011
|
+
get ['/access_codes/delete'](): (
|
|
1012
|
+
parameters?: AccessCodesDeleteParameters,
|
|
1013
|
+
options?: AccessCodesDeleteOptions,
|
|
1014
|
+
) => AccessCodesDeleteRequest {
|
|
219
1015
|
const { client, defaults } = this
|
|
220
1016
|
return function accessCodesDelete(
|
|
221
1017
|
...args: Parameters<SeamHttpAccessCodes['delete']>
|
|
@@ -225,7 +1021,10 @@ export class SeamHttpEndpoints {
|
|
|
225
1021
|
}
|
|
226
1022
|
}
|
|
227
1023
|
|
|
228
|
-
get ['/access_codes/generate_code']():
|
|
1024
|
+
get ['/access_codes/generate_code'](): (
|
|
1025
|
+
parameters?: AccessCodesGenerateCodeParameters,
|
|
1026
|
+
options?: AccessCodesGenerateCodeOptions,
|
|
1027
|
+
) => AccessCodesGenerateCodeRequest {
|
|
229
1028
|
const { client, defaults } = this
|
|
230
1029
|
return function accessCodesGenerateCode(
|
|
231
1030
|
...args: Parameters<SeamHttpAccessCodes['generateCode']>
|
|
@@ -235,7 +1034,10 @@ export class SeamHttpEndpoints {
|
|
|
235
1034
|
}
|
|
236
1035
|
}
|
|
237
1036
|
|
|
238
|
-
get ['/access_codes/get']():
|
|
1037
|
+
get ['/access_codes/get'](): (
|
|
1038
|
+
parameters?: AccessCodesGetParameters,
|
|
1039
|
+
options?: AccessCodesGetOptions,
|
|
1040
|
+
) => AccessCodesGetRequest {
|
|
239
1041
|
const { client, defaults } = this
|
|
240
1042
|
return function accessCodesGet(
|
|
241
1043
|
...args: Parameters<SeamHttpAccessCodes['get']>
|
|
@@ -245,7 +1047,10 @@ export class SeamHttpEndpoints {
|
|
|
245
1047
|
}
|
|
246
1048
|
}
|
|
247
1049
|
|
|
248
|
-
get ['/access_codes/list']():
|
|
1050
|
+
get ['/access_codes/list'](): (
|
|
1051
|
+
parameters?: AccessCodesListParameters,
|
|
1052
|
+
options?: AccessCodesListOptions,
|
|
1053
|
+
) => AccessCodesListRequest {
|
|
249
1054
|
const { client, defaults } = this
|
|
250
1055
|
return function accessCodesList(
|
|
251
1056
|
...args: Parameters<SeamHttpAccessCodes['list']>
|
|
@@ -255,7 +1060,10 @@ export class SeamHttpEndpoints {
|
|
|
255
1060
|
}
|
|
256
1061
|
}
|
|
257
1062
|
|
|
258
|
-
get ['/access_codes/pull_backup_access_code']():
|
|
1063
|
+
get ['/access_codes/pull_backup_access_code'](): (
|
|
1064
|
+
parameters?: AccessCodesPullBackupAccessCodeParameters,
|
|
1065
|
+
options?: AccessCodesPullBackupAccessCodeOptions,
|
|
1066
|
+
) => AccessCodesPullBackupAccessCodeRequest {
|
|
259
1067
|
const { client, defaults } = this
|
|
260
1068
|
return function accessCodesPullBackupAccessCode(
|
|
261
1069
|
...args: Parameters<SeamHttpAccessCodes['pullBackupAccessCode']>
|
|
@@ -265,7 +1073,10 @@ export class SeamHttpEndpoints {
|
|
|
265
1073
|
}
|
|
266
1074
|
}
|
|
267
1075
|
|
|
268
|
-
get ['/access_codes/report_device_constraints']():
|
|
1076
|
+
get ['/access_codes/report_device_constraints'](): (
|
|
1077
|
+
parameters?: AccessCodesReportDeviceConstraintsParameters,
|
|
1078
|
+
options?: AccessCodesReportDeviceConstraintsOptions,
|
|
1079
|
+
) => AccessCodesReportDeviceConstraintsRequest {
|
|
269
1080
|
const { client, defaults } = this
|
|
270
1081
|
return function accessCodesReportDeviceConstraints(
|
|
271
1082
|
...args: Parameters<SeamHttpAccessCodes['reportDeviceConstraints']>
|
|
@@ -275,7 +1086,10 @@ export class SeamHttpEndpoints {
|
|
|
275
1086
|
}
|
|
276
1087
|
}
|
|
277
1088
|
|
|
278
|
-
get ['/access_codes/update']():
|
|
1089
|
+
get ['/access_codes/update'](): (
|
|
1090
|
+
parameters?: AccessCodesUpdateParameters,
|
|
1091
|
+
options?: AccessCodesUpdateOptions,
|
|
1092
|
+
) => AccessCodesUpdateRequest {
|
|
279
1093
|
const { client, defaults } = this
|
|
280
1094
|
return function accessCodesUpdate(
|
|
281
1095
|
...args: Parameters<SeamHttpAccessCodes['update']>
|
|
@@ -285,7 +1099,10 @@ export class SeamHttpEndpoints {
|
|
|
285
1099
|
}
|
|
286
1100
|
}
|
|
287
1101
|
|
|
288
|
-
get ['/access_codes/update_multiple']():
|
|
1102
|
+
get ['/access_codes/update_multiple'](): (
|
|
1103
|
+
parameters?: AccessCodesUpdateMultipleParameters,
|
|
1104
|
+
options?: AccessCodesUpdateMultipleOptions,
|
|
1105
|
+
) => AccessCodesUpdateMultipleRequest {
|
|
289
1106
|
const { client, defaults } = this
|
|
290
1107
|
return function accessCodesUpdateMultiple(
|
|
291
1108
|
...args: Parameters<SeamHttpAccessCodes['updateMultiple']>
|
|
@@ -295,7 +1112,10 @@ export class SeamHttpEndpoints {
|
|
|
295
1112
|
}
|
|
296
1113
|
}
|
|
297
1114
|
|
|
298
|
-
get ['/access_codes/simulate/create_unmanaged_access_code']():
|
|
1115
|
+
get ['/access_codes/simulate/create_unmanaged_access_code'](): (
|
|
1116
|
+
parameters?: AccessCodesSimulateCreateUnmanagedAccessCodeParameters,
|
|
1117
|
+
options?: AccessCodesSimulateCreateUnmanagedAccessCodeOptions,
|
|
1118
|
+
) => AccessCodesSimulateCreateUnmanagedAccessCodeRequest {
|
|
299
1119
|
const { client, defaults } = this
|
|
300
1120
|
return function accessCodesSimulateCreateUnmanagedAccessCode(
|
|
301
1121
|
...args: Parameters<
|
|
@@ -307,7 +1127,10 @@ export class SeamHttpEndpoints {
|
|
|
307
1127
|
}
|
|
308
1128
|
}
|
|
309
1129
|
|
|
310
|
-
get ['/access_codes/unmanaged/convert_to_managed']():
|
|
1130
|
+
get ['/access_codes/unmanaged/convert_to_managed'](): (
|
|
1131
|
+
parameters?: AccessCodesUnmanagedConvertToManagedParameters,
|
|
1132
|
+
options?: AccessCodesUnmanagedConvertToManagedOptions,
|
|
1133
|
+
) => AccessCodesUnmanagedConvertToManagedRequest {
|
|
311
1134
|
const { client, defaults } = this
|
|
312
1135
|
return function accessCodesUnmanagedConvertToManaged(
|
|
313
1136
|
...args: Parameters<SeamHttpAccessCodesUnmanaged['convertToManaged']>
|
|
@@ -317,7 +1140,10 @@ export class SeamHttpEndpoints {
|
|
|
317
1140
|
}
|
|
318
1141
|
}
|
|
319
1142
|
|
|
320
|
-
get ['/access_codes/unmanaged/delete']():
|
|
1143
|
+
get ['/access_codes/unmanaged/delete'](): (
|
|
1144
|
+
parameters?: AccessCodesUnmanagedDeleteParameters,
|
|
1145
|
+
options?: AccessCodesUnmanagedDeleteOptions,
|
|
1146
|
+
) => AccessCodesUnmanagedDeleteRequest {
|
|
321
1147
|
const { client, defaults } = this
|
|
322
1148
|
return function accessCodesUnmanagedDelete(
|
|
323
1149
|
...args: Parameters<SeamHttpAccessCodesUnmanaged['delete']>
|
|
@@ -327,7 +1153,10 @@ export class SeamHttpEndpoints {
|
|
|
327
1153
|
}
|
|
328
1154
|
}
|
|
329
1155
|
|
|
330
|
-
get ['/access_codes/unmanaged/get']():
|
|
1156
|
+
get ['/access_codes/unmanaged/get'](): (
|
|
1157
|
+
parameters?: AccessCodesUnmanagedGetParameters,
|
|
1158
|
+
options?: AccessCodesUnmanagedGetOptions,
|
|
1159
|
+
) => AccessCodesUnmanagedGetRequest {
|
|
331
1160
|
const { client, defaults } = this
|
|
332
1161
|
return function accessCodesUnmanagedGet(
|
|
333
1162
|
...args: Parameters<SeamHttpAccessCodesUnmanaged['get']>
|
|
@@ -337,7 +1166,10 @@ export class SeamHttpEndpoints {
|
|
|
337
1166
|
}
|
|
338
1167
|
}
|
|
339
1168
|
|
|
340
|
-
get ['/access_codes/unmanaged/list']():
|
|
1169
|
+
get ['/access_codes/unmanaged/list'](): (
|
|
1170
|
+
parameters?: AccessCodesUnmanagedListParameters,
|
|
1171
|
+
options?: AccessCodesUnmanagedListOptions,
|
|
1172
|
+
) => AccessCodesUnmanagedListRequest {
|
|
341
1173
|
const { client, defaults } = this
|
|
342
1174
|
return function accessCodesUnmanagedList(
|
|
343
1175
|
...args: Parameters<SeamHttpAccessCodesUnmanaged['list']>
|
|
@@ -347,7 +1179,10 @@ export class SeamHttpEndpoints {
|
|
|
347
1179
|
}
|
|
348
1180
|
}
|
|
349
1181
|
|
|
350
|
-
get ['/access_codes/unmanaged/update']():
|
|
1182
|
+
get ['/access_codes/unmanaged/update'](): (
|
|
1183
|
+
parameters?: AccessCodesUnmanagedUpdateParameters,
|
|
1184
|
+
options?: AccessCodesUnmanagedUpdateOptions,
|
|
1185
|
+
) => AccessCodesUnmanagedUpdateRequest {
|
|
351
1186
|
const { client, defaults } = this
|
|
352
1187
|
return function accessCodesUnmanagedUpdate(
|
|
353
1188
|
...args: Parameters<SeamHttpAccessCodesUnmanaged['update']>
|
|
@@ -357,7 +1192,10 @@ export class SeamHttpEndpoints {
|
|
|
357
1192
|
}
|
|
358
1193
|
}
|
|
359
1194
|
|
|
360
|
-
get ['/access_grants/create']():
|
|
1195
|
+
get ['/access_grants/create'](): (
|
|
1196
|
+
parameters?: AccessGrantsCreateParameters,
|
|
1197
|
+
options?: AccessGrantsCreateOptions,
|
|
1198
|
+
) => AccessGrantsCreateRequest {
|
|
361
1199
|
const { client, defaults } = this
|
|
362
1200
|
return function accessGrantsCreate(
|
|
363
1201
|
...args: Parameters<SeamHttpAccessGrants['create']>
|
|
@@ -367,7 +1205,10 @@ export class SeamHttpEndpoints {
|
|
|
367
1205
|
}
|
|
368
1206
|
}
|
|
369
1207
|
|
|
370
|
-
get ['/access_grants/delete']():
|
|
1208
|
+
get ['/access_grants/delete'](): (
|
|
1209
|
+
parameters?: AccessGrantsDeleteParameters,
|
|
1210
|
+
options?: AccessGrantsDeleteOptions,
|
|
1211
|
+
) => AccessGrantsDeleteRequest {
|
|
371
1212
|
const { client, defaults } = this
|
|
372
1213
|
return function accessGrantsDelete(
|
|
373
1214
|
...args: Parameters<SeamHttpAccessGrants['delete']>
|
|
@@ -377,7 +1218,10 @@ export class SeamHttpEndpoints {
|
|
|
377
1218
|
}
|
|
378
1219
|
}
|
|
379
1220
|
|
|
380
|
-
get ['/access_grants/get']():
|
|
1221
|
+
get ['/access_grants/get'](): (
|
|
1222
|
+
parameters?: AccessGrantsGetParameters,
|
|
1223
|
+
options?: AccessGrantsGetOptions,
|
|
1224
|
+
) => AccessGrantsGetRequest {
|
|
381
1225
|
const { client, defaults } = this
|
|
382
1226
|
return function accessGrantsGet(
|
|
383
1227
|
...args: Parameters<SeamHttpAccessGrants['get']>
|
|
@@ -387,7 +1231,10 @@ export class SeamHttpEndpoints {
|
|
|
387
1231
|
}
|
|
388
1232
|
}
|
|
389
1233
|
|
|
390
|
-
get ['/access_grants/list']():
|
|
1234
|
+
get ['/access_grants/list'](): (
|
|
1235
|
+
parameters?: AccessGrantsListParameters,
|
|
1236
|
+
options?: AccessGrantsListOptions,
|
|
1237
|
+
) => AccessGrantsListRequest {
|
|
391
1238
|
const { client, defaults } = this
|
|
392
1239
|
return function accessGrantsList(
|
|
393
1240
|
...args: Parameters<SeamHttpAccessGrants['list']>
|
|
@@ -397,7 +1244,10 @@ export class SeamHttpEndpoints {
|
|
|
397
1244
|
}
|
|
398
1245
|
}
|
|
399
1246
|
|
|
400
|
-
get ['/access_grants/update']():
|
|
1247
|
+
get ['/access_grants/update'](): (
|
|
1248
|
+
parameters?: AccessGrantsUpdateParameters,
|
|
1249
|
+
options?: AccessGrantsUpdateOptions,
|
|
1250
|
+
) => AccessGrantsUpdateRequest {
|
|
401
1251
|
const { client, defaults } = this
|
|
402
1252
|
return function accessGrantsUpdate(
|
|
403
1253
|
...args: Parameters<SeamHttpAccessGrants['update']>
|
|
@@ -407,7 +1257,10 @@ export class SeamHttpEndpoints {
|
|
|
407
1257
|
}
|
|
408
1258
|
}
|
|
409
1259
|
|
|
410
|
-
get ['/access_methods/delete']():
|
|
1260
|
+
get ['/access_methods/delete'](): (
|
|
1261
|
+
parameters?: AccessMethodsDeleteParameters,
|
|
1262
|
+
options?: AccessMethodsDeleteOptions,
|
|
1263
|
+
) => AccessMethodsDeleteRequest {
|
|
411
1264
|
const { client, defaults } = this
|
|
412
1265
|
return function accessMethodsDelete(
|
|
413
1266
|
...args: Parameters<SeamHttpAccessMethods['delete']>
|
|
@@ -417,7 +1270,10 @@ export class SeamHttpEndpoints {
|
|
|
417
1270
|
}
|
|
418
1271
|
}
|
|
419
1272
|
|
|
420
|
-
get ['/access_methods/get']():
|
|
1273
|
+
get ['/access_methods/get'](): (
|
|
1274
|
+
parameters?: AccessMethodsGetParameters,
|
|
1275
|
+
options?: AccessMethodsGetOptions,
|
|
1276
|
+
) => AccessMethodsGetRequest {
|
|
421
1277
|
const { client, defaults } = this
|
|
422
1278
|
return function accessMethodsGet(
|
|
423
1279
|
...args: Parameters<SeamHttpAccessMethods['get']>
|
|
@@ -427,7 +1283,10 @@ export class SeamHttpEndpoints {
|
|
|
427
1283
|
}
|
|
428
1284
|
}
|
|
429
1285
|
|
|
430
|
-
get ['/access_methods/list']():
|
|
1286
|
+
get ['/access_methods/list'](): (
|
|
1287
|
+
parameters?: AccessMethodsListParameters,
|
|
1288
|
+
options?: AccessMethodsListOptions,
|
|
1289
|
+
) => AccessMethodsListRequest {
|
|
431
1290
|
const { client, defaults } = this
|
|
432
1291
|
return function accessMethodsList(
|
|
433
1292
|
...args: Parameters<SeamHttpAccessMethods['list']>
|
|
@@ -437,7 +1296,10 @@ export class SeamHttpEndpoints {
|
|
|
437
1296
|
}
|
|
438
1297
|
}
|
|
439
1298
|
|
|
440
|
-
get ['/acs/access_groups/add_user']():
|
|
1299
|
+
get ['/acs/access_groups/add_user'](): (
|
|
1300
|
+
parameters?: AcsAccessGroupsAddUserParameters,
|
|
1301
|
+
options?: AcsAccessGroupsAddUserOptions,
|
|
1302
|
+
) => AcsAccessGroupsAddUserRequest {
|
|
441
1303
|
const { client, defaults } = this
|
|
442
1304
|
return function acsAccessGroupsAddUser(
|
|
443
1305
|
...args: Parameters<SeamHttpAcsAccessGroups['addUser']>
|
|
@@ -447,7 +1309,10 @@ export class SeamHttpEndpoints {
|
|
|
447
1309
|
}
|
|
448
1310
|
}
|
|
449
1311
|
|
|
450
|
-
get ['/acs/access_groups/get']():
|
|
1312
|
+
get ['/acs/access_groups/get'](): (
|
|
1313
|
+
parameters?: AcsAccessGroupsGetParameters,
|
|
1314
|
+
options?: AcsAccessGroupsGetOptions,
|
|
1315
|
+
) => AcsAccessGroupsGetRequest {
|
|
451
1316
|
const { client, defaults } = this
|
|
452
1317
|
return function acsAccessGroupsGet(
|
|
453
1318
|
...args: Parameters<SeamHttpAcsAccessGroups['get']>
|
|
@@ -457,7 +1322,10 @@ export class SeamHttpEndpoints {
|
|
|
457
1322
|
}
|
|
458
1323
|
}
|
|
459
1324
|
|
|
460
|
-
get ['/acs/access_groups/list']():
|
|
1325
|
+
get ['/acs/access_groups/list'](): (
|
|
1326
|
+
parameters?: AcsAccessGroupsListParameters,
|
|
1327
|
+
options?: AcsAccessGroupsListOptions,
|
|
1328
|
+
) => AcsAccessGroupsListRequest {
|
|
461
1329
|
const { client, defaults } = this
|
|
462
1330
|
return function acsAccessGroupsList(
|
|
463
1331
|
...args: Parameters<SeamHttpAcsAccessGroups['list']>
|
|
@@ -467,7 +1335,10 @@ export class SeamHttpEndpoints {
|
|
|
467
1335
|
}
|
|
468
1336
|
}
|
|
469
1337
|
|
|
470
|
-
get ['/acs/access_groups/list_accessible_entrances']():
|
|
1338
|
+
get ['/acs/access_groups/list_accessible_entrances'](): (
|
|
1339
|
+
parameters?: AcsAccessGroupsListAccessibleEntrancesParameters,
|
|
1340
|
+
options?: AcsAccessGroupsListAccessibleEntrancesOptions,
|
|
1341
|
+
) => AcsAccessGroupsListAccessibleEntrancesRequest {
|
|
471
1342
|
const { client, defaults } = this
|
|
472
1343
|
return function acsAccessGroupsListAccessibleEntrances(
|
|
473
1344
|
...args: Parameters<SeamHttpAcsAccessGroups['listAccessibleEntrances']>
|
|
@@ -477,7 +1348,10 @@ export class SeamHttpEndpoints {
|
|
|
477
1348
|
}
|
|
478
1349
|
}
|
|
479
1350
|
|
|
480
|
-
get ['/acs/access_groups/list_users']():
|
|
1351
|
+
get ['/acs/access_groups/list_users'](): (
|
|
1352
|
+
parameters?: AcsAccessGroupsListUsersParameters,
|
|
1353
|
+
options?: AcsAccessGroupsListUsersOptions,
|
|
1354
|
+
) => AcsAccessGroupsListUsersRequest {
|
|
481
1355
|
const { client, defaults } = this
|
|
482
1356
|
return function acsAccessGroupsListUsers(
|
|
483
1357
|
...args: Parameters<SeamHttpAcsAccessGroups['listUsers']>
|
|
@@ -487,7 +1361,10 @@ export class SeamHttpEndpoints {
|
|
|
487
1361
|
}
|
|
488
1362
|
}
|
|
489
1363
|
|
|
490
|
-
get ['/acs/access_groups/remove_user']():
|
|
1364
|
+
get ['/acs/access_groups/remove_user'](): (
|
|
1365
|
+
parameters?: AcsAccessGroupsRemoveUserParameters,
|
|
1366
|
+
options?: AcsAccessGroupsRemoveUserOptions,
|
|
1367
|
+
) => AcsAccessGroupsRemoveUserRequest {
|
|
491
1368
|
const { client, defaults } = this
|
|
492
1369
|
return function acsAccessGroupsRemoveUser(
|
|
493
1370
|
...args: Parameters<SeamHttpAcsAccessGroups['removeUser']>
|
|
@@ -497,7 +1374,87 @@ export class SeamHttpEndpoints {
|
|
|
497
1374
|
}
|
|
498
1375
|
}
|
|
499
1376
|
|
|
500
|
-
get ['/acs/
|
|
1377
|
+
get ['/acs/access_groups/unmanaged/get'](): (
|
|
1378
|
+
parameters?: AcsAccessGroupsUnmanagedGetParameters,
|
|
1379
|
+
options?: AcsAccessGroupsUnmanagedGetOptions,
|
|
1380
|
+
) => AcsAccessGroupsUnmanagedGetRequest {
|
|
1381
|
+
const { client, defaults } = this
|
|
1382
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1383
|
+
throw new Error(
|
|
1384
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1385
|
+
)
|
|
1386
|
+
}
|
|
1387
|
+
return function acsAccessGroupsUnmanagedGet(
|
|
1388
|
+
...args: Parameters<SeamHttpAcsAccessGroupsUnmanaged['get']>
|
|
1389
|
+
): ReturnType<SeamHttpAcsAccessGroupsUnmanaged['get']> {
|
|
1390
|
+
const seam = SeamHttpAcsAccessGroupsUnmanaged.fromClient(client, defaults)
|
|
1391
|
+
return seam.get(...args)
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
get ['/acs/access_groups/unmanaged/list'](): (
|
|
1396
|
+
parameters?: AcsAccessGroupsUnmanagedListParameters,
|
|
1397
|
+
options?: AcsAccessGroupsUnmanagedListOptions,
|
|
1398
|
+
) => AcsAccessGroupsUnmanagedListRequest {
|
|
1399
|
+
const { client, defaults } = this
|
|
1400
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1401
|
+
throw new Error(
|
|
1402
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1403
|
+
)
|
|
1404
|
+
}
|
|
1405
|
+
return function acsAccessGroupsUnmanagedList(
|
|
1406
|
+
...args: Parameters<SeamHttpAcsAccessGroupsUnmanaged['list']>
|
|
1407
|
+
): ReturnType<SeamHttpAcsAccessGroupsUnmanaged['list']> {
|
|
1408
|
+
const seam = SeamHttpAcsAccessGroupsUnmanaged.fromClient(client, defaults)
|
|
1409
|
+
return seam.list(...args)
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
get ['/acs/credential_pools/list'](): (
|
|
1414
|
+
parameters?: AcsCredentialPoolsListParameters,
|
|
1415
|
+
options?: AcsCredentialPoolsListOptions,
|
|
1416
|
+
) => AcsCredentialPoolsListRequest {
|
|
1417
|
+
const { client, defaults } = this
|
|
1418
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1419
|
+
throw new Error(
|
|
1420
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1421
|
+
)
|
|
1422
|
+
}
|
|
1423
|
+
return function acsCredentialPoolsList(
|
|
1424
|
+
...args: Parameters<SeamHttpAcsCredentialPools['list']>
|
|
1425
|
+
): ReturnType<SeamHttpAcsCredentialPools['list']> {
|
|
1426
|
+
const seam = SeamHttpAcsCredentialPools.fromClient(client, defaults)
|
|
1427
|
+
return seam.list(...args)
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
get ['/acs/credential_provisioning_automations/launch'](): (
|
|
1432
|
+
parameters?: AcsCredentialProvisioningAutomationsLaunchParameters,
|
|
1433
|
+
options?: AcsCredentialProvisioningAutomationsLaunchOptions,
|
|
1434
|
+
) => AcsCredentialProvisioningAutomationsLaunchRequest {
|
|
1435
|
+
const { client, defaults } = this
|
|
1436
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1437
|
+
throw new Error(
|
|
1438
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1439
|
+
)
|
|
1440
|
+
}
|
|
1441
|
+
return function acsCredentialProvisioningAutomationsLaunch(
|
|
1442
|
+
...args: Parameters<
|
|
1443
|
+
SeamHttpAcsCredentialProvisioningAutomations['launch']
|
|
1444
|
+
>
|
|
1445
|
+
): ReturnType<SeamHttpAcsCredentialProvisioningAutomations['launch']> {
|
|
1446
|
+
const seam = SeamHttpAcsCredentialProvisioningAutomations.fromClient(
|
|
1447
|
+
client,
|
|
1448
|
+
defaults,
|
|
1449
|
+
)
|
|
1450
|
+
return seam.launch(...args)
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
get ['/acs/credentials/assign'](): (
|
|
1455
|
+
parameters?: AcsCredentialsAssignParameters,
|
|
1456
|
+
options?: AcsCredentialsAssignOptions,
|
|
1457
|
+
) => AcsCredentialsAssignRequest {
|
|
501
1458
|
const { client, defaults } = this
|
|
502
1459
|
return function acsCredentialsAssign(
|
|
503
1460
|
...args: Parameters<SeamHttpAcsCredentials['assign']>
|
|
@@ -507,7 +1464,10 @@ export class SeamHttpEndpoints {
|
|
|
507
1464
|
}
|
|
508
1465
|
}
|
|
509
1466
|
|
|
510
|
-
get ['/acs/credentials/create']():
|
|
1467
|
+
get ['/acs/credentials/create'](): (
|
|
1468
|
+
parameters?: AcsCredentialsCreateParameters,
|
|
1469
|
+
options?: AcsCredentialsCreateOptions,
|
|
1470
|
+
) => AcsCredentialsCreateRequest {
|
|
511
1471
|
const { client, defaults } = this
|
|
512
1472
|
return function acsCredentialsCreate(
|
|
513
1473
|
...args: Parameters<SeamHttpAcsCredentials['create']>
|
|
@@ -517,7 +1477,28 @@ export class SeamHttpEndpoints {
|
|
|
517
1477
|
}
|
|
518
1478
|
}
|
|
519
1479
|
|
|
520
|
-
get ['/acs/credentials/
|
|
1480
|
+
get ['/acs/credentials/create_offline_code'](): (
|
|
1481
|
+
parameters?: AcsCredentialsCreateOfflineCodeParameters,
|
|
1482
|
+
options?: AcsCredentialsCreateOfflineCodeOptions,
|
|
1483
|
+
) => AcsCredentialsCreateOfflineCodeRequest {
|
|
1484
|
+
const { client, defaults } = this
|
|
1485
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1486
|
+
throw new Error(
|
|
1487
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1488
|
+
)
|
|
1489
|
+
}
|
|
1490
|
+
return function acsCredentialsCreateOfflineCode(
|
|
1491
|
+
...args: Parameters<SeamHttpAcsCredentials['createOfflineCode']>
|
|
1492
|
+
): ReturnType<SeamHttpAcsCredentials['createOfflineCode']> {
|
|
1493
|
+
const seam = SeamHttpAcsCredentials.fromClient(client, defaults)
|
|
1494
|
+
return seam.createOfflineCode(...args)
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
get ['/acs/credentials/delete'](): (
|
|
1499
|
+
parameters?: AcsCredentialsDeleteParameters,
|
|
1500
|
+
options?: AcsCredentialsDeleteOptions,
|
|
1501
|
+
) => AcsCredentialsDeleteRequest {
|
|
521
1502
|
const { client, defaults } = this
|
|
522
1503
|
return function acsCredentialsDelete(
|
|
523
1504
|
...args: Parameters<SeamHttpAcsCredentials['delete']>
|
|
@@ -527,7 +1508,10 @@ export class SeamHttpEndpoints {
|
|
|
527
1508
|
}
|
|
528
1509
|
}
|
|
529
1510
|
|
|
530
|
-
get ['/acs/credentials/get']():
|
|
1511
|
+
get ['/acs/credentials/get'](): (
|
|
1512
|
+
parameters?: AcsCredentialsGetParameters,
|
|
1513
|
+
options?: AcsCredentialsGetOptions,
|
|
1514
|
+
) => AcsCredentialsGetRequest {
|
|
531
1515
|
const { client, defaults } = this
|
|
532
1516
|
return function acsCredentialsGet(
|
|
533
1517
|
...args: Parameters<SeamHttpAcsCredentials['get']>
|
|
@@ -537,7 +1521,10 @@ export class SeamHttpEndpoints {
|
|
|
537
1521
|
}
|
|
538
1522
|
}
|
|
539
1523
|
|
|
540
|
-
get ['/acs/credentials/list']():
|
|
1524
|
+
get ['/acs/credentials/list'](): (
|
|
1525
|
+
parameters?: AcsCredentialsListParameters,
|
|
1526
|
+
options?: AcsCredentialsListOptions,
|
|
1527
|
+
) => AcsCredentialsListRequest {
|
|
541
1528
|
const { client, defaults } = this
|
|
542
1529
|
return function acsCredentialsList(
|
|
543
1530
|
...args: Parameters<SeamHttpAcsCredentials['list']>
|
|
@@ -547,7 +1534,10 @@ export class SeamHttpEndpoints {
|
|
|
547
1534
|
}
|
|
548
1535
|
}
|
|
549
1536
|
|
|
550
|
-
get ['/acs/credentials/list_accessible_entrances']():
|
|
1537
|
+
get ['/acs/credentials/list_accessible_entrances'](): (
|
|
1538
|
+
parameters?: AcsCredentialsListAccessibleEntrancesParameters,
|
|
1539
|
+
options?: AcsCredentialsListAccessibleEntrancesOptions,
|
|
1540
|
+
) => AcsCredentialsListAccessibleEntrancesRequest {
|
|
551
1541
|
const { client, defaults } = this
|
|
552
1542
|
return function acsCredentialsListAccessibleEntrances(
|
|
553
1543
|
...args: Parameters<SeamHttpAcsCredentials['listAccessibleEntrances']>
|
|
@@ -557,7 +1547,10 @@ export class SeamHttpEndpoints {
|
|
|
557
1547
|
}
|
|
558
1548
|
}
|
|
559
1549
|
|
|
560
|
-
get ['/acs/credentials/unassign']():
|
|
1550
|
+
get ['/acs/credentials/unassign'](): (
|
|
1551
|
+
parameters?: AcsCredentialsUnassignParameters,
|
|
1552
|
+
options?: AcsCredentialsUnassignOptions,
|
|
1553
|
+
) => AcsCredentialsUnassignRequest {
|
|
561
1554
|
const { client, defaults } = this
|
|
562
1555
|
return function acsCredentialsUnassign(
|
|
563
1556
|
...args: Parameters<SeamHttpAcsCredentials['unassign']>
|
|
@@ -567,7 +1560,10 @@ export class SeamHttpEndpoints {
|
|
|
567
1560
|
}
|
|
568
1561
|
}
|
|
569
1562
|
|
|
570
|
-
get ['/acs/credentials/update']():
|
|
1563
|
+
get ['/acs/credentials/update'](): (
|
|
1564
|
+
parameters?: AcsCredentialsUpdateParameters,
|
|
1565
|
+
options?: AcsCredentialsUpdateOptions,
|
|
1566
|
+
) => AcsCredentialsUpdateRequest {
|
|
571
1567
|
const { client, defaults } = this
|
|
572
1568
|
return function acsCredentialsUpdate(
|
|
573
1569
|
...args: Parameters<SeamHttpAcsCredentials['update']>
|
|
@@ -577,7 +1573,46 @@ export class SeamHttpEndpoints {
|
|
|
577
1573
|
}
|
|
578
1574
|
}
|
|
579
1575
|
|
|
580
|
-
get ['/acs/
|
|
1576
|
+
get ['/acs/credentials/unmanaged/get'](): (
|
|
1577
|
+
parameters?: AcsCredentialsUnmanagedGetParameters,
|
|
1578
|
+
options?: AcsCredentialsUnmanagedGetOptions,
|
|
1579
|
+
) => AcsCredentialsUnmanagedGetRequest {
|
|
1580
|
+
const { client, defaults } = this
|
|
1581
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1582
|
+
throw new Error(
|
|
1583
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1584
|
+
)
|
|
1585
|
+
}
|
|
1586
|
+
return function acsCredentialsUnmanagedGet(
|
|
1587
|
+
...args: Parameters<SeamHttpAcsCredentialsUnmanaged['get']>
|
|
1588
|
+
): ReturnType<SeamHttpAcsCredentialsUnmanaged['get']> {
|
|
1589
|
+
const seam = SeamHttpAcsCredentialsUnmanaged.fromClient(client, defaults)
|
|
1590
|
+
return seam.get(...args)
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
get ['/acs/credentials/unmanaged/list'](): (
|
|
1595
|
+
parameters?: AcsCredentialsUnmanagedListParameters,
|
|
1596
|
+
options?: AcsCredentialsUnmanagedListOptions,
|
|
1597
|
+
) => AcsCredentialsUnmanagedListRequest {
|
|
1598
|
+
const { client, defaults } = this
|
|
1599
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1600
|
+
throw new Error(
|
|
1601
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1602
|
+
)
|
|
1603
|
+
}
|
|
1604
|
+
return function acsCredentialsUnmanagedList(
|
|
1605
|
+
...args: Parameters<SeamHttpAcsCredentialsUnmanaged['list']>
|
|
1606
|
+
): ReturnType<SeamHttpAcsCredentialsUnmanaged['list']> {
|
|
1607
|
+
const seam = SeamHttpAcsCredentialsUnmanaged.fromClient(client, defaults)
|
|
1608
|
+
return seam.list(...args)
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
get ['/acs/encoders/encode_access_method'](): (
|
|
1613
|
+
parameters?: AcsEncodersEncodeAccessMethodParameters,
|
|
1614
|
+
options?: AcsEncodersEncodeAccessMethodOptions,
|
|
1615
|
+
) => AcsEncodersEncodeAccessMethodRequest {
|
|
581
1616
|
const { client, defaults } = this
|
|
582
1617
|
return function acsEncodersEncodeAccessMethod(
|
|
583
1618
|
...args: Parameters<SeamHttpAcsEncoders['encodeAccessMethod']>
|
|
@@ -587,7 +1622,10 @@ export class SeamHttpEndpoints {
|
|
|
587
1622
|
}
|
|
588
1623
|
}
|
|
589
1624
|
|
|
590
|
-
get ['/acs/encoders/encode_credential']():
|
|
1625
|
+
get ['/acs/encoders/encode_credential'](): (
|
|
1626
|
+
parameters?: AcsEncodersEncodeCredentialParameters,
|
|
1627
|
+
options?: AcsEncodersEncodeCredentialOptions,
|
|
1628
|
+
) => AcsEncodersEncodeCredentialRequest {
|
|
591
1629
|
const { client, defaults } = this
|
|
592
1630
|
return function acsEncodersEncodeCredential(
|
|
593
1631
|
...args: Parameters<SeamHttpAcsEncoders['encodeCredential']>
|
|
@@ -597,7 +1635,10 @@ export class SeamHttpEndpoints {
|
|
|
597
1635
|
}
|
|
598
1636
|
}
|
|
599
1637
|
|
|
600
|
-
get ['/acs/encoders/get']():
|
|
1638
|
+
get ['/acs/encoders/get'](): (
|
|
1639
|
+
parameters?: AcsEncodersGetParameters,
|
|
1640
|
+
options?: AcsEncodersGetOptions,
|
|
1641
|
+
) => AcsEncodersGetRequest {
|
|
601
1642
|
const { client, defaults } = this
|
|
602
1643
|
return function acsEncodersGet(
|
|
603
1644
|
...args: Parameters<SeamHttpAcsEncoders['get']>
|
|
@@ -607,7 +1648,10 @@ export class SeamHttpEndpoints {
|
|
|
607
1648
|
}
|
|
608
1649
|
}
|
|
609
1650
|
|
|
610
|
-
get ['/acs/encoders/list']():
|
|
1651
|
+
get ['/acs/encoders/list'](): (
|
|
1652
|
+
parameters?: AcsEncodersListParameters,
|
|
1653
|
+
options?: AcsEncodersListOptions,
|
|
1654
|
+
) => AcsEncodersListRequest {
|
|
611
1655
|
const { client, defaults } = this
|
|
612
1656
|
return function acsEncodersList(
|
|
613
1657
|
...args: Parameters<SeamHttpAcsEncoders['list']>
|
|
@@ -617,7 +1661,10 @@ export class SeamHttpEndpoints {
|
|
|
617
1661
|
}
|
|
618
1662
|
}
|
|
619
1663
|
|
|
620
|
-
get ['/acs/encoders/scan_credential']():
|
|
1664
|
+
get ['/acs/encoders/scan_credential'](): (
|
|
1665
|
+
parameters?: AcsEncodersScanCredentialParameters,
|
|
1666
|
+
options?: AcsEncodersScanCredentialOptions,
|
|
1667
|
+
) => AcsEncodersScanCredentialRequest {
|
|
621
1668
|
const { client, defaults } = this
|
|
622
1669
|
return function acsEncodersScanCredential(
|
|
623
1670
|
...args: Parameters<SeamHttpAcsEncoders['scanCredential']>
|
|
@@ -627,7 +1674,10 @@ export class SeamHttpEndpoints {
|
|
|
627
1674
|
}
|
|
628
1675
|
}
|
|
629
1676
|
|
|
630
|
-
get ['/acs/encoders/simulate/next_credential_encode_will_fail']():
|
|
1677
|
+
get ['/acs/encoders/simulate/next_credential_encode_will_fail'](): (
|
|
1678
|
+
parameters?: AcsEncodersSimulateNextCredentialEncodeWillFailParameters,
|
|
1679
|
+
options?: AcsEncodersSimulateNextCredentialEncodeWillFailOptions,
|
|
1680
|
+
) => AcsEncodersSimulateNextCredentialEncodeWillFailRequest {
|
|
631
1681
|
const { client, defaults } = this
|
|
632
1682
|
return function acsEncodersSimulateNextCredentialEncodeWillFail(
|
|
633
1683
|
...args: Parameters<
|
|
@@ -639,7 +1689,10 @@ export class SeamHttpEndpoints {
|
|
|
639
1689
|
}
|
|
640
1690
|
}
|
|
641
1691
|
|
|
642
|
-
get ['/acs/encoders/simulate/next_credential_encode_will_succeed']():
|
|
1692
|
+
get ['/acs/encoders/simulate/next_credential_encode_will_succeed'](): (
|
|
1693
|
+
parameters?: AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters,
|
|
1694
|
+
options?: AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions,
|
|
1695
|
+
) => AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest {
|
|
643
1696
|
const { client, defaults } = this
|
|
644
1697
|
return function acsEncodersSimulateNextCredentialEncodeWillSucceed(
|
|
645
1698
|
...args: Parameters<
|
|
@@ -653,7 +1706,10 @@ export class SeamHttpEndpoints {
|
|
|
653
1706
|
}
|
|
654
1707
|
}
|
|
655
1708
|
|
|
656
|
-
get ['/acs/encoders/simulate/next_credential_scan_will_fail']():
|
|
1709
|
+
get ['/acs/encoders/simulate/next_credential_scan_will_fail'](): (
|
|
1710
|
+
parameters?: AcsEncodersSimulateNextCredentialScanWillFailParameters,
|
|
1711
|
+
options?: AcsEncodersSimulateNextCredentialScanWillFailOptions,
|
|
1712
|
+
) => AcsEncodersSimulateNextCredentialScanWillFailRequest {
|
|
657
1713
|
const { client, defaults } = this
|
|
658
1714
|
return function acsEncodersSimulateNextCredentialScanWillFail(
|
|
659
1715
|
...args: Parameters<
|
|
@@ -665,7 +1721,10 @@ export class SeamHttpEndpoints {
|
|
|
665
1721
|
}
|
|
666
1722
|
}
|
|
667
1723
|
|
|
668
|
-
get ['/acs/encoders/simulate/next_credential_scan_will_succeed']():
|
|
1724
|
+
get ['/acs/encoders/simulate/next_credential_scan_will_succeed'](): (
|
|
1725
|
+
parameters?: AcsEncodersSimulateNextCredentialScanWillSucceedParameters,
|
|
1726
|
+
options?: AcsEncodersSimulateNextCredentialScanWillSucceedOptions,
|
|
1727
|
+
) => AcsEncodersSimulateNextCredentialScanWillSucceedRequest {
|
|
669
1728
|
const { client, defaults } = this
|
|
670
1729
|
return function acsEncodersSimulateNextCredentialScanWillSucceed(
|
|
671
1730
|
...args: Parameters<
|
|
@@ -679,7 +1738,10 @@ export class SeamHttpEndpoints {
|
|
|
679
1738
|
}
|
|
680
1739
|
}
|
|
681
1740
|
|
|
682
|
-
get ['/acs/entrances/get']():
|
|
1741
|
+
get ['/acs/entrances/get'](): (
|
|
1742
|
+
parameters?: AcsEntrancesGetParameters,
|
|
1743
|
+
options?: AcsEntrancesGetOptions,
|
|
1744
|
+
) => AcsEntrancesGetRequest {
|
|
683
1745
|
const { client, defaults } = this
|
|
684
1746
|
return function acsEntrancesGet(
|
|
685
1747
|
...args: Parameters<SeamHttpAcsEntrances['get']>
|
|
@@ -689,7 +1751,10 @@ export class SeamHttpEndpoints {
|
|
|
689
1751
|
}
|
|
690
1752
|
}
|
|
691
1753
|
|
|
692
|
-
get ['/acs/entrances/grant_access']():
|
|
1754
|
+
get ['/acs/entrances/grant_access'](): (
|
|
1755
|
+
parameters?: AcsEntrancesGrantAccessParameters,
|
|
1756
|
+
options?: AcsEntrancesGrantAccessOptions,
|
|
1757
|
+
) => AcsEntrancesGrantAccessRequest {
|
|
693
1758
|
const { client, defaults } = this
|
|
694
1759
|
return function acsEntrancesGrantAccess(
|
|
695
1760
|
...args: Parameters<SeamHttpAcsEntrances['grantAccess']>
|
|
@@ -699,7 +1764,10 @@ export class SeamHttpEndpoints {
|
|
|
699
1764
|
}
|
|
700
1765
|
}
|
|
701
1766
|
|
|
702
|
-
get ['/acs/entrances/list']():
|
|
1767
|
+
get ['/acs/entrances/list'](): (
|
|
1768
|
+
parameters?: AcsEntrancesListParameters,
|
|
1769
|
+
options?: AcsEntrancesListOptions,
|
|
1770
|
+
) => AcsEntrancesListRequest {
|
|
703
1771
|
const { client, defaults } = this
|
|
704
1772
|
return function acsEntrancesList(
|
|
705
1773
|
...args: Parameters<SeamHttpAcsEntrances['list']>
|
|
@@ -709,7 +1777,10 @@ export class SeamHttpEndpoints {
|
|
|
709
1777
|
}
|
|
710
1778
|
}
|
|
711
1779
|
|
|
712
|
-
get ['/acs/entrances/list_credentials_with_access']():
|
|
1780
|
+
get ['/acs/entrances/list_credentials_with_access'](): (
|
|
1781
|
+
parameters?: AcsEntrancesListCredentialsWithAccessParameters,
|
|
1782
|
+
options?: AcsEntrancesListCredentialsWithAccessOptions,
|
|
1783
|
+
) => AcsEntrancesListCredentialsWithAccessRequest {
|
|
713
1784
|
const { client, defaults } = this
|
|
714
1785
|
return function acsEntrancesListCredentialsWithAccess(
|
|
715
1786
|
...args: Parameters<SeamHttpAcsEntrances['listCredentialsWithAccess']>
|
|
@@ -719,7 +1790,10 @@ export class SeamHttpEndpoints {
|
|
|
719
1790
|
}
|
|
720
1791
|
}
|
|
721
1792
|
|
|
722
|
-
get ['/acs/systems/get']():
|
|
1793
|
+
get ['/acs/systems/get'](): (
|
|
1794
|
+
parameters?: AcsSystemsGetParameters,
|
|
1795
|
+
options?: AcsSystemsGetOptions,
|
|
1796
|
+
) => AcsSystemsGetRequest {
|
|
723
1797
|
const { client, defaults } = this
|
|
724
1798
|
return function acsSystemsGet(
|
|
725
1799
|
...args: Parameters<SeamHttpAcsSystems['get']>
|
|
@@ -729,7 +1803,10 @@ export class SeamHttpEndpoints {
|
|
|
729
1803
|
}
|
|
730
1804
|
}
|
|
731
1805
|
|
|
732
|
-
get ['/acs/systems/list']():
|
|
1806
|
+
get ['/acs/systems/list'](): (
|
|
1807
|
+
parameters?: AcsSystemsListParameters,
|
|
1808
|
+
options?: AcsSystemsListOptions,
|
|
1809
|
+
) => AcsSystemsListRequest {
|
|
733
1810
|
const { client, defaults } = this
|
|
734
1811
|
return function acsSystemsList(
|
|
735
1812
|
...args: Parameters<SeamHttpAcsSystems['list']>
|
|
@@ -739,7 +1816,10 @@ export class SeamHttpEndpoints {
|
|
|
739
1816
|
}
|
|
740
1817
|
}
|
|
741
1818
|
|
|
742
|
-
get ['/acs/systems/list_compatible_credential_manager_acs_systems']():
|
|
1819
|
+
get ['/acs/systems/list_compatible_credential_manager_acs_systems'](): (
|
|
1820
|
+
parameters?: AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters,
|
|
1821
|
+
options?: AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions,
|
|
1822
|
+
) => AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest {
|
|
743
1823
|
const { client, defaults } = this
|
|
744
1824
|
return function acsSystemsListCompatibleCredentialManagerAcsSystems(
|
|
745
1825
|
...args: Parameters<
|
|
@@ -753,7 +1833,10 @@ export class SeamHttpEndpoints {
|
|
|
753
1833
|
}
|
|
754
1834
|
}
|
|
755
1835
|
|
|
756
|
-
get ['/acs/users/add_to_access_group']():
|
|
1836
|
+
get ['/acs/users/add_to_access_group'](): (
|
|
1837
|
+
parameters?: AcsUsersAddToAccessGroupParameters,
|
|
1838
|
+
options?: AcsUsersAddToAccessGroupOptions,
|
|
1839
|
+
) => AcsUsersAddToAccessGroupRequest {
|
|
757
1840
|
const { client, defaults } = this
|
|
758
1841
|
return function acsUsersAddToAccessGroup(
|
|
759
1842
|
...args: Parameters<SeamHttpAcsUsers['addToAccessGroup']>
|
|
@@ -763,7 +1846,10 @@ export class SeamHttpEndpoints {
|
|
|
763
1846
|
}
|
|
764
1847
|
}
|
|
765
1848
|
|
|
766
|
-
get ['/acs/users/create']():
|
|
1849
|
+
get ['/acs/users/create'](): (
|
|
1850
|
+
parameters?: AcsUsersCreateParameters,
|
|
1851
|
+
options?: AcsUsersCreateOptions,
|
|
1852
|
+
) => AcsUsersCreateRequest {
|
|
767
1853
|
const { client, defaults } = this
|
|
768
1854
|
return function acsUsersCreate(
|
|
769
1855
|
...args: Parameters<SeamHttpAcsUsers['create']>
|
|
@@ -773,7 +1859,10 @@ export class SeamHttpEndpoints {
|
|
|
773
1859
|
}
|
|
774
1860
|
}
|
|
775
1861
|
|
|
776
|
-
get ['/acs/users/delete']():
|
|
1862
|
+
get ['/acs/users/delete'](): (
|
|
1863
|
+
parameters?: AcsUsersDeleteParameters,
|
|
1864
|
+
options?: AcsUsersDeleteOptions,
|
|
1865
|
+
) => AcsUsersDeleteRequest {
|
|
777
1866
|
const { client, defaults } = this
|
|
778
1867
|
return function acsUsersDelete(
|
|
779
1868
|
...args: Parameters<SeamHttpAcsUsers['delete']>
|
|
@@ -783,7 +1872,10 @@ export class SeamHttpEndpoints {
|
|
|
783
1872
|
}
|
|
784
1873
|
}
|
|
785
1874
|
|
|
786
|
-
get ['/acs/users/get']():
|
|
1875
|
+
get ['/acs/users/get'](): (
|
|
1876
|
+
parameters?: AcsUsersGetParameters,
|
|
1877
|
+
options?: AcsUsersGetOptions,
|
|
1878
|
+
) => AcsUsersGetRequest {
|
|
787
1879
|
const { client, defaults } = this
|
|
788
1880
|
return function acsUsersGet(
|
|
789
1881
|
...args: Parameters<SeamHttpAcsUsers['get']>
|
|
@@ -793,7 +1885,10 @@ export class SeamHttpEndpoints {
|
|
|
793
1885
|
}
|
|
794
1886
|
}
|
|
795
1887
|
|
|
796
|
-
get ['/acs/users/list']():
|
|
1888
|
+
get ['/acs/users/list'](): (
|
|
1889
|
+
parameters?: AcsUsersListParameters,
|
|
1890
|
+
options?: AcsUsersListOptions,
|
|
1891
|
+
) => AcsUsersListRequest {
|
|
797
1892
|
const { client, defaults } = this
|
|
798
1893
|
return function acsUsersList(
|
|
799
1894
|
...args: Parameters<SeamHttpAcsUsers['list']>
|
|
@@ -803,7 +1898,10 @@ export class SeamHttpEndpoints {
|
|
|
803
1898
|
}
|
|
804
1899
|
}
|
|
805
1900
|
|
|
806
|
-
get ['/acs/users/list_accessible_entrances']():
|
|
1901
|
+
get ['/acs/users/list_accessible_entrances'](): (
|
|
1902
|
+
parameters?: AcsUsersListAccessibleEntrancesParameters,
|
|
1903
|
+
options?: AcsUsersListAccessibleEntrancesOptions,
|
|
1904
|
+
) => AcsUsersListAccessibleEntrancesRequest {
|
|
807
1905
|
const { client, defaults } = this
|
|
808
1906
|
return function acsUsersListAccessibleEntrances(
|
|
809
1907
|
...args: Parameters<SeamHttpAcsUsers['listAccessibleEntrances']>
|
|
@@ -813,7 +1911,10 @@ export class SeamHttpEndpoints {
|
|
|
813
1911
|
}
|
|
814
1912
|
}
|
|
815
1913
|
|
|
816
|
-
get ['/acs/users/remove_from_access_group']():
|
|
1914
|
+
get ['/acs/users/remove_from_access_group'](): (
|
|
1915
|
+
parameters?: AcsUsersRemoveFromAccessGroupParameters,
|
|
1916
|
+
options?: AcsUsersRemoveFromAccessGroupOptions,
|
|
1917
|
+
) => AcsUsersRemoveFromAccessGroupRequest {
|
|
817
1918
|
const { client, defaults } = this
|
|
818
1919
|
return function acsUsersRemoveFromAccessGroup(
|
|
819
1920
|
...args: Parameters<SeamHttpAcsUsers['removeFromAccessGroup']>
|
|
@@ -823,7 +1924,10 @@ export class SeamHttpEndpoints {
|
|
|
823
1924
|
}
|
|
824
1925
|
}
|
|
825
1926
|
|
|
826
|
-
get ['/acs/users/revoke_access_to_all_entrances']():
|
|
1927
|
+
get ['/acs/users/revoke_access_to_all_entrances'](): (
|
|
1928
|
+
parameters?: AcsUsersRevokeAccessToAllEntrancesParameters,
|
|
1929
|
+
options?: AcsUsersRevokeAccessToAllEntrancesOptions,
|
|
1930
|
+
) => AcsUsersRevokeAccessToAllEntrancesRequest {
|
|
827
1931
|
const { client, defaults } = this
|
|
828
1932
|
return function acsUsersRevokeAccessToAllEntrances(
|
|
829
1933
|
...args: Parameters<SeamHttpAcsUsers['revokeAccessToAllEntrances']>
|
|
@@ -833,7 +1937,10 @@ export class SeamHttpEndpoints {
|
|
|
833
1937
|
}
|
|
834
1938
|
}
|
|
835
1939
|
|
|
836
|
-
get ['/acs/users/suspend']():
|
|
1940
|
+
get ['/acs/users/suspend'](): (
|
|
1941
|
+
parameters?: AcsUsersSuspendParameters,
|
|
1942
|
+
options?: AcsUsersSuspendOptions,
|
|
1943
|
+
) => AcsUsersSuspendRequest {
|
|
837
1944
|
const { client, defaults } = this
|
|
838
1945
|
return function acsUsersSuspend(
|
|
839
1946
|
...args: Parameters<SeamHttpAcsUsers['suspend']>
|
|
@@ -843,7 +1950,10 @@ export class SeamHttpEndpoints {
|
|
|
843
1950
|
}
|
|
844
1951
|
}
|
|
845
1952
|
|
|
846
|
-
get ['/acs/users/unsuspend']():
|
|
1953
|
+
get ['/acs/users/unsuspend'](): (
|
|
1954
|
+
parameters?: AcsUsersUnsuspendParameters,
|
|
1955
|
+
options?: AcsUsersUnsuspendOptions,
|
|
1956
|
+
) => AcsUsersUnsuspendRequest {
|
|
847
1957
|
const { client, defaults } = this
|
|
848
1958
|
return function acsUsersUnsuspend(
|
|
849
1959
|
...args: Parameters<SeamHttpAcsUsers['unsuspend']>
|
|
@@ -853,7 +1963,10 @@ export class SeamHttpEndpoints {
|
|
|
853
1963
|
}
|
|
854
1964
|
}
|
|
855
1965
|
|
|
856
|
-
get ['/acs/users/update']():
|
|
1966
|
+
get ['/acs/users/update'](): (
|
|
1967
|
+
parameters?: AcsUsersUpdateParameters,
|
|
1968
|
+
options?: AcsUsersUpdateOptions,
|
|
1969
|
+
) => AcsUsersUpdateRequest {
|
|
857
1970
|
const { client, defaults } = this
|
|
858
1971
|
return function acsUsersUpdate(
|
|
859
1972
|
...args: Parameters<SeamHttpAcsUsers['update']>
|
|
@@ -863,7 +1976,46 @@ export class SeamHttpEndpoints {
|
|
|
863
1976
|
}
|
|
864
1977
|
}
|
|
865
1978
|
|
|
866
|
-
get ['/
|
|
1979
|
+
get ['/acs/users/unmanaged/get'](): (
|
|
1980
|
+
parameters?: AcsUsersUnmanagedGetParameters,
|
|
1981
|
+
options?: AcsUsersUnmanagedGetOptions,
|
|
1982
|
+
) => AcsUsersUnmanagedGetRequest {
|
|
1983
|
+
const { client, defaults } = this
|
|
1984
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
1985
|
+
throw new Error(
|
|
1986
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
1987
|
+
)
|
|
1988
|
+
}
|
|
1989
|
+
return function acsUsersUnmanagedGet(
|
|
1990
|
+
...args: Parameters<SeamHttpAcsUsersUnmanaged['get']>
|
|
1991
|
+
): ReturnType<SeamHttpAcsUsersUnmanaged['get']> {
|
|
1992
|
+
const seam = SeamHttpAcsUsersUnmanaged.fromClient(client, defaults)
|
|
1993
|
+
return seam.get(...args)
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
get ['/acs/users/unmanaged/list'](): (
|
|
1998
|
+
parameters?: AcsUsersUnmanagedListParameters,
|
|
1999
|
+
options?: AcsUsersUnmanagedListOptions,
|
|
2000
|
+
) => AcsUsersUnmanagedListRequest {
|
|
2001
|
+
const { client, defaults } = this
|
|
2002
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2003
|
+
throw new Error(
|
|
2004
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2005
|
+
)
|
|
2006
|
+
}
|
|
2007
|
+
return function acsUsersUnmanagedList(
|
|
2008
|
+
...args: Parameters<SeamHttpAcsUsersUnmanaged['list']>
|
|
2009
|
+
): ReturnType<SeamHttpAcsUsersUnmanaged['list']> {
|
|
2010
|
+
const seam = SeamHttpAcsUsersUnmanaged.fromClient(client, defaults)
|
|
2011
|
+
return seam.list(...args)
|
|
2012
|
+
}
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
get ['/action_attempts/get'](): (
|
|
2016
|
+
parameters?: ActionAttemptsGetParameters,
|
|
2017
|
+
options?: ActionAttemptsGetOptions,
|
|
2018
|
+
) => ActionAttemptsGetRequest {
|
|
867
2019
|
const { client, defaults } = this
|
|
868
2020
|
return function actionAttemptsGet(
|
|
869
2021
|
...args: Parameters<SeamHttpActionAttempts['get']>
|
|
@@ -873,7 +2025,10 @@ export class SeamHttpEndpoints {
|
|
|
873
2025
|
}
|
|
874
2026
|
}
|
|
875
2027
|
|
|
876
|
-
get ['/action_attempts/list']():
|
|
2028
|
+
get ['/action_attempts/list'](): (
|
|
2029
|
+
parameters?: ActionAttemptsListParameters,
|
|
2030
|
+
options?: ActionAttemptsListOptions,
|
|
2031
|
+
) => ActionAttemptsListRequest {
|
|
877
2032
|
const { client, defaults } = this
|
|
878
2033
|
return function actionAttemptsList(
|
|
879
2034
|
...args: Parameters<SeamHttpActionAttempts['list']>
|
|
@@ -883,7 +2038,46 @@ export class SeamHttpEndpoints {
|
|
|
883
2038
|
}
|
|
884
2039
|
}
|
|
885
2040
|
|
|
886
|
-
get ['/
|
|
2041
|
+
get ['/bridges/get'](): (
|
|
2042
|
+
parameters?: BridgesGetParameters,
|
|
2043
|
+
options?: BridgesGetOptions,
|
|
2044
|
+
) => BridgesGetRequest {
|
|
2045
|
+
const { client, defaults } = this
|
|
2046
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2047
|
+
throw new Error(
|
|
2048
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2049
|
+
)
|
|
2050
|
+
}
|
|
2051
|
+
return function bridgesGet(
|
|
2052
|
+
...args: Parameters<SeamHttpBridges['get']>
|
|
2053
|
+
): ReturnType<SeamHttpBridges['get']> {
|
|
2054
|
+
const seam = SeamHttpBridges.fromClient(client, defaults)
|
|
2055
|
+
return seam.get(...args)
|
|
2056
|
+
}
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
get ['/bridges/list'](): (
|
|
2060
|
+
parameters?: BridgesListParameters,
|
|
2061
|
+
options?: BridgesListOptions,
|
|
2062
|
+
) => BridgesListRequest {
|
|
2063
|
+
const { client, defaults } = this
|
|
2064
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2065
|
+
throw new Error(
|
|
2066
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2067
|
+
)
|
|
2068
|
+
}
|
|
2069
|
+
return function bridgesList(
|
|
2070
|
+
...args: Parameters<SeamHttpBridges['list']>
|
|
2071
|
+
): ReturnType<SeamHttpBridges['list']> {
|
|
2072
|
+
const seam = SeamHttpBridges.fromClient(client, defaults)
|
|
2073
|
+
return seam.list(...args)
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
get ['/client_sessions/create'](): (
|
|
2078
|
+
parameters?: ClientSessionsCreateParameters,
|
|
2079
|
+
options?: ClientSessionsCreateOptions,
|
|
2080
|
+
) => ClientSessionsCreateRequest {
|
|
887
2081
|
const { client, defaults } = this
|
|
888
2082
|
return function clientSessionsCreate(
|
|
889
2083
|
...args: Parameters<SeamHttpClientSessions['create']>
|
|
@@ -893,7 +2087,10 @@ export class SeamHttpEndpoints {
|
|
|
893
2087
|
}
|
|
894
2088
|
}
|
|
895
2089
|
|
|
896
|
-
get ['/client_sessions/delete']():
|
|
2090
|
+
get ['/client_sessions/delete'](): (
|
|
2091
|
+
parameters?: ClientSessionsDeleteParameters,
|
|
2092
|
+
options?: ClientSessionsDeleteOptions,
|
|
2093
|
+
) => ClientSessionsDeleteRequest {
|
|
897
2094
|
const { client, defaults } = this
|
|
898
2095
|
return function clientSessionsDelete(
|
|
899
2096
|
...args: Parameters<SeamHttpClientSessions['delete']>
|
|
@@ -903,7 +2100,10 @@ export class SeamHttpEndpoints {
|
|
|
903
2100
|
}
|
|
904
2101
|
}
|
|
905
2102
|
|
|
906
|
-
get ['/client_sessions/get']():
|
|
2103
|
+
get ['/client_sessions/get'](): (
|
|
2104
|
+
parameters?: ClientSessionsGetParameters,
|
|
2105
|
+
options?: ClientSessionsGetOptions,
|
|
2106
|
+
) => ClientSessionsGetRequest {
|
|
907
2107
|
const { client, defaults } = this
|
|
908
2108
|
return function clientSessionsGet(
|
|
909
2109
|
...args: Parameters<SeamHttpClientSessions['get']>
|
|
@@ -913,7 +2113,10 @@ export class SeamHttpEndpoints {
|
|
|
913
2113
|
}
|
|
914
2114
|
}
|
|
915
2115
|
|
|
916
|
-
get ['/client_sessions/get_or_create']():
|
|
2116
|
+
get ['/client_sessions/get_or_create'](): (
|
|
2117
|
+
parameters?: ClientSessionsGetOrCreateParameters,
|
|
2118
|
+
options?: ClientSessionsGetOrCreateOptions,
|
|
2119
|
+
) => ClientSessionsGetOrCreateRequest {
|
|
917
2120
|
const { client, defaults } = this
|
|
918
2121
|
return function clientSessionsGetOrCreate(
|
|
919
2122
|
...args: Parameters<SeamHttpClientSessions['getOrCreate']>
|
|
@@ -923,7 +2126,10 @@ export class SeamHttpEndpoints {
|
|
|
923
2126
|
}
|
|
924
2127
|
}
|
|
925
2128
|
|
|
926
|
-
get ['/client_sessions/grant_access']():
|
|
2129
|
+
get ['/client_sessions/grant_access'](): (
|
|
2130
|
+
parameters?: ClientSessionsGrantAccessParameters,
|
|
2131
|
+
options?: ClientSessionsGrantAccessOptions,
|
|
2132
|
+
) => ClientSessionsGrantAccessRequest {
|
|
927
2133
|
const { client, defaults } = this
|
|
928
2134
|
return function clientSessionsGrantAccess(
|
|
929
2135
|
...args: Parameters<SeamHttpClientSessions['grantAccess']>
|
|
@@ -933,7 +2139,10 @@ export class SeamHttpEndpoints {
|
|
|
933
2139
|
}
|
|
934
2140
|
}
|
|
935
2141
|
|
|
936
|
-
get ['/client_sessions/list']():
|
|
2142
|
+
get ['/client_sessions/list'](): (
|
|
2143
|
+
parameters?: ClientSessionsListParameters,
|
|
2144
|
+
options?: ClientSessionsListOptions,
|
|
2145
|
+
) => ClientSessionsListRequest {
|
|
937
2146
|
const { client, defaults } = this
|
|
938
2147
|
return function clientSessionsList(
|
|
939
2148
|
...args: Parameters<SeamHttpClientSessions['list']>
|
|
@@ -943,7 +2152,10 @@ export class SeamHttpEndpoints {
|
|
|
943
2152
|
}
|
|
944
2153
|
}
|
|
945
2154
|
|
|
946
|
-
get ['/client_sessions/revoke']():
|
|
2155
|
+
get ['/client_sessions/revoke'](): (
|
|
2156
|
+
parameters?: ClientSessionsRevokeParameters,
|
|
2157
|
+
options?: ClientSessionsRevokeOptions,
|
|
2158
|
+
) => ClientSessionsRevokeRequest {
|
|
947
2159
|
const { client, defaults } = this
|
|
948
2160
|
return function clientSessionsRevoke(
|
|
949
2161
|
...args: Parameters<SeamHttpClientSessions['revoke']>
|
|
@@ -953,7 +2165,10 @@ export class SeamHttpEndpoints {
|
|
|
953
2165
|
}
|
|
954
2166
|
}
|
|
955
2167
|
|
|
956
|
-
get ['/connect_webviews/create']():
|
|
2168
|
+
get ['/connect_webviews/create'](): (
|
|
2169
|
+
parameters?: ConnectWebviewsCreateParameters,
|
|
2170
|
+
options?: ConnectWebviewsCreateOptions,
|
|
2171
|
+
) => ConnectWebviewsCreateRequest {
|
|
957
2172
|
const { client, defaults } = this
|
|
958
2173
|
return function connectWebviewsCreate(
|
|
959
2174
|
...args: Parameters<SeamHttpConnectWebviews['create']>
|
|
@@ -963,7 +2178,10 @@ export class SeamHttpEndpoints {
|
|
|
963
2178
|
}
|
|
964
2179
|
}
|
|
965
2180
|
|
|
966
|
-
get ['/connect_webviews/delete']():
|
|
2181
|
+
get ['/connect_webviews/delete'](): (
|
|
2182
|
+
parameters?: ConnectWebviewsDeleteParameters,
|
|
2183
|
+
options?: ConnectWebviewsDeleteOptions,
|
|
2184
|
+
) => ConnectWebviewsDeleteRequest {
|
|
967
2185
|
const { client, defaults } = this
|
|
968
2186
|
return function connectWebviewsDelete(
|
|
969
2187
|
...args: Parameters<SeamHttpConnectWebviews['delete']>
|
|
@@ -973,7 +2191,10 @@ export class SeamHttpEndpoints {
|
|
|
973
2191
|
}
|
|
974
2192
|
}
|
|
975
2193
|
|
|
976
|
-
get ['/connect_webviews/get']():
|
|
2194
|
+
get ['/connect_webviews/get'](): (
|
|
2195
|
+
parameters?: ConnectWebviewsGetParameters,
|
|
2196
|
+
options?: ConnectWebviewsGetOptions,
|
|
2197
|
+
) => ConnectWebviewsGetRequest {
|
|
977
2198
|
const { client, defaults } = this
|
|
978
2199
|
return function connectWebviewsGet(
|
|
979
2200
|
...args: Parameters<SeamHttpConnectWebviews['get']>
|
|
@@ -983,7 +2204,10 @@ export class SeamHttpEndpoints {
|
|
|
983
2204
|
}
|
|
984
2205
|
}
|
|
985
2206
|
|
|
986
|
-
get ['/connect_webviews/list']():
|
|
2207
|
+
get ['/connect_webviews/list'](): (
|
|
2208
|
+
parameters?: ConnectWebviewsListParameters,
|
|
2209
|
+
options?: ConnectWebviewsListOptions,
|
|
2210
|
+
) => ConnectWebviewsListRequest {
|
|
987
2211
|
const { client, defaults } = this
|
|
988
2212
|
return function connectWebviewsList(
|
|
989
2213
|
...args: Parameters<SeamHttpConnectWebviews['list']>
|
|
@@ -993,7 +2217,10 @@ export class SeamHttpEndpoints {
|
|
|
993
2217
|
}
|
|
994
2218
|
}
|
|
995
2219
|
|
|
996
|
-
get ['/connected_accounts/delete']():
|
|
2220
|
+
get ['/connected_accounts/delete'](): (
|
|
2221
|
+
parameters?: ConnectedAccountsDeleteParameters,
|
|
2222
|
+
options?: ConnectedAccountsDeleteOptions,
|
|
2223
|
+
) => ConnectedAccountsDeleteRequest {
|
|
997
2224
|
const { client, defaults } = this
|
|
998
2225
|
return function connectedAccountsDelete(
|
|
999
2226
|
...args: Parameters<SeamHttpConnectedAccounts['delete']>
|
|
@@ -1003,7 +2230,10 @@ export class SeamHttpEndpoints {
|
|
|
1003
2230
|
}
|
|
1004
2231
|
}
|
|
1005
2232
|
|
|
1006
|
-
get ['/connected_accounts/get']():
|
|
2233
|
+
get ['/connected_accounts/get'](): (
|
|
2234
|
+
parameters?: ConnectedAccountsGetParameters,
|
|
2235
|
+
options?: ConnectedAccountsGetOptions,
|
|
2236
|
+
) => ConnectedAccountsGetRequest {
|
|
1007
2237
|
const { client, defaults } = this
|
|
1008
2238
|
return function connectedAccountsGet(
|
|
1009
2239
|
...args: Parameters<SeamHttpConnectedAccounts['get']>
|
|
@@ -1013,7 +2243,10 @@ export class SeamHttpEndpoints {
|
|
|
1013
2243
|
}
|
|
1014
2244
|
}
|
|
1015
2245
|
|
|
1016
|
-
get ['/connected_accounts/list']():
|
|
2246
|
+
get ['/connected_accounts/list'](): (
|
|
2247
|
+
parameters?: ConnectedAccountsListParameters,
|
|
2248
|
+
options?: ConnectedAccountsListOptions,
|
|
2249
|
+
) => ConnectedAccountsListRequest {
|
|
1017
2250
|
const { client, defaults } = this
|
|
1018
2251
|
return function connectedAccountsList(
|
|
1019
2252
|
...args: Parameters<SeamHttpConnectedAccounts['list']>
|
|
@@ -1023,7 +2256,10 @@ export class SeamHttpEndpoints {
|
|
|
1023
2256
|
}
|
|
1024
2257
|
}
|
|
1025
2258
|
|
|
1026
|
-
get ['/connected_accounts/sync']():
|
|
2259
|
+
get ['/connected_accounts/sync'](): (
|
|
2260
|
+
parameters?: ConnectedAccountsSyncParameters,
|
|
2261
|
+
options?: ConnectedAccountsSyncOptions,
|
|
2262
|
+
) => ConnectedAccountsSyncRequest {
|
|
1027
2263
|
const { client, defaults } = this
|
|
1028
2264
|
return function connectedAccountsSync(
|
|
1029
2265
|
...args: Parameters<SeamHttpConnectedAccounts['sync']>
|
|
@@ -1033,7 +2269,10 @@ export class SeamHttpEndpoints {
|
|
|
1033
2269
|
}
|
|
1034
2270
|
}
|
|
1035
2271
|
|
|
1036
|
-
get ['/connected_accounts/update']():
|
|
2272
|
+
get ['/connected_accounts/update'](): (
|
|
2273
|
+
parameters?: ConnectedAccountsUpdateParameters,
|
|
2274
|
+
options?: ConnectedAccountsUpdateOptions,
|
|
2275
|
+
) => ConnectedAccountsUpdateRequest {
|
|
1037
2276
|
const { client, defaults } = this
|
|
1038
2277
|
return function connectedAccountsUpdate(
|
|
1039
2278
|
...args: Parameters<SeamHttpConnectedAccounts['update']>
|
|
@@ -1043,7 +2282,28 @@ export class SeamHttpEndpoints {
|
|
|
1043
2282
|
}
|
|
1044
2283
|
}
|
|
1045
2284
|
|
|
1046
|
-
get ['/devices/
|
|
2285
|
+
get ['/devices/delete'](): (
|
|
2286
|
+
parameters?: DevicesDeleteParameters,
|
|
2287
|
+
options?: DevicesDeleteOptions,
|
|
2288
|
+
) => DevicesDeleteRequest {
|
|
2289
|
+
const { client, defaults } = this
|
|
2290
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2291
|
+
throw new Error(
|
|
2292
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2293
|
+
)
|
|
2294
|
+
}
|
|
2295
|
+
return function devicesDelete(
|
|
2296
|
+
...args: Parameters<SeamHttpDevices['delete']>
|
|
2297
|
+
): ReturnType<SeamHttpDevices['delete']> {
|
|
2298
|
+
const seam = SeamHttpDevices.fromClient(client, defaults)
|
|
2299
|
+
return seam.delete(...args)
|
|
2300
|
+
}
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
get ['/devices/get'](): (
|
|
2304
|
+
parameters?: DevicesGetParameters,
|
|
2305
|
+
options?: DevicesGetOptions,
|
|
2306
|
+
) => DevicesGetRequest {
|
|
1047
2307
|
const { client, defaults } = this
|
|
1048
2308
|
return function devicesGet(
|
|
1049
2309
|
...args: Parameters<SeamHttpDevices['get']>
|
|
@@ -1053,7 +2313,10 @@ export class SeamHttpEndpoints {
|
|
|
1053
2313
|
}
|
|
1054
2314
|
}
|
|
1055
2315
|
|
|
1056
|
-
get ['/devices/list']():
|
|
2316
|
+
get ['/devices/list'](): (
|
|
2317
|
+
parameters?: DevicesListParameters,
|
|
2318
|
+
options?: DevicesListOptions,
|
|
2319
|
+
) => DevicesListRequest {
|
|
1057
2320
|
const { client, defaults } = this
|
|
1058
2321
|
return function devicesList(
|
|
1059
2322
|
...args: Parameters<SeamHttpDevices['list']>
|
|
@@ -1063,7 +2326,10 @@ export class SeamHttpEndpoints {
|
|
|
1063
2326
|
}
|
|
1064
2327
|
}
|
|
1065
2328
|
|
|
1066
|
-
get ['/devices/list_device_providers']():
|
|
2329
|
+
get ['/devices/list_device_providers'](): (
|
|
2330
|
+
parameters?: DevicesListDeviceProvidersParameters,
|
|
2331
|
+
options?: DevicesListDeviceProvidersOptions,
|
|
2332
|
+
) => DevicesListDeviceProvidersRequest {
|
|
1067
2333
|
const { client, defaults } = this
|
|
1068
2334
|
return function devicesListDeviceProviders(
|
|
1069
2335
|
...args: Parameters<SeamHttpDevices['listDeviceProviders']>
|
|
@@ -1073,7 +2339,10 @@ export class SeamHttpEndpoints {
|
|
|
1073
2339
|
}
|
|
1074
2340
|
}
|
|
1075
2341
|
|
|
1076
|
-
get ['/devices/update']():
|
|
2342
|
+
get ['/devices/update'](): (
|
|
2343
|
+
parameters?: DevicesUpdateParameters,
|
|
2344
|
+
options?: DevicesUpdateOptions,
|
|
2345
|
+
) => DevicesUpdateRequest {
|
|
1077
2346
|
const { client, defaults } = this
|
|
1078
2347
|
return function devicesUpdate(
|
|
1079
2348
|
...args: Parameters<SeamHttpDevices['update']>
|
|
@@ -1083,7 +2352,10 @@ export class SeamHttpEndpoints {
|
|
|
1083
2352
|
}
|
|
1084
2353
|
}
|
|
1085
2354
|
|
|
1086
|
-
get ['/devices/simulate/connect']():
|
|
2355
|
+
get ['/devices/simulate/connect'](): (
|
|
2356
|
+
parameters?: DevicesSimulateConnectParameters,
|
|
2357
|
+
options?: DevicesSimulateConnectOptions,
|
|
2358
|
+
) => DevicesSimulateConnectRequest {
|
|
1087
2359
|
const { client, defaults } = this
|
|
1088
2360
|
return function devicesSimulateConnect(
|
|
1089
2361
|
...args: Parameters<SeamHttpDevicesSimulate['connect']>
|
|
@@ -1093,7 +2365,10 @@ export class SeamHttpEndpoints {
|
|
|
1093
2365
|
}
|
|
1094
2366
|
}
|
|
1095
2367
|
|
|
1096
|
-
get ['/devices/simulate/disconnect']():
|
|
2368
|
+
get ['/devices/simulate/disconnect'](): (
|
|
2369
|
+
parameters?: DevicesSimulateDisconnectParameters,
|
|
2370
|
+
options?: DevicesSimulateDisconnectOptions,
|
|
2371
|
+
) => DevicesSimulateDisconnectRequest {
|
|
1097
2372
|
const { client, defaults } = this
|
|
1098
2373
|
return function devicesSimulateDisconnect(
|
|
1099
2374
|
...args: Parameters<SeamHttpDevicesSimulate['disconnect']>
|
|
@@ -1103,7 +2378,10 @@ export class SeamHttpEndpoints {
|
|
|
1103
2378
|
}
|
|
1104
2379
|
}
|
|
1105
2380
|
|
|
1106
|
-
get ['/devices/simulate/remove']():
|
|
2381
|
+
get ['/devices/simulate/remove'](): (
|
|
2382
|
+
parameters?: DevicesSimulateRemoveParameters,
|
|
2383
|
+
options?: DevicesSimulateRemoveOptions,
|
|
2384
|
+
) => DevicesSimulateRemoveRequest {
|
|
1107
2385
|
const { client, defaults } = this
|
|
1108
2386
|
return function devicesSimulateRemove(
|
|
1109
2387
|
...args: Parameters<SeamHttpDevicesSimulate['remove']>
|
|
@@ -1113,7 +2391,10 @@ export class SeamHttpEndpoints {
|
|
|
1113
2391
|
}
|
|
1114
2392
|
}
|
|
1115
2393
|
|
|
1116
|
-
get ['/devices/unmanaged/get']():
|
|
2394
|
+
get ['/devices/unmanaged/get'](): (
|
|
2395
|
+
parameters?: DevicesUnmanagedGetParameters,
|
|
2396
|
+
options?: DevicesUnmanagedGetOptions,
|
|
2397
|
+
) => DevicesUnmanagedGetRequest {
|
|
1117
2398
|
const { client, defaults } = this
|
|
1118
2399
|
return function devicesUnmanagedGet(
|
|
1119
2400
|
...args: Parameters<SeamHttpDevicesUnmanaged['get']>
|
|
@@ -1123,7 +2404,10 @@ export class SeamHttpEndpoints {
|
|
|
1123
2404
|
}
|
|
1124
2405
|
}
|
|
1125
2406
|
|
|
1126
|
-
get ['/devices/unmanaged/list']():
|
|
2407
|
+
get ['/devices/unmanaged/list'](): (
|
|
2408
|
+
parameters?: DevicesUnmanagedListParameters,
|
|
2409
|
+
options?: DevicesUnmanagedListOptions,
|
|
2410
|
+
) => DevicesUnmanagedListRequest {
|
|
1127
2411
|
const { client, defaults } = this
|
|
1128
2412
|
return function devicesUnmanagedList(
|
|
1129
2413
|
...args: Parameters<SeamHttpDevicesUnmanaged['list']>
|
|
@@ -1133,7 +2417,10 @@ export class SeamHttpEndpoints {
|
|
|
1133
2417
|
}
|
|
1134
2418
|
}
|
|
1135
2419
|
|
|
1136
|
-
get ['/devices/unmanaged/update']():
|
|
2420
|
+
get ['/devices/unmanaged/update'](): (
|
|
2421
|
+
parameters?: DevicesUnmanagedUpdateParameters,
|
|
2422
|
+
options?: DevicesUnmanagedUpdateOptions,
|
|
2423
|
+
) => DevicesUnmanagedUpdateRequest {
|
|
1137
2424
|
const { client, defaults } = this
|
|
1138
2425
|
return function devicesUnmanagedUpdate(
|
|
1139
2426
|
...args: Parameters<SeamHttpDevicesUnmanaged['update']>
|
|
@@ -1143,7 +2430,10 @@ export class SeamHttpEndpoints {
|
|
|
1143
2430
|
}
|
|
1144
2431
|
}
|
|
1145
2432
|
|
|
1146
|
-
get ['/events/get']():
|
|
2433
|
+
get ['/events/get'](): (
|
|
2434
|
+
parameters?: EventsGetParameters,
|
|
2435
|
+
options?: EventsGetOptions,
|
|
2436
|
+
) => EventsGetRequest {
|
|
1147
2437
|
const { client, defaults } = this
|
|
1148
2438
|
return function eventsGet(
|
|
1149
2439
|
...args: Parameters<SeamHttpEvents['get']>
|
|
@@ -1153,7 +2443,10 @@ export class SeamHttpEndpoints {
|
|
|
1153
2443
|
}
|
|
1154
2444
|
}
|
|
1155
2445
|
|
|
1156
|
-
get ['/events/list']():
|
|
2446
|
+
get ['/events/list'](): (
|
|
2447
|
+
parameters?: EventsListParameters,
|
|
2448
|
+
options?: EventsListOptions,
|
|
2449
|
+
) => EventsListRequest {
|
|
1157
2450
|
const { client, defaults } = this
|
|
1158
2451
|
return function eventsList(
|
|
1159
2452
|
...args: Parameters<SeamHttpEvents['list']>
|
|
@@ -1163,7 +2456,10 @@ export class SeamHttpEndpoints {
|
|
|
1163
2456
|
}
|
|
1164
2457
|
}
|
|
1165
2458
|
|
|
1166
|
-
get ['/locks/get']():
|
|
2459
|
+
get ['/locks/get'](): (
|
|
2460
|
+
parameters?: LocksGetParameters,
|
|
2461
|
+
options?: LocksGetOptions,
|
|
2462
|
+
) => LocksGetRequest {
|
|
1167
2463
|
const { client, defaults } = this
|
|
1168
2464
|
return function locksGet(
|
|
1169
2465
|
...args: Parameters<SeamHttpLocks['get']>
|
|
@@ -1173,7 +2469,10 @@ export class SeamHttpEndpoints {
|
|
|
1173
2469
|
}
|
|
1174
2470
|
}
|
|
1175
2471
|
|
|
1176
|
-
get ['/locks/list']():
|
|
2472
|
+
get ['/locks/list'](): (
|
|
2473
|
+
parameters?: LocksListParameters,
|
|
2474
|
+
options?: LocksListOptions,
|
|
2475
|
+
) => LocksListRequest {
|
|
1177
2476
|
const { client, defaults } = this
|
|
1178
2477
|
return function locksList(
|
|
1179
2478
|
...args: Parameters<SeamHttpLocks['list']>
|
|
@@ -1183,7 +2482,10 @@ export class SeamHttpEndpoints {
|
|
|
1183
2482
|
}
|
|
1184
2483
|
}
|
|
1185
2484
|
|
|
1186
|
-
get ['/locks/lock_door']():
|
|
2485
|
+
get ['/locks/lock_door'](): (
|
|
2486
|
+
parameters?: LocksLockDoorParameters,
|
|
2487
|
+
options?: LocksLockDoorOptions,
|
|
2488
|
+
) => LocksLockDoorRequest {
|
|
1187
2489
|
const { client, defaults } = this
|
|
1188
2490
|
return function locksLockDoor(
|
|
1189
2491
|
...args: Parameters<SeamHttpLocks['lockDoor']>
|
|
@@ -1193,7 +2495,10 @@ export class SeamHttpEndpoints {
|
|
|
1193
2495
|
}
|
|
1194
2496
|
}
|
|
1195
2497
|
|
|
1196
|
-
get ['/locks/unlock_door']():
|
|
2498
|
+
get ['/locks/unlock_door'](): (
|
|
2499
|
+
parameters?: LocksUnlockDoorParameters,
|
|
2500
|
+
options?: LocksUnlockDoorOptions,
|
|
2501
|
+
) => LocksUnlockDoorRequest {
|
|
1197
2502
|
const { client, defaults } = this
|
|
1198
2503
|
return function locksUnlockDoor(
|
|
1199
2504
|
...args: Parameters<SeamHttpLocks['unlockDoor']>
|
|
@@ -1203,7 +2508,82 @@ export class SeamHttpEndpoints {
|
|
|
1203
2508
|
}
|
|
1204
2509
|
}
|
|
1205
2510
|
|
|
1206
|
-
get ['/
|
|
2511
|
+
get ['/locks/simulate/keypad_code_entry'](): (
|
|
2512
|
+
parameters?: LocksSimulateKeypadCodeEntryParameters,
|
|
2513
|
+
options?: LocksSimulateKeypadCodeEntryOptions,
|
|
2514
|
+
) => LocksSimulateKeypadCodeEntryRequest {
|
|
2515
|
+
const { client, defaults } = this
|
|
2516
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2517
|
+
throw new Error(
|
|
2518
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2519
|
+
)
|
|
2520
|
+
}
|
|
2521
|
+
return function locksSimulateKeypadCodeEntry(
|
|
2522
|
+
...args: Parameters<SeamHttpLocksSimulate['keypadCodeEntry']>
|
|
2523
|
+
): ReturnType<SeamHttpLocksSimulate['keypadCodeEntry']> {
|
|
2524
|
+
const seam = SeamHttpLocksSimulate.fromClient(client, defaults)
|
|
2525
|
+
return seam.keypadCodeEntry(...args)
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
get ['/locks/simulate/manual_lock_via_keypad'](): (
|
|
2530
|
+
parameters?: LocksSimulateManualLockViaKeypadParameters,
|
|
2531
|
+
options?: LocksSimulateManualLockViaKeypadOptions,
|
|
2532
|
+
) => LocksSimulateManualLockViaKeypadRequest {
|
|
2533
|
+
const { client, defaults } = this
|
|
2534
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2535
|
+
throw new Error(
|
|
2536
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2537
|
+
)
|
|
2538
|
+
}
|
|
2539
|
+
return function locksSimulateManualLockViaKeypad(
|
|
2540
|
+
...args: Parameters<SeamHttpLocksSimulate['manualLockViaKeypad']>
|
|
2541
|
+
): ReturnType<SeamHttpLocksSimulate['manualLockViaKeypad']> {
|
|
2542
|
+
const seam = SeamHttpLocksSimulate.fromClient(client, defaults)
|
|
2543
|
+
return seam.manualLockViaKeypad(...args)
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
get ['/networks/get'](): (
|
|
2548
|
+
parameters?: NetworksGetParameters,
|
|
2549
|
+
options?: NetworksGetOptions,
|
|
2550
|
+
) => NetworksGetRequest {
|
|
2551
|
+
const { client, defaults } = this
|
|
2552
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2553
|
+
throw new Error(
|
|
2554
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2555
|
+
)
|
|
2556
|
+
}
|
|
2557
|
+
return function networksGet(
|
|
2558
|
+
...args: Parameters<SeamHttpNetworks['get']>
|
|
2559
|
+
): ReturnType<SeamHttpNetworks['get']> {
|
|
2560
|
+
const seam = SeamHttpNetworks.fromClient(client, defaults)
|
|
2561
|
+
return seam.get(...args)
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2565
|
+
get ['/networks/list'](): (
|
|
2566
|
+
parameters?: NetworksListParameters,
|
|
2567
|
+
options?: NetworksListOptions,
|
|
2568
|
+
) => NetworksListRequest {
|
|
2569
|
+
const { client, defaults } = this
|
|
2570
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2571
|
+
throw new Error(
|
|
2572
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2573
|
+
)
|
|
2574
|
+
}
|
|
2575
|
+
return function networksList(
|
|
2576
|
+
...args: Parameters<SeamHttpNetworks['list']>
|
|
2577
|
+
): ReturnType<SeamHttpNetworks['list']> {
|
|
2578
|
+
const seam = SeamHttpNetworks.fromClient(client, defaults)
|
|
2579
|
+
return seam.list(...args)
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
get ['/noise_sensors/list'](): (
|
|
2584
|
+
parameters?: NoiseSensorsListParameters,
|
|
2585
|
+
options?: NoiseSensorsListOptions,
|
|
2586
|
+
) => NoiseSensorsListRequest {
|
|
1207
2587
|
const { client, defaults } = this
|
|
1208
2588
|
return function noiseSensorsList(
|
|
1209
2589
|
...args: Parameters<SeamHttpNoiseSensors['list']>
|
|
@@ -1213,7 +2593,10 @@ export class SeamHttpEndpoints {
|
|
|
1213
2593
|
}
|
|
1214
2594
|
}
|
|
1215
2595
|
|
|
1216
|
-
get ['/noise_sensors/noise_thresholds/create']():
|
|
2596
|
+
get ['/noise_sensors/noise_thresholds/create'](): (
|
|
2597
|
+
parameters?: NoiseSensorsNoiseThresholdsCreateParameters,
|
|
2598
|
+
options?: NoiseSensorsNoiseThresholdsCreateOptions,
|
|
2599
|
+
) => NoiseSensorsNoiseThresholdsCreateRequest {
|
|
1217
2600
|
const { client, defaults } = this
|
|
1218
2601
|
return function noiseSensorsNoiseThresholdsCreate(
|
|
1219
2602
|
...args: Parameters<SeamHttpNoiseSensorsNoiseThresholds['create']>
|
|
@@ -1226,7 +2609,10 @@ export class SeamHttpEndpoints {
|
|
|
1226
2609
|
}
|
|
1227
2610
|
}
|
|
1228
2611
|
|
|
1229
|
-
get ['/noise_sensors/noise_thresholds/delete']():
|
|
2612
|
+
get ['/noise_sensors/noise_thresholds/delete'](): (
|
|
2613
|
+
parameters?: NoiseSensorsNoiseThresholdsDeleteParameters,
|
|
2614
|
+
options?: NoiseSensorsNoiseThresholdsDeleteOptions,
|
|
2615
|
+
) => NoiseSensorsNoiseThresholdsDeleteRequest {
|
|
1230
2616
|
const { client, defaults } = this
|
|
1231
2617
|
return function noiseSensorsNoiseThresholdsDelete(
|
|
1232
2618
|
...args: Parameters<SeamHttpNoiseSensorsNoiseThresholds['delete']>
|
|
@@ -1239,7 +2625,10 @@ export class SeamHttpEndpoints {
|
|
|
1239
2625
|
}
|
|
1240
2626
|
}
|
|
1241
2627
|
|
|
1242
|
-
get ['/noise_sensors/noise_thresholds/get']():
|
|
2628
|
+
get ['/noise_sensors/noise_thresholds/get'](): (
|
|
2629
|
+
parameters?: NoiseSensorsNoiseThresholdsGetParameters,
|
|
2630
|
+
options?: NoiseSensorsNoiseThresholdsGetOptions,
|
|
2631
|
+
) => NoiseSensorsNoiseThresholdsGetRequest {
|
|
1243
2632
|
const { client, defaults } = this
|
|
1244
2633
|
return function noiseSensorsNoiseThresholdsGet(
|
|
1245
2634
|
...args: Parameters<SeamHttpNoiseSensorsNoiseThresholds['get']>
|
|
@@ -1252,7 +2641,10 @@ export class SeamHttpEndpoints {
|
|
|
1252
2641
|
}
|
|
1253
2642
|
}
|
|
1254
2643
|
|
|
1255
|
-
get ['/noise_sensors/noise_thresholds/list']():
|
|
2644
|
+
get ['/noise_sensors/noise_thresholds/list'](): (
|
|
2645
|
+
parameters?: NoiseSensorsNoiseThresholdsListParameters,
|
|
2646
|
+
options?: NoiseSensorsNoiseThresholdsListOptions,
|
|
2647
|
+
) => NoiseSensorsNoiseThresholdsListRequest {
|
|
1256
2648
|
const { client, defaults } = this
|
|
1257
2649
|
return function noiseSensorsNoiseThresholdsList(
|
|
1258
2650
|
...args: Parameters<SeamHttpNoiseSensorsNoiseThresholds['list']>
|
|
@@ -1265,7 +2657,10 @@ export class SeamHttpEndpoints {
|
|
|
1265
2657
|
}
|
|
1266
2658
|
}
|
|
1267
2659
|
|
|
1268
|
-
get ['/noise_sensors/noise_thresholds/update']():
|
|
2660
|
+
get ['/noise_sensors/noise_thresholds/update'](): (
|
|
2661
|
+
parameters?: NoiseSensorsNoiseThresholdsUpdateParameters,
|
|
2662
|
+
options?: NoiseSensorsNoiseThresholdsUpdateOptions,
|
|
2663
|
+
) => NoiseSensorsNoiseThresholdsUpdateRequest {
|
|
1269
2664
|
const { client, defaults } = this
|
|
1270
2665
|
return function noiseSensorsNoiseThresholdsUpdate(
|
|
1271
2666
|
...args: Parameters<SeamHttpNoiseSensorsNoiseThresholds['update']>
|
|
@@ -1278,7 +2673,10 @@ export class SeamHttpEndpoints {
|
|
|
1278
2673
|
}
|
|
1279
2674
|
}
|
|
1280
2675
|
|
|
1281
|
-
get ['/noise_sensors/simulate/trigger_noise_threshold']():
|
|
2676
|
+
get ['/noise_sensors/simulate/trigger_noise_threshold'](): (
|
|
2677
|
+
parameters?: NoiseSensorsSimulateTriggerNoiseThresholdParameters,
|
|
2678
|
+
options?: NoiseSensorsSimulateTriggerNoiseThresholdOptions,
|
|
2679
|
+
) => NoiseSensorsSimulateTriggerNoiseThresholdRequest {
|
|
1282
2680
|
const { client, defaults } = this
|
|
1283
2681
|
return function noiseSensorsSimulateTriggerNoiseThreshold(
|
|
1284
2682
|
...args: Parameters<SeamHttpNoiseSensorsSimulate['triggerNoiseThreshold']>
|
|
@@ -1288,7 +2686,10 @@ export class SeamHttpEndpoints {
|
|
|
1288
2686
|
}
|
|
1289
2687
|
}
|
|
1290
2688
|
|
|
1291
|
-
get ['/phones/deactivate']():
|
|
2689
|
+
get ['/phones/deactivate'](): (
|
|
2690
|
+
parameters?: PhonesDeactivateParameters,
|
|
2691
|
+
options?: PhonesDeactivateOptions,
|
|
2692
|
+
) => PhonesDeactivateRequest {
|
|
1292
2693
|
const { client, defaults } = this
|
|
1293
2694
|
return function phonesDeactivate(
|
|
1294
2695
|
...args: Parameters<SeamHttpPhones['deactivate']>
|
|
@@ -1298,7 +2699,10 @@ export class SeamHttpEndpoints {
|
|
|
1298
2699
|
}
|
|
1299
2700
|
}
|
|
1300
2701
|
|
|
1301
|
-
get ['/phones/get']():
|
|
2702
|
+
get ['/phones/get'](): (
|
|
2703
|
+
parameters?: PhonesGetParameters,
|
|
2704
|
+
options?: PhonesGetOptions,
|
|
2705
|
+
) => PhonesGetRequest {
|
|
1302
2706
|
const { client, defaults } = this
|
|
1303
2707
|
return function phonesGet(
|
|
1304
2708
|
...args: Parameters<SeamHttpPhones['get']>
|
|
@@ -1308,7 +2712,10 @@ export class SeamHttpEndpoints {
|
|
|
1308
2712
|
}
|
|
1309
2713
|
}
|
|
1310
2714
|
|
|
1311
|
-
get ['/phones/list']():
|
|
2715
|
+
get ['/phones/list'](): (
|
|
2716
|
+
parameters?: PhonesListParameters,
|
|
2717
|
+
options?: PhonesListOptions,
|
|
2718
|
+
) => PhonesListRequest {
|
|
1312
2719
|
const { client, defaults } = this
|
|
1313
2720
|
return function phonesList(
|
|
1314
2721
|
...args: Parameters<SeamHttpPhones['list']>
|
|
@@ -1318,7 +2725,10 @@ export class SeamHttpEndpoints {
|
|
|
1318
2725
|
}
|
|
1319
2726
|
}
|
|
1320
2727
|
|
|
1321
|
-
get ['/phones/simulate/create_sandbox_phone']():
|
|
2728
|
+
get ['/phones/simulate/create_sandbox_phone'](): (
|
|
2729
|
+
parameters?: PhonesSimulateCreateSandboxPhoneParameters,
|
|
2730
|
+
options?: PhonesSimulateCreateSandboxPhoneOptions,
|
|
2731
|
+
) => PhonesSimulateCreateSandboxPhoneRequest {
|
|
1322
2732
|
const { client, defaults } = this
|
|
1323
2733
|
return function phonesSimulateCreateSandboxPhone(
|
|
1324
2734
|
...args: Parameters<SeamHttpPhonesSimulate['createSandboxPhone']>
|
|
@@ -1328,7 +2738,250 @@ export class SeamHttpEndpoints {
|
|
|
1328
2738
|
}
|
|
1329
2739
|
}
|
|
1330
2740
|
|
|
1331
|
-
get ['/
|
|
2741
|
+
get ['/seam/bridge/v1/bridge_client_sessions/create'](): (
|
|
2742
|
+
parameters?: SeamBridgeV1BridgeClientSessionsCreateParameters,
|
|
2743
|
+
options?: SeamBridgeV1BridgeClientSessionsCreateOptions,
|
|
2744
|
+
) => SeamBridgeV1BridgeClientSessionsCreateRequest {
|
|
2745
|
+
const { client, defaults } = this
|
|
2746
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2747
|
+
throw new Error(
|
|
2748
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2749
|
+
)
|
|
2750
|
+
}
|
|
2751
|
+
return function seamBridgeV1BridgeClientSessionsCreate(
|
|
2752
|
+
...args: Parameters<SeamHttpSeamBridgeV1BridgeClientSessions['create']>
|
|
2753
|
+
): ReturnType<SeamHttpSeamBridgeV1BridgeClientSessions['create']> {
|
|
2754
|
+
const seam = SeamHttpSeamBridgeV1BridgeClientSessions.fromClient(
|
|
2755
|
+
client,
|
|
2756
|
+
defaults,
|
|
2757
|
+
)
|
|
2758
|
+
return seam.create(...args)
|
|
2759
|
+
}
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
get ['/seam/bridge/v1/bridge_client_sessions/get'](): (
|
|
2763
|
+
parameters?: SeamBridgeV1BridgeClientSessionsGetParameters,
|
|
2764
|
+
options?: SeamBridgeV1BridgeClientSessionsGetOptions,
|
|
2765
|
+
) => SeamBridgeV1BridgeClientSessionsGetRequest {
|
|
2766
|
+
const { client, defaults } = this
|
|
2767
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2768
|
+
throw new Error(
|
|
2769
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2770
|
+
)
|
|
2771
|
+
}
|
|
2772
|
+
return function seamBridgeV1BridgeClientSessionsGet(
|
|
2773
|
+
...args: Parameters<SeamHttpSeamBridgeV1BridgeClientSessions['get']>
|
|
2774
|
+
): ReturnType<SeamHttpSeamBridgeV1BridgeClientSessions['get']> {
|
|
2775
|
+
const seam = SeamHttpSeamBridgeV1BridgeClientSessions.fromClient(
|
|
2776
|
+
client,
|
|
2777
|
+
defaults,
|
|
2778
|
+
)
|
|
2779
|
+
return seam.get(...args)
|
|
2780
|
+
}
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
get ['/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'](): (
|
|
2784
|
+
parameters?: SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters,
|
|
2785
|
+
options?: SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenOptions,
|
|
2786
|
+
) => SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest {
|
|
2787
|
+
const { client, defaults } = this
|
|
2788
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2789
|
+
throw new Error(
|
|
2790
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2791
|
+
)
|
|
2792
|
+
}
|
|
2793
|
+
return function seamBridgeV1BridgeClientSessionsRefreshTelemetryToken(
|
|
2794
|
+
...args: Parameters<
|
|
2795
|
+
SeamHttpSeamBridgeV1BridgeClientSessions['refreshTelemetryToken']
|
|
2796
|
+
>
|
|
2797
|
+
): ReturnType<
|
|
2798
|
+
SeamHttpSeamBridgeV1BridgeClientSessions['refreshTelemetryToken']
|
|
2799
|
+
> {
|
|
2800
|
+
const seam = SeamHttpSeamBridgeV1BridgeClientSessions.fromClient(
|
|
2801
|
+
client,
|
|
2802
|
+
defaults,
|
|
2803
|
+
)
|
|
2804
|
+
return seam.refreshTelemetryToken(...args)
|
|
2805
|
+
}
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
get ['/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code'](): (
|
|
2809
|
+
parameters?: SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters,
|
|
2810
|
+
options?: SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeOptions,
|
|
2811
|
+
) => SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest {
|
|
2812
|
+
const { client, defaults } = this
|
|
2813
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2814
|
+
throw new Error(
|
|
2815
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2816
|
+
)
|
|
2817
|
+
}
|
|
2818
|
+
return function seamBridgeV1BridgeClientSessionsRegeneratePairingCode(
|
|
2819
|
+
...args: Parameters<
|
|
2820
|
+
SeamHttpSeamBridgeV1BridgeClientSessions['regeneratePairingCode']
|
|
2821
|
+
>
|
|
2822
|
+
): ReturnType<
|
|
2823
|
+
SeamHttpSeamBridgeV1BridgeClientSessions['regeneratePairingCode']
|
|
2824
|
+
> {
|
|
2825
|
+
const seam = SeamHttpSeamBridgeV1BridgeClientSessions.fromClient(
|
|
2826
|
+
client,
|
|
2827
|
+
defaults,
|
|
2828
|
+
)
|
|
2829
|
+
return seam.regeneratePairingCode(...args)
|
|
2830
|
+
}
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
get ['/seam/bridge/v1/bridge_client_sessions/report_status'](): (
|
|
2834
|
+
parameters?: SeamBridgeV1BridgeClientSessionsReportStatusParameters,
|
|
2835
|
+
options?: SeamBridgeV1BridgeClientSessionsReportStatusOptions,
|
|
2836
|
+
) => SeamBridgeV1BridgeClientSessionsReportStatusRequest {
|
|
2837
|
+
const { client, defaults } = this
|
|
2838
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2839
|
+
throw new Error(
|
|
2840
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2841
|
+
)
|
|
2842
|
+
}
|
|
2843
|
+
return function seamBridgeV1BridgeClientSessionsReportStatus(
|
|
2844
|
+
...args: Parameters<
|
|
2845
|
+
SeamHttpSeamBridgeV1BridgeClientSessions['reportStatus']
|
|
2846
|
+
>
|
|
2847
|
+
): ReturnType<SeamHttpSeamBridgeV1BridgeClientSessions['reportStatus']> {
|
|
2848
|
+
const seam = SeamHttpSeamBridgeV1BridgeClientSessions.fromClient(
|
|
2849
|
+
client,
|
|
2850
|
+
defaults,
|
|
2851
|
+
)
|
|
2852
|
+
return seam.reportStatus(...args)
|
|
2853
|
+
}
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
get ['/seam/bridge/v1/bridge_connected_systems/list'](): (
|
|
2857
|
+
parameters?: SeamBridgeV1BridgeConnectedSystemsListParameters,
|
|
2858
|
+
options?: SeamBridgeV1BridgeConnectedSystemsListOptions,
|
|
2859
|
+
) => SeamBridgeV1BridgeConnectedSystemsListRequest {
|
|
2860
|
+
const { client, defaults } = this
|
|
2861
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2862
|
+
throw new Error(
|
|
2863
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2864
|
+
)
|
|
2865
|
+
}
|
|
2866
|
+
return function seamBridgeV1BridgeConnectedSystemsList(
|
|
2867
|
+
...args: Parameters<SeamHttpSeamBridgeV1BridgeConnectedSystems['list']>
|
|
2868
|
+
): ReturnType<SeamHttpSeamBridgeV1BridgeConnectedSystems['list']> {
|
|
2869
|
+
const seam = SeamHttpSeamBridgeV1BridgeConnectedSystems.fromClient(
|
|
2870
|
+
client,
|
|
2871
|
+
defaults,
|
|
2872
|
+
)
|
|
2873
|
+
return seam.list(...args)
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
get ['/seam/instant_key/v1/client_sessions/exchange_short_code'](): (
|
|
2878
|
+
parameters?: SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters,
|
|
2879
|
+
options?: SeamInstantKeyV1ClientSessionsExchangeShortCodeOptions,
|
|
2880
|
+
) => SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest {
|
|
2881
|
+
const { client, defaults } = this
|
|
2882
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2883
|
+
throw new Error(
|
|
2884
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2885
|
+
)
|
|
2886
|
+
}
|
|
2887
|
+
return function seamInstantKeyV1ClientSessionsExchangeShortCode(
|
|
2888
|
+
...args: Parameters<
|
|
2889
|
+
SeamHttpSeamInstantKeyV1ClientSessions['exchangeShortCode']
|
|
2890
|
+
>
|
|
2891
|
+
): ReturnType<SeamHttpSeamInstantKeyV1ClientSessions['exchangeShortCode']> {
|
|
2892
|
+
const seam = SeamHttpSeamInstantKeyV1ClientSessions.fromClient(
|
|
2893
|
+
client,
|
|
2894
|
+
defaults,
|
|
2895
|
+
)
|
|
2896
|
+
return seam.exchangeShortCode(...args)
|
|
2897
|
+
}
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
get ['/seam/mobile_sdk/v1/acs/credentials/list'](): (
|
|
2901
|
+
parameters?: SeamMobileSdkV1AcsCredentialsListParameters,
|
|
2902
|
+
options?: SeamMobileSdkV1AcsCredentialsListOptions,
|
|
2903
|
+
) => SeamMobileSdkV1AcsCredentialsListRequest {
|
|
2904
|
+
const { client, defaults } = this
|
|
2905
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2906
|
+
throw new Error(
|
|
2907
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2908
|
+
)
|
|
2909
|
+
}
|
|
2910
|
+
return function seamMobileSdkV1AcsCredentialsList(
|
|
2911
|
+
...args: Parameters<SeamHttpSeamMobileSdkV1AcsCredentials['list']>
|
|
2912
|
+
): ReturnType<SeamHttpSeamMobileSdkV1AcsCredentials['list']> {
|
|
2913
|
+
const seam = SeamHttpSeamMobileSdkV1AcsCredentials.fromClient(
|
|
2914
|
+
client,
|
|
2915
|
+
defaults,
|
|
2916
|
+
)
|
|
2917
|
+
return seam.list(...args)
|
|
2918
|
+
}
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
get ['/seam/mobile_sdk/v1/phone_sessions/get_or_create'](): (
|
|
2922
|
+
parameters?: SeamMobileSdkV1PhoneSessionsGetOrCreateParameters,
|
|
2923
|
+
options?: SeamMobileSdkV1PhoneSessionsGetOrCreateOptions,
|
|
2924
|
+
) => SeamMobileSdkV1PhoneSessionsGetOrCreateRequest {
|
|
2925
|
+
const { client, defaults } = this
|
|
2926
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2927
|
+
throw new Error(
|
|
2928
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2929
|
+
)
|
|
2930
|
+
}
|
|
2931
|
+
return function seamMobileSdkV1PhoneSessionsGetOrCreate(
|
|
2932
|
+
...args: Parameters<SeamHttpSeamMobileSdkV1PhoneSessions['getOrCreate']>
|
|
2933
|
+
): ReturnType<SeamHttpSeamMobileSdkV1PhoneSessions['getOrCreate']> {
|
|
2934
|
+
const seam = SeamHttpSeamMobileSdkV1PhoneSessions.fromClient(
|
|
2935
|
+
client,
|
|
2936
|
+
defaults,
|
|
2937
|
+
)
|
|
2938
|
+
return seam.getOrCreate(...args)
|
|
2939
|
+
}
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
get ['/seam/partner/v1/building_blocks/spaces/auto_map'](): (
|
|
2943
|
+
parameters?: SeamPartnerV1BuildingBlocksSpacesAutoMapParameters,
|
|
2944
|
+
options?: SeamPartnerV1BuildingBlocksSpacesAutoMapOptions,
|
|
2945
|
+
) => SeamPartnerV1BuildingBlocksSpacesAutoMapRequest {
|
|
2946
|
+
const { client, defaults } = this
|
|
2947
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2948
|
+
throw new Error(
|
|
2949
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2950
|
+
)
|
|
2951
|
+
}
|
|
2952
|
+
return function seamPartnerV1BuildingBlocksSpacesAutoMap(
|
|
2953
|
+
...args: Parameters<SeamHttpSeamPartnerV1BuildingBlocksSpaces['autoMap']>
|
|
2954
|
+
): ReturnType<SeamHttpSeamPartnerV1BuildingBlocksSpaces['autoMap']> {
|
|
2955
|
+
const seam = SeamHttpSeamPartnerV1BuildingBlocksSpaces.fromClient(
|
|
2956
|
+
client,
|
|
2957
|
+
defaults,
|
|
2958
|
+
)
|
|
2959
|
+
return seam.autoMap(...args)
|
|
2960
|
+
}
|
|
2961
|
+
}
|
|
2962
|
+
|
|
2963
|
+
get ['/seam/partner/v1/resources/list'](): (
|
|
2964
|
+
parameters?: SeamPartnerV1ResourcesListParameters,
|
|
2965
|
+
options?: SeamPartnerV1ResourcesListOptions,
|
|
2966
|
+
) => SeamPartnerV1ResourcesListRequest {
|
|
2967
|
+
const { client, defaults } = this
|
|
2968
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2969
|
+
throw new Error(
|
|
2970
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2971
|
+
)
|
|
2972
|
+
}
|
|
2973
|
+
return function seamPartnerV1ResourcesList(
|
|
2974
|
+
...args: Parameters<SeamHttpSeamPartnerV1Resources['list']>
|
|
2975
|
+
): ReturnType<SeamHttpSeamPartnerV1Resources['list']> {
|
|
2976
|
+
const seam = SeamHttpSeamPartnerV1Resources.fromClient(client, defaults)
|
|
2977
|
+
return seam.list(...args)
|
|
2978
|
+
}
|
|
2979
|
+
}
|
|
2980
|
+
|
|
2981
|
+
get ['/spaces/add_acs_entrances'](): (
|
|
2982
|
+
parameters?: SpacesAddAcsEntrancesParameters,
|
|
2983
|
+
options?: SpacesAddAcsEntrancesOptions,
|
|
2984
|
+
) => SpacesAddAcsEntrancesRequest {
|
|
1332
2985
|
const { client, defaults } = this
|
|
1333
2986
|
return function spacesAddAcsEntrances(
|
|
1334
2987
|
...args: Parameters<SeamHttpSpaces['addAcsEntrances']>
|
|
@@ -1338,7 +2991,10 @@ export class SeamHttpEndpoints {
|
|
|
1338
2991
|
}
|
|
1339
2992
|
}
|
|
1340
2993
|
|
|
1341
|
-
get ['/spaces/add_devices']():
|
|
2994
|
+
get ['/spaces/add_devices'](): (
|
|
2995
|
+
parameters?: SpacesAddDevicesParameters,
|
|
2996
|
+
options?: SpacesAddDevicesOptions,
|
|
2997
|
+
) => SpacesAddDevicesRequest {
|
|
1342
2998
|
const { client, defaults } = this
|
|
1343
2999
|
return function spacesAddDevices(
|
|
1344
3000
|
...args: Parameters<SeamHttpSpaces['addDevices']>
|
|
@@ -1348,7 +3004,10 @@ export class SeamHttpEndpoints {
|
|
|
1348
3004
|
}
|
|
1349
3005
|
}
|
|
1350
3006
|
|
|
1351
|
-
get ['/spaces/create']():
|
|
3007
|
+
get ['/spaces/create'](): (
|
|
3008
|
+
parameters?: SpacesCreateParameters,
|
|
3009
|
+
options?: SpacesCreateOptions,
|
|
3010
|
+
) => SpacesCreateRequest {
|
|
1352
3011
|
const { client, defaults } = this
|
|
1353
3012
|
return function spacesCreate(
|
|
1354
3013
|
...args: Parameters<SeamHttpSpaces['create']>
|
|
@@ -1358,7 +3017,10 @@ export class SeamHttpEndpoints {
|
|
|
1358
3017
|
}
|
|
1359
3018
|
}
|
|
1360
3019
|
|
|
1361
|
-
get ['/spaces/delete']():
|
|
3020
|
+
get ['/spaces/delete'](): (
|
|
3021
|
+
parameters?: SpacesDeleteParameters,
|
|
3022
|
+
options?: SpacesDeleteOptions,
|
|
3023
|
+
) => SpacesDeleteRequest {
|
|
1362
3024
|
const { client, defaults } = this
|
|
1363
3025
|
return function spacesDelete(
|
|
1364
3026
|
...args: Parameters<SeamHttpSpaces['delete']>
|
|
@@ -1368,7 +3030,10 @@ export class SeamHttpEndpoints {
|
|
|
1368
3030
|
}
|
|
1369
3031
|
}
|
|
1370
3032
|
|
|
1371
|
-
get ['/spaces/get']():
|
|
3033
|
+
get ['/spaces/get'](): (
|
|
3034
|
+
parameters?: SpacesGetParameters,
|
|
3035
|
+
options?: SpacesGetOptions,
|
|
3036
|
+
) => SpacesGetRequest {
|
|
1372
3037
|
const { client, defaults } = this
|
|
1373
3038
|
return function spacesGet(
|
|
1374
3039
|
...args: Parameters<SeamHttpSpaces['get']>
|
|
@@ -1378,7 +3043,10 @@ export class SeamHttpEndpoints {
|
|
|
1378
3043
|
}
|
|
1379
3044
|
}
|
|
1380
3045
|
|
|
1381
|
-
get ['/spaces/list']():
|
|
3046
|
+
get ['/spaces/list'](): (
|
|
3047
|
+
parameters?: SpacesListParameters,
|
|
3048
|
+
options?: SpacesListOptions,
|
|
3049
|
+
) => SpacesListRequest {
|
|
1382
3050
|
const { client, defaults } = this
|
|
1383
3051
|
return function spacesList(
|
|
1384
3052
|
...args: Parameters<SeamHttpSpaces['list']>
|
|
@@ -1388,7 +3056,10 @@ export class SeamHttpEndpoints {
|
|
|
1388
3056
|
}
|
|
1389
3057
|
}
|
|
1390
3058
|
|
|
1391
|
-
get ['/spaces/remove_acs_entrances']():
|
|
3059
|
+
get ['/spaces/remove_acs_entrances'](): (
|
|
3060
|
+
parameters?: SpacesRemoveAcsEntrancesParameters,
|
|
3061
|
+
options?: SpacesRemoveAcsEntrancesOptions,
|
|
3062
|
+
) => SpacesRemoveAcsEntrancesRequest {
|
|
1392
3063
|
const { client, defaults } = this
|
|
1393
3064
|
return function spacesRemoveAcsEntrances(
|
|
1394
3065
|
...args: Parameters<SeamHttpSpaces['removeAcsEntrances']>
|
|
@@ -1398,7 +3069,10 @@ export class SeamHttpEndpoints {
|
|
|
1398
3069
|
}
|
|
1399
3070
|
}
|
|
1400
3071
|
|
|
1401
|
-
get ['/spaces/remove_devices']():
|
|
3072
|
+
get ['/spaces/remove_devices'](): (
|
|
3073
|
+
parameters?: SpacesRemoveDevicesParameters,
|
|
3074
|
+
options?: SpacesRemoveDevicesOptions,
|
|
3075
|
+
) => SpacesRemoveDevicesRequest {
|
|
1402
3076
|
const { client, defaults } = this
|
|
1403
3077
|
return function spacesRemoveDevices(
|
|
1404
3078
|
...args: Parameters<SeamHttpSpaces['removeDevices']>
|
|
@@ -1408,7 +3082,10 @@ export class SeamHttpEndpoints {
|
|
|
1408
3082
|
}
|
|
1409
3083
|
}
|
|
1410
3084
|
|
|
1411
|
-
get ['/spaces/update']():
|
|
3085
|
+
get ['/spaces/update'](): (
|
|
3086
|
+
parameters?: SpacesUpdateParameters,
|
|
3087
|
+
options?: SpacesUpdateOptions,
|
|
3088
|
+
) => SpacesUpdateRequest {
|
|
1412
3089
|
const { client, defaults } = this
|
|
1413
3090
|
return function spacesUpdate(
|
|
1414
3091
|
...args: Parameters<SeamHttpSpaces['update']>
|
|
@@ -1418,7 +3095,10 @@ export class SeamHttpEndpoints {
|
|
|
1418
3095
|
}
|
|
1419
3096
|
}
|
|
1420
3097
|
|
|
1421
|
-
get ['/thermostats/activate_climate_preset']():
|
|
3098
|
+
get ['/thermostats/activate_climate_preset'](): (
|
|
3099
|
+
parameters?: ThermostatsActivateClimatePresetParameters,
|
|
3100
|
+
options?: ThermostatsActivateClimatePresetOptions,
|
|
3101
|
+
) => ThermostatsActivateClimatePresetRequest {
|
|
1422
3102
|
const { client, defaults } = this
|
|
1423
3103
|
return function thermostatsActivateClimatePreset(
|
|
1424
3104
|
...args: Parameters<SeamHttpThermostats['activateClimatePreset']>
|
|
@@ -1428,7 +3108,10 @@ export class SeamHttpEndpoints {
|
|
|
1428
3108
|
}
|
|
1429
3109
|
}
|
|
1430
3110
|
|
|
1431
|
-
get ['/thermostats/cool']():
|
|
3111
|
+
get ['/thermostats/cool'](): (
|
|
3112
|
+
parameters?: ThermostatsCoolParameters,
|
|
3113
|
+
options?: ThermostatsCoolOptions,
|
|
3114
|
+
) => ThermostatsCoolRequest {
|
|
1432
3115
|
const { client, defaults } = this
|
|
1433
3116
|
return function thermostatsCool(
|
|
1434
3117
|
...args: Parameters<SeamHttpThermostats['cool']>
|
|
@@ -1438,7 +3121,10 @@ export class SeamHttpEndpoints {
|
|
|
1438
3121
|
}
|
|
1439
3122
|
}
|
|
1440
3123
|
|
|
1441
|
-
get ['/thermostats/create_climate_preset']():
|
|
3124
|
+
get ['/thermostats/create_climate_preset'](): (
|
|
3125
|
+
parameters?: ThermostatsCreateClimatePresetParameters,
|
|
3126
|
+
options?: ThermostatsCreateClimatePresetOptions,
|
|
3127
|
+
) => ThermostatsCreateClimatePresetRequest {
|
|
1442
3128
|
const { client, defaults } = this
|
|
1443
3129
|
return function thermostatsCreateClimatePreset(
|
|
1444
3130
|
...args: Parameters<SeamHttpThermostats['createClimatePreset']>
|
|
@@ -1448,7 +3134,10 @@ export class SeamHttpEndpoints {
|
|
|
1448
3134
|
}
|
|
1449
3135
|
}
|
|
1450
3136
|
|
|
1451
|
-
get ['/thermostats/delete_climate_preset']():
|
|
3137
|
+
get ['/thermostats/delete_climate_preset'](): (
|
|
3138
|
+
parameters?: ThermostatsDeleteClimatePresetParameters,
|
|
3139
|
+
options?: ThermostatsDeleteClimatePresetOptions,
|
|
3140
|
+
) => ThermostatsDeleteClimatePresetRequest {
|
|
1452
3141
|
const { client, defaults } = this
|
|
1453
3142
|
return function thermostatsDeleteClimatePreset(
|
|
1454
3143
|
...args: Parameters<SeamHttpThermostats['deleteClimatePreset']>
|
|
@@ -1458,7 +3147,28 @@ export class SeamHttpEndpoints {
|
|
|
1458
3147
|
}
|
|
1459
3148
|
}
|
|
1460
3149
|
|
|
1461
|
-
get ['/thermostats/
|
|
3150
|
+
get ['/thermostats/get'](): (
|
|
3151
|
+
parameters?: ThermostatsGetParameters,
|
|
3152
|
+
options?: ThermostatsGetOptions,
|
|
3153
|
+
) => ThermostatsGetRequest {
|
|
3154
|
+
const { client, defaults } = this
|
|
3155
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3156
|
+
throw new Error(
|
|
3157
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3158
|
+
)
|
|
3159
|
+
}
|
|
3160
|
+
return function thermostatsGet(
|
|
3161
|
+
...args: Parameters<SeamHttpThermostats['get']>
|
|
3162
|
+
): ReturnType<SeamHttpThermostats['get']> {
|
|
3163
|
+
const seam = SeamHttpThermostats.fromClient(client, defaults)
|
|
3164
|
+
return seam.get(...args)
|
|
3165
|
+
}
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3168
|
+
get ['/thermostats/heat'](): (
|
|
3169
|
+
parameters?: ThermostatsHeatParameters,
|
|
3170
|
+
options?: ThermostatsHeatOptions,
|
|
3171
|
+
) => ThermostatsHeatRequest {
|
|
1462
3172
|
const { client, defaults } = this
|
|
1463
3173
|
return function thermostatsHeat(
|
|
1464
3174
|
...args: Parameters<SeamHttpThermostats['heat']>
|
|
@@ -1468,7 +3178,10 @@ export class SeamHttpEndpoints {
|
|
|
1468
3178
|
}
|
|
1469
3179
|
}
|
|
1470
3180
|
|
|
1471
|
-
get ['/thermostats/heat_cool']():
|
|
3181
|
+
get ['/thermostats/heat_cool'](): (
|
|
3182
|
+
parameters?: ThermostatsHeatCoolParameters,
|
|
3183
|
+
options?: ThermostatsHeatCoolOptions,
|
|
3184
|
+
) => ThermostatsHeatCoolRequest {
|
|
1472
3185
|
const { client, defaults } = this
|
|
1473
3186
|
return function thermostatsHeatCool(
|
|
1474
3187
|
...args: Parameters<SeamHttpThermostats['heatCool']>
|
|
@@ -1478,7 +3191,10 @@ export class SeamHttpEndpoints {
|
|
|
1478
3191
|
}
|
|
1479
3192
|
}
|
|
1480
3193
|
|
|
1481
|
-
get ['/thermostats/list']():
|
|
3194
|
+
get ['/thermostats/list'](): (
|
|
3195
|
+
parameters?: ThermostatsListParameters,
|
|
3196
|
+
options?: ThermostatsListOptions,
|
|
3197
|
+
) => ThermostatsListRequest {
|
|
1482
3198
|
const { client, defaults } = this
|
|
1483
3199
|
return function thermostatsList(
|
|
1484
3200
|
...args: Parameters<SeamHttpThermostats['list']>
|
|
@@ -1488,7 +3204,10 @@ export class SeamHttpEndpoints {
|
|
|
1488
3204
|
}
|
|
1489
3205
|
}
|
|
1490
3206
|
|
|
1491
|
-
get ['/thermostats/off']():
|
|
3207
|
+
get ['/thermostats/off'](): (
|
|
3208
|
+
parameters?: ThermostatsOffParameters,
|
|
3209
|
+
options?: ThermostatsOffOptions,
|
|
3210
|
+
) => ThermostatsOffRequest {
|
|
1492
3211
|
const { client, defaults } = this
|
|
1493
3212
|
return function thermostatsOff(
|
|
1494
3213
|
...args: Parameters<SeamHttpThermostats['off']>
|
|
@@ -1498,7 +3217,10 @@ export class SeamHttpEndpoints {
|
|
|
1498
3217
|
}
|
|
1499
3218
|
}
|
|
1500
3219
|
|
|
1501
|
-
get ['/thermostats/set_fallback_climate_preset']():
|
|
3220
|
+
get ['/thermostats/set_fallback_climate_preset'](): (
|
|
3221
|
+
parameters?: ThermostatsSetFallbackClimatePresetParameters,
|
|
3222
|
+
options?: ThermostatsSetFallbackClimatePresetOptions,
|
|
3223
|
+
) => ThermostatsSetFallbackClimatePresetRequest {
|
|
1502
3224
|
const { client, defaults } = this
|
|
1503
3225
|
return function thermostatsSetFallbackClimatePreset(
|
|
1504
3226
|
...args: Parameters<SeamHttpThermostats['setFallbackClimatePreset']>
|
|
@@ -1508,7 +3230,10 @@ export class SeamHttpEndpoints {
|
|
|
1508
3230
|
}
|
|
1509
3231
|
}
|
|
1510
3232
|
|
|
1511
|
-
get ['/thermostats/set_fan_mode']():
|
|
3233
|
+
get ['/thermostats/set_fan_mode'](): (
|
|
3234
|
+
parameters?: ThermostatsSetFanModeParameters,
|
|
3235
|
+
options?: ThermostatsSetFanModeOptions,
|
|
3236
|
+
) => ThermostatsSetFanModeRequest {
|
|
1512
3237
|
const { client, defaults } = this
|
|
1513
3238
|
return function thermostatsSetFanMode(
|
|
1514
3239
|
...args: Parameters<SeamHttpThermostats['setFanMode']>
|
|
@@ -1518,7 +3243,10 @@ export class SeamHttpEndpoints {
|
|
|
1518
3243
|
}
|
|
1519
3244
|
}
|
|
1520
3245
|
|
|
1521
|
-
get ['/thermostats/set_hvac_mode']():
|
|
3246
|
+
get ['/thermostats/set_hvac_mode'](): (
|
|
3247
|
+
parameters?: ThermostatsSetHvacModeParameters,
|
|
3248
|
+
options?: ThermostatsSetHvacModeOptions,
|
|
3249
|
+
) => ThermostatsSetHvacModeRequest {
|
|
1522
3250
|
const { client, defaults } = this
|
|
1523
3251
|
return function thermostatsSetHvacMode(
|
|
1524
3252
|
...args: Parameters<SeamHttpThermostats['setHvacMode']>
|
|
@@ -1528,7 +3256,10 @@ export class SeamHttpEndpoints {
|
|
|
1528
3256
|
}
|
|
1529
3257
|
}
|
|
1530
3258
|
|
|
1531
|
-
get ['/thermostats/set_temperature_threshold']():
|
|
3259
|
+
get ['/thermostats/set_temperature_threshold'](): (
|
|
3260
|
+
parameters?: ThermostatsSetTemperatureThresholdParameters,
|
|
3261
|
+
options?: ThermostatsSetTemperatureThresholdOptions,
|
|
3262
|
+
) => ThermostatsSetTemperatureThresholdRequest {
|
|
1532
3263
|
const { client, defaults } = this
|
|
1533
3264
|
return function thermostatsSetTemperatureThreshold(
|
|
1534
3265
|
...args: Parameters<SeamHttpThermostats['setTemperatureThreshold']>
|
|
@@ -1538,7 +3269,10 @@ export class SeamHttpEndpoints {
|
|
|
1538
3269
|
}
|
|
1539
3270
|
}
|
|
1540
3271
|
|
|
1541
|
-
get ['/thermostats/update_climate_preset']():
|
|
3272
|
+
get ['/thermostats/update_climate_preset'](): (
|
|
3273
|
+
parameters?: ThermostatsUpdateClimatePresetParameters,
|
|
3274
|
+
options?: ThermostatsUpdateClimatePresetOptions,
|
|
3275
|
+
) => ThermostatsUpdateClimatePresetRequest {
|
|
1542
3276
|
const { client, defaults } = this
|
|
1543
3277
|
return function thermostatsUpdateClimatePreset(
|
|
1544
3278
|
...args: Parameters<SeamHttpThermostats['updateClimatePreset']>
|
|
@@ -1548,7 +3282,10 @@ export class SeamHttpEndpoints {
|
|
|
1548
3282
|
}
|
|
1549
3283
|
}
|
|
1550
3284
|
|
|
1551
|
-
get ['/thermostats/update_weekly_program']():
|
|
3285
|
+
get ['/thermostats/update_weekly_program'](): (
|
|
3286
|
+
parameters?: ThermostatsUpdateWeeklyProgramParameters,
|
|
3287
|
+
options?: ThermostatsUpdateWeeklyProgramOptions,
|
|
3288
|
+
) => ThermostatsUpdateWeeklyProgramRequest {
|
|
1552
3289
|
const { client, defaults } = this
|
|
1553
3290
|
return function thermostatsUpdateWeeklyProgram(
|
|
1554
3291
|
...args: Parameters<SeamHttpThermostats['updateWeeklyProgram']>
|
|
@@ -1558,7 +3295,10 @@ export class SeamHttpEndpoints {
|
|
|
1558
3295
|
}
|
|
1559
3296
|
}
|
|
1560
3297
|
|
|
1561
|
-
get ['/thermostats/daily_programs/create']():
|
|
3298
|
+
get ['/thermostats/daily_programs/create'](): (
|
|
3299
|
+
parameters?: ThermostatsDailyProgramsCreateParameters,
|
|
3300
|
+
options?: ThermostatsDailyProgramsCreateOptions,
|
|
3301
|
+
) => ThermostatsDailyProgramsCreateRequest {
|
|
1562
3302
|
const { client, defaults } = this
|
|
1563
3303
|
return function thermostatsDailyProgramsCreate(
|
|
1564
3304
|
...args: Parameters<SeamHttpThermostatsDailyPrograms['create']>
|
|
@@ -1568,7 +3308,10 @@ export class SeamHttpEndpoints {
|
|
|
1568
3308
|
}
|
|
1569
3309
|
}
|
|
1570
3310
|
|
|
1571
|
-
get ['/thermostats/daily_programs/delete']():
|
|
3311
|
+
get ['/thermostats/daily_programs/delete'](): (
|
|
3312
|
+
parameters?: ThermostatsDailyProgramsDeleteParameters,
|
|
3313
|
+
options?: ThermostatsDailyProgramsDeleteOptions,
|
|
3314
|
+
) => ThermostatsDailyProgramsDeleteRequest {
|
|
1572
3315
|
const { client, defaults } = this
|
|
1573
3316
|
return function thermostatsDailyProgramsDelete(
|
|
1574
3317
|
...args: Parameters<SeamHttpThermostatsDailyPrograms['delete']>
|
|
@@ -1578,7 +3321,10 @@ export class SeamHttpEndpoints {
|
|
|
1578
3321
|
}
|
|
1579
3322
|
}
|
|
1580
3323
|
|
|
1581
|
-
get ['/thermostats/daily_programs/update']():
|
|
3324
|
+
get ['/thermostats/daily_programs/update'](): (
|
|
3325
|
+
parameters?: ThermostatsDailyProgramsUpdateParameters,
|
|
3326
|
+
options?: ThermostatsDailyProgramsUpdateOptions,
|
|
3327
|
+
) => ThermostatsDailyProgramsUpdateRequest {
|
|
1582
3328
|
const { client, defaults } = this
|
|
1583
3329
|
return function thermostatsDailyProgramsUpdate(
|
|
1584
3330
|
...args: Parameters<SeamHttpThermostatsDailyPrograms['update']>
|
|
@@ -1588,7 +3334,10 @@ export class SeamHttpEndpoints {
|
|
|
1588
3334
|
}
|
|
1589
3335
|
}
|
|
1590
3336
|
|
|
1591
|
-
get ['/thermostats/schedules/create']():
|
|
3337
|
+
get ['/thermostats/schedules/create'](): (
|
|
3338
|
+
parameters?: ThermostatsSchedulesCreateParameters,
|
|
3339
|
+
options?: ThermostatsSchedulesCreateOptions,
|
|
3340
|
+
) => ThermostatsSchedulesCreateRequest {
|
|
1592
3341
|
const { client, defaults } = this
|
|
1593
3342
|
return function thermostatsSchedulesCreate(
|
|
1594
3343
|
...args: Parameters<SeamHttpThermostatsSchedules['create']>
|
|
@@ -1598,7 +3347,10 @@ export class SeamHttpEndpoints {
|
|
|
1598
3347
|
}
|
|
1599
3348
|
}
|
|
1600
3349
|
|
|
1601
|
-
get ['/thermostats/schedules/delete']():
|
|
3350
|
+
get ['/thermostats/schedules/delete'](): (
|
|
3351
|
+
parameters?: ThermostatsSchedulesDeleteParameters,
|
|
3352
|
+
options?: ThermostatsSchedulesDeleteOptions,
|
|
3353
|
+
) => ThermostatsSchedulesDeleteRequest {
|
|
1602
3354
|
const { client, defaults } = this
|
|
1603
3355
|
return function thermostatsSchedulesDelete(
|
|
1604
3356
|
...args: Parameters<SeamHttpThermostatsSchedules['delete']>
|
|
@@ -1608,7 +3360,10 @@ export class SeamHttpEndpoints {
|
|
|
1608
3360
|
}
|
|
1609
3361
|
}
|
|
1610
3362
|
|
|
1611
|
-
get ['/thermostats/schedules/get']():
|
|
3363
|
+
get ['/thermostats/schedules/get'](): (
|
|
3364
|
+
parameters?: ThermostatsSchedulesGetParameters,
|
|
3365
|
+
options?: ThermostatsSchedulesGetOptions,
|
|
3366
|
+
) => ThermostatsSchedulesGetRequest {
|
|
1612
3367
|
const { client, defaults } = this
|
|
1613
3368
|
return function thermostatsSchedulesGet(
|
|
1614
3369
|
...args: Parameters<SeamHttpThermostatsSchedules['get']>
|
|
@@ -1618,7 +3373,10 @@ export class SeamHttpEndpoints {
|
|
|
1618
3373
|
}
|
|
1619
3374
|
}
|
|
1620
3375
|
|
|
1621
|
-
get ['/thermostats/schedules/list']():
|
|
3376
|
+
get ['/thermostats/schedules/list'](): (
|
|
3377
|
+
parameters?: ThermostatsSchedulesListParameters,
|
|
3378
|
+
options?: ThermostatsSchedulesListOptions,
|
|
3379
|
+
) => ThermostatsSchedulesListRequest {
|
|
1622
3380
|
const { client, defaults } = this
|
|
1623
3381
|
return function thermostatsSchedulesList(
|
|
1624
3382
|
...args: Parameters<SeamHttpThermostatsSchedules['list']>
|
|
@@ -1628,7 +3386,10 @@ export class SeamHttpEndpoints {
|
|
|
1628
3386
|
}
|
|
1629
3387
|
}
|
|
1630
3388
|
|
|
1631
|
-
get ['/thermostats/schedules/update']():
|
|
3389
|
+
get ['/thermostats/schedules/update'](): (
|
|
3390
|
+
parameters?: ThermostatsSchedulesUpdateParameters,
|
|
3391
|
+
options?: ThermostatsSchedulesUpdateOptions,
|
|
3392
|
+
) => ThermostatsSchedulesUpdateRequest {
|
|
1632
3393
|
const { client, defaults } = this
|
|
1633
3394
|
return function thermostatsSchedulesUpdate(
|
|
1634
3395
|
...args: Parameters<SeamHttpThermostatsSchedules['update']>
|
|
@@ -1638,7 +3399,10 @@ export class SeamHttpEndpoints {
|
|
|
1638
3399
|
}
|
|
1639
3400
|
}
|
|
1640
3401
|
|
|
1641
|
-
get ['/thermostats/simulate/hvac_mode_adjusted']():
|
|
3402
|
+
get ['/thermostats/simulate/hvac_mode_adjusted'](): (
|
|
3403
|
+
parameters?: ThermostatsSimulateHvacModeAdjustedParameters,
|
|
3404
|
+
options?: ThermostatsSimulateHvacModeAdjustedOptions,
|
|
3405
|
+
) => ThermostatsSimulateHvacModeAdjustedRequest {
|
|
1642
3406
|
const { client, defaults } = this
|
|
1643
3407
|
return function thermostatsSimulateHvacModeAdjusted(
|
|
1644
3408
|
...args: Parameters<SeamHttpThermostatsSimulate['hvacModeAdjusted']>
|
|
@@ -1648,7 +3412,10 @@ export class SeamHttpEndpoints {
|
|
|
1648
3412
|
}
|
|
1649
3413
|
}
|
|
1650
3414
|
|
|
1651
|
-
get ['/thermostats/simulate/temperature_reached']():
|
|
3415
|
+
get ['/thermostats/simulate/temperature_reached'](): (
|
|
3416
|
+
parameters?: ThermostatsSimulateTemperatureReachedParameters,
|
|
3417
|
+
options?: ThermostatsSimulateTemperatureReachedOptions,
|
|
3418
|
+
) => ThermostatsSimulateTemperatureReachedRequest {
|
|
1652
3419
|
const { client, defaults } = this
|
|
1653
3420
|
return function thermostatsSimulateTemperatureReached(
|
|
1654
3421
|
...args: Parameters<SeamHttpThermostatsSimulate['temperatureReached']>
|
|
@@ -1658,7 +3425,408 @@ export class SeamHttpEndpoints {
|
|
|
1658
3425
|
}
|
|
1659
3426
|
}
|
|
1660
3427
|
|
|
1661
|
-
get ['/
|
|
3428
|
+
get ['/unstable_access_grants/create'](): (
|
|
3429
|
+
parameters?: UnstableAccessGrantsCreateParameters,
|
|
3430
|
+
options?: UnstableAccessGrantsCreateOptions,
|
|
3431
|
+
) => UnstableAccessGrantsCreateRequest {
|
|
3432
|
+
const { client, defaults } = this
|
|
3433
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3434
|
+
throw new Error(
|
|
3435
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3436
|
+
)
|
|
3437
|
+
}
|
|
3438
|
+
return function unstableAccessGrantsCreate(
|
|
3439
|
+
...args: Parameters<SeamHttpUnstableAccessGrants['create']>
|
|
3440
|
+
): ReturnType<SeamHttpUnstableAccessGrants['create']> {
|
|
3441
|
+
const seam = SeamHttpUnstableAccessGrants.fromClient(client, defaults)
|
|
3442
|
+
return seam.create(...args)
|
|
3443
|
+
}
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
get ['/unstable_access_grants/delete'](): (
|
|
3447
|
+
parameters?: UnstableAccessGrantsDeleteParameters,
|
|
3448
|
+
options?: UnstableAccessGrantsDeleteOptions,
|
|
3449
|
+
) => UnstableAccessGrantsDeleteRequest {
|
|
3450
|
+
const { client, defaults } = this
|
|
3451
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3452
|
+
throw new Error(
|
|
3453
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3454
|
+
)
|
|
3455
|
+
}
|
|
3456
|
+
return function unstableAccessGrantsDelete(
|
|
3457
|
+
...args: Parameters<SeamHttpUnstableAccessGrants['delete']>
|
|
3458
|
+
): ReturnType<SeamHttpUnstableAccessGrants['delete']> {
|
|
3459
|
+
const seam = SeamHttpUnstableAccessGrants.fromClient(client, defaults)
|
|
3460
|
+
return seam.delete(...args)
|
|
3461
|
+
}
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3464
|
+
get ['/unstable_access_grants/get'](): (
|
|
3465
|
+
parameters?: UnstableAccessGrantsGetParameters,
|
|
3466
|
+
options?: UnstableAccessGrantsGetOptions,
|
|
3467
|
+
) => UnstableAccessGrantsGetRequest {
|
|
3468
|
+
const { client, defaults } = this
|
|
3469
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3470
|
+
throw new Error(
|
|
3471
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3472
|
+
)
|
|
3473
|
+
}
|
|
3474
|
+
return function unstableAccessGrantsGet(
|
|
3475
|
+
...args: Parameters<SeamHttpUnstableAccessGrants['get']>
|
|
3476
|
+
): ReturnType<SeamHttpUnstableAccessGrants['get']> {
|
|
3477
|
+
const seam = SeamHttpUnstableAccessGrants.fromClient(client, defaults)
|
|
3478
|
+
return seam.get(...args)
|
|
3479
|
+
}
|
|
3480
|
+
}
|
|
3481
|
+
|
|
3482
|
+
get ['/unstable_access_grants/list'](): (
|
|
3483
|
+
parameters?: UnstableAccessGrantsListParameters,
|
|
3484
|
+
options?: UnstableAccessGrantsListOptions,
|
|
3485
|
+
) => UnstableAccessGrantsListRequest {
|
|
3486
|
+
const { client, defaults } = this
|
|
3487
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3488
|
+
throw new Error(
|
|
3489
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3490
|
+
)
|
|
3491
|
+
}
|
|
3492
|
+
return function unstableAccessGrantsList(
|
|
3493
|
+
...args: Parameters<SeamHttpUnstableAccessGrants['list']>
|
|
3494
|
+
): ReturnType<SeamHttpUnstableAccessGrants['list']> {
|
|
3495
|
+
const seam = SeamHttpUnstableAccessGrants.fromClient(client, defaults)
|
|
3496
|
+
return seam.list(...args)
|
|
3497
|
+
}
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
get ['/unstable_access_methods/delete'](): (
|
|
3501
|
+
parameters?: UnstableAccessMethodsDeleteParameters,
|
|
3502
|
+
options?: UnstableAccessMethodsDeleteOptions,
|
|
3503
|
+
) => UnstableAccessMethodsDeleteRequest {
|
|
3504
|
+
const { client, defaults } = this
|
|
3505
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3506
|
+
throw new Error(
|
|
3507
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3508
|
+
)
|
|
3509
|
+
}
|
|
3510
|
+
return function unstableAccessMethodsDelete(
|
|
3511
|
+
...args: Parameters<SeamHttpUnstableAccessMethods['delete']>
|
|
3512
|
+
): ReturnType<SeamHttpUnstableAccessMethods['delete']> {
|
|
3513
|
+
const seam = SeamHttpUnstableAccessMethods.fromClient(client, defaults)
|
|
3514
|
+
return seam.delete(...args)
|
|
3515
|
+
}
|
|
3516
|
+
}
|
|
3517
|
+
|
|
3518
|
+
get ['/unstable_access_methods/get'](): (
|
|
3519
|
+
parameters?: UnstableAccessMethodsGetParameters,
|
|
3520
|
+
options?: UnstableAccessMethodsGetOptions,
|
|
3521
|
+
) => UnstableAccessMethodsGetRequest {
|
|
3522
|
+
const { client, defaults } = this
|
|
3523
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3524
|
+
throw new Error(
|
|
3525
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3526
|
+
)
|
|
3527
|
+
}
|
|
3528
|
+
return function unstableAccessMethodsGet(
|
|
3529
|
+
...args: Parameters<SeamHttpUnstableAccessMethods['get']>
|
|
3530
|
+
): ReturnType<SeamHttpUnstableAccessMethods['get']> {
|
|
3531
|
+
const seam = SeamHttpUnstableAccessMethods.fromClient(client, defaults)
|
|
3532
|
+
return seam.get(...args)
|
|
3533
|
+
}
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
get ['/unstable_access_methods/list'](): (
|
|
3537
|
+
parameters?: UnstableAccessMethodsListParameters,
|
|
3538
|
+
options?: UnstableAccessMethodsListOptions,
|
|
3539
|
+
) => UnstableAccessMethodsListRequest {
|
|
3540
|
+
const { client, defaults } = this
|
|
3541
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3542
|
+
throw new Error(
|
|
3543
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3544
|
+
)
|
|
3545
|
+
}
|
|
3546
|
+
return function unstableAccessMethodsList(
|
|
3547
|
+
...args: Parameters<SeamHttpUnstableAccessMethods['list']>
|
|
3548
|
+
): ReturnType<SeamHttpUnstableAccessMethods['list']> {
|
|
3549
|
+
const seam = SeamHttpUnstableAccessMethods.fromClient(client, defaults)
|
|
3550
|
+
return seam.list(...args)
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
get ['/unstable_locations/add_acs_entrances'](): (
|
|
3555
|
+
parameters?: UnstableLocationsAddAcsEntrancesParameters,
|
|
3556
|
+
options?: UnstableLocationsAddAcsEntrancesOptions,
|
|
3557
|
+
) => UnstableLocationsAddAcsEntrancesRequest {
|
|
3558
|
+
const { client, defaults } = this
|
|
3559
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3560
|
+
throw new Error(
|
|
3561
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3562
|
+
)
|
|
3563
|
+
}
|
|
3564
|
+
return function unstableLocationsAddAcsEntrances(
|
|
3565
|
+
...args: Parameters<SeamHttpUnstableLocations['addAcsEntrances']>
|
|
3566
|
+
): ReturnType<SeamHttpUnstableLocations['addAcsEntrances']> {
|
|
3567
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3568
|
+
return seam.addAcsEntrances(...args)
|
|
3569
|
+
}
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
get ['/unstable_locations/add_devices'](): (
|
|
3573
|
+
parameters?: UnstableLocationsAddDevicesParameters,
|
|
3574
|
+
options?: UnstableLocationsAddDevicesOptions,
|
|
3575
|
+
) => UnstableLocationsAddDevicesRequest {
|
|
3576
|
+
const { client, defaults } = this
|
|
3577
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3578
|
+
throw new Error(
|
|
3579
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3580
|
+
)
|
|
3581
|
+
}
|
|
3582
|
+
return function unstableLocationsAddDevices(
|
|
3583
|
+
...args: Parameters<SeamHttpUnstableLocations['addDevices']>
|
|
3584
|
+
): ReturnType<SeamHttpUnstableLocations['addDevices']> {
|
|
3585
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3586
|
+
return seam.addDevices(...args)
|
|
3587
|
+
}
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
get ['/unstable_locations/create'](): (
|
|
3591
|
+
parameters?: UnstableLocationsCreateParameters,
|
|
3592
|
+
options?: UnstableLocationsCreateOptions,
|
|
3593
|
+
) => UnstableLocationsCreateRequest {
|
|
3594
|
+
const { client, defaults } = this
|
|
3595
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3596
|
+
throw new Error(
|
|
3597
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3598
|
+
)
|
|
3599
|
+
}
|
|
3600
|
+
return function unstableLocationsCreate(
|
|
3601
|
+
...args: Parameters<SeamHttpUnstableLocations['create']>
|
|
3602
|
+
): ReturnType<SeamHttpUnstableLocations['create']> {
|
|
3603
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3604
|
+
return seam.create(...args)
|
|
3605
|
+
}
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3608
|
+
get ['/unstable_locations/delete'](): (
|
|
3609
|
+
parameters?: UnstableLocationsDeleteParameters,
|
|
3610
|
+
options?: UnstableLocationsDeleteOptions,
|
|
3611
|
+
) => UnstableLocationsDeleteRequest {
|
|
3612
|
+
const { client, defaults } = this
|
|
3613
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3614
|
+
throw new Error(
|
|
3615
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3616
|
+
)
|
|
3617
|
+
}
|
|
3618
|
+
return function unstableLocationsDelete(
|
|
3619
|
+
...args: Parameters<SeamHttpUnstableLocations['delete']>
|
|
3620
|
+
): ReturnType<SeamHttpUnstableLocations['delete']> {
|
|
3621
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3622
|
+
return seam.delete(...args)
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
get ['/unstable_locations/get'](): (
|
|
3627
|
+
parameters?: UnstableLocationsGetParameters,
|
|
3628
|
+
options?: UnstableLocationsGetOptions,
|
|
3629
|
+
) => UnstableLocationsGetRequest {
|
|
3630
|
+
const { client, defaults } = this
|
|
3631
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3632
|
+
throw new Error(
|
|
3633
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3634
|
+
)
|
|
3635
|
+
}
|
|
3636
|
+
return function unstableLocationsGet(
|
|
3637
|
+
...args: Parameters<SeamHttpUnstableLocations['get']>
|
|
3638
|
+
): ReturnType<SeamHttpUnstableLocations['get']> {
|
|
3639
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3640
|
+
return seam.get(...args)
|
|
3641
|
+
}
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
get ['/unstable_locations/list'](): (
|
|
3645
|
+
parameters?: UnstableLocationsListParameters,
|
|
3646
|
+
options?: UnstableLocationsListOptions,
|
|
3647
|
+
) => UnstableLocationsListRequest {
|
|
3648
|
+
const { client, defaults } = this
|
|
3649
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3650
|
+
throw new Error(
|
|
3651
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3652
|
+
)
|
|
3653
|
+
}
|
|
3654
|
+
return function unstableLocationsList(
|
|
3655
|
+
...args: Parameters<SeamHttpUnstableLocations['list']>
|
|
3656
|
+
): ReturnType<SeamHttpUnstableLocations['list']> {
|
|
3657
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3658
|
+
return seam.list(...args)
|
|
3659
|
+
}
|
|
3660
|
+
}
|
|
3661
|
+
|
|
3662
|
+
get ['/unstable_locations/remove_acs_entrances'](): (
|
|
3663
|
+
parameters?: UnstableLocationsRemoveAcsEntrancesParameters,
|
|
3664
|
+
options?: UnstableLocationsRemoveAcsEntrancesOptions,
|
|
3665
|
+
) => UnstableLocationsRemoveAcsEntrancesRequest {
|
|
3666
|
+
const { client, defaults } = this
|
|
3667
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3668
|
+
throw new Error(
|
|
3669
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3670
|
+
)
|
|
3671
|
+
}
|
|
3672
|
+
return function unstableLocationsRemoveAcsEntrances(
|
|
3673
|
+
...args: Parameters<SeamHttpUnstableLocations['removeAcsEntrances']>
|
|
3674
|
+
): ReturnType<SeamHttpUnstableLocations['removeAcsEntrances']> {
|
|
3675
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3676
|
+
return seam.removeAcsEntrances(...args)
|
|
3677
|
+
}
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
get ['/unstable_locations/remove_devices'](): (
|
|
3681
|
+
parameters?: UnstableLocationsRemoveDevicesParameters,
|
|
3682
|
+
options?: UnstableLocationsRemoveDevicesOptions,
|
|
3683
|
+
) => UnstableLocationsRemoveDevicesRequest {
|
|
3684
|
+
const { client, defaults } = this
|
|
3685
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3686
|
+
throw new Error(
|
|
3687
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3688
|
+
)
|
|
3689
|
+
}
|
|
3690
|
+
return function unstableLocationsRemoveDevices(
|
|
3691
|
+
...args: Parameters<SeamHttpUnstableLocations['removeDevices']>
|
|
3692
|
+
): ReturnType<SeamHttpUnstableLocations['removeDevices']> {
|
|
3693
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3694
|
+
return seam.removeDevices(...args)
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
get ['/unstable_locations/update'](): (
|
|
3699
|
+
parameters?: UnstableLocationsUpdateParameters,
|
|
3700
|
+
options?: UnstableLocationsUpdateOptions,
|
|
3701
|
+
) => UnstableLocationsUpdateRequest {
|
|
3702
|
+
const { client, defaults } = this
|
|
3703
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3704
|
+
throw new Error(
|
|
3705
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3706
|
+
)
|
|
3707
|
+
}
|
|
3708
|
+
return function unstableLocationsUpdate(
|
|
3709
|
+
...args: Parameters<SeamHttpUnstableLocations['update']>
|
|
3710
|
+
): ReturnType<SeamHttpUnstableLocations['update']> {
|
|
3711
|
+
const seam = SeamHttpUnstableLocations.fromClient(client, defaults)
|
|
3712
|
+
return seam.update(...args)
|
|
3713
|
+
}
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
get ['/unstable_partner/building_blocks/connect_accounts'](): (
|
|
3717
|
+
parameters?: UnstablePartnerBuildingBlocksConnectAccountsParameters,
|
|
3718
|
+
options?: UnstablePartnerBuildingBlocksConnectAccountsOptions,
|
|
3719
|
+
) => UnstablePartnerBuildingBlocksConnectAccountsRequest {
|
|
3720
|
+
const { client, defaults } = this
|
|
3721
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3722
|
+
throw new Error(
|
|
3723
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3724
|
+
)
|
|
3725
|
+
}
|
|
3726
|
+
return function unstablePartnerBuildingBlocksConnectAccounts(
|
|
3727
|
+
...args: Parameters<
|
|
3728
|
+
SeamHttpUnstablePartnerBuildingBlocks['connectAccounts']
|
|
3729
|
+
>
|
|
3730
|
+
): ReturnType<SeamHttpUnstablePartnerBuildingBlocks['connectAccounts']> {
|
|
3731
|
+
const seam = SeamHttpUnstablePartnerBuildingBlocks.fromClient(
|
|
3732
|
+
client,
|
|
3733
|
+
defaults,
|
|
3734
|
+
)
|
|
3735
|
+
return seam.connectAccounts(...args)
|
|
3736
|
+
}
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
get ['/unstable_partner/building_blocks/generate_magic_link'](): (
|
|
3740
|
+
parameters?: UnstablePartnerBuildingBlocksGenerateMagicLinkParameters,
|
|
3741
|
+
options?: UnstablePartnerBuildingBlocksGenerateMagicLinkOptions,
|
|
3742
|
+
) => UnstablePartnerBuildingBlocksGenerateMagicLinkRequest {
|
|
3743
|
+
const { client, defaults } = this
|
|
3744
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3745
|
+
throw new Error(
|
|
3746
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3747
|
+
)
|
|
3748
|
+
}
|
|
3749
|
+
return function unstablePartnerBuildingBlocksGenerateMagicLink(
|
|
3750
|
+
...args: Parameters<
|
|
3751
|
+
SeamHttpUnstablePartnerBuildingBlocks['generateMagicLink']
|
|
3752
|
+
>
|
|
3753
|
+
): ReturnType<SeamHttpUnstablePartnerBuildingBlocks['generateMagicLink']> {
|
|
3754
|
+
const seam = SeamHttpUnstablePartnerBuildingBlocks.fromClient(
|
|
3755
|
+
client,
|
|
3756
|
+
defaults,
|
|
3757
|
+
)
|
|
3758
|
+
return seam.generateMagicLink(...args)
|
|
3759
|
+
}
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
get ['/unstable_partner/building_blocks/manage_devices'](): (
|
|
3763
|
+
parameters?: UnstablePartnerBuildingBlocksManageDevicesParameters,
|
|
3764
|
+
options?: UnstablePartnerBuildingBlocksManageDevicesOptions,
|
|
3765
|
+
) => UnstablePartnerBuildingBlocksManageDevicesRequest {
|
|
3766
|
+
const { client, defaults } = this
|
|
3767
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3768
|
+
throw new Error(
|
|
3769
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3770
|
+
)
|
|
3771
|
+
}
|
|
3772
|
+
return function unstablePartnerBuildingBlocksManageDevices(
|
|
3773
|
+
...args: Parameters<
|
|
3774
|
+
SeamHttpUnstablePartnerBuildingBlocks['manageDevices']
|
|
3775
|
+
>
|
|
3776
|
+
): ReturnType<SeamHttpUnstablePartnerBuildingBlocks['manageDevices']> {
|
|
3777
|
+
const seam = SeamHttpUnstablePartnerBuildingBlocks.fromClient(
|
|
3778
|
+
client,
|
|
3779
|
+
defaults,
|
|
3780
|
+
)
|
|
3781
|
+
return seam.manageDevices(...args)
|
|
3782
|
+
}
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
get ['/unstable_partner/building_blocks/organize_spaces'](): (
|
|
3786
|
+
parameters?: UnstablePartnerBuildingBlocksOrganizeSpacesParameters,
|
|
3787
|
+
options?: UnstablePartnerBuildingBlocksOrganizeSpacesOptions,
|
|
3788
|
+
) => UnstablePartnerBuildingBlocksOrganizeSpacesRequest {
|
|
3789
|
+
const { client, defaults } = this
|
|
3790
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3791
|
+
throw new Error(
|
|
3792
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3793
|
+
)
|
|
3794
|
+
}
|
|
3795
|
+
return function unstablePartnerBuildingBlocksOrganizeSpaces(
|
|
3796
|
+
...args: Parameters<
|
|
3797
|
+
SeamHttpUnstablePartnerBuildingBlocks['organizeSpaces']
|
|
3798
|
+
>
|
|
3799
|
+
): ReturnType<SeamHttpUnstablePartnerBuildingBlocks['organizeSpaces']> {
|
|
3800
|
+
const seam = SeamHttpUnstablePartnerBuildingBlocks.fromClient(
|
|
3801
|
+
client,
|
|
3802
|
+
defaults,
|
|
3803
|
+
)
|
|
3804
|
+
return seam.organizeSpaces(...args)
|
|
3805
|
+
}
|
|
3806
|
+
}
|
|
3807
|
+
|
|
3808
|
+
get ['/unstable_partner/resources/push'](): (
|
|
3809
|
+
parameters?: UnstablePartnerResourcesPushParameters,
|
|
3810
|
+
options?: UnstablePartnerResourcesPushOptions,
|
|
3811
|
+
) => UnstablePartnerResourcesPushRequest {
|
|
3812
|
+
const { client, defaults } = this
|
|
3813
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3814
|
+
throw new Error(
|
|
3815
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3816
|
+
)
|
|
3817
|
+
}
|
|
3818
|
+
return function unstablePartnerResourcesPush(
|
|
3819
|
+
...args: Parameters<SeamHttpUnstablePartnerResources['push']>
|
|
3820
|
+
): ReturnType<SeamHttpUnstablePartnerResources['push']> {
|
|
3821
|
+
const seam = SeamHttpUnstablePartnerResources.fromClient(client, defaults)
|
|
3822
|
+
return seam.push(...args)
|
|
3823
|
+
}
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
get ['/user_identities/add_acs_user'](): (
|
|
3827
|
+
parameters?: UserIdentitiesAddAcsUserParameters,
|
|
3828
|
+
options?: UserIdentitiesAddAcsUserOptions,
|
|
3829
|
+
) => UserIdentitiesAddAcsUserRequest {
|
|
1662
3830
|
const { client, defaults } = this
|
|
1663
3831
|
return function userIdentitiesAddAcsUser(
|
|
1664
3832
|
...args: Parameters<SeamHttpUserIdentities['addAcsUser']>
|
|
@@ -1668,7 +3836,10 @@ export class SeamHttpEndpoints {
|
|
|
1668
3836
|
}
|
|
1669
3837
|
}
|
|
1670
3838
|
|
|
1671
|
-
get ['/user_identities/create']():
|
|
3839
|
+
get ['/user_identities/create'](): (
|
|
3840
|
+
parameters?: UserIdentitiesCreateParameters,
|
|
3841
|
+
options?: UserIdentitiesCreateOptions,
|
|
3842
|
+
) => UserIdentitiesCreateRequest {
|
|
1672
3843
|
const { client, defaults } = this
|
|
1673
3844
|
return function userIdentitiesCreate(
|
|
1674
3845
|
...args: Parameters<SeamHttpUserIdentities['create']>
|
|
@@ -1678,7 +3849,10 @@ export class SeamHttpEndpoints {
|
|
|
1678
3849
|
}
|
|
1679
3850
|
}
|
|
1680
3851
|
|
|
1681
|
-
get ['/user_identities/delete']():
|
|
3852
|
+
get ['/user_identities/delete'](): (
|
|
3853
|
+
parameters?: UserIdentitiesDeleteParameters,
|
|
3854
|
+
options?: UserIdentitiesDeleteOptions,
|
|
3855
|
+
) => UserIdentitiesDeleteRequest {
|
|
1682
3856
|
const { client, defaults } = this
|
|
1683
3857
|
return function userIdentitiesDelete(
|
|
1684
3858
|
...args: Parameters<SeamHttpUserIdentities['delete']>
|
|
@@ -1688,7 +3862,10 @@ export class SeamHttpEndpoints {
|
|
|
1688
3862
|
}
|
|
1689
3863
|
}
|
|
1690
3864
|
|
|
1691
|
-
get ['/user_identities/generate_instant_key']():
|
|
3865
|
+
get ['/user_identities/generate_instant_key'](): (
|
|
3866
|
+
parameters?: UserIdentitiesGenerateInstantKeyParameters,
|
|
3867
|
+
options?: UserIdentitiesGenerateInstantKeyOptions,
|
|
3868
|
+
) => UserIdentitiesGenerateInstantKeyRequest {
|
|
1692
3869
|
const { client, defaults } = this
|
|
1693
3870
|
return function userIdentitiesGenerateInstantKey(
|
|
1694
3871
|
...args: Parameters<SeamHttpUserIdentities['generateInstantKey']>
|
|
@@ -1698,7 +3875,10 @@ export class SeamHttpEndpoints {
|
|
|
1698
3875
|
}
|
|
1699
3876
|
}
|
|
1700
3877
|
|
|
1701
|
-
get ['/user_identities/get']():
|
|
3878
|
+
get ['/user_identities/get'](): (
|
|
3879
|
+
parameters?: UserIdentitiesGetParameters,
|
|
3880
|
+
options?: UserIdentitiesGetOptions,
|
|
3881
|
+
) => UserIdentitiesGetRequest {
|
|
1702
3882
|
const { client, defaults } = this
|
|
1703
3883
|
return function userIdentitiesGet(
|
|
1704
3884
|
...args: Parameters<SeamHttpUserIdentities['get']>
|
|
@@ -1708,7 +3888,10 @@ export class SeamHttpEndpoints {
|
|
|
1708
3888
|
}
|
|
1709
3889
|
}
|
|
1710
3890
|
|
|
1711
|
-
get ['/user_identities/grant_access_to_device']():
|
|
3891
|
+
get ['/user_identities/grant_access_to_device'](): (
|
|
3892
|
+
parameters?: UserIdentitiesGrantAccessToDeviceParameters,
|
|
3893
|
+
options?: UserIdentitiesGrantAccessToDeviceOptions,
|
|
3894
|
+
) => UserIdentitiesGrantAccessToDeviceRequest {
|
|
1712
3895
|
const { client, defaults } = this
|
|
1713
3896
|
return function userIdentitiesGrantAccessToDevice(
|
|
1714
3897
|
...args: Parameters<SeamHttpUserIdentities['grantAccessToDevice']>
|
|
@@ -1718,7 +3901,10 @@ export class SeamHttpEndpoints {
|
|
|
1718
3901
|
}
|
|
1719
3902
|
}
|
|
1720
3903
|
|
|
1721
|
-
get ['/user_identities/list']():
|
|
3904
|
+
get ['/user_identities/list'](): (
|
|
3905
|
+
parameters?: UserIdentitiesListParameters,
|
|
3906
|
+
options?: UserIdentitiesListOptions,
|
|
3907
|
+
) => UserIdentitiesListRequest {
|
|
1722
3908
|
const { client, defaults } = this
|
|
1723
3909
|
return function userIdentitiesList(
|
|
1724
3910
|
...args: Parameters<SeamHttpUserIdentities['list']>
|
|
@@ -1728,7 +3914,10 @@ export class SeamHttpEndpoints {
|
|
|
1728
3914
|
}
|
|
1729
3915
|
}
|
|
1730
3916
|
|
|
1731
|
-
get ['/user_identities/list_accessible_devices']():
|
|
3917
|
+
get ['/user_identities/list_accessible_devices'](): (
|
|
3918
|
+
parameters?: UserIdentitiesListAccessibleDevicesParameters,
|
|
3919
|
+
options?: UserIdentitiesListAccessibleDevicesOptions,
|
|
3920
|
+
) => UserIdentitiesListAccessibleDevicesRequest {
|
|
1732
3921
|
const { client, defaults } = this
|
|
1733
3922
|
return function userIdentitiesListAccessibleDevices(
|
|
1734
3923
|
...args: Parameters<SeamHttpUserIdentities['listAccessibleDevices']>
|
|
@@ -1738,7 +3927,10 @@ export class SeamHttpEndpoints {
|
|
|
1738
3927
|
}
|
|
1739
3928
|
}
|
|
1740
3929
|
|
|
1741
|
-
get ['/user_identities/list_acs_systems']():
|
|
3930
|
+
get ['/user_identities/list_acs_systems'](): (
|
|
3931
|
+
parameters?: UserIdentitiesListAcsSystemsParameters,
|
|
3932
|
+
options?: UserIdentitiesListAcsSystemsOptions,
|
|
3933
|
+
) => UserIdentitiesListAcsSystemsRequest {
|
|
1742
3934
|
const { client, defaults } = this
|
|
1743
3935
|
return function userIdentitiesListAcsSystems(
|
|
1744
3936
|
...args: Parameters<SeamHttpUserIdentities['listAcsSystems']>
|
|
@@ -1748,7 +3940,10 @@ export class SeamHttpEndpoints {
|
|
|
1748
3940
|
}
|
|
1749
3941
|
}
|
|
1750
3942
|
|
|
1751
|
-
get ['/user_identities/list_acs_users']():
|
|
3943
|
+
get ['/user_identities/list_acs_users'](): (
|
|
3944
|
+
parameters?: UserIdentitiesListAcsUsersParameters,
|
|
3945
|
+
options?: UserIdentitiesListAcsUsersOptions,
|
|
3946
|
+
) => UserIdentitiesListAcsUsersRequest {
|
|
1752
3947
|
const { client, defaults } = this
|
|
1753
3948
|
return function userIdentitiesListAcsUsers(
|
|
1754
3949
|
...args: Parameters<SeamHttpUserIdentities['listAcsUsers']>
|
|
@@ -1758,7 +3953,10 @@ export class SeamHttpEndpoints {
|
|
|
1758
3953
|
}
|
|
1759
3954
|
}
|
|
1760
3955
|
|
|
1761
|
-
get ['/user_identities/remove_acs_user']():
|
|
3956
|
+
get ['/user_identities/remove_acs_user'](): (
|
|
3957
|
+
parameters?: UserIdentitiesRemoveAcsUserParameters,
|
|
3958
|
+
options?: UserIdentitiesRemoveAcsUserOptions,
|
|
3959
|
+
) => UserIdentitiesRemoveAcsUserRequest {
|
|
1762
3960
|
const { client, defaults } = this
|
|
1763
3961
|
return function userIdentitiesRemoveAcsUser(
|
|
1764
3962
|
...args: Parameters<SeamHttpUserIdentities['removeAcsUser']>
|
|
@@ -1768,7 +3966,10 @@ export class SeamHttpEndpoints {
|
|
|
1768
3966
|
}
|
|
1769
3967
|
}
|
|
1770
3968
|
|
|
1771
|
-
get ['/user_identities/revoke_access_to_device']():
|
|
3969
|
+
get ['/user_identities/revoke_access_to_device'](): (
|
|
3970
|
+
parameters?: UserIdentitiesRevokeAccessToDeviceParameters,
|
|
3971
|
+
options?: UserIdentitiesRevokeAccessToDeviceOptions,
|
|
3972
|
+
) => UserIdentitiesRevokeAccessToDeviceRequest {
|
|
1772
3973
|
const { client, defaults } = this
|
|
1773
3974
|
return function userIdentitiesRevokeAccessToDevice(
|
|
1774
3975
|
...args: Parameters<SeamHttpUserIdentities['revokeAccessToDevice']>
|
|
@@ -1778,7 +3979,10 @@ export class SeamHttpEndpoints {
|
|
|
1778
3979
|
}
|
|
1779
3980
|
}
|
|
1780
3981
|
|
|
1781
|
-
get ['/user_identities/update']():
|
|
3982
|
+
get ['/user_identities/update'](): (
|
|
3983
|
+
parameters?: UserIdentitiesUpdateParameters,
|
|
3984
|
+
options?: UserIdentitiesUpdateOptions,
|
|
3985
|
+
) => UserIdentitiesUpdateRequest {
|
|
1782
3986
|
const { client, defaults } = this
|
|
1783
3987
|
return function userIdentitiesUpdate(
|
|
1784
3988
|
...args: Parameters<SeamHttpUserIdentities['update']>
|
|
@@ -1788,7 +3992,10 @@ export class SeamHttpEndpoints {
|
|
|
1788
3992
|
}
|
|
1789
3993
|
}
|
|
1790
3994
|
|
|
1791
|
-
get ['/user_identities/enrollment_automations/delete']():
|
|
3995
|
+
get ['/user_identities/enrollment_automations/delete'](): (
|
|
3996
|
+
parameters?: UserIdentitiesEnrollmentAutomationsDeleteParameters,
|
|
3997
|
+
options?: UserIdentitiesEnrollmentAutomationsDeleteOptions,
|
|
3998
|
+
) => UserIdentitiesEnrollmentAutomationsDeleteRequest {
|
|
1792
3999
|
const { client, defaults } = this
|
|
1793
4000
|
return function userIdentitiesEnrollmentAutomationsDelete(
|
|
1794
4001
|
...args: Parameters<SeamHttpUserIdentitiesEnrollmentAutomations['delete']>
|
|
@@ -1801,7 +4008,10 @@ export class SeamHttpEndpoints {
|
|
|
1801
4008
|
}
|
|
1802
4009
|
}
|
|
1803
4010
|
|
|
1804
|
-
get ['/user_identities/enrollment_automations/get']():
|
|
4011
|
+
get ['/user_identities/enrollment_automations/get'](): (
|
|
4012
|
+
parameters?: UserIdentitiesEnrollmentAutomationsGetParameters,
|
|
4013
|
+
options?: UserIdentitiesEnrollmentAutomationsGetOptions,
|
|
4014
|
+
) => UserIdentitiesEnrollmentAutomationsGetRequest {
|
|
1805
4015
|
const { client, defaults } = this
|
|
1806
4016
|
return function userIdentitiesEnrollmentAutomationsGet(
|
|
1807
4017
|
...args: Parameters<SeamHttpUserIdentitiesEnrollmentAutomations['get']>
|
|
@@ -1814,7 +4024,10 @@ export class SeamHttpEndpoints {
|
|
|
1814
4024
|
}
|
|
1815
4025
|
}
|
|
1816
4026
|
|
|
1817
|
-
get ['/user_identities/enrollment_automations/launch']():
|
|
4027
|
+
get ['/user_identities/enrollment_automations/launch'](): (
|
|
4028
|
+
parameters?: UserIdentitiesEnrollmentAutomationsLaunchParameters,
|
|
4029
|
+
options?: UserIdentitiesEnrollmentAutomationsLaunchOptions,
|
|
4030
|
+
) => UserIdentitiesEnrollmentAutomationsLaunchRequest {
|
|
1818
4031
|
const { client, defaults } = this
|
|
1819
4032
|
return function userIdentitiesEnrollmentAutomationsLaunch(
|
|
1820
4033
|
...args: Parameters<SeamHttpUserIdentitiesEnrollmentAutomations['launch']>
|
|
@@ -1827,7 +4040,10 @@ export class SeamHttpEndpoints {
|
|
|
1827
4040
|
}
|
|
1828
4041
|
}
|
|
1829
4042
|
|
|
1830
|
-
get ['/user_identities/enrollment_automations/list']():
|
|
4043
|
+
get ['/user_identities/enrollment_automations/list'](): (
|
|
4044
|
+
parameters?: UserIdentitiesEnrollmentAutomationsListParameters,
|
|
4045
|
+
options?: UserIdentitiesEnrollmentAutomationsListOptions,
|
|
4046
|
+
) => UserIdentitiesEnrollmentAutomationsListRequest {
|
|
1831
4047
|
const { client, defaults } = this
|
|
1832
4048
|
return function userIdentitiesEnrollmentAutomationsList(
|
|
1833
4049
|
...args: Parameters<SeamHttpUserIdentitiesEnrollmentAutomations['list']>
|
|
@@ -1840,7 +4056,10 @@ export class SeamHttpEndpoints {
|
|
|
1840
4056
|
}
|
|
1841
4057
|
}
|
|
1842
4058
|
|
|
1843
|
-
get ['/webhooks/create']():
|
|
4059
|
+
get ['/webhooks/create'](): (
|
|
4060
|
+
parameters?: WebhooksCreateParameters,
|
|
4061
|
+
options?: WebhooksCreateOptions,
|
|
4062
|
+
) => WebhooksCreateRequest {
|
|
1844
4063
|
const { client, defaults } = this
|
|
1845
4064
|
return function webhooksCreate(
|
|
1846
4065
|
...args: Parameters<SeamHttpWebhooks['create']>
|
|
@@ -1850,7 +4069,10 @@ export class SeamHttpEndpoints {
|
|
|
1850
4069
|
}
|
|
1851
4070
|
}
|
|
1852
4071
|
|
|
1853
|
-
get ['/webhooks/delete']():
|
|
4072
|
+
get ['/webhooks/delete'](): (
|
|
4073
|
+
parameters?: WebhooksDeleteParameters,
|
|
4074
|
+
options?: WebhooksDeleteOptions,
|
|
4075
|
+
) => WebhooksDeleteRequest {
|
|
1854
4076
|
const { client, defaults } = this
|
|
1855
4077
|
return function webhooksDelete(
|
|
1856
4078
|
...args: Parameters<SeamHttpWebhooks['delete']>
|
|
@@ -1860,7 +4082,10 @@ export class SeamHttpEndpoints {
|
|
|
1860
4082
|
}
|
|
1861
4083
|
}
|
|
1862
4084
|
|
|
1863
|
-
get ['/webhooks/get']():
|
|
4085
|
+
get ['/webhooks/get'](): (
|
|
4086
|
+
parameters?: WebhooksGetParameters,
|
|
4087
|
+
options?: WebhooksGetOptions,
|
|
4088
|
+
) => WebhooksGetRequest {
|
|
1864
4089
|
const { client, defaults } = this
|
|
1865
4090
|
return function webhooksGet(
|
|
1866
4091
|
...args: Parameters<SeamHttpWebhooks['get']>
|
|
@@ -1870,7 +4095,10 @@ export class SeamHttpEndpoints {
|
|
|
1870
4095
|
}
|
|
1871
4096
|
}
|
|
1872
4097
|
|
|
1873
|
-
get ['/webhooks/list']():
|
|
4098
|
+
get ['/webhooks/list'](): (
|
|
4099
|
+
parameters?: WebhooksListParameters,
|
|
4100
|
+
options?: WebhooksListOptions,
|
|
4101
|
+
) => WebhooksListRequest {
|
|
1874
4102
|
const { client, defaults } = this
|
|
1875
4103
|
return function webhooksList(
|
|
1876
4104
|
...args: Parameters<SeamHttpWebhooks['list']>
|
|
@@ -1880,7 +4108,10 @@ export class SeamHttpEndpoints {
|
|
|
1880
4108
|
}
|
|
1881
4109
|
}
|
|
1882
4110
|
|
|
1883
|
-
get ['/webhooks/update']():
|
|
4111
|
+
get ['/webhooks/update'](): (
|
|
4112
|
+
parameters?: WebhooksUpdateParameters,
|
|
4113
|
+
options?: WebhooksUpdateOptions,
|
|
4114
|
+
) => WebhooksUpdateRequest {
|
|
1884
4115
|
const { client, defaults } = this
|
|
1885
4116
|
return function webhooksUpdate(
|
|
1886
4117
|
...args: Parameters<SeamHttpWebhooks['update']>
|
|
@@ -1890,7 +4121,10 @@ export class SeamHttpEndpoints {
|
|
|
1890
4121
|
}
|
|
1891
4122
|
}
|
|
1892
4123
|
|
|
1893
|
-
get ['/workspaces/create']():
|
|
4124
|
+
get ['/workspaces/create'](): (
|
|
4125
|
+
parameters?: WorkspacesCreateParameters,
|
|
4126
|
+
options?: WorkspacesCreateOptions,
|
|
4127
|
+
) => WorkspacesCreateRequest {
|
|
1894
4128
|
const { client, defaults } = this
|
|
1895
4129
|
return function workspacesCreate(
|
|
1896
4130
|
...args: Parameters<SeamHttpWorkspaces['create']>
|
|
@@ -1900,7 +4134,10 @@ export class SeamHttpEndpoints {
|
|
|
1900
4134
|
}
|
|
1901
4135
|
}
|
|
1902
4136
|
|
|
1903
|
-
get ['/workspaces/get']():
|
|
4137
|
+
get ['/workspaces/get'](): (
|
|
4138
|
+
parameters?: WorkspacesGetParameters,
|
|
4139
|
+
options?: WorkspacesGetOptions,
|
|
4140
|
+
) => WorkspacesGetRequest {
|
|
1904
4141
|
const { client, defaults } = this
|
|
1905
4142
|
return function workspacesGet(
|
|
1906
4143
|
...args: Parameters<SeamHttpWorkspaces['get']>
|
|
@@ -1910,7 +4147,10 @@ export class SeamHttpEndpoints {
|
|
|
1910
4147
|
}
|
|
1911
4148
|
}
|
|
1912
4149
|
|
|
1913
|
-
get ['/workspaces/list']():
|
|
4150
|
+
get ['/workspaces/list'](): (
|
|
4151
|
+
parameters?: WorkspacesListParameters,
|
|
4152
|
+
options?: WorkspacesListOptions,
|
|
4153
|
+
) => WorkspacesListRequest {
|
|
1914
4154
|
const { client, defaults } = this
|
|
1915
4155
|
return function workspacesList(
|
|
1916
4156
|
...args: Parameters<SeamHttpWorkspaces['list']>
|
|
@@ -1920,7 +4160,10 @@ export class SeamHttpEndpoints {
|
|
|
1920
4160
|
}
|
|
1921
4161
|
}
|
|
1922
4162
|
|
|
1923
|
-
get ['/workspaces/reset_sandbox']():
|
|
4163
|
+
get ['/workspaces/reset_sandbox'](): (
|
|
4164
|
+
parameters?: WorkspacesResetSandboxParameters,
|
|
4165
|
+
options?: WorkspacesResetSandboxOptions,
|
|
4166
|
+
) => WorkspacesResetSandboxRequest {
|
|
1924
4167
|
const { client, defaults } = this
|
|
1925
4168
|
return function workspacesResetSandbox(
|
|
1926
4169
|
...args: Parameters<SeamHttpWorkspaces['resetSandbox']>
|
|
@@ -1930,7 +4173,10 @@ export class SeamHttpEndpoints {
|
|
|
1930
4173
|
}
|
|
1931
4174
|
}
|
|
1932
4175
|
|
|
1933
|
-
get ['/workspaces/update']():
|
|
4176
|
+
get ['/workspaces/update'](): (
|
|
4177
|
+
parameters?: WorkspacesUpdateParameters,
|
|
4178
|
+
options?: WorkspacesUpdateOptions,
|
|
4179
|
+
) => WorkspacesUpdateRequest {
|
|
1934
4180
|
const { client, defaults } = this
|
|
1935
4181
|
return function workspacesUpdate(
|
|
1936
4182
|
...args: Parameters<SeamHttpWorkspaces['update']>
|
|
@@ -1940,3 +4186,224 @@ export class SeamHttpEndpoints {
|
|
|
1940
4186
|
}
|
|
1941
4187
|
}
|
|
1942
4188
|
}
|
|
4189
|
+
|
|
4190
|
+
export type SeamHttpEndpointPaths =
|
|
4191
|
+
| '/access_codes/create'
|
|
4192
|
+
| '/access_codes/create_multiple'
|
|
4193
|
+
| '/access_codes/delete'
|
|
4194
|
+
| '/access_codes/generate_code'
|
|
4195
|
+
| '/access_codes/get'
|
|
4196
|
+
| '/access_codes/list'
|
|
4197
|
+
| '/access_codes/pull_backup_access_code'
|
|
4198
|
+
| '/access_codes/report_device_constraints'
|
|
4199
|
+
| '/access_codes/update'
|
|
4200
|
+
| '/access_codes/update_multiple'
|
|
4201
|
+
| '/access_codes/simulate/create_unmanaged_access_code'
|
|
4202
|
+
| '/access_codes/unmanaged/convert_to_managed'
|
|
4203
|
+
| '/access_codes/unmanaged/delete'
|
|
4204
|
+
| '/access_codes/unmanaged/get'
|
|
4205
|
+
| '/access_codes/unmanaged/list'
|
|
4206
|
+
| '/access_codes/unmanaged/update'
|
|
4207
|
+
| '/access_grants/create'
|
|
4208
|
+
| '/access_grants/delete'
|
|
4209
|
+
| '/access_grants/get'
|
|
4210
|
+
| '/access_grants/list'
|
|
4211
|
+
| '/access_grants/update'
|
|
4212
|
+
| '/access_methods/delete'
|
|
4213
|
+
| '/access_methods/get'
|
|
4214
|
+
| '/access_methods/list'
|
|
4215
|
+
| '/acs/access_groups/add_user'
|
|
4216
|
+
| '/acs/access_groups/get'
|
|
4217
|
+
| '/acs/access_groups/list'
|
|
4218
|
+
| '/acs/access_groups/list_accessible_entrances'
|
|
4219
|
+
| '/acs/access_groups/list_users'
|
|
4220
|
+
| '/acs/access_groups/remove_user'
|
|
4221
|
+
| '/acs/access_groups/unmanaged/get'
|
|
4222
|
+
| '/acs/access_groups/unmanaged/list'
|
|
4223
|
+
| '/acs/credential_pools/list'
|
|
4224
|
+
| '/acs/credential_provisioning_automations/launch'
|
|
4225
|
+
| '/acs/credentials/assign'
|
|
4226
|
+
| '/acs/credentials/create'
|
|
4227
|
+
| '/acs/credentials/create_offline_code'
|
|
4228
|
+
| '/acs/credentials/delete'
|
|
4229
|
+
| '/acs/credentials/get'
|
|
4230
|
+
| '/acs/credentials/list'
|
|
4231
|
+
| '/acs/credentials/list_accessible_entrances'
|
|
4232
|
+
| '/acs/credentials/unassign'
|
|
4233
|
+
| '/acs/credentials/update'
|
|
4234
|
+
| '/acs/credentials/unmanaged/get'
|
|
4235
|
+
| '/acs/credentials/unmanaged/list'
|
|
4236
|
+
| '/acs/encoders/encode_access_method'
|
|
4237
|
+
| '/acs/encoders/encode_credential'
|
|
4238
|
+
| '/acs/encoders/get'
|
|
4239
|
+
| '/acs/encoders/list'
|
|
4240
|
+
| '/acs/encoders/scan_credential'
|
|
4241
|
+
| '/acs/encoders/simulate/next_credential_encode_will_fail'
|
|
4242
|
+
| '/acs/encoders/simulate/next_credential_encode_will_succeed'
|
|
4243
|
+
| '/acs/encoders/simulate/next_credential_scan_will_fail'
|
|
4244
|
+
| '/acs/encoders/simulate/next_credential_scan_will_succeed'
|
|
4245
|
+
| '/acs/entrances/get'
|
|
4246
|
+
| '/acs/entrances/grant_access'
|
|
4247
|
+
| '/acs/entrances/list'
|
|
4248
|
+
| '/acs/entrances/list_credentials_with_access'
|
|
4249
|
+
| '/acs/systems/get'
|
|
4250
|
+
| '/acs/systems/list'
|
|
4251
|
+
| '/acs/systems/list_compatible_credential_manager_acs_systems'
|
|
4252
|
+
| '/acs/users/add_to_access_group'
|
|
4253
|
+
| '/acs/users/create'
|
|
4254
|
+
| '/acs/users/delete'
|
|
4255
|
+
| '/acs/users/get'
|
|
4256
|
+
| '/acs/users/list'
|
|
4257
|
+
| '/acs/users/list_accessible_entrances'
|
|
4258
|
+
| '/acs/users/remove_from_access_group'
|
|
4259
|
+
| '/acs/users/revoke_access_to_all_entrances'
|
|
4260
|
+
| '/acs/users/suspend'
|
|
4261
|
+
| '/acs/users/unsuspend'
|
|
4262
|
+
| '/acs/users/update'
|
|
4263
|
+
| '/acs/users/unmanaged/get'
|
|
4264
|
+
| '/acs/users/unmanaged/list'
|
|
4265
|
+
| '/action_attempts/get'
|
|
4266
|
+
| '/action_attempts/list'
|
|
4267
|
+
| '/bridges/get'
|
|
4268
|
+
| '/bridges/list'
|
|
4269
|
+
| '/client_sessions/create'
|
|
4270
|
+
| '/client_sessions/delete'
|
|
4271
|
+
| '/client_sessions/get'
|
|
4272
|
+
| '/client_sessions/get_or_create'
|
|
4273
|
+
| '/client_sessions/grant_access'
|
|
4274
|
+
| '/client_sessions/list'
|
|
4275
|
+
| '/client_sessions/revoke'
|
|
4276
|
+
| '/connect_webviews/create'
|
|
4277
|
+
| '/connect_webviews/delete'
|
|
4278
|
+
| '/connect_webviews/get'
|
|
4279
|
+
| '/connect_webviews/list'
|
|
4280
|
+
| '/connected_accounts/delete'
|
|
4281
|
+
| '/connected_accounts/get'
|
|
4282
|
+
| '/connected_accounts/list'
|
|
4283
|
+
| '/connected_accounts/sync'
|
|
4284
|
+
| '/connected_accounts/update'
|
|
4285
|
+
| '/devices/delete'
|
|
4286
|
+
| '/devices/get'
|
|
4287
|
+
| '/devices/list'
|
|
4288
|
+
| '/devices/list_device_providers'
|
|
4289
|
+
| '/devices/update'
|
|
4290
|
+
| '/devices/simulate/connect'
|
|
4291
|
+
| '/devices/simulate/disconnect'
|
|
4292
|
+
| '/devices/simulate/remove'
|
|
4293
|
+
| '/devices/unmanaged/get'
|
|
4294
|
+
| '/devices/unmanaged/list'
|
|
4295
|
+
| '/devices/unmanaged/update'
|
|
4296
|
+
| '/events/get'
|
|
4297
|
+
| '/events/list'
|
|
4298
|
+
| '/locks/get'
|
|
4299
|
+
| '/locks/list'
|
|
4300
|
+
| '/locks/lock_door'
|
|
4301
|
+
| '/locks/unlock_door'
|
|
4302
|
+
| '/locks/simulate/keypad_code_entry'
|
|
4303
|
+
| '/locks/simulate/manual_lock_via_keypad'
|
|
4304
|
+
| '/networks/get'
|
|
4305
|
+
| '/networks/list'
|
|
4306
|
+
| '/noise_sensors/list'
|
|
4307
|
+
| '/noise_sensors/noise_thresholds/create'
|
|
4308
|
+
| '/noise_sensors/noise_thresholds/delete'
|
|
4309
|
+
| '/noise_sensors/noise_thresholds/get'
|
|
4310
|
+
| '/noise_sensors/noise_thresholds/list'
|
|
4311
|
+
| '/noise_sensors/noise_thresholds/update'
|
|
4312
|
+
| '/noise_sensors/simulate/trigger_noise_threshold'
|
|
4313
|
+
| '/phones/deactivate'
|
|
4314
|
+
| '/phones/get'
|
|
4315
|
+
| '/phones/list'
|
|
4316
|
+
| '/phones/simulate/create_sandbox_phone'
|
|
4317
|
+
| '/seam/bridge/v1/bridge_client_sessions/create'
|
|
4318
|
+
| '/seam/bridge/v1/bridge_client_sessions/get'
|
|
4319
|
+
| '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'
|
|
4320
|
+
| '/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code'
|
|
4321
|
+
| '/seam/bridge/v1/bridge_client_sessions/report_status'
|
|
4322
|
+
| '/seam/bridge/v1/bridge_connected_systems/list'
|
|
4323
|
+
| '/seam/instant_key/v1/client_sessions/exchange_short_code'
|
|
4324
|
+
| '/seam/mobile_sdk/v1/acs/credentials/list'
|
|
4325
|
+
| '/seam/mobile_sdk/v1/phone_sessions/get_or_create'
|
|
4326
|
+
| '/seam/partner/v1/building_blocks/spaces/auto_map'
|
|
4327
|
+
| '/seam/partner/v1/resources/list'
|
|
4328
|
+
| '/spaces/add_acs_entrances'
|
|
4329
|
+
| '/spaces/add_devices'
|
|
4330
|
+
| '/spaces/create'
|
|
4331
|
+
| '/spaces/delete'
|
|
4332
|
+
| '/spaces/get'
|
|
4333
|
+
| '/spaces/list'
|
|
4334
|
+
| '/spaces/remove_acs_entrances'
|
|
4335
|
+
| '/spaces/remove_devices'
|
|
4336
|
+
| '/spaces/update'
|
|
4337
|
+
| '/thermostats/activate_climate_preset'
|
|
4338
|
+
| '/thermostats/cool'
|
|
4339
|
+
| '/thermostats/create_climate_preset'
|
|
4340
|
+
| '/thermostats/delete_climate_preset'
|
|
4341
|
+
| '/thermostats/get'
|
|
4342
|
+
| '/thermostats/heat'
|
|
4343
|
+
| '/thermostats/heat_cool'
|
|
4344
|
+
| '/thermostats/list'
|
|
4345
|
+
| '/thermostats/off'
|
|
4346
|
+
| '/thermostats/set_fallback_climate_preset'
|
|
4347
|
+
| '/thermostats/set_fan_mode'
|
|
4348
|
+
| '/thermostats/set_hvac_mode'
|
|
4349
|
+
| '/thermostats/set_temperature_threshold'
|
|
4350
|
+
| '/thermostats/update_climate_preset'
|
|
4351
|
+
| '/thermostats/update_weekly_program'
|
|
4352
|
+
| '/thermostats/daily_programs/create'
|
|
4353
|
+
| '/thermostats/daily_programs/delete'
|
|
4354
|
+
| '/thermostats/daily_programs/update'
|
|
4355
|
+
| '/thermostats/schedules/create'
|
|
4356
|
+
| '/thermostats/schedules/delete'
|
|
4357
|
+
| '/thermostats/schedules/get'
|
|
4358
|
+
| '/thermostats/schedules/list'
|
|
4359
|
+
| '/thermostats/schedules/update'
|
|
4360
|
+
| '/thermostats/simulate/hvac_mode_adjusted'
|
|
4361
|
+
| '/thermostats/simulate/temperature_reached'
|
|
4362
|
+
| '/unstable_access_grants/create'
|
|
4363
|
+
| '/unstable_access_grants/delete'
|
|
4364
|
+
| '/unstable_access_grants/get'
|
|
4365
|
+
| '/unstable_access_grants/list'
|
|
4366
|
+
| '/unstable_access_methods/delete'
|
|
4367
|
+
| '/unstable_access_methods/get'
|
|
4368
|
+
| '/unstable_access_methods/list'
|
|
4369
|
+
| '/unstable_locations/add_acs_entrances'
|
|
4370
|
+
| '/unstable_locations/add_devices'
|
|
4371
|
+
| '/unstable_locations/create'
|
|
4372
|
+
| '/unstable_locations/delete'
|
|
4373
|
+
| '/unstable_locations/get'
|
|
4374
|
+
| '/unstable_locations/list'
|
|
4375
|
+
| '/unstable_locations/remove_acs_entrances'
|
|
4376
|
+
| '/unstable_locations/remove_devices'
|
|
4377
|
+
| '/unstable_locations/update'
|
|
4378
|
+
| '/unstable_partner/building_blocks/connect_accounts'
|
|
4379
|
+
| '/unstable_partner/building_blocks/generate_magic_link'
|
|
4380
|
+
| '/unstable_partner/building_blocks/manage_devices'
|
|
4381
|
+
| '/unstable_partner/building_blocks/organize_spaces'
|
|
4382
|
+
| '/unstable_partner/resources/push'
|
|
4383
|
+
| '/user_identities/add_acs_user'
|
|
4384
|
+
| '/user_identities/create'
|
|
4385
|
+
| '/user_identities/delete'
|
|
4386
|
+
| '/user_identities/generate_instant_key'
|
|
4387
|
+
| '/user_identities/get'
|
|
4388
|
+
| '/user_identities/grant_access_to_device'
|
|
4389
|
+
| '/user_identities/list'
|
|
4390
|
+
| '/user_identities/list_accessible_devices'
|
|
4391
|
+
| '/user_identities/list_acs_systems'
|
|
4392
|
+
| '/user_identities/list_acs_users'
|
|
4393
|
+
| '/user_identities/remove_acs_user'
|
|
4394
|
+
| '/user_identities/revoke_access_to_device'
|
|
4395
|
+
| '/user_identities/update'
|
|
4396
|
+
| '/user_identities/enrollment_automations/delete'
|
|
4397
|
+
| '/user_identities/enrollment_automations/get'
|
|
4398
|
+
| '/user_identities/enrollment_automations/launch'
|
|
4399
|
+
| '/user_identities/enrollment_automations/list'
|
|
4400
|
+
| '/webhooks/create'
|
|
4401
|
+
| '/webhooks/delete'
|
|
4402
|
+
| '/webhooks/get'
|
|
4403
|
+
| '/webhooks/list'
|
|
4404
|
+
| '/webhooks/update'
|
|
4405
|
+
| '/workspaces/create'
|
|
4406
|
+
| '/workspaces/get'
|
|
4407
|
+
| '/workspaces/list'
|
|
4408
|
+
| '/workspaces/reset_sandbox'
|
|
4409
|
+
| '/workspaces/update'
|