@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
package/dist/connect.d.cts
CHANGED
|
@@ -84,11 +84,19 @@ declare class SeamHttpAccessCodesSimulate {
|
|
|
84
84
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAccessCodesSimulate;
|
|
85
85
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
86
86
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
87
|
-
createUnmanagedAccessCode(
|
|
87
|
+
createUnmanagedAccessCode(parameters?: AccessCodesSimulateCreateUnmanagedAccessCodeParameters, options?: AccessCodesSimulateCreateUnmanagedAccessCodeOptions): AccessCodesSimulateCreateUnmanagedAccessCodeRequest;
|
|
88
88
|
}
|
|
89
|
-
type
|
|
89
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeParameters = RouteRequestBody<'/access_codes/simulate/create_unmanaged_access_code'>;
|
|
90
|
+
/**
|
|
91
|
+
* @deprecated Use AccessCodesSimulateCreateUnmanagedAccessCodeParameters instead.
|
|
92
|
+
*/
|
|
93
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeBody = AccessCodesSimulateCreateUnmanagedAccessCodeParameters;
|
|
94
|
+
/**
|
|
95
|
+
* @deprecated Use AccessCodesSimulateCreateUnmanagedAccessCodeRequest instead.
|
|
96
|
+
*/
|
|
90
97
|
type AccessCodesSimulateCreateUnmanagedAccessCodeResponse = SetNonNullable<Required<RouteResponse<'/access_codes/simulate/create_unmanaged_access_code'>>>;
|
|
91
|
-
type
|
|
98
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeRequest = SeamHttpRequest<AccessCodesSimulateCreateUnmanagedAccessCodeResponse, 'access_code'>;
|
|
99
|
+
type AccessCodesSimulateCreateUnmanagedAccessCodeOptions = Record<string, never>;
|
|
92
100
|
|
|
93
101
|
declare class SeamHttpAccessCodesUnmanaged {
|
|
94
102
|
client: Client;
|
|
@@ -104,27 +112,67 @@ declare class SeamHttpAccessCodesUnmanaged {
|
|
|
104
112
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAccessCodesUnmanaged;
|
|
105
113
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
106
114
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
107
|
-
convertToManaged(
|
|
108
|
-
delete(
|
|
109
|
-
get(
|
|
110
|
-
list(
|
|
111
|
-
update(
|
|
115
|
+
convertToManaged(parameters?: AccessCodesUnmanagedConvertToManagedParameters, options?: AccessCodesUnmanagedConvertToManagedOptions): AccessCodesUnmanagedConvertToManagedRequest;
|
|
116
|
+
delete(parameters?: AccessCodesUnmanagedDeleteParameters, options?: AccessCodesUnmanagedDeleteOptions): AccessCodesUnmanagedDeleteRequest;
|
|
117
|
+
get(parameters?: AccessCodesUnmanagedGetParameters, options?: AccessCodesUnmanagedGetOptions): AccessCodesUnmanagedGetRequest;
|
|
118
|
+
list(parameters?: AccessCodesUnmanagedListParameters, options?: AccessCodesUnmanagedListOptions): AccessCodesUnmanagedListRequest;
|
|
119
|
+
update(parameters?: AccessCodesUnmanagedUpdateParameters, options?: AccessCodesUnmanagedUpdateOptions): AccessCodesUnmanagedUpdateRequest;
|
|
112
120
|
}
|
|
113
|
-
type
|
|
121
|
+
type AccessCodesUnmanagedConvertToManagedParameters = RouteRequestBody<'/access_codes/unmanaged/convert_to_managed'>;
|
|
122
|
+
/**
|
|
123
|
+
* @deprecated Use AccessCodesUnmanagedConvertToManagedParameters instead.
|
|
124
|
+
*/
|
|
125
|
+
type AccessCodesUnmanagedConvertToManagedBody = AccessCodesUnmanagedConvertToManagedParameters;
|
|
126
|
+
/**
|
|
127
|
+
* @deprecated Use AccessCodesUnmanagedConvertToManagedRequest instead.
|
|
128
|
+
*/
|
|
114
129
|
type AccessCodesUnmanagedConvertToManagedResponse = SetNonNullable<Required<RouteResponse<'/access_codes/unmanaged/convert_to_managed'>>>;
|
|
115
|
-
type
|
|
116
|
-
type
|
|
130
|
+
type AccessCodesUnmanagedConvertToManagedRequest = SeamHttpRequest<void, undefined>;
|
|
131
|
+
type AccessCodesUnmanagedConvertToManagedOptions = Record<string, never>;
|
|
132
|
+
type AccessCodesUnmanagedDeleteParameters = RouteRequestBody<'/access_codes/unmanaged/delete'>;
|
|
133
|
+
/**
|
|
134
|
+
* @deprecated Use AccessCodesUnmanagedDeleteParameters instead.
|
|
135
|
+
*/
|
|
136
|
+
type AccessCodesUnmanagedDeleteParams = AccessCodesUnmanagedDeleteParameters;
|
|
137
|
+
/**
|
|
138
|
+
* @deprecated Use AccessCodesUnmanagedDeleteRequest instead.
|
|
139
|
+
*/
|
|
117
140
|
type AccessCodesUnmanagedDeleteResponse = SetNonNullable<Required<RouteResponse<'/access_codes/unmanaged/delete'>>>;
|
|
118
|
-
type
|
|
119
|
-
type
|
|
141
|
+
type AccessCodesUnmanagedDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
142
|
+
type AccessCodesUnmanagedDeleteOptions = Record<string, never>;
|
|
143
|
+
type AccessCodesUnmanagedGetParameters = RouteRequestBody<'/access_codes/unmanaged/get'>;
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated Use AccessCodesUnmanagedGetParameters instead.
|
|
146
|
+
*/
|
|
147
|
+
type AccessCodesUnmanagedGetParams = AccessCodesUnmanagedGetParameters;
|
|
148
|
+
/**
|
|
149
|
+
* @deprecated Use AccessCodesUnmanagedGetRequest instead.
|
|
150
|
+
*/
|
|
120
151
|
type AccessCodesUnmanagedGetResponse = SetNonNullable<Required<RouteResponse<'/access_codes/unmanaged/get'>>>;
|
|
121
|
-
type
|
|
122
|
-
type
|
|
152
|
+
type AccessCodesUnmanagedGetRequest = SeamHttpRequest<AccessCodesUnmanagedGetResponse, 'access_code'>;
|
|
153
|
+
type AccessCodesUnmanagedGetOptions = Record<string, never>;
|
|
154
|
+
type AccessCodesUnmanagedListParameters = RouteRequestBody<'/access_codes/unmanaged/list'>;
|
|
155
|
+
/**
|
|
156
|
+
* @deprecated Use AccessCodesUnmanagedListParameters instead.
|
|
157
|
+
*/
|
|
158
|
+
type AccessCodesUnmanagedListParams = AccessCodesUnmanagedListParameters;
|
|
159
|
+
/**
|
|
160
|
+
* @deprecated Use AccessCodesUnmanagedListRequest instead.
|
|
161
|
+
*/
|
|
123
162
|
type AccessCodesUnmanagedListResponse = SetNonNullable<Required<RouteResponse<'/access_codes/unmanaged/list'>>>;
|
|
124
|
-
type
|
|
125
|
-
type
|
|
163
|
+
type AccessCodesUnmanagedListRequest = SeamHttpRequest<AccessCodesUnmanagedListResponse, 'access_codes'>;
|
|
164
|
+
type AccessCodesUnmanagedListOptions = Record<string, never>;
|
|
165
|
+
type AccessCodesUnmanagedUpdateParameters = RouteRequestBody<'/access_codes/unmanaged/update'>;
|
|
166
|
+
/**
|
|
167
|
+
* @deprecated Use AccessCodesUnmanagedUpdateParameters instead.
|
|
168
|
+
*/
|
|
169
|
+
type AccessCodesUnmanagedUpdateBody = AccessCodesUnmanagedUpdateParameters;
|
|
170
|
+
/**
|
|
171
|
+
* @deprecated Use AccessCodesUnmanagedUpdateRequest instead.
|
|
172
|
+
*/
|
|
126
173
|
type AccessCodesUnmanagedUpdateResponse = SetNonNullable<Required<RouteResponse<'/access_codes/unmanaged/update'>>>;
|
|
127
|
-
type
|
|
174
|
+
type AccessCodesUnmanagedUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
175
|
+
type AccessCodesUnmanagedUpdateOptions = Record<string, never>;
|
|
128
176
|
|
|
129
177
|
declare class SeamHttpAccessCodes {
|
|
130
178
|
client: Client;
|
|
@@ -142,47 +190,127 @@ declare class SeamHttpAccessCodes {
|
|
|
142
190
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
143
191
|
get simulate(): SeamHttpAccessCodesSimulate;
|
|
144
192
|
get unmanaged(): SeamHttpAccessCodesUnmanaged;
|
|
145
|
-
create(
|
|
146
|
-
createMultiple(
|
|
147
|
-
delete(
|
|
148
|
-
generateCode(
|
|
149
|
-
get(
|
|
150
|
-
list(
|
|
151
|
-
pullBackupAccessCode(
|
|
152
|
-
reportDeviceConstraints(
|
|
153
|
-
update(
|
|
154
|
-
updateMultiple(
|
|
155
|
-
}
|
|
156
|
-
type
|
|
193
|
+
create(parameters?: AccessCodesCreateParameters, options?: AccessCodesCreateOptions): AccessCodesCreateRequest;
|
|
194
|
+
createMultiple(parameters?: AccessCodesCreateMultipleParameters, options?: AccessCodesCreateMultipleOptions): AccessCodesCreateMultipleRequest;
|
|
195
|
+
delete(parameters?: AccessCodesDeleteParameters, options?: AccessCodesDeleteOptions): AccessCodesDeleteRequest;
|
|
196
|
+
generateCode(parameters?: AccessCodesGenerateCodeParameters, options?: AccessCodesGenerateCodeOptions): AccessCodesGenerateCodeRequest;
|
|
197
|
+
get(parameters?: AccessCodesGetParameters, options?: AccessCodesGetOptions): AccessCodesGetRequest;
|
|
198
|
+
list(parameters?: AccessCodesListParameters, options?: AccessCodesListOptions): AccessCodesListRequest;
|
|
199
|
+
pullBackupAccessCode(parameters?: AccessCodesPullBackupAccessCodeParameters, options?: AccessCodesPullBackupAccessCodeOptions): AccessCodesPullBackupAccessCodeRequest;
|
|
200
|
+
reportDeviceConstraints(parameters?: AccessCodesReportDeviceConstraintsParameters, options?: AccessCodesReportDeviceConstraintsOptions): AccessCodesReportDeviceConstraintsRequest;
|
|
201
|
+
update(parameters?: AccessCodesUpdateParameters, options?: AccessCodesUpdateOptions): AccessCodesUpdateRequest;
|
|
202
|
+
updateMultiple(parameters?: AccessCodesUpdateMultipleParameters, options?: AccessCodesUpdateMultipleOptions): AccessCodesUpdateMultipleRequest;
|
|
203
|
+
}
|
|
204
|
+
type AccessCodesCreateParameters = RouteRequestBody<'/access_codes/create'>;
|
|
205
|
+
/**
|
|
206
|
+
* @deprecated Use AccessCodesCreateParameters instead.
|
|
207
|
+
*/
|
|
208
|
+
type AccessCodesCreateBody = AccessCodesCreateParameters;
|
|
209
|
+
/**
|
|
210
|
+
* @deprecated Use AccessCodesCreateRequest instead.
|
|
211
|
+
*/
|
|
157
212
|
type AccessCodesCreateResponse = SetNonNullable<Required<RouteResponse<'/access_codes/create'>>>;
|
|
158
|
-
type
|
|
159
|
-
type
|
|
213
|
+
type AccessCodesCreateRequest = SeamHttpRequest<AccessCodesCreateResponse, 'access_code'>;
|
|
214
|
+
type AccessCodesCreateOptions = Record<string, never>;
|
|
215
|
+
type AccessCodesCreateMultipleParameters = RouteRequestBody<'/access_codes/create_multiple'>;
|
|
216
|
+
/**
|
|
217
|
+
* @deprecated Use AccessCodesCreateMultipleParameters instead.
|
|
218
|
+
*/
|
|
219
|
+
type AccessCodesCreateMultipleBody = AccessCodesCreateMultipleParameters;
|
|
220
|
+
/**
|
|
221
|
+
* @deprecated Use AccessCodesCreateMultipleRequest instead.
|
|
222
|
+
*/
|
|
160
223
|
type AccessCodesCreateMultipleResponse = SetNonNullable<Required<RouteResponse<'/access_codes/create_multiple'>>>;
|
|
161
|
-
type
|
|
162
|
-
type
|
|
224
|
+
type AccessCodesCreateMultipleRequest = SeamHttpRequest<AccessCodesCreateMultipleResponse, 'access_codes'>;
|
|
225
|
+
type AccessCodesCreateMultipleOptions = Record<string, never>;
|
|
226
|
+
type AccessCodesDeleteParameters = RouteRequestBody<'/access_codes/delete'>;
|
|
227
|
+
/**
|
|
228
|
+
* @deprecated Use AccessCodesDeleteParameters instead.
|
|
229
|
+
*/
|
|
230
|
+
type AccessCodesDeleteParams = AccessCodesDeleteParameters;
|
|
231
|
+
/**
|
|
232
|
+
* @deprecated Use AccessCodesDeleteRequest instead.
|
|
233
|
+
*/
|
|
163
234
|
type AccessCodesDeleteResponse = SetNonNullable<Required<RouteResponse<'/access_codes/delete'>>>;
|
|
164
|
-
type
|
|
165
|
-
type
|
|
235
|
+
type AccessCodesDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
236
|
+
type AccessCodesDeleteOptions = Record<string, never>;
|
|
237
|
+
type AccessCodesGenerateCodeParameters = RouteRequestBody<'/access_codes/generate_code'>;
|
|
238
|
+
/**
|
|
239
|
+
* @deprecated Use AccessCodesGenerateCodeParameters instead.
|
|
240
|
+
*/
|
|
241
|
+
type AccessCodesGenerateCodeParams = AccessCodesGenerateCodeParameters;
|
|
242
|
+
/**
|
|
243
|
+
* @deprecated Use AccessCodesGenerateCodeRequest instead.
|
|
244
|
+
*/
|
|
166
245
|
type AccessCodesGenerateCodeResponse = SetNonNullable<Required<RouteResponse<'/access_codes/generate_code'>>>;
|
|
167
|
-
type
|
|
168
|
-
type
|
|
246
|
+
type AccessCodesGenerateCodeRequest = SeamHttpRequest<AccessCodesGenerateCodeResponse, 'generated_code'>;
|
|
247
|
+
type AccessCodesGenerateCodeOptions = Record<string, never>;
|
|
248
|
+
type AccessCodesGetParameters = RouteRequestBody<'/access_codes/get'>;
|
|
249
|
+
/**
|
|
250
|
+
* @deprecated Use AccessCodesGetParameters instead.
|
|
251
|
+
*/
|
|
252
|
+
type AccessCodesGetParams = AccessCodesGetParameters;
|
|
253
|
+
/**
|
|
254
|
+
* @deprecated Use AccessCodesGetRequest instead.
|
|
255
|
+
*/
|
|
169
256
|
type AccessCodesGetResponse = SetNonNullable<Required<RouteResponse<'/access_codes/get'>>>;
|
|
170
|
-
type
|
|
171
|
-
type
|
|
257
|
+
type AccessCodesGetRequest = SeamHttpRequest<AccessCodesGetResponse, 'access_code'>;
|
|
258
|
+
type AccessCodesGetOptions = Record<string, never>;
|
|
259
|
+
type AccessCodesListParameters = RouteRequestBody<'/access_codes/list'>;
|
|
260
|
+
/**
|
|
261
|
+
* @deprecated Use AccessCodesListParameters instead.
|
|
262
|
+
*/
|
|
263
|
+
type AccessCodesListParams = AccessCodesListParameters;
|
|
264
|
+
/**
|
|
265
|
+
* @deprecated Use AccessCodesListRequest instead.
|
|
266
|
+
*/
|
|
172
267
|
type AccessCodesListResponse = SetNonNullable<Required<RouteResponse<'/access_codes/list'>>>;
|
|
173
|
-
type
|
|
174
|
-
type
|
|
268
|
+
type AccessCodesListRequest = SeamHttpRequest<AccessCodesListResponse, 'access_codes'>;
|
|
269
|
+
type AccessCodesListOptions = Record<string, never>;
|
|
270
|
+
type AccessCodesPullBackupAccessCodeParameters = RouteRequestBody<'/access_codes/pull_backup_access_code'>;
|
|
271
|
+
/**
|
|
272
|
+
* @deprecated Use AccessCodesPullBackupAccessCodeParameters instead.
|
|
273
|
+
*/
|
|
274
|
+
type AccessCodesPullBackupAccessCodeBody = AccessCodesPullBackupAccessCodeParameters;
|
|
275
|
+
/**
|
|
276
|
+
* @deprecated Use AccessCodesPullBackupAccessCodeRequest instead.
|
|
277
|
+
*/
|
|
175
278
|
type AccessCodesPullBackupAccessCodeResponse = SetNonNullable<Required<RouteResponse<'/access_codes/pull_backup_access_code'>>>;
|
|
176
|
-
type
|
|
177
|
-
type
|
|
279
|
+
type AccessCodesPullBackupAccessCodeRequest = SeamHttpRequest<AccessCodesPullBackupAccessCodeResponse, 'access_code'>;
|
|
280
|
+
type AccessCodesPullBackupAccessCodeOptions = Record<string, never>;
|
|
281
|
+
type AccessCodesReportDeviceConstraintsParameters = RouteRequestBody<'/access_codes/report_device_constraints'>;
|
|
282
|
+
/**
|
|
283
|
+
* @deprecated Use AccessCodesReportDeviceConstraintsParameters instead.
|
|
284
|
+
*/
|
|
285
|
+
type AccessCodesReportDeviceConstraintsBody = AccessCodesReportDeviceConstraintsParameters;
|
|
286
|
+
/**
|
|
287
|
+
* @deprecated Use AccessCodesReportDeviceConstraintsRequest instead.
|
|
288
|
+
*/
|
|
178
289
|
type AccessCodesReportDeviceConstraintsResponse = SetNonNullable<Required<RouteResponse<'/access_codes/report_device_constraints'>>>;
|
|
179
|
-
type
|
|
180
|
-
type
|
|
290
|
+
type AccessCodesReportDeviceConstraintsRequest = SeamHttpRequest<void, undefined>;
|
|
291
|
+
type AccessCodesReportDeviceConstraintsOptions = Record<string, never>;
|
|
292
|
+
type AccessCodesUpdateParameters = RouteRequestBody<'/access_codes/update'>;
|
|
293
|
+
/**
|
|
294
|
+
* @deprecated Use AccessCodesUpdateParameters instead.
|
|
295
|
+
*/
|
|
296
|
+
type AccessCodesUpdateBody = AccessCodesUpdateParameters;
|
|
297
|
+
/**
|
|
298
|
+
* @deprecated Use AccessCodesUpdateRequest instead.
|
|
299
|
+
*/
|
|
181
300
|
type AccessCodesUpdateResponse = SetNonNullable<Required<RouteResponse<'/access_codes/update'>>>;
|
|
182
|
-
type
|
|
183
|
-
type
|
|
301
|
+
type AccessCodesUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
302
|
+
type AccessCodesUpdateOptions = Record<string, never>;
|
|
303
|
+
type AccessCodesUpdateMultipleParameters = RouteRequestBody<'/access_codes/update_multiple'>;
|
|
304
|
+
/**
|
|
305
|
+
* @deprecated Use AccessCodesUpdateMultipleParameters instead.
|
|
306
|
+
*/
|
|
307
|
+
type AccessCodesUpdateMultipleBody = AccessCodesUpdateMultipleParameters;
|
|
308
|
+
/**
|
|
309
|
+
* @deprecated Use AccessCodesUpdateMultipleRequest instead.
|
|
310
|
+
*/
|
|
184
311
|
type AccessCodesUpdateMultipleResponse = SetNonNullable<Required<RouteResponse<'/access_codes/update_multiple'>>>;
|
|
185
|
-
type
|
|
312
|
+
type AccessCodesUpdateMultipleRequest = SeamHttpRequest<void, undefined>;
|
|
313
|
+
type AccessCodesUpdateMultipleOptions = Record<string, never>;
|
|
186
314
|
|
|
187
315
|
declare class SeamHttpAccessGrants {
|
|
188
316
|
client: Client;
|
|
@@ -198,27 +326,67 @@ declare class SeamHttpAccessGrants {
|
|
|
198
326
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAccessGrants;
|
|
199
327
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
200
328
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
201
|
-
create(
|
|
202
|
-
delete(
|
|
203
|
-
get(
|
|
204
|
-
list(
|
|
205
|
-
update(
|
|
329
|
+
create(parameters?: AccessGrantsCreateParameters, options?: AccessGrantsCreateOptions): AccessGrantsCreateRequest;
|
|
330
|
+
delete(parameters?: AccessGrantsDeleteParameters, options?: AccessGrantsDeleteOptions): AccessGrantsDeleteRequest;
|
|
331
|
+
get(parameters?: AccessGrantsGetParameters, options?: AccessGrantsGetOptions): AccessGrantsGetRequest;
|
|
332
|
+
list(parameters?: AccessGrantsListParameters, options?: AccessGrantsListOptions): AccessGrantsListRequest;
|
|
333
|
+
update(parameters?: AccessGrantsUpdateParameters, options?: AccessGrantsUpdateOptions): AccessGrantsUpdateRequest;
|
|
206
334
|
}
|
|
207
|
-
type
|
|
335
|
+
type AccessGrantsCreateParameters = RouteRequestBody<'/access_grants/create'>;
|
|
336
|
+
/**
|
|
337
|
+
* @deprecated Use AccessGrantsCreateParameters instead.
|
|
338
|
+
*/
|
|
339
|
+
type AccessGrantsCreateBody = AccessGrantsCreateParameters;
|
|
340
|
+
/**
|
|
341
|
+
* @deprecated Use AccessGrantsCreateRequest instead.
|
|
342
|
+
*/
|
|
208
343
|
type AccessGrantsCreateResponse = SetNonNullable<Required<RouteResponse<'/access_grants/create'>>>;
|
|
209
|
-
type
|
|
210
|
-
type
|
|
344
|
+
type AccessGrantsCreateRequest = SeamHttpRequest<AccessGrantsCreateResponse, 'access_grant'>;
|
|
345
|
+
type AccessGrantsCreateOptions = Record<string, never>;
|
|
346
|
+
type AccessGrantsDeleteParameters = RouteRequestBody<'/access_grants/delete'>;
|
|
347
|
+
/**
|
|
348
|
+
* @deprecated Use AccessGrantsDeleteParameters instead.
|
|
349
|
+
*/
|
|
350
|
+
type AccessGrantsDeleteParams = AccessGrantsDeleteParameters;
|
|
351
|
+
/**
|
|
352
|
+
* @deprecated Use AccessGrantsDeleteRequest instead.
|
|
353
|
+
*/
|
|
211
354
|
type AccessGrantsDeleteResponse = SetNonNullable<Required<RouteResponse<'/access_grants/delete'>>>;
|
|
212
|
-
type
|
|
213
|
-
type
|
|
355
|
+
type AccessGrantsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
356
|
+
type AccessGrantsDeleteOptions = Record<string, never>;
|
|
357
|
+
type AccessGrantsGetParameters = RouteRequestBody<'/access_grants/get'>;
|
|
358
|
+
/**
|
|
359
|
+
* @deprecated Use AccessGrantsGetParameters instead.
|
|
360
|
+
*/
|
|
361
|
+
type AccessGrantsGetParams = AccessGrantsGetParameters;
|
|
362
|
+
/**
|
|
363
|
+
* @deprecated Use AccessGrantsGetRequest instead.
|
|
364
|
+
*/
|
|
214
365
|
type AccessGrantsGetResponse = SetNonNullable<Required<RouteResponse<'/access_grants/get'>>>;
|
|
215
|
-
type
|
|
216
|
-
type
|
|
366
|
+
type AccessGrantsGetRequest = SeamHttpRequest<AccessGrantsGetResponse, 'access_grant'>;
|
|
367
|
+
type AccessGrantsGetOptions = Record<string, never>;
|
|
368
|
+
type AccessGrantsListParameters = RouteRequestBody<'/access_grants/list'>;
|
|
369
|
+
/**
|
|
370
|
+
* @deprecated Use AccessGrantsListParameters instead.
|
|
371
|
+
*/
|
|
372
|
+
type AccessGrantsListParams = AccessGrantsListParameters;
|
|
373
|
+
/**
|
|
374
|
+
* @deprecated Use AccessGrantsListRequest instead.
|
|
375
|
+
*/
|
|
217
376
|
type AccessGrantsListResponse = SetNonNullable<Required<RouteResponse<'/access_grants/list'>>>;
|
|
218
|
-
type
|
|
219
|
-
type
|
|
377
|
+
type AccessGrantsListRequest = SeamHttpRequest<AccessGrantsListResponse, 'access_grants'>;
|
|
378
|
+
type AccessGrantsListOptions = Record<string, never>;
|
|
379
|
+
type AccessGrantsUpdateParameters = RouteRequestBody<'/access_grants/update'>;
|
|
380
|
+
/**
|
|
381
|
+
* @deprecated Use AccessGrantsUpdateParameters instead.
|
|
382
|
+
*/
|
|
383
|
+
type AccessGrantsUpdateBody = AccessGrantsUpdateParameters;
|
|
384
|
+
/**
|
|
385
|
+
* @deprecated Use AccessGrantsUpdateRequest instead.
|
|
386
|
+
*/
|
|
220
387
|
type AccessGrantsUpdateResponse = SetNonNullable<Required<RouteResponse<'/access_grants/update'>>>;
|
|
221
|
-
type
|
|
388
|
+
type AccessGrantsUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
389
|
+
type AccessGrantsUpdateOptions = Record<string, never>;
|
|
222
390
|
|
|
223
391
|
declare class SeamHttpAccessMethods {
|
|
224
392
|
client: Client;
|
|
@@ -234,19 +402,83 @@ declare class SeamHttpAccessMethods {
|
|
|
234
402
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAccessMethods;
|
|
235
403
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
236
404
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
237
|
-
delete(
|
|
238
|
-
get(
|
|
239
|
-
list(
|
|
405
|
+
delete(parameters?: AccessMethodsDeleteParameters, options?: AccessMethodsDeleteOptions): AccessMethodsDeleteRequest;
|
|
406
|
+
get(parameters?: AccessMethodsGetParameters, options?: AccessMethodsGetOptions): AccessMethodsGetRequest;
|
|
407
|
+
list(parameters?: AccessMethodsListParameters, options?: AccessMethodsListOptions): AccessMethodsListRequest;
|
|
240
408
|
}
|
|
241
|
-
type
|
|
409
|
+
type AccessMethodsDeleteParameters = RouteRequestBody<'/access_methods/delete'>;
|
|
410
|
+
/**
|
|
411
|
+
* @deprecated Use AccessMethodsDeleteParameters instead.
|
|
412
|
+
*/
|
|
413
|
+
type AccessMethodsDeleteParams = AccessMethodsDeleteParameters;
|
|
414
|
+
/**
|
|
415
|
+
* @deprecated Use AccessMethodsDeleteRequest instead.
|
|
416
|
+
*/
|
|
242
417
|
type AccessMethodsDeleteResponse = SetNonNullable<Required<RouteResponse<'/access_methods/delete'>>>;
|
|
243
|
-
type
|
|
244
|
-
type
|
|
418
|
+
type AccessMethodsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
419
|
+
type AccessMethodsDeleteOptions = Record<string, never>;
|
|
420
|
+
type AccessMethodsGetParameters = RouteRequestBody<'/access_methods/get'>;
|
|
421
|
+
/**
|
|
422
|
+
* @deprecated Use AccessMethodsGetParameters instead.
|
|
423
|
+
*/
|
|
424
|
+
type AccessMethodsGetParams = AccessMethodsGetParameters;
|
|
425
|
+
/**
|
|
426
|
+
* @deprecated Use AccessMethodsGetRequest instead.
|
|
427
|
+
*/
|
|
245
428
|
type AccessMethodsGetResponse = SetNonNullable<Required<RouteResponse<'/access_methods/get'>>>;
|
|
246
|
-
type
|
|
247
|
-
type
|
|
429
|
+
type AccessMethodsGetRequest = SeamHttpRequest<AccessMethodsGetResponse, 'access_method'>;
|
|
430
|
+
type AccessMethodsGetOptions = Record<string, never>;
|
|
431
|
+
type AccessMethodsListParameters = RouteRequestBody<'/access_methods/list'>;
|
|
432
|
+
/**
|
|
433
|
+
* @deprecated Use AccessMethodsListParameters instead.
|
|
434
|
+
*/
|
|
435
|
+
type AccessMethodsListParams = AccessMethodsListParameters;
|
|
436
|
+
/**
|
|
437
|
+
* @deprecated Use AccessMethodsListRequest instead.
|
|
438
|
+
*/
|
|
248
439
|
type AccessMethodsListResponse = SetNonNullable<Required<RouteResponse<'/access_methods/list'>>>;
|
|
249
|
-
type
|
|
440
|
+
type AccessMethodsListRequest = SeamHttpRequest<AccessMethodsListResponse, 'access_methods'>;
|
|
441
|
+
type AccessMethodsListOptions = Record<string, never>;
|
|
442
|
+
|
|
443
|
+
declare class SeamHttpAcsAccessGroupsUnmanaged {
|
|
444
|
+
client: Client;
|
|
445
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
446
|
+
readonly ltsVersion = "1.0.0";
|
|
447
|
+
static ltsVersion: string;
|
|
448
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
449
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsAccessGroupsUnmanaged;
|
|
450
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsAccessGroupsUnmanaged;
|
|
451
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsAccessGroupsUnmanaged;
|
|
452
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsAccessGroupsUnmanaged>;
|
|
453
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsAccessGroupsUnmanaged;
|
|
454
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsAccessGroupsUnmanaged;
|
|
455
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
456
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
457
|
+
get(parameters?: AcsAccessGroupsUnmanagedGetParameters, options?: AcsAccessGroupsUnmanagedGetOptions): AcsAccessGroupsUnmanagedGetRequest;
|
|
458
|
+
list(parameters?: AcsAccessGroupsUnmanagedListParameters, options?: AcsAccessGroupsUnmanagedListOptions): AcsAccessGroupsUnmanagedListRequest;
|
|
459
|
+
}
|
|
460
|
+
type AcsAccessGroupsUnmanagedGetParameters = RouteRequestBody<'/acs/access_groups/unmanaged/get'>;
|
|
461
|
+
/**
|
|
462
|
+
* @deprecated Use AcsAccessGroupsUnmanagedGetParameters instead.
|
|
463
|
+
*/
|
|
464
|
+
type AcsAccessGroupsUnmanagedGetParams = AcsAccessGroupsUnmanagedGetParameters;
|
|
465
|
+
/**
|
|
466
|
+
* @deprecated Use AcsAccessGroupsUnmanagedGetRequest instead.
|
|
467
|
+
*/
|
|
468
|
+
type AcsAccessGroupsUnmanagedGetResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/unmanaged/get'>>>;
|
|
469
|
+
type AcsAccessGroupsUnmanagedGetRequest = SeamHttpRequest<AcsAccessGroupsUnmanagedGetResponse, 'acs_access_group'>;
|
|
470
|
+
type AcsAccessGroupsUnmanagedGetOptions = Record<string, never>;
|
|
471
|
+
type AcsAccessGroupsUnmanagedListParameters = RouteRequestBody<'/acs/access_groups/unmanaged/list'>;
|
|
472
|
+
/**
|
|
473
|
+
* @deprecated Use AcsAccessGroupsUnmanagedListParameters instead.
|
|
474
|
+
*/
|
|
475
|
+
type AcsAccessGroupsUnmanagedListParams = AcsAccessGroupsUnmanagedListParameters;
|
|
476
|
+
/**
|
|
477
|
+
* @deprecated Use AcsAccessGroupsUnmanagedListRequest instead.
|
|
478
|
+
*/
|
|
479
|
+
type AcsAccessGroupsUnmanagedListResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/unmanaged/list'>>>;
|
|
480
|
+
type AcsAccessGroupsUnmanagedListRequest = SeamHttpRequest<AcsAccessGroupsUnmanagedListResponse, 'acs_access_groups'>;
|
|
481
|
+
type AcsAccessGroupsUnmanagedListOptions = Record<string, never>;
|
|
250
482
|
|
|
251
483
|
declare class SeamHttpAcsAccessGroups {
|
|
252
484
|
client: Client;
|
|
@@ -262,31 +494,176 @@ declare class SeamHttpAcsAccessGroups {
|
|
|
262
494
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsAccessGroups;
|
|
263
495
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
264
496
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
497
|
+
get unmanaged(): SeamHttpAcsAccessGroupsUnmanaged;
|
|
498
|
+
addUser(parameters?: AcsAccessGroupsAddUserParameters, options?: AcsAccessGroupsAddUserOptions): AcsAccessGroupsAddUserRequest;
|
|
499
|
+
get(parameters?: AcsAccessGroupsGetParameters, options?: AcsAccessGroupsGetOptions): AcsAccessGroupsGetRequest;
|
|
500
|
+
list(parameters?: AcsAccessGroupsListParameters, options?: AcsAccessGroupsListOptions): AcsAccessGroupsListRequest;
|
|
501
|
+
listAccessibleEntrances(parameters?: AcsAccessGroupsListAccessibleEntrancesParameters, options?: AcsAccessGroupsListAccessibleEntrancesOptions): AcsAccessGroupsListAccessibleEntrancesRequest;
|
|
502
|
+
listUsers(parameters?: AcsAccessGroupsListUsersParameters, options?: AcsAccessGroupsListUsersOptions): AcsAccessGroupsListUsersRequest;
|
|
503
|
+
removeUser(parameters?: AcsAccessGroupsRemoveUserParameters, options?: AcsAccessGroupsRemoveUserOptions): AcsAccessGroupsRemoveUserRequest;
|
|
271
504
|
}
|
|
272
|
-
type
|
|
505
|
+
type AcsAccessGroupsAddUserParameters = RouteRequestBody<'/acs/access_groups/add_user'>;
|
|
506
|
+
/**
|
|
507
|
+
* @deprecated Use AcsAccessGroupsAddUserParameters instead.
|
|
508
|
+
*/
|
|
509
|
+
type AcsAccessGroupsAddUserBody = AcsAccessGroupsAddUserParameters;
|
|
510
|
+
/**
|
|
511
|
+
* @deprecated Use AcsAccessGroupsAddUserRequest instead.
|
|
512
|
+
*/
|
|
273
513
|
type AcsAccessGroupsAddUserResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/add_user'>>>;
|
|
274
|
-
type
|
|
275
|
-
type
|
|
514
|
+
type AcsAccessGroupsAddUserRequest = SeamHttpRequest<void, undefined>;
|
|
515
|
+
type AcsAccessGroupsAddUserOptions = Record<string, never>;
|
|
516
|
+
type AcsAccessGroupsGetParameters = RouteRequestBody<'/acs/access_groups/get'>;
|
|
517
|
+
/**
|
|
518
|
+
* @deprecated Use AcsAccessGroupsGetParameters instead.
|
|
519
|
+
*/
|
|
520
|
+
type AcsAccessGroupsGetParams = AcsAccessGroupsGetParameters;
|
|
521
|
+
/**
|
|
522
|
+
* @deprecated Use AcsAccessGroupsGetRequest instead.
|
|
523
|
+
*/
|
|
276
524
|
type AcsAccessGroupsGetResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/get'>>>;
|
|
277
|
-
type
|
|
278
|
-
type
|
|
525
|
+
type AcsAccessGroupsGetRequest = SeamHttpRequest<AcsAccessGroupsGetResponse, 'acs_access_group'>;
|
|
526
|
+
type AcsAccessGroupsGetOptions = Record<string, never>;
|
|
527
|
+
type AcsAccessGroupsListParameters = RouteRequestBody<'/acs/access_groups/list'>;
|
|
528
|
+
/**
|
|
529
|
+
* @deprecated Use AcsAccessGroupsListParameters instead.
|
|
530
|
+
*/
|
|
531
|
+
type AcsAccessGroupsListParams = AcsAccessGroupsListParameters;
|
|
532
|
+
/**
|
|
533
|
+
* @deprecated Use AcsAccessGroupsListRequest instead.
|
|
534
|
+
*/
|
|
279
535
|
type AcsAccessGroupsListResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/list'>>>;
|
|
280
|
-
type
|
|
281
|
-
type
|
|
536
|
+
type AcsAccessGroupsListRequest = SeamHttpRequest<AcsAccessGroupsListResponse, 'acs_access_groups'>;
|
|
537
|
+
type AcsAccessGroupsListOptions = Record<string, never>;
|
|
538
|
+
type AcsAccessGroupsListAccessibleEntrancesParameters = RouteRequestBody<'/acs/access_groups/list_accessible_entrances'>;
|
|
539
|
+
/**
|
|
540
|
+
* @deprecated Use AcsAccessGroupsListAccessibleEntrancesParameters instead.
|
|
541
|
+
*/
|
|
542
|
+
type AcsAccessGroupsListAccessibleEntrancesParams = AcsAccessGroupsListAccessibleEntrancesParameters;
|
|
543
|
+
/**
|
|
544
|
+
* @deprecated Use AcsAccessGroupsListAccessibleEntrancesRequest instead.
|
|
545
|
+
*/
|
|
282
546
|
type AcsAccessGroupsListAccessibleEntrancesResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/list_accessible_entrances'>>>;
|
|
283
|
-
type
|
|
284
|
-
type
|
|
547
|
+
type AcsAccessGroupsListAccessibleEntrancesRequest = SeamHttpRequest<AcsAccessGroupsListAccessibleEntrancesResponse, 'acs_entrances'>;
|
|
548
|
+
type AcsAccessGroupsListAccessibleEntrancesOptions = Record<string, never>;
|
|
549
|
+
type AcsAccessGroupsListUsersParameters = RouteRequestBody<'/acs/access_groups/list_users'>;
|
|
550
|
+
/**
|
|
551
|
+
* @deprecated Use AcsAccessGroupsListUsersParameters instead.
|
|
552
|
+
*/
|
|
553
|
+
type AcsAccessGroupsListUsersParams = AcsAccessGroupsListUsersParameters;
|
|
554
|
+
/**
|
|
555
|
+
* @deprecated Use AcsAccessGroupsListUsersRequest instead.
|
|
556
|
+
*/
|
|
285
557
|
type AcsAccessGroupsListUsersResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/list_users'>>>;
|
|
286
|
-
type
|
|
287
|
-
type
|
|
558
|
+
type AcsAccessGroupsListUsersRequest = SeamHttpRequest<AcsAccessGroupsListUsersResponse, 'acs_users'>;
|
|
559
|
+
type AcsAccessGroupsListUsersOptions = Record<string, never>;
|
|
560
|
+
type AcsAccessGroupsRemoveUserParameters = RouteRequestBody<'/acs/access_groups/remove_user'>;
|
|
561
|
+
/**
|
|
562
|
+
* @deprecated Use AcsAccessGroupsRemoveUserParameters instead.
|
|
563
|
+
*/
|
|
564
|
+
type AcsAccessGroupsRemoveUserParams = AcsAccessGroupsRemoveUserParameters;
|
|
565
|
+
/**
|
|
566
|
+
* @deprecated Use AcsAccessGroupsRemoveUserRequest instead.
|
|
567
|
+
*/
|
|
288
568
|
type AcsAccessGroupsRemoveUserResponse = SetNonNullable<Required<RouteResponse<'/acs/access_groups/remove_user'>>>;
|
|
289
|
-
type
|
|
569
|
+
type AcsAccessGroupsRemoveUserRequest = SeamHttpRequest<void, undefined>;
|
|
570
|
+
type AcsAccessGroupsRemoveUserOptions = Record<string, never>;
|
|
571
|
+
|
|
572
|
+
declare class SeamHttpAcsCredentialPools {
|
|
573
|
+
client: Client;
|
|
574
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
575
|
+
readonly ltsVersion = "1.0.0";
|
|
576
|
+
static ltsVersion: string;
|
|
577
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
578
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsCredentialPools;
|
|
579
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsCredentialPools;
|
|
580
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsCredentialPools;
|
|
581
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsCredentialPools>;
|
|
582
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsCredentialPools;
|
|
583
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsCredentialPools;
|
|
584
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
585
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
586
|
+
list(parameters?: AcsCredentialPoolsListParameters, options?: AcsCredentialPoolsListOptions): AcsCredentialPoolsListRequest;
|
|
587
|
+
}
|
|
588
|
+
type AcsCredentialPoolsListParameters = RouteRequestBody<'/acs/credential_pools/list'>;
|
|
589
|
+
/**
|
|
590
|
+
* @deprecated Use AcsCredentialPoolsListParameters instead.
|
|
591
|
+
*/
|
|
592
|
+
type AcsCredentialPoolsListParams = AcsCredentialPoolsListParameters;
|
|
593
|
+
/**
|
|
594
|
+
* @deprecated Use AcsCredentialPoolsListRequest instead.
|
|
595
|
+
*/
|
|
596
|
+
type AcsCredentialPoolsListResponse = SetNonNullable<Required<RouteResponse<'/acs/credential_pools/list'>>>;
|
|
597
|
+
type AcsCredentialPoolsListRequest = SeamHttpRequest<AcsCredentialPoolsListResponse, 'acs_credential_pools'>;
|
|
598
|
+
type AcsCredentialPoolsListOptions = Record<string, never>;
|
|
599
|
+
|
|
600
|
+
declare class SeamHttpAcsCredentialProvisioningAutomations {
|
|
601
|
+
client: Client;
|
|
602
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
603
|
+
readonly ltsVersion = "1.0.0";
|
|
604
|
+
static ltsVersion: string;
|
|
605
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
606
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsCredentialProvisioningAutomations;
|
|
607
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsCredentialProvisioningAutomations;
|
|
608
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsCredentialProvisioningAutomations;
|
|
609
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsCredentialProvisioningAutomations>;
|
|
610
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsCredentialProvisioningAutomations;
|
|
611
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsCredentialProvisioningAutomations;
|
|
612
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
613
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
614
|
+
launch(parameters?: AcsCredentialProvisioningAutomationsLaunchParameters, options?: AcsCredentialProvisioningAutomationsLaunchOptions): AcsCredentialProvisioningAutomationsLaunchRequest;
|
|
615
|
+
}
|
|
616
|
+
type AcsCredentialProvisioningAutomationsLaunchParameters = RouteRequestBody<'/acs/credential_provisioning_automations/launch'>;
|
|
617
|
+
/**
|
|
618
|
+
* @deprecated Use AcsCredentialProvisioningAutomationsLaunchParameters instead.
|
|
619
|
+
*/
|
|
620
|
+
type AcsCredentialProvisioningAutomationsLaunchBody = AcsCredentialProvisioningAutomationsLaunchParameters;
|
|
621
|
+
/**
|
|
622
|
+
* @deprecated Use AcsCredentialProvisioningAutomationsLaunchRequest instead.
|
|
623
|
+
*/
|
|
624
|
+
type AcsCredentialProvisioningAutomationsLaunchResponse = SetNonNullable<Required<RouteResponse<'/acs/credential_provisioning_automations/launch'>>>;
|
|
625
|
+
type AcsCredentialProvisioningAutomationsLaunchRequest = SeamHttpRequest<AcsCredentialProvisioningAutomationsLaunchResponse, 'acs_credential_provisioning_automation'>;
|
|
626
|
+
type AcsCredentialProvisioningAutomationsLaunchOptions = Record<string, never>;
|
|
627
|
+
|
|
628
|
+
declare class SeamHttpAcsCredentialsUnmanaged {
|
|
629
|
+
client: Client;
|
|
630
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
631
|
+
readonly ltsVersion = "1.0.0";
|
|
632
|
+
static ltsVersion: string;
|
|
633
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
634
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsCredentialsUnmanaged;
|
|
635
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsCredentialsUnmanaged;
|
|
636
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsCredentialsUnmanaged;
|
|
637
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsCredentialsUnmanaged>;
|
|
638
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsCredentialsUnmanaged;
|
|
639
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsCredentialsUnmanaged;
|
|
640
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
641
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
642
|
+
get(parameters?: AcsCredentialsUnmanagedGetParameters, options?: AcsCredentialsUnmanagedGetOptions): AcsCredentialsUnmanagedGetRequest;
|
|
643
|
+
list(parameters?: AcsCredentialsUnmanagedListParameters, options?: AcsCredentialsUnmanagedListOptions): AcsCredentialsUnmanagedListRequest;
|
|
644
|
+
}
|
|
645
|
+
type AcsCredentialsUnmanagedGetParameters = RouteRequestBody<'/acs/credentials/unmanaged/get'>;
|
|
646
|
+
/**
|
|
647
|
+
* @deprecated Use AcsCredentialsUnmanagedGetParameters instead.
|
|
648
|
+
*/
|
|
649
|
+
type AcsCredentialsUnmanagedGetParams = AcsCredentialsUnmanagedGetParameters;
|
|
650
|
+
/**
|
|
651
|
+
* @deprecated Use AcsCredentialsUnmanagedGetRequest instead.
|
|
652
|
+
*/
|
|
653
|
+
type AcsCredentialsUnmanagedGetResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/unmanaged/get'>>>;
|
|
654
|
+
type AcsCredentialsUnmanagedGetRequest = SeamHttpRequest<AcsCredentialsUnmanagedGetResponse, 'acs_credential'>;
|
|
655
|
+
type AcsCredentialsUnmanagedGetOptions = Record<string, never>;
|
|
656
|
+
type AcsCredentialsUnmanagedListParameters = RouteRequestParams<'/acs/credentials/unmanaged/list'>;
|
|
657
|
+
/**
|
|
658
|
+
* @deprecated Use AcsCredentialsUnmanagedListParameters instead.
|
|
659
|
+
*/
|
|
660
|
+
type AcsCredentialsUnmanagedListParams = AcsCredentialsUnmanagedListParameters;
|
|
661
|
+
/**
|
|
662
|
+
* @deprecated Use AcsCredentialsUnmanagedListRequest instead.
|
|
663
|
+
*/
|
|
664
|
+
type AcsCredentialsUnmanagedListResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/unmanaged/list'>>>;
|
|
665
|
+
type AcsCredentialsUnmanagedListRequest = SeamHttpRequest<AcsCredentialsUnmanagedListResponse, 'acs_credentials'>;
|
|
666
|
+
type AcsCredentialsUnmanagedListOptions = Record<string, never>;
|
|
290
667
|
|
|
291
668
|
declare class SeamHttpAcsCredentials {
|
|
292
669
|
client: Client;
|
|
@@ -302,39 +679,116 @@ declare class SeamHttpAcsCredentials {
|
|
|
302
679
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsCredentials;
|
|
303
680
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
304
681
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
682
|
+
get unmanaged(): SeamHttpAcsCredentialsUnmanaged;
|
|
683
|
+
assign(parameters?: AcsCredentialsAssignParameters, options?: AcsCredentialsAssignOptions): AcsCredentialsAssignRequest;
|
|
684
|
+
create(parameters?: AcsCredentialsCreateParameters, options?: AcsCredentialsCreateOptions): AcsCredentialsCreateRequest;
|
|
685
|
+
createOfflineCode(parameters?: AcsCredentialsCreateOfflineCodeParameters, options?: AcsCredentialsCreateOfflineCodeOptions): AcsCredentialsCreateOfflineCodeRequest;
|
|
686
|
+
delete(parameters?: AcsCredentialsDeleteParameters, options?: AcsCredentialsDeleteOptions): AcsCredentialsDeleteRequest;
|
|
687
|
+
get(parameters?: AcsCredentialsGetParameters, options?: AcsCredentialsGetOptions): AcsCredentialsGetRequest;
|
|
688
|
+
list(parameters?: AcsCredentialsListParameters, options?: AcsCredentialsListOptions): AcsCredentialsListRequest;
|
|
689
|
+
listAccessibleEntrances(parameters?: AcsCredentialsListAccessibleEntrancesParameters, options?: AcsCredentialsListAccessibleEntrancesOptions): AcsCredentialsListAccessibleEntrancesRequest;
|
|
690
|
+
unassign(parameters?: AcsCredentialsUnassignParameters, options?: AcsCredentialsUnassignOptions): AcsCredentialsUnassignRequest;
|
|
691
|
+
update(parameters?: AcsCredentialsUpdateParameters, options?: AcsCredentialsUpdateOptions): AcsCredentialsUpdateRequest;
|
|
313
692
|
}
|
|
314
|
-
type
|
|
693
|
+
type AcsCredentialsAssignParameters = RouteRequestBody<'/acs/credentials/assign'>;
|
|
694
|
+
/**
|
|
695
|
+
* @deprecated Use AcsCredentialsAssignParameters instead.
|
|
696
|
+
*/
|
|
697
|
+
type AcsCredentialsAssignBody = AcsCredentialsAssignParameters;
|
|
698
|
+
/**
|
|
699
|
+
* @deprecated Use AcsCredentialsAssignRequest instead.
|
|
700
|
+
*/
|
|
315
701
|
type AcsCredentialsAssignResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/assign'>>>;
|
|
316
|
-
type
|
|
317
|
-
type
|
|
702
|
+
type AcsCredentialsAssignRequest = SeamHttpRequest<void, undefined>;
|
|
703
|
+
type AcsCredentialsAssignOptions = Record<string, never>;
|
|
704
|
+
type AcsCredentialsCreateParameters = RouteRequestBody<'/acs/credentials/create'>;
|
|
705
|
+
/**
|
|
706
|
+
* @deprecated Use AcsCredentialsCreateParameters instead.
|
|
707
|
+
*/
|
|
708
|
+
type AcsCredentialsCreateBody = AcsCredentialsCreateParameters;
|
|
709
|
+
/**
|
|
710
|
+
* @deprecated Use AcsCredentialsCreateRequest instead.
|
|
711
|
+
*/
|
|
318
712
|
type AcsCredentialsCreateResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/create'>>>;
|
|
319
|
-
type
|
|
320
|
-
type
|
|
713
|
+
type AcsCredentialsCreateRequest = SeamHttpRequest<AcsCredentialsCreateResponse, 'acs_credential'>;
|
|
714
|
+
type AcsCredentialsCreateOptions = Record<string, never>;
|
|
715
|
+
type AcsCredentialsCreateOfflineCodeParameters = RouteRequestBody<'/acs/credentials/create_offline_code'>;
|
|
716
|
+
/**
|
|
717
|
+
* @deprecated Use AcsCredentialsCreateOfflineCodeParameters instead.
|
|
718
|
+
*/
|
|
719
|
+
type AcsCredentialsCreateOfflineCodeBody = AcsCredentialsCreateOfflineCodeParameters;
|
|
720
|
+
/**
|
|
721
|
+
* @deprecated Use AcsCredentialsCreateOfflineCodeRequest instead.
|
|
722
|
+
*/
|
|
723
|
+
type AcsCredentialsCreateOfflineCodeResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/create_offline_code'>>>;
|
|
724
|
+
type AcsCredentialsCreateOfflineCodeRequest = SeamHttpRequest<AcsCredentialsCreateOfflineCodeResponse, 'acs_credential'>;
|
|
725
|
+
type AcsCredentialsCreateOfflineCodeOptions = Record<string, never>;
|
|
726
|
+
type AcsCredentialsDeleteParameters = RouteRequestBody<'/acs/credentials/delete'>;
|
|
727
|
+
/**
|
|
728
|
+
* @deprecated Use AcsCredentialsDeleteParameters instead.
|
|
729
|
+
*/
|
|
730
|
+
type AcsCredentialsDeleteParams = AcsCredentialsDeleteParameters;
|
|
731
|
+
/**
|
|
732
|
+
* @deprecated Use AcsCredentialsDeleteRequest instead.
|
|
733
|
+
*/
|
|
321
734
|
type AcsCredentialsDeleteResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/delete'>>>;
|
|
322
|
-
type
|
|
323
|
-
type
|
|
735
|
+
type AcsCredentialsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
736
|
+
type AcsCredentialsDeleteOptions = Record<string, never>;
|
|
737
|
+
type AcsCredentialsGetParameters = RouteRequestBody<'/acs/credentials/get'>;
|
|
738
|
+
/**
|
|
739
|
+
* @deprecated Use AcsCredentialsGetParameters instead.
|
|
740
|
+
*/
|
|
741
|
+
type AcsCredentialsGetParams = AcsCredentialsGetParameters;
|
|
742
|
+
/**
|
|
743
|
+
* @deprecated Use AcsCredentialsGetRequest instead.
|
|
744
|
+
*/
|
|
324
745
|
type AcsCredentialsGetResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/get'>>>;
|
|
325
|
-
type
|
|
326
|
-
type
|
|
746
|
+
type AcsCredentialsGetRequest = SeamHttpRequest<AcsCredentialsGetResponse, 'acs_credential'>;
|
|
747
|
+
type AcsCredentialsGetOptions = Record<string, never>;
|
|
748
|
+
type AcsCredentialsListParameters = RouteRequestParams<'/acs/credentials/list'>;
|
|
749
|
+
/**
|
|
750
|
+
* @deprecated Use AcsCredentialsListParameters instead.
|
|
751
|
+
*/
|
|
752
|
+
type AcsCredentialsListParams = AcsCredentialsListParameters;
|
|
753
|
+
/**
|
|
754
|
+
* @deprecated Use AcsCredentialsListRequest instead.
|
|
755
|
+
*/
|
|
327
756
|
type AcsCredentialsListResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/list'>>>;
|
|
328
|
-
type
|
|
329
|
-
type
|
|
757
|
+
type AcsCredentialsListRequest = SeamHttpRequest<AcsCredentialsListResponse, 'acs_credentials'>;
|
|
758
|
+
type AcsCredentialsListOptions = Record<string, never>;
|
|
759
|
+
type AcsCredentialsListAccessibleEntrancesParameters = RouteRequestBody<'/acs/credentials/list_accessible_entrances'>;
|
|
760
|
+
/**
|
|
761
|
+
* @deprecated Use AcsCredentialsListAccessibleEntrancesParameters instead.
|
|
762
|
+
*/
|
|
763
|
+
type AcsCredentialsListAccessibleEntrancesParams = AcsCredentialsListAccessibleEntrancesParameters;
|
|
764
|
+
/**
|
|
765
|
+
* @deprecated Use AcsCredentialsListAccessibleEntrancesRequest instead.
|
|
766
|
+
*/
|
|
330
767
|
type AcsCredentialsListAccessibleEntrancesResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/list_accessible_entrances'>>>;
|
|
331
|
-
type
|
|
332
|
-
type
|
|
768
|
+
type AcsCredentialsListAccessibleEntrancesRequest = SeamHttpRequest<AcsCredentialsListAccessibleEntrancesResponse, 'acs_entrances'>;
|
|
769
|
+
type AcsCredentialsListAccessibleEntrancesOptions = Record<string, never>;
|
|
770
|
+
type AcsCredentialsUnassignParameters = RouteRequestBody<'/acs/credentials/unassign'>;
|
|
771
|
+
/**
|
|
772
|
+
* @deprecated Use AcsCredentialsUnassignParameters instead.
|
|
773
|
+
*/
|
|
774
|
+
type AcsCredentialsUnassignBody = AcsCredentialsUnassignParameters;
|
|
775
|
+
/**
|
|
776
|
+
* @deprecated Use AcsCredentialsUnassignRequest instead.
|
|
777
|
+
*/
|
|
333
778
|
type AcsCredentialsUnassignResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/unassign'>>>;
|
|
334
|
-
type
|
|
335
|
-
type
|
|
779
|
+
type AcsCredentialsUnassignRequest = SeamHttpRequest<void, undefined>;
|
|
780
|
+
type AcsCredentialsUnassignOptions = Record<string, never>;
|
|
781
|
+
type AcsCredentialsUpdateParameters = RouteRequestBody<'/acs/credentials/update'>;
|
|
782
|
+
/**
|
|
783
|
+
* @deprecated Use AcsCredentialsUpdateParameters instead.
|
|
784
|
+
*/
|
|
785
|
+
type AcsCredentialsUpdateBody = AcsCredentialsUpdateParameters;
|
|
786
|
+
/**
|
|
787
|
+
* @deprecated Use AcsCredentialsUpdateRequest instead.
|
|
788
|
+
*/
|
|
336
789
|
type AcsCredentialsUpdateResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/update'>>>;
|
|
337
|
-
type
|
|
790
|
+
type AcsCredentialsUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
791
|
+
type AcsCredentialsUpdateOptions = Record<string, never>;
|
|
338
792
|
|
|
339
793
|
declare class SeamHttpAcsEncodersSimulate {
|
|
340
794
|
client: Client;
|
|
@@ -350,23 +804,55 @@ declare class SeamHttpAcsEncodersSimulate {
|
|
|
350
804
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
351
805
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
352
806
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
353
|
-
nextCredentialEncodeWillFail(
|
|
354
|
-
nextCredentialEncodeWillSucceed(
|
|
355
|
-
nextCredentialScanWillFail(
|
|
356
|
-
nextCredentialScanWillSucceed(
|
|
807
|
+
nextCredentialEncodeWillFail(parameters?: AcsEncodersSimulateNextCredentialEncodeWillFailParameters, options?: AcsEncodersSimulateNextCredentialEncodeWillFailOptions): AcsEncodersSimulateNextCredentialEncodeWillFailRequest;
|
|
808
|
+
nextCredentialEncodeWillSucceed(parameters?: AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters, options?: AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions): AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest;
|
|
809
|
+
nextCredentialScanWillFail(parameters?: AcsEncodersSimulateNextCredentialScanWillFailParameters, options?: AcsEncodersSimulateNextCredentialScanWillFailOptions): AcsEncodersSimulateNextCredentialScanWillFailRequest;
|
|
810
|
+
nextCredentialScanWillSucceed(parameters?: AcsEncodersSimulateNextCredentialScanWillSucceedParameters, options?: AcsEncodersSimulateNextCredentialScanWillSucceedOptions): AcsEncodersSimulateNextCredentialScanWillSucceedRequest;
|
|
357
811
|
}
|
|
358
|
-
type
|
|
812
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailParameters = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_fail'>;
|
|
813
|
+
/**
|
|
814
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialEncodeWillFailParameters instead.
|
|
815
|
+
*/
|
|
816
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailBody = AcsEncodersSimulateNextCredentialEncodeWillFailParameters;
|
|
817
|
+
/**
|
|
818
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialEncodeWillFailRequest instead.
|
|
819
|
+
*/
|
|
359
820
|
type AcsEncodersSimulateNextCredentialEncodeWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_fail'>>>;
|
|
360
|
-
type
|
|
361
|
-
type
|
|
821
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailRequest = SeamHttpRequest<void, undefined>;
|
|
822
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailOptions = Record<string, never>;
|
|
823
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_succeed'>;
|
|
824
|
+
/**
|
|
825
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters instead.
|
|
826
|
+
*/
|
|
827
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody = AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters;
|
|
828
|
+
/**
|
|
829
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest instead.
|
|
830
|
+
*/
|
|
362
831
|
type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_succeed'>>>;
|
|
363
|
-
type
|
|
364
|
-
type
|
|
832
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest = SeamHttpRequest<void, undefined>;
|
|
833
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions = Record<string, never>;
|
|
834
|
+
type AcsEncodersSimulateNextCredentialScanWillFailParameters = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_fail'>;
|
|
835
|
+
/**
|
|
836
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialScanWillFailParameters instead.
|
|
837
|
+
*/
|
|
838
|
+
type AcsEncodersSimulateNextCredentialScanWillFailBody = AcsEncodersSimulateNextCredentialScanWillFailParameters;
|
|
839
|
+
/**
|
|
840
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialScanWillFailRequest instead.
|
|
841
|
+
*/
|
|
365
842
|
type AcsEncodersSimulateNextCredentialScanWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_fail'>>>;
|
|
366
|
-
type
|
|
367
|
-
type
|
|
843
|
+
type AcsEncodersSimulateNextCredentialScanWillFailRequest = SeamHttpRequest<void, undefined>;
|
|
844
|
+
type AcsEncodersSimulateNextCredentialScanWillFailOptions = Record<string, never>;
|
|
845
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedParameters = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_succeed'>;
|
|
846
|
+
/**
|
|
847
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialScanWillSucceedParameters instead.
|
|
848
|
+
*/
|
|
849
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedBody = AcsEncodersSimulateNextCredentialScanWillSucceedParameters;
|
|
850
|
+
/**
|
|
851
|
+
* @deprecated Use AcsEncodersSimulateNextCredentialScanWillSucceedRequest instead.
|
|
852
|
+
*/
|
|
368
853
|
type AcsEncodersSimulateNextCredentialScanWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_succeed'>>>;
|
|
369
|
-
type
|
|
854
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedRequest = SeamHttpRequest<void, undefined>;
|
|
855
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedOptions = Record<string, never>;
|
|
370
856
|
|
|
371
857
|
declare class SeamHttpAcsEncoders {
|
|
372
858
|
client: Client;
|
|
@@ -383,26 +869,66 @@ declare class SeamHttpAcsEncoders {
|
|
|
383
869
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
384
870
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
385
871
|
get simulate(): SeamHttpAcsEncodersSimulate;
|
|
386
|
-
encodeAccessMethod(
|
|
387
|
-
encodeCredential(
|
|
388
|
-
get(
|
|
389
|
-
list(
|
|
390
|
-
scanCredential(
|
|
872
|
+
encodeAccessMethod(parameters?: AcsEncodersEncodeAccessMethodParameters, options?: AcsEncodersEncodeAccessMethodOptions): AcsEncodersEncodeAccessMethodRequest;
|
|
873
|
+
encodeCredential(parameters?: AcsEncodersEncodeCredentialParameters, options?: AcsEncodersEncodeCredentialOptions): AcsEncodersEncodeCredentialRequest;
|
|
874
|
+
get(parameters?: AcsEncodersGetParameters, options?: AcsEncodersGetOptions): AcsEncodersGetRequest;
|
|
875
|
+
list(parameters?: AcsEncodersListParameters, options?: AcsEncodersListOptions): AcsEncodersListRequest;
|
|
876
|
+
scanCredential(parameters?: AcsEncodersScanCredentialParameters, options?: AcsEncodersScanCredentialOptions): AcsEncodersScanCredentialRequest;
|
|
391
877
|
}
|
|
392
|
-
type
|
|
878
|
+
type AcsEncodersEncodeAccessMethodParameters = RouteRequestBody<'/acs/encoders/encode_access_method'>;
|
|
879
|
+
/**
|
|
880
|
+
* @deprecated Use AcsEncodersEncodeAccessMethodParameters instead.
|
|
881
|
+
*/
|
|
882
|
+
type AcsEncodersEncodeAccessMethodBody = AcsEncodersEncodeAccessMethodParameters;
|
|
883
|
+
/**
|
|
884
|
+
* @deprecated Use AcsEncodersEncodeAccessMethodRequest instead.
|
|
885
|
+
*/
|
|
393
886
|
type AcsEncodersEncodeAccessMethodResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_access_method'>>>;
|
|
887
|
+
type AcsEncodersEncodeAccessMethodRequest = SeamHttpRequest<AcsEncodersEncodeAccessMethodResponse, 'action_attempt'>;
|
|
394
888
|
type AcsEncodersEncodeAccessMethodOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
395
|
-
type
|
|
889
|
+
type AcsEncodersEncodeCredentialParameters = RouteRequestBody<'/acs/encoders/encode_credential'>;
|
|
890
|
+
/**
|
|
891
|
+
* @deprecated Use AcsEncodersEncodeCredentialParameters instead.
|
|
892
|
+
*/
|
|
893
|
+
type AcsEncodersEncodeCredentialBody = AcsEncodersEncodeCredentialParameters;
|
|
894
|
+
/**
|
|
895
|
+
* @deprecated Use AcsEncodersEncodeCredentialRequest instead.
|
|
896
|
+
*/
|
|
396
897
|
type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
|
|
898
|
+
type AcsEncodersEncodeCredentialRequest = SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
397
899
|
type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
398
|
-
type
|
|
900
|
+
type AcsEncodersGetParameters = RouteRequestBody<'/acs/encoders/get'>;
|
|
901
|
+
/**
|
|
902
|
+
* @deprecated Use AcsEncodersGetParameters instead.
|
|
903
|
+
*/
|
|
904
|
+
type AcsEncodersGetParams = AcsEncodersGetParameters;
|
|
905
|
+
/**
|
|
906
|
+
* @deprecated Use AcsEncodersGetRequest instead.
|
|
907
|
+
*/
|
|
399
908
|
type AcsEncodersGetResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/get'>>>;
|
|
400
|
-
type
|
|
401
|
-
type
|
|
909
|
+
type AcsEncodersGetRequest = SeamHttpRequest<AcsEncodersGetResponse, 'acs_encoder'>;
|
|
910
|
+
type AcsEncodersGetOptions = Record<string, never>;
|
|
911
|
+
type AcsEncodersListParameters = RouteRequestParams<'/acs/encoders/list'>;
|
|
912
|
+
/**
|
|
913
|
+
* @deprecated Use AcsEncodersListParameters instead.
|
|
914
|
+
*/
|
|
915
|
+
type AcsEncodersListParams = AcsEncodersListParameters;
|
|
916
|
+
/**
|
|
917
|
+
* @deprecated Use AcsEncodersListRequest instead.
|
|
918
|
+
*/
|
|
402
919
|
type AcsEncodersListResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/list'>>>;
|
|
403
|
-
type
|
|
404
|
-
type
|
|
920
|
+
type AcsEncodersListRequest = SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
921
|
+
type AcsEncodersListOptions = Record<string, never>;
|
|
922
|
+
type AcsEncodersScanCredentialParameters = RouteRequestBody<'/acs/encoders/scan_credential'>;
|
|
923
|
+
/**
|
|
924
|
+
* @deprecated Use AcsEncodersScanCredentialParameters instead.
|
|
925
|
+
*/
|
|
926
|
+
type AcsEncodersScanCredentialBody = AcsEncodersScanCredentialParameters;
|
|
927
|
+
/**
|
|
928
|
+
* @deprecated Use AcsEncodersScanCredentialRequest instead.
|
|
929
|
+
*/
|
|
405
930
|
type AcsEncodersScanCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_credential'>>>;
|
|
931
|
+
type AcsEncodersScanCredentialRequest = SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
406
932
|
type AcsEncodersScanCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
407
933
|
|
|
408
934
|
declare class SeamHttpAcsEntrances {
|
|
@@ -419,23 +945,55 @@ declare class SeamHttpAcsEntrances {
|
|
|
419
945
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEntrances;
|
|
420
946
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
421
947
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
422
|
-
get(
|
|
423
|
-
grantAccess(
|
|
424
|
-
list(
|
|
425
|
-
listCredentialsWithAccess(
|
|
948
|
+
get(parameters?: AcsEntrancesGetParameters, options?: AcsEntrancesGetOptions): AcsEntrancesGetRequest;
|
|
949
|
+
grantAccess(parameters?: AcsEntrancesGrantAccessParameters, options?: AcsEntrancesGrantAccessOptions): AcsEntrancesGrantAccessRequest;
|
|
950
|
+
list(parameters?: AcsEntrancesListParameters, options?: AcsEntrancesListOptions): AcsEntrancesListRequest;
|
|
951
|
+
listCredentialsWithAccess(parameters?: AcsEntrancesListCredentialsWithAccessParameters, options?: AcsEntrancesListCredentialsWithAccessOptions): AcsEntrancesListCredentialsWithAccessRequest;
|
|
426
952
|
}
|
|
427
|
-
type
|
|
953
|
+
type AcsEntrancesGetParameters = RouteRequestBody<'/acs/entrances/get'>;
|
|
954
|
+
/**
|
|
955
|
+
* @deprecated Use AcsEntrancesGetParameters instead.
|
|
956
|
+
*/
|
|
957
|
+
type AcsEntrancesGetParams = AcsEntrancesGetParameters;
|
|
958
|
+
/**
|
|
959
|
+
* @deprecated Use AcsEntrancesGetRequest instead.
|
|
960
|
+
*/
|
|
428
961
|
type AcsEntrancesGetResponse = SetNonNullable<Required<RouteResponse<'/acs/entrances/get'>>>;
|
|
429
|
-
type
|
|
430
|
-
type
|
|
962
|
+
type AcsEntrancesGetRequest = SeamHttpRequest<AcsEntrancesGetResponse, 'acs_entrance'>;
|
|
963
|
+
type AcsEntrancesGetOptions = Record<string, never>;
|
|
964
|
+
type AcsEntrancesGrantAccessParameters = RouteRequestBody<'/acs/entrances/grant_access'>;
|
|
965
|
+
/**
|
|
966
|
+
* @deprecated Use AcsEntrancesGrantAccessParameters instead.
|
|
967
|
+
*/
|
|
968
|
+
type AcsEntrancesGrantAccessBody = AcsEntrancesGrantAccessParameters;
|
|
969
|
+
/**
|
|
970
|
+
* @deprecated Use AcsEntrancesGrantAccessRequest instead.
|
|
971
|
+
*/
|
|
431
972
|
type AcsEntrancesGrantAccessResponse = SetNonNullable<Required<RouteResponse<'/acs/entrances/grant_access'>>>;
|
|
432
|
-
type
|
|
433
|
-
type
|
|
973
|
+
type AcsEntrancesGrantAccessRequest = SeamHttpRequest<void, undefined>;
|
|
974
|
+
type AcsEntrancesGrantAccessOptions = Record<string, never>;
|
|
975
|
+
type AcsEntrancesListParameters = RouteRequestBody<'/acs/entrances/list'>;
|
|
976
|
+
/**
|
|
977
|
+
* @deprecated Use AcsEntrancesListParameters instead.
|
|
978
|
+
*/
|
|
979
|
+
type AcsEntrancesListParams = AcsEntrancesListParameters;
|
|
980
|
+
/**
|
|
981
|
+
* @deprecated Use AcsEntrancesListRequest instead.
|
|
982
|
+
*/
|
|
434
983
|
type AcsEntrancesListResponse = SetNonNullable<Required<RouteResponse<'/acs/entrances/list'>>>;
|
|
435
|
-
type
|
|
436
|
-
type
|
|
984
|
+
type AcsEntrancesListRequest = SeamHttpRequest<AcsEntrancesListResponse, 'acs_entrances'>;
|
|
985
|
+
type AcsEntrancesListOptions = Record<string, never>;
|
|
986
|
+
type AcsEntrancesListCredentialsWithAccessParameters = RouteRequestBody<'/acs/entrances/list_credentials_with_access'>;
|
|
987
|
+
/**
|
|
988
|
+
* @deprecated Use AcsEntrancesListCredentialsWithAccessParameters instead.
|
|
989
|
+
*/
|
|
990
|
+
type AcsEntrancesListCredentialsWithAccessParams = AcsEntrancesListCredentialsWithAccessParameters;
|
|
991
|
+
/**
|
|
992
|
+
* @deprecated Use AcsEntrancesListCredentialsWithAccessRequest instead.
|
|
993
|
+
*/
|
|
437
994
|
type AcsEntrancesListCredentialsWithAccessResponse = SetNonNullable<Required<RouteResponse<'/acs/entrances/list_credentials_with_access'>>>;
|
|
438
|
-
type
|
|
995
|
+
type AcsEntrancesListCredentialsWithAccessRequest = SeamHttpRequest<AcsEntrancesListCredentialsWithAccessResponse, 'acs_credentials'>;
|
|
996
|
+
type AcsEntrancesListCredentialsWithAccessOptions = Record<string, never>;
|
|
439
997
|
|
|
440
998
|
declare class SeamHttpAcsSystems {
|
|
441
999
|
client: Client;
|
|
@@ -451,19 +1009,83 @@ declare class SeamHttpAcsSystems {
|
|
|
451
1009
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsSystems;
|
|
452
1010
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
453
1011
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
454
|
-
get(
|
|
455
|
-
list(
|
|
456
|
-
listCompatibleCredentialManagerAcsSystems(
|
|
1012
|
+
get(parameters?: AcsSystemsGetParameters, options?: AcsSystemsGetOptions): AcsSystemsGetRequest;
|
|
1013
|
+
list(parameters?: AcsSystemsListParameters, options?: AcsSystemsListOptions): AcsSystemsListRequest;
|
|
1014
|
+
listCompatibleCredentialManagerAcsSystems(parameters?: AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters, options?: AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions): AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest;
|
|
457
1015
|
}
|
|
458
|
-
type
|
|
1016
|
+
type AcsSystemsGetParameters = RouteRequestBody<'/acs/systems/get'>;
|
|
1017
|
+
/**
|
|
1018
|
+
* @deprecated Use AcsSystemsGetParameters instead.
|
|
1019
|
+
*/
|
|
1020
|
+
type AcsSystemsGetParams = AcsSystemsGetParameters;
|
|
1021
|
+
/**
|
|
1022
|
+
* @deprecated Use AcsSystemsGetRequest instead.
|
|
1023
|
+
*/
|
|
459
1024
|
type AcsSystemsGetResponse = SetNonNullable<Required<RouteResponse<'/acs/systems/get'>>>;
|
|
460
|
-
type
|
|
461
|
-
type
|
|
1025
|
+
type AcsSystemsGetRequest = SeamHttpRequest<AcsSystemsGetResponse, 'acs_system'>;
|
|
1026
|
+
type AcsSystemsGetOptions = Record<string, never>;
|
|
1027
|
+
type AcsSystemsListParameters = RouteRequestBody<'/acs/systems/list'>;
|
|
1028
|
+
/**
|
|
1029
|
+
* @deprecated Use AcsSystemsListParameters instead.
|
|
1030
|
+
*/
|
|
1031
|
+
type AcsSystemsListParams = AcsSystemsListParameters;
|
|
1032
|
+
/**
|
|
1033
|
+
* @deprecated Use AcsSystemsListRequest instead.
|
|
1034
|
+
*/
|
|
462
1035
|
type AcsSystemsListResponse = SetNonNullable<Required<RouteResponse<'/acs/systems/list'>>>;
|
|
463
|
-
type
|
|
464
|
-
type
|
|
1036
|
+
type AcsSystemsListRequest = SeamHttpRequest<AcsSystemsListResponse, 'acs_systems'>;
|
|
1037
|
+
type AcsSystemsListOptions = Record<string, never>;
|
|
1038
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters = RouteRequestBody<'/acs/systems/list_compatible_credential_manager_acs_systems'>;
|
|
1039
|
+
/**
|
|
1040
|
+
* @deprecated Use AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters instead.
|
|
1041
|
+
*/
|
|
1042
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams = AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters;
|
|
1043
|
+
/**
|
|
1044
|
+
* @deprecated Use AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest instead.
|
|
1045
|
+
*/
|
|
465
1046
|
type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse = SetNonNullable<Required<RouteResponse<'/acs/systems/list_compatible_credential_manager_acs_systems'>>>;
|
|
466
|
-
type
|
|
1047
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest = SeamHttpRequest<AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, 'acs_systems'>;
|
|
1048
|
+
type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions = Record<string, never>;
|
|
1049
|
+
|
|
1050
|
+
declare class SeamHttpAcsUsersUnmanaged {
|
|
1051
|
+
client: Client;
|
|
1052
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1053
|
+
readonly ltsVersion = "1.0.0";
|
|
1054
|
+
static ltsVersion: string;
|
|
1055
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1056
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsUsersUnmanaged;
|
|
1057
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsUsersUnmanaged;
|
|
1058
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsUsersUnmanaged;
|
|
1059
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsUsersUnmanaged>;
|
|
1060
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsUsersUnmanaged;
|
|
1061
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsUsersUnmanaged;
|
|
1062
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1063
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1064
|
+
get(parameters?: AcsUsersUnmanagedGetParameters, options?: AcsUsersUnmanagedGetOptions): AcsUsersUnmanagedGetRequest;
|
|
1065
|
+
list(parameters?: AcsUsersUnmanagedListParameters, options?: AcsUsersUnmanagedListOptions): AcsUsersUnmanagedListRequest;
|
|
1066
|
+
}
|
|
1067
|
+
type AcsUsersUnmanagedGetParameters = RouteRequestBody<'/acs/users/unmanaged/get'>;
|
|
1068
|
+
/**
|
|
1069
|
+
* @deprecated Use AcsUsersUnmanagedGetParameters instead.
|
|
1070
|
+
*/
|
|
1071
|
+
type AcsUsersUnmanagedGetParams = AcsUsersUnmanagedGetParameters;
|
|
1072
|
+
/**
|
|
1073
|
+
* @deprecated Use AcsUsersUnmanagedGetRequest instead.
|
|
1074
|
+
*/
|
|
1075
|
+
type AcsUsersUnmanagedGetResponse = SetNonNullable<Required<RouteResponse<'/acs/users/unmanaged/get'>>>;
|
|
1076
|
+
type AcsUsersUnmanagedGetRequest = SeamHttpRequest<AcsUsersUnmanagedGetResponse, 'acs_user'>;
|
|
1077
|
+
type AcsUsersUnmanagedGetOptions = Record<string, never>;
|
|
1078
|
+
type AcsUsersUnmanagedListParameters = RouteRequestBody<'/acs/users/unmanaged/list'>;
|
|
1079
|
+
/**
|
|
1080
|
+
* @deprecated Use AcsUsersUnmanagedListParameters instead.
|
|
1081
|
+
*/
|
|
1082
|
+
type AcsUsersUnmanagedListParams = AcsUsersUnmanagedListParameters;
|
|
1083
|
+
/**
|
|
1084
|
+
* @deprecated Use AcsUsersUnmanagedListRequest instead.
|
|
1085
|
+
*/
|
|
1086
|
+
type AcsUsersUnmanagedListResponse = SetNonNullable<Required<RouteResponse<'/acs/users/unmanaged/list'>>>;
|
|
1087
|
+
type AcsUsersUnmanagedListRequest = SeamHttpRequest<AcsUsersUnmanagedListResponse, 'acs_users'>;
|
|
1088
|
+
type AcsUsersUnmanagedListOptions = Record<string, never>;
|
|
467
1089
|
|
|
468
1090
|
declare class SeamHttpAcsUsers {
|
|
469
1091
|
client: Client;
|
|
@@ -479,51 +1101,140 @@ declare class SeamHttpAcsUsers {
|
|
|
479
1101
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsUsers;
|
|
480
1102
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
481
1103
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
1104
|
+
get unmanaged(): SeamHttpAcsUsersUnmanaged;
|
|
1105
|
+
addToAccessGroup(parameters?: AcsUsersAddToAccessGroupParameters, options?: AcsUsersAddToAccessGroupOptions): AcsUsersAddToAccessGroupRequest;
|
|
1106
|
+
create(parameters?: AcsUsersCreateParameters, options?: AcsUsersCreateOptions): AcsUsersCreateRequest;
|
|
1107
|
+
delete(parameters?: AcsUsersDeleteParameters, options?: AcsUsersDeleteOptions): AcsUsersDeleteRequest;
|
|
1108
|
+
get(parameters?: AcsUsersGetParameters, options?: AcsUsersGetOptions): AcsUsersGetRequest;
|
|
1109
|
+
list(parameters?: AcsUsersListParameters, options?: AcsUsersListOptions): AcsUsersListRequest;
|
|
1110
|
+
listAccessibleEntrances(parameters?: AcsUsersListAccessibleEntrancesParameters, options?: AcsUsersListAccessibleEntrancesOptions): AcsUsersListAccessibleEntrancesRequest;
|
|
1111
|
+
removeFromAccessGroup(parameters?: AcsUsersRemoveFromAccessGroupParameters, options?: AcsUsersRemoveFromAccessGroupOptions): AcsUsersRemoveFromAccessGroupRequest;
|
|
1112
|
+
revokeAccessToAllEntrances(parameters?: AcsUsersRevokeAccessToAllEntrancesParameters, options?: AcsUsersRevokeAccessToAllEntrancesOptions): AcsUsersRevokeAccessToAllEntrancesRequest;
|
|
1113
|
+
suspend(parameters?: AcsUsersSuspendParameters, options?: AcsUsersSuspendOptions): AcsUsersSuspendRequest;
|
|
1114
|
+
unsuspend(parameters?: AcsUsersUnsuspendParameters, options?: AcsUsersUnsuspendOptions): AcsUsersUnsuspendRequest;
|
|
1115
|
+
update(parameters?: AcsUsersUpdateParameters, options?: AcsUsersUpdateOptions): AcsUsersUpdateRequest;
|
|
493
1116
|
}
|
|
494
|
-
type
|
|
1117
|
+
type AcsUsersAddToAccessGroupParameters = RouteRequestBody<'/acs/users/add_to_access_group'>;
|
|
1118
|
+
/**
|
|
1119
|
+
* @deprecated Use AcsUsersAddToAccessGroupParameters instead.
|
|
1120
|
+
*/
|
|
1121
|
+
type AcsUsersAddToAccessGroupBody = AcsUsersAddToAccessGroupParameters;
|
|
1122
|
+
/**
|
|
1123
|
+
* @deprecated Use AcsUsersAddToAccessGroupRequest instead.
|
|
1124
|
+
*/
|
|
495
1125
|
type AcsUsersAddToAccessGroupResponse = SetNonNullable<Required<RouteResponse<'/acs/users/add_to_access_group'>>>;
|
|
496
|
-
type
|
|
497
|
-
type
|
|
1126
|
+
type AcsUsersAddToAccessGroupRequest = SeamHttpRequest<void, undefined>;
|
|
1127
|
+
type AcsUsersAddToAccessGroupOptions = Record<string, never>;
|
|
1128
|
+
type AcsUsersCreateParameters = RouteRequestBody<'/acs/users/create'>;
|
|
1129
|
+
/**
|
|
1130
|
+
* @deprecated Use AcsUsersCreateParameters instead.
|
|
1131
|
+
*/
|
|
1132
|
+
type AcsUsersCreateBody = AcsUsersCreateParameters;
|
|
1133
|
+
/**
|
|
1134
|
+
* @deprecated Use AcsUsersCreateRequest instead.
|
|
1135
|
+
*/
|
|
498
1136
|
type AcsUsersCreateResponse = SetNonNullable<Required<RouteResponse<'/acs/users/create'>>>;
|
|
499
|
-
type
|
|
500
|
-
type
|
|
1137
|
+
type AcsUsersCreateRequest = SeamHttpRequest<AcsUsersCreateResponse, 'acs_user'>;
|
|
1138
|
+
type AcsUsersCreateOptions = Record<string, never>;
|
|
1139
|
+
type AcsUsersDeleteParameters = RouteRequestBody<'/acs/users/delete'>;
|
|
1140
|
+
/**
|
|
1141
|
+
* @deprecated Use AcsUsersDeleteParameters instead.
|
|
1142
|
+
*/
|
|
1143
|
+
type AcsUsersDeleteParams = AcsUsersDeleteParameters;
|
|
1144
|
+
/**
|
|
1145
|
+
* @deprecated Use AcsUsersDeleteRequest instead.
|
|
1146
|
+
*/
|
|
501
1147
|
type AcsUsersDeleteResponse = SetNonNullable<Required<RouteResponse<'/acs/users/delete'>>>;
|
|
502
|
-
type
|
|
503
|
-
type
|
|
1148
|
+
type AcsUsersDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
1149
|
+
type AcsUsersDeleteOptions = Record<string, never>;
|
|
1150
|
+
type AcsUsersGetParameters = RouteRequestBody<'/acs/users/get'>;
|
|
1151
|
+
/**
|
|
1152
|
+
* @deprecated Use AcsUsersGetParameters instead.
|
|
1153
|
+
*/
|
|
1154
|
+
type AcsUsersGetParams = AcsUsersGetParameters;
|
|
1155
|
+
/**
|
|
1156
|
+
* @deprecated Use AcsUsersGetRequest instead.
|
|
1157
|
+
*/
|
|
504
1158
|
type AcsUsersGetResponse = SetNonNullable<Required<RouteResponse<'/acs/users/get'>>>;
|
|
505
|
-
type
|
|
506
|
-
type
|
|
1159
|
+
type AcsUsersGetRequest = SeamHttpRequest<AcsUsersGetResponse, 'acs_user'>;
|
|
1160
|
+
type AcsUsersGetOptions = Record<string, never>;
|
|
1161
|
+
type AcsUsersListParameters = RouteRequestBody<'/acs/users/list'>;
|
|
1162
|
+
/**
|
|
1163
|
+
* @deprecated Use AcsUsersListParameters instead.
|
|
1164
|
+
*/
|
|
1165
|
+
type AcsUsersListParams = AcsUsersListParameters;
|
|
1166
|
+
/**
|
|
1167
|
+
* @deprecated Use AcsUsersListRequest instead.
|
|
1168
|
+
*/
|
|
507
1169
|
type AcsUsersListResponse = SetNonNullable<Required<RouteResponse<'/acs/users/list'>>>;
|
|
508
|
-
type
|
|
509
|
-
type
|
|
1170
|
+
type AcsUsersListRequest = SeamHttpRequest<AcsUsersListResponse, 'acs_users'>;
|
|
1171
|
+
type AcsUsersListOptions = Record<string, never>;
|
|
1172
|
+
type AcsUsersListAccessibleEntrancesParameters = RouteRequestBody<'/acs/users/list_accessible_entrances'>;
|
|
1173
|
+
/**
|
|
1174
|
+
* @deprecated Use AcsUsersListAccessibleEntrancesParameters instead.
|
|
1175
|
+
*/
|
|
1176
|
+
type AcsUsersListAccessibleEntrancesParams = AcsUsersListAccessibleEntrancesParameters;
|
|
1177
|
+
/**
|
|
1178
|
+
* @deprecated Use AcsUsersListAccessibleEntrancesRequest instead.
|
|
1179
|
+
*/
|
|
510
1180
|
type AcsUsersListAccessibleEntrancesResponse = SetNonNullable<Required<RouteResponse<'/acs/users/list_accessible_entrances'>>>;
|
|
511
|
-
type
|
|
512
|
-
type
|
|
1181
|
+
type AcsUsersListAccessibleEntrancesRequest = SeamHttpRequest<AcsUsersListAccessibleEntrancesResponse, 'acs_entrances'>;
|
|
1182
|
+
type AcsUsersListAccessibleEntrancesOptions = Record<string, never>;
|
|
1183
|
+
type AcsUsersRemoveFromAccessGroupParameters = RouteRequestBody<'/acs/users/remove_from_access_group'>;
|
|
1184
|
+
/**
|
|
1185
|
+
* @deprecated Use AcsUsersRemoveFromAccessGroupParameters instead.
|
|
1186
|
+
*/
|
|
1187
|
+
type AcsUsersRemoveFromAccessGroupParams = AcsUsersRemoveFromAccessGroupParameters;
|
|
1188
|
+
/**
|
|
1189
|
+
* @deprecated Use AcsUsersRemoveFromAccessGroupRequest instead.
|
|
1190
|
+
*/
|
|
513
1191
|
type AcsUsersRemoveFromAccessGroupResponse = SetNonNullable<Required<RouteResponse<'/acs/users/remove_from_access_group'>>>;
|
|
514
|
-
type
|
|
515
|
-
type
|
|
1192
|
+
type AcsUsersRemoveFromAccessGroupRequest = SeamHttpRequest<void, undefined>;
|
|
1193
|
+
type AcsUsersRemoveFromAccessGroupOptions = Record<string, never>;
|
|
1194
|
+
type AcsUsersRevokeAccessToAllEntrancesParameters = RouteRequestBody<'/acs/users/revoke_access_to_all_entrances'>;
|
|
1195
|
+
/**
|
|
1196
|
+
* @deprecated Use AcsUsersRevokeAccessToAllEntrancesParameters instead.
|
|
1197
|
+
*/
|
|
1198
|
+
type AcsUsersRevokeAccessToAllEntrancesBody = AcsUsersRevokeAccessToAllEntrancesParameters;
|
|
1199
|
+
/**
|
|
1200
|
+
* @deprecated Use AcsUsersRevokeAccessToAllEntrancesRequest instead.
|
|
1201
|
+
*/
|
|
516
1202
|
type AcsUsersRevokeAccessToAllEntrancesResponse = SetNonNullable<Required<RouteResponse<'/acs/users/revoke_access_to_all_entrances'>>>;
|
|
517
|
-
type
|
|
518
|
-
type
|
|
1203
|
+
type AcsUsersRevokeAccessToAllEntrancesRequest = SeamHttpRequest<void, undefined>;
|
|
1204
|
+
type AcsUsersRevokeAccessToAllEntrancesOptions = Record<string, never>;
|
|
1205
|
+
type AcsUsersSuspendParameters = RouteRequestBody<'/acs/users/suspend'>;
|
|
1206
|
+
/**
|
|
1207
|
+
* @deprecated Use AcsUsersSuspendParameters instead.
|
|
1208
|
+
*/
|
|
1209
|
+
type AcsUsersSuspendBody = AcsUsersSuspendParameters;
|
|
1210
|
+
/**
|
|
1211
|
+
* @deprecated Use AcsUsersSuspendRequest instead.
|
|
1212
|
+
*/
|
|
519
1213
|
type AcsUsersSuspendResponse = SetNonNullable<Required<RouteResponse<'/acs/users/suspend'>>>;
|
|
520
|
-
type
|
|
521
|
-
type
|
|
1214
|
+
type AcsUsersSuspendRequest = SeamHttpRequest<void, undefined>;
|
|
1215
|
+
type AcsUsersSuspendOptions = Record<string, never>;
|
|
1216
|
+
type AcsUsersUnsuspendParameters = RouteRequestBody<'/acs/users/unsuspend'>;
|
|
1217
|
+
/**
|
|
1218
|
+
* @deprecated Use AcsUsersUnsuspendParameters instead.
|
|
1219
|
+
*/
|
|
1220
|
+
type AcsUsersUnsuspendBody = AcsUsersUnsuspendParameters;
|
|
1221
|
+
/**
|
|
1222
|
+
* @deprecated Use AcsUsersUnsuspendRequest instead.
|
|
1223
|
+
*/
|
|
522
1224
|
type AcsUsersUnsuspendResponse = SetNonNullable<Required<RouteResponse<'/acs/users/unsuspend'>>>;
|
|
523
|
-
type
|
|
524
|
-
type
|
|
1225
|
+
type AcsUsersUnsuspendRequest = SeamHttpRequest<void, undefined>;
|
|
1226
|
+
type AcsUsersUnsuspendOptions = Record<string, never>;
|
|
1227
|
+
type AcsUsersUpdateParameters = RouteRequestBody<'/acs/users/update'>;
|
|
1228
|
+
/**
|
|
1229
|
+
* @deprecated Use AcsUsersUpdateParameters instead.
|
|
1230
|
+
*/
|
|
1231
|
+
type AcsUsersUpdateBody = AcsUsersUpdateParameters;
|
|
1232
|
+
/**
|
|
1233
|
+
* @deprecated Use AcsUsersUpdateRequest instead.
|
|
1234
|
+
*/
|
|
525
1235
|
type AcsUsersUpdateResponse = SetNonNullable<Required<RouteResponse<'/acs/users/update'>>>;
|
|
526
|
-
type
|
|
1236
|
+
type AcsUsersUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
1237
|
+
type AcsUsersUpdateOptions = Record<string, never>;
|
|
527
1238
|
|
|
528
1239
|
declare class SeamHttpAcs {
|
|
529
1240
|
client: Client;
|
|
@@ -540,6 +1251,8 @@ declare class SeamHttpAcs {
|
|
|
540
1251
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
541
1252
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
542
1253
|
get accessGroups(): SeamHttpAcsAccessGroups;
|
|
1254
|
+
get credentialPools(): SeamHttpAcsCredentialPools;
|
|
1255
|
+
get credentialProvisioningAutomations(): SeamHttpAcsCredentialProvisioningAutomations;
|
|
543
1256
|
get credentials(): SeamHttpAcsCredentials;
|
|
544
1257
|
get encoders(): SeamHttpAcsEncoders;
|
|
545
1258
|
get entrances(): SeamHttpAcsEntrances;
|
|
@@ -561,15 +1274,71 @@ declare class SeamHttpActionAttempts {
|
|
|
561
1274
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpActionAttempts;
|
|
562
1275
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
563
1276
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
564
|
-
get(
|
|
565
|
-
list(
|
|
1277
|
+
get(parameters?: ActionAttemptsGetParameters, options?: ActionAttemptsGetOptions): ActionAttemptsGetRequest;
|
|
1278
|
+
list(parameters?: ActionAttemptsListParameters, options?: ActionAttemptsListOptions): ActionAttemptsListRequest;
|
|
566
1279
|
}
|
|
567
|
-
type
|
|
1280
|
+
type ActionAttemptsGetParameters = RouteRequestBody<'/action_attempts/get'>;
|
|
1281
|
+
/**
|
|
1282
|
+
* @deprecated Use ActionAttemptsGetParameters instead.
|
|
1283
|
+
*/
|
|
1284
|
+
type ActionAttemptsGetParams = ActionAttemptsGetParameters;
|
|
1285
|
+
/**
|
|
1286
|
+
* @deprecated Use ActionAttemptsGetRequest instead.
|
|
1287
|
+
*/
|
|
568
1288
|
type ActionAttemptsGetResponse = SetNonNullable<Required<RouteResponse<'/action_attempts/get'>>>;
|
|
1289
|
+
type ActionAttemptsGetRequest = SeamHttpRequest<ActionAttemptsGetResponse, 'action_attempt'>;
|
|
569
1290
|
type ActionAttemptsGetOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
570
|
-
type
|
|
1291
|
+
type ActionAttemptsListParameters = RouteRequestBody<'/action_attempts/list'>;
|
|
1292
|
+
/**
|
|
1293
|
+
* @deprecated Use ActionAttemptsListParameters instead.
|
|
1294
|
+
*/
|
|
1295
|
+
type ActionAttemptsListParams = ActionAttemptsListParameters;
|
|
1296
|
+
/**
|
|
1297
|
+
* @deprecated Use ActionAttemptsListRequest instead.
|
|
1298
|
+
*/
|
|
571
1299
|
type ActionAttemptsListResponse = SetNonNullable<Required<RouteResponse<'/action_attempts/list'>>>;
|
|
572
|
-
type
|
|
1300
|
+
type ActionAttemptsListRequest = SeamHttpRequest<ActionAttemptsListResponse, 'action_attempts'>;
|
|
1301
|
+
type ActionAttemptsListOptions = Record<string, never>;
|
|
1302
|
+
|
|
1303
|
+
declare class SeamHttpBridges {
|
|
1304
|
+
client: Client;
|
|
1305
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1306
|
+
readonly ltsVersion = "1.0.0";
|
|
1307
|
+
static ltsVersion: string;
|
|
1308
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1309
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpBridges;
|
|
1310
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpBridges;
|
|
1311
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpBridges;
|
|
1312
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpBridges>;
|
|
1313
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpBridges;
|
|
1314
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpBridges;
|
|
1315
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1316
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1317
|
+
get(parameters?: BridgesGetParameters, options?: BridgesGetOptions): BridgesGetRequest;
|
|
1318
|
+
list(parameters?: BridgesListParameters, options?: BridgesListOptions): BridgesListRequest;
|
|
1319
|
+
}
|
|
1320
|
+
type BridgesGetParameters = RouteRequestBody<'/bridges/get'>;
|
|
1321
|
+
/**
|
|
1322
|
+
* @deprecated Use BridgesGetParameters instead.
|
|
1323
|
+
*/
|
|
1324
|
+
type BridgesGetParams = BridgesGetParameters;
|
|
1325
|
+
/**
|
|
1326
|
+
* @deprecated Use BridgesGetRequest instead.
|
|
1327
|
+
*/
|
|
1328
|
+
type BridgesGetResponse = SetNonNullable<Required<RouteResponse<'/bridges/get'>>>;
|
|
1329
|
+
type BridgesGetRequest = SeamHttpRequest<BridgesGetResponse, 'bridge'>;
|
|
1330
|
+
type BridgesGetOptions = Record<string, never>;
|
|
1331
|
+
type BridgesListParameters = RouteRequestBody<'/bridges/list'>;
|
|
1332
|
+
/**
|
|
1333
|
+
* @deprecated Use BridgesListParameters instead.
|
|
1334
|
+
*/
|
|
1335
|
+
type BridgesListParams = BridgesListParameters;
|
|
1336
|
+
/**
|
|
1337
|
+
* @deprecated Use BridgesListRequest instead.
|
|
1338
|
+
*/
|
|
1339
|
+
type BridgesListResponse = SetNonNullable<Required<RouteResponse<'/bridges/list'>>>;
|
|
1340
|
+
type BridgesListRequest = SeamHttpRequest<BridgesListResponse, 'bridges'>;
|
|
1341
|
+
type BridgesListOptions = Record<string, never>;
|
|
573
1342
|
|
|
574
1343
|
declare class SeamHttpClientSessions {
|
|
575
1344
|
client: Client;
|
|
@@ -585,35 +1354,91 @@ declare class SeamHttpClientSessions {
|
|
|
585
1354
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpClientSessions;
|
|
586
1355
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
587
1356
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
588
|
-
create(
|
|
589
|
-
delete(
|
|
590
|
-
get(
|
|
591
|
-
getOrCreate(
|
|
592
|
-
grantAccess(
|
|
593
|
-
list(
|
|
594
|
-
revoke(
|
|
1357
|
+
create(parameters?: ClientSessionsCreateParameters, options?: ClientSessionsCreateOptions): ClientSessionsCreateRequest;
|
|
1358
|
+
delete(parameters?: ClientSessionsDeleteParameters, options?: ClientSessionsDeleteOptions): ClientSessionsDeleteRequest;
|
|
1359
|
+
get(parameters?: ClientSessionsGetParameters, options?: ClientSessionsGetOptions): ClientSessionsGetRequest;
|
|
1360
|
+
getOrCreate(parameters?: ClientSessionsGetOrCreateParameters, options?: ClientSessionsGetOrCreateOptions): ClientSessionsGetOrCreateRequest;
|
|
1361
|
+
grantAccess(parameters?: ClientSessionsGrantAccessParameters, options?: ClientSessionsGrantAccessOptions): ClientSessionsGrantAccessRequest;
|
|
1362
|
+
list(parameters?: ClientSessionsListParameters, options?: ClientSessionsListOptions): ClientSessionsListRequest;
|
|
1363
|
+
revoke(parameters?: ClientSessionsRevokeParameters, options?: ClientSessionsRevokeOptions): ClientSessionsRevokeRequest;
|
|
595
1364
|
}
|
|
596
|
-
type
|
|
1365
|
+
type ClientSessionsCreateParameters = RouteRequestBody<'/client_sessions/create'>;
|
|
1366
|
+
/**
|
|
1367
|
+
* @deprecated Use ClientSessionsCreateParameters instead.
|
|
1368
|
+
*/
|
|
1369
|
+
type ClientSessionsCreateBody = ClientSessionsCreateParameters;
|
|
1370
|
+
/**
|
|
1371
|
+
* @deprecated Use ClientSessionsCreateRequest instead.
|
|
1372
|
+
*/
|
|
597
1373
|
type ClientSessionsCreateResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/create'>>>;
|
|
598
|
-
type
|
|
599
|
-
type
|
|
1374
|
+
type ClientSessionsCreateRequest = SeamHttpRequest<ClientSessionsCreateResponse, 'client_session'>;
|
|
1375
|
+
type ClientSessionsCreateOptions = Record<string, never>;
|
|
1376
|
+
type ClientSessionsDeleteParameters = RouteRequestBody<'/client_sessions/delete'>;
|
|
1377
|
+
/**
|
|
1378
|
+
* @deprecated Use ClientSessionsDeleteParameters instead.
|
|
1379
|
+
*/
|
|
1380
|
+
type ClientSessionsDeleteParams = ClientSessionsDeleteParameters;
|
|
1381
|
+
/**
|
|
1382
|
+
* @deprecated Use ClientSessionsDeleteRequest instead.
|
|
1383
|
+
*/
|
|
600
1384
|
type ClientSessionsDeleteResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/delete'>>>;
|
|
601
|
-
type
|
|
602
|
-
type
|
|
1385
|
+
type ClientSessionsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
1386
|
+
type ClientSessionsDeleteOptions = Record<string, never>;
|
|
1387
|
+
type ClientSessionsGetParameters = RouteRequestBody<'/client_sessions/get'>;
|
|
1388
|
+
/**
|
|
1389
|
+
* @deprecated Use ClientSessionsGetParameters instead.
|
|
1390
|
+
*/
|
|
1391
|
+
type ClientSessionsGetParams = ClientSessionsGetParameters;
|
|
1392
|
+
/**
|
|
1393
|
+
* @deprecated Use ClientSessionsGetRequest instead.
|
|
1394
|
+
*/
|
|
603
1395
|
type ClientSessionsGetResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/get'>>>;
|
|
604
|
-
type
|
|
605
|
-
type
|
|
1396
|
+
type ClientSessionsGetRequest = SeamHttpRequest<ClientSessionsGetResponse, 'client_session'>;
|
|
1397
|
+
type ClientSessionsGetOptions = Record<string, never>;
|
|
1398
|
+
type ClientSessionsGetOrCreateParameters = RouteRequestBody<'/client_sessions/get_or_create'>;
|
|
1399
|
+
/**
|
|
1400
|
+
* @deprecated Use ClientSessionsGetOrCreateParameters instead.
|
|
1401
|
+
*/
|
|
1402
|
+
type ClientSessionsGetOrCreateBody = ClientSessionsGetOrCreateParameters;
|
|
1403
|
+
/**
|
|
1404
|
+
* @deprecated Use ClientSessionsGetOrCreateRequest instead.
|
|
1405
|
+
*/
|
|
606
1406
|
type ClientSessionsGetOrCreateResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/get_or_create'>>>;
|
|
607
|
-
type
|
|
608
|
-
type
|
|
1407
|
+
type ClientSessionsGetOrCreateRequest = SeamHttpRequest<ClientSessionsGetOrCreateResponse, 'client_session'>;
|
|
1408
|
+
type ClientSessionsGetOrCreateOptions = Record<string, never>;
|
|
1409
|
+
type ClientSessionsGrantAccessParameters = RouteRequestBody<'/client_sessions/grant_access'>;
|
|
1410
|
+
/**
|
|
1411
|
+
* @deprecated Use ClientSessionsGrantAccessParameters instead.
|
|
1412
|
+
*/
|
|
1413
|
+
type ClientSessionsGrantAccessBody = ClientSessionsGrantAccessParameters;
|
|
1414
|
+
/**
|
|
1415
|
+
* @deprecated Use ClientSessionsGrantAccessRequest instead.
|
|
1416
|
+
*/
|
|
609
1417
|
type ClientSessionsGrantAccessResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/grant_access'>>>;
|
|
610
|
-
type
|
|
611
|
-
type
|
|
1418
|
+
type ClientSessionsGrantAccessRequest = SeamHttpRequest<void, undefined>;
|
|
1419
|
+
type ClientSessionsGrantAccessOptions = Record<string, never>;
|
|
1420
|
+
type ClientSessionsListParameters = RouteRequestBody<'/client_sessions/list'>;
|
|
1421
|
+
/**
|
|
1422
|
+
* @deprecated Use ClientSessionsListParameters instead.
|
|
1423
|
+
*/
|
|
1424
|
+
type ClientSessionsListParams = ClientSessionsListParameters;
|
|
1425
|
+
/**
|
|
1426
|
+
* @deprecated Use ClientSessionsListRequest instead.
|
|
1427
|
+
*/
|
|
612
1428
|
type ClientSessionsListResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/list'>>>;
|
|
613
|
-
type
|
|
614
|
-
type
|
|
1429
|
+
type ClientSessionsListRequest = SeamHttpRequest<ClientSessionsListResponse, 'client_sessions'>;
|
|
1430
|
+
type ClientSessionsListOptions = Record<string, never>;
|
|
1431
|
+
type ClientSessionsRevokeParameters = RouteRequestBody<'/client_sessions/revoke'>;
|
|
1432
|
+
/**
|
|
1433
|
+
* @deprecated Use ClientSessionsRevokeParameters instead.
|
|
1434
|
+
*/
|
|
1435
|
+
type ClientSessionsRevokeBody = ClientSessionsRevokeParameters;
|
|
1436
|
+
/**
|
|
1437
|
+
* @deprecated Use ClientSessionsRevokeRequest instead.
|
|
1438
|
+
*/
|
|
615
1439
|
type ClientSessionsRevokeResponse = SetNonNullable<Required<RouteResponse<'/client_sessions/revoke'>>>;
|
|
616
|
-
type
|
|
1440
|
+
type ClientSessionsRevokeRequest = SeamHttpRequest<void, undefined>;
|
|
1441
|
+
type ClientSessionsRevokeOptions = Record<string, never>;
|
|
617
1442
|
|
|
618
1443
|
declare class SeamHttpConnectWebviews {
|
|
619
1444
|
client: Client;
|
|
@@ -629,23 +1454,55 @@ declare class SeamHttpConnectWebviews {
|
|
|
629
1454
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpConnectWebviews;
|
|
630
1455
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
631
1456
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
632
|
-
create(
|
|
633
|
-
delete(
|
|
634
|
-
get(
|
|
635
|
-
list(
|
|
1457
|
+
create(parameters?: ConnectWebviewsCreateParameters, options?: ConnectWebviewsCreateOptions): ConnectWebviewsCreateRequest;
|
|
1458
|
+
delete(parameters?: ConnectWebviewsDeleteParameters, options?: ConnectWebviewsDeleteOptions): ConnectWebviewsDeleteRequest;
|
|
1459
|
+
get(parameters?: ConnectWebviewsGetParameters, options?: ConnectWebviewsGetOptions): ConnectWebviewsGetRequest;
|
|
1460
|
+
list(parameters?: ConnectWebviewsListParameters, options?: ConnectWebviewsListOptions): ConnectWebviewsListRequest;
|
|
636
1461
|
}
|
|
637
|
-
type
|
|
1462
|
+
type ConnectWebviewsCreateParameters = RouteRequestBody<'/connect_webviews/create'>;
|
|
1463
|
+
/**
|
|
1464
|
+
* @deprecated Use ConnectWebviewsCreateParameters instead.
|
|
1465
|
+
*/
|
|
1466
|
+
type ConnectWebviewsCreateBody = ConnectWebviewsCreateParameters;
|
|
1467
|
+
/**
|
|
1468
|
+
* @deprecated Use ConnectWebviewsCreateRequest instead.
|
|
1469
|
+
*/
|
|
638
1470
|
type ConnectWebviewsCreateResponse = SetNonNullable<Required<RouteResponse<'/connect_webviews/create'>>>;
|
|
639
|
-
type
|
|
640
|
-
type
|
|
1471
|
+
type ConnectWebviewsCreateRequest = SeamHttpRequest<ConnectWebviewsCreateResponse, 'connect_webview'>;
|
|
1472
|
+
type ConnectWebviewsCreateOptions = Record<string, never>;
|
|
1473
|
+
type ConnectWebviewsDeleteParameters = RouteRequestBody<'/connect_webviews/delete'>;
|
|
1474
|
+
/**
|
|
1475
|
+
* @deprecated Use ConnectWebviewsDeleteParameters instead.
|
|
1476
|
+
*/
|
|
1477
|
+
type ConnectWebviewsDeleteParams = ConnectWebviewsDeleteParameters;
|
|
1478
|
+
/**
|
|
1479
|
+
* @deprecated Use ConnectWebviewsDeleteRequest instead.
|
|
1480
|
+
*/
|
|
641
1481
|
type ConnectWebviewsDeleteResponse = SetNonNullable<Required<RouteResponse<'/connect_webviews/delete'>>>;
|
|
642
|
-
type
|
|
643
|
-
type
|
|
1482
|
+
type ConnectWebviewsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
1483
|
+
type ConnectWebviewsDeleteOptions = Record<string, never>;
|
|
1484
|
+
type ConnectWebviewsGetParameters = RouteRequestBody<'/connect_webviews/get'>;
|
|
1485
|
+
/**
|
|
1486
|
+
* @deprecated Use ConnectWebviewsGetParameters instead.
|
|
1487
|
+
*/
|
|
1488
|
+
type ConnectWebviewsGetParams = ConnectWebviewsGetParameters;
|
|
1489
|
+
/**
|
|
1490
|
+
* @deprecated Use ConnectWebviewsGetRequest instead.
|
|
1491
|
+
*/
|
|
644
1492
|
type ConnectWebviewsGetResponse = SetNonNullable<Required<RouteResponse<'/connect_webviews/get'>>>;
|
|
645
|
-
type
|
|
646
|
-
type
|
|
1493
|
+
type ConnectWebviewsGetRequest = SeamHttpRequest<ConnectWebviewsGetResponse, 'connect_webview'>;
|
|
1494
|
+
type ConnectWebviewsGetOptions = Record<string, never>;
|
|
1495
|
+
type ConnectWebviewsListParameters = RouteRequestBody<'/connect_webviews/list'>;
|
|
1496
|
+
/**
|
|
1497
|
+
* @deprecated Use ConnectWebviewsListParameters instead.
|
|
1498
|
+
*/
|
|
1499
|
+
type ConnectWebviewsListParams = ConnectWebviewsListParameters;
|
|
1500
|
+
/**
|
|
1501
|
+
* @deprecated Use ConnectWebviewsListRequest instead.
|
|
1502
|
+
*/
|
|
647
1503
|
type ConnectWebviewsListResponse = SetNonNullable<Required<RouteResponse<'/connect_webviews/list'>>>;
|
|
648
|
-
type
|
|
1504
|
+
type ConnectWebviewsListRequest = SeamHttpRequest<ConnectWebviewsListResponse, 'connect_webviews'>;
|
|
1505
|
+
type ConnectWebviewsListOptions = Record<string, never>;
|
|
649
1506
|
|
|
650
1507
|
declare class SeamHttpConnectedAccounts {
|
|
651
1508
|
client: Client;
|
|
@@ -661,27 +1518,67 @@ declare class SeamHttpConnectedAccounts {
|
|
|
661
1518
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpConnectedAccounts;
|
|
662
1519
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
663
1520
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
664
|
-
delete(
|
|
665
|
-
get(
|
|
666
|
-
list(
|
|
667
|
-
sync(
|
|
668
|
-
update(
|
|
1521
|
+
delete(parameters?: ConnectedAccountsDeleteParameters, options?: ConnectedAccountsDeleteOptions): ConnectedAccountsDeleteRequest;
|
|
1522
|
+
get(parameters?: ConnectedAccountsGetParameters, options?: ConnectedAccountsGetOptions): ConnectedAccountsGetRequest;
|
|
1523
|
+
list(parameters?: ConnectedAccountsListParameters, options?: ConnectedAccountsListOptions): ConnectedAccountsListRequest;
|
|
1524
|
+
sync(parameters?: ConnectedAccountsSyncParameters, options?: ConnectedAccountsSyncOptions): ConnectedAccountsSyncRequest;
|
|
1525
|
+
update(parameters?: ConnectedAccountsUpdateParameters, options?: ConnectedAccountsUpdateOptions): ConnectedAccountsUpdateRequest;
|
|
669
1526
|
}
|
|
670
|
-
type
|
|
1527
|
+
type ConnectedAccountsDeleteParameters = RouteRequestBody<'/connected_accounts/delete'>;
|
|
1528
|
+
/**
|
|
1529
|
+
* @deprecated Use ConnectedAccountsDeleteParameters instead.
|
|
1530
|
+
*/
|
|
1531
|
+
type ConnectedAccountsDeleteParams = ConnectedAccountsDeleteParameters;
|
|
1532
|
+
/**
|
|
1533
|
+
* @deprecated Use ConnectedAccountsDeleteRequest instead.
|
|
1534
|
+
*/
|
|
671
1535
|
type ConnectedAccountsDeleteResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/delete'>>>;
|
|
672
|
-
type
|
|
673
|
-
type
|
|
1536
|
+
type ConnectedAccountsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
1537
|
+
type ConnectedAccountsDeleteOptions = Record<string, never>;
|
|
1538
|
+
type ConnectedAccountsGetParameters = RouteRequestParams<'/connected_accounts/get'>;
|
|
1539
|
+
/**
|
|
1540
|
+
* @deprecated Use ConnectedAccountsGetParameters instead.
|
|
1541
|
+
*/
|
|
1542
|
+
type ConnectedAccountsGetParams = ConnectedAccountsGetParameters;
|
|
1543
|
+
/**
|
|
1544
|
+
* @deprecated Use ConnectedAccountsGetRequest instead.
|
|
1545
|
+
*/
|
|
674
1546
|
type ConnectedAccountsGetResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/get'>>>;
|
|
675
|
-
type
|
|
676
|
-
type
|
|
1547
|
+
type ConnectedAccountsGetRequest = SeamHttpRequest<ConnectedAccountsGetResponse, 'connected_account'>;
|
|
1548
|
+
type ConnectedAccountsGetOptions = Record<string, never>;
|
|
1549
|
+
type ConnectedAccountsListParameters = RouteRequestBody<'/connected_accounts/list'>;
|
|
1550
|
+
/**
|
|
1551
|
+
* @deprecated Use ConnectedAccountsListParameters instead.
|
|
1552
|
+
*/
|
|
1553
|
+
type ConnectedAccountsListParams = ConnectedAccountsListParameters;
|
|
1554
|
+
/**
|
|
1555
|
+
* @deprecated Use ConnectedAccountsListRequest instead.
|
|
1556
|
+
*/
|
|
677
1557
|
type ConnectedAccountsListResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/list'>>>;
|
|
678
|
-
type
|
|
679
|
-
type
|
|
1558
|
+
type ConnectedAccountsListRequest = SeamHttpRequest<ConnectedAccountsListResponse, 'connected_accounts'>;
|
|
1559
|
+
type ConnectedAccountsListOptions = Record<string, never>;
|
|
1560
|
+
type ConnectedAccountsSyncParameters = RouteRequestBody<'/connected_accounts/sync'>;
|
|
1561
|
+
/**
|
|
1562
|
+
* @deprecated Use ConnectedAccountsSyncParameters instead.
|
|
1563
|
+
*/
|
|
1564
|
+
type ConnectedAccountsSyncBody = ConnectedAccountsSyncParameters;
|
|
1565
|
+
/**
|
|
1566
|
+
* @deprecated Use ConnectedAccountsSyncRequest instead.
|
|
1567
|
+
*/
|
|
680
1568
|
type ConnectedAccountsSyncResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/sync'>>>;
|
|
681
|
-
type
|
|
682
|
-
type
|
|
1569
|
+
type ConnectedAccountsSyncRequest = SeamHttpRequest<void, undefined>;
|
|
1570
|
+
type ConnectedAccountsSyncOptions = Record<string, never>;
|
|
1571
|
+
type ConnectedAccountsUpdateParameters = RouteRequestBody<'/connected_accounts/update'>;
|
|
1572
|
+
/**
|
|
1573
|
+
* @deprecated Use ConnectedAccountsUpdateParameters instead.
|
|
1574
|
+
*/
|
|
1575
|
+
type ConnectedAccountsUpdateBody = ConnectedAccountsUpdateParameters;
|
|
1576
|
+
/**
|
|
1577
|
+
* @deprecated Use ConnectedAccountsUpdateRequest instead.
|
|
1578
|
+
*/
|
|
683
1579
|
type ConnectedAccountsUpdateResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/update'>>>;
|
|
684
|
-
type
|
|
1580
|
+
type ConnectedAccountsUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
1581
|
+
type ConnectedAccountsUpdateOptions = Record<string, never>;
|
|
685
1582
|
|
|
686
1583
|
declare class SeamHttpDevicesSimulate {
|
|
687
1584
|
client: Client;
|
|
@@ -697,19 +1594,43 @@ declare class SeamHttpDevicesSimulate {
|
|
|
697
1594
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpDevicesSimulate;
|
|
698
1595
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
699
1596
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
700
|
-
connect(
|
|
701
|
-
disconnect(
|
|
702
|
-
remove(
|
|
1597
|
+
connect(parameters?: DevicesSimulateConnectParameters, options?: DevicesSimulateConnectOptions): DevicesSimulateConnectRequest;
|
|
1598
|
+
disconnect(parameters?: DevicesSimulateDisconnectParameters, options?: DevicesSimulateDisconnectOptions): DevicesSimulateDisconnectRequest;
|
|
1599
|
+
remove(parameters?: DevicesSimulateRemoveParameters, options?: DevicesSimulateRemoveOptions): DevicesSimulateRemoveRequest;
|
|
703
1600
|
}
|
|
704
|
-
type
|
|
1601
|
+
type DevicesSimulateConnectParameters = RouteRequestBody<'/devices/simulate/connect'>;
|
|
1602
|
+
/**
|
|
1603
|
+
* @deprecated Use DevicesSimulateConnectParameters instead.
|
|
1604
|
+
*/
|
|
1605
|
+
type DevicesSimulateConnectBody = DevicesSimulateConnectParameters;
|
|
1606
|
+
/**
|
|
1607
|
+
* @deprecated Use DevicesSimulateConnectRequest instead.
|
|
1608
|
+
*/
|
|
705
1609
|
type DevicesSimulateConnectResponse = SetNonNullable<Required<RouteResponse<'/devices/simulate/connect'>>>;
|
|
706
|
-
type
|
|
707
|
-
type
|
|
1610
|
+
type DevicesSimulateConnectRequest = SeamHttpRequest<void, undefined>;
|
|
1611
|
+
type DevicesSimulateConnectOptions = Record<string, never>;
|
|
1612
|
+
type DevicesSimulateDisconnectParameters = RouteRequestBody<'/devices/simulate/disconnect'>;
|
|
1613
|
+
/**
|
|
1614
|
+
* @deprecated Use DevicesSimulateDisconnectParameters instead.
|
|
1615
|
+
*/
|
|
1616
|
+
type DevicesSimulateDisconnectBody = DevicesSimulateDisconnectParameters;
|
|
1617
|
+
/**
|
|
1618
|
+
* @deprecated Use DevicesSimulateDisconnectRequest instead.
|
|
1619
|
+
*/
|
|
708
1620
|
type DevicesSimulateDisconnectResponse = SetNonNullable<Required<RouteResponse<'/devices/simulate/disconnect'>>>;
|
|
709
|
-
type
|
|
710
|
-
type
|
|
1621
|
+
type DevicesSimulateDisconnectRequest = SeamHttpRequest<void, undefined>;
|
|
1622
|
+
type DevicesSimulateDisconnectOptions = Record<string, never>;
|
|
1623
|
+
type DevicesSimulateRemoveParameters = RouteRequestBody<'/devices/simulate/remove'>;
|
|
1624
|
+
/**
|
|
1625
|
+
* @deprecated Use DevicesSimulateRemoveParameters instead.
|
|
1626
|
+
*/
|
|
1627
|
+
type DevicesSimulateRemoveParams = DevicesSimulateRemoveParameters;
|
|
1628
|
+
/**
|
|
1629
|
+
* @deprecated Use DevicesSimulateRemoveRequest instead.
|
|
1630
|
+
*/
|
|
711
1631
|
type DevicesSimulateRemoveResponse = SetNonNullable<Required<RouteResponse<'/devices/simulate/remove'>>>;
|
|
712
|
-
type
|
|
1632
|
+
type DevicesSimulateRemoveRequest = SeamHttpRequest<void, undefined>;
|
|
1633
|
+
type DevicesSimulateRemoveOptions = Record<string, never>;
|
|
713
1634
|
|
|
714
1635
|
declare class SeamHttpDevicesUnmanaged {
|
|
715
1636
|
client: Client;
|
|
@@ -725,19 +1646,43 @@ declare class SeamHttpDevicesUnmanaged {
|
|
|
725
1646
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpDevicesUnmanaged;
|
|
726
1647
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
727
1648
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
728
|
-
get(
|
|
729
|
-
list(
|
|
730
|
-
update(
|
|
1649
|
+
get(parameters?: DevicesUnmanagedGetParameters, options?: DevicesUnmanagedGetOptions): DevicesUnmanagedGetRequest;
|
|
1650
|
+
list(parameters?: DevicesUnmanagedListParameters, options?: DevicesUnmanagedListOptions): DevicesUnmanagedListRequest;
|
|
1651
|
+
update(parameters?: DevicesUnmanagedUpdateParameters, options?: DevicesUnmanagedUpdateOptions): DevicesUnmanagedUpdateRequest;
|
|
731
1652
|
}
|
|
732
|
-
type
|
|
1653
|
+
type DevicesUnmanagedGetParameters = RouteRequestBody<'/devices/unmanaged/get'>;
|
|
1654
|
+
/**
|
|
1655
|
+
* @deprecated Use DevicesUnmanagedGetParameters instead.
|
|
1656
|
+
*/
|
|
1657
|
+
type DevicesUnmanagedGetParams = DevicesUnmanagedGetParameters;
|
|
1658
|
+
/**
|
|
1659
|
+
* @deprecated Use DevicesUnmanagedGetRequest instead.
|
|
1660
|
+
*/
|
|
733
1661
|
type DevicesUnmanagedGetResponse = SetNonNullable<Required<RouteResponse<'/devices/unmanaged/get'>>>;
|
|
734
|
-
type
|
|
735
|
-
type
|
|
1662
|
+
type DevicesUnmanagedGetRequest = SeamHttpRequest<DevicesUnmanagedGetResponse, 'device'>;
|
|
1663
|
+
type DevicesUnmanagedGetOptions = Record<string, never>;
|
|
1664
|
+
type DevicesUnmanagedListParameters = RouteRequestBody<'/devices/unmanaged/list'>;
|
|
1665
|
+
/**
|
|
1666
|
+
* @deprecated Use DevicesUnmanagedListParameters instead.
|
|
1667
|
+
*/
|
|
1668
|
+
type DevicesUnmanagedListParams = DevicesUnmanagedListParameters;
|
|
1669
|
+
/**
|
|
1670
|
+
* @deprecated Use DevicesUnmanagedListRequest instead.
|
|
1671
|
+
*/
|
|
736
1672
|
type DevicesUnmanagedListResponse = SetNonNullable<Required<RouteResponse<'/devices/unmanaged/list'>>>;
|
|
737
|
-
type
|
|
738
|
-
type
|
|
1673
|
+
type DevicesUnmanagedListRequest = SeamHttpRequest<DevicesUnmanagedListResponse, 'devices'>;
|
|
1674
|
+
type DevicesUnmanagedListOptions = Record<string, never>;
|
|
1675
|
+
type DevicesUnmanagedUpdateParameters = RouteRequestBody<'/devices/unmanaged/update'>;
|
|
1676
|
+
/**
|
|
1677
|
+
* @deprecated Use DevicesUnmanagedUpdateParameters instead.
|
|
1678
|
+
*/
|
|
1679
|
+
type DevicesUnmanagedUpdateBody = DevicesUnmanagedUpdateParameters;
|
|
1680
|
+
/**
|
|
1681
|
+
* @deprecated Use DevicesUnmanagedUpdateRequest instead.
|
|
1682
|
+
*/
|
|
739
1683
|
type DevicesUnmanagedUpdateResponse = SetNonNullable<Required<RouteResponse<'/devices/unmanaged/update'>>>;
|
|
740
|
-
type
|
|
1684
|
+
type DevicesUnmanagedUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
1685
|
+
type DevicesUnmanagedUpdateOptions = Record<string, never>;
|
|
741
1686
|
|
|
742
1687
|
declare class SeamHttpDevices {
|
|
743
1688
|
client: Client;
|
|
@@ -755,23 +1700,67 @@ declare class SeamHttpDevices {
|
|
|
755
1700
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
756
1701
|
get simulate(): SeamHttpDevicesSimulate;
|
|
757
1702
|
get unmanaged(): SeamHttpDevicesUnmanaged;
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
1703
|
+
delete(parameters?: DevicesDeleteParameters, options?: DevicesDeleteOptions): DevicesDeleteRequest;
|
|
1704
|
+
get(parameters?: DevicesGetParameters, options?: DevicesGetOptions): DevicesGetRequest;
|
|
1705
|
+
list(parameters?: DevicesListParameters, options?: DevicesListOptions): DevicesListRequest;
|
|
1706
|
+
listDeviceProviders(parameters?: DevicesListDeviceProvidersParameters, options?: DevicesListDeviceProvidersOptions): DevicesListDeviceProvidersRequest;
|
|
1707
|
+
update(parameters?: DevicesUpdateParameters, options?: DevicesUpdateOptions): DevicesUpdateRequest;
|
|
762
1708
|
}
|
|
763
|
-
type
|
|
1709
|
+
type DevicesDeleteParameters = RouteRequestBody<'/devices/delete'>;
|
|
1710
|
+
/**
|
|
1711
|
+
* @deprecated Use DevicesDeleteParameters instead.
|
|
1712
|
+
*/
|
|
1713
|
+
type DevicesDeleteParams = DevicesDeleteParameters;
|
|
1714
|
+
/**
|
|
1715
|
+
* @deprecated Use DevicesDeleteRequest instead.
|
|
1716
|
+
*/
|
|
1717
|
+
type DevicesDeleteResponse = SetNonNullable<Required<RouteResponse<'/devices/delete'>>>;
|
|
1718
|
+
type DevicesDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
1719
|
+
type DevicesDeleteOptions = Record<string, never>;
|
|
1720
|
+
type DevicesGetParameters = RouteRequestBody<'/devices/get'>;
|
|
1721
|
+
/**
|
|
1722
|
+
* @deprecated Use DevicesGetParameters instead.
|
|
1723
|
+
*/
|
|
1724
|
+
type DevicesGetParams = DevicesGetParameters;
|
|
1725
|
+
/**
|
|
1726
|
+
* @deprecated Use DevicesGetRequest instead.
|
|
1727
|
+
*/
|
|
764
1728
|
type DevicesGetResponse = SetNonNullable<Required<RouteResponse<'/devices/get'>>>;
|
|
765
|
-
type
|
|
766
|
-
type
|
|
1729
|
+
type DevicesGetRequest = SeamHttpRequest<DevicesGetResponse, 'device'>;
|
|
1730
|
+
type DevicesGetOptions = Record<string, never>;
|
|
1731
|
+
type DevicesListParameters = RouteRequestBody<'/devices/list'>;
|
|
1732
|
+
/**
|
|
1733
|
+
* @deprecated Use DevicesListParameters instead.
|
|
1734
|
+
*/
|
|
1735
|
+
type DevicesListParams = DevicesListParameters;
|
|
1736
|
+
/**
|
|
1737
|
+
* @deprecated Use DevicesListRequest instead.
|
|
1738
|
+
*/
|
|
767
1739
|
type DevicesListResponse = SetNonNullable<Required<RouteResponse<'/devices/list'>>>;
|
|
768
|
-
type
|
|
769
|
-
type
|
|
1740
|
+
type DevicesListRequest = SeamHttpRequest<DevicesListResponse, 'devices'>;
|
|
1741
|
+
type DevicesListOptions = Record<string, never>;
|
|
1742
|
+
type DevicesListDeviceProvidersParameters = RouteRequestBody<'/devices/list_device_providers'>;
|
|
1743
|
+
/**
|
|
1744
|
+
* @deprecated Use DevicesListDeviceProvidersParameters instead.
|
|
1745
|
+
*/
|
|
1746
|
+
type DevicesListDeviceProvidersParams = DevicesListDeviceProvidersParameters;
|
|
1747
|
+
/**
|
|
1748
|
+
* @deprecated Use DevicesListDeviceProvidersRequest instead.
|
|
1749
|
+
*/
|
|
770
1750
|
type DevicesListDeviceProvidersResponse = SetNonNullable<Required<RouteResponse<'/devices/list_device_providers'>>>;
|
|
771
|
-
type
|
|
772
|
-
type
|
|
1751
|
+
type DevicesListDeviceProvidersRequest = SeamHttpRequest<DevicesListDeviceProvidersResponse, 'device_providers'>;
|
|
1752
|
+
type DevicesListDeviceProvidersOptions = Record<string, never>;
|
|
1753
|
+
type DevicesUpdateParameters = RouteRequestBody<'/devices/update'>;
|
|
1754
|
+
/**
|
|
1755
|
+
* @deprecated Use DevicesUpdateParameters instead.
|
|
1756
|
+
*/
|
|
1757
|
+
type DevicesUpdateBody = DevicesUpdateParameters;
|
|
1758
|
+
/**
|
|
1759
|
+
* @deprecated Use DevicesUpdateRequest instead.
|
|
1760
|
+
*/
|
|
773
1761
|
type DevicesUpdateResponse = SetNonNullable<Required<RouteResponse<'/devices/update'>>>;
|
|
774
|
-
type
|
|
1762
|
+
type DevicesUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
1763
|
+
type DevicesUpdateOptions = Record<string, never>;
|
|
775
1764
|
|
|
776
1765
|
declare class SeamHttpEvents {
|
|
777
1766
|
client: Client;
|
|
@@ -787,15 +1776,71 @@ declare class SeamHttpEvents {
|
|
|
787
1776
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpEvents;
|
|
788
1777
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
789
1778
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
790
|
-
get(
|
|
791
|
-
list(
|
|
1779
|
+
get(parameters?: EventsGetParameters, options?: EventsGetOptions): EventsGetRequest;
|
|
1780
|
+
list(parameters?: EventsListParameters, options?: EventsListOptions): EventsListRequest;
|
|
792
1781
|
}
|
|
793
|
-
type
|
|
1782
|
+
type EventsGetParameters = RouteRequestBody<'/events/get'>;
|
|
1783
|
+
/**
|
|
1784
|
+
* @deprecated Use EventsGetParameters instead.
|
|
1785
|
+
*/
|
|
1786
|
+
type EventsGetParams = EventsGetParameters;
|
|
1787
|
+
/**
|
|
1788
|
+
* @deprecated Use EventsGetRequest instead.
|
|
1789
|
+
*/
|
|
794
1790
|
type EventsGetResponse = SetNonNullable<Required<RouteResponse<'/events/get'>>>;
|
|
795
|
-
type
|
|
796
|
-
type
|
|
1791
|
+
type EventsGetRequest = SeamHttpRequest<EventsGetResponse, 'event'>;
|
|
1792
|
+
type EventsGetOptions = Record<string, never>;
|
|
1793
|
+
type EventsListParameters = RouteRequestBody<'/events/list'>;
|
|
1794
|
+
/**
|
|
1795
|
+
* @deprecated Use EventsListParameters instead.
|
|
1796
|
+
*/
|
|
1797
|
+
type EventsListParams = EventsListParameters;
|
|
1798
|
+
/**
|
|
1799
|
+
* @deprecated Use EventsListRequest instead.
|
|
1800
|
+
*/
|
|
797
1801
|
type EventsListResponse = SetNonNullable<Required<RouteResponse<'/events/list'>>>;
|
|
798
|
-
type
|
|
1802
|
+
type EventsListRequest = SeamHttpRequest<EventsListResponse, 'events'>;
|
|
1803
|
+
type EventsListOptions = Record<string, never>;
|
|
1804
|
+
|
|
1805
|
+
declare class SeamHttpLocksSimulate {
|
|
1806
|
+
client: Client;
|
|
1807
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1808
|
+
readonly ltsVersion = "1.0.0";
|
|
1809
|
+
static ltsVersion: string;
|
|
1810
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1811
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpLocksSimulate;
|
|
1812
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpLocksSimulate;
|
|
1813
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpLocksSimulate;
|
|
1814
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpLocksSimulate>;
|
|
1815
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpLocksSimulate;
|
|
1816
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpLocksSimulate;
|
|
1817
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1818
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1819
|
+
keypadCodeEntry(parameters?: LocksSimulateKeypadCodeEntryParameters, options?: LocksSimulateKeypadCodeEntryOptions): LocksSimulateKeypadCodeEntryRequest;
|
|
1820
|
+
manualLockViaKeypad(parameters?: LocksSimulateManualLockViaKeypadParameters, options?: LocksSimulateManualLockViaKeypadOptions): LocksSimulateManualLockViaKeypadRequest;
|
|
1821
|
+
}
|
|
1822
|
+
type LocksSimulateKeypadCodeEntryParameters = RouteRequestBody<'/locks/simulate/keypad_code_entry'>;
|
|
1823
|
+
/**
|
|
1824
|
+
* @deprecated Use LocksSimulateKeypadCodeEntryParameters instead.
|
|
1825
|
+
*/
|
|
1826
|
+
type LocksSimulateKeypadCodeEntryBody = LocksSimulateKeypadCodeEntryParameters;
|
|
1827
|
+
/**
|
|
1828
|
+
* @deprecated Use LocksSimulateKeypadCodeEntryRequest instead.
|
|
1829
|
+
*/
|
|
1830
|
+
type LocksSimulateKeypadCodeEntryResponse = SetNonNullable<Required<RouteResponse<'/locks/simulate/keypad_code_entry'>>>;
|
|
1831
|
+
type LocksSimulateKeypadCodeEntryRequest = SeamHttpRequest<LocksSimulateKeypadCodeEntryResponse, 'action_attempt'>;
|
|
1832
|
+
type LocksSimulateKeypadCodeEntryOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1833
|
+
type LocksSimulateManualLockViaKeypadParameters = RouteRequestBody<'/locks/simulate/manual_lock_via_keypad'>;
|
|
1834
|
+
/**
|
|
1835
|
+
* @deprecated Use LocksSimulateManualLockViaKeypadParameters instead.
|
|
1836
|
+
*/
|
|
1837
|
+
type LocksSimulateManualLockViaKeypadBody = LocksSimulateManualLockViaKeypadParameters;
|
|
1838
|
+
/**
|
|
1839
|
+
* @deprecated Use LocksSimulateManualLockViaKeypadRequest instead.
|
|
1840
|
+
*/
|
|
1841
|
+
type LocksSimulateManualLockViaKeypadResponse = SetNonNullable<Required<RouteResponse<'/locks/simulate/manual_lock_via_keypad'>>>;
|
|
1842
|
+
type LocksSimulateManualLockViaKeypadRequest = SeamHttpRequest<LocksSimulateManualLockViaKeypadResponse, 'action_attempt'>;
|
|
1843
|
+
type LocksSimulateManualLockViaKeypadOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
799
1844
|
|
|
800
1845
|
declare class SeamHttpLocks {
|
|
801
1846
|
client: Client;
|
|
@@ -811,24 +1856,97 @@ declare class SeamHttpLocks {
|
|
|
811
1856
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpLocks;
|
|
812
1857
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
813
1858
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
814
|
-
get(
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
1859
|
+
get simulate(): SeamHttpLocksSimulate;
|
|
1860
|
+
get(parameters?: LocksGetParameters, options?: LocksGetOptions): LocksGetRequest;
|
|
1861
|
+
list(parameters?: LocksListParameters, options?: LocksListOptions): LocksListRequest;
|
|
1862
|
+
lockDoor(parameters?: LocksLockDoorParameters, options?: LocksLockDoorOptions): LocksLockDoorRequest;
|
|
1863
|
+
unlockDoor(parameters?: LocksUnlockDoorParameters, options?: LocksUnlockDoorOptions): LocksUnlockDoorRequest;
|
|
818
1864
|
}
|
|
819
|
-
type
|
|
1865
|
+
type LocksGetParameters = RouteRequestBody<'/locks/get'>;
|
|
1866
|
+
/**
|
|
1867
|
+
* @deprecated Use LocksGetParameters instead.
|
|
1868
|
+
*/
|
|
1869
|
+
type LocksGetParams = LocksGetParameters;
|
|
1870
|
+
/**
|
|
1871
|
+
* @deprecated Use LocksGetRequest instead.
|
|
1872
|
+
*/
|
|
820
1873
|
type LocksGetResponse = SetNonNullable<Required<RouteResponse<'/locks/get'>>>;
|
|
821
|
-
type
|
|
822
|
-
type
|
|
1874
|
+
type LocksGetRequest = SeamHttpRequest<LocksGetResponse, 'device'>;
|
|
1875
|
+
type LocksGetOptions = Record<string, never>;
|
|
1876
|
+
type LocksListParameters = RouteRequestBody<'/locks/list'>;
|
|
1877
|
+
/**
|
|
1878
|
+
* @deprecated Use LocksListParameters instead.
|
|
1879
|
+
*/
|
|
1880
|
+
type LocksListParams = LocksListParameters;
|
|
1881
|
+
/**
|
|
1882
|
+
* @deprecated Use LocksListRequest instead.
|
|
1883
|
+
*/
|
|
823
1884
|
type LocksListResponse = SetNonNullable<Required<RouteResponse<'/locks/list'>>>;
|
|
824
|
-
type
|
|
825
|
-
type
|
|
1885
|
+
type LocksListRequest = SeamHttpRequest<LocksListResponse, 'devices'>;
|
|
1886
|
+
type LocksListOptions = Record<string, never>;
|
|
1887
|
+
type LocksLockDoorParameters = RouteRequestBody<'/locks/lock_door'>;
|
|
1888
|
+
/**
|
|
1889
|
+
* @deprecated Use LocksLockDoorParameters instead.
|
|
1890
|
+
*/
|
|
1891
|
+
type LocksLockDoorBody = LocksLockDoorParameters;
|
|
1892
|
+
/**
|
|
1893
|
+
* @deprecated Use LocksLockDoorRequest instead.
|
|
1894
|
+
*/
|
|
826
1895
|
type LocksLockDoorResponse = SetNonNullable<Required<RouteResponse<'/locks/lock_door'>>>;
|
|
1896
|
+
type LocksLockDoorRequest = SeamHttpRequest<LocksLockDoorResponse, 'action_attempt'>;
|
|
827
1897
|
type LocksLockDoorOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
828
|
-
type
|
|
1898
|
+
type LocksUnlockDoorParameters = RouteRequestBody<'/locks/unlock_door'>;
|
|
1899
|
+
/**
|
|
1900
|
+
* @deprecated Use LocksUnlockDoorParameters instead.
|
|
1901
|
+
*/
|
|
1902
|
+
type LocksUnlockDoorBody = LocksUnlockDoorParameters;
|
|
1903
|
+
/**
|
|
1904
|
+
* @deprecated Use LocksUnlockDoorRequest instead.
|
|
1905
|
+
*/
|
|
829
1906
|
type LocksUnlockDoorResponse = SetNonNullable<Required<RouteResponse<'/locks/unlock_door'>>>;
|
|
1907
|
+
type LocksUnlockDoorRequest = SeamHttpRequest<LocksUnlockDoorResponse, 'action_attempt'>;
|
|
830
1908
|
type LocksUnlockDoorOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
831
1909
|
|
|
1910
|
+
declare class SeamHttpNetworks {
|
|
1911
|
+
client: Client;
|
|
1912
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1913
|
+
readonly ltsVersion = "1.0.0";
|
|
1914
|
+
static ltsVersion: string;
|
|
1915
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1916
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpNetworks;
|
|
1917
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpNetworks;
|
|
1918
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpNetworks;
|
|
1919
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpNetworks>;
|
|
1920
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpNetworks;
|
|
1921
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpNetworks;
|
|
1922
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1923
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1924
|
+
get(parameters?: NetworksGetParameters, options?: NetworksGetOptions): NetworksGetRequest;
|
|
1925
|
+
list(parameters?: NetworksListParameters, options?: NetworksListOptions): NetworksListRequest;
|
|
1926
|
+
}
|
|
1927
|
+
type NetworksGetParameters = RouteRequestBody<'/networks/get'>;
|
|
1928
|
+
/**
|
|
1929
|
+
* @deprecated Use NetworksGetParameters instead.
|
|
1930
|
+
*/
|
|
1931
|
+
type NetworksGetParams = NetworksGetParameters;
|
|
1932
|
+
/**
|
|
1933
|
+
* @deprecated Use NetworksGetRequest instead.
|
|
1934
|
+
*/
|
|
1935
|
+
type NetworksGetResponse = SetNonNullable<Required<RouteResponse<'/networks/get'>>>;
|
|
1936
|
+
type NetworksGetRequest = SeamHttpRequest<NetworksGetResponse, 'network'>;
|
|
1937
|
+
type NetworksGetOptions = Record<string, never>;
|
|
1938
|
+
type NetworksListParameters = RouteRequestBody<'/networks/list'>;
|
|
1939
|
+
/**
|
|
1940
|
+
* @deprecated Use NetworksListParameters instead.
|
|
1941
|
+
*/
|
|
1942
|
+
type NetworksListParams = NetworksListParameters;
|
|
1943
|
+
/**
|
|
1944
|
+
* @deprecated Use NetworksListRequest instead.
|
|
1945
|
+
*/
|
|
1946
|
+
type NetworksListResponse = SetNonNullable<Required<RouteResponse<'/networks/list'>>>;
|
|
1947
|
+
type NetworksListRequest = SeamHttpRequest<NetworksListResponse, 'networks'>;
|
|
1948
|
+
type NetworksListOptions = Record<string, never>;
|
|
1949
|
+
|
|
832
1950
|
declare class SeamHttpNoiseSensorsNoiseThresholds {
|
|
833
1951
|
client: Client;
|
|
834
1952
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -843,27 +1961,67 @@ declare class SeamHttpNoiseSensorsNoiseThresholds {
|
|
|
843
1961
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpNoiseSensorsNoiseThresholds;
|
|
844
1962
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
845
1963
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
846
|
-
create(
|
|
847
|
-
delete(
|
|
848
|
-
get(
|
|
849
|
-
list(
|
|
850
|
-
update(
|
|
1964
|
+
create(parameters?: NoiseSensorsNoiseThresholdsCreateParameters, options?: NoiseSensorsNoiseThresholdsCreateOptions): NoiseSensorsNoiseThresholdsCreateRequest;
|
|
1965
|
+
delete(parameters?: NoiseSensorsNoiseThresholdsDeleteParameters, options?: NoiseSensorsNoiseThresholdsDeleteOptions): NoiseSensorsNoiseThresholdsDeleteRequest;
|
|
1966
|
+
get(parameters?: NoiseSensorsNoiseThresholdsGetParameters, options?: NoiseSensorsNoiseThresholdsGetOptions): NoiseSensorsNoiseThresholdsGetRequest;
|
|
1967
|
+
list(parameters?: NoiseSensorsNoiseThresholdsListParameters, options?: NoiseSensorsNoiseThresholdsListOptions): NoiseSensorsNoiseThresholdsListRequest;
|
|
1968
|
+
update(parameters?: NoiseSensorsNoiseThresholdsUpdateParameters, options?: NoiseSensorsNoiseThresholdsUpdateOptions): NoiseSensorsNoiseThresholdsUpdateRequest;
|
|
851
1969
|
}
|
|
852
|
-
type
|
|
1970
|
+
type NoiseSensorsNoiseThresholdsCreateParameters = RouteRequestBody<'/noise_sensors/noise_thresholds/create'>;
|
|
1971
|
+
/**
|
|
1972
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsCreateParameters instead.
|
|
1973
|
+
*/
|
|
1974
|
+
type NoiseSensorsNoiseThresholdsCreateBody = NoiseSensorsNoiseThresholdsCreateParameters;
|
|
1975
|
+
/**
|
|
1976
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsCreateRequest instead.
|
|
1977
|
+
*/
|
|
853
1978
|
type NoiseSensorsNoiseThresholdsCreateResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/noise_thresholds/create'>>>;
|
|
854
|
-
type
|
|
855
|
-
type
|
|
1979
|
+
type NoiseSensorsNoiseThresholdsCreateRequest = SeamHttpRequest<NoiseSensorsNoiseThresholdsCreateResponse, 'noise_threshold'>;
|
|
1980
|
+
type NoiseSensorsNoiseThresholdsCreateOptions = Record<string, never>;
|
|
1981
|
+
type NoiseSensorsNoiseThresholdsDeleteParameters = RouteRequestBody<'/noise_sensors/noise_thresholds/delete'>;
|
|
1982
|
+
/**
|
|
1983
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsDeleteParameters instead.
|
|
1984
|
+
*/
|
|
1985
|
+
type NoiseSensorsNoiseThresholdsDeleteParams = NoiseSensorsNoiseThresholdsDeleteParameters;
|
|
1986
|
+
/**
|
|
1987
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsDeleteRequest instead.
|
|
1988
|
+
*/
|
|
856
1989
|
type NoiseSensorsNoiseThresholdsDeleteResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/noise_thresholds/delete'>>>;
|
|
857
|
-
type
|
|
858
|
-
type
|
|
1990
|
+
type NoiseSensorsNoiseThresholdsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
1991
|
+
type NoiseSensorsNoiseThresholdsDeleteOptions = Record<string, never>;
|
|
1992
|
+
type NoiseSensorsNoiseThresholdsGetParameters = RouteRequestBody<'/noise_sensors/noise_thresholds/get'>;
|
|
1993
|
+
/**
|
|
1994
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsGetParameters instead.
|
|
1995
|
+
*/
|
|
1996
|
+
type NoiseSensorsNoiseThresholdsGetParams = NoiseSensorsNoiseThresholdsGetParameters;
|
|
1997
|
+
/**
|
|
1998
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsGetRequest instead.
|
|
1999
|
+
*/
|
|
859
2000
|
type NoiseSensorsNoiseThresholdsGetResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/noise_thresholds/get'>>>;
|
|
860
|
-
type
|
|
861
|
-
type
|
|
2001
|
+
type NoiseSensorsNoiseThresholdsGetRequest = SeamHttpRequest<NoiseSensorsNoiseThresholdsGetResponse, 'noise_threshold'>;
|
|
2002
|
+
type NoiseSensorsNoiseThresholdsGetOptions = Record<string, never>;
|
|
2003
|
+
type NoiseSensorsNoiseThresholdsListParameters = RouteRequestBody<'/noise_sensors/noise_thresholds/list'>;
|
|
2004
|
+
/**
|
|
2005
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsListParameters instead.
|
|
2006
|
+
*/
|
|
2007
|
+
type NoiseSensorsNoiseThresholdsListParams = NoiseSensorsNoiseThresholdsListParameters;
|
|
2008
|
+
/**
|
|
2009
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsListRequest instead.
|
|
2010
|
+
*/
|
|
862
2011
|
type NoiseSensorsNoiseThresholdsListResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/noise_thresholds/list'>>>;
|
|
863
|
-
type
|
|
864
|
-
type
|
|
2012
|
+
type NoiseSensorsNoiseThresholdsListRequest = SeamHttpRequest<NoiseSensorsNoiseThresholdsListResponse, 'noise_thresholds'>;
|
|
2013
|
+
type NoiseSensorsNoiseThresholdsListOptions = Record<string, never>;
|
|
2014
|
+
type NoiseSensorsNoiseThresholdsUpdateParameters = RouteRequestBody<'/noise_sensors/noise_thresholds/update'>;
|
|
2015
|
+
/**
|
|
2016
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsUpdateParameters instead.
|
|
2017
|
+
*/
|
|
2018
|
+
type NoiseSensorsNoiseThresholdsUpdateBody = NoiseSensorsNoiseThresholdsUpdateParameters;
|
|
2019
|
+
/**
|
|
2020
|
+
* @deprecated Use NoiseSensorsNoiseThresholdsUpdateRequest instead.
|
|
2021
|
+
*/
|
|
865
2022
|
type NoiseSensorsNoiseThresholdsUpdateResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/noise_thresholds/update'>>>;
|
|
866
|
-
type
|
|
2023
|
+
type NoiseSensorsNoiseThresholdsUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
2024
|
+
type NoiseSensorsNoiseThresholdsUpdateOptions = Record<string, never>;
|
|
867
2025
|
|
|
868
2026
|
declare class SeamHttpNoiseSensorsSimulate {
|
|
869
2027
|
client: Client;
|
|
@@ -879,11 +2037,19 @@ declare class SeamHttpNoiseSensorsSimulate {
|
|
|
879
2037
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpNoiseSensorsSimulate;
|
|
880
2038
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
881
2039
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
882
|
-
triggerNoiseThreshold(
|
|
2040
|
+
triggerNoiseThreshold(parameters?: NoiseSensorsSimulateTriggerNoiseThresholdParameters, options?: NoiseSensorsSimulateTriggerNoiseThresholdOptions): NoiseSensorsSimulateTriggerNoiseThresholdRequest;
|
|
883
2041
|
}
|
|
884
|
-
type
|
|
2042
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdParameters = RouteRequestBody<'/noise_sensors/simulate/trigger_noise_threshold'>;
|
|
2043
|
+
/**
|
|
2044
|
+
* @deprecated Use NoiseSensorsSimulateTriggerNoiseThresholdParameters instead.
|
|
2045
|
+
*/
|
|
2046
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdBody = NoiseSensorsSimulateTriggerNoiseThresholdParameters;
|
|
2047
|
+
/**
|
|
2048
|
+
* @deprecated Use NoiseSensorsSimulateTriggerNoiseThresholdRequest instead.
|
|
2049
|
+
*/
|
|
885
2050
|
type NoiseSensorsSimulateTriggerNoiseThresholdResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/simulate/trigger_noise_threshold'>>>;
|
|
886
|
-
type
|
|
2051
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdRequest = SeamHttpRequest<void, undefined>;
|
|
2052
|
+
type NoiseSensorsSimulateTriggerNoiseThresholdOptions = Record<string, never>;
|
|
887
2053
|
|
|
888
2054
|
declare class SeamHttpNoiseSensors {
|
|
889
2055
|
client: Client;
|
|
@@ -901,11 +2067,19 @@ declare class SeamHttpNoiseSensors {
|
|
|
901
2067
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
902
2068
|
get noiseThresholds(): SeamHttpNoiseSensorsNoiseThresholds;
|
|
903
2069
|
get simulate(): SeamHttpNoiseSensorsSimulate;
|
|
904
|
-
list(
|
|
2070
|
+
list(parameters?: NoiseSensorsListParameters, options?: NoiseSensorsListOptions): NoiseSensorsListRequest;
|
|
905
2071
|
}
|
|
906
|
-
type
|
|
2072
|
+
type NoiseSensorsListParameters = RouteRequestBody<'/noise_sensors/list'>;
|
|
2073
|
+
/**
|
|
2074
|
+
* @deprecated Use NoiseSensorsListParameters instead.
|
|
2075
|
+
*/
|
|
2076
|
+
type NoiseSensorsListParams = NoiseSensorsListParameters;
|
|
2077
|
+
/**
|
|
2078
|
+
* @deprecated Use NoiseSensorsListRequest instead.
|
|
2079
|
+
*/
|
|
907
2080
|
type NoiseSensorsListResponse = SetNonNullable<Required<RouteResponse<'/noise_sensors/list'>>>;
|
|
908
|
-
type
|
|
2081
|
+
type NoiseSensorsListRequest = SeamHttpRequest<NoiseSensorsListResponse, 'devices'>;
|
|
2082
|
+
type NoiseSensorsListOptions = Record<string, never>;
|
|
909
2083
|
|
|
910
2084
|
declare class SeamHttpPhonesSimulate {
|
|
911
2085
|
client: Client;
|
|
@@ -921,11 +2095,19 @@ declare class SeamHttpPhonesSimulate {
|
|
|
921
2095
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpPhonesSimulate;
|
|
922
2096
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
923
2097
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
924
|
-
createSandboxPhone(
|
|
2098
|
+
createSandboxPhone(parameters?: PhonesSimulateCreateSandboxPhoneParameters, options?: PhonesSimulateCreateSandboxPhoneOptions): PhonesSimulateCreateSandboxPhoneRequest;
|
|
925
2099
|
}
|
|
926
|
-
type
|
|
2100
|
+
type PhonesSimulateCreateSandboxPhoneParameters = RouteRequestBody<'/phones/simulate/create_sandbox_phone'>;
|
|
2101
|
+
/**
|
|
2102
|
+
* @deprecated Use PhonesSimulateCreateSandboxPhoneParameters instead.
|
|
2103
|
+
*/
|
|
2104
|
+
type PhonesSimulateCreateSandboxPhoneParams = PhonesSimulateCreateSandboxPhoneParameters;
|
|
2105
|
+
/**
|
|
2106
|
+
* @deprecated Use PhonesSimulateCreateSandboxPhoneRequest instead.
|
|
2107
|
+
*/
|
|
927
2108
|
type PhonesSimulateCreateSandboxPhoneResponse = SetNonNullable<Required<RouteResponse<'/phones/simulate/create_sandbox_phone'>>>;
|
|
928
|
-
type
|
|
2109
|
+
type PhonesSimulateCreateSandboxPhoneRequest = SeamHttpRequest<PhonesSimulateCreateSandboxPhoneResponse, 'phone'>;
|
|
2110
|
+
type PhonesSimulateCreateSandboxPhoneOptions = Record<string, never>;
|
|
929
2111
|
|
|
930
2112
|
declare class SeamHttpPhones {
|
|
931
2113
|
client: Client;
|
|
@@ -942,19 +2124,392 @@ declare class SeamHttpPhones {
|
|
|
942
2124
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
943
2125
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
944
2126
|
get simulate(): SeamHttpPhonesSimulate;
|
|
945
|
-
deactivate(
|
|
946
|
-
get(
|
|
947
|
-
list(
|
|
2127
|
+
deactivate(parameters?: PhonesDeactivateParameters, options?: PhonesDeactivateOptions): PhonesDeactivateRequest;
|
|
2128
|
+
get(parameters?: PhonesGetParameters, options?: PhonesGetOptions): PhonesGetRequest;
|
|
2129
|
+
list(parameters?: PhonesListParameters, options?: PhonesListOptions): PhonesListRequest;
|
|
948
2130
|
}
|
|
949
|
-
type
|
|
2131
|
+
type PhonesDeactivateParameters = RouteRequestBody<'/phones/deactivate'>;
|
|
2132
|
+
/**
|
|
2133
|
+
* @deprecated Use PhonesDeactivateParameters instead.
|
|
2134
|
+
*/
|
|
2135
|
+
type PhonesDeactivateParams = PhonesDeactivateParameters;
|
|
2136
|
+
/**
|
|
2137
|
+
* @deprecated Use PhonesDeactivateRequest instead.
|
|
2138
|
+
*/
|
|
950
2139
|
type PhonesDeactivateResponse = SetNonNullable<Required<RouteResponse<'/phones/deactivate'>>>;
|
|
951
|
-
type
|
|
952
|
-
type
|
|
2140
|
+
type PhonesDeactivateRequest = SeamHttpRequest<void, undefined>;
|
|
2141
|
+
type PhonesDeactivateOptions = Record<string, never>;
|
|
2142
|
+
type PhonesGetParameters = RouteRequestBody<'/phones/get'>;
|
|
2143
|
+
/**
|
|
2144
|
+
* @deprecated Use PhonesGetParameters instead.
|
|
2145
|
+
*/
|
|
2146
|
+
type PhonesGetParams = PhonesGetParameters;
|
|
2147
|
+
/**
|
|
2148
|
+
* @deprecated Use PhonesGetRequest instead.
|
|
2149
|
+
*/
|
|
953
2150
|
type PhonesGetResponse = SetNonNullable<Required<RouteResponse<'/phones/get'>>>;
|
|
954
|
-
type
|
|
955
|
-
type
|
|
2151
|
+
type PhonesGetRequest = SeamHttpRequest<PhonesGetResponse, 'phone'>;
|
|
2152
|
+
type PhonesGetOptions = Record<string, never>;
|
|
2153
|
+
type PhonesListParameters = RouteRequestBody<'/phones/list'>;
|
|
2154
|
+
/**
|
|
2155
|
+
* @deprecated Use PhonesListParameters instead.
|
|
2156
|
+
*/
|
|
2157
|
+
type PhonesListParams = PhonesListParameters;
|
|
2158
|
+
/**
|
|
2159
|
+
* @deprecated Use PhonesListRequest instead.
|
|
2160
|
+
*/
|
|
956
2161
|
type PhonesListResponse = SetNonNullable<Required<RouteResponse<'/phones/list'>>>;
|
|
957
|
-
type
|
|
2162
|
+
type PhonesListRequest = SeamHttpRequest<PhonesListResponse, 'phones'>;
|
|
2163
|
+
type PhonesListOptions = Record<string, never>;
|
|
2164
|
+
|
|
2165
|
+
declare class SeamHttpSeamBridgeV1BridgeClientSessions {
|
|
2166
|
+
client: Client;
|
|
2167
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2168
|
+
readonly ltsVersion = "1.0.0";
|
|
2169
|
+
static ltsVersion: string;
|
|
2170
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2171
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamBridgeV1BridgeClientSessions;
|
|
2172
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamBridgeV1BridgeClientSessions;
|
|
2173
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamBridgeV1BridgeClientSessions;
|
|
2174
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamBridgeV1BridgeClientSessions>;
|
|
2175
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamBridgeV1BridgeClientSessions;
|
|
2176
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamBridgeV1BridgeClientSessions;
|
|
2177
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2178
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2179
|
+
create(parameters?: SeamBridgeV1BridgeClientSessionsCreateParameters, options?: SeamBridgeV1BridgeClientSessionsCreateOptions): SeamBridgeV1BridgeClientSessionsCreateRequest;
|
|
2180
|
+
get(parameters?: SeamBridgeV1BridgeClientSessionsGetParameters, options?: SeamBridgeV1BridgeClientSessionsGetOptions): SeamBridgeV1BridgeClientSessionsGetRequest;
|
|
2181
|
+
refreshTelemetryToken(parameters?: SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters, options?: SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenOptions): SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest;
|
|
2182
|
+
regeneratePairingCode(parameters?: SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters, options?: SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeOptions): SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest;
|
|
2183
|
+
reportStatus(parameters?: SeamBridgeV1BridgeClientSessionsReportStatusParameters, options?: SeamBridgeV1BridgeClientSessionsReportStatusOptions): SeamBridgeV1BridgeClientSessionsReportStatusRequest;
|
|
2184
|
+
}
|
|
2185
|
+
type SeamBridgeV1BridgeClientSessionsCreateParameters = RouteRequestBody<'/seam/bridge/v1/bridge_client_sessions/create'>;
|
|
2186
|
+
/**
|
|
2187
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsCreateParameters instead.
|
|
2188
|
+
*/
|
|
2189
|
+
type SeamBridgeV1BridgeClientSessionsCreateBody = SeamBridgeV1BridgeClientSessionsCreateParameters;
|
|
2190
|
+
/**
|
|
2191
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsCreateRequest instead.
|
|
2192
|
+
*/
|
|
2193
|
+
type SeamBridgeV1BridgeClientSessionsCreateResponse = SetNonNullable<Required<RouteResponse<'/seam/bridge/v1/bridge_client_sessions/create'>>>;
|
|
2194
|
+
type SeamBridgeV1BridgeClientSessionsCreateRequest = SeamHttpRequest<SeamBridgeV1BridgeClientSessionsCreateResponse, 'bridge_client_session'>;
|
|
2195
|
+
type SeamBridgeV1BridgeClientSessionsCreateOptions = Record<string, never>;
|
|
2196
|
+
type SeamBridgeV1BridgeClientSessionsGetParameters = RouteRequestParams<'/seam/bridge/v1/bridge_client_sessions/get'>;
|
|
2197
|
+
/**
|
|
2198
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsGetParameters instead.
|
|
2199
|
+
*/
|
|
2200
|
+
type SeamBridgeV1BridgeClientSessionsGetParams = SeamBridgeV1BridgeClientSessionsGetParameters;
|
|
2201
|
+
/**
|
|
2202
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsGetRequest instead.
|
|
2203
|
+
*/
|
|
2204
|
+
type SeamBridgeV1BridgeClientSessionsGetResponse = SetNonNullable<Required<RouteResponse<'/seam/bridge/v1/bridge_client_sessions/get'>>>;
|
|
2205
|
+
type SeamBridgeV1BridgeClientSessionsGetRequest = SeamHttpRequest<SeamBridgeV1BridgeClientSessionsGetResponse, 'bridge_client_session'>;
|
|
2206
|
+
type SeamBridgeV1BridgeClientSessionsGetOptions = Record<string, never>;
|
|
2207
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters = RouteRequestBody<'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'>;
|
|
2208
|
+
/**
|
|
2209
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters instead.
|
|
2210
|
+
*/
|
|
2211
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenBody = SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters;
|
|
2212
|
+
/**
|
|
2213
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest instead.
|
|
2214
|
+
*/
|
|
2215
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenResponse = SetNonNullable<Required<RouteResponse<'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'>>>;
|
|
2216
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest = SeamHttpRequest<SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenResponse, 'bridge_client_session'>;
|
|
2217
|
+
type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenOptions = Record<string, never>;
|
|
2218
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters = RouteRequestBody<'/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code'>;
|
|
2219
|
+
/**
|
|
2220
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters instead.
|
|
2221
|
+
*/
|
|
2222
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeBody = SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters;
|
|
2223
|
+
/**
|
|
2224
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest instead.
|
|
2225
|
+
*/
|
|
2226
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeResponse = SetNonNullable<Required<RouteResponse<'/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code'>>>;
|
|
2227
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest = SeamHttpRequest<SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeResponse, 'bridge_client_session'>;
|
|
2228
|
+
type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeOptions = Record<string, never>;
|
|
2229
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusParameters = RouteRequestBody<'/seam/bridge/v1/bridge_client_sessions/report_status'>;
|
|
2230
|
+
/**
|
|
2231
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsReportStatusParameters instead.
|
|
2232
|
+
*/
|
|
2233
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusBody = SeamBridgeV1BridgeClientSessionsReportStatusParameters;
|
|
2234
|
+
/**
|
|
2235
|
+
* @deprecated Use SeamBridgeV1BridgeClientSessionsReportStatusRequest instead.
|
|
2236
|
+
*/
|
|
2237
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusResponse = SetNonNullable<Required<RouteResponse<'/seam/bridge/v1/bridge_client_sessions/report_status'>>>;
|
|
2238
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusRequest = SeamHttpRequest<void, undefined>;
|
|
2239
|
+
type SeamBridgeV1BridgeClientSessionsReportStatusOptions = Record<string, never>;
|
|
2240
|
+
|
|
2241
|
+
declare class SeamHttpSeamBridgeV1BridgeConnectedSystems {
|
|
2242
|
+
client: Client;
|
|
2243
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2244
|
+
readonly ltsVersion = "1.0.0";
|
|
2245
|
+
static ltsVersion: string;
|
|
2246
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2247
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamBridgeV1BridgeConnectedSystems;
|
|
2248
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamBridgeV1BridgeConnectedSystems;
|
|
2249
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamBridgeV1BridgeConnectedSystems;
|
|
2250
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamBridgeV1BridgeConnectedSystems>;
|
|
2251
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamBridgeV1BridgeConnectedSystems;
|
|
2252
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamBridgeV1BridgeConnectedSystems;
|
|
2253
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2254
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2255
|
+
list(parameters?: SeamBridgeV1BridgeConnectedSystemsListParameters, options?: SeamBridgeV1BridgeConnectedSystemsListOptions): SeamBridgeV1BridgeConnectedSystemsListRequest;
|
|
2256
|
+
}
|
|
2257
|
+
type SeamBridgeV1BridgeConnectedSystemsListParameters = RouteRequestParams<'/seam/bridge/v1/bridge_connected_systems/list'>;
|
|
2258
|
+
/**
|
|
2259
|
+
* @deprecated Use SeamBridgeV1BridgeConnectedSystemsListParameters instead.
|
|
2260
|
+
*/
|
|
2261
|
+
type SeamBridgeV1BridgeConnectedSystemsListParams = SeamBridgeV1BridgeConnectedSystemsListParameters;
|
|
2262
|
+
/**
|
|
2263
|
+
* @deprecated Use SeamBridgeV1BridgeConnectedSystemsListRequest instead.
|
|
2264
|
+
*/
|
|
2265
|
+
type SeamBridgeV1BridgeConnectedSystemsListResponse = SetNonNullable<Required<RouteResponse<'/seam/bridge/v1/bridge_connected_systems/list'>>>;
|
|
2266
|
+
type SeamBridgeV1BridgeConnectedSystemsListRequest = SeamHttpRequest<SeamBridgeV1BridgeConnectedSystemsListResponse, 'bridge_connected_systems'>;
|
|
2267
|
+
type SeamBridgeV1BridgeConnectedSystemsListOptions = Record<string, never>;
|
|
2268
|
+
|
|
2269
|
+
declare class SeamHttpSeamBridgeV1 {
|
|
2270
|
+
client: Client;
|
|
2271
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2272
|
+
readonly ltsVersion = "1.0.0";
|
|
2273
|
+
static ltsVersion: string;
|
|
2274
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2275
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamBridgeV1;
|
|
2276
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamBridgeV1;
|
|
2277
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamBridgeV1;
|
|
2278
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamBridgeV1>;
|
|
2279
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamBridgeV1;
|
|
2280
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamBridgeV1;
|
|
2281
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2282
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2283
|
+
get bridgeClientSessions(): SeamHttpSeamBridgeV1BridgeClientSessions;
|
|
2284
|
+
get bridgeConnectedSystems(): SeamHttpSeamBridgeV1BridgeConnectedSystems;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
declare class SeamHttpSeamInstantKeyV1ClientSessions {
|
|
2288
|
+
client: Client;
|
|
2289
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2290
|
+
readonly ltsVersion = "1.0.0";
|
|
2291
|
+
static ltsVersion: string;
|
|
2292
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2293
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamInstantKeyV1ClientSessions;
|
|
2294
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamInstantKeyV1ClientSessions;
|
|
2295
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamInstantKeyV1ClientSessions;
|
|
2296
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamInstantKeyV1ClientSessions>;
|
|
2297
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamInstantKeyV1ClientSessions;
|
|
2298
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamInstantKeyV1ClientSessions;
|
|
2299
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2300
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2301
|
+
exchangeShortCode(parameters?: SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters, options?: SeamInstantKeyV1ClientSessionsExchangeShortCodeOptions): SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest;
|
|
2302
|
+
}
|
|
2303
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters = RouteRequestBody<'/seam/instant_key/v1/client_sessions/exchange_short_code'>;
|
|
2304
|
+
/**
|
|
2305
|
+
* @deprecated Use SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters instead.
|
|
2306
|
+
*/
|
|
2307
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeBody = SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters;
|
|
2308
|
+
/**
|
|
2309
|
+
* @deprecated Use SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest instead.
|
|
2310
|
+
*/
|
|
2311
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeResponse = SetNonNullable<Required<RouteResponse<'/seam/instant_key/v1/client_sessions/exchange_short_code'>>>;
|
|
2312
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest = SeamHttpRequest<SeamInstantKeyV1ClientSessionsExchangeShortCodeResponse, 'client_session'>;
|
|
2313
|
+
type SeamInstantKeyV1ClientSessionsExchangeShortCodeOptions = Record<string, never>;
|
|
2314
|
+
|
|
2315
|
+
declare class SeamHttpSeamInstantKeyV1 {
|
|
2316
|
+
client: Client;
|
|
2317
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2318
|
+
readonly ltsVersion = "1.0.0";
|
|
2319
|
+
static ltsVersion: string;
|
|
2320
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2321
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamInstantKeyV1;
|
|
2322
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamInstantKeyV1;
|
|
2323
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamInstantKeyV1;
|
|
2324
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamInstantKeyV1>;
|
|
2325
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamInstantKeyV1;
|
|
2326
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamInstantKeyV1;
|
|
2327
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2328
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2329
|
+
get clientSessions(): SeamHttpSeamInstantKeyV1ClientSessions;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
declare class SeamHttpSeamMobileSdkV1AcsCredentials {
|
|
2333
|
+
client: Client;
|
|
2334
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2335
|
+
readonly ltsVersion = "1.0.0";
|
|
2336
|
+
static ltsVersion: string;
|
|
2337
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2338
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamMobileSdkV1AcsCredentials;
|
|
2339
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamMobileSdkV1AcsCredentials;
|
|
2340
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamMobileSdkV1AcsCredentials;
|
|
2341
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamMobileSdkV1AcsCredentials>;
|
|
2342
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1AcsCredentials;
|
|
2343
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1AcsCredentials;
|
|
2344
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2345
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2346
|
+
list(parameters?: SeamMobileSdkV1AcsCredentialsListParameters, options?: SeamMobileSdkV1AcsCredentialsListOptions): SeamMobileSdkV1AcsCredentialsListRequest;
|
|
2347
|
+
}
|
|
2348
|
+
type SeamMobileSdkV1AcsCredentialsListParameters = RouteRequestBody<'/seam/mobile_sdk/v1/acs/credentials/list'>;
|
|
2349
|
+
/**
|
|
2350
|
+
* @deprecated Use SeamMobileSdkV1AcsCredentialsListParameters instead.
|
|
2351
|
+
*/
|
|
2352
|
+
type SeamMobileSdkV1AcsCredentialsListParams = SeamMobileSdkV1AcsCredentialsListParameters;
|
|
2353
|
+
/**
|
|
2354
|
+
* @deprecated Use SeamMobileSdkV1AcsCredentialsListRequest instead.
|
|
2355
|
+
*/
|
|
2356
|
+
type SeamMobileSdkV1AcsCredentialsListResponse = SetNonNullable<Required<RouteResponse<'/seam/mobile_sdk/v1/acs/credentials/list'>>>;
|
|
2357
|
+
type SeamMobileSdkV1AcsCredentialsListRequest = SeamHttpRequest<SeamMobileSdkV1AcsCredentialsListResponse, 'acs_credentials'>;
|
|
2358
|
+
type SeamMobileSdkV1AcsCredentialsListOptions = Record<string, never>;
|
|
2359
|
+
|
|
2360
|
+
declare class SeamHttpSeamMobileSdkV1Acs {
|
|
2361
|
+
client: Client;
|
|
2362
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2363
|
+
readonly ltsVersion = "1.0.0";
|
|
2364
|
+
static ltsVersion: string;
|
|
2365
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2366
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamMobileSdkV1Acs;
|
|
2367
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamMobileSdkV1Acs;
|
|
2368
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamMobileSdkV1Acs;
|
|
2369
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamMobileSdkV1Acs>;
|
|
2370
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1Acs;
|
|
2371
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1Acs;
|
|
2372
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2373
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2374
|
+
get credentials(): SeamHttpSeamMobileSdkV1AcsCredentials;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
declare class SeamHttpSeamMobileSdkV1PhoneSessions {
|
|
2378
|
+
client: Client;
|
|
2379
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2380
|
+
readonly ltsVersion = "1.0.0";
|
|
2381
|
+
static ltsVersion: string;
|
|
2382
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2383
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamMobileSdkV1PhoneSessions;
|
|
2384
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamMobileSdkV1PhoneSessions;
|
|
2385
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamMobileSdkV1PhoneSessions;
|
|
2386
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamMobileSdkV1PhoneSessions>;
|
|
2387
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1PhoneSessions;
|
|
2388
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1PhoneSessions;
|
|
2389
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2390
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2391
|
+
getOrCreate(parameters?: SeamMobileSdkV1PhoneSessionsGetOrCreateParameters, options?: SeamMobileSdkV1PhoneSessionsGetOrCreateOptions): SeamMobileSdkV1PhoneSessionsGetOrCreateRequest;
|
|
2392
|
+
}
|
|
2393
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateParameters = RouteRequestBody<'/seam/mobile_sdk/v1/phone_sessions/get_or_create'>;
|
|
2394
|
+
/**
|
|
2395
|
+
* @deprecated Use SeamMobileSdkV1PhoneSessionsGetOrCreateParameters instead.
|
|
2396
|
+
*/
|
|
2397
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateBody = SeamMobileSdkV1PhoneSessionsGetOrCreateParameters;
|
|
2398
|
+
/**
|
|
2399
|
+
* @deprecated Use SeamMobileSdkV1PhoneSessionsGetOrCreateRequest instead.
|
|
2400
|
+
*/
|
|
2401
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateResponse = SetNonNullable<Required<RouteResponse<'/seam/mobile_sdk/v1/phone_sessions/get_or_create'>>>;
|
|
2402
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateRequest = SeamHttpRequest<SeamMobileSdkV1PhoneSessionsGetOrCreateResponse, 'phone_session'>;
|
|
2403
|
+
type SeamMobileSdkV1PhoneSessionsGetOrCreateOptions = Record<string, never>;
|
|
2404
|
+
|
|
2405
|
+
declare class SeamHttpSeamMobileSdkV1 {
|
|
2406
|
+
client: Client;
|
|
2407
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2408
|
+
readonly ltsVersion = "1.0.0";
|
|
2409
|
+
static ltsVersion: string;
|
|
2410
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2411
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamMobileSdkV1;
|
|
2412
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamMobileSdkV1;
|
|
2413
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamMobileSdkV1;
|
|
2414
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamMobileSdkV1>;
|
|
2415
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1;
|
|
2416
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamMobileSdkV1;
|
|
2417
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2418
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2419
|
+
get acs(): SeamHttpSeamMobileSdkV1Acs;
|
|
2420
|
+
get phoneSessions(): SeamHttpSeamMobileSdkV1PhoneSessions;
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
declare class SeamHttpSeamPartnerV1BuildingBlocksSpaces {
|
|
2424
|
+
client: Client;
|
|
2425
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2426
|
+
readonly ltsVersion = "1.0.0";
|
|
2427
|
+
static ltsVersion: string;
|
|
2428
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2429
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamPartnerV1BuildingBlocksSpaces;
|
|
2430
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamPartnerV1BuildingBlocksSpaces;
|
|
2431
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamPartnerV1BuildingBlocksSpaces;
|
|
2432
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamPartnerV1BuildingBlocksSpaces>;
|
|
2433
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamPartnerV1BuildingBlocksSpaces;
|
|
2434
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamPartnerV1BuildingBlocksSpaces;
|
|
2435
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2436
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2437
|
+
autoMap(parameters?: SeamPartnerV1BuildingBlocksSpacesAutoMapParameters, options?: SeamPartnerV1BuildingBlocksSpacesAutoMapOptions): SeamPartnerV1BuildingBlocksSpacesAutoMapRequest;
|
|
2438
|
+
}
|
|
2439
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters = RouteRequestBody<'/seam/partner/v1/building_blocks/spaces/auto_map'>;
|
|
2440
|
+
/**
|
|
2441
|
+
* @deprecated Use SeamPartnerV1BuildingBlocksSpacesAutoMapParameters instead.
|
|
2442
|
+
*/
|
|
2443
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapParams = SeamPartnerV1BuildingBlocksSpacesAutoMapParameters;
|
|
2444
|
+
/**
|
|
2445
|
+
* @deprecated Use SeamPartnerV1BuildingBlocksSpacesAutoMapRequest instead.
|
|
2446
|
+
*/
|
|
2447
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapResponse = SetNonNullable<Required<RouteResponse<'/seam/partner/v1/building_blocks/spaces/auto_map'>>>;
|
|
2448
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest = SeamHttpRequest<SeamPartnerV1BuildingBlocksSpacesAutoMapResponse, 'spaces'>;
|
|
2449
|
+
type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions = Record<string, never>;
|
|
2450
|
+
|
|
2451
|
+
declare class SeamHttpSeamPartnerV1BuildingBlocks {
|
|
2452
|
+
client: Client;
|
|
2453
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2454
|
+
readonly ltsVersion = "1.0.0";
|
|
2455
|
+
static ltsVersion: string;
|
|
2456
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2457
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamPartnerV1BuildingBlocks;
|
|
2458
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamPartnerV1BuildingBlocks;
|
|
2459
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamPartnerV1BuildingBlocks;
|
|
2460
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamPartnerV1BuildingBlocks>;
|
|
2461
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamPartnerV1BuildingBlocks;
|
|
2462
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamPartnerV1BuildingBlocks;
|
|
2463
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2464
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2465
|
+
get spaces(): SeamHttpSeamPartnerV1BuildingBlocksSpaces;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
declare class SeamHttpSeamPartnerV1Resources {
|
|
2469
|
+
client: Client;
|
|
2470
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2471
|
+
readonly ltsVersion = "1.0.0";
|
|
2472
|
+
static ltsVersion: string;
|
|
2473
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2474
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamPartnerV1Resources;
|
|
2475
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamPartnerV1Resources;
|
|
2476
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamPartnerV1Resources;
|
|
2477
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamPartnerV1Resources>;
|
|
2478
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamPartnerV1Resources;
|
|
2479
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamPartnerV1Resources;
|
|
2480
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2481
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2482
|
+
list(parameters?: SeamPartnerV1ResourcesListParameters, options?: SeamPartnerV1ResourcesListOptions): SeamPartnerV1ResourcesListRequest;
|
|
2483
|
+
}
|
|
2484
|
+
type SeamPartnerV1ResourcesListParameters = RouteRequestBody<'/seam/partner/v1/resources/list'>;
|
|
2485
|
+
/**
|
|
2486
|
+
* @deprecated Use SeamPartnerV1ResourcesListParameters instead.
|
|
2487
|
+
*/
|
|
2488
|
+
type SeamPartnerV1ResourcesListParams = SeamPartnerV1ResourcesListParameters;
|
|
2489
|
+
/**
|
|
2490
|
+
* @deprecated Use SeamPartnerV1ResourcesListRequest instead.
|
|
2491
|
+
*/
|
|
2492
|
+
type SeamPartnerV1ResourcesListResponse = SetNonNullable<Required<RouteResponse<'/seam/partner/v1/resources/list'>>>;
|
|
2493
|
+
type SeamPartnerV1ResourcesListRequest = SeamHttpRequest<SeamPartnerV1ResourcesListResponse, 'partner_resources'>;
|
|
2494
|
+
type SeamPartnerV1ResourcesListOptions = Record<string, never>;
|
|
2495
|
+
|
|
2496
|
+
declare class SeamHttpSeamPartnerV1 {
|
|
2497
|
+
client: Client;
|
|
2498
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
2499
|
+
readonly ltsVersion = "1.0.0";
|
|
2500
|
+
static ltsVersion: string;
|
|
2501
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
2502
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSeamPartnerV1;
|
|
2503
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSeamPartnerV1;
|
|
2504
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSeamPartnerV1;
|
|
2505
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSeamPartnerV1>;
|
|
2506
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSeamPartnerV1;
|
|
2507
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSeamPartnerV1;
|
|
2508
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2509
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2510
|
+
get buildingBlocks(): SeamHttpSeamPartnerV1BuildingBlocks;
|
|
2511
|
+
get resources(): SeamHttpSeamPartnerV1Resources;
|
|
2512
|
+
}
|
|
958
2513
|
|
|
959
2514
|
declare class SeamHttpSpaces {
|
|
960
2515
|
client: Client;
|
|
@@ -970,43 +2525,115 @@ declare class SeamHttpSpaces {
|
|
|
970
2525
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSpaces;
|
|
971
2526
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
972
2527
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
973
|
-
addAcsEntrances(
|
|
974
|
-
addDevices(
|
|
975
|
-
create(
|
|
976
|
-
delete(
|
|
977
|
-
get(
|
|
978
|
-
list(
|
|
979
|
-
removeAcsEntrances(
|
|
980
|
-
removeDevices(
|
|
981
|
-
update(
|
|
2528
|
+
addAcsEntrances(parameters?: SpacesAddAcsEntrancesParameters, options?: SpacesAddAcsEntrancesOptions): SpacesAddAcsEntrancesRequest;
|
|
2529
|
+
addDevices(parameters?: SpacesAddDevicesParameters, options?: SpacesAddDevicesOptions): SpacesAddDevicesRequest;
|
|
2530
|
+
create(parameters?: SpacesCreateParameters, options?: SpacesCreateOptions): SpacesCreateRequest;
|
|
2531
|
+
delete(parameters?: SpacesDeleteParameters, options?: SpacesDeleteOptions): SpacesDeleteRequest;
|
|
2532
|
+
get(parameters?: SpacesGetParameters, options?: SpacesGetOptions): SpacesGetRequest;
|
|
2533
|
+
list(parameters?: SpacesListParameters, options?: SpacesListOptions): SpacesListRequest;
|
|
2534
|
+
removeAcsEntrances(parameters?: SpacesRemoveAcsEntrancesParameters, options?: SpacesRemoveAcsEntrancesOptions): SpacesRemoveAcsEntrancesRequest;
|
|
2535
|
+
removeDevices(parameters?: SpacesRemoveDevicesParameters, options?: SpacesRemoveDevicesOptions): SpacesRemoveDevicesRequest;
|
|
2536
|
+
update(parameters?: SpacesUpdateParameters, options?: SpacesUpdateOptions): SpacesUpdateRequest;
|
|
982
2537
|
}
|
|
983
|
-
type
|
|
2538
|
+
type SpacesAddAcsEntrancesParameters = RouteRequestBody<'/spaces/add_acs_entrances'>;
|
|
2539
|
+
/**
|
|
2540
|
+
* @deprecated Use SpacesAddAcsEntrancesParameters instead.
|
|
2541
|
+
*/
|
|
2542
|
+
type SpacesAddAcsEntrancesBody = SpacesAddAcsEntrancesParameters;
|
|
2543
|
+
/**
|
|
2544
|
+
* @deprecated Use SpacesAddAcsEntrancesRequest instead.
|
|
2545
|
+
*/
|
|
984
2546
|
type SpacesAddAcsEntrancesResponse = SetNonNullable<Required<RouteResponse<'/spaces/add_acs_entrances'>>>;
|
|
985
|
-
type
|
|
986
|
-
type
|
|
2547
|
+
type SpacesAddAcsEntrancesRequest = SeamHttpRequest<void, undefined>;
|
|
2548
|
+
type SpacesAddAcsEntrancesOptions = Record<string, never>;
|
|
2549
|
+
type SpacesAddDevicesParameters = RouteRequestBody<'/spaces/add_devices'>;
|
|
2550
|
+
/**
|
|
2551
|
+
* @deprecated Use SpacesAddDevicesParameters instead.
|
|
2552
|
+
*/
|
|
2553
|
+
type SpacesAddDevicesBody = SpacesAddDevicesParameters;
|
|
2554
|
+
/**
|
|
2555
|
+
* @deprecated Use SpacesAddDevicesRequest instead.
|
|
2556
|
+
*/
|
|
987
2557
|
type SpacesAddDevicesResponse = SetNonNullable<Required<RouteResponse<'/spaces/add_devices'>>>;
|
|
988
|
-
type
|
|
989
|
-
type
|
|
2558
|
+
type SpacesAddDevicesRequest = SeamHttpRequest<void, undefined>;
|
|
2559
|
+
type SpacesAddDevicesOptions = Record<string, never>;
|
|
2560
|
+
type SpacesCreateParameters = RouteRequestBody<'/spaces/create'>;
|
|
2561
|
+
/**
|
|
2562
|
+
* @deprecated Use SpacesCreateParameters instead.
|
|
2563
|
+
*/
|
|
2564
|
+
type SpacesCreateBody = SpacesCreateParameters;
|
|
2565
|
+
/**
|
|
2566
|
+
* @deprecated Use SpacesCreateRequest instead.
|
|
2567
|
+
*/
|
|
990
2568
|
type SpacesCreateResponse = SetNonNullable<Required<RouteResponse<'/spaces/create'>>>;
|
|
991
|
-
type
|
|
992
|
-
type
|
|
2569
|
+
type SpacesCreateRequest = SeamHttpRequest<SpacesCreateResponse, 'space'>;
|
|
2570
|
+
type SpacesCreateOptions = Record<string, never>;
|
|
2571
|
+
type SpacesDeleteParameters = RouteRequestBody<'/spaces/delete'>;
|
|
2572
|
+
/**
|
|
2573
|
+
* @deprecated Use SpacesDeleteParameters instead.
|
|
2574
|
+
*/
|
|
2575
|
+
type SpacesDeleteParams = SpacesDeleteParameters;
|
|
2576
|
+
/**
|
|
2577
|
+
* @deprecated Use SpacesDeleteRequest instead.
|
|
2578
|
+
*/
|
|
993
2579
|
type SpacesDeleteResponse = SetNonNullable<Required<RouteResponse<'/spaces/delete'>>>;
|
|
994
|
-
type
|
|
995
|
-
type
|
|
2580
|
+
type SpacesDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
2581
|
+
type SpacesDeleteOptions = Record<string, never>;
|
|
2582
|
+
type SpacesGetParameters = RouteRequestBody<'/spaces/get'>;
|
|
2583
|
+
/**
|
|
2584
|
+
* @deprecated Use SpacesGetParameters instead.
|
|
2585
|
+
*/
|
|
2586
|
+
type SpacesGetParams = SpacesGetParameters;
|
|
2587
|
+
/**
|
|
2588
|
+
* @deprecated Use SpacesGetRequest instead.
|
|
2589
|
+
*/
|
|
996
2590
|
type SpacesGetResponse = SetNonNullable<Required<RouteResponse<'/spaces/get'>>>;
|
|
997
|
-
type
|
|
998
|
-
type
|
|
2591
|
+
type SpacesGetRequest = SeamHttpRequest<SpacesGetResponse, 'space'>;
|
|
2592
|
+
type SpacesGetOptions = Record<string, never>;
|
|
2593
|
+
type SpacesListParameters = RouteRequestParams<'/spaces/list'>;
|
|
2594
|
+
/**
|
|
2595
|
+
* @deprecated Use SpacesListParameters instead.
|
|
2596
|
+
*/
|
|
2597
|
+
type SpacesListParams = SpacesListParameters;
|
|
2598
|
+
/**
|
|
2599
|
+
* @deprecated Use SpacesListRequest instead.
|
|
2600
|
+
*/
|
|
999
2601
|
type SpacesListResponse = SetNonNullable<Required<RouteResponse<'/spaces/list'>>>;
|
|
1000
|
-
type
|
|
1001
|
-
type
|
|
2602
|
+
type SpacesListRequest = SeamHttpRequest<SpacesListResponse, 'spaces'>;
|
|
2603
|
+
type SpacesListOptions = Record<string, never>;
|
|
2604
|
+
type SpacesRemoveAcsEntrancesParameters = RouteRequestBody<'/spaces/remove_acs_entrances'>;
|
|
2605
|
+
/**
|
|
2606
|
+
* @deprecated Use SpacesRemoveAcsEntrancesParameters instead.
|
|
2607
|
+
*/
|
|
2608
|
+
type SpacesRemoveAcsEntrancesParams = SpacesRemoveAcsEntrancesParameters;
|
|
2609
|
+
/**
|
|
2610
|
+
* @deprecated Use SpacesRemoveAcsEntrancesRequest instead.
|
|
2611
|
+
*/
|
|
1002
2612
|
type SpacesRemoveAcsEntrancesResponse = SetNonNullable<Required<RouteResponse<'/spaces/remove_acs_entrances'>>>;
|
|
1003
|
-
type
|
|
1004
|
-
type
|
|
2613
|
+
type SpacesRemoveAcsEntrancesRequest = SeamHttpRequest<void, undefined>;
|
|
2614
|
+
type SpacesRemoveAcsEntrancesOptions = Record<string, never>;
|
|
2615
|
+
type SpacesRemoveDevicesParameters = RouteRequestBody<'/spaces/remove_devices'>;
|
|
2616
|
+
/**
|
|
2617
|
+
* @deprecated Use SpacesRemoveDevicesParameters instead.
|
|
2618
|
+
*/
|
|
2619
|
+
type SpacesRemoveDevicesParams = SpacesRemoveDevicesParameters;
|
|
2620
|
+
/**
|
|
2621
|
+
* @deprecated Use SpacesRemoveDevicesRequest instead.
|
|
2622
|
+
*/
|
|
1005
2623
|
type SpacesRemoveDevicesResponse = SetNonNullable<Required<RouteResponse<'/spaces/remove_devices'>>>;
|
|
1006
|
-
type
|
|
1007
|
-
type
|
|
2624
|
+
type SpacesRemoveDevicesRequest = SeamHttpRequest<void, undefined>;
|
|
2625
|
+
type SpacesRemoveDevicesOptions = Record<string, never>;
|
|
2626
|
+
type SpacesUpdateParameters = RouteRequestBody<'/spaces/update'>;
|
|
2627
|
+
/**
|
|
2628
|
+
* @deprecated Use SpacesUpdateParameters instead.
|
|
2629
|
+
*/
|
|
2630
|
+
type SpacesUpdateBody = SpacesUpdateParameters;
|
|
2631
|
+
/**
|
|
2632
|
+
* @deprecated Use SpacesUpdateRequest instead.
|
|
2633
|
+
*/
|
|
1008
2634
|
type SpacesUpdateResponse = SetNonNullable<Required<RouteResponse<'/spaces/update'>>>;
|
|
1009
|
-
type
|
|
2635
|
+
type SpacesUpdateRequest = SeamHttpRequest<SpacesUpdateResponse, 'space'>;
|
|
2636
|
+
type SpacesUpdateOptions = Record<string, never>;
|
|
1010
2637
|
|
|
1011
2638
|
declare class SeamHttpThermostatsDailyPrograms {
|
|
1012
2639
|
client: Client;
|
|
@@ -1022,18 +2649,42 @@ declare class SeamHttpThermostatsDailyPrograms {
|
|
|
1022
2649
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostatsDailyPrograms;
|
|
1023
2650
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1024
2651
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1025
|
-
create(
|
|
1026
|
-
delete(
|
|
1027
|
-
update(
|
|
2652
|
+
create(parameters?: ThermostatsDailyProgramsCreateParameters, options?: ThermostatsDailyProgramsCreateOptions): ThermostatsDailyProgramsCreateRequest;
|
|
2653
|
+
delete(parameters?: ThermostatsDailyProgramsDeleteParameters, options?: ThermostatsDailyProgramsDeleteOptions): ThermostatsDailyProgramsDeleteRequest;
|
|
2654
|
+
update(parameters?: ThermostatsDailyProgramsUpdateParameters, options?: ThermostatsDailyProgramsUpdateOptions): ThermostatsDailyProgramsUpdateRequest;
|
|
1028
2655
|
}
|
|
1029
|
-
type
|
|
2656
|
+
type ThermostatsDailyProgramsCreateParameters = RouteRequestBody<'/thermostats/daily_programs/create'>;
|
|
2657
|
+
/**
|
|
2658
|
+
* @deprecated Use ThermostatsDailyProgramsCreateParameters instead.
|
|
2659
|
+
*/
|
|
2660
|
+
type ThermostatsDailyProgramsCreateBody = ThermostatsDailyProgramsCreateParameters;
|
|
2661
|
+
/**
|
|
2662
|
+
* @deprecated Use ThermostatsDailyProgramsCreateRequest instead.
|
|
2663
|
+
*/
|
|
1030
2664
|
type ThermostatsDailyProgramsCreateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/create'>>>;
|
|
1031
|
-
type
|
|
1032
|
-
type
|
|
2665
|
+
type ThermostatsDailyProgramsCreateRequest = SeamHttpRequest<ThermostatsDailyProgramsCreateResponse, 'thermostat_daily_program'>;
|
|
2666
|
+
type ThermostatsDailyProgramsCreateOptions = Record<string, never>;
|
|
2667
|
+
type ThermostatsDailyProgramsDeleteParameters = RouteRequestBody<'/thermostats/daily_programs/delete'>;
|
|
2668
|
+
/**
|
|
2669
|
+
* @deprecated Use ThermostatsDailyProgramsDeleteParameters instead.
|
|
2670
|
+
*/
|
|
2671
|
+
type ThermostatsDailyProgramsDeleteParams = ThermostatsDailyProgramsDeleteParameters;
|
|
2672
|
+
/**
|
|
2673
|
+
* @deprecated Use ThermostatsDailyProgramsDeleteRequest instead.
|
|
2674
|
+
*/
|
|
1033
2675
|
type ThermostatsDailyProgramsDeleteResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/delete'>>>;
|
|
1034
|
-
type
|
|
1035
|
-
type
|
|
2676
|
+
type ThermostatsDailyProgramsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
2677
|
+
type ThermostatsDailyProgramsDeleteOptions = Record<string, never>;
|
|
2678
|
+
type ThermostatsDailyProgramsUpdateParameters = RouteRequestBody<'/thermostats/daily_programs/update'>;
|
|
2679
|
+
/**
|
|
2680
|
+
* @deprecated Use ThermostatsDailyProgramsUpdateParameters instead.
|
|
2681
|
+
*/
|
|
2682
|
+
type ThermostatsDailyProgramsUpdateBody = ThermostatsDailyProgramsUpdateParameters;
|
|
2683
|
+
/**
|
|
2684
|
+
* @deprecated Use ThermostatsDailyProgramsUpdateRequest instead.
|
|
2685
|
+
*/
|
|
1036
2686
|
type ThermostatsDailyProgramsUpdateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/update'>>>;
|
|
2687
|
+
type ThermostatsDailyProgramsUpdateRequest = SeamHttpRequest<ThermostatsDailyProgramsUpdateResponse, 'action_attempt'>;
|
|
1037
2688
|
type ThermostatsDailyProgramsUpdateOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1038
2689
|
|
|
1039
2690
|
declare class SeamHttpThermostatsSchedules {
|
|
@@ -1050,27 +2701,67 @@ declare class SeamHttpThermostatsSchedules {
|
|
|
1050
2701
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostatsSchedules;
|
|
1051
2702
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1052
2703
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1053
|
-
create(
|
|
1054
|
-
delete(
|
|
1055
|
-
get(
|
|
1056
|
-
list(
|
|
1057
|
-
update(
|
|
2704
|
+
create(parameters?: ThermostatsSchedulesCreateParameters, options?: ThermostatsSchedulesCreateOptions): ThermostatsSchedulesCreateRequest;
|
|
2705
|
+
delete(parameters?: ThermostatsSchedulesDeleteParameters, options?: ThermostatsSchedulesDeleteOptions): ThermostatsSchedulesDeleteRequest;
|
|
2706
|
+
get(parameters?: ThermostatsSchedulesGetParameters, options?: ThermostatsSchedulesGetOptions): ThermostatsSchedulesGetRequest;
|
|
2707
|
+
list(parameters?: ThermostatsSchedulesListParameters, options?: ThermostatsSchedulesListOptions): ThermostatsSchedulesListRequest;
|
|
2708
|
+
update(parameters?: ThermostatsSchedulesUpdateParameters, options?: ThermostatsSchedulesUpdateOptions): ThermostatsSchedulesUpdateRequest;
|
|
1058
2709
|
}
|
|
1059
|
-
type
|
|
2710
|
+
type ThermostatsSchedulesCreateParameters = RouteRequestBody<'/thermostats/schedules/create'>;
|
|
2711
|
+
/**
|
|
2712
|
+
* @deprecated Use ThermostatsSchedulesCreateParameters instead.
|
|
2713
|
+
*/
|
|
2714
|
+
type ThermostatsSchedulesCreateBody = ThermostatsSchedulesCreateParameters;
|
|
2715
|
+
/**
|
|
2716
|
+
* @deprecated Use ThermostatsSchedulesCreateRequest instead.
|
|
2717
|
+
*/
|
|
1060
2718
|
type ThermostatsSchedulesCreateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/schedules/create'>>>;
|
|
1061
|
-
type
|
|
1062
|
-
type
|
|
2719
|
+
type ThermostatsSchedulesCreateRequest = SeamHttpRequest<ThermostatsSchedulesCreateResponse, 'thermostat_schedule'>;
|
|
2720
|
+
type ThermostatsSchedulesCreateOptions = Record<string, never>;
|
|
2721
|
+
type ThermostatsSchedulesDeleteParameters = RouteRequestBody<'/thermostats/schedules/delete'>;
|
|
2722
|
+
/**
|
|
2723
|
+
* @deprecated Use ThermostatsSchedulesDeleteParameters instead.
|
|
2724
|
+
*/
|
|
2725
|
+
type ThermostatsSchedulesDeleteParams = ThermostatsSchedulesDeleteParameters;
|
|
2726
|
+
/**
|
|
2727
|
+
* @deprecated Use ThermostatsSchedulesDeleteRequest instead.
|
|
2728
|
+
*/
|
|
1063
2729
|
type ThermostatsSchedulesDeleteResponse = SetNonNullable<Required<RouteResponse<'/thermostats/schedules/delete'>>>;
|
|
1064
|
-
type
|
|
1065
|
-
type
|
|
2730
|
+
type ThermostatsSchedulesDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
2731
|
+
type ThermostatsSchedulesDeleteOptions = Record<string, never>;
|
|
2732
|
+
type ThermostatsSchedulesGetParameters = RouteRequestBody<'/thermostats/schedules/get'>;
|
|
2733
|
+
/**
|
|
2734
|
+
* @deprecated Use ThermostatsSchedulesGetParameters instead.
|
|
2735
|
+
*/
|
|
2736
|
+
type ThermostatsSchedulesGetParams = ThermostatsSchedulesGetParameters;
|
|
2737
|
+
/**
|
|
2738
|
+
* @deprecated Use ThermostatsSchedulesGetRequest instead.
|
|
2739
|
+
*/
|
|
1066
2740
|
type ThermostatsSchedulesGetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/schedules/get'>>>;
|
|
1067
|
-
type
|
|
1068
|
-
type
|
|
2741
|
+
type ThermostatsSchedulesGetRequest = SeamHttpRequest<ThermostatsSchedulesGetResponse, 'thermostat_schedule'>;
|
|
2742
|
+
type ThermostatsSchedulesGetOptions = Record<string, never>;
|
|
2743
|
+
type ThermostatsSchedulesListParameters = RouteRequestBody<'/thermostats/schedules/list'>;
|
|
2744
|
+
/**
|
|
2745
|
+
* @deprecated Use ThermostatsSchedulesListParameters instead.
|
|
2746
|
+
*/
|
|
2747
|
+
type ThermostatsSchedulesListParams = ThermostatsSchedulesListParameters;
|
|
2748
|
+
/**
|
|
2749
|
+
* @deprecated Use ThermostatsSchedulesListRequest instead.
|
|
2750
|
+
*/
|
|
1069
2751
|
type ThermostatsSchedulesListResponse = SetNonNullable<Required<RouteResponse<'/thermostats/schedules/list'>>>;
|
|
1070
|
-
type
|
|
1071
|
-
type
|
|
2752
|
+
type ThermostatsSchedulesListRequest = SeamHttpRequest<ThermostatsSchedulesListResponse, 'thermostat_schedules'>;
|
|
2753
|
+
type ThermostatsSchedulesListOptions = Record<string, never>;
|
|
2754
|
+
type ThermostatsSchedulesUpdateParameters = RouteRequestBody<'/thermostats/schedules/update'>;
|
|
2755
|
+
/**
|
|
2756
|
+
* @deprecated Use ThermostatsSchedulesUpdateParameters instead.
|
|
2757
|
+
*/
|
|
2758
|
+
type ThermostatsSchedulesUpdateBody = ThermostatsSchedulesUpdateParameters;
|
|
2759
|
+
/**
|
|
2760
|
+
* @deprecated Use ThermostatsSchedulesUpdateRequest instead.
|
|
2761
|
+
*/
|
|
1072
2762
|
type ThermostatsSchedulesUpdateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/schedules/update'>>>;
|
|
1073
|
-
type
|
|
2763
|
+
type ThermostatsSchedulesUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
2764
|
+
type ThermostatsSchedulesUpdateOptions = Record<string, never>;
|
|
1074
2765
|
|
|
1075
2766
|
declare class SeamHttpThermostatsSimulate {
|
|
1076
2767
|
client: Client;
|
|
@@ -1086,15 +2777,31 @@ declare class SeamHttpThermostatsSimulate {
|
|
|
1086
2777
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostatsSimulate;
|
|
1087
2778
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1088
2779
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1089
|
-
hvacModeAdjusted(
|
|
1090
|
-
temperatureReached(
|
|
2780
|
+
hvacModeAdjusted(parameters?: ThermostatsSimulateHvacModeAdjustedParameters, options?: ThermostatsSimulateHvacModeAdjustedOptions): ThermostatsSimulateHvacModeAdjustedRequest;
|
|
2781
|
+
temperatureReached(parameters?: ThermostatsSimulateTemperatureReachedParameters, options?: ThermostatsSimulateTemperatureReachedOptions): ThermostatsSimulateTemperatureReachedRequest;
|
|
1091
2782
|
}
|
|
1092
|
-
type
|
|
2783
|
+
type ThermostatsSimulateHvacModeAdjustedParameters = RouteRequestBody<'/thermostats/simulate/hvac_mode_adjusted'>;
|
|
2784
|
+
/**
|
|
2785
|
+
* @deprecated Use ThermostatsSimulateHvacModeAdjustedParameters instead.
|
|
2786
|
+
*/
|
|
2787
|
+
type ThermostatsSimulateHvacModeAdjustedBody = ThermostatsSimulateHvacModeAdjustedParameters;
|
|
2788
|
+
/**
|
|
2789
|
+
* @deprecated Use ThermostatsSimulateHvacModeAdjustedRequest instead.
|
|
2790
|
+
*/
|
|
1093
2791
|
type ThermostatsSimulateHvacModeAdjustedResponse = SetNonNullable<Required<RouteResponse<'/thermostats/simulate/hvac_mode_adjusted'>>>;
|
|
1094
|
-
type
|
|
1095
|
-
type
|
|
2792
|
+
type ThermostatsSimulateHvacModeAdjustedRequest = SeamHttpRequest<void, undefined>;
|
|
2793
|
+
type ThermostatsSimulateHvacModeAdjustedOptions = Record<string, never>;
|
|
2794
|
+
type ThermostatsSimulateTemperatureReachedParameters = RouteRequestBody<'/thermostats/simulate/temperature_reached'>;
|
|
2795
|
+
/**
|
|
2796
|
+
* @deprecated Use ThermostatsSimulateTemperatureReachedParameters instead.
|
|
2797
|
+
*/
|
|
2798
|
+
type ThermostatsSimulateTemperatureReachedBody = ThermostatsSimulateTemperatureReachedParameters;
|
|
2799
|
+
/**
|
|
2800
|
+
* @deprecated Use ThermostatsSimulateTemperatureReachedRequest instead.
|
|
2801
|
+
*/
|
|
1096
2802
|
type ThermostatsSimulateTemperatureReachedResponse = SetNonNullable<Required<RouteResponse<'/thermostats/simulate/temperature_reached'>>>;
|
|
1097
|
-
type
|
|
2803
|
+
type ThermostatsSimulateTemperatureReachedRequest = SeamHttpRequest<void, undefined>;
|
|
2804
|
+
type ThermostatsSimulateTemperatureReachedOptions = Record<string, never>;
|
|
1098
2805
|
|
|
1099
2806
|
declare class SeamHttpThermostats {
|
|
1100
2807
|
client: Client;
|
|
@@ -1113,64 +2820,538 @@ declare class SeamHttpThermostats {
|
|
|
1113
2820
|
get dailyPrograms(): SeamHttpThermostatsDailyPrograms;
|
|
1114
2821
|
get schedules(): SeamHttpThermostatsSchedules;
|
|
1115
2822
|
get simulate(): SeamHttpThermostatsSimulate;
|
|
1116
|
-
activateClimatePreset(
|
|
1117
|
-
cool(
|
|
1118
|
-
createClimatePreset(
|
|
1119
|
-
deleteClimatePreset(
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
2823
|
+
activateClimatePreset(parameters?: ThermostatsActivateClimatePresetParameters, options?: ThermostatsActivateClimatePresetOptions): ThermostatsActivateClimatePresetRequest;
|
|
2824
|
+
cool(parameters?: ThermostatsCoolParameters, options?: ThermostatsCoolOptions): ThermostatsCoolRequest;
|
|
2825
|
+
createClimatePreset(parameters?: ThermostatsCreateClimatePresetParameters, options?: ThermostatsCreateClimatePresetOptions): ThermostatsCreateClimatePresetRequest;
|
|
2826
|
+
deleteClimatePreset(parameters?: ThermostatsDeleteClimatePresetParameters, options?: ThermostatsDeleteClimatePresetOptions): ThermostatsDeleteClimatePresetRequest;
|
|
2827
|
+
get(parameters?: ThermostatsGetParameters, options?: ThermostatsGetOptions): ThermostatsGetRequest;
|
|
2828
|
+
heat(parameters?: ThermostatsHeatParameters, options?: ThermostatsHeatOptions): ThermostatsHeatRequest;
|
|
2829
|
+
heatCool(parameters?: ThermostatsHeatCoolParameters, options?: ThermostatsHeatCoolOptions): ThermostatsHeatCoolRequest;
|
|
2830
|
+
list(parameters?: ThermostatsListParameters, options?: ThermostatsListOptions): ThermostatsListRequest;
|
|
2831
|
+
off(parameters?: ThermostatsOffParameters, options?: ThermostatsOffOptions): ThermostatsOffRequest;
|
|
2832
|
+
setFallbackClimatePreset(parameters?: ThermostatsSetFallbackClimatePresetParameters, options?: ThermostatsSetFallbackClimatePresetOptions): ThermostatsSetFallbackClimatePresetRequest;
|
|
2833
|
+
setFanMode(parameters?: ThermostatsSetFanModeParameters, options?: ThermostatsSetFanModeOptions): ThermostatsSetFanModeRequest;
|
|
2834
|
+
setHvacMode(parameters?: ThermostatsSetHvacModeParameters, options?: ThermostatsSetHvacModeOptions): ThermostatsSetHvacModeRequest;
|
|
2835
|
+
setTemperatureThreshold(parameters?: ThermostatsSetTemperatureThresholdParameters, options?: ThermostatsSetTemperatureThresholdOptions): ThermostatsSetTemperatureThresholdRequest;
|
|
2836
|
+
updateClimatePreset(parameters?: ThermostatsUpdateClimatePresetParameters, options?: ThermostatsUpdateClimatePresetOptions): ThermostatsUpdateClimatePresetRequest;
|
|
2837
|
+
updateWeeklyProgram(parameters?: ThermostatsUpdateWeeklyProgramParameters, options?: ThermostatsUpdateWeeklyProgramOptions): ThermostatsUpdateWeeklyProgramRequest;
|
|
2838
|
+
}
|
|
2839
|
+
type ThermostatsActivateClimatePresetParameters = RouteRequestBody<'/thermostats/activate_climate_preset'>;
|
|
2840
|
+
/**
|
|
2841
|
+
* @deprecated Use ThermostatsActivateClimatePresetParameters instead.
|
|
2842
|
+
*/
|
|
2843
|
+
type ThermostatsActivateClimatePresetBody = ThermostatsActivateClimatePresetParameters;
|
|
2844
|
+
/**
|
|
2845
|
+
* @deprecated Use ThermostatsActivateClimatePresetRequest instead.
|
|
2846
|
+
*/
|
|
1132
2847
|
type ThermostatsActivateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/activate_climate_preset'>>>;
|
|
2848
|
+
type ThermostatsActivateClimatePresetRequest = SeamHttpRequest<ThermostatsActivateClimatePresetResponse, 'action_attempt'>;
|
|
1133
2849
|
type ThermostatsActivateClimatePresetOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1134
|
-
type
|
|
2850
|
+
type ThermostatsCoolParameters = RouteRequestBody<'/thermostats/cool'>;
|
|
2851
|
+
/**
|
|
2852
|
+
* @deprecated Use ThermostatsCoolParameters instead.
|
|
2853
|
+
*/
|
|
2854
|
+
type ThermostatsCoolBody = ThermostatsCoolParameters;
|
|
2855
|
+
/**
|
|
2856
|
+
* @deprecated Use ThermostatsCoolRequest instead.
|
|
2857
|
+
*/
|
|
1135
2858
|
type ThermostatsCoolResponse = SetNonNullable<Required<RouteResponse<'/thermostats/cool'>>>;
|
|
2859
|
+
type ThermostatsCoolRequest = SeamHttpRequest<ThermostatsCoolResponse, 'action_attempt'>;
|
|
1136
2860
|
type ThermostatsCoolOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1137
|
-
type
|
|
2861
|
+
type ThermostatsCreateClimatePresetParameters = RouteRequestBody<'/thermostats/create_climate_preset'>;
|
|
2862
|
+
/**
|
|
2863
|
+
* @deprecated Use ThermostatsCreateClimatePresetParameters instead.
|
|
2864
|
+
*/
|
|
2865
|
+
type ThermostatsCreateClimatePresetBody = ThermostatsCreateClimatePresetParameters;
|
|
2866
|
+
/**
|
|
2867
|
+
* @deprecated Use ThermostatsCreateClimatePresetRequest instead.
|
|
2868
|
+
*/
|
|
1138
2869
|
type ThermostatsCreateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/create_climate_preset'>>>;
|
|
1139
|
-
type
|
|
1140
|
-
type
|
|
2870
|
+
type ThermostatsCreateClimatePresetRequest = SeamHttpRequest<void, undefined>;
|
|
2871
|
+
type ThermostatsCreateClimatePresetOptions = Record<string, never>;
|
|
2872
|
+
type ThermostatsDeleteClimatePresetParameters = RouteRequestBody<'/thermostats/delete_climate_preset'>;
|
|
2873
|
+
/**
|
|
2874
|
+
* @deprecated Use ThermostatsDeleteClimatePresetParameters instead.
|
|
2875
|
+
*/
|
|
2876
|
+
type ThermostatsDeleteClimatePresetParams = ThermostatsDeleteClimatePresetParameters;
|
|
2877
|
+
/**
|
|
2878
|
+
* @deprecated Use ThermostatsDeleteClimatePresetRequest instead.
|
|
2879
|
+
*/
|
|
1141
2880
|
type ThermostatsDeleteClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/delete_climate_preset'>>>;
|
|
1142
|
-
type
|
|
1143
|
-
type
|
|
2881
|
+
type ThermostatsDeleteClimatePresetRequest = SeamHttpRequest<void, undefined>;
|
|
2882
|
+
type ThermostatsDeleteClimatePresetOptions = Record<string, never>;
|
|
2883
|
+
type ThermostatsGetParameters = RouteRequestBody<'/thermostats/get'>;
|
|
2884
|
+
/**
|
|
2885
|
+
* @deprecated Use ThermostatsGetParameters instead.
|
|
2886
|
+
*/
|
|
2887
|
+
type ThermostatsGetParams = ThermostatsGetParameters;
|
|
2888
|
+
/**
|
|
2889
|
+
* @deprecated Use ThermostatsGetRequest instead.
|
|
2890
|
+
*/
|
|
2891
|
+
type ThermostatsGetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/get'>>>;
|
|
2892
|
+
type ThermostatsGetRequest = SeamHttpRequest<ThermostatsGetResponse, 'thermostat'>;
|
|
2893
|
+
type ThermostatsGetOptions = Record<string, never>;
|
|
2894
|
+
type ThermostatsHeatParameters = RouteRequestBody<'/thermostats/heat'>;
|
|
2895
|
+
/**
|
|
2896
|
+
* @deprecated Use ThermostatsHeatParameters instead.
|
|
2897
|
+
*/
|
|
2898
|
+
type ThermostatsHeatBody = ThermostatsHeatParameters;
|
|
2899
|
+
/**
|
|
2900
|
+
* @deprecated Use ThermostatsHeatRequest instead.
|
|
2901
|
+
*/
|
|
1144
2902
|
type ThermostatsHeatResponse = SetNonNullable<Required<RouteResponse<'/thermostats/heat'>>>;
|
|
2903
|
+
type ThermostatsHeatRequest = SeamHttpRequest<ThermostatsHeatResponse, 'action_attempt'>;
|
|
1145
2904
|
type ThermostatsHeatOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1146
|
-
type
|
|
2905
|
+
type ThermostatsHeatCoolParameters = RouteRequestBody<'/thermostats/heat_cool'>;
|
|
2906
|
+
/**
|
|
2907
|
+
* @deprecated Use ThermostatsHeatCoolParameters instead.
|
|
2908
|
+
*/
|
|
2909
|
+
type ThermostatsHeatCoolBody = ThermostatsHeatCoolParameters;
|
|
2910
|
+
/**
|
|
2911
|
+
* @deprecated Use ThermostatsHeatCoolRequest instead.
|
|
2912
|
+
*/
|
|
1147
2913
|
type ThermostatsHeatCoolResponse = SetNonNullable<Required<RouteResponse<'/thermostats/heat_cool'>>>;
|
|
2914
|
+
type ThermostatsHeatCoolRequest = SeamHttpRequest<ThermostatsHeatCoolResponse, 'action_attempt'>;
|
|
1148
2915
|
type ThermostatsHeatCoolOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1149
|
-
type
|
|
2916
|
+
type ThermostatsListParameters = RouteRequestBody<'/thermostats/list'>;
|
|
2917
|
+
/**
|
|
2918
|
+
* @deprecated Use ThermostatsListParameters instead.
|
|
2919
|
+
*/
|
|
2920
|
+
type ThermostatsListParams = ThermostatsListParameters;
|
|
2921
|
+
/**
|
|
2922
|
+
* @deprecated Use ThermostatsListRequest instead.
|
|
2923
|
+
*/
|
|
1150
2924
|
type ThermostatsListResponse = SetNonNullable<Required<RouteResponse<'/thermostats/list'>>>;
|
|
1151
|
-
type
|
|
1152
|
-
type
|
|
2925
|
+
type ThermostatsListRequest = SeamHttpRequest<ThermostatsListResponse, 'devices'>;
|
|
2926
|
+
type ThermostatsListOptions = Record<string, never>;
|
|
2927
|
+
type ThermostatsOffParameters = RouteRequestBody<'/thermostats/off'>;
|
|
2928
|
+
/**
|
|
2929
|
+
* @deprecated Use ThermostatsOffParameters instead.
|
|
2930
|
+
*/
|
|
2931
|
+
type ThermostatsOffBody = ThermostatsOffParameters;
|
|
2932
|
+
/**
|
|
2933
|
+
* @deprecated Use ThermostatsOffRequest instead.
|
|
2934
|
+
*/
|
|
1153
2935
|
type ThermostatsOffResponse = SetNonNullable<Required<RouteResponse<'/thermostats/off'>>>;
|
|
2936
|
+
type ThermostatsOffRequest = SeamHttpRequest<ThermostatsOffResponse, 'action_attempt'>;
|
|
1154
2937
|
type ThermostatsOffOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1155
|
-
type
|
|
2938
|
+
type ThermostatsSetFallbackClimatePresetParameters = RouteRequestBody<'/thermostats/set_fallback_climate_preset'>;
|
|
2939
|
+
/**
|
|
2940
|
+
* @deprecated Use ThermostatsSetFallbackClimatePresetParameters instead.
|
|
2941
|
+
*/
|
|
2942
|
+
type ThermostatsSetFallbackClimatePresetBody = ThermostatsSetFallbackClimatePresetParameters;
|
|
2943
|
+
/**
|
|
2944
|
+
* @deprecated Use ThermostatsSetFallbackClimatePresetRequest instead.
|
|
2945
|
+
*/
|
|
1156
2946
|
type ThermostatsSetFallbackClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/set_fallback_climate_preset'>>>;
|
|
1157
|
-
type
|
|
1158
|
-
type
|
|
2947
|
+
type ThermostatsSetFallbackClimatePresetRequest = SeamHttpRequest<void, undefined>;
|
|
2948
|
+
type ThermostatsSetFallbackClimatePresetOptions = Record<string, never>;
|
|
2949
|
+
type ThermostatsSetFanModeParameters = RouteRequestBody<'/thermostats/set_fan_mode'>;
|
|
2950
|
+
/**
|
|
2951
|
+
* @deprecated Use ThermostatsSetFanModeParameters instead.
|
|
2952
|
+
*/
|
|
2953
|
+
type ThermostatsSetFanModeBody = ThermostatsSetFanModeParameters;
|
|
2954
|
+
/**
|
|
2955
|
+
* @deprecated Use ThermostatsSetFanModeRequest instead.
|
|
2956
|
+
*/
|
|
1159
2957
|
type ThermostatsSetFanModeResponse = SetNonNullable<Required<RouteResponse<'/thermostats/set_fan_mode'>>>;
|
|
2958
|
+
type ThermostatsSetFanModeRequest = SeamHttpRequest<ThermostatsSetFanModeResponse, 'action_attempt'>;
|
|
1160
2959
|
type ThermostatsSetFanModeOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1161
|
-
type
|
|
2960
|
+
type ThermostatsSetHvacModeParameters = RouteRequestBody<'/thermostats/set_hvac_mode'>;
|
|
2961
|
+
/**
|
|
2962
|
+
* @deprecated Use ThermostatsSetHvacModeParameters instead.
|
|
2963
|
+
*/
|
|
2964
|
+
type ThermostatsSetHvacModeBody = ThermostatsSetHvacModeParameters;
|
|
2965
|
+
/**
|
|
2966
|
+
* @deprecated Use ThermostatsSetHvacModeRequest instead.
|
|
2967
|
+
*/
|
|
1162
2968
|
type ThermostatsSetHvacModeResponse = SetNonNullable<Required<RouteResponse<'/thermostats/set_hvac_mode'>>>;
|
|
2969
|
+
type ThermostatsSetHvacModeRequest = SeamHttpRequest<ThermostatsSetHvacModeResponse, 'action_attempt'>;
|
|
1163
2970
|
type ThermostatsSetHvacModeOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1164
|
-
type
|
|
2971
|
+
type ThermostatsSetTemperatureThresholdParameters = RouteRequestBody<'/thermostats/set_temperature_threshold'>;
|
|
2972
|
+
/**
|
|
2973
|
+
* @deprecated Use ThermostatsSetTemperatureThresholdParameters instead.
|
|
2974
|
+
*/
|
|
2975
|
+
type ThermostatsSetTemperatureThresholdBody = ThermostatsSetTemperatureThresholdParameters;
|
|
2976
|
+
/**
|
|
2977
|
+
* @deprecated Use ThermostatsSetTemperatureThresholdRequest instead.
|
|
2978
|
+
*/
|
|
1165
2979
|
type ThermostatsSetTemperatureThresholdResponse = SetNonNullable<Required<RouteResponse<'/thermostats/set_temperature_threshold'>>>;
|
|
1166
|
-
type
|
|
1167
|
-
type
|
|
2980
|
+
type ThermostatsSetTemperatureThresholdRequest = SeamHttpRequest<void, undefined>;
|
|
2981
|
+
type ThermostatsSetTemperatureThresholdOptions = Record<string, never>;
|
|
2982
|
+
type ThermostatsUpdateClimatePresetParameters = RouteRequestBody<'/thermostats/update_climate_preset'>;
|
|
2983
|
+
/**
|
|
2984
|
+
* @deprecated Use ThermostatsUpdateClimatePresetParameters instead.
|
|
2985
|
+
*/
|
|
2986
|
+
type ThermostatsUpdateClimatePresetBody = ThermostatsUpdateClimatePresetParameters;
|
|
2987
|
+
/**
|
|
2988
|
+
* @deprecated Use ThermostatsUpdateClimatePresetRequest instead.
|
|
2989
|
+
*/
|
|
1168
2990
|
type ThermostatsUpdateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_climate_preset'>>>;
|
|
1169
|
-
type
|
|
1170
|
-
type
|
|
2991
|
+
type ThermostatsUpdateClimatePresetRequest = SeamHttpRequest<void, undefined>;
|
|
2992
|
+
type ThermostatsUpdateClimatePresetOptions = Record<string, never>;
|
|
2993
|
+
type ThermostatsUpdateWeeklyProgramParameters = RouteRequestBody<'/thermostats/update_weekly_program'>;
|
|
2994
|
+
/**
|
|
2995
|
+
* @deprecated Use ThermostatsUpdateWeeklyProgramParameters instead.
|
|
2996
|
+
*/
|
|
2997
|
+
type ThermostatsUpdateWeeklyProgramBody = ThermostatsUpdateWeeklyProgramParameters;
|
|
2998
|
+
/**
|
|
2999
|
+
* @deprecated Use ThermostatsUpdateWeeklyProgramRequest instead.
|
|
3000
|
+
*/
|
|
1171
3001
|
type ThermostatsUpdateWeeklyProgramResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_weekly_program'>>>;
|
|
3002
|
+
type ThermostatsUpdateWeeklyProgramRequest = SeamHttpRequest<ThermostatsUpdateWeeklyProgramResponse, 'action_attempt'>;
|
|
1172
3003
|
type ThermostatsUpdateWeeklyProgramOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1173
3004
|
|
|
3005
|
+
declare class SeamHttpUnstableAccessGrants {
|
|
3006
|
+
client: Client;
|
|
3007
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
3008
|
+
readonly ltsVersion = "1.0.0";
|
|
3009
|
+
static ltsVersion: string;
|
|
3010
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
3011
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstableAccessGrants;
|
|
3012
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstableAccessGrants;
|
|
3013
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstableAccessGrants;
|
|
3014
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstableAccessGrants>;
|
|
3015
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstableAccessGrants;
|
|
3016
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstableAccessGrants;
|
|
3017
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3018
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3019
|
+
create(parameters?: UnstableAccessGrantsCreateParameters, options?: UnstableAccessGrantsCreateOptions): UnstableAccessGrantsCreateRequest;
|
|
3020
|
+
delete(parameters?: UnstableAccessGrantsDeleteParameters, options?: UnstableAccessGrantsDeleteOptions): UnstableAccessGrantsDeleteRequest;
|
|
3021
|
+
get(parameters?: UnstableAccessGrantsGetParameters, options?: UnstableAccessGrantsGetOptions): UnstableAccessGrantsGetRequest;
|
|
3022
|
+
list(parameters?: UnstableAccessGrantsListParameters, options?: UnstableAccessGrantsListOptions): UnstableAccessGrantsListRequest;
|
|
3023
|
+
}
|
|
3024
|
+
type UnstableAccessGrantsCreateParameters = RouteRequestBody<'/unstable_access_grants/create'>;
|
|
3025
|
+
/**
|
|
3026
|
+
* @deprecated Use UnstableAccessGrantsCreateParameters instead.
|
|
3027
|
+
*/
|
|
3028
|
+
type UnstableAccessGrantsCreateBody = UnstableAccessGrantsCreateParameters;
|
|
3029
|
+
/**
|
|
3030
|
+
* @deprecated Use UnstableAccessGrantsCreateRequest instead.
|
|
3031
|
+
*/
|
|
3032
|
+
type UnstableAccessGrantsCreateResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_grants/create'>>>;
|
|
3033
|
+
type UnstableAccessGrantsCreateRequest = SeamHttpRequest<UnstableAccessGrantsCreateResponse, 'access_grant'>;
|
|
3034
|
+
type UnstableAccessGrantsCreateOptions = Record<string, never>;
|
|
3035
|
+
type UnstableAccessGrantsDeleteParameters = RouteRequestBody<'/unstable_access_grants/delete'>;
|
|
3036
|
+
/**
|
|
3037
|
+
* @deprecated Use UnstableAccessGrantsDeleteParameters instead.
|
|
3038
|
+
*/
|
|
3039
|
+
type UnstableAccessGrantsDeleteParams = UnstableAccessGrantsDeleteParameters;
|
|
3040
|
+
/**
|
|
3041
|
+
* @deprecated Use UnstableAccessGrantsDeleteRequest instead.
|
|
3042
|
+
*/
|
|
3043
|
+
type UnstableAccessGrantsDeleteResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_grants/delete'>>>;
|
|
3044
|
+
type UnstableAccessGrantsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
3045
|
+
type UnstableAccessGrantsDeleteOptions = Record<string, never>;
|
|
3046
|
+
type UnstableAccessGrantsGetParameters = RouteRequestBody<'/unstable_access_grants/get'>;
|
|
3047
|
+
/**
|
|
3048
|
+
* @deprecated Use UnstableAccessGrantsGetParameters instead.
|
|
3049
|
+
*/
|
|
3050
|
+
type UnstableAccessGrantsGetParams = UnstableAccessGrantsGetParameters;
|
|
3051
|
+
/**
|
|
3052
|
+
* @deprecated Use UnstableAccessGrantsGetRequest instead.
|
|
3053
|
+
*/
|
|
3054
|
+
type UnstableAccessGrantsGetResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_grants/get'>>>;
|
|
3055
|
+
type UnstableAccessGrantsGetRequest = SeamHttpRequest<UnstableAccessGrantsGetResponse, 'access_grant'>;
|
|
3056
|
+
type UnstableAccessGrantsGetOptions = Record<string, never>;
|
|
3057
|
+
type UnstableAccessGrantsListParameters = RouteRequestBody<'/unstable_access_grants/list'>;
|
|
3058
|
+
/**
|
|
3059
|
+
* @deprecated Use UnstableAccessGrantsListParameters instead.
|
|
3060
|
+
*/
|
|
3061
|
+
type UnstableAccessGrantsListParams = UnstableAccessGrantsListParameters;
|
|
3062
|
+
/**
|
|
3063
|
+
* @deprecated Use UnstableAccessGrantsListRequest instead.
|
|
3064
|
+
*/
|
|
3065
|
+
type UnstableAccessGrantsListResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_grants/list'>>>;
|
|
3066
|
+
type UnstableAccessGrantsListRequest = SeamHttpRequest<UnstableAccessGrantsListResponse, 'access_grants'>;
|
|
3067
|
+
type UnstableAccessGrantsListOptions = Record<string, never>;
|
|
3068
|
+
|
|
3069
|
+
declare class SeamHttpUnstableAccessMethods {
|
|
3070
|
+
client: Client;
|
|
3071
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
3072
|
+
readonly ltsVersion = "1.0.0";
|
|
3073
|
+
static ltsVersion: string;
|
|
3074
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
3075
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstableAccessMethods;
|
|
3076
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstableAccessMethods;
|
|
3077
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstableAccessMethods;
|
|
3078
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstableAccessMethods>;
|
|
3079
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstableAccessMethods;
|
|
3080
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstableAccessMethods;
|
|
3081
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3082
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3083
|
+
delete(parameters?: UnstableAccessMethodsDeleteParameters, options?: UnstableAccessMethodsDeleteOptions): UnstableAccessMethodsDeleteRequest;
|
|
3084
|
+
get(parameters?: UnstableAccessMethodsGetParameters, options?: UnstableAccessMethodsGetOptions): UnstableAccessMethodsGetRequest;
|
|
3085
|
+
list(parameters?: UnstableAccessMethodsListParameters, options?: UnstableAccessMethodsListOptions): UnstableAccessMethodsListRequest;
|
|
3086
|
+
}
|
|
3087
|
+
type UnstableAccessMethodsDeleteParameters = RouteRequestBody<'/unstable_access_methods/delete'>;
|
|
3088
|
+
/**
|
|
3089
|
+
* @deprecated Use UnstableAccessMethodsDeleteParameters instead.
|
|
3090
|
+
*/
|
|
3091
|
+
type UnstableAccessMethodsDeleteParams = UnstableAccessMethodsDeleteParameters;
|
|
3092
|
+
/**
|
|
3093
|
+
* @deprecated Use UnstableAccessMethodsDeleteRequest instead.
|
|
3094
|
+
*/
|
|
3095
|
+
type UnstableAccessMethodsDeleteResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_methods/delete'>>>;
|
|
3096
|
+
type UnstableAccessMethodsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
3097
|
+
type UnstableAccessMethodsDeleteOptions = Record<string, never>;
|
|
3098
|
+
type UnstableAccessMethodsGetParameters = RouteRequestBody<'/unstable_access_methods/get'>;
|
|
3099
|
+
/**
|
|
3100
|
+
* @deprecated Use UnstableAccessMethodsGetParameters instead.
|
|
3101
|
+
*/
|
|
3102
|
+
type UnstableAccessMethodsGetParams = UnstableAccessMethodsGetParameters;
|
|
3103
|
+
/**
|
|
3104
|
+
* @deprecated Use UnstableAccessMethodsGetRequest instead.
|
|
3105
|
+
*/
|
|
3106
|
+
type UnstableAccessMethodsGetResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_methods/get'>>>;
|
|
3107
|
+
type UnstableAccessMethodsGetRequest = SeamHttpRequest<UnstableAccessMethodsGetResponse, 'access_method'>;
|
|
3108
|
+
type UnstableAccessMethodsGetOptions = Record<string, never>;
|
|
3109
|
+
type UnstableAccessMethodsListParameters = RouteRequestBody<'/unstable_access_methods/list'>;
|
|
3110
|
+
/**
|
|
3111
|
+
* @deprecated Use UnstableAccessMethodsListParameters instead.
|
|
3112
|
+
*/
|
|
3113
|
+
type UnstableAccessMethodsListParams = UnstableAccessMethodsListParameters;
|
|
3114
|
+
/**
|
|
3115
|
+
* @deprecated Use UnstableAccessMethodsListRequest instead.
|
|
3116
|
+
*/
|
|
3117
|
+
type UnstableAccessMethodsListResponse = SetNonNullable<Required<RouteResponse<'/unstable_access_methods/list'>>>;
|
|
3118
|
+
type UnstableAccessMethodsListRequest = SeamHttpRequest<UnstableAccessMethodsListResponse, 'access_methods'>;
|
|
3119
|
+
type UnstableAccessMethodsListOptions = Record<string, never>;
|
|
3120
|
+
|
|
3121
|
+
declare class SeamHttpUnstableLocations {
|
|
3122
|
+
client: Client;
|
|
3123
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
3124
|
+
readonly ltsVersion = "1.0.0";
|
|
3125
|
+
static ltsVersion: string;
|
|
3126
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
3127
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstableLocations;
|
|
3128
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstableLocations;
|
|
3129
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstableLocations;
|
|
3130
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstableLocations>;
|
|
3131
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstableLocations;
|
|
3132
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstableLocations;
|
|
3133
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3134
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3135
|
+
addAcsEntrances(parameters?: UnstableLocationsAddAcsEntrancesParameters, options?: UnstableLocationsAddAcsEntrancesOptions): UnstableLocationsAddAcsEntrancesRequest;
|
|
3136
|
+
addDevices(parameters?: UnstableLocationsAddDevicesParameters, options?: UnstableLocationsAddDevicesOptions): UnstableLocationsAddDevicesRequest;
|
|
3137
|
+
create(parameters?: UnstableLocationsCreateParameters, options?: UnstableLocationsCreateOptions): UnstableLocationsCreateRequest;
|
|
3138
|
+
delete(parameters?: UnstableLocationsDeleteParameters, options?: UnstableLocationsDeleteOptions): UnstableLocationsDeleteRequest;
|
|
3139
|
+
get(parameters?: UnstableLocationsGetParameters, options?: UnstableLocationsGetOptions): UnstableLocationsGetRequest;
|
|
3140
|
+
list(parameters?: UnstableLocationsListParameters, options?: UnstableLocationsListOptions): UnstableLocationsListRequest;
|
|
3141
|
+
removeAcsEntrances(parameters?: UnstableLocationsRemoveAcsEntrancesParameters, options?: UnstableLocationsRemoveAcsEntrancesOptions): UnstableLocationsRemoveAcsEntrancesRequest;
|
|
3142
|
+
removeDevices(parameters?: UnstableLocationsRemoveDevicesParameters, options?: UnstableLocationsRemoveDevicesOptions): UnstableLocationsRemoveDevicesRequest;
|
|
3143
|
+
update(parameters?: UnstableLocationsUpdateParameters, options?: UnstableLocationsUpdateOptions): UnstableLocationsUpdateRequest;
|
|
3144
|
+
}
|
|
3145
|
+
type UnstableLocationsAddAcsEntrancesParameters = RouteRequestBody<'/unstable_locations/add_acs_entrances'>;
|
|
3146
|
+
/**
|
|
3147
|
+
* @deprecated Use UnstableLocationsAddAcsEntrancesParameters instead.
|
|
3148
|
+
*/
|
|
3149
|
+
type UnstableLocationsAddAcsEntrancesBody = UnstableLocationsAddAcsEntrancesParameters;
|
|
3150
|
+
/**
|
|
3151
|
+
* @deprecated Use UnstableLocationsAddAcsEntrancesRequest instead.
|
|
3152
|
+
*/
|
|
3153
|
+
type UnstableLocationsAddAcsEntrancesResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/add_acs_entrances'>>>;
|
|
3154
|
+
type UnstableLocationsAddAcsEntrancesRequest = SeamHttpRequest<void, undefined>;
|
|
3155
|
+
type UnstableLocationsAddAcsEntrancesOptions = Record<string, never>;
|
|
3156
|
+
type UnstableLocationsAddDevicesParameters = RouteRequestBody<'/unstable_locations/add_devices'>;
|
|
3157
|
+
/**
|
|
3158
|
+
* @deprecated Use UnstableLocationsAddDevicesParameters instead.
|
|
3159
|
+
*/
|
|
3160
|
+
type UnstableLocationsAddDevicesBody = UnstableLocationsAddDevicesParameters;
|
|
3161
|
+
/**
|
|
3162
|
+
* @deprecated Use UnstableLocationsAddDevicesRequest instead.
|
|
3163
|
+
*/
|
|
3164
|
+
type UnstableLocationsAddDevicesResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/add_devices'>>>;
|
|
3165
|
+
type UnstableLocationsAddDevicesRequest = SeamHttpRequest<void, undefined>;
|
|
3166
|
+
type UnstableLocationsAddDevicesOptions = Record<string, never>;
|
|
3167
|
+
type UnstableLocationsCreateParameters = RouteRequestBody<'/unstable_locations/create'>;
|
|
3168
|
+
/**
|
|
3169
|
+
* @deprecated Use UnstableLocationsCreateParameters instead.
|
|
3170
|
+
*/
|
|
3171
|
+
type UnstableLocationsCreateBody = UnstableLocationsCreateParameters;
|
|
3172
|
+
/**
|
|
3173
|
+
* @deprecated Use UnstableLocationsCreateRequest instead.
|
|
3174
|
+
*/
|
|
3175
|
+
type UnstableLocationsCreateResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/create'>>>;
|
|
3176
|
+
type UnstableLocationsCreateRequest = SeamHttpRequest<UnstableLocationsCreateResponse, 'location'>;
|
|
3177
|
+
type UnstableLocationsCreateOptions = Record<string, never>;
|
|
3178
|
+
type UnstableLocationsDeleteParameters = RouteRequestBody<'/unstable_locations/delete'>;
|
|
3179
|
+
/**
|
|
3180
|
+
* @deprecated Use UnstableLocationsDeleteParameters instead.
|
|
3181
|
+
*/
|
|
3182
|
+
type UnstableLocationsDeleteParams = UnstableLocationsDeleteParameters;
|
|
3183
|
+
/**
|
|
3184
|
+
* @deprecated Use UnstableLocationsDeleteRequest instead.
|
|
3185
|
+
*/
|
|
3186
|
+
type UnstableLocationsDeleteResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/delete'>>>;
|
|
3187
|
+
type UnstableLocationsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
3188
|
+
type UnstableLocationsDeleteOptions = Record<string, never>;
|
|
3189
|
+
type UnstableLocationsGetParameters = RouteRequestBody<'/unstable_locations/get'>;
|
|
3190
|
+
/**
|
|
3191
|
+
* @deprecated Use UnstableLocationsGetParameters instead.
|
|
3192
|
+
*/
|
|
3193
|
+
type UnstableLocationsGetParams = UnstableLocationsGetParameters;
|
|
3194
|
+
/**
|
|
3195
|
+
* @deprecated Use UnstableLocationsGetRequest instead.
|
|
3196
|
+
*/
|
|
3197
|
+
type UnstableLocationsGetResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/get'>>>;
|
|
3198
|
+
type UnstableLocationsGetRequest = SeamHttpRequest<UnstableLocationsGetResponse, 'location'>;
|
|
3199
|
+
type UnstableLocationsGetOptions = Record<string, never>;
|
|
3200
|
+
type UnstableLocationsListParameters = RouteRequestParams<'/unstable_locations/list'>;
|
|
3201
|
+
/**
|
|
3202
|
+
* @deprecated Use UnstableLocationsListParameters instead.
|
|
3203
|
+
*/
|
|
3204
|
+
type UnstableLocationsListParams = UnstableLocationsListParameters;
|
|
3205
|
+
/**
|
|
3206
|
+
* @deprecated Use UnstableLocationsListRequest instead.
|
|
3207
|
+
*/
|
|
3208
|
+
type UnstableLocationsListResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/list'>>>;
|
|
3209
|
+
type UnstableLocationsListRequest = SeamHttpRequest<UnstableLocationsListResponse, 'locations'>;
|
|
3210
|
+
type UnstableLocationsListOptions = Record<string, never>;
|
|
3211
|
+
type UnstableLocationsRemoveAcsEntrancesParameters = RouteRequestBody<'/unstable_locations/remove_acs_entrances'>;
|
|
3212
|
+
/**
|
|
3213
|
+
* @deprecated Use UnstableLocationsRemoveAcsEntrancesParameters instead.
|
|
3214
|
+
*/
|
|
3215
|
+
type UnstableLocationsRemoveAcsEntrancesParams = UnstableLocationsRemoveAcsEntrancesParameters;
|
|
3216
|
+
/**
|
|
3217
|
+
* @deprecated Use UnstableLocationsRemoveAcsEntrancesRequest instead.
|
|
3218
|
+
*/
|
|
3219
|
+
type UnstableLocationsRemoveAcsEntrancesResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/remove_acs_entrances'>>>;
|
|
3220
|
+
type UnstableLocationsRemoveAcsEntrancesRequest = SeamHttpRequest<void, undefined>;
|
|
3221
|
+
type UnstableLocationsRemoveAcsEntrancesOptions = Record<string, never>;
|
|
3222
|
+
type UnstableLocationsRemoveDevicesParameters = RouteRequestBody<'/unstable_locations/remove_devices'>;
|
|
3223
|
+
/**
|
|
3224
|
+
* @deprecated Use UnstableLocationsRemoveDevicesParameters instead.
|
|
3225
|
+
*/
|
|
3226
|
+
type UnstableLocationsRemoveDevicesParams = UnstableLocationsRemoveDevicesParameters;
|
|
3227
|
+
/**
|
|
3228
|
+
* @deprecated Use UnstableLocationsRemoveDevicesRequest instead.
|
|
3229
|
+
*/
|
|
3230
|
+
type UnstableLocationsRemoveDevicesResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/remove_devices'>>>;
|
|
3231
|
+
type UnstableLocationsRemoveDevicesRequest = SeamHttpRequest<void, undefined>;
|
|
3232
|
+
type UnstableLocationsRemoveDevicesOptions = Record<string, never>;
|
|
3233
|
+
type UnstableLocationsUpdateParameters = RouteRequestBody<'/unstable_locations/update'>;
|
|
3234
|
+
/**
|
|
3235
|
+
* @deprecated Use UnstableLocationsUpdateParameters instead.
|
|
3236
|
+
*/
|
|
3237
|
+
type UnstableLocationsUpdateBody = UnstableLocationsUpdateParameters;
|
|
3238
|
+
/**
|
|
3239
|
+
* @deprecated Use UnstableLocationsUpdateRequest instead.
|
|
3240
|
+
*/
|
|
3241
|
+
type UnstableLocationsUpdateResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/update'>>>;
|
|
3242
|
+
type UnstableLocationsUpdateRequest = SeamHttpRequest<UnstableLocationsUpdateResponse, 'location'>;
|
|
3243
|
+
type UnstableLocationsUpdateOptions = Record<string, never>;
|
|
3244
|
+
|
|
3245
|
+
declare class SeamHttpUnstablePartnerBuildingBlocks {
|
|
3246
|
+
client: Client;
|
|
3247
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
3248
|
+
readonly ltsVersion = "1.0.0";
|
|
3249
|
+
static ltsVersion: string;
|
|
3250
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
3251
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstablePartnerBuildingBlocks;
|
|
3252
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstablePartnerBuildingBlocks;
|
|
3253
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstablePartnerBuildingBlocks;
|
|
3254
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstablePartnerBuildingBlocks>;
|
|
3255
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstablePartnerBuildingBlocks;
|
|
3256
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstablePartnerBuildingBlocks;
|
|
3257
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3258
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3259
|
+
connectAccounts(parameters?: UnstablePartnerBuildingBlocksConnectAccountsParameters, options?: UnstablePartnerBuildingBlocksConnectAccountsOptions): UnstablePartnerBuildingBlocksConnectAccountsRequest;
|
|
3260
|
+
generateMagicLink(parameters?: UnstablePartnerBuildingBlocksGenerateMagicLinkParameters, options?: UnstablePartnerBuildingBlocksGenerateMagicLinkOptions): UnstablePartnerBuildingBlocksGenerateMagicLinkRequest;
|
|
3261
|
+
manageDevices(parameters?: UnstablePartnerBuildingBlocksManageDevicesParameters, options?: UnstablePartnerBuildingBlocksManageDevicesOptions): UnstablePartnerBuildingBlocksManageDevicesRequest;
|
|
3262
|
+
organizeSpaces(parameters?: UnstablePartnerBuildingBlocksOrganizeSpacesParameters, options?: UnstablePartnerBuildingBlocksOrganizeSpacesOptions): UnstablePartnerBuildingBlocksOrganizeSpacesRequest;
|
|
3263
|
+
}
|
|
3264
|
+
type UnstablePartnerBuildingBlocksConnectAccountsParameters = RouteRequestBody<'/unstable_partner/building_blocks/connect_accounts'>;
|
|
3265
|
+
/**
|
|
3266
|
+
* @deprecated Use UnstablePartnerBuildingBlocksConnectAccountsParameters instead.
|
|
3267
|
+
*/
|
|
3268
|
+
type UnstablePartnerBuildingBlocksConnectAccountsBody = UnstablePartnerBuildingBlocksConnectAccountsParameters;
|
|
3269
|
+
/**
|
|
3270
|
+
* @deprecated Use UnstablePartnerBuildingBlocksConnectAccountsRequest instead.
|
|
3271
|
+
*/
|
|
3272
|
+
type UnstablePartnerBuildingBlocksConnectAccountsResponse = SetNonNullable<Required<RouteResponse<'/unstable_partner/building_blocks/connect_accounts'>>>;
|
|
3273
|
+
type UnstablePartnerBuildingBlocksConnectAccountsRequest = SeamHttpRequest<UnstablePartnerBuildingBlocksConnectAccountsResponse, 'magic_link'>;
|
|
3274
|
+
type UnstablePartnerBuildingBlocksConnectAccountsOptions = Record<string, never>;
|
|
3275
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkParameters = RouteRequestBody<'/unstable_partner/building_blocks/generate_magic_link'>;
|
|
3276
|
+
/**
|
|
3277
|
+
* @deprecated Use UnstablePartnerBuildingBlocksGenerateMagicLinkParameters instead.
|
|
3278
|
+
*/
|
|
3279
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkParams = UnstablePartnerBuildingBlocksGenerateMagicLinkParameters;
|
|
3280
|
+
/**
|
|
3281
|
+
* @deprecated Use UnstablePartnerBuildingBlocksGenerateMagicLinkRequest instead.
|
|
3282
|
+
*/
|
|
3283
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkResponse = SetNonNullable<Required<RouteResponse<'/unstable_partner/building_blocks/generate_magic_link'>>>;
|
|
3284
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkRequest = SeamHttpRequest<UnstablePartnerBuildingBlocksGenerateMagicLinkResponse, 'magic_link'>;
|
|
3285
|
+
type UnstablePartnerBuildingBlocksGenerateMagicLinkOptions = Record<string, never>;
|
|
3286
|
+
type UnstablePartnerBuildingBlocksManageDevicesParameters = RouteRequestBody<'/unstable_partner/building_blocks/manage_devices'>;
|
|
3287
|
+
/**
|
|
3288
|
+
* @deprecated Use UnstablePartnerBuildingBlocksManageDevicesParameters instead.
|
|
3289
|
+
*/
|
|
3290
|
+
type UnstablePartnerBuildingBlocksManageDevicesBody = UnstablePartnerBuildingBlocksManageDevicesParameters;
|
|
3291
|
+
/**
|
|
3292
|
+
* @deprecated Use UnstablePartnerBuildingBlocksManageDevicesRequest instead.
|
|
3293
|
+
*/
|
|
3294
|
+
type UnstablePartnerBuildingBlocksManageDevicesResponse = SetNonNullable<Required<RouteResponse<'/unstable_partner/building_blocks/manage_devices'>>>;
|
|
3295
|
+
type UnstablePartnerBuildingBlocksManageDevicesRequest = SeamHttpRequest<UnstablePartnerBuildingBlocksManageDevicesResponse, 'magic_link'>;
|
|
3296
|
+
type UnstablePartnerBuildingBlocksManageDevicesOptions = Record<string, never>;
|
|
3297
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesParameters = RouteRequestBody<'/unstable_partner/building_blocks/organize_spaces'>;
|
|
3298
|
+
/**
|
|
3299
|
+
* @deprecated Use UnstablePartnerBuildingBlocksOrganizeSpacesParameters instead.
|
|
3300
|
+
*/
|
|
3301
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesBody = UnstablePartnerBuildingBlocksOrganizeSpacesParameters;
|
|
3302
|
+
/**
|
|
3303
|
+
* @deprecated Use UnstablePartnerBuildingBlocksOrganizeSpacesRequest instead.
|
|
3304
|
+
*/
|
|
3305
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesResponse = SetNonNullable<Required<RouteResponse<'/unstable_partner/building_blocks/organize_spaces'>>>;
|
|
3306
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesRequest = SeamHttpRequest<UnstablePartnerBuildingBlocksOrganizeSpacesResponse, 'magic_link'>;
|
|
3307
|
+
type UnstablePartnerBuildingBlocksOrganizeSpacesOptions = Record<string, never>;
|
|
3308
|
+
|
|
3309
|
+
declare class SeamHttpUnstablePartnerResources {
|
|
3310
|
+
client: Client;
|
|
3311
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
3312
|
+
readonly ltsVersion = "1.0.0";
|
|
3313
|
+
static ltsVersion: string;
|
|
3314
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
3315
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstablePartnerResources;
|
|
3316
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstablePartnerResources;
|
|
3317
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstablePartnerResources;
|
|
3318
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstablePartnerResources>;
|
|
3319
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstablePartnerResources;
|
|
3320
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstablePartnerResources;
|
|
3321
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3322
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3323
|
+
push(parameters?: UnstablePartnerResourcesPushParameters, options?: UnstablePartnerResourcesPushOptions): UnstablePartnerResourcesPushRequest;
|
|
3324
|
+
}
|
|
3325
|
+
type UnstablePartnerResourcesPushParameters = RouteRequestBody<'/unstable_partner/resources/push'>;
|
|
3326
|
+
/**
|
|
3327
|
+
* @deprecated Use UnstablePartnerResourcesPushParameters instead.
|
|
3328
|
+
*/
|
|
3329
|
+
type UnstablePartnerResourcesPushBody = UnstablePartnerResourcesPushParameters;
|
|
3330
|
+
/**
|
|
3331
|
+
* @deprecated Use UnstablePartnerResourcesPushRequest instead.
|
|
3332
|
+
*/
|
|
3333
|
+
type UnstablePartnerResourcesPushResponse = SetNonNullable<Required<RouteResponse<'/unstable_partner/resources/push'>>>;
|
|
3334
|
+
type UnstablePartnerResourcesPushRequest = SeamHttpRequest<void, undefined>;
|
|
3335
|
+
type UnstablePartnerResourcesPushOptions = Record<string, never>;
|
|
3336
|
+
|
|
3337
|
+
declare class SeamHttpUnstablePartner {
|
|
3338
|
+
client: Client;
|
|
3339
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
3340
|
+
readonly ltsVersion = "1.0.0";
|
|
3341
|
+
static ltsVersion: string;
|
|
3342
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
3343
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstablePartner;
|
|
3344
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstablePartner;
|
|
3345
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstablePartner;
|
|
3346
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstablePartner>;
|
|
3347
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstablePartner;
|
|
3348
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstablePartner;
|
|
3349
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3350
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3351
|
+
get buildingBlocks(): SeamHttpUnstablePartnerBuildingBlocks;
|
|
3352
|
+
get resources(): SeamHttpUnstablePartnerResources;
|
|
3353
|
+
}
|
|
3354
|
+
|
|
1174
3355
|
declare class SeamHttpUserIdentitiesEnrollmentAutomations {
|
|
1175
3356
|
client: Client;
|
|
1176
3357
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -1185,23 +3366,55 @@ declare class SeamHttpUserIdentitiesEnrollmentAutomations {
|
|
|
1185
3366
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUserIdentitiesEnrollmentAutomations;
|
|
1186
3367
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1187
3368
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1188
|
-
delete(
|
|
1189
|
-
get(
|
|
1190
|
-
launch(
|
|
1191
|
-
list(
|
|
3369
|
+
delete(parameters?: UserIdentitiesEnrollmentAutomationsDeleteParameters, options?: UserIdentitiesEnrollmentAutomationsDeleteOptions): UserIdentitiesEnrollmentAutomationsDeleteRequest;
|
|
3370
|
+
get(parameters?: UserIdentitiesEnrollmentAutomationsGetParameters, options?: UserIdentitiesEnrollmentAutomationsGetOptions): UserIdentitiesEnrollmentAutomationsGetRequest;
|
|
3371
|
+
launch(parameters?: UserIdentitiesEnrollmentAutomationsLaunchParameters, options?: UserIdentitiesEnrollmentAutomationsLaunchOptions): UserIdentitiesEnrollmentAutomationsLaunchRequest;
|
|
3372
|
+
list(parameters?: UserIdentitiesEnrollmentAutomationsListParameters, options?: UserIdentitiesEnrollmentAutomationsListOptions): UserIdentitiesEnrollmentAutomationsListRequest;
|
|
1192
3373
|
}
|
|
1193
|
-
type
|
|
3374
|
+
type UserIdentitiesEnrollmentAutomationsDeleteParameters = RouteRequestBody<'/user_identities/enrollment_automations/delete'>;
|
|
3375
|
+
/**
|
|
3376
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsDeleteParameters instead.
|
|
3377
|
+
*/
|
|
3378
|
+
type UserIdentitiesEnrollmentAutomationsDeleteParams = UserIdentitiesEnrollmentAutomationsDeleteParameters;
|
|
3379
|
+
/**
|
|
3380
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsDeleteRequest instead.
|
|
3381
|
+
*/
|
|
1194
3382
|
type UserIdentitiesEnrollmentAutomationsDeleteResponse = SetNonNullable<Required<RouteResponse<'/user_identities/enrollment_automations/delete'>>>;
|
|
1195
|
-
type
|
|
1196
|
-
type
|
|
3383
|
+
type UserIdentitiesEnrollmentAutomationsDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
3384
|
+
type UserIdentitiesEnrollmentAutomationsDeleteOptions = Record<string, never>;
|
|
3385
|
+
type UserIdentitiesEnrollmentAutomationsGetParameters = RouteRequestBody<'/user_identities/enrollment_automations/get'>;
|
|
3386
|
+
/**
|
|
3387
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsGetParameters instead.
|
|
3388
|
+
*/
|
|
3389
|
+
type UserIdentitiesEnrollmentAutomationsGetParams = UserIdentitiesEnrollmentAutomationsGetParameters;
|
|
3390
|
+
/**
|
|
3391
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsGetRequest instead.
|
|
3392
|
+
*/
|
|
1197
3393
|
type UserIdentitiesEnrollmentAutomationsGetResponse = SetNonNullable<Required<RouteResponse<'/user_identities/enrollment_automations/get'>>>;
|
|
1198
|
-
type
|
|
1199
|
-
type
|
|
3394
|
+
type UserIdentitiesEnrollmentAutomationsGetRequest = SeamHttpRequest<UserIdentitiesEnrollmentAutomationsGetResponse, 'enrollment_automation'>;
|
|
3395
|
+
type UserIdentitiesEnrollmentAutomationsGetOptions = Record<string, never>;
|
|
3396
|
+
type UserIdentitiesEnrollmentAutomationsLaunchParameters = RouteRequestBody<'/user_identities/enrollment_automations/launch'>;
|
|
3397
|
+
/**
|
|
3398
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsLaunchParameters instead.
|
|
3399
|
+
*/
|
|
3400
|
+
type UserIdentitiesEnrollmentAutomationsLaunchBody = UserIdentitiesEnrollmentAutomationsLaunchParameters;
|
|
3401
|
+
/**
|
|
3402
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsLaunchRequest instead.
|
|
3403
|
+
*/
|
|
1200
3404
|
type UserIdentitiesEnrollmentAutomationsLaunchResponse = SetNonNullable<Required<RouteResponse<'/user_identities/enrollment_automations/launch'>>>;
|
|
1201
|
-
type
|
|
1202
|
-
type
|
|
3405
|
+
type UserIdentitiesEnrollmentAutomationsLaunchRequest = SeamHttpRequest<UserIdentitiesEnrollmentAutomationsLaunchResponse, 'enrollment_automation'>;
|
|
3406
|
+
type UserIdentitiesEnrollmentAutomationsLaunchOptions = Record<string, never>;
|
|
3407
|
+
type UserIdentitiesEnrollmentAutomationsListParameters = RouteRequestBody<'/user_identities/enrollment_automations/list'>;
|
|
3408
|
+
/**
|
|
3409
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsListParameters instead.
|
|
3410
|
+
*/
|
|
3411
|
+
type UserIdentitiesEnrollmentAutomationsListParams = UserIdentitiesEnrollmentAutomationsListParameters;
|
|
3412
|
+
/**
|
|
3413
|
+
* @deprecated Use UserIdentitiesEnrollmentAutomationsListRequest instead.
|
|
3414
|
+
*/
|
|
1203
3415
|
type UserIdentitiesEnrollmentAutomationsListResponse = SetNonNullable<Required<RouteResponse<'/user_identities/enrollment_automations/list'>>>;
|
|
1204
|
-
type
|
|
3416
|
+
type UserIdentitiesEnrollmentAutomationsListRequest = SeamHttpRequest<UserIdentitiesEnrollmentAutomationsListResponse, 'enrollment_automations'>;
|
|
3417
|
+
type UserIdentitiesEnrollmentAutomationsListOptions = Record<string, never>;
|
|
1205
3418
|
|
|
1206
3419
|
declare class SeamHttpUserIdentities {
|
|
1207
3420
|
client: Client;
|
|
@@ -1218,59 +3431,163 @@ declare class SeamHttpUserIdentities {
|
|
|
1218
3431
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1219
3432
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1220
3433
|
get enrollmentAutomations(): SeamHttpUserIdentitiesEnrollmentAutomations;
|
|
1221
|
-
addAcsUser(
|
|
1222
|
-
create(
|
|
1223
|
-
delete(
|
|
1224
|
-
generateInstantKey(
|
|
1225
|
-
get(
|
|
1226
|
-
grantAccessToDevice(
|
|
1227
|
-
list(
|
|
1228
|
-
listAccessibleDevices(
|
|
1229
|
-
listAcsSystems(
|
|
1230
|
-
listAcsUsers(
|
|
1231
|
-
removeAcsUser(
|
|
1232
|
-
revokeAccessToDevice(
|
|
1233
|
-
update(
|
|
1234
|
-
}
|
|
1235
|
-
type
|
|
3434
|
+
addAcsUser(parameters?: UserIdentitiesAddAcsUserParameters, options?: UserIdentitiesAddAcsUserOptions): UserIdentitiesAddAcsUserRequest;
|
|
3435
|
+
create(parameters?: UserIdentitiesCreateParameters, options?: UserIdentitiesCreateOptions): UserIdentitiesCreateRequest;
|
|
3436
|
+
delete(parameters?: UserIdentitiesDeleteParameters, options?: UserIdentitiesDeleteOptions): UserIdentitiesDeleteRequest;
|
|
3437
|
+
generateInstantKey(parameters?: UserIdentitiesGenerateInstantKeyParameters, options?: UserIdentitiesGenerateInstantKeyOptions): UserIdentitiesGenerateInstantKeyRequest;
|
|
3438
|
+
get(parameters?: UserIdentitiesGetParameters, options?: UserIdentitiesGetOptions): UserIdentitiesGetRequest;
|
|
3439
|
+
grantAccessToDevice(parameters?: UserIdentitiesGrantAccessToDeviceParameters, options?: UserIdentitiesGrantAccessToDeviceOptions): UserIdentitiesGrantAccessToDeviceRequest;
|
|
3440
|
+
list(parameters?: UserIdentitiesListParameters, options?: UserIdentitiesListOptions): UserIdentitiesListRequest;
|
|
3441
|
+
listAccessibleDevices(parameters?: UserIdentitiesListAccessibleDevicesParameters, options?: UserIdentitiesListAccessibleDevicesOptions): UserIdentitiesListAccessibleDevicesRequest;
|
|
3442
|
+
listAcsSystems(parameters?: UserIdentitiesListAcsSystemsParameters, options?: UserIdentitiesListAcsSystemsOptions): UserIdentitiesListAcsSystemsRequest;
|
|
3443
|
+
listAcsUsers(parameters?: UserIdentitiesListAcsUsersParameters, options?: UserIdentitiesListAcsUsersOptions): UserIdentitiesListAcsUsersRequest;
|
|
3444
|
+
removeAcsUser(parameters?: UserIdentitiesRemoveAcsUserParameters, options?: UserIdentitiesRemoveAcsUserOptions): UserIdentitiesRemoveAcsUserRequest;
|
|
3445
|
+
revokeAccessToDevice(parameters?: UserIdentitiesRevokeAccessToDeviceParameters, options?: UserIdentitiesRevokeAccessToDeviceOptions): UserIdentitiesRevokeAccessToDeviceRequest;
|
|
3446
|
+
update(parameters?: UserIdentitiesUpdateParameters, options?: UserIdentitiesUpdateOptions): UserIdentitiesUpdateRequest;
|
|
3447
|
+
}
|
|
3448
|
+
type UserIdentitiesAddAcsUserParameters = RouteRequestBody<'/user_identities/add_acs_user'>;
|
|
3449
|
+
/**
|
|
3450
|
+
* @deprecated Use UserIdentitiesAddAcsUserParameters instead.
|
|
3451
|
+
*/
|
|
3452
|
+
type UserIdentitiesAddAcsUserBody = UserIdentitiesAddAcsUserParameters;
|
|
3453
|
+
/**
|
|
3454
|
+
* @deprecated Use UserIdentitiesAddAcsUserRequest instead.
|
|
3455
|
+
*/
|
|
1236
3456
|
type UserIdentitiesAddAcsUserResponse = SetNonNullable<Required<RouteResponse<'/user_identities/add_acs_user'>>>;
|
|
1237
|
-
type
|
|
1238
|
-
type
|
|
3457
|
+
type UserIdentitiesAddAcsUserRequest = SeamHttpRequest<void, undefined>;
|
|
3458
|
+
type UserIdentitiesAddAcsUserOptions = Record<string, never>;
|
|
3459
|
+
type UserIdentitiesCreateParameters = RouteRequestBody<'/user_identities/create'>;
|
|
3460
|
+
/**
|
|
3461
|
+
* @deprecated Use UserIdentitiesCreateParameters instead.
|
|
3462
|
+
*/
|
|
3463
|
+
type UserIdentitiesCreateBody = UserIdentitiesCreateParameters;
|
|
3464
|
+
/**
|
|
3465
|
+
* @deprecated Use UserIdentitiesCreateRequest instead.
|
|
3466
|
+
*/
|
|
1239
3467
|
type UserIdentitiesCreateResponse = SetNonNullable<Required<RouteResponse<'/user_identities/create'>>>;
|
|
1240
|
-
type
|
|
1241
|
-
type
|
|
3468
|
+
type UserIdentitiesCreateRequest = SeamHttpRequest<UserIdentitiesCreateResponse, 'user_identity'>;
|
|
3469
|
+
type UserIdentitiesCreateOptions = Record<string, never>;
|
|
3470
|
+
type UserIdentitiesDeleteParameters = RouteRequestBody<'/user_identities/delete'>;
|
|
3471
|
+
/**
|
|
3472
|
+
* @deprecated Use UserIdentitiesDeleteParameters instead.
|
|
3473
|
+
*/
|
|
3474
|
+
type UserIdentitiesDeleteParams = UserIdentitiesDeleteParameters;
|
|
3475
|
+
/**
|
|
3476
|
+
* @deprecated Use UserIdentitiesDeleteRequest instead.
|
|
3477
|
+
*/
|
|
1242
3478
|
type UserIdentitiesDeleteResponse = SetNonNullable<Required<RouteResponse<'/user_identities/delete'>>>;
|
|
1243
|
-
type
|
|
1244
|
-
type
|
|
3479
|
+
type UserIdentitiesDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
3480
|
+
type UserIdentitiesDeleteOptions = Record<string, never>;
|
|
3481
|
+
type UserIdentitiesGenerateInstantKeyParameters = RouteRequestBody<'/user_identities/generate_instant_key'>;
|
|
3482
|
+
/**
|
|
3483
|
+
* @deprecated Use UserIdentitiesGenerateInstantKeyParameters instead.
|
|
3484
|
+
*/
|
|
3485
|
+
type UserIdentitiesGenerateInstantKeyBody = UserIdentitiesGenerateInstantKeyParameters;
|
|
3486
|
+
/**
|
|
3487
|
+
* @deprecated Use UserIdentitiesGenerateInstantKeyRequest instead.
|
|
3488
|
+
*/
|
|
1245
3489
|
type UserIdentitiesGenerateInstantKeyResponse = SetNonNullable<Required<RouteResponse<'/user_identities/generate_instant_key'>>>;
|
|
1246
|
-
type
|
|
1247
|
-
type
|
|
3490
|
+
type UserIdentitiesGenerateInstantKeyRequest = SeamHttpRequest<UserIdentitiesGenerateInstantKeyResponse, 'instant_key'>;
|
|
3491
|
+
type UserIdentitiesGenerateInstantKeyOptions = Record<string, never>;
|
|
3492
|
+
type UserIdentitiesGetParameters = RouteRequestParams<'/user_identities/get'>;
|
|
3493
|
+
/**
|
|
3494
|
+
* @deprecated Use UserIdentitiesGetParameters instead.
|
|
3495
|
+
*/
|
|
3496
|
+
type UserIdentitiesGetParams = UserIdentitiesGetParameters;
|
|
3497
|
+
/**
|
|
3498
|
+
* @deprecated Use UserIdentitiesGetRequest instead.
|
|
3499
|
+
*/
|
|
1248
3500
|
type UserIdentitiesGetResponse = SetNonNullable<Required<RouteResponse<'/user_identities/get'>>>;
|
|
1249
|
-
type
|
|
1250
|
-
type
|
|
3501
|
+
type UserIdentitiesGetRequest = SeamHttpRequest<UserIdentitiesGetResponse, 'user_identity'>;
|
|
3502
|
+
type UserIdentitiesGetOptions = Record<string, never>;
|
|
3503
|
+
type UserIdentitiesGrantAccessToDeviceParameters = RouteRequestBody<'/user_identities/grant_access_to_device'>;
|
|
3504
|
+
/**
|
|
3505
|
+
* @deprecated Use UserIdentitiesGrantAccessToDeviceParameters instead.
|
|
3506
|
+
*/
|
|
3507
|
+
type UserIdentitiesGrantAccessToDeviceBody = UserIdentitiesGrantAccessToDeviceParameters;
|
|
3508
|
+
/**
|
|
3509
|
+
* @deprecated Use UserIdentitiesGrantAccessToDeviceRequest instead.
|
|
3510
|
+
*/
|
|
1251
3511
|
type UserIdentitiesGrantAccessToDeviceResponse = SetNonNullable<Required<RouteResponse<'/user_identities/grant_access_to_device'>>>;
|
|
1252
|
-
type
|
|
1253
|
-
type
|
|
3512
|
+
type UserIdentitiesGrantAccessToDeviceRequest = SeamHttpRequest<void, undefined>;
|
|
3513
|
+
type UserIdentitiesGrantAccessToDeviceOptions = Record<string, never>;
|
|
3514
|
+
type UserIdentitiesListParameters = RouteRequestBody<'/user_identities/list'>;
|
|
3515
|
+
/**
|
|
3516
|
+
* @deprecated Use UserIdentitiesListParameters instead.
|
|
3517
|
+
*/
|
|
3518
|
+
type UserIdentitiesListParams = UserIdentitiesListParameters;
|
|
3519
|
+
/**
|
|
3520
|
+
* @deprecated Use UserIdentitiesListRequest instead.
|
|
3521
|
+
*/
|
|
1254
3522
|
type UserIdentitiesListResponse = SetNonNullable<Required<RouteResponse<'/user_identities/list'>>>;
|
|
1255
|
-
type
|
|
1256
|
-
type
|
|
3523
|
+
type UserIdentitiesListRequest = SeamHttpRequest<UserIdentitiesListResponse, 'user_identities'>;
|
|
3524
|
+
type UserIdentitiesListOptions = Record<string, never>;
|
|
3525
|
+
type UserIdentitiesListAccessibleDevicesParameters = RouteRequestBody<'/user_identities/list_accessible_devices'>;
|
|
3526
|
+
/**
|
|
3527
|
+
* @deprecated Use UserIdentitiesListAccessibleDevicesParameters instead.
|
|
3528
|
+
*/
|
|
3529
|
+
type UserIdentitiesListAccessibleDevicesParams = UserIdentitiesListAccessibleDevicesParameters;
|
|
3530
|
+
/**
|
|
3531
|
+
* @deprecated Use UserIdentitiesListAccessibleDevicesRequest instead.
|
|
3532
|
+
*/
|
|
1257
3533
|
type UserIdentitiesListAccessibleDevicesResponse = SetNonNullable<Required<RouteResponse<'/user_identities/list_accessible_devices'>>>;
|
|
1258
|
-
type
|
|
1259
|
-
type
|
|
3534
|
+
type UserIdentitiesListAccessibleDevicesRequest = SeamHttpRequest<UserIdentitiesListAccessibleDevicesResponse, 'devices'>;
|
|
3535
|
+
type UserIdentitiesListAccessibleDevicesOptions = Record<string, never>;
|
|
3536
|
+
type UserIdentitiesListAcsSystemsParameters = RouteRequestBody<'/user_identities/list_acs_systems'>;
|
|
3537
|
+
/**
|
|
3538
|
+
* @deprecated Use UserIdentitiesListAcsSystemsParameters instead.
|
|
3539
|
+
*/
|
|
3540
|
+
type UserIdentitiesListAcsSystemsParams = UserIdentitiesListAcsSystemsParameters;
|
|
3541
|
+
/**
|
|
3542
|
+
* @deprecated Use UserIdentitiesListAcsSystemsRequest instead.
|
|
3543
|
+
*/
|
|
1260
3544
|
type UserIdentitiesListAcsSystemsResponse = SetNonNullable<Required<RouteResponse<'/user_identities/list_acs_systems'>>>;
|
|
1261
|
-
type
|
|
1262
|
-
type
|
|
3545
|
+
type UserIdentitiesListAcsSystemsRequest = SeamHttpRequest<UserIdentitiesListAcsSystemsResponse, 'acs_systems'>;
|
|
3546
|
+
type UserIdentitiesListAcsSystemsOptions = Record<string, never>;
|
|
3547
|
+
type UserIdentitiesListAcsUsersParameters = RouteRequestBody<'/user_identities/list_acs_users'>;
|
|
3548
|
+
/**
|
|
3549
|
+
* @deprecated Use UserIdentitiesListAcsUsersParameters instead.
|
|
3550
|
+
*/
|
|
3551
|
+
type UserIdentitiesListAcsUsersParams = UserIdentitiesListAcsUsersParameters;
|
|
3552
|
+
/**
|
|
3553
|
+
* @deprecated Use UserIdentitiesListAcsUsersRequest instead.
|
|
3554
|
+
*/
|
|
1263
3555
|
type UserIdentitiesListAcsUsersResponse = SetNonNullable<Required<RouteResponse<'/user_identities/list_acs_users'>>>;
|
|
1264
|
-
type
|
|
1265
|
-
type
|
|
3556
|
+
type UserIdentitiesListAcsUsersRequest = SeamHttpRequest<UserIdentitiesListAcsUsersResponse, 'acs_users'>;
|
|
3557
|
+
type UserIdentitiesListAcsUsersOptions = Record<string, never>;
|
|
3558
|
+
type UserIdentitiesRemoveAcsUserParameters = RouteRequestBody<'/user_identities/remove_acs_user'>;
|
|
3559
|
+
/**
|
|
3560
|
+
* @deprecated Use UserIdentitiesRemoveAcsUserParameters instead.
|
|
3561
|
+
*/
|
|
3562
|
+
type UserIdentitiesRemoveAcsUserParams = UserIdentitiesRemoveAcsUserParameters;
|
|
3563
|
+
/**
|
|
3564
|
+
* @deprecated Use UserIdentitiesRemoveAcsUserRequest instead.
|
|
3565
|
+
*/
|
|
1266
3566
|
type UserIdentitiesRemoveAcsUserResponse = SetNonNullable<Required<RouteResponse<'/user_identities/remove_acs_user'>>>;
|
|
1267
|
-
type
|
|
1268
|
-
type
|
|
3567
|
+
type UserIdentitiesRemoveAcsUserRequest = SeamHttpRequest<void, undefined>;
|
|
3568
|
+
type UserIdentitiesRemoveAcsUserOptions = Record<string, never>;
|
|
3569
|
+
type UserIdentitiesRevokeAccessToDeviceParameters = RouteRequestBody<'/user_identities/revoke_access_to_device'>;
|
|
3570
|
+
/**
|
|
3571
|
+
* @deprecated Use UserIdentitiesRevokeAccessToDeviceParameters instead.
|
|
3572
|
+
*/
|
|
3573
|
+
type UserIdentitiesRevokeAccessToDeviceParams = UserIdentitiesRevokeAccessToDeviceParameters;
|
|
3574
|
+
/**
|
|
3575
|
+
* @deprecated Use UserIdentitiesRevokeAccessToDeviceRequest instead.
|
|
3576
|
+
*/
|
|
1269
3577
|
type UserIdentitiesRevokeAccessToDeviceResponse = SetNonNullable<Required<RouteResponse<'/user_identities/revoke_access_to_device'>>>;
|
|
1270
|
-
type
|
|
1271
|
-
type
|
|
3578
|
+
type UserIdentitiesRevokeAccessToDeviceRequest = SeamHttpRequest<void, undefined>;
|
|
3579
|
+
type UserIdentitiesRevokeAccessToDeviceOptions = Record<string, never>;
|
|
3580
|
+
type UserIdentitiesUpdateParameters = RouteRequestBody<'/user_identities/update'>;
|
|
3581
|
+
/**
|
|
3582
|
+
* @deprecated Use UserIdentitiesUpdateParameters instead.
|
|
3583
|
+
*/
|
|
3584
|
+
type UserIdentitiesUpdateBody = UserIdentitiesUpdateParameters;
|
|
3585
|
+
/**
|
|
3586
|
+
* @deprecated Use UserIdentitiesUpdateRequest instead.
|
|
3587
|
+
*/
|
|
1272
3588
|
type UserIdentitiesUpdateResponse = SetNonNullable<Required<RouteResponse<'/user_identities/update'>>>;
|
|
1273
|
-
type
|
|
3589
|
+
type UserIdentitiesUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
3590
|
+
type UserIdentitiesUpdateOptions = Record<string, never>;
|
|
1274
3591
|
|
|
1275
3592
|
declare class SeamHttpWebhooks {
|
|
1276
3593
|
client: Client;
|
|
@@ -1286,27 +3603,67 @@ declare class SeamHttpWebhooks {
|
|
|
1286
3603
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpWebhooks;
|
|
1287
3604
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1288
3605
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1289
|
-
create(
|
|
1290
|
-
delete(
|
|
1291
|
-
get(
|
|
1292
|
-
list(
|
|
1293
|
-
update(
|
|
3606
|
+
create(parameters?: WebhooksCreateParameters, options?: WebhooksCreateOptions): WebhooksCreateRequest;
|
|
3607
|
+
delete(parameters?: WebhooksDeleteParameters, options?: WebhooksDeleteOptions): WebhooksDeleteRequest;
|
|
3608
|
+
get(parameters?: WebhooksGetParameters, options?: WebhooksGetOptions): WebhooksGetRequest;
|
|
3609
|
+
list(parameters?: WebhooksListParameters, options?: WebhooksListOptions): WebhooksListRequest;
|
|
3610
|
+
update(parameters?: WebhooksUpdateParameters, options?: WebhooksUpdateOptions): WebhooksUpdateRequest;
|
|
1294
3611
|
}
|
|
1295
|
-
type
|
|
3612
|
+
type WebhooksCreateParameters = RouteRequestBody<'/webhooks/create'>;
|
|
3613
|
+
/**
|
|
3614
|
+
* @deprecated Use WebhooksCreateParameters instead.
|
|
3615
|
+
*/
|
|
3616
|
+
type WebhooksCreateBody = WebhooksCreateParameters;
|
|
3617
|
+
/**
|
|
3618
|
+
* @deprecated Use WebhooksCreateRequest instead.
|
|
3619
|
+
*/
|
|
1296
3620
|
type WebhooksCreateResponse = SetNonNullable<Required<RouteResponse<'/webhooks/create'>>>;
|
|
1297
|
-
type
|
|
1298
|
-
type
|
|
3621
|
+
type WebhooksCreateRequest = SeamHttpRequest<WebhooksCreateResponse, 'webhook'>;
|
|
3622
|
+
type WebhooksCreateOptions = Record<string, never>;
|
|
3623
|
+
type WebhooksDeleteParameters = RouteRequestBody<'/webhooks/delete'>;
|
|
3624
|
+
/**
|
|
3625
|
+
* @deprecated Use WebhooksDeleteParameters instead.
|
|
3626
|
+
*/
|
|
3627
|
+
type WebhooksDeleteParams = WebhooksDeleteParameters;
|
|
3628
|
+
/**
|
|
3629
|
+
* @deprecated Use WebhooksDeleteRequest instead.
|
|
3630
|
+
*/
|
|
1299
3631
|
type WebhooksDeleteResponse = SetNonNullable<Required<RouteResponse<'/webhooks/delete'>>>;
|
|
1300
|
-
type
|
|
1301
|
-
type
|
|
3632
|
+
type WebhooksDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
3633
|
+
type WebhooksDeleteOptions = Record<string, never>;
|
|
3634
|
+
type WebhooksGetParameters = RouteRequestBody<'/webhooks/get'>;
|
|
3635
|
+
/**
|
|
3636
|
+
* @deprecated Use WebhooksGetParameters instead.
|
|
3637
|
+
*/
|
|
3638
|
+
type WebhooksGetParams = WebhooksGetParameters;
|
|
3639
|
+
/**
|
|
3640
|
+
* @deprecated Use WebhooksGetRequest instead.
|
|
3641
|
+
*/
|
|
1302
3642
|
type WebhooksGetResponse = SetNonNullable<Required<RouteResponse<'/webhooks/get'>>>;
|
|
1303
|
-
type
|
|
1304
|
-
type
|
|
3643
|
+
type WebhooksGetRequest = SeamHttpRequest<WebhooksGetResponse, 'webhook'>;
|
|
3644
|
+
type WebhooksGetOptions = Record<string, never>;
|
|
3645
|
+
type WebhooksListParameters = RouteRequestParams<'/webhooks/list'>;
|
|
3646
|
+
/**
|
|
3647
|
+
* @deprecated Use WebhooksListParameters instead.
|
|
3648
|
+
*/
|
|
3649
|
+
type WebhooksListParams = WebhooksListParameters;
|
|
3650
|
+
/**
|
|
3651
|
+
* @deprecated Use WebhooksListRequest instead.
|
|
3652
|
+
*/
|
|
1305
3653
|
type WebhooksListResponse = SetNonNullable<Required<RouteResponse<'/webhooks/list'>>>;
|
|
1306
|
-
type
|
|
1307
|
-
type
|
|
3654
|
+
type WebhooksListRequest = SeamHttpRequest<WebhooksListResponse, 'webhooks'>;
|
|
3655
|
+
type WebhooksListOptions = Record<string, never>;
|
|
3656
|
+
type WebhooksUpdateParameters = RouteRequestBody<'/webhooks/update'>;
|
|
3657
|
+
/**
|
|
3658
|
+
* @deprecated Use WebhooksUpdateParameters instead.
|
|
3659
|
+
*/
|
|
3660
|
+
type WebhooksUpdateBody = WebhooksUpdateParameters;
|
|
3661
|
+
/**
|
|
3662
|
+
* @deprecated Use WebhooksUpdateRequest instead.
|
|
3663
|
+
*/
|
|
1308
3664
|
type WebhooksUpdateResponse = SetNonNullable<Required<RouteResponse<'/webhooks/update'>>>;
|
|
1309
|
-
type
|
|
3665
|
+
type WebhooksUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
3666
|
+
type WebhooksUpdateOptions = Record<string, never>;
|
|
1310
3667
|
|
|
1311
3668
|
declare class SeamHttpWorkspaces {
|
|
1312
3669
|
client: Client;
|
|
@@ -1322,27 +3679,67 @@ declare class SeamHttpWorkspaces {
|
|
|
1322
3679
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpWorkspaces;
|
|
1323
3680
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1324
3681
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1325
|
-
create(
|
|
1326
|
-
get(
|
|
1327
|
-
list(
|
|
1328
|
-
resetSandbox(
|
|
1329
|
-
update(
|
|
3682
|
+
create(parameters?: WorkspacesCreateParameters, options?: WorkspacesCreateOptions): WorkspacesCreateRequest;
|
|
3683
|
+
get(parameters?: WorkspacesGetParameters, options?: WorkspacesGetOptions): WorkspacesGetRequest;
|
|
3684
|
+
list(parameters?: WorkspacesListParameters, options?: WorkspacesListOptions): WorkspacesListRequest;
|
|
3685
|
+
resetSandbox(parameters?: WorkspacesResetSandboxParameters, options?: WorkspacesResetSandboxOptions): WorkspacesResetSandboxRequest;
|
|
3686
|
+
update(parameters?: WorkspacesUpdateParameters, options?: WorkspacesUpdateOptions): WorkspacesUpdateRequest;
|
|
1330
3687
|
}
|
|
1331
|
-
type
|
|
3688
|
+
type WorkspacesCreateParameters = RouteRequestBody<'/workspaces/create'>;
|
|
3689
|
+
/**
|
|
3690
|
+
* @deprecated Use WorkspacesCreateParameters instead.
|
|
3691
|
+
*/
|
|
3692
|
+
type WorkspacesCreateBody = WorkspacesCreateParameters;
|
|
3693
|
+
/**
|
|
3694
|
+
* @deprecated Use WorkspacesCreateRequest instead.
|
|
3695
|
+
*/
|
|
1332
3696
|
type WorkspacesCreateResponse = SetNonNullable<Required<RouteResponse<'/workspaces/create'>>>;
|
|
1333
|
-
type
|
|
1334
|
-
type
|
|
3697
|
+
type WorkspacesCreateRequest = SeamHttpRequest<WorkspacesCreateResponse, 'workspace'>;
|
|
3698
|
+
type WorkspacesCreateOptions = Record<string, never>;
|
|
3699
|
+
type WorkspacesGetParameters = RouteRequestParams<'/workspaces/get'>;
|
|
3700
|
+
/**
|
|
3701
|
+
* @deprecated Use WorkspacesGetParameters instead.
|
|
3702
|
+
*/
|
|
3703
|
+
type WorkspacesGetParams = WorkspacesGetParameters;
|
|
3704
|
+
/**
|
|
3705
|
+
* @deprecated Use WorkspacesGetRequest instead.
|
|
3706
|
+
*/
|
|
1335
3707
|
type WorkspacesGetResponse = SetNonNullable<Required<RouteResponse<'/workspaces/get'>>>;
|
|
1336
|
-
type
|
|
1337
|
-
type
|
|
3708
|
+
type WorkspacesGetRequest = SeamHttpRequest<WorkspacesGetResponse, 'workspace'>;
|
|
3709
|
+
type WorkspacesGetOptions = Record<string, never>;
|
|
3710
|
+
type WorkspacesListParameters = RouteRequestParams<'/workspaces/list'>;
|
|
3711
|
+
/**
|
|
3712
|
+
* @deprecated Use WorkspacesListParameters instead.
|
|
3713
|
+
*/
|
|
3714
|
+
type WorkspacesListParams = WorkspacesListParameters;
|
|
3715
|
+
/**
|
|
3716
|
+
* @deprecated Use WorkspacesListRequest instead.
|
|
3717
|
+
*/
|
|
1338
3718
|
type WorkspacesListResponse = SetNonNullable<Required<RouteResponse<'/workspaces/list'>>>;
|
|
1339
|
-
type
|
|
1340
|
-
type
|
|
3719
|
+
type WorkspacesListRequest = SeamHttpRequest<WorkspacesListResponse, 'workspaces'>;
|
|
3720
|
+
type WorkspacesListOptions = Record<string, never>;
|
|
3721
|
+
type WorkspacesResetSandboxParameters = RouteRequestBody<'/workspaces/reset_sandbox'>;
|
|
3722
|
+
/**
|
|
3723
|
+
* @deprecated Use WorkspacesResetSandboxParameters instead.
|
|
3724
|
+
*/
|
|
3725
|
+
type WorkspacesResetSandboxBody = WorkspacesResetSandboxParameters;
|
|
3726
|
+
/**
|
|
3727
|
+
* @deprecated Use WorkspacesResetSandboxRequest instead.
|
|
3728
|
+
*/
|
|
1341
3729
|
type WorkspacesResetSandboxResponse = SetNonNullable<Required<RouteResponse<'/workspaces/reset_sandbox'>>>;
|
|
3730
|
+
type WorkspacesResetSandboxRequest = SeamHttpRequest<WorkspacesResetSandboxResponse, 'action_attempt'>;
|
|
1342
3731
|
type WorkspacesResetSandboxOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1343
|
-
type
|
|
3732
|
+
type WorkspacesUpdateParameters = RouteRequestBody<'/workspaces/update'>;
|
|
3733
|
+
/**
|
|
3734
|
+
* @deprecated Use WorkspacesUpdateParameters instead.
|
|
3735
|
+
*/
|
|
3736
|
+
type WorkspacesUpdateBody = WorkspacesUpdateParameters;
|
|
3737
|
+
/**
|
|
3738
|
+
* @deprecated Use WorkspacesUpdateRequest instead.
|
|
3739
|
+
*/
|
|
1344
3740
|
type WorkspacesUpdateResponse = SetNonNullable<Required<RouteResponse<'/workspaces/update'>>>;
|
|
1345
|
-
type
|
|
3741
|
+
type WorkspacesUpdateRequest = SeamHttpRequest<void, undefined>;
|
|
3742
|
+
type WorkspacesUpdateOptions = Record<string, never>;
|
|
1346
3743
|
|
|
1347
3744
|
declare class SeamHttp {
|
|
1348
3745
|
client: Client;
|
|
@@ -1363,16 +3760,22 @@ declare class SeamHttp {
|
|
|
1363
3760
|
get accessMethods(): SeamHttpAccessMethods;
|
|
1364
3761
|
get acs(): SeamHttpAcs;
|
|
1365
3762
|
get actionAttempts(): SeamHttpActionAttempts;
|
|
3763
|
+
get bridges(): SeamHttpBridges;
|
|
1366
3764
|
get clientSessions(): SeamHttpClientSessions;
|
|
1367
3765
|
get connectWebviews(): SeamHttpConnectWebviews;
|
|
1368
3766
|
get connectedAccounts(): SeamHttpConnectedAccounts;
|
|
1369
3767
|
get devices(): SeamHttpDevices;
|
|
1370
3768
|
get events(): SeamHttpEvents;
|
|
1371
3769
|
get locks(): SeamHttpLocks;
|
|
3770
|
+
get networks(): SeamHttpNetworks;
|
|
1372
3771
|
get noiseSensors(): SeamHttpNoiseSensors;
|
|
1373
3772
|
get phones(): SeamHttpPhones;
|
|
1374
3773
|
get spaces(): SeamHttpSpaces;
|
|
1375
3774
|
get thermostats(): SeamHttpThermostats;
|
|
3775
|
+
get unstableAccessGrants(): SeamHttpUnstableAccessGrants;
|
|
3776
|
+
get unstableAccessMethods(): SeamHttpUnstableAccessMethods;
|
|
3777
|
+
get unstableLocations(): SeamHttpUnstableLocations;
|
|
3778
|
+
get unstablePartner(): SeamHttpUnstablePartner;
|
|
1376
3779
|
get userIdentities(): SeamHttpUserIdentities;
|
|
1377
3780
|
get webhooks(): SeamHttpWebhooks;
|
|
1378
3781
|
get workspaces(): SeamHttpWorkspaces;
|
|
@@ -1392,177 +3795,227 @@ declare class SeamHttpEndpoints {
|
|
|
1392
3795
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpEndpoints;
|
|
1393
3796
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1394
3797
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1395
|
-
get ['/access_codes/create']():
|
|
1396
|
-
get ['/access_codes/create_multiple']():
|
|
1397
|
-
get ['/access_codes/delete']():
|
|
1398
|
-
get ['/access_codes/generate_code']():
|
|
1399
|
-
get ['/access_codes/get']():
|
|
1400
|
-
get ['/access_codes/list']():
|
|
1401
|
-
get ['/access_codes/pull_backup_access_code']():
|
|
1402
|
-
get ['/access_codes/report_device_constraints']():
|
|
1403
|
-
get ['/access_codes/update']():
|
|
1404
|
-
get ['/access_codes/update_multiple']():
|
|
1405
|
-
get ['/access_codes/simulate/create_unmanaged_access_code']():
|
|
1406
|
-
get ['/access_codes/unmanaged/convert_to_managed']():
|
|
1407
|
-
get ['/access_codes/unmanaged/delete']():
|
|
1408
|
-
get ['/access_codes/unmanaged/get']():
|
|
1409
|
-
get ['/access_codes/unmanaged/list']():
|
|
1410
|
-
get ['/access_codes/unmanaged/update']():
|
|
1411
|
-
get ['/access_grants/create']():
|
|
1412
|
-
get ['/access_grants/delete']():
|
|
1413
|
-
get ['/access_grants/get']():
|
|
1414
|
-
get ['/access_grants/list']():
|
|
1415
|
-
get ['/access_grants/update']():
|
|
1416
|
-
get ['/access_methods/delete']():
|
|
1417
|
-
get ['/access_methods/get']():
|
|
1418
|
-
get ['/access_methods/list']():
|
|
1419
|
-
get ['/acs/access_groups/add_user']():
|
|
1420
|
-
get ['/acs/access_groups/get']():
|
|
1421
|
-
get ['/acs/access_groups/list']():
|
|
1422
|
-
get ['/acs/access_groups/list_accessible_entrances']():
|
|
1423
|
-
get ['/acs/access_groups/list_users']():
|
|
1424
|
-
get ['/acs/access_groups/remove_user']():
|
|
1425
|
-
get ['/acs/
|
|
1426
|
-
get ['/acs/
|
|
1427
|
-
get ['/acs/
|
|
1428
|
-
get ['/acs/
|
|
1429
|
-
get ['/acs/credentials/
|
|
1430
|
-
get ['/acs/credentials/
|
|
1431
|
-
get ['/acs/credentials/
|
|
1432
|
-
get ['/acs/credentials/
|
|
1433
|
-
get ['/acs/
|
|
1434
|
-
get ['/acs/
|
|
1435
|
-
get ['/acs/
|
|
1436
|
-
get ['/acs/
|
|
1437
|
-
get ['/acs/
|
|
1438
|
-
get ['/acs/
|
|
1439
|
-
get ['/acs/
|
|
1440
|
-
get ['/acs/encoders/
|
|
1441
|
-
get ['/acs/encoders/
|
|
1442
|
-
get ['/acs/
|
|
1443
|
-
get ['/acs/
|
|
1444
|
-
get ['/acs/
|
|
1445
|
-
get ['/acs/
|
|
1446
|
-
get ['/acs/
|
|
1447
|
-
get ['/acs/
|
|
1448
|
-
get ['/acs/
|
|
1449
|
-
get ['/acs/
|
|
1450
|
-
get ['/acs/
|
|
1451
|
-
get ['/acs/
|
|
1452
|
-
get ['/acs/
|
|
1453
|
-
get ['/acs/
|
|
1454
|
-
get ['/acs/
|
|
1455
|
-
get ['/acs/
|
|
1456
|
-
get ['/acs/users/
|
|
1457
|
-
get ['/acs/users/
|
|
1458
|
-
get ['/acs/users/
|
|
1459
|
-
get ['/acs/users/
|
|
1460
|
-
get ['/
|
|
1461
|
-
get ['/
|
|
1462
|
-
get ['/
|
|
1463
|
-
get ['/
|
|
1464
|
-
get ['/
|
|
1465
|
-
get ['/
|
|
1466
|
-
get ['/
|
|
1467
|
-
get ['/
|
|
1468
|
-
get ['/
|
|
1469
|
-
get ['/
|
|
1470
|
-
get ['/
|
|
1471
|
-
get ['/
|
|
1472
|
-
get ['/
|
|
1473
|
-
get ['/
|
|
1474
|
-
get ['/
|
|
1475
|
-
get ['/
|
|
1476
|
-
get ['/
|
|
1477
|
-
get ['/
|
|
1478
|
-
get ['/
|
|
1479
|
-
get ['/
|
|
1480
|
-
get ['/
|
|
1481
|
-
get ['/
|
|
1482
|
-
get ['/
|
|
1483
|
-
get ['/
|
|
1484
|
-
get ['/
|
|
1485
|
-
get ['/
|
|
1486
|
-
get ['/
|
|
1487
|
-
get ['/
|
|
1488
|
-
get ['/
|
|
1489
|
-
get ['/
|
|
1490
|
-
get ['/
|
|
1491
|
-
get ['/
|
|
1492
|
-
get ['/
|
|
1493
|
-
get ['/
|
|
1494
|
-
get ['/
|
|
1495
|
-
get ['/
|
|
1496
|
-
get ['/
|
|
1497
|
-
get ['/
|
|
1498
|
-
get ['/
|
|
1499
|
-
get ['/
|
|
1500
|
-
get ['/
|
|
1501
|
-
get ['/
|
|
1502
|
-
get ['/
|
|
1503
|
-
get ['/
|
|
1504
|
-
get ['/
|
|
1505
|
-
get ['/
|
|
1506
|
-
get ['/
|
|
1507
|
-
get ['/
|
|
1508
|
-
get ['/
|
|
1509
|
-
get ['/
|
|
1510
|
-
get ['/
|
|
1511
|
-
get ['/
|
|
1512
|
-
get ['/
|
|
1513
|
-
get ['/
|
|
1514
|
-
get ['/
|
|
1515
|
-
get ['/
|
|
1516
|
-
get ['/
|
|
1517
|
-
get ['/
|
|
1518
|
-
get ['/
|
|
1519
|
-
get ['/
|
|
1520
|
-
get ['/
|
|
1521
|
-
get ['/
|
|
1522
|
-
get ['/
|
|
1523
|
-
get ['/
|
|
1524
|
-
get ['/
|
|
1525
|
-
get ['/
|
|
1526
|
-
get ['/
|
|
1527
|
-
get ['/
|
|
1528
|
-
get ['/
|
|
1529
|
-
get ['/
|
|
1530
|
-
get ['/
|
|
1531
|
-
get ['/
|
|
1532
|
-
get ['/
|
|
1533
|
-
get ['/
|
|
1534
|
-
get ['/
|
|
1535
|
-
get ['/
|
|
1536
|
-
get ['/
|
|
1537
|
-
get ['/
|
|
1538
|
-
get ['/
|
|
1539
|
-
get ['/
|
|
1540
|
-
get ['/
|
|
1541
|
-
get ['/
|
|
1542
|
-
get ['/
|
|
1543
|
-
get ['/
|
|
1544
|
-
get ['/
|
|
1545
|
-
get ['/
|
|
1546
|
-
get ['/
|
|
1547
|
-
get ['/
|
|
1548
|
-
get ['/
|
|
1549
|
-
get ['/
|
|
1550
|
-
get ['/
|
|
1551
|
-
get ['/
|
|
1552
|
-
get ['/
|
|
1553
|
-
get ['/
|
|
1554
|
-
get ['/
|
|
1555
|
-
get ['/
|
|
1556
|
-
get ['/
|
|
1557
|
-
get ['/
|
|
1558
|
-
get ['/
|
|
1559
|
-
get ['/
|
|
1560
|
-
get ['/
|
|
1561
|
-
get ['/
|
|
1562
|
-
get ['/
|
|
1563
|
-
get ['/
|
|
1564
|
-
get ['/
|
|
3798
|
+
get ['/access_codes/create'](): (parameters?: AccessCodesCreateParameters, options?: AccessCodesCreateOptions) => AccessCodesCreateRequest;
|
|
3799
|
+
get ['/access_codes/create_multiple'](): (parameters?: AccessCodesCreateMultipleParameters, options?: AccessCodesCreateMultipleOptions) => AccessCodesCreateMultipleRequest;
|
|
3800
|
+
get ['/access_codes/delete'](): (parameters?: AccessCodesDeleteParameters, options?: AccessCodesDeleteOptions) => AccessCodesDeleteRequest;
|
|
3801
|
+
get ['/access_codes/generate_code'](): (parameters?: AccessCodesGenerateCodeParameters, options?: AccessCodesGenerateCodeOptions) => AccessCodesGenerateCodeRequest;
|
|
3802
|
+
get ['/access_codes/get'](): (parameters?: AccessCodesGetParameters, options?: AccessCodesGetOptions) => AccessCodesGetRequest;
|
|
3803
|
+
get ['/access_codes/list'](): (parameters?: AccessCodesListParameters, options?: AccessCodesListOptions) => AccessCodesListRequest;
|
|
3804
|
+
get ['/access_codes/pull_backup_access_code'](): (parameters?: AccessCodesPullBackupAccessCodeParameters, options?: AccessCodesPullBackupAccessCodeOptions) => AccessCodesPullBackupAccessCodeRequest;
|
|
3805
|
+
get ['/access_codes/report_device_constraints'](): (parameters?: AccessCodesReportDeviceConstraintsParameters, options?: AccessCodesReportDeviceConstraintsOptions) => AccessCodesReportDeviceConstraintsRequest;
|
|
3806
|
+
get ['/access_codes/update'](): (parameters?: AccessCodesUpdateParameters, options?: AccessCodesUpdateOptions) => AccessCodesUpdateRequest;
|
|
3807
|
+
get ['/access_codes/update_multiple'](): (parameters?: AccessCodesUpdateMultipleParameters, options?: AccessCodesUpdateMultipleOptions) => AccessCodesUpdateMultipleRequest;
|
|
3808
|
+
get ['/access_codes/simulate/create_unmanaged_access_code'](): (parameters?: AccessCodesSimulateCreateUnmanagedAccessCodeParameters, options?: AccessCodesSimulateCreateUnmanagedAccessCodeOptions) => AccessCodesSimulateCreateUnmanagedAccessCodeRequest;
|
|
3809
|
+
get ['/access_codes/unmanaged/convert_to_managed'](): (parameters?: AccessCodesUnmanagedConvertToManagedParameters, options?: AccessCodesUnmanagedConvertToManagedOptions) => AccessCodesUnmanagedConvertToManagedRequest;
|
|
3810
|
+
get ['/access_codes/unmanaged/delete'](): (parameters?: AccessCodesUnmanagedDeleteParameters, options?: AccessCodesUnmanagedDeleteOptions) => AccessCodesUnmanagedDeleteRequest;
|
|
3811
|
+
get ['/access_codes/unmanaged/get'](): (parameters?: AccessCodesUnmanagedGetParameters, options?: AccessCodesUnmanagedGetOptions) => AccessCodesUnmanagedGetRequest;
|
|
3812
|
+
get ['/access_codes/unmanaged/list'](): (parameters?: AccessCodesUnmanagedListParameters, options?: AccessCodesUnmanagedListOptions) => AccessCodesUnmanagedListRequest;
|
|
3813
|
+
get ['/access_codes/unmanaged/update'](): (parameters?: AccessCodesUnmanagedUpdateParameters, options?: AccessCodesUnmanagedUpdateOptions) => AccessCodesUnmanagedUpdateRequest;
|
|
3814
|
+
get ['/access_grants/create'](): (parameters?: AccessGrantsCreateParameters, options?: AccessGrantsCreateOptions) => AccessGrantsCreateRequest;
|
|
3815
|
+
get ['/access_grants/delete'](): (parameters?: AccessGrantsDeleteParameters, options?: AccessGrantsDeleteOptions) => AccessGrantsDeleteRequest;
|
|
3816
|
+
get ['/access_grants/get'](): (parameters?: AccessGrantsGetParameters, options?: AccessGrantsGetOptions) => AccessGrantsGetRequest;
|
|
3817
|
+
get ['/access_grants/list'](): (parameters?: AccessGrantsListParameters, options?: AccessGrantsListOptions) => AccessGrantsListRequest;
|
|
3818
|
+
get ['/access_grants/update'](): (parameters?: AccessGrantsUpdateParameters, options?: AccessGrantsUpdateOptions) => AccessGrantsUpdateRequest;
|
|
3819
|
+
get ['/access_methods/delete'](): (parameters?: AccessMethodsDeleteParameters, options?: AccessMethodsDeleteOptions) => AccessMethodsDeleteRequest;
|
|
3820
|
+
get ['/access_methods/get'](): (parameters?: AccessMethodsGetParameters, options?: AccessMethodsGetOptions) => AccessMethodsGetRequest;
|
|
3821
|
+
get ['/access_methods/list'](): (parameters?: AccessMethodsListParameters, options?: AccessMethodsListOptions) => AccessMethodsListRequest;
|
|
3822
|
+
get ['/acs/access_groups/add_user'](): (parameters?: AcsAccessGroupsAddUserParameters, options?: AcsAccessGroupsAddUserOptions) => AcsAccessGroupsAddUserRequest;
|
|
3823
|
+
get ['/acs/access_groups/get'](): (parameters?: AcsAccessGroupsGetParameters, options?: AcsAccessGroupsGetOptions) => AcsAccessGroupsGetRequest;
|
|
3824
|
+
get ['/acs/access_groups/list'](): (parameters?: AcsAccessGroupsListParameters, options?: AcsAccessGroupsListOptions) => AcsAccessGroupsListRequest;
|
|
3825
|
+
get ['/acs/access_groups/list_accessible_entrances'](): (parameters?: AcsAccessGroupsListAccessibleEntrancesParameters, options?: AcsAccessGroupsListAccessibleEntrancesOptions) => AcsAccessGroupsListAccessibleEntrancesRequest;
|
|
3826
|
+
get ['/acs/access_groups/list_users'](): (parameters?: AcsAccessGroupsListUsersParameters, options?: AcsAccessGroupsListUsersOptions) => AcsAccessGroupsListUsersRequest;
|
|
3827
|
+
get ['/acs/access_groups/remove_user'](): (parameters?: AcsAccessGroupsRemoveUserParameters, options?: AcsAccessGroupsRemoveUserOptions) => AcsAccessGroupsRemoveUserRequest;
|
|
3828
|
+
get ['/acs/access_groups/unmanaged/get'](): (parameters?: AcsAccessGroupsUnmanagedGetParameters, options?: AcsAccessGroupsUnmanagedGetOptions) => AcsAccessGroupsUnmanagedGetRequest;
|
|
3829
|
+
get ['/acs/access_groups/unmanaged/list'](): (parameters?: AcsAccessGroupsUnmanagedListParameters, options?: AcsAccessGroupsUnmanagedListOptions) => AcsAccessGroupsUnmanagedListRequest;
|
|
3830
|
+
get ['/acs/credential_pools/list'](): (parameters?: AcsCredentialPoolsListParameters, options?: AcsCredentialPoolsListOptions) => AcsCredentialPoolsListRequest;
|
|
3831
|
+
get ['/acs/credential_provisioning_automations/launch'](): (parameters?: AcsCredentialProvisioningAutomationsLaunchParameters, options?: AcsCredentialProvisioningAutomationsLaunchOptions) => AcsCredentialProvisioningAutomationsLaunchRequest;
|
|
3832
|
+
get ['/acs/credentials/assign'](): (parameters?: AcsCredentialsAssignParameters, options?: AcsCredentialsAssignOptions) => AcsCredentialsAssignRequest;
|
|
3833
|
+
get ['/acs/credentials/create'](): (parameters?: AcsCredentialsCreateParameters, options?: AcsCredentialsCreateOptions) => AcsCredentialsCreateRequest;
|
|
3834
|
+
get ['/acs/credentials/create_offline_code'](): (parameters?: AcsCredentialsCreateOfflineCodeParameters, options?: AcsCredentialsCreateOfflineCodeOptions) => AcsCredentialsCreateOfflineCodeRequest;
|
|
3835
|
+
get ['/acs/credentials/delete'](): (parameters?: AcsCredentialsDeleteParameters, options?: AcsCredentialsDeleteOptions) => AcsCredentialsDeleteRequest;
|
|
3836
|
+
get ['/acs/credentials/get'](): (parameters?: AcsCredentialsGetParameters, options?: AcsCredentialsGetOptions) => AcsCredentialsGetRequest;
|
|
3837
|
+
get ['/acs/credentials/list'](): (parameters?: AcsCredentialsListParameters, options?: AcsCredentialsListOptions) => AcsCredentialsListRequest;
|
|
3838
|
+
get ['/acs/credentials/list_accessible_entrances'](): (parameters?: AcsCredentialsListAccessibleEntrancesParameters, options?: AcsCredentialsListAccessibleEntrancesOptions) => AcsCredentialsListAccessibleEntrancesRequest;
|
|
3839
|
+
get ['/acs/credentials/unassign'](): (parameters?: AcsCredentialsUnassignParameters, options?: AcsCredentialsUnassignOptions) => AcsCredentialsUnassignRequest;
|
|
3840
|
+
get ['/acs/credentials/update'](): (parameters?: AcsCredentialsUpdateParameters, options?: AcsCredentialsUpdateOptions) => AcsCredentialsUpdateRequest;
|
|
3841
|
+
get ['/acs/credentials/unmanaged/get'](): (parameters?: AcsCredentialsUnmanagedGetParameters, options?: AcsCredentialsUnmanagedGetOptions) => AcsCredentialsUnmanagedGetRequest;
|
|
3842
|
+
get ['/acs/credentials/unmanaged/list'](): (parameters?: AcsCredentialsUnmanagedListParameters, options?: AcsCredentialsUnmanagedListOptions) => AcsCredentialsUnmanagedListRequest;
|
|
3843
|
+
get ['/acs/encoders/encode_access_method'](): (parameters?: AcsEncodersEncodeAccessMethodParameters, options?: AcsEncodersEncodeAccessMethodOptions) => AcsEncodersEncodeAccessMethodRequest;
|
|
3844
|
+
get ['/acs/encoders/encode_credential'](): (parameters?: AcsEncodersEncodeCredentialParameters, options?: AcsEncodersEncodeCredentialOptions) => AcsEncodersEncodeCredentialRequest;
|
|
3845
|
+
get ['/acs/encoders/get'](): (parameters?: AcsEncodersGetParameters, options?: AcsEncodersGetOptions) => AcsEncodersGetRequest;
|
|
3846
|
+
get ['/acs/encoders/list'](): (parameters?: AcsEncodersListParameters, options?: AcsEncodersListOptions) => AcsEncodersListRequest;
|
|
3847
|
+
get ['/acs/encoders/scan_credential'](): (parameters?: AcsEncodersScanCredentialParameters, options?: AcsEncodersScanCredentialOptions) => AcsEncodersScanCredentialRequest;
|
|
3848
|
+
get ['/acs/encoders/simulate/next_credential_encode_will_fail'](): (parameters?: AcsEncodersSimulateNextCredentialEncodeWillFailParameters, options?: AcsEncodersSimulateNextCredentialEncodeWillFailOptions) => AcsEncodersSimulateNextCredentialEncodeWillFailRequest;
|
|
3849
|
+
get ['/acs/encoders/simulate/next_credential_encode_will_succeed'](): (parameters?: AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters, options?: AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions) => AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest;
|
|
3850
|
+
get ['/acs/encoders/simulate/next_credential_scan_will_fail'](): (parameters?: AcsEncodersSimulateNextCredentialScanWillFailParameters, options?: AcsEncodersSimulateNextCredentialScanWillFailOptions) => AcsEncodersSimulateNextCredentialScanWillFailRequest;
|
|
3851
|
+
get ['/acs/encoders/simulate/next_credential_scan_will_succeed'](): (parameters?: AcsEncodersSimulateNextCredentialScanWillSucceedParameters, options?: AcsEncodersSimulateNextCredentialScanWillSucceedOptions) => AcsEncodersSimulateNextCredentialScanWillSucceedRequest;
|
|
3852
|
+
get ['/acs/entrances/get'](): (parameters?: AcsEntrancesGetParameters, options?: AcsEntrancesGetOptions) => AcsEntrancesGetRequest;
|
|
3853
|
+
get ['/acs/entrances/grant_access'](): (parameters?: AcsEntrancesGrantAccessParameters, options?: AcsEntrancesGrantAccessOptions) => AcsEntrancesGrantAccessRequest;
|
|
3854
|
+
get ['/acs/entrances/list'](): (parameters?: AcsEntrancesListParameters, options?: AcsEntrancesListOptions) => AcsEntrancesListRequest;
|
|
3855
|
+
get ['/acs/entrances/list_credentials_with_access'](): (parameters?: AcsEntrancesListCredentialsWithAccessParameters, options?: AcsEntrancesListCredentialsWithAccessOptions) => AcsEntrancesListCredentialsWithAccessRequest;
|
|
3856
|
+
get ['/acs/systems/get'](): (parameters?: AcsSystemsGetParameters, options?: AcsSystemsGetOptions) => AcsSystemsGetRequest;
|
|
3857
|
+
get ['/acs/systems/list'](): (parameters?: AcsSystemsListParameters, options?: AcsSystemsListOptions) => AcsSystemsListRequest;
|
|
3858
|
+
get ['/acs/systems/list_compatible_credential_manager_acs_systems'](): (parameters?: AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters, options?: AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions) => AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest;
|
|
3859
|
+
get ['/acs/users/add_to_access_group'](): (parameters?: AcsUsersAddToAccessGroupParameters, options?: AcsUsersAddToAccessGroupOptions) => AcsUsersAddToAccessGroupRequest;
|
|
3860
|
+
get ['/acs/users/create'](): (parameters?: AcsUsersCreateParameters, options?: AcsUsersCreateOptions) => AcsUsersCreateRequest;
|
|
3861
|
+
get ['/acs/users/delete'](): (parameters?: AcsUsersDeleteParameters, options?: AcsUsersDeleteOptions) => AcsUsersDeleteRequest;
|
|
3862
|
+
get ['/acs/users/get'](): (parameters?: AcsUsersGetParameters, options?: AcsUsersGetOptions) => AcsUsersGetRequest;
|
|
3863
|
+
get ['/acs/users/list'](): (parameters?: AcsUsersListParameters, options?: AcsUsersListOptions) => AcsUsersListRequest;
|
|
3864
|
+
get ['/acs/users/list_accessible_entrances'](): (parameters?: AcsUsersListAccessibleEntrancesParameters, options?: AcsUsersListAccessibleEntrancesOptions) => AcsUsersListAccessibleEntrancesRequest;
|
|
3865
|
+
get ['/acs/users/remove_from_access_group'](): (parameters?: AcsUsersRemoveFromAccessGroupParameters, options?: AcsUsersRemoveFromAccessGroupOptions) => AcsUsersRemoveFromAccessGroupRequest;
|
|
3866
|
+
get ['/acs/users/revoke_access_to_all_entrances'](): (parameters?: AcsUsersRevokeAccessToAllEntrancesParameters, options?: AcsUsersRevokeAccessToAllEntrancesOptions) => AcsUsersRevokeAccessToAllEntrancesRequest;
|
|
3867
|
+
get ['/acs/users/suspend'](): (parameters?: AcsUsersSuspendParameters, options?: AcsUsersSuspendOptions) => AcsUsersSuspendRequest;
|
|
3868
|
+
get ['/acs/users/unsuspend'](): (parameters?: AcsUsersUnsuspendParameters, options?: AcsUsersUnsuspendOptions) => AcsUsersUnsuspendRequest;
|
|
3869
|
+
get ['/acs/users/update'](): (parameters?: AcsUsersUpdateParameters, options?: AcsUsersUpdateOptions) => AcsUsersUpdateRequest;
|
|
3870
|
+
get ['/acs/users/unmanaged/get'](): (parameters?: AcsUsersUnmanagedGetParameters, options?: AcsUsersUnmanagedGetOptions) => AcsUsersUnmanagedGetRequest;
|
|
3871
|
+
get ['/acs/users/unmanaged/list'](): (parameters?: AcsUsersUnmanagedListParameters, options?: AcsUsersUnmanagedListOptions) => AcsUsersUnmanagedListRequest;
|
|
3872
|
+
get ['/action_attempts/get'](): (parameters?: ActionAttemptsGetParameters, options?: ActionAttemptsGetOptions) => ActionAttemptsGetRequest;
|
|
3873
|
+
get ['/action_attempts/list'](): (parameters?: ActionAttemptsListParameters, options?: ActionAttemptsListOptions) => ActionAttemptsListRequest;
|
|
3874
|
+
get ['/bridges/get'](): (parameters?: BridgesGetParameters, options?: BridgesGetOptions) => BridgesGetRequest;
|
|
3875
|
+
get ['/bridges/list'](): (parameters?: BridgesListParameters, options?: BridgesListOptions) => BridgesListRequest;
|
|
3876
|
+
get ['/client_sessions/create'](): (parameters?: ClientSessionsCreateParameters, options?: ClientSessionsCreateOptions) => ClientSessionsCreateRequest;
|
|
3877
|
+
get ['/client_sessions/delete'](): (parameters?: ClientSessionsDeleteParameters, options?: ClientSessionsDeleteOptions) => ClientSessionsDeleteRequest;
|
|
3878
|
+
get ['/client_sessions/get'](): (parameters?: ClientSessionsGetParameters, options?: ClientSessionsGetOptions) => ClientSessionsGetRequest;
|
|
3879
|
+
get ['/client_sessions/get_or_create'](): (parameters?: ClientSessionsGetOrCreateParameters, options?: ClientSessionsGetOrCreateOptions) => ClientSessionsGetOrCreateRequest;
|
|
3880
|
+
get ['/client_sessions/grant_access'](): (parameters?: ClientSessionsGrantAccessParameters, options?: ClientSessionsGrantAccessOptions) => ClientSessionsGrantAccessRequest;
|
|
3881
|
+
get ['/client_sessions/list'](): (parameters?: ClientSessionsListParameters, options?: ClientSessionsListOptions) => ClientSessionsListRequest;
|
|
3882
|
+
get ['/client_sessions/revoke'](): (parameters?: ClientSessionsRevokeParameters, options?: ClientSessionsRevokeOptions) => ClientSessionsRevokeRequest;
|
|
3883
|
+
get ['/connect_webviews/create'](): (parameters?: ConnectWebviewsCreateParameters, options?: ConnectWebviewsCreateOptions) => ConnectWebviewsCreateRequest;
|
|
3884
|
+
get ['/connect_webviews/delete'](): (parameters?: ConnectWebviewsDeleteParameters, options?: ConnectWebviewsDeleteOptions) => ConnectWebviewsDeleteRequest;
|
|
3885
|
+
get ['/connect_webviews/get'](): (parameters?: ConnectWebviewsGetParameters, options?: ConnectWebviewsGetOptions) => ConnectWebviewsGetRequest;
|
|
3886
|
+
get ['/connect_webviews/list'](): (parameters?: ConnectWebviewsListParameters, options?: ConnectWebviewsListOptions) => ConnectWebviewsListRequest;
|
|
3887
|
+
get ['/connected_accounts/delete'](): (parameters?: ConnectedAccountsDeleteParameters, options?: ConnectedAccountsDeleteOptions) => ConnectedAccountsDeleteRequest;
|
|
3888
|
+
get ['/connected_accounts/get'](): (parameters?: ConnectedAccountsGetParameters, options?: ConnectedAccountsGetOptions) => ConnectedAccountsGetRequest;
|
|
3889
|
+
get ['/connected_accounts/list'](): (parameters?: ConnectedAccountsListParameters, options?: ConnectedAccountsListOptions) => ConnectedAccountsListRequest;
|
|
3890
|
+
get ['/connected_accounts/sync'](): (parameters?: ConnectedAccountsSyncParameters, options?: ConnectedAccountsSyncOptions) => ConnectedAccountsSyncRequest;
|
|
3891
|
+
get ['/connected_accounts/update'](): (parameters?: ConnectedAccountsUpdateParameters, options?: ConnectedAccountsUpdateOptions) => ConnectedAccountsUpdateRequest;
|
|
3892
|
+
get ['/devices/delete'](): (parameters?: DevicesDeleteParameters, options?: DevicesDeleteOptions) => DevicesDeleteRequest;
|
|
3893
|
+
get ['/devices/get'](): (parameters?: DevicesGetParameters, options?: DevicesGetOptions) => DevicesGetRequest;
|
|
3894
|
+
get ['/devices/list'](): (parameters?: DevicesListParameters, options?: DevicesListOptions) => DevicesListRequest;
|
|
3895
|
+
get ['/devices/list_device_providers'](): (parameters?: DevicesListDeviceProvidersParameters, options?: DevicesListDeviceProvidersOptions) => DevicesListDeviceProvidersRequest;
|
|
3896
|
+
get ['/devices/update'](): (parameters?: DevicesUpdateParameters, options?: DevicesUpdateOptions) => DevicesUpdateRequest;
|
|
3897
|
+
get ['/devices/simulate/connect'](): (parameters?: DevicesSimulateConnectParameters, options?: DevicesSimulateConnectOptions) => DevicesSimulateConnectRequest;
|
|
3898
|
+
get ['/devices/simulate/disconnect'](): (parameters?: DevicesSimulateDisconnectParameters, options?: DevicesSimulateDisconnectOptions) => DevicesSimulateDisconnectRequest;
|
|
3899
|
+
get ['/devices/simulate/remove'](): (parameters?: DevicesSimulateRemoveParameters, options?: DevicesSimulateRemoveOptions) => DevicesSimulateRemoveRequest;
|
|
3900
|
+
get ['/devices/unmanaged/get'](): (parameters?: DevicesUnmanagedGetParameters, options?: DevicesUnmanagedGetOptions) => DevicesUnmanagedGetRequest;
|
|
3901
|
+
get ['/devices/unmanaged/list'](): (parameters?: DevicesUnmanagedListParameters, options?: DevicesUnmanagedListOptions) => DevicesUnmanagedListRequest;
|
|
3902
|
+
get ['/devices/unmanaged/update'](): (parameters?: DevicesUnmanagedUpdateParameters, options?: DevicesUnmanagedUpdateOptions) => DevicesUnmanagedUpdateRequest;
|
|
3903
|
+
get ['/events/get'](): (parameters?: EventsGetParameters, options?: EventsGetOptions) => EventsGetRequest;
|
|
3904
|
+
get ['/events/list'](): (parameters?: EventsListParameters, options?: EventsListOptions) => EventsListRequest;
|
|
3905
|
+
get ['/locks/get'](): (parameters?: LocksGetParameters, options?: LocksGetOptions) => LocksGetRequest;
|
|
3906
|
+
get ['/locks/list'](): (parameters?: LocksListParameters, options?: LocksListOptions) => LocksListRequest;
|
|
3907
|
+
get ['/locks/lock_door'](): (parameters?: LocksLockDoorParameters, options?: LocksLockDoorOptions) => LocksLockDoorRequest;
|
|
3908
|
+
get ['/locks/unlock_door'](): (parameters?: LocksUnlockDoorParameters, options?: LocksUnlockDoorOptions) => LocksUnlockDoorRequest;
|
|
3909
|
+
get ['/locks/simulate/keypad_code_entry'](): (parameters?: LocksSimulateKeypadCodeEntryParameters, options?: LocksSimulateKeypadCodeEntryOptions) => LocksSimulateKeypadCodeEntryRequest;
|
|
3910
|
+
get ['/locks/simulate/manual_lock_via_keypad'](): (parameters?: LocksSimulateManualLockViaKeypadParameters, options?: LocksSimulateManualLockViaKeypadOptions) => LocksSimulateManualLockViaKeypadRequest;
|
|
3911
|
+
get ['/networks/get'](): (parameters?: NetworksGetParameters, options?: NetworksGetOptions) => NetworksGetRequest;
|
|
3912
|
+
get ['/networks/list'](): (parameters?: NetworksListParameters, options?: NetworksListOptions) => NetworksListRequest;
|
|
3913
|
+
get ['/noise_sensors/list'](): (parameters?: NoiseSensorsListParameters, options?: NoiseSensorsListOptions) => NoiseSensorsListRequest;
|
|
3914
|
+
get ['/noise_sensors/noise_thresholds/create'](): (parameters?: NoiseSensorsNoiseThresholdsCreateParameters, options?: NoiseSensorsNoiseThresholdsCreateOptions) => NoiseSensorsNoiseThresholdsCreateRequest;
|
|
3915
|
+
get ['/noise_sensors/noise_thresholds/delete'](): (parameters?: NoiseSensorsNoiseThresholdsDeleteParameters, options?: NoiseSensorsNoiseThresholdsDeleteOptions) => NoiseSensorsNoiseThresholdsDeleteRequest;
|
|
3916
|
+
get ['/noise_sensors/noise_thresholds/get'](): (parameters?: NoiseSensorsNoiseThresholdsGetParameters, options?: NoiseSensorsNoiseThresholdsGetOptions) => NoiseSensorsNoiseThresholdsGetRequest;
|
|
3917
|
+
get ['/noise_sensors/noise_thresholds/list'](): (parameters?: NoiseSensorsNoiseThresholdsListParameters, options?: NoiseSensorsNoiseThresholdsListOptions) => NoiseSensorsNoiseThresholdsListRequest;
|
|
3918
|
+
get ['/noise_sensors/noise_thresholds/update'](): (parameters?: NoiseSensorsNoiseThresholdsUpdateParameters, options?: NoiseSensorsNoiseThresholdsUpdateOptions) => NoiseSensorsNoiseThresholdsUpdateRequest;
|
|
3919
|
+
get ['/noise_sensors/simulate/trigger_noise_threshold'](): (parameters?: NoiseSensorsSimulateTriggerNoiseThresholdParameters, options?: NoiseSensorsSimulateTriggerNoiseThresholdOptions) => NoiseSensorsSimulateTriggerNoiseThresholdRequest;
|
|
3920
|
+
get ['/phones/deactivate'](): (parameters?: PhonesDeactivateParameters, options?: PhonesDeactivateOptions) => PhonesDeactivateRequest;
|
|
3921
|
+
get ['/phones/get'](): (parameters?: PhonesGetParameters, options?: PhonesGetOptions) => PhonesGetRequest;
|
|
3922
|
+
get ['/phones/list'](): (parameters?: PhonesListParameters, options?: PhonesListOptions) => PhonesListRequest;
|
|
3923
|
+
get ['/phones/simulate/create_sandbox_phone'](): (parameters?: PhonesSimulateCreateSandboxPhoneParameters, options?: PhonesSimulateCreateSandboxPhoneOptions) => PhonesSimulateCreateSandboxPhoneRequest;
|
|
3924
|
+
get ['/seam/bridge/v1/bridge_client_sessions/create'](): (parameters?: SeamBridgeV1BridgeClientSessionsCreateParameters, options?: SeamBridgeV1BridgeClientSessionsCreateOptions) => SeamBridgeV1BridgeClientSessionsCreateRequest;
|
|
3925
|
+
get ['/seam/bridge/v1/bridge_client_sessions/get'](): (parameters?: SeamBridgeV1BridgeClientSessionsGetParameters, options?: SeamBridgeV1BridgeClientSessionsGetOptions) => SeamBridgeV1BridgeClientSessionsGetRequest;
|
|
3926
|
+
get ['/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'](): (parameters?: SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters, options?: SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenOptions) => SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest;
|
|
3927
|
+
get ['/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code'](): (parameters?: SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters, options?: SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeOptions) => SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest;
|
|
3928
|
+
get ['/seam/bridge/v1/bridge_client_sessions/report_status'](): (parameters?: SeamBridgeV1BridgeClientSessionsReportStatusParameters, options?: SeamBridgeV1BridgeClientSessionsReportStatusOptions) => SeamBridgeV1BridgeClientSessionsReportStatusRequest;
|
|
3929
|
+
get ['/seam/bridge/v1/bridge_connected_systems/list'](): (parameters?: SeamBridgeV1BridgeConnectedSystemsListParameters, options?: SeamBridgeV1BridgeConnectedSystemsListOptions) => SeamBridgeV1BridgeConnectedSystemsListRequest;
|
|
3930
|
+
get ['/seam/instant_key/v1/client_sessions/exchange_short_code'](): (parameters?: SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters, options?: SeamInstantKeyV1ClientSessionsExchangeShortCodeOptions) => SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest;
|
|
3931
|
+
get ['/seam/mobile_sdk/v1/acs/credentials/list'](): (parameters?: SeamMobileSdkV1AcsCredentialsListParameters, options?: SeamMobileSdkV1AcsCredentialsListOptions) => SeamMobileSdkV1AcsCredentialsListRequest;
|
|
3932
|
+
get ['/seam/mobile_sdk/v1/phone_sessions/get_or_create'](): (parameters?: SeamMobileSdkV1PhoneSessionsGetOrCreateParameters, options?: SeamMobileSdkV1PhoneSessionsGetOrCreateOptions) => SeamMobileSdkV1PhoneSessionsGetOrCreateRequest;
|
|
3933
|
+
get ['/seam/partner/v1/building_blocks/spaces/auto_map'](): (parameters?: SeamPartnerV1BuildingBlocksSpacesAutoMapParameters, options?: SeamPartnerV1BuildingBlocksSpacesAutoMapOptions) => SeamPartnerV1BuildingBlocksSpacesAutoMapRequest;
|
|
3934
|
+
get ['/seam/partner/v1/resources/list'](): (parameters?: SeamPartnerV1ResourcesListParameters, options?: SeamPartnerV1ResourcesListOptions) => SeamPartnerV1ResourcesListRequest;
|
|
3935
|
+
get ['/spaces/add_acs_entrances'](): (parameters?: SpacesAddAcsEntrancesParameters, options?: SpacesAddAcsEntrancesOptions) => SpacesAddAcsEntrancesRequest;
|
|
3936
|
+
get ['/spaces/add_devices'](): (parameters?: SpacesAddDevicesParameters, options?: SpacesAddDevicesOptions) => SpacesAddDevicesRequest;
|
|
3937
|
+
get ['/spaces/create'](): (parameters?: SpacesCreateParameters, options?: SpacesCreateOptions) => SpacesCreateRequest;
|
|
3938
|
+
get ['/spaces/delete'](): (parameters?: SpacesDeleteParameters, options?: SpacesDeleteOptions) => SpacesDeleteRequest;
|
|
3939
|
+
get ['/spaces/get'](): (parameters?: SpacesGetParameters, options?: SpacesGetOptions) => SpacesGetRequest;
|
|
3940
|
+
get ['/spaces/list'](): (parameters?: SpacesListParameters, options?: SpacesListOptions) => SpacesListRequest;
|
|
3941
|
+
get ['/spaces/remove_acs_entrances'](): (parameters?: SpacesRemoveAcsEntrancesParameters, options?: SpacesRemoveAcsEntrancesOptions) => SpacesRemoveAcsEntrancesRequest;
|
|
3942
|
+
get ['/spaces/remove_devices'](): (parameters?: SpacesRemoveDevicesParameters, options?: SpacesRemoveDevicesOptions) => SpacesRemoveDevicesRequest;
|
|
3943
|
+
get ['/spaces/update'](): (parameters?: SpacesUpdateParameters, options?: SpacesUpdateOptions) => SpacesUpdateRequest;
|
|
3944
|
+
get ['/thermostats/activate_climate_preset'](): (parameters?: ThermostatsActivateClimatePresetParameters, options?: ThermostatsActivateClimatePresetOptions) => ThermostatsActivateClimatePresetRequest;
|
|
3945
|
+
get ['/thermostats/cool'](): (parameters?: ThermostatsCoolParameters, options?: ThermostatsCoolOptions) => ThermostatsCoolRequest;
|
|
3946
|
+
get ['/thermostats/create_climate_preset'](): (parameters?: ThermostatsCreateClimatePresetParameters, options?: ThermostatsCreateClimatePresetOptions) => ThermostatsCreateClimatePresetRequest;
|
|
3947
|
+
get ['/thermostats/delete_climate_preset'](): (parameters?: ThermostatsDeleteClimatePresetParameters, options?: ThermostatsDeleteClimatePresetOptions) => ThermostatsDeleteClimatePresetRequest;
|
|
3948
|
+
get ['/thermostats/get'](): (parameters?: ThermostatsGetParameters, options?: ThermostatsGetOptions) => ThermostatsGetRequest;
|
|
3949
|
+
get ['/thermostats/heat'](): (parameters?: ThermostatsHeatParameters, options?: ThermostatsHeatOptions) => ThermostatsHeatRequest;
|
|
3950
|
+
get ['/thermostats/heat_cool'](): (parameters?: ThermostatsHeatCoolParameters, options?: ThermostatsHeatCoolOptions) => ThermostatsHeatCoolRequest;
|
|
3951
|
+
get ['/thermostats/list'](): (parameters?: ThermostatsListParameters, options?: ThermostatsListOptions) => ThermostatsListRequest;
|
|
3952
|
+
get ['/thermostats/off'](): (parameters?: ThermostatsOffParameters, options?: ThermostatsOffOptions) => ThermostatsOffRequest;
|
|
3953
|
+
get ['/thermostats/set_fallback_climate_preset'](): (parameters?: ThermostatsSetFallbackClimatePresetParameters, options?: ThermostatsSetFallbackClimatePresetOptions) => ThermostatsSetFallbackClimatePresetRequest;
|
|
3954
|
+
get ['/thermostats/set_fan_mode'](): (parameters?: ThermostatsSetFanModeParameters, options?: ThermostatsSetFanModeOptions) => ThermostatsSetFanModeRequest;
|
|
3955
|
+
get ['/thermostats/set_hvac_mode'](): (parameters?: ThermostatsSetHvacModeParameters, options?: ThermostatsSetHvacModeOptions) => ThermostatsSetHvacModeRequest;
|
|
3956
|
+
get ['/thermostats/set_temperature_threshold'](): (parameters?: ThermostatsSetTemperatureThresholdParameters, options?: ThermostatsSetTemperatureThresholdOptions) => ThermostatsSetTemperatureThresholdRequest;
|
|
3957
|
+
get ['/thermostats/update_climate_preset'](): (parameters?: ThermostatsUpdateClimatePresetParameters, options?: ThermostatsUpdateClimatePresetOptions) => ThermostatsUpdateClimatePresetRequest;
|
|
3958
|
+
get ['/thermostats/update_weekly_program'](): (parameters?: ThermostatsUpdateWeeklyProgramParameters, options?: ThermostatsUpdateWeeklyProgramOptions) => ThermostatsUpdateWeeklyProgramRequest;
|
|
3959
|
+
get ['/thermostats/daily_programs/create'](): (parameters?: ThermostatsDailyProgramsCreateParameters, options?: ThermostatsDailyProgramsCreateOptions) => ThermostatsDailyProgramsCreateRequest;
|
|
3960
|
+
get ['/thermostats/daily_programs/delete'](): (parameters?: ThermostatsDailyProgramsDeleteParameters, options?: ThermostatsDailyProgramsDeleteOptions) => ThermostatsDailyProgramsDeleteRequest;
|
|
3961
|
+
get ['/thermostats/daily_programs/update'](): (parameters?: ThermostatsDailyProgramsUpdateParameters, options?: ThermostatsDailyProgramsUpdateOptions) => ThermostatsDailyProgramsUpdateRequest;
|
|
3962
|
+
get ['/thermostats/schedules/create'](): (parameters?: ThermostatsSchedulesCreateParameters, options?: ThermostatsSchedulesCreateOptions) => ThermostatsSchedulesCreateRequest;
|
|
3963
|
+
get ['/thermostats/schedules/delete'](): (parameters?: ThermostatsSchedulesDeleteParameters, options?: ThermostatsSchedulesDeleteOptions) => ThermostatsSchedulesDeleteRequest;
|
|
3964
|
+
get ['/thermostats/schedules/get'](): (parameters?: ThermostatsSchedulesGetParameters, options?: ThermostatsSchedulesGetOptions) => ThermostatsSchedulesGetRequest;
|
|
3965
|
+
get ['/thermostats/schedules/list'](): (parameters?: ThermostatsSchedulesListParameters, options?: ThermostatsSchedulesListOptions) => ThermostatsSchedulesListRequest;
|
|
3966
|
+
get ['/thermostats/schedules/update'](): (parameters?: ThermostatsSchedulesUpdateParameters, options?: ThermostatsSchedulesUpdateOptions) => ThermostatsSchedulesUpdateRequest;
|
|
3967
|
+
get ['/thermostats/simulate/hvac_mode_adjusted'](): (parameters?: ThermostatsSimulateHvacModeAdjustedParameters, options?: ThermostatsSimulateHvacModeAdjustedOptions) => ThermostatsSimulateHvacModeAdjustedRequest;
|
|
3968
|
+
get ['/thermostats/simulate/temperature_reached'](): (parameters?: ThermostatsSimulateTemperatureReachedParameters, options?: ThermostatsSimulateTemperatureReachedOptions) => ThermostatsSimulateTemperatureReachedRequest;
|
|
3969
|
+
get ['/unstable_access_grants/create'](): (parameters?: UnstableAccessGrantsCreateParameters, options?: UnstableAccessGrantsCreateOptions) => UnstableAccessGrantsCreateRequest;
|
|
3970
|
+
get ['/unstable_access_grants/delete'](): (parameters?: UnstableAccessGrantsDeleteParameters, options?: UnstableAccessGrantsDeleteOptions) => UnstableAccessGrantsDeleteRequest;
|
|
3971
|
+
get ['/unstable_access_grants/get'](): (parameters?: UnstableAccessGrantsGetParameters, options?: UnstableAccessGrantsGetOptions) => UnstableAccessGrantsGetRequest;
|
|
3972
|
+
get ['/unstable_access_grants/list'](): (parameters?: UnstableAccessGrantsListParameters, options?: UnstableAccessGrantsListOptions) => UnstableAccessGrantsListRequest;
|
|
3973
|
+
get ['/unstable_access_methods/delete'](): (parameters?: UnstableAccessMethodsDeleteParameters, options?: UnstableAccessMethodsDeleteOptions) => UnstableAccessMethodsDeleteRequest;
|
|
3974
|
+
get ['/unstable_access_methods/get'](): (parameters?: UnstableAccessMethodsGetParameters, options?: UnstableAccessMethodsGetOptions) => UnstableAccessMethodsGetRequest;
|
|
3975
|
+
get ['/unstable_access_methods/list'](): (parameters?: UnstableAccessMethodsListParameters, options?: UnstableAccessMethodsListOptions) => UnstableAccessMethodsListRequest;
|
|
3976
|
+
get ['/unstable_locations/add_acs_entrances'](): (parameters?: UnstableLocationsAddAcsEntrancesParameters, options?: UnstableLocationsAddAcsEntrancesOptions) => UnstableLocationsAddAcsEntrancesRequest;
|
|
3977
|
+
get ['/unstable_locations/add_devices'](): (parameters?: UnstableLocationsAddDevicesParameters, options?: UnstableLocationsAddDevicesOptions) => UnstableLocationsAddDevicesRequest;
|
|
3978
|
+
get ['/unstable_locations/create'](): (parameters?: UnstableLocationsCreateParameters, options?: UnstableLocationsCreateOptions) => UnstableLocationsCreateRequest;
|
|
3979
|
+
get ['/unstable_locations/delete'](): (parameters?: UnstableLocationsDeleteParameters, options?: UnstableLocationsDeleteOptions) => UnstableLocationsDeleteRequest;
|
|
3980
|
+
get ['/unstable_locations/get'](): (parameters?: UnstableLocationsGetParameters, options?: UnstableLocationsGetOptions) => UnstableLocationsGetRequest;
|
|
3981
|
+
get ['/unstable_locations/list'](): (parameters?: UnstableLocationsListParameters, options?: UnstableLocationsListOptions) => UnstableLocationsListRequest;
|
|
3982
|
+
get ['/unstable_locations/remove_acs_entrances'](): (parameters?: UnstableLocationsRemoveAcsEntrancesParameters, options?: UnstableLocationsRemoveAcsEntrancesOptions) => UnstableLocationsRemoveAcsEntrancesRequest;
|
|
3983
|
+
get ['/unstable_locations/remove_devices'](): (parameters?: UnstableLocationsRemoveDevicesParameters, options?: UnstableLocationsRemoveDevicesOptions) => UnstableLocationsRemoveDevicesRequest;
|
|
3984
|
+
get ['/unstable_locations/update'](): (parameters?: UnstableLocationsUpdateParameters, options?: UnstableLocationsUpdateOptions) => UnstableLocationsUpdateRequest;
|
|
3985
|
+
get ['/unstable_partner/building_blocks/connect_accounts'](): (parameters?: UnstablePartnerBuildingBlocksConnectAccountsParameters, options?: UnstablePartnerBuildingBlocksConnectAccountsOptions) => UnstablePartnerBuildingBlocksConnectAccountsRequest;
|
|
3986
|
+
get ['/unstable_partner/building_blocks/generate_magic_link'](): (parameters?: UnstablePartnerBuildingBlocksGenerateMagicLinkParameters, options?: UnstablePartnerBuildingBlocksGenerateMagicLinkOptions) => UnstablePartnerBuildingBlocksGenerateMagicLinkRequest;
|
|
3987
|
+
get ['/unstable_partner/building_blocks/manage_devices'](): (parameters?: UnstablePartnerBuildingBlocksManageDevicesParameters, options?: UnstablePartnerBuildingBlocksManageDevicesOptions) => UnstablePartnerBuildingBlocksManageDevicesRequest;
|
|
3988
|
+
get ['/unstable_partner/building_blocks/organize_spaces'](): (parameters?: UnstablePartnerBuildingBlocksOrganizeSpacesParameters, options?: UnstablePartnerBuildingBlocksOrganizeSpacesOptions) => UnstablePartnerBuildingBlocksOrganizeSpacesRequest;
|
|
3989
|
+
get ['/unstable_partner/resources/push'](): (parameters?: UnstablePartnerResourcesPushParameters, options?: UnstablePartnerResourcesPushOptions) => UnstablePartnerResourcesPushRequest;
|
|
3990
|
+
get ['/user_identities/add_acs_user'](): (parameters?: UserIdentitiesAddAcsUserParameters, options?: UserIdentitiesAddAcsUserOptions) => UserIdentitiesAddAcsUserRequest;
|
|
3991
|
+
get ['/user_identities/create'](): (parameters?: UserIdentitiesCreateParameters, options?: UserIdentitiesCreateOptions) => UserIdentitiesCreateRequest;
|
|
3992
|
+
get ['/user_identities/delete'](): (parameters?: UserIdentitiesDeleteParameters, options?: UserIdentitiesDeleteOptions) => UserIdentitiesDeleteRequest;
|
|
3993
|
+
get ['/user_identities/generate_instant_key'](): (parameters?: UserIdentitiesGenerateInstantKeyParameters, options?: UserIdentitiesGenerateInstantKeyOptions) => UserIdentitiesGenerateInstantKeyRequest;
|
|
3994
|
+
get ['/user_identities/get'](): (parameters?: UserIdentitiesGetParameters, options?: UserIdentitiesGetOptions) => UserIdentitiesGetRequest;
|
|
3995
|
+
get ['/user_identities/grant_access_to_device'](): (parameters?: UserIdentitiesGrantAccessToDeviceParameters, options?: UserIdentitiesGrantAccessToDeviceOptions) => UserIdentitiesGrantAccessToDeviceRequest;
|
|
3996
|
+
get ['/user_identities/list'](): (parameters?: UserIdentitiesListParameters, options?: UserIdentitiesListOptions) => UserIdentitiesListRequest;
|
|
3997
|
+
get ['/user_identities/list_accessible_devices'](): (parameters?: UserIdentitiesListAccessibleDevicesParameters, options?: UserIdentitiesListAccessibleDevicesOptions) => UserIdentitiesListAccessibleDevicesRequest;
|
|
3998
|
+
get ['/user_identities/list_acs_systems'](): (parameters?: UserIdentitiesListAcsSystemsParameters, options?: UserIdentitiesListAcsSystemsOptions) => UserIdentitiesListAcsSystemsRequest;
|
|
3999
|
+
get ['/user_identities/list_acs_users'](): (parameters?: UserIdentitiesListAcsUsersParameters, options?: UserIdentitiesListAcsUsersOptions) => UserIdentitiesListAcsUsersRequest;
|
|
4000
|
+
get ['/user_identities/remove_acs_user'](): (parameters?: UserIdentitiesRemoveAcsUserParameters, options?: UserIdentitiesRemoveAcsUserOptions) => UserIdentitiesRemoveAcsUserRequest;
|
|
4001
|
+
get ['/user_identities/revoke_access_to_device'](): (parameters?: UserIdentitiesRevokeAccessToDeviceParameters, options?: UserIdentitiesRevokeAccessToDeviceOptions) => UserIdentitiesRevokeAccessToDeviceRequest;
|
|
4002
|
+
get ['/user_identities/update'](): (parameters?: UserIdentitiesUpdateParameters, options?: UserIdentitiesUpdateOptions) => UserIdentitiesUpdateRequest;
|
|
4003
|
+
get ['/user_identities/enrollment_automations/delete'](): (parameters?: UserIdentitiesEnrollmentAutomationsDeleteParameters, options?: UserIdentitiesEnrollmentAutomationsDeleteOptions) => UserIdentitiesEnrollmentAutomationsDeleteRequest;
|
|
4004
|
+
get ['/user_identities/enrollment_automations/get'](): (parameters?: UserIdentitiesEnrollmentAutomationsGetParameters, options?: UserIdentitiesEnrollmentAutomationsGetOptions) => UserIdentitiesEnrollmentAutomationsGetRequest;
|
|
4005
|
+
get ['/user_identities/enrollment_automations/launch'](): (parameters?: UserIdentitiesEnrollmentAutomationsLaunchParameters, options?: UserIdentitiesEnrollmentAutomationsLaunchOptions) => UserIdentitiesEnrollmentAutomationsLaunchRequest;
|
|
4006
|
+
get ['/user_identities/enrollment_automations/list'](): (parameters?: UserIdentitiesEnrollmentAutomationsListParameters, options?: UserIdentitiesEnrollmentAutomationsListOptions) => UserIdentitiesEnrollmentAutomationsListRequest;
|
|
4007
|
+
get ['/webhooks/create'](): (parameters?: WebhooksCreateParameters, options?: WebhooksCreateOptions) => WebhooksCreateRequest;
|
|
4008
|
+
get ['/webhooks/delete'](): (parameters?: WebhooksDeleteParameters, options?: WebhooksDeleteOptions) => WebhooksDeleteRequest;
|
|
4009
|
+
get ['/webhooks/get'](): (parameters?: WebhooksGetParameters, options?: WebhooksGetOptions) => WebhooksGetRequest;
|
|
4010
|
+
get ['/webhooks/list'](): (parameters?: WebhooksListParameters, options?: WebhooksListOptions) => WebhooksListRequest;
|
|
4011
|
+
get ['/webhooks/update'](): (parameters?: WebhooksUpdateParameters, options?: WebhooksUpdateOptions) => WebhooksUpdateRequest;
|
|
4012
|
+
get ['/workspaces/create'](): (parameters?: WorkspacesCreateParameters, options?: WorkspacesCreateOptions) => WorkspacesCreateRequest;
|
|
4013
|
+
get ['/workspaces/get'](): (parameters?: WorkspacesGetParameters, options?: WorkspacesGetOptions) => WorkspacesGetRequest;
|
|
4014
|
+
get ['/workspaces/list'](): (parameters?: WorkspacesListParameters, options?: WorkspacesListOptions) => WorkspacesListRequest;
|
|
4015
|
+
get ['/workspaces/reset_sandbox'](): (parameters?: WorkspacesResetSandboxParameters, options?: WorkspacesResetSandboxOptions) => WorkspacesResetSandboxRequest;
|
|
4016
|
+
get ['/workspaces/update'](): (parameters?: WorkspacesUpdateParameters, options?: WorkspacesUpdateOptions) => WorkspacesUpdateRequest;
|
|
1565
4017
|
}
|
|
4018
|
+
type SeamHttpEndpointPaths = '/access_codes/create' | '/access_codes/create_multiple' | '/access_codes/delete' | '/access_codes/generate_code' | '/access_codes/get' | '/access_codes/list' | '/access_codes/pull_backup_access_code' | '/access_codes/report_device_constraints' | '/access_codes/update' | '/access_codes/update_multiple' | '/access_codes/simulate/create_unmanaged_access_code' | '/access_codes/unmanaged/convert_to_managed' | '/access_codes/unmanaged/delete' | '/access_codes/unmanaged/get' | '/access_codes/unmanaged/list' | '/access_codes/unmanaged/update' | '/access_grants/create' | '/access_grants/delete' | '/access_grants/get' | '/access_grants/list' | '/access_grants/update' | '/access_methods/delete' | '/access_methods/get' | '/access_methods/list' | '/acs/access_groups/add_user' | '/acs/access_groups/get' | '/acs/access_groups/list' | '/acs/access_groups/list_accessible_entrances' | '/acs/access_groups/list_users' | '/acs/access_groups/remove_user' | '/acs/access_groups/unmanaged/get' | '/acs/access_groups/unmanaged/list' | '/acs/credential_pools/list' | '/acs/credential_provisioning_automations/launch' | '/acs/credentials/assign' | '/acs/credentials/create' | '/acs/credentials/create_offline_code' | '/acs/credentials/delete' | '/acs/credentials/get' | '/acs/credentials/list' | '/acs/credentials/list_accessible_entrances' | '/acs/credentials/unassign' | '/acs/credentials/update' | '/acs/credentials/unmanaged/get' | '/acs/credentials/unmanaged/list' | '/acs/encoders/encode_access_method' | '/acs/encoders/encode_credential' | '/acs/encoders/get' | '/acs/encoders/list' | '/acs/encoders/scan_credential' | '/acs/encoders/simulate/next_credential_encode_will_fail' | '/acs/encoders/simulate/next_credential_encode_will_succeed' | '/acs/encoders/simulate/next_credential_scan_will_fail' | '/acs/encoders/simulate/next_credential_scan_will_succeed' | '/acs/entrances/get' | '/acs/entrances/grant_access' | '/acs/entrances/list' | '/acs/entrances/list_credentials_with_access' | '/acs/systems/get' | '/acs/systems/list' | '/acs/systems/list_compatible_credential_manager_acs_systems' | '/acs/users/add_to_access_group' | '/acs/users/create' | '/acs/users/delete' | '/acs/users/get' | '/acs/users/list' | '/acs/users/list_accessible_entrances' | '/acs/users/remove_from_access_group' | '/acs/users/revoke_access_to_all_entrances' | '/acs/users/suspend' | '/acs/users/unsuspend' | '/acs/users/update' | '/acs/users/unmanaged/get' | '/acs/users/unmanaged/list' | '/action_attempts/get' | '/action_attempts/list' | '/bridges/get' | '/bridges/list' | '/client_sessions/create' | '/client_sessions/delete' | '/client_sessions/get' | '/client_sessions/get_or_create' | '/client_sessions/grant_access' | '/client_sessions/list' | '/client_sessions/revoke' | '/connect_webviews/create' | '/connect_webviews/delete' | '/connect_webviews/get' | '/connect_webviews/list' | '/connected_accounts/delete' | '/connected_accounts/get' | '/connected_accounts/list' | '/connected_accounts/sync' | '/connected_accounts/update' | '/devices/delete' | '/devices/get' | '/devices/list' | '/devices/list_device_providers' | '/devices/update' | '/devices/simulate/connect' | '/devices/simulate/disconnect' | '/devices/simulate/remove' | '/devices/unmanaged/get' | '/devices/unmanaged/list' | '/devices/unmanaged/update' | '/events/get' | '/events/list' | '/locks/get' | '/locks/list' | '/locks/lock_door' | '/locks/unlock_door' | '/locks/simulate/keypad_code_entry' | '/locks/simulate/manual_lock_via_keypad' | '/networks/get' | '/networks/list' | '/noise_sensors/list' | '/noise_sensors/noise_thresholds/create' | '/noise_sensors/noise_thresholds/delete' | '/noise_sensors/noise_thresholds/get' | '/noise_sensors/noise_thresholds/list' | '/noise_sensors/noise_thresholds/update' | '/noise_sensors/simulate/trigger_noise_threshold' | '/phones/deactivate' | '/phones/get' | '/phones/list' | '/phones/simulate/create_sandbox_phone' | '/seam/bridge/v1/bridge_client_sessions/create' | '/seam/bridge/v1/bridge_client_sessions/get' | '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token' | '/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code' | '/seam/bridge/v1/bridge_client_sessions/report_status' | '/seam/bridge/v1/bridge_connected_systems/list' | '/seam/instant_key/v1/client_sessions/exchange_short_code' | '/seam/mobile_sdk/v1/acs/credentials/list' | '/seam/mobile_sdk/v1/phone_sessions/get_or_create' | '/seam/partner/v1/building_blocks/spaces/auto_map' | '/seam/partner/v1/resources/list' | '/spaces/add_acs_entrances' | '/spaces/add_devices' | '/spaces/create' | '/spaces/delete' | '/spaces/get' | '/spaces/list' | '/spaces/remove_acs_entrances' | '/spaces/remove_devices' | '/spaces/update' | '/thermostats/activate_climate_preset' | '/thermostats/cool' | '/thermostats/create_climate_preset' | '/thermostats/delete_climate_preset' | '/thermostats/get' | '/thermostats/heat' | '/thermostats/heat_cool' | '/thermostats/list' | '/thermostats/off' | '/thermostats/set_fallback_climate_preset' | '/thermostats/set_fan_mode' | '/thermostats/set_hvac_mode' | '/thermostats/set_temperature_threshold' | '/thermostats/update_climate_preset' | '/thermostats/update_weekly_program' | '/thermostats/daily_programs/create' | '/thermostats/daily_programs/delete' | '/thermostats/daily_programs/update' | '/thermostats/schedules/create' | '/thermostats/schedules/delete' | '/thermostats/schedules/get' | '/thermostats/schedules/list' | '/thermostats/schedules/update' | '/thermostats/simulate/hvac_mode_adjusted' | '/thermostats/simulate/temperature_reached' | '/unstable_access_grants/create' | '/unstable_access_grants/delete' | '/unstable_access_grants/get' | '/unstable_access_grants/list' | '/unstable_access_methods/delete' | '/unstable_access_methods/get' | '/unstable_access_methods/list' | '/unstable_locations/add_acs_entrances' | '/unstable_locations/add_devices' | '/unstable_locations/create' | '/unstable_locations/delete' | '/unstable_locations/get' | '/unstable_locations/list' | '/unstable_locations/remove_acs_entrances' | '/unstable_locations/remove_devices' | '/unstable_locations/update' | '/unstable_partner/building_blocks/connect_accounts' | '/unstable_partner/building_blocks/generate_magic_link' | '/unstable_partner/building_blocks/manage_devices' | '/unstable_partner/building_blocks/organize_spaces' | '/unstable_partner/resources/push' | '/user_identities/add_acs_user' | '/user_identities/create' | '/user_identities/delete' | '/user_identities/generate_instant_key' | '/user_identities/get' | '/user_identities/grant_access_to_device' | '/user_identities/list' | '/user_identities/list_accessible_devices' | '/user_identities/list_acs_systems' | '/user_identities/list_acs_users' | '/user_identities/remove_acs_user' | '/user_identities/revoke_access_to_device' | '/user_identities/update' | '/user_identities/enrollment_automations/delete' | '/user_identities/enrollment_automations/get' | '/user_identities/enrollment_automations/launch' | '/user_identities/enrollment_automations/list' | '/webhooks/create' | '/webhooks/delete' | '/webhooks/get' | '/webhooks/list' | '/webhooks/update' | '/workspaces/create' | '/workspaces/get' | '/workspaces/list' | '/workspaces/reset_sandbox' | '/workspaces/update';
|
|
1566
4019
|
|
|
1567
4020
|
interface ResolveActionAttemptOptions {
|
|
1568
4021
|
timeout?: number;
|
|
@@ -3852,6 +6305,7 @@ interface SeamHttpCommonOptions extends ClientOptions, SeamHttpRequestOptions {
|
|
|
3852
6305
|
}
|
|
3853
6306
|
interface SeamHttpRequestOptions {
|
|
3854
6307
|
waitForActionAttempt?: boolean | ResolveActionAttemptOptions;
|
|
6308
|
+
isUndocumentedApiEnabled?: boolean;
|
|
3855
6309
|
}
|
|
3856
6310
|
interface SeamHttpFromPublishableKeyOptions extends SeamHttpCommonOptions {
|
|
3857
6311
|
}
|
|
@@ -3859,7 +6313,7 @@ interface SeamHttpOptionsFromEnv extends SeamHttpCommonOptions {
|
|
|
3859
6313
|
}
|
|
3860
6314
|
interface SeamHttpMultiWorkspaceOptionsFromEnv extends SeamHttpCommonOptions {
|
|
3861
6315
|
}
|
|
3862
|
-
interface SeamHttpMultiWorkspaceOptionsWithClient extends
|
|
6316
|
+
interface SeamHttpMultiWorkspaceOptionsWithClient extends SeamHttpCommonOptions {
|
|
3863
6317
|
client: Client;
|
|
3864
6318
|
}
|
|
3865
6319
|
declare const isSeamHttpMultiWorkspaceOptionsWithClient: (options: SeamHttpOptions) => options is SeamHttpMultiWorkspaceOptionsWithClient;
|
|
@@ -3955,4 +6409,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3955
6409
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3956
6410
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3957
6411
|
|
|
3958
|
-
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParams, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeParams, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParams, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParams, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesReportDeviceConstraintsBody, type AccessCodesReportDeviceConstraintsOptions, type AccessCodesReportDeviceConstraintsResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateResponse, type AccessGrantsCreateBody, type AccessGrantsCreateOptions, type AccessGrantsCreateResponse, type AccessGrantsDeleteOptions, type AccessGrantsDeleteParams, type AccessGrantsDeleteResponse, type AccessGrantsGetOptions, type AccessGrantsGetParams, type AccessGrantsGetResponse, type AccessGrantsListOptions, type AccessGrantsListParams, type AccessGrantsListResponse, type AccessGrantsUpdateBody, type AccessGrantsUpdateOptions, type AccessGrantsUpdateResponse, type AccessMethodsDeleteOptions, type AccessMethodsDeleteParams, type AccessMethodsDeleteResponse, type AccessMethodsGetOptions, type AccessMethodsGetParams, type AccessMethodsGetResponse, type AccessMethodsListOptions, type AccessMethodsListParams, type AccessMethodsListResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParams, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOptions, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParams, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParams, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeAccessMethodBody, type AcsEncodersEncodeAccessMethodOptions, type AcsEncodersEncodeAccessMethodResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersGetOptions, type AcsEncodersGetParams, type AcsEncodersGetResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesBody, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeBody, type ClientSessionsRevokeOptions, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsSyncBody, type ConnectedAccountsSyncOptions, type ConnectedAccountsSyncResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveParams, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesGetOptions, type PhonesGetParams, type PhonesGetResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneParams, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAccessGrants, SeamHttpAccessMethods, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsCredentials, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEndpoints, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsFromEnv, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpSpaces, SeamHttpThermostats, SeamHttpThermostatsDailyPrograms, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, SeamPaginator, type SpacesAddAcsEntrancesBody, type SpacesAddAcsEntrancesOptions, type SpacesAddAcsEntrancesResponse, type SpacesAddDevicesBody, type SpacesAddDevicesOptions, type SpacesAddDevicesResponse, type SpacesCreateBody, type SpacesCreateOptions, type SpacesCreateResponse, type SpacesDeleteOptions, type SpacesDeleteParams, type SpacesDeleteResponse, type SpacesGetOptions, type SpacesGetParams, type SpacesGetResponse, type SpacesListOptions, type SpacesListParams, type SpacesListResponse, type SpacesRemoveAcsEntrancesOptions, type SpacesRemoveAcsEntrancesParams, type SpacesRemoveAcsEntrancesResponse, type SpacesRemoveDevicesOptions, type SpacesRemoveDevicesParams, type SpacesRemoveDevicesResponse, type SpacesUpdateBody, type SpacesUpdateOptions, type SpacesUpdateResponse, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDailyProgramsCreateBody, type ThermostatsDailyProgramsCreateOptions, type ThermostatsDailyProgramsCreateResponse, type ThermostatsDailyProgramsDeleteOptions, type ThermostatsDailyProgramsDeleteParams, type ThermostatsDailyProgramsDeleteResponse, type ThermostatsDailyProgramsUpdateBody, type ThermostatsDailyProgramsUpdateOptions, type ThermostatsDailyProgramsUpdateResponse, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetParams, type ThermostatsDeleteClimatePresetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type ThermostatsUpdateWeeklyProgramBody, type ThermostatsUpdateWeeklyProgramOptions, type ThermostatsUpdateWeeklyProgramResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGenerateInstantKeyBody, type UserIdentitiesGenerateInstantKeyOptions, type UserIdentitiesGenerateInstantKeyResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, type WorkspacesUpdateBody, type WorkspacesUpdateOptions, type WorkspacesUpdateResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|
|
6412
|
+
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleParameters, type AccessCodesCreateMultipleRequest, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateParameters, type AccessCodesCreateRequest, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParameters, type AccessCodesDeleteParams, type AccessCodesDeleteRequest, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeParameters, type AccessCodesGenerateCodeParams, type AccessCodesGenerateCodeRequest, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParameters, type AccessCodesGetParams, type AccessCodesGetRequest, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParameters, type AccessCodesListParams, type AccessCodesListRequest, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeParameters, type AccessCodesPullBackupAccessCodeRequest, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesReportDeviceConstraintsBody, type AccessCodesReportDeviceConstraintsOptions, type AccessCodesReportDeviceConstraintsParameters, type AccessCodesReportDeviceConstraintsRequest, type AccessCodesReportDeviceConstraintsResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeParameters, type AccessCodesSimulateCreateUnmanagedAccessCodeRequest, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedParameters, type AccessCodesUnmanagedConvertToManagedRequest, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParameters, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteRequest, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParameters, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetRequest, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParameters, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListRequest, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateParameters, type AccessCodesUnmanagedUpdateRequest, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleParameters, type AccessCodesUpdateMultipleRequest, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateParameters, type AccessCodesUpdateRequest, type AccessCodesUpdateResponse, type AccessGrantsCreateBody, type AccessGrantsCreateOptions, type AccessGrantsCreateParameters, type AccessGrantsCreateRequest, type AccessGrantsCreateResponse, type AccessGrantsDeleteOptions, type AccessGrantsDeleteParameters, type AccessGrantsDeleteParams, type AccessGrantsDeleteRequest, type AccessGrantsDeleteResponse, type AccessGrantsGetOptions, type AccessGrantsGetParameters, type AccessGrantsGetParams, type AccessGrantsGetRequest, type AccessGrantsGetResponse, type AccessGrantsListOptions, type AccessGrantsListParameters, type AccessGrantsListParams, type AccessGrantsListRequest, type AccessGrantsListResponse, type AccessGrantsUpdateBody, type AccessGrantsUpdateOptions, type AccessGrantsUpdateParameters, type AccessGrantsUpdateRequest, type AccessGrantsUpdateResponse, type AccessMethodsDeleteOptions, type AccessMethodsDeleteParameters, type AccessMethodsDeleteParams, type AccessMethodsDeleteRequest, type AccessMethodsDeleteResponse, type AccessMethodsGetOptions, type AccessMethodsGetParameters, type AccessMethodsGetParams, type AccessMethodsGetRequest, type AccessMethodsGetResponse, type AccessMethodsListOptions, type AccessMethodsListParameters, type AccessMethodsListParams, type AccessMethodsListRequest, type AccessMethodsListResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserParameters, type AcsAccessGroupsAddUserRequest, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParameters, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetRequest, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParameters, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesRequest, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParameters, type AcsAccessGroupsListParams, type AcsAccessGroupsListRequest, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParameters, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersRequest, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParameters, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserRequest, type AcsAccessGroupsRemoveUserResponse, type AcsAccessGroupsUnmanagedGetOptions, type AcsAccessGroupsUnmanagedGetParameters, type AcsAccessGroupsUnmanagedGetParams, type AcsAccessGroupsUnmanagedGetRequest, type AcsAccessGroupsUnmanagedGetResponse, type AcsAccessGroupsUnmanagedListOptions, type AcsAccessGroupsUnmanagedListParameters, type AcsAccessGroupsUnmanagedListParams, type AcsAccessGroupsUnmanagedListRequest, type AcsAccessGroupsUnmanagedListResponse, type AcsCredentialPoolsListOptions, type AcsCredentialPoolsListParameters, type AcsCredentialPoolsListParams, type AcsCredentialPoolsListRequest, type AcsCredentialPoolsListResponse, type AcsCredentialProvisioningAutomationsLaunchBody, type AcsCredentialProvisioningAutomationsLaunchOptions, type AcsCredentialProvisioningAutomationsLaunchParameters, type AcsCredentialProvisioningAutomationsLaunchRequest, type AcsCredentialProvisioningAutomationsLaunchResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignParameters, type AcsCredentialsAssignRequest, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOfflineCodeBody, type AcsCredentialsCreateOfflineCodeOptions, type AcsCredentialsCreateOfflineCodeParameters, type AcsCredentialsCreateOfflineCodeRequest, type AcsCredentialsCreateOfflineCodeResponse, type AcsCredentialsCreateOptions, type AcsCredentialsCreateParameters, type AcsCredentialsCreateRequest, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParameters, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteRequest, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParameters, type AcsCredentialsGetParams, type AcsCredentialsGetRequest, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParameters, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesRequest, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParameters, type AcsCredentialsListParams, type AcsCredentialsListRequest, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignParameters, type AcsCredentialsUnassignRequest, type AcsCredentialsUnassignResponse, type AcsCredentialsUnmanagedGetOptions, type AcsCredentialsUnmanagedGetParameters, type AcsCredentialsUnmanagedGetParams, type AcsCredentialsUnmanagedGetRequest, type AcsCredentialsUnmanagedGetResponse, type AcsCredentialsUnmanagedListOptions, type AcsCredentialsUnmanagedListParameters, type AcsCredentialsUnmanagedListParams, type AcsCredentialsUnmanagedListRequest, type AcsCredentialsUnmanagedListResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateParameters, type AcsCredentialsUpdateRequest, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeAccessMethodBody, type AcsEncodersEncodeAccessMethodOptions, type AcsEncodersEncodeAccessMethodParameters, type AcsEncodersEncodeAccessMethodRequest, type AcsEncodersEncodeAccessMethodResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialParameters, type AcsEncodersEncodeCredentialRequest, type AcsEncodersEncodeCredentialResponse, type AcsEncodersGetOptions, type AcsEncodersGetParameters, type AcsEncodersGetParams, type AcsEncodersGetRequest, type AcsEncodersGetResponse, type AcsEncodersListOptions, type AcsEncodersListParameters, type AcsEncodersListParams, type AcsEncodersListRequest, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialParameters, type AcsEncodersScanCredentialRequest, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailParameters, type AcsEncodersSimulateNextCredentialEncodeWillFailRequest, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters, type AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailParameters, type AcsEncodersSimulateNextCredentialScanWillFailRequest, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedParameters, type AcsEncodersSimulateNextCredentialScanWillSucceedRequest, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParameters, type AcsEntrancesGetParams, type AcsEntrancesGetRequest, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessParameters, type AcsEntrancesGrantAccessRequest, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParameters, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessRequest, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParameters, type AcsEntrancesListParams, type AcsEntrancesListRequest, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParameters, type AcsSystemsGetParams, type AcsSystemsGetRequest, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParameters, type AcsSystemsListParams, type AcsSystemsListRequest, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupParameters, type AcsUsersAddToAccessGroupRequest, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateParameters, type AcsUsersCreateRequest, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParameters, type AcsUsersDeleteParams, type AcsUsersDeleteRequest, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParameters, type AcsUsersGetParams, type AcsUsersGetRequest, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParameters, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesRequest, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParameters, type AcsUsersListParams, type AcsUsersListRequest, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParameters, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupRequest, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesBody, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParameters, type AcsUsersRevokeAccessToAllEntrancesRequest, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendParameters, type AcsUsersSuspendRequest, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParameters, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetRequest, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParameters, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListRequest, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendParameters, type AcsUsersUnsuspendRequest, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateParameters, type AcsUsersUpdateRequest, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParameters, type ActionAttemptsGetParams, type ActionAttemptsGetRequest, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParameters, type ActionAttemptsListParams, type ActionAttemptsListRequest, type ActionAttemptsListResponse, type BridgesGetOptions, type BridgesGetParameters, type BridgesGetParams, type BridgesGetRequest, type BridgesGetResponse, type BridgesListOptions, type BridgesListParameters, type BridgesListParams, type BridgesListRequest, type BridgesListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateParameters, type ClientSessionsCreateRequest, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParameters, type ClientSessionsDeleteParams, type ClientSessionsDeleteRequest, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateParameters, type ClientSessionsGetOrCreateRequest, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParameters, type ClientSessionsGetParams, type ClientSessionsGetRequest, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessParameters, type ClientSessionsGrantAccessRequest, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParameters, type ClientSessionsListParams, type ClientSessionsListRequest, type ClientSessionsListResponse, type ClientSessionsRevokeBody, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParameters, type ClientSessionsRevokeRequest, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateParameters, type ConnectWebviewsCreateRequest, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParameters, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteRequest, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParameters, type ConnectWebviewsGetParams, type ConnectWebviewsGetRequest, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParameters, type ConnectWebviewsListParams, type ConnectWebviewsListRequest, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParameters, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteRequest, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParameters, type ConnectedAccountsGetParams, type ConnectedAccountsGetRequest, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParameters, type ConnectedAccountsListParams, type ConnectedAccountsListRequest, type ConnectedAccountsListResponse, type ConnectedAccountsSyncBody, type ConnectedAccountsSyncOptions, type ConnectedAccountsSyncParameters, type ConnectedAccountsSyncRequest, type ConnectedAccountsSyncResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateParameters, type ConnectedAccountsUpdateRequest, type ConnectedAccountsUpdateResponse, type DevicesDeleteOptions, type DevicesDeleteParameters, type DevicesDeleteParams, type DevicesDeleteRequest, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParameters, type DevicesGetParams, type DevicesGetRequest, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParameters, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersRequest, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParameters, type DevicesListParams, type DevicesListRequest, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectParameters, type DevicesSimulateConnectRequest, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectParameters, type DevicesSimulateDisconnectRequest, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveParameters, type DevicesSimulateRemoveParams, type DevicesSimulateRemoveRequest, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParameters, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetRequest, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParameters, type DevicesUnmanagedListParams, type DevicesUnmanagedListRequest, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateParameters, type DevicesUnmanagedUpdateRequest, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateParameters, type DevicesUpdateRequest, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParameters, type EventsGetParams, type EventsGetRequest, type EventsGetResponse, type EventsListOptions, type EventsListParameters, type EventsListParams, type EventsListRequest, type EventsListResponse, type LocksGetOptions, type LocksGetParameters, type LocksGetParams, type LocksGetRequest, type LocksGetResponse, type LocksListOptions, type LocksListParameters, type LocksListParams, type LocksListRequest, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorParameters, type LocksLockDoorRequest, type LocksLockDoorResponse, type LocksSimulateKeypadCodeEntryBody, type LocksSimulateKeypadCodeEntryOptions, type LocksSimulateKeypadCodeEntryParameters, type LocksSimulateKeypadCodeEntryRequest, type LocksSimulateKeypadCodeEntryResponse, type LocksSimulateManualLockViaKeypadBody, type LocksSimulateManualLockViaKeypadOptions, type LocksSimulateManualLockViaKeypadParameters, type LocksSimulateManualLockViaKeypadRequest, type LocksSimulateManualLockViaKeypadResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorParameters, type LocksUnlockDoorRequest, type LocksUnlockDoorResponse, type NetworksGetOptions, type NetworksGetParameters, type NetworksGetParams, type NetworksGetRequest, type NetworksGetResponse, type NetworksListOptions, type NetworksListParameters, type NetworksListParams, type NetworksListRequest, type NetworksListResponse, type NoiseSensorsListOptions, type NoiseSensorsListParameters, type NoiseSensorsListParams, type NoiseSensorsListRequest, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateParameters, type NoiseSensorsNoiseThresholdsCreateRequest, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParameters, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteRequest, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParameters, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetRequest, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParameters, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListRequest, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateParameters, type NoiseSensorsNoiseThresholdsUpdateRequest, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdParameters, type NoiseSensorsSimulateTriggerNoiseThresholdRequest, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParameters, type PhonesDeactivateParams, type PhonesDeactivateRequest, type PhonesDeactivateResponse, type PhonesGetOptions, type PhonesGetParameters, type PhonesGetParams, type PhonesGetRequest, type PhonesGetResponse, type PhonesListOptions, type PhonesListParameters, type PhonesListParams, type PhonesListRequest, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneParameters, type PhonesSimulateCreateSandboxPhoneParams, type PhonesSimulateCreateSandboxPhoneRequest, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, type SeamBridgeV1BridgeClientSessionsCreateBody, type SeamBridgeV1BridgeClientSessionsCreateOptions, type SeamBridgeV1BridgeClientSessionsCreateParameters, type SeamBridgeV1BridgeClientSessionsCreateRequest, type SeamBridgeV1BridgeClientSessionsCreateResponse, type SeamBridgeV1BridgeClientSessionsGetOptions, type SeamBridgeV1BridgeClientSessionsGetParameters, type SeamBridgeV1BridgeClientSessionsGetParams, type SeamBridgeV1BridgeClientSessionsGetRequest, type SeamBridgeV1BridgeClientSessionsGetResponse, type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenBody, type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenOptions, type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenParameters, type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenRequest, type SeamBridgeV1BridgeClientSessionsRefreshTelemetryTokenResponse, type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeBody, type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeOptions, type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeParameters, type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeRequest, type SeamBridgeV1BridgeClientSessionsRegeneratePairingCodeResponse, type SeamBridgeV1BridgeClientSessionsReportStatusBody, type SeamBridgeV1BridgeClientSessionsReportStatusOptions, type SeamBridgeV1BridgeClientSessionsReportStatusParameters, type SeamBridgeV1BridgeClientSessionsReportStatusRequest, type SeamBridgeV1BridgeClientSessionsReportStatusResponse, type SeamBridgeV1BridgeConnectedSystemsListOptions, type SeamBridgeV1BridgeConnectedSystemsListParameters, type SeamBridgeV1BridgeConnectedSystemsListParams, type SeamBridgeV1BridgeConnectedSystemsListRequest, type SeamBridgeV1BridgeConnectedSystemsListResponse, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAccessGrants, SeamHttpAccessMethods, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpBridges, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, type SeamHttpEndpointPaths, SeamHttpEndpoints, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpLocksSimulate, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsFromEnv, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpSeamBridgeV1, SeamHttpSeamBridgeV1BridgeClientSessions, SeamHttpSeamBridgeV1BridgeConnectedSystems, SeamHttpSeamInstantKeyV1, SeamHttpSeamInstantKeyV1ClientSessions, SeamHttpSeamMobileSdkV1, SeamHttpSeamMobileSdkV1Acs, SeamHttpSeamMobileSdkV1AcsCredentials, SeamHttpSeamMobileSdkV1PhoneSessions, SeamHttpSeamPartnerV1, SeamHttpSeamPartnerV1BuildingBlocks, SeamHttpSeamPartnerV1BuildingBlocksSpaces, SeamHttpSeamPartnerV1Resources, SeamHttpSpaces, SeamHttpThermostats, SeamHttpThermostatsDailyPrograms, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUnstableAccessGrants, SeamHttpUnstableAccessMethods, SeamHttpUnstableLocations, SeamHttpUnstablePartner, SeamHttpUnstablePartnerBuildingBlocks, SeamHttpUnstablePartnerResources, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, type SeamInstantKeyV1ClientSessionsExchangeShortCodeBody, type SeamInstantKeyV1ClientSessionsExchangeShortCodeOptions, type SeamInstantKeyV1ClientSessionsExchangeShortCodeParameters, type SeamInstantKeyV1ClientSessionsExchangeShortCodeRequest, type SeamInstantKeyV1ClientSessionsExchangeShortCodeResponse, type SeamMobileSdkV1AcsCredentialsListOptions, type SeamMobileSdkV1AcsCredentialsListParameters, type SeamMobileSdkV1AcsCredentialsListParams, type SeamMobileSdkV1AcsCredentialsListRequest, type SeamMobileSdkV1AcsCredentialsListResponse, type SeamMobileSdkV1PhoneSessionsGetOrCreateBody, type SeamMobileSdkV1PhoneSessionsGetOrCreateOptions, type SeamMobileSdkV1PhoneSessionsGetOrCreateParameters, type SeamMobileSdkV1PhoneSessionsGetOrCreateRequest, type SeamMobileSdkV1PhoneSessionsGetOrCreateResponse, SeamPaginator, type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions, type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters, type SeamPartnerV1BuildingBlocksSpacesAutoMapParams, type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest, type SeamPartnerV1BuildingBlocksSpacesAutoMapResponse, type SeamPartnerV1ResourcesListOptions, type SeamPartnerV1ResourcesListParameters, type SeamPartnerV1ResourcesListParams, type SeamPartnerV1ResourcesListRequest, type SeamPartnerV1ResourcesListResponse, type SpacesAddAcsEntrancesBody, type SpacesAddAcsEntrancesOptions, type SpacesAddAcsEntrancesParameters, type SpacesAddAcsEntrancesRequest, type SpacesAddAcsEntrancesResponse, type SpacesAddDevicesBody, type SpacesAddDevicesOptions, type SpacesAddDevicesParameters, type SpacesAddDevicesRequest, type SpacesAddDevicesResponse, type SpacesCreateBody, type SpacesCreateOptions, type SpacesCreateParameters, type SpacesCreateRequest, type SpacesCreateResponse, type SpacesDeleteOptions, type SpacesDeleteParameters, type SpacesDeleteParams, type SpacesDeleteRequest, type SpacesDeleteResponse, type SpacesGetOptions, type SpacesGetParameters, type SpacesGetParams, type SpacesGetRequest, type SpacesGetResponse, type SpacesListOptions, type SpacesListParameters, type SpacesListParams, type SpacesListRequest, type SpacesListResponse, type SpacesRemoveAcsEntrancesOptions, type SpacesRemoveAcsEntrancesParameters, type SpacesRemoveAcsEntrancesParams, type SpacesRemoveAcsEntrancesRequest, type SpacesRemoveAcsEntrancesResponse, type SpacesRemoveDevicesOptions, type SpacesRemoveDevicesParameters, type SpacesRemoveDevicesParams, type SpacesRemoveDevicesRequest, type SpacesRemoveDevicesResponse, type SpacesUpdateBody, type SpacesUpdateOptions, type SpacesUpdateParameters, type SpacesUpdateRequest, type SpacesUpdateResponse, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetParameters, type ThermostatsActivateClimatePresetRequest, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolParameters, type ThermostatsCoolRequest, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetParameters, type ThermostatsCreateClimatePresetRequest, type ThermostatsCreateClimatePresetResponse, type ThermostatsDailyProgramsCreateBody, type ThermostatsDailyProgramsCreateOptions, type ThermostatsDailyProgramsCreateParameters, type ThermostatsDailyProgramsCreateRequest, type ThermostatsDailyProgramsCreateResponse, type ThermostatsDailyProgramsDeleteOptions, type ThermostatsDailyProgramsDeleteParameters, type ThermostatsDailyProgramsDeleteParams, type ThermostatsDailyProgramsDeleteRequest, type ThermostatsDailyProgramsDeleteResponse, type ThermostatsDailyProgramsUpdateBody, type ThermostatsDailyProgramsUpdateOptions, type ThermostatsDailyProgramsUpdateParameters, type ThermostatsDailyProgramsUpdateRequest, type ThermostatsDailyProgramsUpdateResponse, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetParameters, type ThermostatsDeleteClimatePresetParams, type ThermostatsDeleteClimatePresetRequest, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParameters, type ThermostatsGetParams, type ThermostatsGetRequest, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolParameters, type ThermostatsHeatCoolRequest, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatParameters, type ThermostatsHeatRequest, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParameters, type ThermostatsListParams, type ThermostatsListRequest, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffParameters, type ThermostatsOffRequest, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateParameters, type ThermostatsSchedulesCreateRequest, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParameters, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteRequest, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParameters, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetRequest, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParameters, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListRequest, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateParameters, type ThermostatsSchedulesUpdateRequest, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetParameters, type ThermostatsSetFallbackClimatePresetRequest, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeParameters, type ThermostatsSetFanModeRequest, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeParameters, type ThermostatsSetHvacModeRequest, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdParameters, type ThermostatsSetTemperatureThresholdRequest, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedParameters, type ThermostatsSimulateHvacModeAdjustedRequest, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedParameters, type ThermostatsSimulateTemperatureReachedRequest, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetParameters, type ThermostatsUpdateClimatePresetRequest, type ThermostatsUpdateClimatePresetResponse, type ThermostatsUpdateWeeklyProgramBody, type ThermostatsUpdateWeeklyProgramOptions, type ThermostatsUpdateWeeklyProgramParameters, type ThermostatsUpdateWeeklyProgramRequest, type ThermostatsUpdateWeeklyProgramResponse, type UnstableAccessGrantsCreateBody, type UnstableAccessGrantsCreateOptions, type UnstableAccessGrantsCreateParameters, type UnstableAccessGrantsCreateRequest, type UnstableAccessGrantsCreateResponse, type UnstableAccessGrantsDeleteOptions, type UnstableAccessGrantsDeleteParameters, type UnstableAccessGrantsDeleteParams, type UnstableAccessGrantsDeleteRequest, type UnstableAccessGrantsDeleteResponse, type UnstableAccessGrantsGetOptions, type UnstableAccessGrantsGetParameters, type UnstableAccessGrantsGetParams, type UnstableAccessGrantsGetRequest, type UnstableAccessGrantsGetResponse, type UnstableAccessGrantsListOptions, type UnstableAccessGrantsListParameters, type UnstableAccessGrantsListParams, type UnstableAccessGrantsListRequest, type UnstableAccessGrantsListResponse, type UnstableAccessMethodsDeleteOptions, type UnstableAccessMethodsDeleteParameters, type UnstableAccessMethodsDeleteParams, type UnstableAccessMethodsDeleteRequest, type UnstableAccessMethodsDeleteResponse, type UnstableAccessMethodsGetOptions, type UnstableAccessMethodsGetParameters, type UnstableAccessMethodsGetParams, type UnstableAccessMethodsGetRequest, type UnstableAccessMethodsGetResponse, type UnstableAccessMethodsListOptions, type UnstableAccessMethodsListParameters, type UnstableAccessMethodsListParams, type UnstableAccessMethodsListRequest, type UnstableAccessMethodsListResponse, type UnstableLocationsAddAcsEntrancesBody, type UnstableLocationsAddAcsEntrancesOptions, type UnstableLocationsAddAcsEntrancesParameters, type UnstableLocationsAddAcsEntrancesRequest, type UnstableLocationsAddAcsEntrancesResponse, type UnstableLocationsAddDevicesBody, type UnstableLocationsAddDevicesOptions, type UnstableLocationsAddDevicesParameters, type UnstableLocationsAddDevicesRequest, type UnstableLocationsAddDevicesResponse, type UnstableLocationsCreateBody, type UnstableLocationsCreateOptions, type UnstableLocationsCreateParameters, type UnstableLocationsCreateRequest, type UnstableLocationsCreateResponse, type UnstableLocationsDeleteOptions, type UnstableLocationsDeleteParameters, type UnstableLocationsDeleteParams, type UnstableLocationsDeleteRequest, type UnstableLocationsDeleteResponse, type UnstableLocationsGetOptions, type UnstableLocationsGetParameters, type UnstableLocationsGetParams, type UnstableLocationsGetRequest, type UnstableLocationsGetResponse, type UnstableLocationsListOptions, type UnstableLocationsListParameters, type UnstableLocationsListParams, type UnstableLocationsListRequest, type UnstableLocationsListResponse, type UnstableLocationsRemoveAcsEntrancesOptions, type UnstableLocationsRemoveAcsEntrancesParameters, type UnstableLocationsRemoveAcsEntrancesParams, type UnstableLocationsRemoveAcsEntrancesRequest, type UnstableLocationsRemoveAcsEntrancesResponse, type UnstableLocationsRemoveDevicesOptions, type UnstableLocationsRemoveDevicesParameters, type UnstableLocationsRemoveDevicesParams, type UnstableLocationsRemoveDevicesRequest, type UnstableLocationsRemoveDevicesResponse, type UnstableLocationsUpdateBody, type UnstableLocationsUpdateOptions, type UnstableLocationsUpdateParameters, type UnstableLocationsUpdateRequest, type UnstableLocationsUpdateResponse, type UnstablePartnerBuildingBlocksConnectAccountsBody, type UnstablePartnerBuildingBlocksConnectAccountsOptions, type UnstablePartnerBuildingBlocksConnectAccountsParameters, type UnstablePartnerBuildingBlocksConnectAccountsRequest, type UnstablePartnerBuildingBlocksConnectAccountsResponse, type UnstablePartnerBuildingBlocksGenerateMagicLinkOptions, type UnstablePartnerBuildingBlocksGenerateMagicLinkParameters, type UnstablePartnerBuildingBlocksGenerateMagicLinkParams, type UnstablePartnerBuildingBlocksGenerateMagicLinkRequest, type UnstablePartnerBuildingBlocksGenerateMagicLinkResponse, type UnstablePartnerBuildingBlocksManageDevicesBody, type UnstablePartnerBuildingBlocksManageDevicesOptions, type UnstablePartnerBuildingBlocksManageDevicesParameters, type UnstablePartnerBuildingBlocksManageDevicesRequest, type UnstablePartnerBuildingBlocksManageDevicesResponse, type UnstablePartnerBuildingBlocksOrganizeSpacesBody, type UnstablePartnerBuildingBlocksOrganizeSpacesOptions, type UnstablePartnerBuildingBlocksOrganizeSpacesParameters, type UnstablePartnerBuildingBlocksOrganizeSpacesRequest, type UnstablePartnerBuildingBlocksOrganizeSpacesResponse, type UnstablePartnerResourcesPushBody, type UnstablePartnerResourcesPushOptions, type UnstablePartnerResourcesPushParameters, type UnstablePartnerResourcesPushRequest, type UnstablePartnerResourcesPushResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserParameters, type UserIdentitiesAddAcsUserRequest, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateParameters, type UserIdentitiesCreateRequest, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParameters, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteRequest, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParameters, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteRequest, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParameters, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetRequest, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchParameters, type UserIdentitiesEnrollmentAutomationsLaunchRequest, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParameters, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListRequest, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGenerateInstantKeyBody, type UserIdentitiesGenerateInstantKeyOptions, type UserIdentitiesGenerateInstantKeyParameters, type UserIdentitiesGenerateInstantKeyRequest, type UserIdentitiesGenerateInstantKeyResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParameters, type UserIdentitiesGetParams, type UserIdentitiesGetRequest, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceParameters, type UserIdentitiesGrantAccessToDeviceRequest, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParameters, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesRequest, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParameters, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsRequest, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParameters, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersRequest, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParameters, type UserIdentitiesListParams, type UserIdentitiesListRequest, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParameters, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserRequest, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParameters, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceRequest, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateParameters, type UserIdentitiesUpdateRequest, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateParameters, type WebhooksCreateRequest, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParameters, type WebhooksDeleteParams, type WebhooksDeleteRequest, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParameters, type WebhooksGetParams, type WebhooksGetRequest, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParameters, type WebhooksListParams, type WebhooksListRequest, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateParameters, type WebhooksUpdateRequest, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateParameters, type WorkspacesCreateRequest, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParameters, type WorkspacesGetParams, type WorkspacesGetRequest, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParameters, type WorkspacesListParams, type WorkspacesListRequest, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxParameters, type WorkspacesResetSandboxRequest, type WorkspacesResetSandboxResponse, type WorkspacesUpdateBody, type WorkspacesUpdateOptions, type WorkspacesUpdateParameters, type WorkspacesUpdateRequest, type WorkspacesUpdateResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|