@kohost/api-client 4.19.5 → 4.19.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/httpClient.d.cts +3 -7
- package/dist/cjs/{index-BjziDwt4.d.cts → index-1ZtkIYkt.d.cts} +3 -11
- package/dist/cjs/index.d.cts +2 -6
- package/dist/cjs/useCases/index.cjs +3 -15
- package/dist/cjs/useCases/index.cjs.map +1 -1
- package/dist/cjs/useCases/index.d.cts +1 -5
- package/dist/cjs/useCases/{listNotifications.cjs → listIntegrations.cjs} +12 -12
- package/dist/cjs/useCases/listIntegrations.cjs.map +1 -0
- package/dist/{esm/useCases/listNotifications.d.ts → cjs/useCases/listIntegrations.d.cts} +6 -6
- package/dist/esm/httpClient.d.ts +3 -7
- package/dist/esm/{index-CY1L0nkI.d.ts → index-GPnaIdEY.d.ts} +3 -11
- package/dist/esm/index.d.ts +2 -6
- package/dist/esm/useCases/index.d.ts +1 -5
- package/dist/esm/useCases/index.js +2 -10
- package/dist/esm/useCases/index.js.map +1 -1
- package/dist/{cjs/useCases/listNotifications.d.cts → esm/useCases/listIntegrations.d.ts} +6 -6
- package/dist/esm/useCases/{listNotifications.js → listIntegrations.js} +8 -8
- package/dist/esm/useCases/listIntegrations.js.map +1 -0
- package/package.json +1 -1
- package/dist/cjs/useCases/createNotification.cjs +0 -72
- package/dist/cjs/useCases/createNotification.cjs.map +0 -1
- package/dist/cjs/useCases/createNotification.d.cts +0 -29
- package/dist/cjs/useCases/deleteNotification.cjs +0 -72
- package/dist/cjs/useCases/deleteNotification.cjs.map +0 -1
- package/dist/cjs/useCases/deleteNotification.d.cts +0 -38
- package/dist/cjs/useCases/describeNotification.cjs +0 -72
- package/dist/cjs/useCases/describeNotification.cjs.map +0 -1
- package/dist/cjs/useCases/describeNotification.d.cts +0 -38
- package/dist/cjs/useCases/listNotifications.cjs.map +0 -1
- package/dist/cjs/useCases/updateNotification.cjs +0 -72
- package/dist/cjs/useCases/updateNotification.cjs.map +0 -1
- package/dist/cjs/useCases/updateNotification.d.cts +0 -38
- package/dist/esm/useCases/createNotification.d.ts +0 -29
- package/dist/esm/useCases/createNotification.js +0 -50
- package/dist/esm/useCases/createNotification.js.map +0 -1
- package/dist/esm/useCases/deleteNotification.d.ts +0 -38
- package/dist/esm/useCases/deleteNotification.js +0 -50
- package/dist/esm/useCases/deleteNotification.js.map +0 -1
- package/dist/esm/useCases/describeNotification.d.ts +0 -38
- package/dist/esm/useCases/describeNotification.js +0 -50
- package/dist/esm/useCases/describeNotification.js.map +0 -1
- package/dist/esm/useCases/listNotifications.js.map +0 -1
- package/dist/esm/useCases/updateNotification.d.ts +0 -38
- package/dist/esm/useCases/updateNotification.js +0 -50
- package/dist/esm/useCases/updateNotification.js.map +0 -1
|
@@ -138,6 +138,7 @@ import { DeleteDiscoveredDeviceCommand } from './useCases/deleteDiscoveredDevice
|
|
|
138
138
|
import { DescribeDiscoveredDeviceCommand } from './useCases/describeDiscoveredDevice.cjs';
|
|
139
139
|
import { UpsertDiscoveredDeviceCommand } from './useCases/upsertDiscoveredDevice.cjs';
|
|
140
140
|
import { CreateDiscoveredDeviceAssociationCommand } from './useCases/createDiscoveredDeviceAssociation.cjs';
|
|
141
|
+
import { ListIntegrationsCommand } from './useCases/listIntegrations.cjs';
|
|
141
142
|
import { DescribeMyOrganizationCommand } from './useCases/describeMyOrganization.cjs';
|
|
142
143
|
import { CreateOrganizationCommand } from './useCases/createOrganization.cjs';
|
|
143
144
|
import { UpdateOrganizationCommand } from './useCases/updateOrganization.cjs';
|
|
@@ -189,11 +190,6 @@ import { UpdateAutomationCommand } from './useCases/updateAutomation.cjs';
|
|
|
189
190
|
import { DeleteAutomationCommand } from './useCases/deleteAutomation.cjs';
|
|
190
191
|
import { CreateDefaultAutomationsCommand } from './useCases/createDefaultAutomations.cjs';
|
|
191
192
|
import { RunAutomationCommand } from './useCases/runAutomation.cjs';
|
|
192
|
-
import { CreateNotificationCommand } from './useCases/createNotification.cjs';
|
|
193
|
-
import { DeleteNotificationCommand } from './useCases/deleteNotification.cjs';
|
|
194
|
-
import { DescribeNotificationCommand } from './useCases/describeNotification.cjs';
|
|
195
|
-
import { ListNotificationsCommand } from './useCases/listNotifications.cjs';
|
|
196
|
-
import { UpdateNotificationCommand } from './useCases/updateNotification.cjs';
|
|
197
193
|
import { SendNotificationCommand } from './useCases/sendNotification.cjs';
|
|
198
194
|
import { SendSMSCommand } from './useCases/sendSMS.cjs';
|
|
199
195
|
import { CreateSessionCommand } from './useCases/createSession.cjs';
|
|
@@ -282,12 +278,12 @@ declare class KohostHTTPClient {
|
|
|
282
278
|
*
|
|
283
279
|
* @param {Command} command
|
|
284
280
|
*/
|
|
285
|
-
send(command: typeof RefreshTokenCommand | typeof LoginStartCommand | typeof LoginFinishCommand | typeof RequestLoginTokenCommand | typeof LogoutSelfCommand | typeof LogoutUserCommand | typeof StartRegisterPasskeyCommand | typeof FinishRegisterPasskeyCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof DescribeSelfCommand | typeof DescribeUserCommand | typeof CreateUserCommand | typeof ListUsersCommand | typeof UpdateSelfCommand | typeof UpdateUserCommand | typeof DeleteUserCommand | typeof SendVerificationCodeCommand | typeof CheckVerificationCodeCommand | typeof ListUserSpacesCommand | typeof DescribeMyPasskeyRegistrationsCommand | typeof DeleteUserCredentialCommand | typeof CreatePolicyCommand | typeof ListPoliciesCommand | typeof UpdatePolicyCommand | typeof DeletePolicyCommand | typeof DescribePolicyCommand | typeof ListSpacesCommand | typeof ListRoomsInSpaceCommand | typeof UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateRoomInSpaceCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | typeof ListRoomsCommand | typeof DescribeRoomCommand | typeof CreateRoomCommand | typeof UpdateRoomCommand | typeof DeleteRoomCommand | typeof CreateAlarmCommand | typeof ListAlarmsCommand | typeof UpdateAlarmCommand | typeof DeleteAlarmCommand | typeof DescribeAlarmCommand | typeof DescribeAlarmConfigCommand | typeof SetAlarmCommand | typeof MoveAlarmCommand | typeof CreateCameraCommand | typeof ListCamerasCommand | typeof UpdateCameraCommand | typeof DeleteCameraCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeCameraCommand | typeof SetCameraCommand | typeof MoveCameraCommand | typeof DescribeCameraConfigCommand | typeof CreateCourtesyCommand | typeof ListCourtesyCommand | typeof UpdateCourtesyCommand | typeof DeleteCourtesyCommand | typeof DescribeCourtesyCommand | typeof SetCourtesyCommand | typeof MoveCourtesyCommand | typeof CreateDimmerCommand | typeof ListDimmersCommand | typeof UpdateDimmerCommand | typeof DeleteDimmerCommand | typeof DescribeDimmerCommand | typeof SetDimmerCommand | typeof MoveDimmerCommand | typeof CreateLockCommand | typeof ListLocksCommand | typeof UpdateLockCommand | typeof DeleteLockCommand | typeof DescribeLockCommand | typeof SetLockCommand | typeof MoveLockCommand | typeof CreateSwitchCommand | typeof ListSwitchesCommand | typeof UpdateSwitchCommand | typeof DeleteSwitchCommand | typeof DescribeSwitchCommand | typeof SetSwitchCommand | typeof MoveSwitchCommand | typeof CreateMediaSourceCommand | typeof ListMediaSourcesCommand | typeof UpdateMediaSourceCommand | typeof DeleteMediaSourceCommand | typeof DescribeMediaSourceCommand | typeof SetMediaSourceCommand | typeof MoveMediaSourceCommand | typeof CreateThermostatCommand | typeof ListThermostatsCommand | typeof UpdateThermostatCommand | typeof DeleteThermostatCommand | typeof DescribeThermostatCommand | typeof SetThermostatCommand | typeof MoveThermostatCommand | typeof CreateWindowCoveringCommand | typeof ListWindowCoveringsCommand | typeof UpdateWindowCoveringCommand | typeof DeleteWindowCoveringCommand | typeof DescribeWindowCoveringCommand | typeof SetWindowCoveringCommand | typeof MoveWindowCoveringCommand | typeof AutoCloseTicketsCommand | typeof DescribeTicketStatsCommand | typeof CreateTicketCommand | typeof CreateTicketMessageCommand | typeof DeleteTicketCommand | typeof ListTicketLocationsCommand | typeof DescribeTicketFiltersCommand | typeof DescribeTicketCommand | typeof ListTicketsCommand | typeof UpdateMessageReadStatusCommand | typeof UpdateTicketCommand | typeof UpdateTicketStatusCommand | typeof LeaveTicketCommand | typeof ListScenesCommand | typeof SetSceneCommand | typeof SetRoomSceneCommand | typeof CreateDiscoveredDeviceAssociationMapCommand | typeof AutoAssociateDiscoveredDevicesCommand | typeof CreateDiscoveredDeviceCommand | typeof ListDiscoveredDevicesCommand | typeof UpdateDiscoveredDeviceCommand | typeof DeleteDiscoveredDeviceCommand | typeof DescribeDiscoveredDeviceCommand | typeof UpsertDiscoveredDeviceCommand | typeof CreateDiscoveredDeviceAssociationCommand | typeof DescribeMyOrganizationCommand | typeof CreateOrganizationCommand | typeof UpdateOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof UpdatePropertyCommand | typeof DescribePropertyCommand | typeof UpdatePropertySettingsCommand | typeof EmailUserAccountSetupCommand | typeof CreateImageUploadEndpointCommand | typeof DeleteMediaFileCommand | typeof UploadImageCommand | typeof CreateAnnouncementCommand | typeof UpdateAnnouncementCommand | typeof DescribeAnnouncementCommand | typeof DeleteAnnouncementCommand | typeof ListAnnouncementsCommand | typeof DescribeTimeSheetStatsCommand | typeof ListMyTimeSheetsCommand | typeof DescribeTimeSheetCommand | typeof ListTimeSheetsCommand | typeof CreateTimeSheetCommand | typeof DeleteTimeSheetCommand | typeof UpdateTimeSheetCommand | typeof CreateTimeSheetTimeEntryCommand | typeof DeleteTimeSheetTimeEntryCommand | typeof UpdateTimeSheetTimeEntryCommand | typeof StartSOSCommand | typeof StopSOSCommand | typeof DescribeSOSCommand | typeof DescribeIssueCommand | typeof ListIssuesCommand | typeof DeleteIssueCommand | typeof CreateIssueCommand | typeof UpdateIssueCommand | typeof BulkUpdateIssueCommand | typeof DescribeVendorCommand | typeof ListVendorsCommand | typeof DeleteVendorCommand | typeof CreateVendorCommand | typeof UpdateVendorCommand | typeof CreateAutomationCommand | typeof ListAutomationsCommand | typeof DescribeAutomationCommand | typeof UpdateAutomationCommand | typeof DeleteAutomationCommand | typeof CreateDefaultAutomationsCommand | typeof RunAutomationCommand | typeof
|
|
281
|
+
send(command: typeof RefreshTokenCommand | typeof LoginStartCommand | typeof LoginFinishCommand | typeof RequestLoginTokenCommand | typeof LogoutSelfCommand | typeof LogoutUserCommand | typeof StartRegisterPasskeyCommand | typeof FinishRegisterPasskeyCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof DescribeSelfCommand | typeof DescribeUserCommand | typeof CreateUserCommand | typeof ListUsersCommand | typeof UpdateSelfCommand | typeof UpdateUserCommand | typeof DeleteUserCommand | typeof SendVerificationCodeCommand | typeof CheckVerificationCodeCommand | typeof ListUserSpacesCommand | typeof DescribeMyPasskeyRegistrationsCommand | typeof DeleteUserCredentialCommand | typeof CreatePolicyCommand | typeof ListPoliciesCommand | typeof UpdatePolicyCommand | typeof DeletePolicyCommand | typeof DescribePolicyCommand | typeof ListSpacesCommand | typeof ListRoomsInSpaceCommand | typeof UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateRoomInSpaceCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | typeof ListRoomsCommand | typeof DescribeRoomCommand | typeof CreateRoomCommand | typeof UpdateRoomCommand | typeof DeleteRoomCommand | typeof CreateAlarmCommand | typeof ListAlarmsCommand | typeof UpdateAlarmCommand | typeof DeleteAlarmCommand | typeof DescribeAlarmCommand | typeof DescribeAlarmConfigCommand | typeof SetAlarmCommand | typeof MoveAlarmCommand | typeof CreateCameraCommand | typeof ListCamerasCommand | typeof UpdateCameraCommand | typeof DeleteCameraCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeCameraCommand | typeof SetCameraCommand | typeof MoveCameraCommand | typeof DescribeCameraConfigCommand | typeof CreateCourtesyCommand | typeof ListCourtesyCommand | typeof UpdateCourtesyCommand | typeof DeleteCourtesyCommand | typeof DescribeCourtesyCommand | typeof SetCourtesyCommand | typeof MoveCourtesyCommand | typeof CreateDimmerCommand | typeof ListDimmersCommand | typeof UpdateDimmerCommand | typeof DeleteDimmerCommand | typeof DescribeDimmerCommand | typeof SetDimmerCommand | typeof MoveDimmerCommand | typeof CreateLockCommand | typeof ListLocksCommand | typeof UpdateLockCommand | typeof DeleteLockCommand | typeof DescribeLockCommand | typeof SetLockCommand | typeof MoveLockCommand | typeof CreateSwitchCommand | typeof ListSwitchesCommand | typeof UpdateSwitchCommand | typeof DeleteSwitchCommand | typeof DescribeSwitchCommand | typeof SetSwitchCommand | typeof MoveSwitchCommand | typeof CreateMediaSourceCommand | typeof ListMediaSourcesCommand | typeof UpdateMediaSourceCommand | typeof DeleteMediaSourceCommand | typeof DescribeMediaSourceCommand | typeof SetMediaSourceCommand | typeof MoveMediaSourceCommand | typeof CreateThermostatCommand | typeof ListThermostatsCommand | typeof UpdateThermostatCommand | typeof DeleteThermostatCommand | typeof DescribeThermostatCommand | typeof SetThermostatCommand | typeof MoveThermostatCommand | typeof CreateWindowCoveringCommand | typeof ListWindowCoveringsCommand | typeof UpdateWindowCoveringCommand | typeof DeleteWindowCoveringCommand | typeof DescribeWindowCoveringCommand | typeof SetWindowCoveringCommand | typeof MoveWindowCoveringCommand | typeof AutoCloseTicketsCommand | typeof DescribeTicketStatsCommand | typeof CreateTicketCommand | typeof CreateTicketMessageCommand | typeof DeleteTicketCommand | typeof ListTicketLocationsCommand | typeof DescribeTicketFiltersCommand | typeof DescribeTicketCommand | typeof ListTicketsCommand | typeof UpdateMessageReadStatusCommand | typeof UpdateTicketCommand | typeof UpdateTicketStatusCommand | typeof LeaveTicketCommand | typeof ListScenesCommand | typeof SetSceneCommand | typeof SetRoomSceneCommand | typeof CreateDiscoveredDeviceAssociationMapCommand | typeof AutoAssociateDiscoveredDevicesCommand | typeof CreateDiscoveredDeviceCommand | typeof ListDiscoveredDevicesCommand | typeof UpdateDiscoveredDeviceCommand | typeof DeleteDiscoveredDeviceCommand | typeof DescribeDiscoveredDeviceCommand | typeof UpsertDiscoveredDeviceCommand | typeof CreateDiscoveredDeviceAssociationCommand | typeof ListIntegrationsCommand | typeof DescribeMyOrganizationCommand | typeof CreateOrganizationCommand | typeof UpdateOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof UpdatePropertyCommand | typeof DescribePropertyCommand | typeof UpdatePropertySettingsCommand | typeof EmailUserAccountSetupCommand | typeof CreateImageUploadEndpointCommand | typeof DeleteMediaFileCommand | typeof UploadImageCommand | typeof CreateAnnouncementCommand | typeof UpdateAnnouncementCommand | typeof DescribeAnnouncementCommand | typeof DeleteAnnouncementCommand | typeof ListAnnouncementsCommand | typeof DescribeTimeSheetStatsCommand | typeof ListMyTimeSheetsCommand | typeof DescribeTimeSheetCommand | typeof ListTimeSheetsCommand | typeof CreateTimeSheetCommand | typeof DeleteTimeSheetCommand | typeof UpdateTimeSheetCommand | typeof CreateTimeSheetTimeEntryCommand | typeof DeleteTimeSheetTimeEntryCommand | typeof UpdateTimeSheetTimeEntryCommand | typeof StartSOSCommand | typeof StopSOSCommand | typeof DescribeSOSCommand | typeof DescribeIssueCommand | typeof ListIssuesCommand | typeof DeleteIssueCommand | typeof CreateIssueCommand | typeof UpdateIssueCommand | typeof BulkUpdateIssueCommand | typeof DescribeVendorCommand | typeof ListVendorsCommand | typeof DeleteVendorCommand | typeof CreateVendorCommand | typeof UpdateVendorCommand | typeof CreateAutomationCommand | typeof ListAutomationsCommand | typeof DescribeAutomationCommand | typeof UpdateAutomationCommand | typeof DeleteAutomationCommand | typeof CreateDefaultAutomationsCommand | typeof RunAutomationCommand | typeof SendNotificationCommand | typeof SendSMSCommand | typeof CreateSessionCommand | typeof ListSessionsCommand | typeof DescribeSessionCommand | typeof UpdateSessionCommand | typeof DeleteSessionCommand | typeof SetDevicesCommand | typeof CreateSystemCommand | typeof DeleteSystemCommand | typeof DescribeSystemCommand | typeof ListSystemsCommand | typeof UpdateSystemCommand | typeof CreateServerCommand | typeof DeleteServerCommand | typeof DescribeServerCommand | typeof ListServersCommand | typeof UpdateServerCommand): any;
|
|
286
282
|
/**
|
|
287
283
|
* @param {Command} config
|
|
288
284
|
* @returns {Request}
|
|
289
285
|
*/
|
|
290
|
-
createRequest(config: typeof RefreshTokenCommand | typeof LoginStartCommand | typeof LoginFinishCommand | typeof RequestLoginTokenCommand | typeof LogoutSelfCommand | typeof LogoutUserCommand | typeof StartRegisterPasskeyCommand | typeof FinishRegisterPasskeyCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof DescribeSelfCommand | typeof DescribeUserCommand | typeof CreateUserCommand | typeof ListUsersCommand | typeof UpdateSelfCommand | typeof UpdateUserCommand | typeof DeleteUserCommand | typeof SendVerificationCodeCommand | typeof CheckVerificationCodeCommand | typeof ListUserSpacesCommand | typeof DescribeMyPasskeyRegistrationsCommand | typeof DeleteUserCredentialCommand | typeof CreatePolicyCommand | typeof ListPoliciesCommand | typeof UpdatePolicyCommand | typeof DeletePolicyCommand | typeof DescribePolicyCommand | typeof ListSpacesCommand | typeof ListRoomsInSpaceCommand | typeof UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateRoomInSpaceCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | typeof ListRoomsCommand | typeof DescribeRoomCommand | typeof CreateRoomCommand | typeof UpdateRoomCommand | typeof DeleteRoomCommand | typeof CreateAlarmCommand | typeof ListAlarmsCommand | typeof UpdateAlarmCommand | typeof DeleteAlarmCommand | typeof DescribeAlarmCommand | typeof DescribeAlarmConfigCommand | typeof SetAlarmCommand | typeof MoveAlarmCommand | typeof CreateCameraCommand | typeof ListCamerasCommand | typeof UpdateCameraCommand | typeof DeleteCameraCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeCameraCommand | typeof SetCameraCommand | typeof MoveCameraCommand | typeof DescribeCameraConfigCommand | typeof CreateCourtesyCommand | typeof ListCourtesyCommand | typeof UpdateCourtesyCommand | typeof DeleteCourtesyCommand | typeof DescribeCourtesyCommand | typeof SetCourtesyCommand | typeof MoveCourtesyCommand | typeof CreateDimmerCommand | typeof ListDimmersCommand | typeof UpdateDimmerCommand | typeof DeleteDimmerCommand | typeof DescribeDimmerCommand | typeof SetDimmerCommand | typeof MoveDimmerCommand | typeof CreateLockCommand | typeof ListLocksCommand | typeof UpdateLockCommand | typeof DeleteLockCommand | typeof DescribeLockCommand | typeof SetLockCommand | typeof MoveLockCommand | typeof CreateSwitchCommand | typeof ListSwitchesCommand | typeof UpdateSwitchCommand | typeof DeleteSwitchCommand | typeof DescribeSwitchCommand | typeof SetSwitchCommand | typeof MoveSwitchCommand | typeof CreateMediaSourceCommand | typeof ListMediaSourcesCommand | typeof UpdateMediaSourceCommand | typeof DeleteMediaSourceCommand | typeof DescribeMediaSourceCommand | typeof SetMediaSourceCommand | typeof MoveMediaSourceCommand | typeof CreateThermostatCommand | typeof ListThermostatsCommand | typeof UpdateThermostatCommand | typeof DeleteThermostatCommand | typeof DescribeThermostatCommand | typeof SetThermostatCommand | typeof MoveThermostatCommand | typeof CreateWindowCoveringCommand | typeof ListWindowCoveringsCommand | typeof UpdateWindowCoveringCommand | typeof DeleteWindowCoveringCommand | typeof DescribeWindowCoveringCommand | typeof SetWindowCoveringCommand | typeof MoveWindowCoveringCommand | typeof AutoCloseTicketsCommand | typeof DescribeTicketStatsCommand | typeof CreateTicketCommand | typeof CreateTicketMessageCommand | typeof DeleteTicketCommand | typeof ListTicketLocationsCommand | typeof DescribeTicketFiltersCommand | typeof DescribeTicketCommand | typeof ListTicketsCommand | typeof UpdateMessageReadStatusCommand | typeof UpdateTicketCommand | typeof UpdateTicketStatusCommand | typeof LeaveTicketCommand | typeof ListScenesCommand | typeof SetSceneCommand | typeof SetRoomSceneCommand | typeof CreateDiscoveredDeviceAssociationMapCommand | typeof AutoAssociateDiscoveredDevicesCommand | typeof CreateDiscoveredDeviceCommand | typeof ListDiscoveredDevicesCommand | typeof UpdateDiscoveredDeviceCommand | typeof DeleteDiscoveredDeviceCommand | typeof DescribeDiscoveredDeviceCommand | typeof UpsertDiscoveredDeviceCommand | typeof CreateDiscoveredDeviceAssociationCommand | typeof DescribeMyOrganizationCommand | typeof CreateOrganizationCommand | typeof UpdateOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof UpdatePropertyCommand | typeof DescribePropertyCommand | typeof UpdatePropertySettingsCommand | typeof EmailUserAccountSetupCommand | typeof CreateImageUploadEndpointCommand | typeof DeleteMediaFileCommand | typeof UploadImageCommand | typeof CreateAnnouncementCommand | typeof UpdateAnnouncementCommand | typeof DescribeAnnouncementCommand | typeof DeleteAnnouncementCommand | typeof ListAnnouncementsCommand | typeof DescribeTimeSheetStatsCommand | typeof ListMyTimeSheetsCommand | typeof DescribeTimeSheetCommand | typeof ListTimeSheetsCommand | typeof CreateTimeSheetCommand | typeof DeleteTimeSheetCommand | typeof UpdateTimeSheetCommand | typeof CreateTimeSheetTimeEntryCommand | typeof DeleteTimeSheetTimeEntryCommand | typeof UpdateTimeSheetTimeEntryCommand | typeof StartSOSCommand | typeof StopSOSCommand | typeof DescribeSOSCommand | typeof DescribeIssueCommand | typeof ListIssuesCommand | typeof DeleteIssueCommand | typeof CreateIssueCommand | typeof UpdateIssueCommand | typeof BulkUpdateIssueCommand | typeof DescribeVendorCommand | typeof ListVendorsCommand | typeof DeleteVendorCommand | typeof CreateVendorCommand | typeof UpdateVendorCommand | typeof CreateAutomationCommand | typeof ListAutomationsCommand | typeof DescribeAutomationCommand | typeof UpdateAutomationCommand | typeof DeleteAutomationCommand | typeof CreateDefaultAutomationsCommand | typeof RunAutomationCommand | typeof
|
|
286
|
+
createRequest(config: typeof RefreshTokenCommand | typeof LoginStartCommand | typeof LoginFinishCommand | typeof RequestLoginTokenCommand | typeof LogoutSelfCommand | typeof LogoutUserCommand | typeof StartRegisterPasskeyCommand | typeof FinishRegisterPasskeyCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof DescribeSelfCommand | typeof DescribeUserCommand | typeof CreateUserCommand | typeof ListUsersCommand | typeof UpdateSelfCommand | typeof UpdateUserCommand | typeof DeleteUserCommand | typeof SendVerificationCodeCommand | typeof CheckVerificationCodeCommand | typeof ListUserSpacesCommand | typeof DescribeMyPasskeyRegistrationsCommand | typeof DeleteUserCredentialCommand | typeof CreatePolicyCommand | typeof ListPoliciesCommand | typeof UpdatePolicyCommand | typeof DeletePolicyCommand | typeof DescribePolicyCommand | typeof ListSpacesCommand | typeof ListRoomsInSpaceCommand | typeof UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateRoomInSpaceCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | typeof ListRoomsCommand | typeof DescribeRoomCommand | typeof CreateRoomCommand | typeof UpdateRoomCommand | typeof DeleteRoomCommand | typeof CreateAlarmCommand | typeof ListAlarmsCommand | typeof UpdateAlarmCommand | typeof DeleteAlarmCommand | typeof DescribeAlarmCommand | typeof DescribeAlarmConfigCommand | typeof SetAlarmCommand | typeof MoveAlarmCommand | typeof CreateCameraCommand | typeof ListCamerasCommand | typeof UpdateCameraCommand | typeof DeleteCameraCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeCameraCommand | typeof SetCameraCommand | typeof MoveCameraCommand | typeof DescribeCameraConfigCommand | typeof CreateCourtesyCommand | typeof ListCourtesyCommand | typeof UpdateCourtesyCommand | typeof DeleteCourtesyCommand | typeof DescribeCourtesyCommand | typeof SetCourtesyCommand | typeof MoveCourtesyCommand | typeof CreateDimmerCommand | typeof ListDimmersCommand | typeof UpdateDimmerCommand | typeof DeleteDimmerCommand | typeof DescribeDimmerCommand | typeof SetDimmerCommand | typeof MoveDimmerCommand | typeof CreateLockCommand | typeof ListLocksCommand | typeof UpdateLockCommand | typeof DeleteLockCommand | typeof DescribeLockCommand | typeof SetLockCommand | typeof MoveLockCommand | typeof CreateSwitchCommand | typeof ListSwitchesCommand | typeof UpdateSwitchCommand | typeof DeleteSwitchCommand | typeof DescribeSwitchCommand | typeof SetSwitchCommand | typeof MoveSwitchCommand | typeof CreateMediaSourceCommand | typeof ListMediaSourcesCommand | typeof UpdateMediaSourceCommand | typeof DeleteMediaSourceCommand | typeof DescribeMediaSourceCommand | typeof SetMediaSourceCommand | typeof MoveMediaSourceCommand | typeof CreateThermostatCommand | typeof ListThermostatsCommand | typeof UpdateThermostatCommand | typeof DeleteThermostatCommand | typeof DescribeThermostatCommand | typeof SetThermostatCommand | typeof MoveThermostatCommand | typeof CreateWindowCoveringCommand | typeof ListWindowCoveringsCommand | typeof UpdateWindowCoveringCommand | typeof DeleteWindowCoveringCommand | typeof DescribeWindowCoveringCommand | typeof SetWindowCoveringCommand | typeof MoveWindowCoveringCommand | typeof AutoCloseTicketsCommand | typeof DescribeTicketStatsCommand | typeof CreateTicketCommand | typeof CreateTicketMessageCommand | typeof DeleteTicketCommand | typeof ListTicketLocationsCommand | typeof DescribeTicketFiltersCommand | typeof DescribeTicketCommand | typeof ListTicketsCommand | typeof UpdateMessageReadStatusCommand | typeof UpdateTicketCommand | typeof UpdateTicketStatusCommand | typeof LeaveTicketCommand | typeof ListScenesCommand | typeof SetSceneCommand | typeof SetRoomSceneCommand | typeof CreateDiscoveredDeviceAssociationMapCommand | typeof AutoAssociateDiscoveredDevicesCommand | typeof CreateDiscoveredDeviceCommand | typeof ListDiscoveredDevicesCommand | typeof UpdateDiscoveredDeviceCommand | typeof DeleteDiscoveredDeviceCommand | typeof DescribeDiscoveredDeviceCommand | typeof UpsertDiscoveredDeviceCommand | typeof CreateDiscoveredDeviceAssociationCommand | typeof ListIntegrationsCommand | typeof DescribeMyOrganizationCommand | typeof CreateOrganizationCommand | typeof UpdateOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof UpdatePropertyCommand | typeof DescribePropertyCommand | typeof UpdatePropertySettingsCommand | typeof EmailUserAccountSetupCommand | typeof CreateImageUploadEndpointCommand | typeof DeleteMediaFileCommand | typeof UploadImageCommand | typeof CreateAnnouncementCommand | typeof UpdateAnnouncementCommand | typeof DescribeAnnouncementCommand | typeof DeleteAnnouncementCommand | typeof ListAnnouncementsCommand | typeof DescribeTimeSheetStatsCommand | typeof ListMyTimeSheetsCommand | typeof DescribeTimeSheetCommand | typeof ListTimeSheetsCommand | typeof CreateTimeSheetCommand | typeof DeleteTimeSheetCommand | typeof UpdateTimeSheetCommand | typeof CreateTimeSheetTimeEntryCommand | typeof DeleteTimeSheetTimeEntryCommand | typeof UpdateTimeSheetTimeEntryCommand | typeof StartSOSCommand | typeof StopSOSCommand | typeof DescribeSOSCommand | typeof DescribeIssueCommand | typeof ListIssuesCommand | typeof DeleteIssueCommand | typeof CreateIssueCommand | typeof UpdateIssueCommand | typeof BulkUpdateIssueCommand | typeof DescribeVendorCommand | typeof ListVendorsCommand | typeof DeleteVendorCommand | typeof CreateVendorCommand | typeof UpdateVendorCommand | typeof CreateAutomationCommand | typeof ListAutomationsCommand | typeof DescribeAutomationCommand | typeof UpdateAutomationCommand | typeof DeleteAutomationCommand | typeof CreateDefaultAutomationsCommand | typeof RunAutomationCommand | typeof SendNotificationCommand | typeof SendSMSCommand | typeof CreateSessionCommand | typeof ListSessionsCommand | typeof DescribeSessionCommand | typeof UpdateSessionCommand | typeof DeleteSessionCommand | typeof SetDevicesCommand | typeof CreateSystemCommand | typeof DeleteSystemCommand | typeof DescribeSystemCommand | typeof ListSystemsCommand | typeof UpdateSystemCommand | typeof CreateServerCommand | typeof DeleteServerCommand | typeof DescribeServerCommand | typeof ListServersCommand | typeof UpdateServerCommand): Request;
|
|
291
287
|
#private;
|
|
292
288
|
}
|
|
293
289
|
|
|
@@ -138,6 +138,7 @@ import { DeleteDiscoveredDeviceCommand } from './useCases/deleteDiscoveredDevice
|
|
|
138
138
|
import { DescribeDiscoveredDeviceCommand } from './useCases/describeDiscoveredDevice.cjs';
|
|
139
139
|
import { UpsertDiscoveredDeviceCommand } from './useCases/upsertDiscoveredDevice.cjs';
|
|
140
140
|
import { CreateDiscoveredDeviceAssociationCommand } from './useCases/createDiscoveredDeviceAssociation.cjs';
|
|
141
|
+
import { ListIntegrationsCommand } from './useCases/listIntegrations.cjs';
|
|
141
142
|
import { DescribeMyOrganizationCommand } from './useCases/describeMyOrganization.cjs';
|
|
142
143
|
import { CreateOrganizationCommand } from './useCases/createOrganization.cjs';
|
|
143
144
|
import { UpdateOrganizationCommand } from './useCases/updateOrganization.cjs';
|
|
@@ -189,11 +190,6 @@ import { UpdateAutomationCommand } from './useCases/updateAutomation.cjs';
|
|
|
189
190
|
import { DeleteAutomationCommand } from './useCases/deleteAutomation.cjs';
|
|
190
191
|
import { CreateDefaultAutomationsCommand } from './useCases/createDefaultAutomations.cjs';
|
|
191
192
|
import { RunAutomationCommand } from './useCases/runAutomation.cjs';
|
|
192
|
-
import { CreateNotificationCommand } from './useCases/createNotification.cjs';
|
|
193
|
-
import { DeleteNotificationCommand } from './useCases/deleteNotification.cjs';
|
|
194
|
-
import { DescribeNotificationCommand } from './useCases/describeNotification.cjs';
|
|
195
|
-
import { ListNotificationsCommand } from './useCases/listNotifications.cjs';
|
|
196
|
-
import { UpdateNotificationCommand } from './useCases/updateNotification.cjs';
|
|
197
193
|
import { SendNotificationCommand } from './useCases/sendNotification.cjs';
|
|
198
194
|
import { SendSMSCommand } from './useCases/sendSMS.cjs';
|
|
199
195
|
import { CreateSessionCommand } from './useCases/createSession.cjs';
|
|
@@ -233,7 +229,6 @@ declare const index_CreateImageUploadEndpointCommand: typeof CreateImageUploadEn
|
|
|
233
229
|
declare const index_CreateIssueCommand: typeof CreateIssueCommand;
|
|
234
230
|
declare const index_CreateLockCommand: typeof CreateLockCommand;
|
|
235
231
|
declare const index_CreateMediaSourceCommand: typeof CreateMediaSourceCommand;
|
|
236
|
-
declare const index_CreateNotificationCommand: typeof CreateNotificationCommand;
|
|
237
232
|
declare const index_CreateOrganizationCommand: typeof CreateOrganizationCommand;
|
|
238
233
|
declare const index_CreatePolicyCommand: typeof CreatePolicyCommand;
|
|
239
234
|
declare const index_CreatePropertyCommand: typeof CreatePropertyCommand;
|
|
@@ -265,7 +260,6 @@ declare const index_DeleteIssueCommand: typeof DeleteIssueCommand;
|
|
|
265
260
|
declare const index_DeleteLockCommand: typeof DeleteLockCommand;
|
|
266
261
|
declare const index_DeleteMediaFileCommand: typeof DeleteMediaFileCommand;
|
|
267
262
|
declare const index_DeleteMediaSourceCommand: typeof DeleteMediaSourceCommand;
|
|
268
|
-
declare const index_DeleteNotificationCommand: typeof DeleteNotificationCommand;
|
|
269
263
|
declare const index_DeletePolicyCommand: typeof DeletePolicyCommand;
|
|
270
264
|
declare const index_DeleteRoomCommand: typeof DeleteRoomCommand;
|
|
271
265
|
declare const index_DeleteServerCommand: typeof DeleteServerCommand;
|
|
@@ -298,7 +292,6 @@ declare const index_DescribeMediaSourceCommand: typeof DescribeMediaSourceComman
|
|
|
298
292
|
declare const index_DescribeMyAuthCommand: typeof DescribeMyAuthCommand;
|
|
299
293
|
declare const index_DescribeMyOrganizationCommand: typeof DescribeMyOrganizationCommand;
|
|
300
294
|
declare const index_DescribeMyPasskeyRegistrationsCommand: typeof DescribeMyPasskeyRegistrationsCommand;
|
|
301
|
-
declare const index_DescribeNotificationCommand: typeof DescribeNotificationCommand;
|
|
302
295
|
declare const index_DescribeOrganizationCommand: typeof DescribeOrganizationCommand;
|
|
303
296
|
declare const index_DescribePolicyCommand: typeof DescribePolicyCommand;
|
|
304
297
|
declare const index_DescribePropertyCommand: typeof DescribePropertyCommand;
|
|
@@ -332,12 +325,12 @@ declare const index_ListCourtesyCommand: typeof ListCourtesyCommand;
|
|
|
332
325
|
declare const index_ListDepartmentsCommand: typeof ListDepartmentsCommand;
|
|
333
326
|
declare const index_ListDimmersCommand: typeof ListDimmersCommand;
|
|
334
327
|
declare const index_ListDiscoveredDevicesCommand: typeof ListDiscoveredDevicesCommand;
|
|
328
|
+
declare const index_ListIntegrationsCommand: typeof ListIntegrationsCommand;
|
|
335
329
|
declare const index_ListIssuesCommand: typeof ListIssuesCommand;
|
|
336
330
|
declare const index_ListLocksCommand: typeof ListLocksCommand;
|
|
337
331
|
declare const index_ListMediaSourcesCommand: typeof ListMediaSourcesCommand;
|
|
338
332
|
declare const index_ListMyPropertiesCommand: typeof ListMyPropertiesCommand;
|
|
339
333
|
declare const index_ListMyTimeSheetsCommand: typeof ListMyTimeSheetsCommand;
|
|
340
|
-
declare const index_ListNotificationsCommand: typeof ListNotificationsCommand;
|
|
341
334
|
declare const index_ListOrganizationsCommand: typeof ListOrganizationsCommand;
|
|
342
335
|
declare const index_ListPoliciesCommand: typeof ListPoliciesCommand;
|
|
343
336
|
declare const index_ListPropertiesCommand: typeof ListPropertiesCommand;
|
|
@@ -404,7 +397,6 @@ declare const index_UpdateIssueCommand: typeof UpdateIssueCommand;
|
|
|
404
397
|
declare const index_UpdateLockCommand: typeof UpdateLockCommand;
|
|
405
398
|
declare const index_UpdateMediaSourceCommand: typeof UpdateMediaSourceCommand;
|
|
406
399
|
declare const index_UpdateMessageReadStatusCommand: typeof UpdateMessageReadStatusCommand;
|
|
407
|
-
declare const index_UpdateNotificationCommand: typeof UpdateNotificationCommand;
|
|
408
400
|
declare const index_UpdateOrganizationCommand: typeof UpdateOrganizationCommand;
|
|
409
401
|
declare const index_UpdatePolicyCommand: typeof UpdatePolicyCommand;
|
|
410
402
|
declare const index_UpdatePropertyCommand: typeof UpdatePropertyCommand;
|
|
@@ -428,7 +420,7 @@ declare const index_UploadImageCommand: typeof UploadImageCommand;
|
|
|
428
420
|
declare const index_UpsertDiscoveredDeviceCommand: typeof UpsertDiscoveredDeviceCommand;
|
|
429
421
|
declare const index_ValidateAuthCommand: typeof ValidateAuthCommand;
|
|
430
422
|
declare namespace index {
|
|
431
|
-
export { index_AutoAssociateDiscoveredDevicesCommand as AutoAssociateDiscoveredDevicesCommand, index_AutoCloseTicketsCommand as AutoCloseTicketsCommand, index_BulkUpdateIssueCommand as BulkUpdateIssueCommand, index_CheckVerificationCodeCommand as CheckVerificationCodeCommand, index_CreateAlarmCommand as CreateAlarmCommand, index_CreateAnnouncementCommand as CreateAnnouncementCommand, index_CreateAutomationCommand as CreateAutomationCommand, index_CreateCameraCommand as CreateCameraCommand, index_CreateCategoryCommand as CreateCategoryCommand, index_CreateCourtesyCommand as CreateCourtesyCommand, index_CreateDefaultAutomationsCommand as CreateDefaultAutomationsCommand, index_CreateDepartmentCommand as CreateDepartmentCommand, index_CreateDimmerCommand as CreateDimmerCommand, index_CreateDiscoveredDeviceAssociationCommand as CreateDiscoveredDeviceAssociationCommand, index_CreateDiscoveredDeviceAssociationMapCommand as CreateDiscoveredDeviceAssociationMapCommand, index_CreateDiscoveredDeviceCommand as CreateDiscoveredDeviceCommand, index_CreateImageUploadEndpointCommand as CreateImageUploadEndpointCommand, index_CreateIssueCommand as CreateIssueCommand, index_CreateLockCommand as CreateLockCommand, index_CreateMediaSourceCommand as CreateMediaSourceCommand, index_CreateNotificationCommand as CreateNotificationCommand, index_CreateOrganizationCommand as CreateOrganizationCommand, index_CreatePolicyCommand as CreatePolicyCommand, index_CreatePropertyCommand as CreatePropertyCommand, index_CreateRoomCommand as CreateRoomCommand, index_CreateRoomInSpaceCommand as CreateRoomInSpaceCommand, index_CreateServerCommand as CreateServerCommand, index_CreateSessionCommand as CreateSessionCommand, index_CreateSpaceCommand as CreateSpaceCommand, index_CreateSwitchCommand as CreateSwitchCommand, index_CreateSystemCommand as CreateSystemCommand, index_CreateThermostatCommand as CreateThermostatCommand, index_CreateTicketCommand as CreateTicketCommand, index_CreateTicketMessageCommand as CreateTicketMessageCommand, index_CreateTimeSheetCommand as CreateTimeSheetCommand, index_CreateTimeSheetTimeEntryCommand as CreateTimeSheetTimeEntryCommand, index_CreateUserCommand as CreateUserCommand, index_CreateVendorCommand as CreateVendorCommand, index_CreateWindowCoveringCommand as CreateWindowCoveringCommand, index_DeleteAlarmCommand as DeleteAlarmCommand, index_DeleteAnnouncementCommand as DeleteAnnouncementCommand, index_DeleteAutomationCommand as DeleteAutomationCommand, index_DeleteCameraCommand as DeleteCameraCommand, index_DeleteCategoryCommand as DeleteCategoryCommand, index_DeleteCourtesyCommand as DeleteCourtesyCommand, index_DeleteDepartmentCommand as DeleteDepartmentCommand, index_DeleteDimmerCommand as DeleteDimmerCommand, index_DeleteDiscoveredDeviceCommand as DeleteDiscoveredDeviceCommand, index_DeleteIssueCommand as DeleteIssueCommand, index_DeleteLockCommand as DeleteLockCommand, index_DeleteMediaFileCommand as DeleteMediaFileCommand, index_DeleteMediaSourceCommand as DeleteMediaSourceCommand, index_DeleteNotificationCommand as DeleteNotificationCommand, index_DeletePolicyCommand as DeletePolicyCommand, index_DeleteRoomCommand as DeleteRoomCommand, index_DeleteServerCommand as DeleteServerCommand, index_DeleteSessionCommand as DeleteSessionCommand, index_DeleteSpaceCommand as DeleteSpaceCommand, index_DeleteSwitchCommand as DeleteSwitchCommand, index_DeleteSystemCommand as DeleteSystemCommand, index_DeleteThermostatCommand as DeleteThermostatCommand, index_DeleteTicketCommand as DeleteTicketCommand, index_DeleteTimeSheetCommand as DeleteTimeSheetCommand, index_DeleteTimeSheetTimeEntryCommand as DeleteTimeSheetTimeEntryCommand, index_DeleteUserCommand as DeleteUserCommand, index_DeleteUserCredentialCommand as DeleteUserCredentialCommand, index_DeleteVendorCommand as DeleteVendorCommand, index_DeleteWindowCoveringCommand as DeleteWindowCoveringCommand, index_DescribeAlarmCommand as DescribeAlarmCommand, index_DescribeAlarmConfigCommand as DescribeAlarmConfigCommand, index_DescribeAnnouncementCommand as DescribeAnnouncementCommand, index_DescribeAutomationCommand as DescribeAutomationCommand, index_DescribeCameraCommand as DescribeCameraCommand, index_DescribeCameraConfigCommand as DescribeCameraConfigCommand, index_DescribeCategoryCommand as DescribeCategoryCommand, index_DescribeCourtesyCommand as DescribeCourtesyCommand, index_DescribeDepartmentCommand as DescribeDepartmentCommand, index_DescribeDimmerCommand as DescribeDimmerCommand, index_DescribeDiscoveredDeviceCommand as DescribeDiscoveredDeviceCommand, index_DescribeIssueCommand as DescribeIssueCommand, index_DescribeLockCommand as DescribeLockCommand, index_DescribeMediaSourceCommand as DescribeMediaSourceCommand, index_DescribeMyAuthCommand as DescribeMyAuthCommand, index_DescribeMyOrganizationCommand as DescribeMyOrganizationCommand, index_DescribeMyPasskeyRegistrationsCommand as DescribeMyPasskeyRegistrationsCommand, index_DescribeNotificationCommand as DescribeNotificationCommand, index_DescribeOrganizationCommand as DescribeOrganizationCommand, index_DescribePolicyCommand as DescribePolicyCommand, index_DescribePropertyCommand as DescribePropertyCommand, index_DescribeRoomCommand as DescribeRoomCommand, index_DescribeSOSCommand as DescribeSOSCommand, index_DescribeSelfCommand as DescribeSelfCommand, index_DescribeServerCommand as DescribeServerCommand, index_DescribeSessionCommand as DescribeSessionCommand, index_DescribeSpaceCommand as DescribeSpaceCommand, index_DescribeSwitchCommand as DescribeSwitchCommand, index_DescribeSystemCommand as DescribeSystemCommand, index_DescribeThermostatCommand as DescribeThermostatCommand, index_DescribeTicketCommand as DescribeTicketCommand, index_DescribeTicketFiltersCommand as DescribeTicketFiltersCommand, index_DescribeTicketStatsCommand as DescribeTicketStatsCommand, index_DescribeTimeSheetCommand as DescribeTimeSheetCommand, index_DescribeTimeSheetStatsCommand as DescribeTimeSheetStatsCommand, index_DescribeUserCommand as DescribeUserCommand, index_DescribeVendorCommand as DescribeVendorCommand, index_DescribeWindowCoveringCommand as DescribeWindowCoveringCommand, index_EmailUserAccountSetupCommand as EmailUserAccountSetupCommand, index_FinishRegisterPasskeyCommand as FinishRegisterPasskeyCommand, index_LeaveTicketCommand as LeaveTicketCommand, index_ListAlarmsCommand as ListAlarmsCommand, index_ListAnnouncementsCommand as ListAnnouncementsCommand, index_ListAutomationsCommand as ListAutomationsCommand, index_ListCameraStreamPreviewsCommand as ListCameraStreamPreviewsCommand, index_ListCamerasCommand as ListCamerasCommand, index_ListCategoriesCommand as ListCategoriesCommand, index_ListCourtesyCommand as ListCourtesyCommand, index_ListDepartmentsCommand as ListDepartmentsCommand, index_ListDimmersCommand as ListDimmersCommand, index_ListDiscoveredDevicesCommand as ListDiscoveredDevicesCommand, index_ListIssuesCommand as ListIssuesCommand, index_ListLocksCommand as ListLocksCommand, index_ListMediaSourcesCommand as ListMediaSourcesCommand, index_ListMyPropertiesCommand as ListMyPropertiesCommand, index_ListMyTimeSheetsCommand as ListMyTimeSheetsCommand, index_ListNotificationsCommand as ListNotificationsCommand, index_ListOrganizationsCommand as ListOrganizationsCommand, index_ListPoliciesCommand as ListPoliciesCommand, index_ListPropertiesCommand as ListPropertiesCommand, index_ListRoomsCommand as ListRoomsCommand, index_ListRoomsInSpaceCommand as ListRoomsInSpaceCommand, index_ListScenesCommand as ListScenesCommand, index_ListServersCommand as ListServersCommand, index_ListSessionsCommand as ListSessionsCommand, index_ListSpacesCommand as ListSpacesCommand, index_ListSwitchesCommand as ListSwitchesCommand, index_ListSystemsCommand as ListSystemsCommand, index_ListThermostatsCommand as ListThermostatsCommand, index_ListTicketLocationsCommand as ListTicketLocationsCommand, index_ListTicketsCommand as ListTicketsCommand, index_ListTimeSheetsCommand as ListTimeSheetsCommand, index_ListUserSpacesCommand as ListUserSpacesCommand, index_ListUsersCommand as ListUsersCommand, index_ListVendorsCommand as ListVendorsCommand, index_ListWindowCoveringsCommand as ListWindowCoveringsCommand, index_LoginFinishCommand as LoginFinishCommand, index_LoginStartCommand as LoginStartCommand, index_LogoutSelfCommand as LogoutSelfCommand, index_LogoutUserCommand as LogoutUserCommand, index_MoveAlarmCommand as MoveAlarmCommand, index_MoveCameraCommand as MoveCameraCommand, index_MoveCourtesyCommand as MoveCourtesyCommand, index_MoveDimmerCommand as MoveDimmerCommand, index_MoveLockCommand as MoveLockCommand, index_MoveMediaSourceCommand as MoveMediaSourceCommand, index_MoveSwitchCommand as MoveSwitchCommand, index_MoveThermostatCommand as MoveThermostatCommand, index_MoveWindowCoveringCommand as MoveWindowCoveringCommand, index_RefreshTokenCommand as RefreshTokenCommand, index_RequestLoginTokenCommand as RequestLoginTokenCommand, index_RunAutomationCommand as RunAutomationCommand, index_SendNotificationCommand as SendNotificationCommand, index_SendSMSCommand as SendSMSCommand, index_SendVerificationCodeCommand as SendVerificationCodeCommand, index_SetAlarmCommand as SetAlarmCommand, index_SetCameraCommand as SetCameraCommand, index_SetCourtesyCommand as SetCourtesyCommand, index_SetDevicesCommand as SetDevicesCommand, index_SetDimmerCommand as SetDimmerCommand, index_SetLockCommand as SetLockCommand, index_SetMediaSourceCommand as SetMediaSourceCommand, index_SetRoomSceneCommand as SetRoomSceneCommand, index_SetSceneCommand as SetSceneCommand, index_SetSwitchCommand as SetSwitchCommand, index_SetThermostatCommand as SetThermostatCommand, index_SetWindowCoveringCommand as SetWindowCoveringCommand, index_StartRegisterPasskeyCommand as StartRegisterPasskeyCommand, index_StartSOSCommand as StartSOSCommand, index_StopSOSCommand as StopSOSCommand, index_UpdateAlarmCommand as UpdateAlarmCommand, index_UpdateAnnouncementCommand as UpdateAnnouncementCommand, index_UpdateAutomationCommand as UpdateAutomationCommand, index_UpdateCameraCommand as UpdateCameraCommand, index_UpdateCategoryCommand as UpdateCategoryCommand, index_UpdateCourtesyCommand as UpdateCourtesyCommand, index_UpdateDepartmentCommand as UpdateDepartmentCommand, index_UpdateDimmerCommand as UpdateDimmerCommand, index_UpdateDiscoveredDeviceCommand as UpdateDiscoveredDeviceCommand, index_UpdateIssueCommand as UpdateIssueCommand, index_UpdateLockCommand as UpdateLockCommand, index_UpdateMediaSourceCommand as UpdateMediaSourceCommand, index_UpdateMessageReadStatusCommand as UpdateMessageReadStatusCommand, index_UpdateNotificationCommand as UpdateNotificationCommand, index_UpdateOrganizationCommand as UpdateOrganizationCommand, index_UpdatePolicyCommand as UpdatePolicyCommand, index_UpdatePropertyCommand as UpdatePropertyCommand, index_UpdatePropertySettingsCommand as UpdatePropertySettingsCommand, index_UpdateRoomCommand as UpdateRoomCommand, index_UpdateSelfCommand as UpdateSelfCommand, index_UpdateServerCommand as UpdateServerCommand, index_UpdateSessionCommand as UpdateSessionCommand, index_UpdateSpaceCommand as UpdateSpaceCommand, index_UpdateSwitchCommand as UpdateSwitchCommand, index_UpdateSystemCommand as UpdateSystemCommand, index_UpdateThermostatCommand as UpdateThermostatCommand, index_UpdateTicketCommand as UpdateTicketCommand, index_UpdateTicketStatusCommand as UpdateTicketStatusCommand, index_UpdateTimeSheetCommand as UpdateTimeSheetCommand, index_UpdateTimeSheetTimeEntryCommand as UpdateTimeSheetTimeEntryCommand, index_UpdateUserCommand as UpdateUserCommand, index_UpdateVendorCommand as UpdateVendorCommand, index_UpdateWindowCoveringCommand as UpdateWindowCoveringCommand, index_UploadImageCommand as UploadImageCommand, index_UpsertDiscoveredDeviceCommand as UpsertDiscoveredDeviceCommand, index_ValidateAuthCommand as ValidateAuthCommand };
|
|
423
|
+
export { index_AutoAssociateDiscoveredDevicesCommand as AutoAssociateDiscoveredDevicesCommand, index_AutoCloseTicketsCommand as AutoCloseTicketsCommand, index_BulkUpdateIssueCommand as BulkUpdateIssueCommand, index_CheckVerificationCodeCommand as CheckVerificationCodeCommand, index_CreateAlarmCommand as CreateAlarmCommand, index_CreateAnnouncementCommand as CreateAnnouncementCommand, index_CreateAutomationCommand as CreateAutomationCommand, index_CreateCameraCommand as CreateCameraCommand, index_CreateCategoryCommand as CreateCategoryCommand, index_CreateCourtesyCommand as CreateCourtesyCommand, index_CreateDefaultAutomationsCommand as CreateDefaultAutomationsCommand, index_CreateDepartmentCommand as CreateDepartmentCommand, index_CreateDimmerCommand as CreateDimmerCommand, index_CreateDiscoveredDeviceAssociationCommand as CreateDiscoveredDeviceAssociationCommand, index_CreateDiscoveredDeviceAssociationMapCommand as CreateDiscoveredDeviceAssociationMapCommand, index_CreateDiscoveredDeviceCommand as CreateDiscoveredDeviceCommand, index_CreateImageUploadEndpointCommand as CreateImageUploadEndpointCommand, index_CreateIssueCommand as CreateIssueCommand, index_CreateLockCommand as CreateLockCommand, index_CreateMediaSourceCommand as CreateMediaSourceCommand, index_CreateOrganizationCommand as CreateOrganizationCommand, index_CreatePolicyCommand as CreatePolicyCommand, index_CreatePropertyCommand as CreatePropertyCommand, index_CreateRoomCommand as CreateRoomCommand, index_CreateRoomInSpaceCommand as CreateRoomInSpaceCommand, index_CreateServerCommand as CreateServerCommand, index_CreateSessionCommand as CreateSessionCommand, index_CreateSpaceCommand as CreateSpaceCommand, index_CreateSwitchCommand as CreateSwitchCommand, index_CreateSystemCommand as CreateSystemCommand, index_CreateThermostatCommand as CreateThermostatCommand, index_CreateTicketCommand as CreateTicketCommand, index_CreateTicketMessageCommand as CreateTicketMessageCommand, index_CreateTimeSheetCommand as CreateTimeSheetCommand, index_CreateTimeSheetTimeEntryCommand as CreateTimeSheetTimeEntryCommand, index_CreateUserCommand as CreateUserCommand, index_CreateVendorCommand as CreateVendorCommand, index_CreateWindowCoveringCommand as CreateWindowCoveringCommand, index_DeleteAlarmCommand as DeleteAlarmCommand, index_DeleteAnnouncementCommand as DeleteAnnouncementCommand, index_DeleteAutomationCommand as DeleteAutomationCommand, index_DeleteCameraCommand as DeleteCameraCommand, index_DeleteCategoryCommand as DeleteCategoryCommand, index_DeleteCourtesyCommand as DeleteCourtesyCommand, index_DeleteDepartmentCommand as DeleteDepartmentCommand, index_DeleteDimmerCommand as DeleteDimmerCommand, index_DeleteDiscoveredDeviceCommand as DeleteDiscoveredDeviceCommand, index_DeleteIssueCommand as DeleteIssueCommand, index_DeleteLockCommand as DeleteLockCommand, index_DeleteMediaFileCommand as DeleteMediaFileCommand, index_DeleteMediaSourceCommand as DeleteMediaSourceCommand, index_DeletePolicyCommand as DeletePolicyCommand, index_DeleteRoomCommand as DeleteRoomCommand, index_DeleteServerCommand as DeleteServerCommand, index_DeleteSessionCommand as DeleteSessionCommand, index_DeleteSpaceCommand as DeleteSpaceCommand, index_DeleteSwitchCommand as DeleteSwitchCommand, index_DeleteSystemCommand as DeleteSystemCommand, index_DeleteThermostatCommand as DeleteThermostatCommand, index_DeleteTicketCommand as DeleteTicketCommand, index_DeleteTimeSheetCommand as DeleteTimeSheetCommand, index_DeleteTimeSheetTimeEntryCommand as DeleteTimeSheetTimeEntryCommand, index_DeleteUserCommand as DeleteUserCommand, index_DeleteUserCredentialCommand as DeleteUserCredentialCommand, index_DeleteVendorCommand as DeleteVendorCommand, index_DeleteWindowCoveringCommand as DeleteWindowCoveringCommand, index_DescribeAlarmCommand as DescribeAlarmCommand, index_DescribeAlarmConfigCommand as DescribeAlarmConfigCommand, index_DescribeAnnouncementCommand as DescribeAnnouncementCommand, index_DescribeAutomationCommand as DescribeAutomationCommand, index_DescribeCameraCommand as DescribeCameraCommand, index_DescribeCameraConfigCommand as DescribeCameraConfigCommand, index_DescribeCategoryCommand as DescribeCategoryCommand, index_DescribeCourtesyCommand as DescribeCourtesyCommand, index_DescribeDepartmentCommand as DescribeDepartmentCommand, index_DescribeDimmerCommand as DescribeDimmerCommand, index_DescribeDiscoveredDeviceCommand as DescribeDiscoveredDeviceCommand, index_DescribeIssueCommand as DescribeIssueCommand, index_DescribeLockCommand as DescribeLockCommand, index_DescribeMediaSourceCommand as DescribeMediaSourceCommand, index_DescribeMyAuthCommand as DescribeMyAuthCommand, index_DescribeMyOrganizationCommand as DescribeMyOrganizationCommand, index_DescribeMyPasskeyRegistrationsCommand as DescribeMyPasskeyRegistrationsCommand, index_DescribeOrganizationCommand as DescribeOrganizationCommand, index_DescribePolicyCommand as DescribePolicyCommand, index_DescribePropertyCommand as DescribePropertyCommand, index_DescribeRoomCommand as DescribeRoomCommand, index_DescribeSOSCommand as DescribeSOSCommand, index_DescribeSelfCommand as DescribeSelfCommand, index_DescribeServerCommand as DescribeServerCommand, index_DescribeSessionCommand as DescribeSessionCommand, index_DescribeSpaceCommand as DescribeSpaceCommand, index_DescribeSwitchCommand as DescribeSwitchCommand, index_DescribeSystemCommand as DescribeSystemCommand, index_DescribeThermostatCommand as DescribeThermostatCommand, index_DescribeTicketCommand as DescribeTicketCommand, index_DescribeTicketFiltersCommand as DescribeTicketFiltersCommand, index_DescribeTicketStatsCommand as DescribeTicketStatsCommand, index_DescribeTimeSheetCommand as DescribeTimeSheetCommand, index_DescribeTimeSheetStatsCommand as DescribeTimeSheetStatsCommand, index_DescribeUserCommand as DescribeUserCommand, index_DescribeVendorCommand as DescribeVendorCommand, index_DescribeWindowCoveringCommand as DescribeWindowCoveringCommand, index_EmailUserAccountSetupCommand as EmailUserAccountSetupCommand, index_FinishRegisterPasskeyCommand as FinishRegisterPasskeyCommand, index_LeaveTicketCommand as LeaveTicketCommand, index_ListAlarmsCommand as ListAlarmsCommand, index_ListAnnouncementsCommand as ListAnnouncementsCommand, index_ListAutomationsCommand as ListAutomationsCommand, index_ListCameraStreamPreviewsCommand as ListCameraStreamPreviewsCommand, index_ListCamerasCommand as ListCamerasCommand, index_ListCategoriesCommand as ListCategoriesCommand, index_ListCourtesyCommand as ListCourtesyCommand, index_ListDepartmentsCommand as ListDepartmentsCommand, index_ListDimmersCommand as ListDimmersCommand, index_ListDiscoveredDevicesCommand as ListDiscoveredDevicesCommand, index_ListIntegrationsCommand as ListIntegrationsCommand, index_ListIssuesCommand as ListIssuesCommand, index_ListLocksCommand as ListLocksCommand, index_ListMediaSourcesCommand as ListMediaSourcesCommand, index_ListMyPropertiesCommand as ListMyPropertiesCommand, index_ListMyTimeSheetsCommand as ListMyTimeSheetsCommand, index_ListOrganizationsCommand as ListOrganizationsCommand, index_ListPoliciesCommand as ListPoliciesCommand, index_ListPropertiesCommand as ListPropertiesCommand, index_ListRoomsCommand as ListRoomsCommand, index_ListRoomsInSpaceCommand as ListRoomsInSpaceCommand, index_ListScenesCommand as ListScenesCommand, index_ListServersCommand as ListServersCommand, index_ListSessionsCommand as ListSessionsCommand, index_ListSpacesCommand as ListSpacesCommand, index_ListSwitchesCommand as ListSwitchesCommand, index_ListSystemsCommand as ListSystemsCommand, index_ListThermostatsCommand as ListThermostatsCommand, index_ListTicketLocationsCommand as ListTicketLocationsCommand, index_ListTicketsCommand as ListTicketsCommand, index_ListTimeSheetsCommand as ListTimeSheetsCommand, index_ListUserSpacesCommand as ListUserSpacesCommand, index_ListUsersCommand as ListUsersCommand, index_ListVendorsCommand as ListVendorsCommand, index_ListWindowCoveringsCommand as ListWindowCoveringsCommand, index_LoginFinishCommand as LoginFinishCommand, index_LoginStartCommand as LoginStartCommand, index_LogoutSelfCommand as LogoutSelfCommand, index_LogoutUserCommand as LogoutUserCommand, index_MoveAlarmCommand as MoveAlarmCommand, index_MoveCameraCommand as MoveCameraCommand, index_MoveCourtesyCommand as MoveCourtesyCommand, index_MoveDimmerCommand as MoveDimmerCommand, index_MoveLockCommand as MoveLockCommand, index_MoveMediaSourceCommand as MoveMediaSourceCommand, index_MoveSwitchCommand as MoveSwitchCommand, index_MoveThermostatCommand as MoveThermostatCommand, index_MoveWindowCoveringCommand as MoveWindowCoveringCommand, index_RefreshTokenCommand as RefreshTokenCommand, index_RequestLoginTokenCommand as RequestLoginTokenCommand, index_RunAutomationCommand as RunAutomationCommand, index_SendNotificationCommand as SendNotificationCommand, index_SendSMSCommand as SendSMSCommand, index_SendVerificationCodeCommand as SendVerificationCodeCommand, index_SetAlarmCommand as SetAlarmCommand, index_SetCameraCommand as SetCameraCommand, index_SetCourtesyCommand as SetCourtesyCommand, index_SetDevicesCommand as SetDevicesCommand, index_SetDimmerCommand as SetDimmerCommand, index_SetLockCommand as SetLockCommand, index_SetMediaSourceCommand as SetMediaSourceCommand, index_SetRoomSceneCommand as SetRoomSceneCommand, index_SetSceneCommand as SetSceneCommand, index_SetSwitchCommand as SetSwitchCommand, index_SetThermostatCommand as SetThermostatCommand, index_SetWindowCoveringCommand as SetWindowCoveringCommand, index_StartRegisterPasskeyCommand as StartRegisterPasskeyCommand, index_StartSOSCommand as StartSOSCommand, index_StopSOSCommand as StopSOSCommand, index_UpdateAlarmCommand as UpdateAlarmCommand, index_UpdateAnnouncementCommand as UpdateAnnouncementCommand, index_UpdateAutomationCommand as UpdateAutomationCommand, index_UpdateCameraCommand as UpdateCameraCommand, index_UpdateCategoryCommand as UpdateCategoryCommand, index_UpdateCourtesyCommand as UpdateCourtesyCommand, index_UpdateDepartmentCommand as UpdateDepartmentCommand, index_UpdateDimmerCommand as UpdateDimmerCommand, index_UpdateDiscoveredDeviceCommand as UpdateDiscoveredDeviceCommand, index_UpdateIssueCommand as UpdateIssueCommand, index_UpdateLockCommand as UpdateLockCommand, index_UpdateMediaSourceCommand as UpdateMediaSourceCommand, index_UpdateMessageReadStatusCommand as UpdateMessageReadStatusCommand, index_UpdateOrganizationCommand as UpdateOrganizationCommand, index_UpdatePolicyCommand as UpdatePolicyCommand, index_UpdatePropertyCommand as UpdatePropertyCommand, index_UpdatePropertySettingsCommand as UpdatePropertySettingsCommand, index_UpdateRoomCommand as UpdateRoomCommand, index_UpdateSelfCommand as UpdateSelfCommand, index_UpdateServerCommand as UpdateServerCommand, index_UpdateSessionCommand as UpdateSessionCommand, index_UpdateSpaceCommand as UpdateSpaceCommand, index_UpdateSwitchCommand as UpdateSwitchCommand, index_UpdateSystemCommand as UpdateSystemCommand, index_UpdateThermostatCommand as UpdateThermostatCommand, index_UpdateTicketCommand as UpdateTicketCommand, index_UpdateTicketStatusCommand as UpdateTicketStatusCommand, index_UpdateTimeSheetCommand as UpdateTimeSheetCommand, index_UpdateTimeSheetTimeEntryCommand as UpdateTimeSheetTimeEntryCommand, index_UpdateUserCommand as UpdateUserCommand, index_UpdateVendorCommand as UpdateVendorCommand, index_UpdateWindowCoveringCommand as UpdateWindowCoveringCommand, index_UploadImageCommand as UploadImageCommand, index_UpsertDiscoveredDeviceCommand as UpsertDiscoveredDeviceCommand, index_ValidateAuthCommand as ValidateAuthCommand };
|
|
432
424
|
}
|
|
433
425
|
|
|
434
426
|
export { index as i };
|
package/dist/cjs/index.d.cts
CHANGED
|
@@ -4,7 +4,7 @@ export { i as Commands } from './index-CH4lP5Qn.cjs';
|
|
|
4
4
|
export { i as Errors } from './index-DXQ1T_T1.cjs';
|
|
5
5
|
export { i as Events } from './index-CVL51QsV.cjs';
|
|
6
6
|
export { i as Models } from './index-1GbroB9w.cjs';
|
|
7
|
-
export { i as UseCases } from './index-
|
|
7
|
+
export { i as UseCases } from './index-1ZtkIYkt.cjs';
|
|
8
8
|
import 'node:buffer';
|
|
9
9
|
import './useCases/loginStart.cjs';
|
|
10
10
|
import './useCases/refreshToken.cjs';
|
|
@@ -146,6 +146,7 @@ import './useCases/deleteDiscoveredDevice.cjs';
|
|
|
146
146
|
import './useCases/describeDiscoveredDevice.cjs';
|
|
147
147
|
import './useCases/upsertDiscoveredDevice.cjs';
|
|
148
148
|
import './useCases/createDiscoveredDeviceAssociation.cjs';
|
|
149
|
+
import './useCases/listIntegrations.cjs';
|
|
149
150
|
import './useCases/describeMyOrganization.cjs';
|
|
150
151
|
import './useCases/createOrganization.cjs';
|
|
151
152
|
import './useCases/updateOrganization.cjs';
|
|
@@ -197,11 +198,6 @@ import './useCases/updateAutomation.cjs';
|
|
|
197
198
|
import './useCases/deleteAutomation.cjs';
|
|
198
199
|
import './useCases/createDefaultAutomations.cjs';
|
|
199
200
|
import './useCases/runAutomation.cjs';
|
|
200
|
-
import './useCases/createNotification.cjs';
|
|
201
|
-
import './useCases/deleteNotification.cjs';
|
|
202
|
-
import './useCases/describeNotification.cjs';
|
|
203
|
-
import './useCases/listNotifications.cjs';
|
|
204
|
-
import './useCases/updateNotification.cjs';
|
|
205
201
|
import './useCases/sendNotification.cjs';
|
|
206
202
|
import './useCases/sendSMS.cjs';
|
|
207
203
|
import './useCases/createSession.cjs';
|
|
@@ -37,7 +37,6 @@ __export(useCases_exports, {
|
|
|
37
37
|
CreateIssueCommand: () => import_createIssue.CreateIssueCommand,
|
|
38
38
|
CreateLockCommand: () => import_createLock.CreateLockCommand,
|
|
39
39
|
CreateMediaSourceCommand: () => import_createMediaSource.CreateMediaSourceCommand,
|
|
40
|
-
CreateNotificationCommand: () => import_createNotification.CreateNotificationCommand,
|
|
41
40
|
CreateOrganizationCommand: () => import_createOrganization.CreateOrganizationCommand,
|
|
42
41
|
CreatePolicyCommand: () => import_createPolicy.CreatePolicyCommand,
|
|
43
42
|
CreatePropertyCommand: () => import_createProperty.CreatePropertyCommand,
|
|
@@ -69,7 +68,6 @@ __export(useCases_exports, {
|
|
|
69
68
|
DeleteLockCommand: () => import_deleteLock.DeleteLockCommand,
|
|
70
69
|
DeleteMediaFileCommand: () => import_deleteMediaFile.DeleteMediaFileCommand,
|
|
71
70
|
DeleteMediaSourceCommand: () => import_deleteMediaSource.DeleteMediaSourceCommand,
|
|
72
|
-
DeleteNotificationCommand: () => import_deleteNotification.DeleteNotificationCommand,
|
|
73
71
|
DeletePolicyCommand: () => import_deletePolicy.DeletePolicyCommand,
|
|
74
72
|
DeleteRoomCommand: () => import_deleteRoom.DeleteRoomCommand,
|
|
75
73
|
DeleteServerCommand: () => import_deleteServer.DeleteServerCommand,
|
|
@@ -102,7 +100,6 @@ __export(useCases_exports, {
|
|
|
102
100
|
DescribeMyAuthCommand: () => import_describeMyAuth.DescribeMyAuthCommand,
|
|
103
101
|
DescribeMyOrganizationCommand: () => import_describeMyOrganization.DescribeMyOrganizationCommand,
|
|
104
102
|
DescribeMyPasskeyRegistrationsCommand: () => import_describeMyPasskeyRegistrations.DescribeMyPasskeyRegistrationsCommand,
|
|
105
|
-
DescribeNotificationCommand: () => import_describeNotification.DescribeNotificationCommand,
|
|
106
103
|
DescribeOrganizationCommand: () => import_describeOrganization.DescribeOrganizationCommand,
|
|
107
104
|
DescribePolicyCommand: () => import_describePolicy.DescribePolicyCommand,
|
|
108
105
|
DescribePropertyCommand: () => import_describeProperty.DescribePropertyCommand,
|
|
@@ -136,12 +133,12 @@ __export(useCases_exports, {
|
|
|
136
133
|
ListDepartmentsCommand: () => import_listDepartments.ListDepartmentsCommand,
|
|
137
134
|
ListDimmersCommand: () => import_listDimmers.ListDimmersCommand,
|
|
138
135
|
ListDiscoveredDevicesCommand: () => import_listDiscoveredDevices.ListDiscoveredDevicesCommand,
|
|
136
|
+
ListIntegrationsCommand: () => import_listIntegrations.ListIntegrationsCommand,
|
|
139
137
|
ListIssuesCommand: () => import_listIssues.ListIssuesCommand,
|
|
140
138
|
ListLocksCommand: () => import_listLocks.ListLocksCommand,
|
|
141
139
|
ListMediaSourcesCommand: () => import_listMediaSources.ListMediaSourcesCommand,
|
|
142
140
|
ListMyPropertiesCommand: () => import_listMyProperties.ListMyPropertiesCommand,
|
|
143
141
|
ListMyTimeSheetsCommand: () => import_listMyTimeSheets.ListMyTimeSheetsCommand,
|
|
144
|
-
ListNotificationsCommand: () => import_listNotifications.ListNotificationsCommand,
|
|
145
142
|
ListOrganizationsCommand: () => import_listOrganizations.ListOrganizationsCommand,
|
|
146
143
|
ListPoliciesCommand: () => import_listPolicies.ListPoliciesCommand,
|
|
147
144
|
ListPropertiesCommand: () => import_listProperties.ListPropertiesCommand,
|
|
@@ -208,7 +205,6 @@ __export(useCases_exports, {
|
|
|
208
205
|
UpdateLockCommand: () => import_updateLock.UpdateLockCommand,
|
|
209
206
|
UpdateMediaSourceCommand: () => import_updateMediaSource.UpdateMediaSourceCommand,
|
|
210
207
|
UpdateMessageReadStatusCommand: () => import_updateMessageReadStatus.UpdateMessageReadStatusCommand,
|
|
211
|
-
UpdateNotificationCommand: () => import_updateNotification.UpdateNotificationCommand,
|
|
212
208
|
UpdateOrganizationCommand: () => import_updateOrganization.UpdateOrganizationCommand,
|
|
213
209
|
UpdatePolicyCommand: () => import_updatePolicy.UpdatePolicyCommand,
|
|
214
210
|
UpdatePropertyCommand: () => import_updateProperty.UpdatePropertyCommand,
|
|
@@ -373,6 +369,7 @@ var import_deleteDiscoveredDevice = require("./deleteDiscoveredDevice.cjs");
|
|
|
373
369
|
var import_describeDiscoveredDevice = require("./describeDiscoveredDevice.cjs");
|
|
374
370
|
var import_upsertDiscoveredDevice = require("./upsertDiscoveredDevice.cjs");
|
|
375
371
|
var import_createDiscoveredDeviceAssociation = require("./createDiscoveredDeviceAssociation.cjs");
|
|
372
|
+
var import_listIntegrations = require("./listIntegrations.cjs");
|
|
376
373
|
var import_describeMyOrganization = require("./describeMyOrganization.cjs");
|
|
377
374
|
var import_createOrganization = require("./createOrganization.cjs");
|
|
378
375
|
var import_updateOrganization = require("./updateOrganization.cjs");
|
|
@@ -424,11 +421,6 @@ var import_updateAutomation = require("./updateAutomation.cjs");
|
|
|
424
421
|
var import_deleteAutomation = require("./deleteAutomation.cjs");
|
|
425
422
|
var import_createDefaultAutomations = require("./createDefaultAutomations.cjs");
|
|
426
423
|
var import_runAutomation = require("./runAutomation.cjs");
|
|
427
|
-
var import_createNotification = require("./createNotification.cjs");
|
|
428
|
-
var import_deleteNotification = require("./deleteNotification.cjs");
|
|
429
|
-
var import_describeNotification = require("./describeNotification.cjs");
|
|
430
|
-
var import_listNotifications = require("./listNotifications.cjs");
|
|
431
|
-
var import_updateNotification = require("./updateNotification.cjs");
|
|
432
424
|
var import_sendNotification = require("./sendNotification.cjs");
|
|
433
425
|
var import_sendSMS = require("./sendSMS.cjs");
|
|
434
426
|
var import_createSession = require("./createSession.cjs");
|
|
@@ -469,7 +461,6 @@ var import_updateServer = require("./updateServer.cjs");
|
|
|
469
461
|
CreateIssueCommand,
|
|
470
462
|
CreateLockCommand,
|
|
471
463
|
CreateMediaSourceCommand,
|
|
472
|
-
CreateNotificationCommand,
|
|
473
464
|
CreateOrganizationCommand,
|
|
474
465
|
CreatePolicyCommand,
|
|
475
466
|
CreatePropertyCommand,
|
|
@@ -501,7 +492,6 @@ var import_updateServer = require("./updateServer.cjs");
|
|
|
501
492
|
DeleteLockCommand,
|
|
502
493
|
DeleteMediaFileCommand,
|
|
503
494
|
DeleteMediaSourceCommand,
|
|
504
|
-
DeleteNotificationCommand,
|
|
505
495
|
DeletePolicyCommand,
|
|
506
496
|
DeleteRoomCommand,
|
|
507
497
|
DeleteServerCommand,
|
|
@@ -534,7 +524,6 @@ var import_updateServer = require("./updateServer.cjs");
|
|
|
534
524
|
DescribeMyAuthCommand,
|
|
535
525
|
DescribeMyOrganizationCommand,
|
|
536
526
|
DescribeMyPasskeyRegistrationsCommand,
|
|
537
|
-
DescribeNotificationCommand,
|
|
538
527
|
DescribeOrganizationCommand,
|
|
539
528
|
DescribePolicyCommand,
|
|
540
529
|
DescribePropertyCommand,
|
|
@@ -568,12 +557,12 @@ var import_updateServer = require("./updateServer.cjs");
|
|
|
568
557
|
ListDepartmentsCommand,
|
|
569
558
|
ListDimmersCommand,
|
|
570
559
|
ListDiscoveredDevicesCommand,
|
|
560
|
+
ListIntegrationsCommand,
|
|
571
561
|
ListIssuesCommand,
|
|
572
562
|
ListLocksCommand,
|
|
573
563
|
ListMediaSourcesCommand,
|
|
574
564
|
ListMyPropertiesCommand,
|
|
575
565
|
ListMyTimeSheetsCommand,
|
|
576
|
-
ListNotificationsCommand,
|
|
577
566
|
ListOrganizationsCommand,
|
|
578
567
|
ListPoliciesCommand,
|
|
579
568
|
ListPropertiesCommand,
|
|
@@ -640,7 +629,6 @@ var import_updateServer = require("./updateServer.cjs");
|
|
|
640
629
|
UpdateLockCommand,
|
|
641
630
|
UpdateMediaSourceCommand,
|
|
642
631
|
UpdateMessageReadStatusCommand,
|
|
643
|
-
UpdateNotificationCommand,
|
|
644
632
|
UpdateOrganizationCommand,
|
|
645
633
|
UpdatePolicyCommand,
|
|
646
634
|
UpdatePropertyCommand,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../.generated/useCases/index.ts"],"sourcesContent":["/* This file is automatically generated. Do not modify it manually. */\n\nexport { LoginStartCommand } from \"./loginStart.js\";\nexport { RefreshTokenCommand } from \"./refreshToken.js\";\nexport { LoginFinishCommand } from \"./loginFinish.js\";\nexport { RequestLoginTokenCommand } from \"./requestLoginToken.js\";\nexport { LogoutSelfCommand } from \"./logoutSelf.js\";\nexport { LogoutUserCommand } from \"./logoutUser.js\";\nexport { StartRegisterPasskeyCommand } from \"./startRegisterPasskey.js\";\nexport { FinishRegisterPasskeyCommand } from \"./finishRegisterPasskey.js\";\nexport { DescribeMyAuthCommand } from \"./describeMyAuth.js\";\nexport { ValidateAuthCommand } from \"./validateAuth.js\";\nexport { DescribeSelfCommand } from \"./describeSelf.js\";\nexport { DescribeUserCommand } from \"./describeUser.js\";\nexport { CreateUserCommand } from \"./createUser.js\";\nexport { ListUsersCommand } from \"./listUsers.js\";\nexport { UpdateSelfCommand } from \"./updateSelf.js\";\nexport { UpdateUserCommand } from \"./updateUser.js\";\nexport { DeleteUserCommand } from \"./deleteUser.js\";\nexport { SendVerificationCodeCommand } from \"./sendVerificationCode.js\";\nexport { CheckVerificationCodeCommand } from \"./checkVerificationCode.js\";\nexport { ListUserSpacesCommand } from \"./listUserSpaces.js\";\nexport { DescribeMyPasskeyRegistrationsCommand } from \"./describeMyPasskeyRegistrations.js\";\nexport { DeleteUserCredentialCommand } from \"./deleteUserCredential.js\";\nexport { CreatePolicyCommand } from \"./createPolicy.js\";\nexport { ListPoliciesCommand } from \"./listPolicies.js\";\nexport { UpdatePolicyCommand } from \"./updatePolicy.js\";\nexport { DeletePolicyCommand } from \"./deletePolicy.js\";\nexport { DescribePolicyCommand } from \"./describePolicy.js\";\nexport { ListSpacesCommand } from \"./listSpaces.js\";\nexport { ListRoomsInSpaceCommand } from \"./listRoomsInSpace.js\";\nexport { UpdateSpaceCommand } from \"./updateSpace.js\";\nexport { CreateSpaceCommand } from \"./createSpace.js\";\nexport { DescribeSpaceCommand } from \"./describeSpace.js\";\nexport { DeleteSpaceCommand } from \"./deleteSpace.js\";\nexport { CreateRoomInSpaceCommand } from \"./createRoomInSpace.js\";\nexport { CreateCategoryCommand } from \"./createCategory.js\";\nexport { DeleteCategoryCommand } from \"./deleteCategory.js\";\nexport { DescribeCategoryCommand } from \"./describeCategory.js\";\nexport { ListCategoriesCommand } from \"./listCategories.js\";\nexport { UpdateCategoryCommand } from \"./updateCategory.js\";\nexport { DescribeDepartmentCommand } from \"./describeDepartment.js\";\nexport { ListDepartmentsCommand } from \"./listDepartments.js\";\nexport { DeleteDepartmentCommand } from \"./deleteDepartment.js\";\nexport { CreateDepartmentCommand } from \"./createDepartment.js\";\nexport { UpdateDepartmentCommand } from \"./updateDepartment.js\";\nexport { ListRoomsCommand } from \"./listRooms.js\";\nexport { DescribeRoomCommand } from \"./describeRoom.js\";\nexport { CreateRoomCommand } from \"./createRoom.js\";\nexport { UpdateRoomCommand } from \"./updateRoom.js\";\nexport { DeleteRoomCommand } from \"./deleteRoom.js\";\nexport { CreateAlarmCommand } from \"./createAlarm.js\";\nexport { ListAlarmsCommand } from \"./listAlarms.js\";\nexport { UpdateAlarmCommand } from \"./updateAlarm.js\";\nexport { DeleteAlarmCommand } from \"./deleteAlarm.js\";\nexport { DescribeAlarmCommand } from \"./describeAlarm.js\";\nexport { DescribeAlarmConfigCommand } from \"./describeAlarmConfig.js\";\nexport { SetAlarmCommand } from \"./setAlarm.js\";\nexport { MoveAlarmCommand } from \"./moveAlarm.js\";\nexport { CreateCameraCommand } from \"./createCamera.js\";\nexport { ListCamerasCommand } from \"./listCameras.js\";\nexport { UpdateCameraCommand } from \"./updateCamera.js\";\nexport { DeleteCameraCommand } from \"./deleteCamera.js\";\nexport { ListCameraStreamPreviewsCommand } from \"./listCameraStreamPreviews.js\";\nexport { DescribeCameraCommand } from \"./describeCamera.js\";\nexport { SetCameraCommand } from \"./setCamera.js\";\nexport { MoveCameraCommand } from \"./moveCamera.js\";\nexport { DescribeCameraConfigCommand } from \"./describeCameraConfig.js\";\nexport { CreateCourtesyCommand } from \"./createCourtesy.js\";\nexport { ListCourtesyCommand } from \"./listCourtesy.js\";\nexport { UpdateCourtesyCommand } from \"./updateCourtesy.js\";\nexport { DeleteCourtesyCommand } from \"./deleteCourtesy.js\";\nexport { DescribeCourtesyCommand } from \"./describeCourtesy.js\";\nexport { SetCourtesyCommand } from \"./setCourtesy.js\";\nexport { MoveCourtesyCommand } from \"./moveCourtesy.js\";\nexport { CreateDimmerCommand } from \"./createDimmer.js\";\nexport { ListDimmersCommand } from \"./listDimmers.js\";\nexport { UpdateDimmerCommand } from \"./updateDimmer.js\";\nexport { DeleteDimmerCommand } from \"./deleteDimmer.js\";\nexport { DescribeDimmerCommand } from \"./describeDimmer.js\";\nexport { SetDimmerCommand } from \"./setDimmer.js\";\nexport { MoveDimmerCommand } from \"./moveDimmer.js\";\nexport { CreateLockCommand } from \"./createLock.js\";\nexport { ListLocksCommand } from \"./listLocks.js\";\nexport { UpdateLockCommand } from \"./updateLock.js\";\nexport { DeleteLockCommand } from \"./deleteLock.js\";\nexport { DescribeLockCommand } from \"./describeLock.js\";\nexport { SetLockCommand } from \"./setLock.js\";\nexport { MoveLockCommand } from \"./moveLock.js\";\nexport { CreateSwitchCommand } from \"./createSwitch.js\";\nexport { ListSwitchesCommand } from \"./listSwitches.js\";\nexport { UpdateSwitchCommand } from \"./updateSwitch.js\";\nexport { DeleteSwitchCommand } from \"./deleteSwitch.js\";\nexport { DescribeSwitchCommand } from \"./describeSwitch.js\";\nexport { SetSwitchCommand } from \"./setSwitch.js\";\nexport { MoveSwitchCommand } from \"./moveSwitch.js\";\nexport { CreateMediaSourceCommand } from \"./createMediaSource.js\";\nexport { ListMediaSourcesCommand } from \"./listMediaSources.js\";\nexport { UpdateMediaSourceCommand } from \"./updateMediaSource.js\";\nexport { DeleteMediaSourceCommand } from \"./deleteMediaSource.js\";\nexport { DescribeMediaSourceCommand } from \"./describeMediaSource.js\";\nexport { SetMediaSourceCommand } from \"./setMediaSource.js\";\nexport { MoveMediaSourceCommand } from \"./moveMediaSource.js\";\nexport { CreateThermostatCommand } from \"./createThermostat.js\";\nexport { ListThermostatsCommand } from \"./listThermostats.js\";\nexport { UpdateThermostatCommand } from \"./updateThermostat.js\";\nexport { DeleteThermostatCommand } from \"./deleteThermostat.js\";\nexport { DescribeThermostatCommand } from \"./describeThermostat.js\";\nexport { SetThermostatCommand } from \"./setThermostat.js\";\nexport { MoveThermostatCommand } from \"./moveThermostat.js\";\nexport { CreateWindowCoveringCommand } from \"./createWindowCovering.js\";\nexport { ListWindowCoveringsCommand } from \"./listWindowCoverings.js\";\nexport { UpdateWindowCoveringCommand } from \"./updateWindowCovering.js\";\nexport { DeleteWindowCoveringCommand } from \"./deleteWindowCovering.js\";\nexport { DescribeWindowCoveringCommand } from \"./describeWindowCovering.js\";\nexport { SetWindowCoveringCommand } from \"./setWindowCovering.js\";\nexport { MoveWindowCoveringCommand } from \"./moveWindowCovering.js\";\nexport { AutoCloseTicketsCommand } from \"./autoCloseTickets.js\";\nexport { DescribeTicketStatsCommand } from \"./describeTicketStats.js\";\nexport { CreateTicketCommand } from \"./createTicket.js\";\nexport { CreateTicketMessageCommand } from \"./createTicketMessage.js\";\nexport { DeleteTicketCommand } from \"./deleteTicket.js\";\nexport { ListTicketLocationsCommand } from \"./listTicketLocations.js\";\nexport { DescribeTicketFiltersCommand } from \"./describeTicketFilters.js\";\nexport { DescribeTicketCommand } from \"./describeTicket.js\";\nexport { ListTicketsCommand } from \"./listTickets.js\";\nexport { UpdateMessageReadStatusCommand } from \"./updateMessageReadStatus.js\";\nexport { UpdateTicketCommand } from \"./updateTicket.js\";\nexport { UpdateTicketStatusCommand } from \"./updateTicketStatus.js\";\nexport { LeaveTicketCommand } from \"./leaveTicket.js\";\nexport { ListScenesCommand } from \"./listScenes.js\";\nexport { SetSceneCommand } from \"./setScene.js\";\nexport { SetRoomSceneCommand } from \"./setRoomScene.js\";\nexport { CreateDiscoveredDeviceAssociationMapCommand } from \"./createDiscoveredDeviceAssociationMap.js\";\nexport { AutoAssociateDiscoveredDevicesCommand } from \"./autoAssociateDiscoveredDevices.js\";\nexport { CreateDiscoveredDeviceCommand } from \"./createDiscoveredDevice.js\";\nexport { ListDiscoveredDevicesCommand } from \"./listDiscoveredDevices.js\";\nexport { UpdateDiscoveredDeviceCommand } from \"./updateDiscoveredDevice.js\";\nexport { DeleteDiscoveredDeviceCommand } from \"./deleteDiscoveredDevice.js\";\nexport { DescribeDiscoveredDeviceCommand } from \"./describeDiscoveredDevice.js\";\nexport { UpsertDiscoveredDeviceCommand } from \"./upsertDiscoveredDevice.js\";\nexport { CreateDiscoveredDeviceAssociationCommand } from \"./createDiscoveredDeviceAssociation.js\";\nexport { DescribeMyOrganizationCommand } from \"./describeMyOrganization.js\";\nexport { CreateOrganizationCommand } from \"./createOrganization.js\";\nexport { UpdateOrganizationCommand } from \"./updateOrganization.js\";\nexport { DescribeOrganizationCommand } from \"./describeOrganization.js\";\nexport { ListOrganizationsCommand } from \"./listOrganizations.js\";\nexport { ListPropertiesCommand } from \"./listProperties.js\";\nexport { ListMyPropertiesCommand } from \"./listMyProperties.js\";\nexport { CreatePropertyCommand } from \"./createProperty.js\";\nexport { UpdatePropertyCommand } from \"./updateProperty.js\";\nexport { DescribePropertyCommand } from \"./describeProperty.js\";\nexport { UpdatePropertySettingsCommand } from \"./updatePropertySettings.js\";\nexport { EmailUserAccountSetupCommand } from \"./emailUserAccountSetup.js\";\nexport { CreateImageUploadEndpointCommand } from \"./createImageUploadEndpoint.js\";\nexport { DeleteMediaFileCommand } from \"./deleteMediaFile.js\";\nexport { UploadImageCommand } from \"./uploadImage.js\";\nexport { CreateAnnouncementCommand } from \"./createAnnouncement.js\";\nexport { UpdateAnnouncementCommand } from \"./updateAnnouncement.js\";\nexport { DescribeAnnouncementCommand } from \"./describeAnnouncement.js\";\nexport { DeleteAnnouncementCommand } from \"./deleteAnnouncement.js\";\nexport { ListAnnouncementsCommand } from \"./listAnnouncements.js\";\nexport { DescribeTimeSheetStatsCommand } from \"./describeTimeSheetStats.js\";\nexport { ListMyTimeSheetsCommand } from \"./listMyTimeSheets.js\";\nexport { DescribeTimeSheetCommand } from \"./describeTimeSheet.js\";\nexport { ListTimeSheetsCommand } from \"./listTimeSheets.js\";\nexport { CreateTimeSheetCommand } from \"./createTimeSheet.js\";\nexport { DeleteTimeSheetCommand } from \"./deleteTimeSheet.js\";\nexport { UpdateTimeSheetCommand } from \"./updateTimeSheet.js\";\nexport { CreateTimeSheetTimeEntryCommand } from \"./createTimeSheetTimeEntry.js\";\nexport { DeleteTimeSheetTimeEntryCommand } from \"./deleteTimeSheetTimeEntry.js\";\nexport { UpdateTimeSheetTimeEntryCommand } from \"./updateTimeSheetTimeEntry.js\";\nexport { StartSOSCommand } from \"./startSOS.js\";\nexport { StopSOSCommand } from \"./stopSOS.js\";\nexport { DescribeSOSCommand } from \"./describeSOS.js\";\nexport { DescribeIssueCommand } from \"./describeIssue.js\";\nexport { ListIssuesCommand } from \"./listIssues.js\";\nexport { DeleteIssueCommand } from \"./deleteIssue.js\";\nexport { CreateIssueCommand } from \"./createIssue.js\";\nexport { UpdateIssueCommand } from \"./updateIssue.js\";\nexport { BulkUpdateIssueCommand } from \"./bulkUpdateIssue.js\";\nexport { DescribeVendorCommand } from \"./describeVendor.js\";\nexport { ListVendorsCommand } from \"./listVendors.js\";\nexport { DeleteVendorCommand } from \"./deleteVendor.js\";\nexport { CreateVendorCommand } from \"./createVendor.js\";\nexport { UpdateVendorCommand } from \"./updateVendor.js\";\nexport { CreateAutomationCommand } from \"./createAutomation.js\";\nexport { ListAutomationsCommand } from \"./listAutomations.js\";\nexport { DescribeAutomationCommand } from \"./describeAutomation.js\";\nexport { UpdateAutomationCommand } from \"./updateAutomation.js\";\nexport { DeleteAutomationCommand } from \"./deleteAutomation.js\";\nexport { CreateDefaultAutomationsCommand } from \"./createDefaultAutomations.js\";\nexport { RunAutomationCommand } from \"./runAutomation.js\";\nexport { CreateNotificationCommand } from \"./createNotification.js\";\nexport { DeleteNotificationCommand } from \"./deleteNotification.js\";\nexport { DescribeNotificationCommand } from \"./describeNotification.js\";\nexport { ListNotificationsCommand } from \"./listNotifications.js\";\nexport { UpdateNotificationCommand } from \"./updateNotification.js\";\nexport { SendNotificationCommand } from \"./sendNotification.js\";\nexport { SendSMSCommand } from \"./sendSMS.js\";\nexport { CreateSessionCommand } from \"./createSession.js\";\nexport { ListSessionsCommand } from \"./listSessions.js\";\nexport { DescribeSessionCommand } from \"./describeSession.js\";\nexport { UpdateSessionCommand } from \"./updateSession.js\";\nexport { DeleteSessionCommand } from \"./deleteSession.js\";\nexport { SetDevicesCommand } from \"./setDevices.js\";\nexport { CreateSystemCommand } from \"./createSystem.js\";\nexport { DeleteSystemCommand } from \"./deleteSystem.js\";\nexport { DescribeSystemCommand } from \"./describeSystem.js\";\nexport { ListSystemsCommand } from \"./listSystems.js\";\nexport { UpdateSystemCommand } from \"./updateSystem.js\";\nexport { CreateServerCommand } from \"./createServer.js\";\nexport { DeleteServerCommand } from \"./deleteServer.js\";\nexport { DescribeServerCommand } from \"./describeServer.js\";\nexport { ListServersCommand } from \"./listServers.js\";\nexport { UpdateServerCommand } from \"./updateServer.js\";\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../.generated/useCases/index.ts"],"sourcesContent":["/* This file is automatically generated. Do not modify it manually. */\n\nexport { LoginStartCommand } from \"./loginStart.js\";\nexport { RefreshTokenCommand } from \"./refreshToken.js\";\nexport { LoginFinishCommand } from \"./loginFinish.js\";\nexport { RequestLoginTokenCommand } from \"./requestLoginToken.js\";\nexport { LogoutSelfCommand } from \"./logoutSelf.js\";\nexport { LogoutUserCommand } from \"./logoutUser.js\";\nexport { StartRegisterPasskeyCommand } from \"./startRegisterPasskey.js\";\nexport { FinishRegisterPasskeyCommand } from \"./finishRegisterPasskey.js\";\nexport { DescribeMyAuthCommand } from \"./describeMyAuth.js\";\nexport { ValidateAuthCommand } from \"./validateAuth.js\";\nexport { DescribeSelfCommand } from \"./describeSelf.js\";\nexport { DescribeUserCommand } from \"./describeUser.js\";\nexport { CreateUserCommand } from \"./createUser.js\";\nexport { ListUsersCommand } from \"./listUsers.js\";\nexport { UpdateSelfCommand } from \"./updateSelf.js\";\nexport { UpdateUserCommand } from \"./updateUser.js\";\nexport { DeleteUserCommand } from \"./deleteUser.js\";\nexport { SendVerificationCodeCommand } from \"./sendVerificationCode.js\";\nexport { CheckVerificationCodeCommand } from \"./checkVerificationCode.js\";\nexport { ListUserSpacesCommand } from \"./listUserSpaces.js\";\nexport { DescribeMyPasskeyRegistrationsCommand } from \"./describeMyPasskeyRegistrations.js\";\nexport { DeleteUserCredentialCommand } from \"./deleteUserCredential.js\";\nexport { CreatePolicyCommand } from \"./createPolicy.js\";\nexport { ListPoliciesCommand } from \"./listPolicies.js\";\nexport { UpdatePolicyCommand } from \"./updatePolicy.js\";\nexport { DeletePolicyCommand } from \"./deletePolicy.js\";\nexport { DescribePolicyCommand } from \"./describePolicy.js\";\nexport { ListSpacesCommand } from \"./listSpaces.js\";\nexport { ListRoomsInSpaceCommand } from \"./listRoomsInSpace.js\";\nexport { UpdateSpaceCommand } from \"./updateSpace.js\";\nexport { CreateSpaceCommand } from \"./createSpace.js\";\nexport { DescribeSpaceCommand } from \"./describeSpace.js\";\nexport { DeleteSpaceCommand } from \"./deleteSpace.js\";\nexport { CreateRoomInSpaceCommand } from \"./createRoomInSpace.js\";\nexport { CreateCategoryCommand } from \"./createCategory.js\";\nexport { DeleteCategoryCommand } from \"./deleteCategory.js\";\nexport { DescribeCategoryCommand } from \"./describeCategory.js\";\nexport { ListCategoriesCommand } from \"./listCategories.js\";\nexport { UpdateCategoryCommand } from \"./updateCategory.js\";\nexport { DescribeDepartmentCommand } from \"./describeDepartment.js\";\nexport { ListDepartmentsCommand } from \"./listDepartments.js\";\nexport { DeleteDepartmentCommand } from \"./deleteDepartment.js\";\nexport { CreateDepartmentCommand } from \"./createDepartment.js\";\nexport { UpdateDepartmentCommand } from \"./updateDepartment.js\";\nexport { ListRoomsCommand } from \"./listRooms.js\";\nexport { DescribeRoomCommand } from \"./describeRoom.js\";\nexport { CreateRoomCommand } from \"./createRoom.js\";\nexport { UpdateRoomCommand } from \"./updateRoom.js\";\nexport { DeleteRoomCommand } from \"./deleteRoom.js\";\nexport { CreateAlarmCommand } from \"./createAlarm.js\";\nexport { ListAlarmsCommand } from \"./listAlarms.js\";\nexport { UpdateAlarmCommand } from \"./updateAlarm.js\";\nexport { DeleteAlarmCommand } from \"./deleteAlarm.js\";\nexport { DescribeAlarmCommand } from \"./describeAlarm.js\";\nexport { DescribeAlarmConfigCommand } from \"./describeAlarmConfig.js\";\nexport { SetAlarmCommand } from \"./setAlarm.js\";\nexport { MoveAlarmCommand } from \"./moveAlarm.js\";\nexport { CreateCameraCommand } from \"./createCamera.js\";\nexport { ListCamerasCommand } from \"./listCameras.js\";\nexport { UpdateCameraCommand } from \"./updateCamera.js\";\nexport { DeleteCameraCommand } from \"./deleteCamera.js\";\nexport { ListCameraStreamPreviewsCommand } from \"./listCameraStreamPreviews.js\";\nexport { DescribeCameraCommand } from \"./describeCamera.js\";\nexport { SetCameraCommand } from \"./setCamera.js\";\nexport { MoveCameraCommand } from \"./moveCamera.js\";\nexport { DescribeCameraConfigCommand } from \"./describeCameraConfig.js\";\nexport { CreateCourtesyCommand } from \"./createCourtesy.js\";\nexport { ListCourtesyCommand } from \"./listCourtesy.js\";\nexport { UpdateCourtesyCommand } from \"./updateCourtesy.js\";\nexport { DeleteCourtesyCommand } from \"./deleteCourtesy.js\";\nexport { DescribeCourtesyCommand } from \"./describeCourtesy.js\";\nexport { SetCourtesyCommand } from \"./setCourtesy.js\";\nexport { MoveCourtesyCommand } from \"./moveCourtesy.js\";\nexport { CreateDimmerCommand } from \"./createDimmer.js\";\nexport { ListDimmersCommand } from \"./listDimmers.js\";\nexport { UpdateDimmerCommand } from \"./updateDimmer.js\";\nexport { DeleteDimmerCommand } from \"./deleteDimmer.js\";\nexport { DescribeDimmerCommand } from \"./describeDimmer.js\";\nexport { SetDimmerCommand } from \"./setDimmer.js\";\nexport { MoveDimmerCommand } from \"./moveDimmer.js\";\nexport { CreateLockCommand } from \"./createLock.js\";\nexport { ListLocksCommand } from \"./listLocks.js\";\nexport { UpdateLockCommand } from \"./updateLock.js\";\nexport { DeleteLockCommand } from \"./deleteLock.js\";\nexport { DescribeLockCommand } from \"./describeLock.js\";\nexport { SetLockCommand } from \"./setLock.js\";\nexport { MoveLockCommand } from \"./moveLock.js\";\nexport { CreateSwitchCommand } from \"./createSwitch.js\";\nexport { ListSwitchesCommand } from \"./listSwitches.js\";\nexport { UpdateSwitchCommand } from \"./updateSwitch.js\";\nexport { DeleteSwitchCommand } from \"./deleteSwitch.js\";\nexport { DescribeSwitchCommand } from \"./describeSwitch.js\";\nexport { SetSwitchCommand } from \"./setSwitch.js\";\nexport { MoveSwitchCommand } from \"./moveSwitch.js\";\nexport { CreateMediaSourceCommand } from \"./createMediaSource.js\";\nexport { ListMediaSourcesCommand } from \"./listMediaSources.js\";\nexport { UpdateMediaSourceCommand } from \"./updateMediaSource.js\";\nexport { DeleteMediaSourceCommand } from \"./deleteMediaSource.js\";\nexport { DescribeMediaSourceCommand } from \"./describeMediaSource.js\";\nexport { SetMediaSourceCommand } from \"./setMediaSource.js\";\nexport { MoveMediaSourceCommand } from \"./moveMediaSource.js\";\nexport { CreateThermostatCommand } from \"./createThermostat.js\";\nexport { ListThermostatsCommand } from \"./listThermostats.js\";\nexport { UpdateThermostatCommand } from \"./updateThermostat.js\";\nexport { DeleteThermostatCommand } from \"./deleteThermostat.js\";\nexport { DescribeThermostatCommand } from \"./describeThermostat.js\";\nexport { SetThermostatCommand } from \"./setThermostat.js\";\nexport { MoveThermostatCommand } from \"./moveThermostat.js\";\nexport { CreateWindowCoveringCommand } from \"./createWindowCovering.js\";\nexport { ListWindowCoveringsCommand } from \"./listWindowCoverings.js\";\nexport { UpdateWindowCoveringCommand } from \"./updateWindowCovering.js\";\nexport { DeleteWindowCoveringCommand } from \"./deleteWindowCovering.js\";\nexport { DescribeWindowCoveringCommand } from \"./describeWindowCovering.js\";\nexport { SetWindowCoveringCommand } from \"./setWindowCovering.js\";\nexport { MoveWindowCoveringCommand } from \"./moveWindowCovering.js\";\nexport { AutoCloseTicketsCommand } from \"./autoCloseTickets.js\";\nexport { DescribeTicketStatsCommand } from \"./describeTicketStats.js\";\nexport { CreateTicketCommand } from \"./createTicket.js\";\nexport { CreateTicketMessageCommand } from \"./createTicketMessage.js\";\nexport { DeleteTicketCommand } from \"./deleteTicket.js\";\nexport { ListTicketLocationsCommand } from \"./listTicketLocations.js\";\nexport { DescribeTicketFiltersCommand } from \"./describeTicketFilters.js\";\nexport { DescribeTicketCommand } from \"./describeTicket.js\";\nexport { ListTicketsCommand } from \"./listTickets.js\";\nexport { UpdateMessageReadStatusCommand } from \"./updateMessageReadStatus.js\";\nexport { UpdateTicketCommand } from \"./updateTicket.js\";\nexport { UpdateTicketStatusCommand } from \"./updateTicketStatus.js\";\nexport { LeaveTicketCommand } from \"./leaveTicket.js\";\nexport { ListScenesCommand } from \"./listScenes.js\";\nexport { SetSceneCommand } from \"./setScene.js\";\nexport { SetRoomSceneCommand } from \"./setRoomScene.js\";\nexport { CreateDiscoveredDeviceAssociationMapCommand } from \"./createDiscoveredDeviceAssociationMap.js\";\nexport { AutoAssociateDiscoveredDevicesCommand } from \"./autoAssociateDiscoveredDevices.js\";\nexport { CreateDiscoveredDeviceCommand } from \"./createDiscoveredDevice.js\";\nexport { ListDiscoveredDevicesCommand } from \"./listDiscoveredDevices.js\";\nexport { UpdateDiscoveredDeviceCommand } from \"./updateDiscoveredDevice.js\";\nexport { DeleteDiscoveredDeviceCommand } from \"./deleteDiscoveredDevice.js\";\nexport { DescribeDiscoveredDeviceCommand } from \"./describeDiscoveredDevice.js\";\nexport { UpsertDiscoveredDeviceCommand } from \"./upsertDiscoveredDevice.js\";\nexport { CreateDiscoveredDeviceAssociationCommand } from \"./createDiscoveredDeviceAssociation.js\";\nexport { ListIntegrationsCommand } from \"./listIntegrations.js\";\nexport { DescribeMyOrganizationCommand } from \"./describeMyOrganization.js\";\nexport { CreateOrganizationCommand } from \"./createOrganization.js\";\nexport { UpdateOrganizationCommand } from \"./updateOrganization.js\";\nexport { DescribeOrganizationCommand } from \"./describeOrganization.js\";\nexport { ListOrganizationsCommand } from \"./listOrganizations.js\";\nexport { ListPropertiesCommand } from \"./listProperties.js\";\nexport { ListMyPropertiesCommand } from \"./listMyProperties.js\";\nexport { CreatePropertyCommand } from \"./createProperty.js\";\nexport { UpdatePropertyCommand } from \"./updateProperty.js\";\nexport { DescribePropertyCommand } from \"./describeProperty.js\";\nexport { UpdatePropertySettingsCommand } from \"./updatePropertySettings.js\";\nexport { EmailUserAccountSetupCommand } from \"./emailUserAccountSetup.js\";\nexport { CreateImageUploadEndpointCommand } from \"./createImageUploadEndpoint.js\";\nexport { DeleteMediaFileCommand } from \"./deleteMediaFile.js\";\nexport { UploadImageCommand } from \"./uploadImage.js\";\nexport { CreateAnnouncementCommand } from \"./createAnnouncement.js\";\nexport { UpdateAnnouncementCommand } from \"./updateAnnouncement.js\";\nexport { DescribeAnnouncementCommand } from \"./describeAnnouncement.js\";\nexport { DeleteAnnouncementCommand } from \"./deleteAnnouncement.js\";\nexport { ListAnnouncementsCommand } from \"./listAnnouncements.js\";\nexport { DescribeTimeSheetStatsCommand } from \"./describeTimeSheetStats.js\";\nexport { ListMyTimeSheetsCommand } from \"./listMyTimeSheets.js\";\nexport { DescribeTimeSheetCommand } from \"./describeTimeSheet.js\";\nexport { ListTimeSheetsCommand } from \"./listTimeSheets.js\";\nexport { CreateTimeSheetCommand } from \"./createTimeSheet.js\";\nexport { DeleteTimeSheetCommand } from \"./deleteTimeSheet.js\";\nexport { UpdateTimeSheetCommand } from \"./updateTimeSheet.js\";\nexport { CreateTimeSheetTimeEntryCommand } from \"./createTimeSheetTimeEntry.js\";\nexport { DeleteTimeSheetTimeEntryCommand } from \"./deleteTimeSheetTimeEntry.js\";\nexport { UpdateTimeSheetTimeEntryCommand } from \"./updateTimeSheetTimeEntry.js\";\nexport { StartSOSCommand } from \"./startSOS.js\";\nexport { StopSOSCommand } from \"./stopSOS.js\";\nexport { DescribeSOSCommand } from \"./describeSOS.js\";\nexport { DescribeIssueCommand } from \"./describeIssue.js\";\nexport { ListIssuesCommand } from \"./listIssues.js\";\nexport { DeleteIssueCommand } from \"./deleteIssue.js\";\nexport { CreateIssueCommand } from \"./createIssue.js\";\nexport { UpdateIssueCommand } from \"./updateIssue.js\";\nexport { BulkUpdateIssueCommand } from \"./bulkUpdateIssue.js\";\nexport { DescribeVendorCommand } from \"./describeVendor.js\";\nexport { ListVendorsCommand } from \"./listVendors.js\";\nexport { DeleteVendorCommand } from \"./deleteVendor.js\";\nexport { CreateVendorCommand } from \"./createVendor.js\";\nexport { UpdateVendorCommand } from \"./updateVendor.js\";\nexport { CreateAutomationCommand } from \"./createAutomation.js\";\nexport { ListAutomationsCommand } from \"./listAutomations.js\";\nexport { DescribeAutomationCommand } from \"./describeAutomation.js\";\nexport { UpdateAutomationCommand } from \"./updateAutomation.js\";\nexport { DeleteAutomationCommand } from \"./deleteAutomation.js\";\nexport { CreateDefaultAutomationsCommand } from \"./createDefaultAutomations.js\";\nexport { RunAutomationCommand } from \"./runAutomation.js\";\nexport { SendNotificationCommand } from \"./sendNotification.js\";\nexport { SendSMSCommand } from \"./sendSMS.js\";\nexport { CreateSessionCommand } from \"./createSession.js\";\nexport { ListSessionsCommand } from \"./listSessions.js\";\nexport { DescribeSessionCommand } from \"./describeSession.js\";\nexport { UpdateSessionCommand } from \"./updateSession.js\";\nexport { DeleteSessionCommand } from \"./deleteSession.js\";\nexport { SetDevicesCommand } from \"./setDevices.js\";\nexport { CreateSystemCommand } from \"./createSystem.js\";\nexport { DeleteSystemCommand } from \"./deleteSystem.js\";\nexport { DescribeSystemCommand } from \"./describeSystem.js\";\nexport { ListSystemsCommand } from \"./listSystems.js\";\nexport { UpdateSystemCommand } from \"./updateSystem.js\";\nexport { CreateServerCommand } from \"./createServer.js\";\nexport { DeleteServerCommand } from \"./deleteServer.js\";\nexport { DescribeServerCommand } from \"./describeServer.js\";\nexport { ListServersCommand } from \"./listServers.js\";\nexport { UpdateServerCommand } from \"./updateServer.js\";\n"],"mappings":"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","names":[]}
|
|
@@ -138,6 +138,7 @@ export { DeleteDiscoveredDeviceCommand } from './deleteDiscoveredDevice.cjs';
|
|
|
138
138
|
export { DescribeDiscoveredDeviceCommand } from './describeDiscoveredDevice.cjs';
|
|
139
139
|
export { UpsertDiscoveredDeviceCommand } from './upsertDiscoveredDevice.cjs';
|
|
140
140
|
export { CreateDiscoveredDeviceAssociationCommand } from './createDiscoveredDeviceAssociation.cjs';
|
|
141
|
+
export { ListIntegrationsCommand } from './listIntegrations.cjs';
|
|
141
142
|
export { DescribeMyOrganizationCommand } from './describeMyOrganization.cjs';
|
|
142
143
|
export { CreateOrganizationCommand } from './createOrganization.cjs';
|
|
143
144
|
export { UpdateOrganizationCommand } from './updateOrganization.cjs';
|
|
@@ -189,11 +190,6 @@ export { UpdateAutomationCommand } from './updateAutomation.cjs';
|
|
|
189
190
|
export { DeleteAutomationCommand } from './deleteAutomation.cjs';
|
|
190
191
|
export { CreateDefaultAutomationsCommand } from './createDefaultAutomations.cjs';
|
|
191
192
|
export { RunAutomationCommand } from './runAutomation.cjs';
|
|
192
|
-
export { CreateNotificationCommand } from './createNotification.cjs';
|
|
193
|
-
export { DeleteNotificationCommand } from './deleteNotification.cjs';
|
|
194
|
-
export { DescribeNotificationCommand } from './describeNotification.cjs';
|
|
195
|
-
export { ListNotificationsCommand } from './listNotifications.cjs';
|
|
196
|
-
export { UpdateNotificationCommand } from './updateNotification.cjs';
|
|
197
193
|
export { SendNotificationCommand } from './sendNotification.cjs';
|
|
198
194
|
export { SendSMSCommand } from './sendSMS.cjs';
|
|
199
195
|
export { CreateSessionCommand } from './createSession.cjs';
|
|
@@ -16,14 +16,14 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
21
|
-
|
|
19
|
+
var listIntegrations_exports = {};
|
|
20
|
+
__export(listIntegrations_exports, {
|
|
21
|
+
ListIntegrationsCommand: () => ListIntegrationsCommand
|
|
22
22
|
});
|
|
23
|
-
module.exports = __toCommonJS(
|
|
24
|
-
class
|
|
23
|
+
module.exports = __toCommonJS(listIntegrations_exports);
|
|
24
|
+
class ListIntegrationsCommand {
|
|
25
25
|
static {
|
|
26
|
-
__name(this, "
|
|
26
|
+
__name(this, "ListIntegrationsCommand");
|
|
27
27
|
}
|
|
28
28
|
url;
|
|
29
29
|
data;
|
|
@@ -31,15 +31,15 @@ class ListNotificationsCommand {
|
|
|
31
31
|
headers;
|
|
32
32
|
config;
|
|
33
33
|
static params = [];
|
|
34
|
-
static url = "/
|
|
34
|
+
static url = "/integrations";
|
|
35
35
|
static method = "get";
|
|
36
36
|
constructor(commandConfig, options = {}) {
|
|
37
|
-
const pathParams =
|
|
37
|
+
const pathParams = ListIntegrationsCommand.params;
|
|
38
38
|
let { data, query, headers } = commandConfig ?? {};
|
|
39
39
|
if (typeof data === "undefined") data = null;
|
|
40
40
|
if (typeof query === "undefined") query = null;
|
|
41
41
|
if (typeof headers === "undefined") headers = null;
|
|
42
|
-
let url =
|
|
42
|
+
let url = ListIntegrationsCommand.url;
|
|
43
43
|
if (pathParams && data) {
|
|
44
44
|
for (const param of pathParams) {
|
|
45
45
|
const urlParam = ":" + param;
|
|
@@ -56,7 +56,7 @@ class ListNotificationsCommand {
|
|
|
56
56
|
this.query = query;
|
|
57
57
|
this.headers = headers;
|
|
58
58
|
this.config = {
|
|
59
|
-
method:
|
|
59
|
+
method: ListIntegrationsCommand.method,
|
|
60
60
|
url,
|
|
61
61
|
data,
|
|
62
62
|
params: query,
|
|
@@ -67,6 +67,6 @@ class ListNotificationsCommand {
|
|
|
67
67
|
}
|
|
68
68
|
// Annotate the CommonJS export names for ESM import in node:
|
|
69
69
|
0 && (module.exports = {
|
|
70
|
-
|
|
70
|
+
ListIntegrationsCommand
|
|
71
71
|
});
|
|
72
|
-
//# sourceMappingURL=
|
|
72
|
+
//# sourceMappingURL=listIntegrations.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../.generated/useCases/listIntegrations.ts"],"sourcesContent":["/* This file is automatically generated. Do not modify it manually. */\n\nexport interface ListIntegrationsCommandConfig {\n data?: Record<string, unknown> | null;\n headers?: Record<string, string> | null;\n query?: Record<string, unknown> | null;\n}\n\nexport interface ListIntegrationsCommandRequestConfig {\n method: \"get\";\n url: string;\n data: Record<string, unknown> | null;\n params: Record<string, unknown> | null;\n headers: Record<string, string> | null;\n [key: string]: unknown;\n}\n\n/**\n *\n */\nexport class ListIntegrationsCommand {\n url: string;\n data: Record<string, unknown> | null;\n query: Record<string, unknown> | null;\n headers: Record<string, string> | null;\n config: ListIntegrationsCommandRequestConfig;\n\n static params = [] as const;\n static url = \"/integrations\";\n static method = \"get\" as const;\n\n constructor(\n commandConfig: ListIntegrationsCommandConfig,\n options: Record<string, unknown> = {},\n ) {\n const pathParams = ListIntegrationsCommand.params;\n\n let { data, query, headers } = commandConfig ?? {};\n\n if (typeof data === \"undefined\") data = null;\n if (typeof query === \"undefined\") query = null;\n if (typeof headers === \"undefined\") headers = null;\n\n // Replace path parameters with values from data\n let url: string = ListIntegrationsCommand.url;\n\n if (pathParams && data) {\n for (const param of pathParams) {\n const urlParam = \":\" + param;\n url = url.replace(urlParam, (data as Record<string, string>)[param]);\n }\n }\n\n // Make sure all parameters have been replaced\n const missingParams = url.match(/:[a-zA-Z0-9]+/g);\n if (missingParams) {\n const missing = missingParams.map((param) => param.replace(\":\", \"\"));\n throw new Error(\"Missing parameters: \" + missing.join(\", \"));\n }\n\n this.url = url;\n this.data = data;\n this.query = query;\n this.headers = headers;\n\n this.config = {\n method: ListIntegrationsCommand.method,\n url: url,\n data: data,\n params: query,\n headers: headers,\n ...options,\n };\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAoBO,MAAM,wBAAwB;AAAA,EApBrC,OAoBqC;AAAA;AAAA;AAAA,EACnC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAEA,OAAO,SAAS,CAAC;AAAA,EACjB,OAAO,MAAM;AAAA,EACb,OAAO,SAAS;AAAA,EAEhB,YACE,eACA,UAAmC,CAAC,GACpC;AACA,UAAM,aAAa,wBAAwB;AAE3C,QAAI,EAAE,MAAM,OAAO,QAAQ,IAAI,iBAAiB,CAAC;AAEjD,QAAI,OAAO,SAAS,YAAa,QAAO;AACxC,QAAI,OAAO,UAAU,YAAa,SAAQ;AAC1C,QAAI,OAAO,YAAY,YAAa,WAAU;AAG9C,QAAI,MAAc,wBAAwB;AAE1C,QAAI,cAAc,MAAM;AACtB,iBAAW,SAAS,YAAY;AAC9B,cAAM,WAAW,MAAM;AACvB,cAAM,IAAI,QAAQ,UAAW,KAAgC,KAAK,CAAC;AAAA,MACrE;AAAA,IACF;AAGA,UAAM,gBAAgB,IAAI,MAAM,gBAAgB;AAChD,QAAI,eAAe;AACjB,YAAM,UAAU,cAAc,IAAI,CAAC,UAAU,MAAM,QAAQ,KAAK,EAAE,CAAC;AACnE,YAAM,IAAI,MAAM,yBAAyB,QAAQ,KAAK,IAAI,CAAC;AAAA,IAC7D;AAEA,SAAK,MAAM;AACX,SAAK,OAAO;AACZ,SAAK,QAAQ;AACb,SAAK,UAAU;AAEf,SAAK,SAAS;AAAA,MACZ,QAAQ,wBAAwB;AAAA,MAChC;AAAA,MACA;AAAA,MACA,QAAQ;AAAA,MACR;AAAA,MACA,GAAG;AAAA,IACL;AAAA,EACF;AACF;","names":[]}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
interface
|
|
1
|
+
interface ListIntegrationsCommandConfig {
|
|
2
2
|
data?: Record<string, unknown> | null;
|
|
3
3
|
headers?: Record<string, string> | null;
|
|
4
4
|
query?: Record<string, unknown> | null;
|
|
5
5
|
}
|
|
6
|
-
interface
|
|
6
|
+
interface ListIntegrationsCommandRequestConfig {
|
|
7
7
|
method: "get";
|
|
8
8
|
url: string;
|
|
9
9
|
data: Record<string, unknown> | null;
|
|
@@ -14,16 +14,16 @@ interface ListNotificationsCommandRequestConfig {
|
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
|
-
declare class
|
|
17
|
+
declare class ListIntegrationsCommand {
|
|
18
18
|
url: string;
|
|
19
19
|
data: Record<string, unknown> | null;
|
|
20
20
|
query: Record<string, unknown> | null;
|
|
21
21
|
headers: Record<string, string> | null;
|
|
22
|
-
config:
|
|
22
|
+
config: ListIntegrationsCommandRequestConfig;
|
|
23
23
|
static params: readonly [];
|
|
24
24
|
static url: string;
|
|
25
25
|
static method: "get";
|
|
26
|
-
constructor(commandConfig:
|
|
26
|
+
constructor(commandConfig: ListIntegrationsCommandConfig, options?: Record<string, unknown>);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
export {
|
|
29
|
+
export { ListIntegrationsCommand, type ListIntegrationsCommandConfig, type ListIntegrationsCommandRequestConfig };
|