@kohost/api-client 5.0.4 → 5.0.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 +5 -2
- package/dist/cjs/{index-BUtSE3od.d.cts → index-CjXs7rFc.d.cts} +4 -1
- package/dist/cjs/{index-DnIHEtGu.d.cts → index-DcaANQuo.d.cts} +7 -1
- package/dist/cjs/index.d.cts +8 -3
- package/dist/cjs/models/index.cjs +3 -0
- package/dist/cjs/models/index.cjs.map +1 -1
- package/dist/cjs/models/index.d.cts +3 -1
- package/dist/cjs/models/integration.cjs +55 -0
- package/dist/cjs/models/integration.cjs.map +1 -0
- package/dist/cjs/models/integration.d.cts +24 -0
- package/dist/cjs/schemas/alarm.cjs +6 -0
- package/dist/cjs/schemas/alarm.cjs.map +1 -1
- package/dist/cjs/schemas/alarm.d.cts +6 -0
- package/dist/cjs/schemas/definitions.cjs +1 -0
- package/dist/cjs/schemas/definitions.cjs.map +1 -1
- package/dist/cjs/schemas/definitions.d.cts +1 -1
- package/dist/cjs/schemas/index.cjs +3 -0
- package/dist/cjs/schemas/index.cjs.map +1 -1
- package/dist/cjs/schemas/index.d.cts +1 -0
- package/dist/cjs/schemas/integration.cjs +70 -0
- package/dist/cjs/schemas/integration.cjs.map +1 -0
- package/dist/cjs/schemas/integration.d.cts +60 -0
- package/dist/cjs/schemas/user.cjs +0 -1
- package/dist/cjs/schemas/user.cjs.map +1 -1
- package/dist/cjs/schemas/user.d.cts +1 -1
- package/dist/cjs/useCases/createIntegration.cjs +72 -0
- package/dist/cjs/useCases/createIntegration.cjs.map +1 -0
- package/dist/cjs/useCases/createIntegration.d.cts +29 -0
- package/dist/cjs/useCases/describeIntegration.cjs +72 -0
- package/dist/cjs/useCases/describeIntegration.cjs.map +1 -0
- package/dist/cjs/useCases/describeIntegration.d.cts +38 -0
- package/dist/cjs/useCases/index.cjs +9 -0
- package/dist/cjs/useCases/index.cjs.map +1 -1
- package/dist/cjs/useCases/index.d.cts +3 -0
- package/dist/cjs/useCases/updateIntegration.cjs +72 -0
- package/dist/cjs/useCases/updateIntegration.cjs.map +1 -0
- package/dist/cjs/useCases/updateIntegration.d.cts +38 -0
- package/dist/cjs/validate.cjs +5 -0
- package/dist/cjs/validate.cjs.map +1 -1
- package/dist/cjs/validate.d.cts +21 -1
- package/dist/esm/httpClient.d.ts +5 -2
- package/dist/esm/{index-Cfk0f-lt.d.ts → index-BLHzohDV.d.ts} +4 -1
- package/dist/esm/{index-q0RAMvBh.d.ts → index-CwkLEwUB.d.ts} +7 -1
- package/dist/esm/index.d.ts +8 -3
- package/dist/esm/models/index.d.ts +3 -1
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/index.js.map +1 -1
- package/dist/esm/models/integration.d.ts +24 -0
- package/dist/esm/models/integration.js +35 -0
- package/dist/esm/models/integration.js.map +1 -0
- package/dist/esm/schemas/alarm.d.ts +6 -0
- package/dist/esm/schemas/alarm.js +6 -0
- package/dist/esm/schemas/alarm.js.map +1 -1
- package/dist/esm/schemas/definitions.d.ts +1 -1
- package/dist/esm/schemas/definitions.js +1 -0
- package/dist/esm/schemas/definitions.js.map +1 -1
- package/dist/esm/schemas/index.d.ts +1 -0
- package/dist/esm/schemas/index.js +2 -0
- package/dist/esm/schemas/index.js.map +1 -1
- package/dist/esm/schemas/integration.d.ts +60 -0
- package/dist/esm/schemas/integration.js +47 -0
- package/dist/esm/schemas/integration.js.map +1 -0
- package/dist/esm/schemas/user.d.ts +1 -1
- package/dist/esm/schemas/user.js +0 -1
- package/dist/esm/schemas/user.js.map +1 -1
- package/dist/esm/useCases/createIntegration.d.ts +29 -0
- package/dist/esm/useCases/createIntegration.js +50 -0
- package/dist/esm/useCases/createIntegration.js.map +1 -0
- package/dist/esm/useCases/describeIntegration.d.ts +38 -0
- package/dist/esm/useCases/describeIntegration.js +50 -0
- package/dist/esm/useCases/describeIntegration.js.map +1 -0
- package/dist/esm/useCases/index.d.ts +3 -0
- package/dist/esm/useCases/index.js +6 -0
- package/dist/esm/useCases/index.js.map +1 -1
- package/dist/esm/useCases/updateIntegration.d.ts +38 -0
- package/dist/esm/useCases/updateIntegration.js +50 -0
- package/dist/esm/useCases/updateIntegration.js.map +1 -0
- package/dist/esm/validate.d.ts +21 -1
- package/dist/esm/validate.js +4 -0
- package/dist/esm/validate.js.map +1 -1
- package/package.json +1 -1
|
@@ -72,6 +72,9 @@ import { DescribeDiscoveredDeviceCommand } from './useCases/describeDiscoveredDe
|
|
|
72
72
|
import { UpsertDiscoveredDeviceCommand } from './useCases/upsertDiscoveredDevice.cjs';
|
|
73
73
|
import { CreateDiscoveredDeviceAssociationCommand } from './useCases/createDiscoveredDeviceAssociation.cjs';
|
|
74
74
|
import { ListIntegrationsCommand } from './useCases/listIntegrations.cjs';
|
|
75
|
+
import { DescribeIntegrationCommand } from './useCases/describeIntegration.cjs';
|
|
76
|
+
import { CreateIntegrationCommand } from './useCases/createIntegration.cjs';
|
|
77
|
+
import { UpdateIntegrationCommand } from './useCases/updateIntegration.cjs';
|
|
75
78
|
import { DescribeMyOrganizationCommand } from './useCases/describeMyOrganization.cjs';
|
|
76
79
|
import { CreateOrganizationCommand } from './useCases/createOrganization.cjs';
|
|
77
80
|
import { UpdateOrganizationCommand } from './useCases/updateOrganization.cjs';
|
|
@@ -211,12 +214,12 @@ declare class KohostHTTPClient {
|
|
|
211
214
|
*
|
|
212
215
|
* @param {Command} command
|
|
213
216
|
*/
|
|
214
|
-
send(command: typeof CreatePwaHandoffTokenCommand | typeof LogoutUserCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof SelectOrganizationCommand | typeof ListMyOrganizationsCommand | 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 UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateDeviceCommand | typeof CreateDeviceCredentialCommand | typeof ListDevicesCommand | typeof ListDeviceCredentialsCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeDeviceCommand | typeof UpdateDeviceCommand | typeof UpdateDeviceCredentialCommand | typeof SetDeviceCommand | typeof DeleteDeviceCommand | typeof DeleteDeviceCredentialCommand | typeof MoveDeviceCommand | typeof DescribeDeviceConfigCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | 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 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 DeleteOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListPropertyCredentialsCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof DeletePropertyCommand | 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 ListSessionsCommand | typeof DescribeSessionCommand | typeof DeleteSessionCommand | typeof SetDevicesCommand | typeof CreateSystemCommand | typeof DeleteSystemCommand | typeof DescribeSystemCommand | typeof ListSystemsCommand | typeof UpdateSystemCommand | typeof CreateServerCommand | typeof DeleteServerCommand | typeof DescribeServerCommand | typeof ListServersCommand | typeof UpdateServerCommand): Promise<any>;
|
|
217
|
+
send(command: typeof CreatePwaHandoffTokenCommand | typeof LogoutUserCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof SelectOrganizationCommand | typeof ListMyOrganizationsCommand | 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 UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateDeviceCommand | typeof CreateDeviceCredentialCommand | typeof ListDevicesCommand | typeof ListDeviceCredentialsCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeDeviceCommand | typeof UpdateDeviceCommand | typeof UpdateDeviceCredentialCommand | typeof SetDeviceCommand | typeof DeleteDeviceCommand | typeof DeleteDeviceCredentialCommand | typeof MoveDeviceCommand | typeof DescribeDeviceConfigCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | 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 CreateDiscoveredDeviceAssociationMapCommand | typeof AutoAssociateDiscoveredDevicesCommand | typeof CreateDiscoveredDeviceCommand | typeof ListDiscoveredDevicesCommand | typeof UpdateDiscoveredDeviceCommand | typeof DeleteDiscoveredDeviceCommand | typeof DescribeDiscoveredDeviceCommand | typeof UpsertDiscoveredDeviceCommand | typeof CreateDiscoveredDeviceAssociationCommand | typeof ListIntegrationsCommand | typeof DescribeIntegrationCommand | typeof CreateIntegrationCommand | typeof UpdateIntegrationCommand | typeof DescribeMyOrganizationCommand | typeof CreateOrganizationCommand | typeof UpdateOrganizationCommand | typeof DeleteOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListPropertyCredentialsCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof DeletePropertyCommand | 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 ListSessionsCommand | typeof DescribeSessionCommand | typeof DeleteSessionCommand | typeof SetDevicesCommand | typeof CreateSystemCommand | typeof DeleteSystemCommand | typeof DescribeSystemCommand | typeof ListSystemsCommand | typeof UpdateSystemCommand | typeof CreateServerCommand | typeof DeleteServerCommand | typeof DescribeServerCommand | typeof ListServersCommand | typeof UpdateServerCommand): Promise<any>;
|
|
215
218
|
/**
|
|
216
219
|
* @param {Command} config
|
|
217
220
|
* @returns {Request}
|
|
218
221
|
*/
|
|
219
|
-
createRequest(config: typeof CreatePwaHandoffTokenCommand | typeof LogoutUserCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof SelectOrganizationCommand | typeof ListMyOrganizationsCommand | 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 UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateDeviceCommand | typeof CreateDeviceCredentialCommand | typeof ListDevicesCommand | typeof ListDeviceCredentialsCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeDeviceCommand | typeof UpdateDeviceCommand | typeof UpdateDeviceCredentialCommand | typeof SetDeviceCommand | typeof DeleteDeviceCommand | typeof DeleteDeviceCredentialCommand | typeof MoveDeviceCommand | typeof DescribeDeviceConfigCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | 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 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 DeleteOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListPropertyCredentialsCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof DeletePropertyCommand | 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 ListSessionsCommand | typeof DescribeSessionCommand | 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;
|
|
222
|
+
createRequest(config: typeof CreatePwaHandoffTokenCommand | typeof LogoutUserCommand | typeof DescribeMyAuthCommand | typeof ValidateAuthCommand | typeof SelectOrganizationCommand | typeof ListMyOrganizationsCommand | 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 UpdateSpaceCommand | typeof CreateSpaceCommand | typeof DescribeSpaceCommand | typeof DeleteSpaceCommand | typeof CreateDeviceCommand | typeof CreateDeviceCredentialCommand | typeof ListDevicesCommand | typeof ListDeviceCredentialsCommand | typeof ListCameraStreamPreviewsCommand | typeof DescribeDeviceCommand | typeof UpdateDeviceCommand | typeof UpdateDeviceCredentialCommand | typeof SetDeviceCommand | typeof DeleteDeviceCommand | typeof DeleteDeviceCredentialCommand | typeof MoveDeviceCommand | typeof DescribeDeviceConfigCommand | typeof CreateCategoryCommand | typeof DeleteCategoryCommand | typeof DescribeCategoryCommand | typeof ListCategoriesCommand | typeof UpdateCategoryCommand | typeof DescribeDepartmentCommand | typeof ListDepartmentsCommand | typeof DeleteDepartmentCommand | typeof CreateDepartmentCommand | typeof UpdateDepartmentCommand | 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 CreateDiscoveredDeviceAssociationMapCommand | typeof AutoAssociateDiscoveredDevicesCommand | typeof CreateDiscoveredDeviceCommand | typeof ListDiscoveredDevicesCommand | typeof UpdateDiscoveredDeviceCommand | typeof DeleteDiscoveredDeviceCommand | typeof DescribeDiscoveredDeviceCommand | typeof UpsertDiscoveredDeviceCommand | typeof CreateDiscoveredDeviceAssociationCommand | typeof ListIntegrationsCommand | typeof DescribeIntegrationCommand | typeof CreateIntegrationCommand | typeof UpdateIntegrationCommand | typeof DescribeMyOrganizationCommand | typeof CreateOrganizationCommand | typeof UpdateOrganizationCommand | typeof DeleteOrganizationCommand | typeof DescribeOrganizationCommand | typeof ListOrganizationsCommand | typeof ListPropertiesCommand | typeof ListPropertyCredentialsCommand | typeof ListMyPropertiesCommand | typeof CreatePropertyCommand | typeof DeletePropertyCommand | 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 ListSessionsCommand | typeof DescribeSessionCommand | 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;
|
|
220
223
|
#private;
|
|
221
224
|
}
|
|
222
225
|
|
|
@@ -16,6 +16,7 @@ import { EnergyReportShard, EnergyReportShardData } from './models/energyReportS
|
|
|
16
16
|
import { Gateway, GatewayData } from './models/gateway.cjs';
|
|
17
17
|
import { Group, GroupData } from './models/group.cjs';
|
|
18
18
|
import { Identification, IdentificationData } from './models/identification.cjs';
|
|
19
|
+
import { Integration, IntegrationData } from './models/integration.cjs';
|
|
19
20
|
import { Issue, IssueData } from './models/issue.cjs';
|
|
20
21
|
import { Lock, LockData } from './models/lock.cjs';
|
|
21
22
|
import { Log, LogData } from './models/log.cjs';
|
|
@@ -82,6 +83,8 @@ declare const index_Group: typeof Group;
|
|
|
82
83
|
declare const index_GroupData: typeof GroupData;
|
|
83
84
|
declare const index_Identification: typeof Identification;
|
|
84
85
|
declare const index_IdentificationData: typeof IdentificationData;
|
|
86
|
+
declare const index_Integration: typeof Integration;
|
|
87
|
+
declare const index_IntegrationData: typeof IntegrationData;
|
|
85
88
|
declare const index_Issue: typeof Issue;
|
|
86
89
|
declare const index_IssueData: typeof IssueData;
|
|
87
90
|
declare const index_Lock: typeof Lock;
|
|
@@ -143,7 +146,7 @@ declare const index_VendorData: typeof VendorData;
|
|
|
143
146
|
declare const index_WindowCovering: typeof WindowCovering;
|
|
144
147
|
declare const index_WindowCoveringData: typeof WindowCoveringData;
|
|
145
148
|
declare namespace index {
|
|
146
|
-
export { index_Alarm as Alarm, index_AlarmData as AlarmData, index_Announcement as Announcement, index_AnnouncementData as AnnouncementData, index_Automation as Automation, index_AutomationData as AutomationData, index_Camera as Camera, index_CameraData as CameraData, index_Category as Category, index_CategoryData as CategoryData, index_Courtesy as Courtesy, index_CourtesyData as CourtesyData, index_Credential as Credential, index_CredentialData as CredentialData, index_Department as Department, index_DepartmentData as DepartmentData, index_DeviceRouter as DeviceRouter, index_DeviceRouterData as DeviceRouterData, index_Dimmer as Dimmer, index_DimmerData as DimmerData, index_DiscoveredDevice as DiscoveredDevice, index_DiscoveredDeviceData as DiscoveredDeviceData, index_EmailMessage as EmailMessage, index_EmailMessageData as EmailMessageData, index_EnergyReport as EnergyReport, index_EnergyReportData as EnergyReportData, index_EnergyReportShard as EnergyReportShard, index_EnergyReportShardData as EnergyReportShardData, index_Entity as Entity, index_Gateway as Gateway, index_GatewayData as GatewayData, index_Group as Group, index_GroupData as GroupData, index_Identification as Identification, index_IdentificationData as IdentificationData, index_Issue as Issue, index_IssueData as IssueData, index_Lock as Lock, index_LockData as LockData, index_Log as Log, index_LogData as LogData, index_MediaFile as MediaFile, index_MediaFileData as MediaFileData, index_MediaSource as MediaSource, index_MediaSourceData as MediaSourceData, index_MotionSensor as MotionSensor, index_MotionSensorData as MotionSensorData, index_Notification as Notification, index_NotificationData as NotificationData, index_Order as Order, index_OrderData as OrderData, index_Organization as Organization, index_OrganizationData as OrganizationData, index_Payment as Payment, index_PaymentData as PaymentData, index_Policy as Policy, index_PolicyData as PolicyData, index_Product as Product, index_ProductData as ProductData, index_Property as Property, index_PropertyData as PropertyData, index_Reservation as Reservation, index_ReservationData as ReservationData, index_Room as Room, index_RoomData as RoomData, index_Scene as Scene, index_SceneData as SceneData, index_Server as Server, index_ServerData as ServerData, index_Session as Session, index_SessionData as SessionData, index_ShortLink as ShortLink, index_ShortLinkData as ShortLinkData, index_SmsMessage as SmsMessage, index_SmsMessageData as SmsMessageData, index_Space as Space, index_SpaceData as SpaceData, index_Switch as Switch, index_SwitchData as SwitchData, index_System as System, index_SystemData as SystemData, index_SystemUser as SystemUser, index_SystemUserData as SystemUserData, index_Thermostat as Thermostat, index_ThermostatData as ThermostatData, index_Ticket as Ticket, index_TicketData as TicketData, index_TimeSheet as TimeSheet, index_TimeSheetData as TimeSheetData, index_User as User, index_UserData as UserData, index_Vendor as Vendor, index_VendorData as VendorData, index_WindowCovering as WindowCovering, index_WindowCoveringData as WindowCoveringData };
|
|
149
|
+
export { index_Alarm as Alarm, index_AlarmData as AlarmData, index_Announcement as Announcement, index_AnnouncementData as AnnouncementData, index_Automation as Automation, index_AutomationData as AutomationData, index_Camera as Camera, index_CameraData as CameraData, index_Category as Category, index_CategoryData as CategoryData, index_Courtesy as Courtesy, index_CourtesyData as CourtesyData, index_Credential as Credential, index_CredentialData as CredentialData, index_Department as Department, index_DepartmentData as DepartmentData, index_DeviceRouter as DeviceRouter, index_DeviceRouterData as DeviceRouterData, index_Dimmer as Dimmer, index_DimmerData as DimmerData, index_DiscoveredDevice as DiscoveredDevice, index_DiscoveredDeviceData as DiscoveredDeviceData, index_EmailMessage as EmailMessage, index_EmailMessageData as EmailMessageData, index_EnergyReport as EnergyReport, index_EnergyReportData as EnergyReportData, index_EnergyReportShard as EnergyReportShard, index_EnergyReportShardData as EnergyReportShardData, index_Entity as Entity, index_Gateway as Gateway, index_GatewayData as GatewayData, index_Group as Group, index_GroupData as GroupData, index_Identification as Identification, index_IdentificationData as IdentificationData, index_Integration as Integration, index_IntegrationData as IntegrationData, index_Issue as Issue, index_IssueData as IssueData, index_Lock as Lock, index_LockData as LockData, index_Log as Log, index_LogData as LogData, index_MediaFile as MediaFile, index_MediaFileData as MediaFileData, index_MediaSource as MediaSource, index_MediaSourceData as MediaSourceData, index_MotionSensor as MotionSensor, index_MotionSensorData as MotionSensorData, index_Notification as Notification, index_NotificationData as NotificationData, index_Order as Order, index_OrderData as OrderData, index_Organization as Organization, index_OrganizationData as OrganizationData, index_Payment as Payment, index_PaymentData as PaymentData, index_Policy as Policy, index_PolicyData as PolicyData, index_Product as Product, index_ProductData as ProductData, index_Property as Property, index_PropertyData as PropertyData, index_Reservation as Reservation, index_ReservationData as ReservationData, index_Room as Room, index_RoomData as RoomData, index_Scene as Scene, index_SceneData as SceneData, index_Server as Server, index_ServerData as ServerData, index_Session as Session, index_SessionData as SessionData, index_ShortLink as ShortLink, index_ShortLinkData as ShortLinkData, index_SmsMessage as SmsMessage, index_SmsMessageData as SmsMessageData, index_Space as Space, index_SpaceData as SpaceData, index_Switch as Switch, index_SwitchData as SwitchData, index_System as System, index_SystemData as SystemData, index_SystemUser as SystemUser, index_SystemUserData as SystemUserData, index_Thermostat as Thermostat, index_ThermostatData as ThermostatData, index_Ticket as Ticket, index_TicketData as TicketData, index_TimeSheet as TimeSheet, index_TimeSheetData as TimeSheetData, index_User as User, index_UserData as UserData, index_Vendor as Vendor, index_VendorData as VendorData, index_WindowCovering as WindowCovering, index_WindowCoveringData as WindowCoveringData };
|
|
147
150
|
}
|
|
148
151
|
|
|
149
152
|
export { index as i };
|
|
@@ -72,6 +72,9 @@ import { DescribeDiscoveredDeviceCommand } from './useCases/describeDiscoveredDe
|
|
|
72
72
|
import { UpsertDiscoveredDeviceCommand } from './useCases/upsertDiscoveredDevice.cjs';
|
|
73
73
|
import { CreateDiscoveredDeviceAssociationCommand } from './useCases/createDiscoveredDeviceAssociation.cjs';
|
|
74
74
|
import { ListIntegrationsCommand } from './useCases/listIntegrations.cjs';
|
|
75
|
+
import { DescribeIntegrationCommand } from './useCases/describeIntegration.cjs';
|
|
76
|
+
import { CreateIntegrationCommand } from './useCases/createIntegration.cjs';
|
|
77
|
+
import { UpdateIntegrationCommand } from './useCases/updateIntegration.cjs';
|
|
75
78
|
import { DescribeMyOrganizationCommand } from './useCases/describeMyOrganization.cjs';
|
|
76
79
|
import { CreateOrganizationCommand } from './useCases/createOrganization.cjs';
|
|
77
80
|
import { UpdateOrganizationCommand } from './useCases/updateOrganization.cjs';
|
|
@@ -158,6 +161,7 @@ declare const index_CreateDiscoveredDeviceAssociationCommand: typeof CreateDisco
|
|
|
158
161
|
declare const index_CreateDiscoveredDeviceAssociationMapCommand: typeof CreateDiscoveredDeviceAssociationMapCommand;
|
|
159
162
|
declare const index_CreateDiscoveredDeviceCommand: typeof CreateDiscoveredDeviceCommand;
|
|
160
163
|
declare const index_CreateImageUploadEndpointCommand: typeof CreateImageUploadEndpointCommand;
|
|
164
|
+
declare const index_CreateIntegrationCommand: typeof CreateIntegrationCommand;
|
|
161
165
|
declare const index_CreateIssueCommand: typeof CreateIssueCommand;
|
|
162
166
|
declare const index_CreateOrganizationCommand: typeof CreateOrganizationCommand;
|
|
163
167
|
declare const index_CreatePolicyCommand: typeof CreatePolicyCommand;
|
|
@@ -201,6 +205,7 @@ declare const index_DescribeDepartmentCommand: typeof DescribeDepartmentCommand;
|
|
|
201
205
|
declare const index_DescribeDeviceCommand: typeof DescribeDeviceCommand;
|
|
202
206
|
declare const index_DescribeDeviceConfigCommand: typeof DescribeDeviceConfigCommand;
|
|
203
207
|
declare const index_DescribeDiscoveredDeviceCommand: typeof DescribeDiscoveredDeviceCommand;
|
|
208
|
+
declare const index_DescribeIntegrationCommand: typeof DescribeIntegrationCommand;
|
|
204
209
|
declare const index_DescribeIssueCommand: typeof DescribeIssueCommand;
|
|
205
210
|
declare const index_DescribeMyAuthCommand: typeof DescribeMyAuthCommand;
|
|
206
211
|
declare const index_DescribeMyOrganizationCommand: typeof DescribeMyOrganizationCommand;
|
|
@@ -268,6 +273,7 @@ declare const index_UpdateDepartmentCommand: typeof UpdateDepartmentCommand;
|
|
|
268
273
|
declare const index_UpdateDeviceCommand: typeof UpdateDeviceCommand;
|
|
269
274
|
declare const index_UpdateDeviceCredentialCommand: typeof UpdateDeviceCredentialCommand;
|
|
270
275
|
declare const index_UpdateDiscoveredDeviceCommand: typeof UpdateDiscoveredDeviceCommand;
|
|
276
|
+
declare const index_UpdateIntegrationCommand: typeof UpdateIntegrationCommand;
|
|
271
277
|
declare const index_UpdateIssueCommand: typeof UpdateIssueCommand;
|
|
272
278
|
declare const index_UpdateMessageReadStatusCommand: typeof UpdateMessageReadStatusCommand;
|
|
273
279
|
declare const index_UpdateOrganizationCommand: typeof UpdateOrganizationCommand;
|
|
@@ -288,7 +294,7 @@ declare const index_UploadImageCommand: typeof UploadImageCommand;
|
|
|
288
294
|
declare const index_UpsertDiscoveredDeviceCommand: typeof UpsertDiscoveredDeviceCommand;
|
|
289
295
|
declare const index_ValidateAuthCommand: typeof ValidateAuthCommand;
|
|
290
296
|
declare namespace index {
|
|
291
|
-
export { index_AutoAssociateDiscoveredDevicesCommand as AutoAssociateDiscoveredDevicesCommand, index_AutoCloseTicketsCommand as AutoCloseTicketsCommand, index_BulkUpdateIssueCommand as BulkUpdateIssueCommand, index_CheckVerificationCodeCommand as CheckVerificationCodeCommand, index_CreateAnnouncementCommand as CreateAnnouncementCommand, index_CreateAutomationCommand as CreateAutomationCommand, index_CreateCategoryCommand as CreateCategoryCommand, index_CreateDefaultAutomationsCommand as CreateDefaultAutomationsCommand, index_CreateDepartmentCommand as CreateDepartmentCommand, index_CreateDeviceCommand as CreateDeviceCommand, index_CreateDeviceCredentialCommand as CreateDeviceCredentialCommand, index_CreateDiscoveredDeviceAssociationCommand as CreateDiscoveredDeviceAssociationCommand, index_CreateDiscoveredDeviceAssociationMapCommand as CreateDiscoveredDeviceAssociationMapCommand, index_CreateDiscoveredDeviceCommand as CreateDiscoveredDeviceCommand, index_CreateImageUploadEndpointCommand as CreateImageUploadEndpointCommand, index_CreateIssueCommand as CreateIssueCommand, index_CreateOrganizationCommand as CreateOrganizationCommand, index_CreatePolicyCommand as CreatePolicyCommand, index_CreatePropertyCommand as CreatePropertyCommand, index_CreatePwaHandoffTokenCommand as CreatePwaHandoffTokenCommand, index_CreateServerCommand as CreateServerCommand, index_CreateSpaceCommand as CreateSpaceCommand, index_CreateSystemCommand as CreateSystemCommand, 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_DeleteAnnouncementCommand as DeleteAnnouncementCommand, index_DeleteAutomationCommand as DeleteAutomationCommand, index_DeleteCategoryCommand as DeleteCategoryCommand, index_DeleteDepartmentCommand as DeleteDepartmentCommand, index_DeleteDeviceCommand as DeleteDeviceCommand, index_DeleteDeviceCredentialCommand as DeleteDeviceCredentialCommand, index_DeleteDiscoveredDeviceCommand as DeleteDiscoveredDeviceCommand, index_DeleteIssueCommand as DeleteIssueCommand, index_DeleteMediaFileCommand as DeleteMediaFileCommand, index_DeleteOrganizationCommand as DeleteOrganizationCommand, index_DeletePolicyCommand as DeletePolicyCommand, index_DeletePropertyCommand as DeletePropertyCommand, index_DeleteServerCommand as DeleteServerCommand, index_DeleteSessionCommand as DeleteSessionCommand, index_DeleteSpaceCommand as DeleteSpaceCommand, index_DeleteSystemCommand as DeleteSystemCommand, 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_DescribeAnnouncementCommand as DescribeAnnouncementCommand, index_DescribeAutomationCommand as DescribeAutomationCommand, index_DescribeCategoryCommand as DescribeCategoryCommand, index_DescribeDepartmentCommand as DescribeDepartmentCommand, index_DescribeDeviceCommand as DescribeDeviceCommand, index_DescribeDeviceConfigCommand as DescribeDeviceConfigCommand, index_DescribeDiscoveredDeviceCommand as DescribeDiscoveredDeviceCommand, index_DescribeIssueCommand as DescribeIssueCommand, 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_DescribeSOSCommand as DescribeSOSCommand, index_DescribeSelfCommand as DescribeSelfCommand, index_DescribeServerCommand as DescribeServerCommand, index_DescribeSessionCommand as DescribeSessionCommand, index_DescribeSpaceCommand as DescribeSpaceCommand, index_DescribeSystemCommand as DescribeSystemCommand, 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_EmailUserAccountSetupCommand as EmailUserAccountSetupCommand, index_LeaveTicketCommand as LeaveTicketCommand, index_ListAnnouncementsCommand as ListAnnouncementsCommand, index_ListAutomationsCommand as ListAutomationsCommand, index_ListCameraStreamPreviewsCommand as ListCameraStreamPreviewsCommand, index_ListCategoriesCommand as ListCategoriesCommand, index_ListDepartmentsCommand as ListDepartmentsCommand, index_ListDeviceCredentialsCommand as ListDeviceCredentialsCommand, index_ListDevicesCommand as ListDevicesCommand, index_ListDiscoveredDevicesCommand as ListDiscoveredDevicesCommand, index_ListIntegrationsCommand as ListIntegrationsCommand, index_ListIssuesCommand as ListIssuesCommand, index_ListMyOrganizationsCommand as ListMyOrganizationsCommand, index_ListMyPropertiesCommand as ListMyPropertiesCommand, index_ListMyTimeSheetsCommand as ListMyTimeSheetsCommand, index_ListOrganizationsCommand as ListOrganizationsCommand, index_ListPoliciesCommand as ListPoliciesCommand, index_ListPropertiesCommand as ListPropertiesCommand, index_ListPropertyCredentialsCommand as ListPropertyCredentialsCommand, index_ListServersCommand as ListServersCommand, index_ListSessionsCommand as ListSessionsCommand, index_ListSpacesCommand as ListSpacesCommand, index_ListSystemsCommand as ListSystemsCommand, 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_LogoutUserCommand as LogoutUserCommand, index_MoveDeviceCommand as MoveDeviceCommand, index_RunAutomationCommand as RunAutomationCommand, index_SelectOrganizationCommand as SelectOrganizationCommand, index_SendNotificationCommand as SendNotificationCommand, index_SendSMSCommand as SendSMSCommand, index_SendVerificationCodeCommand as SendVerificationCodeCommand, index_SetDeviceCommand as SetDeviceCommand, index_SetDevicesCommand as SetDevicesCommand, index_StartSOSCommand as StartSOSCommand, index_StopSOSCommand as StopSOSCommand, index_UpdateAnnouncementCommand as UpdateAnnouncementCommand, index_UpdateAutomationCommand as UpdateAutomationCommand, index_UpdateCategoryCommand as UpdateCategoryCommand, index_UpdateDepartmentCommand as UpdateDepartmentCommand, index_UpdateDeviceCommand as UpdateDeviceCommand, index_UpdateDeviceCredentialCommand as UpdateDeviceCredentialCommand, index_UpdateDiscoveredDeviceCommand as UpdateDiscoveredDeviceCommand, index_UpdateIssueCommand as UpdateIssueCommand, index_UpdateMessageReadStatusCommand as UpdateMessageReadStatusCommand, index_UpdateOrganizationCommand as UpdateOrganizationCommand, index_UpdatePolicyCommand as UpdatePolicyCommand, index_UpdatePropertyCommand as UpdatePropertyCommand, index_UpdatePropertySettingsCommand as UpdatePropertySettingsCommand, index_UpdateSelfCommand as UpdateSelfCommand, index_UpdateServerCommand as UpdateServerCommand, index_UpdateSpaceCommand as UpdateSpaceCommand, index_UpdateSystemCommand as UpdateSystemCommand, 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_UploadImageCommand as UploadImageCommand, index_UpsertDiscoveredDeviceCommand as UpsertDiscoveredDeviceCommand, index_ValidateAuthCommand as ValidateAuthCommand };
|
|
297
|
+
export { index_AutoAssociateDiscoveredDevicesCommand as AutoAssociateDiscoveredDevicesCommand, index_AutoCloseTicketsCommand as AutoCloseTicketsCommand, index_BulkUpdateIssueCommand as BulkUpdateIssueCommand, index_CheckVerificationCodeCommand as CheckVerificationCodeCommand, index_CreateAnnouncementCommand as CreateAnnouncementCommand, index_CreateAutomationCommand as CreateAutomationCommand, index_CreateCategoryCommand as CreateCategoryCommand, index_CreateDefaultAutomationsCommand as CreateDefaultAutomationsCommand, index_CreateDepartmentCommand as CreateDepartmentCommand, index_CreateDeviceCommand as CreateDeviceCommand, index_CreateDeviceCredentialCommand as CreateDeviceCredentialCommand, index_CreateDiscoveredDeviceAssociationCommand as CreateDiscoveredDeviceAssociationCommand, index_CreateDiscoveredDeviceAssociationMapCommand as CreateDiscoveredDeviceAssociationMapCommand, index_CreateDiscoveredDeviceCommand as CreateDiscoveredDeviceCommand, index_CreateImageUploadEndpointCommand as CreateImageUploadEndpointCommand, index_CreateIntegrationCommand as CreateIntegrationCommand, index_CreateIssueCommand as CreateIssueCommand, index_CreateOrganizationCommand as CreateOrganizationCommand, index_CreatePolicyCommand as CreatePolicyCommand, index_CreatePropertyCommand as CreatePropertyCommand, index_CreatePwaHandoffTokenCommand as CreatePwaHandoffTokenCommand, index_CreateServerCommand as CreateServerCommand, index_CreateSpaceCommand as CreateSpaceCommand, index_CreateSystemCommand as CreateSystemCommand, 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_DeleteAnnouncementCommand as DeleteAnnouncementCommand, index_DeleteAutomationCommand as DeleteAutomationCommand, index_DeleteCategoryCommand as DeleteCategoryCommand, index_DeleteDepartmentCommand as DeleteDepartmentCommand, index_DeleteDeviceCommand as DeleteDeviceCommand, index_DeleteDeviceCredentialCommand as DeleteDeviceCredentialCommand, index_DeleteDiscoveredDeviceCommand as DeleteDiscoveredDeviceCommand, index_DeleteIssueCommand as DeleteIssueCommand, index_DeleteMediaFileCommand as DeleteMediaFileCommand, index_DeleteOrganizationCommand as DeleteOrganizationCommand, index_DeletePolicyCommand as DeletePolicyCommand, index_DeletePropertyCommand as DeletePropertyCommand, index_DeleteServerCommand as DeleteServerCommand, index_DeleteSessionCommand as DeleteSessionCommand, index_DeleteSpaceCommand as DeleteSpaceCommand, index_DeleteSystemCommand as DeleteSystemCommand, 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_DescribeAnnouncementCommand as DescribeAnnouncementCommand, index_DescribeAutomationCommand as DescribeAutomationCommand, index_DescribeCategoryCommand as DescribeCategoryCommand, index_DescribeDepartmentCommand as DescribeDepartmentCommand, index_DescribeDeviceCommand as DescribeDeviceCommand, index_DescribeDeviceConfigCommand as DescribeDeviceConfigCommand, index_DescribeDiscoveredDeviceCommand as DescribeDiscoveredDeviceCommand, index_DescribeIntegrationCommand as DescribeIntegrationCommand, index_DescribeIssueCommand as DescribeIssueCommand, 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_DescribeSOSCommand as DescribeSOSCommand, index_DescribeSelfCommand as DescribeSelfCommand, index_DescribeServerCommand as DescribeServerCommand, index_DescribeSessionCommand as DescribeSessionCommand, index_DescribeSpaceCommand as DescribeSpaceCommand, index_DescribeSystemCommand as DescribeSystemCommand, 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_EmailUserAccountSetupCommand as EmailUserAccountSetupCommand, index_LeaveTicketCommand as LeaveTicketCommand, index_ListAnnouncementsCommand as ListAnnouncementsCommand, index_ListAutomationsCommand as ListAutomationsCommand, index_ListCameraStreamPreviewsCommand as ListCameraStreamPreviewsCommand, index_ListCategoriesCommand as ListCategoriesCommand, index_ListDepartmentsCommand as ListDepartmentsCommand, index_ListDeviceCredentialsCommand as ListDeviceCredentialsCommand, index_ListDevicesCommand as ListDevicesCommand, index_ListDiscoveredDevicesCommand as ListDiscoveredDevicesCommand, index_ListIntegrationsCommand as ListIntegrationsCommand, index_ListIssuesCommand as ListIssuesCommand, index_ListMyOrganizationsCommand as ListMyOrganizationsCommand, index_ListMyPropertiesCommand as ListMyPropertiesCommand, index_ListMyTimeSheetsCommand as ListMyTimeSheetsCommand, index_ListOrganizationsCommand as ListOrganizationsCommand, index_ListPoliciesCommand as ListPoliciesCommand, index_ListPropertiesCommand as ListPropertiesCommand, index_ListPropertyCredentialsCommand as ListPropertyCredentialsCommand, index_ListServersCommand as ListServersCommand, index_ListSessionsCommand as ListSessionsCommand, index_ListSpacesCommand as ListSpacesCommand, index_ListSystemsCommand as ListSystemsCommand, 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_LogoutUserCommand as LogoutUserCommand, index_MoveDeviceCommand as MoveDeviceCommand, index_RunAutomationCommand as RunAutomationCommand, index_SelectOrganizationCommand as SelectOrganizationCommand, index_SendNotificationCommand as SendNotificationCommand, index_SendSMSCommand as SendSMSCommand, index_SendVerificationCodeCommand as SendVerificationCodeCommand, index_SetDeviceCommand as SetDeviceCommand, index_SetDevicesCommand as SetDevicesCommand, index_StartSOSCommand as StartSOSCommand, index_StopSOSCommand as StopSOSCommand, index_UpdateAnnouncementCommand as UpdateAnnouncementCommand, index_UpdateAutomationCommand as UpdateAutomationCommand, index_UpdateCategoryCommand as UpdateCategoryCommand, index_UpdateDepartmentCommand as UpdateDepartmentCommand, index_UpdateDeviceCommand as UpdateDeviceCommand, index_UpdateDeviceCredentialCommand as UpdateDeviceCredentialCommand, index_UpdateDiscoveredDeviceCommand as UpdateDiscoveredDeviceCommand, index_UpdateIntegrationCommand as UpdateIntegrationCommand, index_UpdateIssueCommand as UpdateIssueCommand, index_UpdateMessageReadStatusCommand as UpdateMessageReadStatusCommand, index_UpdateOrganizationCommand as UpdateOrganizationCommand, index_UpdatePolicyCommand as UpdatePolicyCommand, index_UpdatePropertyCommand as UpdatePropertyCommand, index_UpdatePropertySettingsCommand as UpdatePropertySettingsCommand, index_UpdateSelfCommand as UpdateSelfCommand, index_UpdateServerCommand as UpdateServerCommand, index_UpdateSpaceCommand as UpdateSpaceCommand, index_UpdateSystemCommand as UpdateSystemCommand, 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_UploadImageCommand as UploadImageCommand, index_UpsertDiscoveredDeviceCommand as UpsertDiscoveredDeviceCommand, index_ValidateAuthCommand as ValidateAuthCommand };
|
|
292
298
|
}
|
|
293
299
|
|
|
294
300
|
export { index as i };
|
package/dist/cjs/index.d.cts
CHANGED
|
@@ -3,8 +3,8 @@ export { KohostHTTPClient as Client } from './httpClient.cjs';
|
|
|
3
3
|
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
|
-
export { i as Models } from './index-
|
|
7
|
-
export { i as UseCases } from './index-
|
|
6
|
+
export { i as Models } from './index-CjXs7rFc.cjs';
|
|
7
|
+
export { i as UseCases } from './index-DcaANQuo.cjs';
|
|
8
8
|
import 'node:buffer';
|
|
9
9
|
import './useCases/createPwaHandoffToken.cjs';
|
|
10
10
|
import './useCases/logoutUser.cjs';
|
|
@@ -80,6 +80,9 @@ import './useCases/describeDiscoveredDevice.cjs';
|
|
|
80
80
|
import './useCases/upsertDiscoveredDevice.cjs';
|
|
81
81
|
import './useCases/createDiscoveredDeviceAssociation.cjs';
|
|
82
82
|
import './useCases/listIntegrations.cjs';
|
|
83
|
+
import './useCases/describeIntegration.cjs';
|
|
84
|
+
import './useCases/createIntegration.cjs';
|
|
85
|
+
import './useCases/updateIntegration.cjs';
|
|
83
86
|
import './useCases/describeMyOrganization.cjs';
|
|
84
87
|
import './useCases/createOrganization.cjs';
|
|
85
88
|
import './useCases/updateOrganization.cjs';
|
|
@@ -246,10 +249,12 @@ import './models/group.cjs';
|
|
|
246
249
|
import './schemas/group.cjs';
|
|
247
250
|
import './models/identification.cjs';
|
|
248
251
|
import './schemas/identification.cjs';
|
|
252
|
+
import './models/integration.cjs';
|
|
253
|
+
import './schemas/integration.cjs';
|
|
254
|
+
import './schemas/mediaFile.cjs';
|
|
249
255
|
import './models/issue.cjs';
|
|
250
256
|
import './schemas/issue.cjs';
|
|
251
257
|
import './schemas/ticket.cjs';
|
|
252
|
-
import './schemas/mediaFile.cjs';
|
|
253
258
|
import './models/lock.cjs';
|
|
254
259
|
import './schemas/lock.cjs';
|
|
255
260
|
import './models/log.cjs';
|
|
@@ -35,6 +35,7 @@ __export(models_exports, {
|
|
|
35
35
|
Gateway: () => import_gateway.Gateway,
|
|
36
36
|
Group: () => import_group.Group,
|
|
37
37
|
Identification: () => import_identification.Identification,
|
|
38
|
+
Integration: () => import_integration.Integration,
|
|
38
39
|
Issue: () => import_issue.Issue,
|
|
39
40
|
Lock: () => import_lock.Lock,
|
|
40
41
|
Log: () => import_log.Log,
|
|
@@ -85,6 +86,7 @@ var import_energyReportShard = require("./energyReportShard.cjs");
|
|
|
85
86
|
var import_gateway = require("./gateway.cjs");
|
|
86
87
|
var import_group = require("./group.cjs");
|
|
87
88
|
var import_identification = require("./identification.cjs");
|
|
89
|
+
var import_integration = require("./integration.cjs");
|
|
88
90
|
var import_issue = require("./issue.cjs");
|
|
89
91
|
var import_lock = require("./lock.cjs");
|
|
90
92
|
var import_log = require("./log.cjs");
|
|
@@ -135,6 +137,7 @@ var import_windowCovering = require("./windowCovering.cjs");
|
|
|
135
137
|
Gateway,
|
|
136
138
|
Group,
|
|
137
139
|
Identification,
|
|
140
|
+
Integration,
|
|
138
141
|
Issue,
|
|
139
142
|
Lock,
|
|
140
143
|
Log,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../.generated/models/index.ts"],"sourcesContent":["/* This file is automatically generated. Do not modify it manually. */\n\nexport { Entity } from \"./entity.js\";\n\nexport { Alarm, type AlarmData } from \"./alarm.js\";\nexport { Announcement, type AnnouncementData } from \"./announcement.js\";\nexport { Automation, type AutomationData } from \"./automation.js\";\nexport { Camera, type CameraData } from \"./camera.js\";\nexport { Category, type CategoryData } from \"./category.js\";\nexport { Courtesy, type CourtesyData } from \"./courtesy.js\";\nexport { Credential, type CredentialData } from \"./credential.js\";\nexport { Department, type DepartmentData } from \"./department.js\";\nexport { DeviceRouter, type DeviceRouterData } from \"./deviceRouter.js\";\nexport { Dimmer, type DimmerData } from \"./dimmer.js\";\nexport {\n DiscoveredDevice,\n type DiscoveredDeviceData,\n} from \"./discoveredDevice.js\";\nexport { EmailMessage, type EmailMessageData } from \"./emailMessage.js\";\nexport { EnergyReport, type EnergyReportData } from \"./energyReport.js\";\nexport {\n EnergyReportShard,\n type EnergyReportShardData,\n} from \"./energyReportShard.js\";\nexport { Gateway, type GatewayData } from \"./gateway.js\";\nexport { Group, type GroupData } from \"./group.js\";\nexport { Identification, type IdentificationData } from \"./identification.js\";\nexport { Issue, type IssueData } from \"./issue.js\";\nexport { Lock, type LockData } from \"./lock.js\";\nexport { Log, type LogData } from \"./log.js\";\nexport { MediaFile, type MediaFileData } from \"./mediaFile.js\";\nexport { MediaSource, type MediaSourceData } from \"./mediaSource.js\";\nexport { MotionSensor, type MotionSensorData } from \"./motionSensor.js\";\nexport { Notification, type NotificationData } from \"./notification.js\";\nexport { Order, type OrderData } from \"./order.js\";\nexport { Organization, type OrganizationData } from \"./organization.js\";\nexport { Payment, type PaymentData } from \"./payment.js\";\nexport { Policy, type PolicyData } from \"./policy.js\";\nexport { Product, type ProductData } from \"./product.js\";\nexport { Property, type PropertyData } from \"./property.js\";\nexport { Reservation, type ReservationData } from \"./reservation.js\";\nexport { Room, type RoomData } from \"./room.js\";\nexport { Scene, type SceneData } from \"./scene.js\";\nexport { Server, type ServerData } from \"./server.js\";\nexport { Session, type SessionData } from \"./session.js\";\nexport { ShortLink, type ShortLinkData } from \"./shortLink.js\";\nexport { SmsMessage, type SmsMessageData } from \"./smsMessage.js\";\nexport { Space, type SpaceData } from \"./space.js\";\nexport { Switch, type SwitchData } from \"./switch.js\";\nexport { System, type SystemData } from \"./system.js\";\nexport { SystemUser, type SystemUserData } from \"./systemUser.js\";\nexport { Thermostat, type ThermostatData } from \"./thermostat.js\";\nexport { Ticket, type TicketData } from \"./ticket.js\";\nexport { TimeSheet, type TimeSheetData } from \"./timeSheet.js\";\nexport { User, type UserData } from \"./user.js\";\nexport { Vendor, type VendorData } from \"./vendor.js\";\nexport { WindowCovering, type WindowCoveringData } from \"./windowCovering.js\";\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,oBAAuB;AAEvB,mBAAsC;AACtC,0BAAoD;AACpD,wBAAgD;AAChD,oBAAwC;AACxC,sBAA4C;AAC5C,sBAA4C;AAC5C,wBAAgD;AAChD,wBAAgD;AAChD,0BAAoD;AACpD,oBAAwC;AACxC,8BAGO;AACP,0BAAoD;AACpD,0BAAoD;AACpD,+BAGO;AACP,qBAA0C;AAC1C,mBAAsC;AACtC,4BAAwD;AACxD,mBAAsC;AACtC,kBAAoC;AACpC,iBAAkC;AAClC,uBAA8C;AAC9C,yBAAkD;AAClD,0BAAoD;AACpD,0BAAoD;AACpD,mBAAsC;AACtC,0BAAoD;AACpD,qBAA0C;AAC1C,oBAAwC;AACxC,qBAA0C;AAC1C,sBAA4C;AAC5C,yBAAkD;AAClD,kBAAoC;AACpC,mBAAsC;AACtC,oBAAwC;AACxC,qBAA0C;AAC1C,uBAA8C;AAC9C,wBAAgD;AAChD,mBAAsC;AACtC,oBAAwC;AACxC,oBAAwC;AACxC,wBAAgD;AAChD,wBAAgD;AAChD,oBAAwC;AACxC,uBAA8C;AAC9C,kBAAoC;AACpC,oBAAwC;AACxC,4BAAwD;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../.generated/models/index.ts"],"sourcesContent":["/* This file is automatically generated. Do not modify it manually. */\n\nexport { Entity } from \"./entity.js\";\n\nexport { Alarm, type AlarmData } from \"./alarm.js\";\nexport { Announcement, type AnnouncementData } from \"./announcement.js\";\nexport { Automation, type AutomationData } from \"./automation.js\";\nexport { Camera, type CameraData } from \"./camera.js\";\nexport { Category, type CategoryData } from \"./category.js\";\nexport { Courtesy, type CourtesyData } from \"./courtesy.js\";\nexport { Credential, type CredentialData } from \"./credential.js\";\nexport { Department, type DepartmentData } from \"./department.js\";\nexport { DeviceRouter, type DeviceRouterData } from \"./deviceRouter.js\";\nexport { Dimmer, type DimmerData } from \"./dimmer.js\";\nexport {\n DiscoveredDevice,\n type DiscoveredDeviceData,\n} from \"./discoveredDevice.js\";\nexport { EmailMessage, type EmailMessageData } from \"./emailMessage.js\";\nexport { EnergyReport, type EnergyReportData } from \"./energyReport.js\";\nexport {\n EnergyReportShard,\n type EnergyReportShardData,\n} from \"./energyReportShard.js\";\nexport { Gateway, type GatewayData } from \"./gateway.js\";\nexport { Group, type GroupData } from \"./group.js\";\nexport { Identification, type IdentificationData } from \"./identification.js\";\nexport { Integration, type IntegrationData } from \"./integration.js\";\nexport { Issue, type IssueData } from \"./issue.js\";\nexport { Lock, type LockData } from \"./lock.js\";\nexport { Log, type LogData } from \"./log.js\";\nexport { MediaFile, type MediaFileData } from \"./mediaFile.js\";\nexport { MediaSource, type MediaSourceData } from \"./mediaSource.js\";\nexport { MotionSensor, type MotionSensorData } from \"./motionSensor.js\";\nexport { Notification, type NotificationData } from \"./notification.js\";\nexport { Order, type OrderData } from \"./order.js\";\nexport { Organization, type OrganizationData } from \"./organization.js\";\nexport { Payment, type PaymentData } from \"./payment.js\";\nexport { Policy, type PolicyData } from \"./policy.js\";\nexport { Product, type ProductData } from \"./product.js\";\nexport { Property, type PropertyData } from \"./property.js\";\nexport { Reservation, type ReservationData } from \"./reservation.js\";\nexport { Room, type RoomData } from \"./room.js\";\nexport { Scene, type SceneData } from \"./scene.js\";\nexport { Server, type ServerData } from \"./server.js\";\nexport { Session, type SessionData } from \"./session.js\";\nexport { ShortLink, type ShortLinkData } from \"./shortLink.js\";\nexport { SmsMessage, type SmsMessageData } from \"./smsMessage.js\";\nexport { Space, type SpaceData } from \"./space.js\";\nexport { Switch, type SwitchData } from \"./switch.js\";\nexport { System, type SystemData } from \"./system.js\";\nexport { SystemUser, type SystemUserData } from \"./systemUser.js\";\nexport { Thermostat, type ThermostatData } from \"./thermostat.js\";\nexport { Ticket, type TicketData } from \"./ticket.js\";\nexport { TimeSheet, type TimeSheetData } from \"./timeSheet.js\";\nexport { User, type UserData } from \"./user.js\";\nexport { Vendor, type VendorData } from \"./vendor.js\";\nexport { WindowCovering, type WindowCoveringData } from \"./windowCovering.js\";\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,oBAAuB;AAEvB,mBAAsC;AACtC,0BAAoD;AACpD,wBAAgD;AAChD,oBAAwC;AACxC,sBAA4C;AAC5C,sBAA4C;AAC5C,wBAAgD;AAChD,wBAAgD;AAChD,0BAAoD;AACpD,oBAAwC;AACxC,8BAGO;AACP,0BAAoD;AACpD,0BAAoD;AACpD,+BAGO;AACP,qBAA0C;AAC1C,mBAAsC;AACtC,4BAAwD;AACxD,yBAAkD;AAClD,mBAAsC;AACtC,kBAAoC;AACpC,iBAAkC;AAClC,uBAA8C;AAC9C,yBAAkD;AAClD,0BAAoD;AACpD,0BAAoD;AACpD,mBAAsC;AACtC,0BAAoD;AACpD,qBAA0C;AAC1C,oBAAwC;AACxC,qBAA0C;AAC1C,sBAA4C;AAC5C,yBAAkD;AAClD,kBAAoC;AACpC,mBAAsC;AACtC,oBAAwC;AACxC,qBAA0C;AAC1C,uBAA8C;AAC9C,wBAAgD;AAChD,mBAAsC;AACtC,oBAAwC;AACxC,oBAAwC;AACxC,wBAAgD;AAChD,wBAAgD;AAChD,oBAAwC;AACxC,uBAA8C;AAC9C,kBAAoC;AACpC,oBAAwC;AACxC,4BAAwD;","names":[]}
|
|
@@ -16,6 +16,7 @@ export { EnergyReportShard, EnergyReportShardData } from './energyReportShard.cj
|
|
|
16
16
|
export { Gateway, GatewayData } from './gateway.cjs';
|
|
17
17
|
export { Group, GroupData } from './group.cjs';
|
|
18
18
|
export { Identification, IdentificationData } from './identification.cjs';
|
|
19
|
+
export { Integration, IntegrationData } from './integration.cjs';
|
|
19
20
|
export { Issue, IssueData } from './issue.cjs';
|
|
20
21
|
export { Lock, LockData } from './lock.cjs';
|
|
21
22
|
export { Log, LogData } from './log.cjs';
|
|
@@ -67,9 +68,10 @@ import '../schemas/energyReportShard.cjs';
|
|
|
67
68
|
import '../schemas/gateway.cjs';
|
|
68
69
|
import '../schemas/group.cjs';
|
|
69
70
|
import '../schemas/identification.cjs';
|
|
71
|
+
import '../schemas/integration.cjs';
|
|
72
|
+
import '../schemas/mediaFile.cjs';
|
|
70
73
|
import '../schemas/issue.cjs';
|
|
71
74
|
import '../schemas/ticket.cjs';
|
|
72
|
-
import '../schemas/mediaFile.cjs';
|
|
73
75
|
import '../schemas/lock.cjs';
|
|
74
76
|
import '../schemas/log.cjs';
|
|
75
77
|
import '../schemas/mediaSource.cjs';
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var integration_exports = {};
|
|
20
|
+
__export(integration_exports, {
|
|
21
|
+
Integration: () => Integration
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(integration_exports);
|
|
24
|
+
var import_entity = require("./entity.cjs");
|
|
25
|
+
var import_validate = require("../validate.cjs");
|
|
26
|
+
var import_integration = require("../schemas/integration.cjs");
|
|
27
|
+
class Integration extends import_entity.Entity {
|
|
28
|
+
static {
|
|
29
|
+
__name(this, "Integration");
|
|
30
|
+
}
|
|
31
|
+
constructor(data) {
|
|
32
|
+
super(data);
|
|
33
|
+
this.id = data.id;
|
|
34
|
+
this.type = data.type;
|
|
35
|
+
this.systemName = data.systemName;
|
|
36
|
+
this.systemPhoto = data.systemPhoto;
|
|
37
|
+
if (data.itunesAppId !== void 0) this.itunesAppId = data.itunesAppId;
|
|
38
|
+
if (data.googleAppId !== void 0) this.googleAppId = data.googleAppId;
|
|
39
|
+
this.createdAt = data.createdAt;
|
|
40
|
+
this.updatedAt = data.updatedAt;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
Object.defineProperty(Integration.prototype, "schema", {
|
|
44
|
+
value: import_integration.integrationSchema
|
|
45
|
+
});
|
|
46
|
+
Object.defineProperty(Integration.prototype, "validator", {
|
|
47
|
+
get: /* @__PURE__ */ __name(function() {
|
|
48
|
+
return import_validate.validateIntegration;
|
|
49
|
+
}, "get")
|
|
50
|
+
});
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
Integration
|
|
54
|
+
});
|
|
55
|
+
//# sourceMappingURL=integration.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../.generated/models/integration.ts"],"sourcesContent":["/* This file is automatically generated. Do not modify it manually. */\n\nimport { Entity } from \"./entity.js\";\nimport { validateIntegration as validate } from \"../validate.js\";\nimport {\n integrationSchema,\n type IntegrationSchema,\n} from \"../schemas/integration.js\";\n\n/**\n * Data type for Integration constructor - exported for backwards compatibility\n */\nexport type IntegrationData = IntegrationSchema;\n\n/**\n * An entry in the integrations catalog used to display and pre-fill metadata for a driver.\n */\nexport interface Integration extends IntegrationSchema {}\nexport class Integration extends Entity {\n declare schema: typeof integrationSchema;\n declare validator: typeof validate;\n\n constructor(data: IntegrationSchema) {\n super(data);\n this.id = data.id;\n this.type = data.type;\n this.systemName = data.systemName;\n this.systemPhoto = data.systemPhoto;\n if (data.itunesAppId !== undefined) this.itunesAppId = data.itunesAppId;\n if (data.googleAppId !== undefined) this.googleAppId = data.googleAppId;\n this.createdAt = data.createdAt;\n this.updatedAt = data.updatedAt;\n }\n}\n\nObject.defineProperty(Integration.prototype, \"schema\", {\n value: integrationSchema,\n});\n\nObject.defineProperty(Integration.prototype, \"validator\", {\n get: function () {\n return validate;\n },\n});\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,oBAAuB;AACvB,sBAAgD;AAChD,yBAGO;AAWA,MAAM,oBAAoB,qBAAO;AAAA,EAlBxC,OAkBwC;AAAA;AAAA;AAAA,EAItC,YAAY,MAAyB;AACnC,UAAM,IAAI;AACV,SAAK,KAAK,KAAK;AACf,SAAK,OAAO,KAAK;AACjB,SAAK,aAAa,KAAK;AACvB,SAAK,cAAc,KAAK;AACxB,QAAI,KAAK,gBAAgB,OAAW,MAAK,cAAc,KAAK;AAC5D,QAAI,KAAK,gBAAgB,OAAW,MAAK,cAAc,KAAK;AAC5D,SAAK,YAAY,KAAK;AACtB,SAAK,YAAY,KAAK;AAAA,EACxB;AACF;AAEA,OAAO,eAAe,YAAY,WAAW,UAAU;AAAA,EACrD,OAAO;AACT,CAAC;AAED,OAAO,eAAe,YAAY,WAAW,aAAa;AAAA,EACxD,KAAK,kCAAY;AACf,WAAO,gBAAAA;AAAA,EACT,GAFK;AAGP,CAAC;","names":["validate"]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Entity } from './entity.cjs';
|
|
2
|
+
import { validateIntegration } from '../validate.cjs';
|
|
3
|
+
import { IntegrationSchema, integrationSchema } from '../schemas/integration.cjs';
|
|
4
|
+
import 'ajv';
|
|
5
|
+
import '../schemas/definitions.cjs';
|
|
6
|
+
import 'json-schema-to-ts';
|
|
7
|
+
import '../schemas/mediaFile.cjs';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Data type for Integration constructor - exported for backwards compatibility
|
|
11
|
+
*/
|
|
12
|
+
type IntegrationData = IntegrationSchema;
|
|
13
|
+
/**
|
|
14
|
+
* An entry in the integrations catalog used to display and pre-fill metadata for a driver.
|
|
15
|
+
*/
|
|
16
|
+
interface Integration extends IntegrationSchema {
|
|
17
|
+
}
|
|
18
|
+
declare class Integration extends Entity {
|
|
19
|
+
schema: typeof integrationSchema;
|
|
20
|
+
validator: typeof validateIntegration;
|
|
21
|
+
constructor(data: IntegrationSchema);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { Integration, type IntegrationData };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../.generated/schemas/alarm.ts"],"sourcesContent":["import defs, { ISODateString } from \"./definitions\";\nimport type { FromSchema } from \"json-schema-to-ts\";\n\nexport const alarmSchema = {\n $schema: \"http://json-schema.org/draft-07/schema\",\n $id: \"alarm.json\",\n title: \"Alarm\",\n description: \"Any smart alarm system\",\n type: \"object\",\n definitions: {\n securityMode: {\n type: [\"string\", \"null\"],\n enum: [\n \"arming\",\n \"disarming\",\n \"armed\",\n \"disarmed\",\n \"intrusion\",\n \"fire\",\n \"medical\",\n null,\n ],\n },\n },\n required: [\"id\", \"type\", \"areas\", \"zones\", \"driver\"],\n additionalProperties: false,\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n description: \"Name of the alarm\",\n },\n offline: {\n type: \"boolean\",\n },\n type: {\n type: \"string\",\n enum: [\"alarm\"],\n default: \"alarm\",\n },\n systemId: {\n $ref: \"definitions.json#/definitions/systemId\",\n },\n driver: {\n $ref: \"definitions.json#/definitions/driver\",\n },\n alerts: {\n $ref: \"definitions.json#/definitions/alerts\",\n },\n areas: {\n type: \"array\",\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n },\n supportedSecurityModes: {\n type: \"array\",\n items: { $ref: \"#/definitions/securityMode\" },\n },\n securityMode: {\n $ref: \"#/definitions/securityMode\",\n },\n },\n additionalProperties: false,\n },\n },\n zones: {\n type: \"array\",\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n },\n secure: {\n type: [\"boolean\", \"null\"],\n },\n bypassed: {\n type: [\"boolean\", \"null\"],\n },\n offline: {\n type: \"boolean\",\n },\n batteryLevel: {\n $ref: \"definitions.json#/definitions/batteryLevel\",\n },\n },\n additionalProperties: false,\n },\n },\n credentials: {\n type: \"array\",\n readOnly: true,\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n description: \"Name of the credential\",\n },\n }\n }\n },\n supportedNotifications: {\n $ref: \"definitions.json#/definitions/supportedNotifications\",\n },\n notification: {\n $ref: \"definitions.json#/definitions/notification\",\n },\n chime: {\n type: \"boolean\",\n description: \"Chime enabled\",\n },\n watts: {\n $ref: \"definitions.json#/definitions/watts\",\n },\n icon: {\n type: \"string\",\n },\n manufacturer: {\n type: \"string\",\n },\n modelNumber: {\n type: \"string\",\n },\n serialNumber: {\n type: \"string\",\n },\n firmwareVersion: {\n type: \"string\",\n },\n address: {\n $ref: \"definitions.json#/definitions/address\",\n },\n batteryLevel: {\n $ref: \"definitions.json#/definitions/batteryLevel\",\n },\n powerLevel: {\n $ref: \"definitions.json#/definitions/batteryLevel\",\n },\n monitoringTrouble: {\n type: \"boolean\",\n },\n bellTrouble: {\n type: \"boolean\",\n },\n },\n} as const;\n\nexport type AlarmSchema = FromSchema<\n typeof alarmSchema,\n {\n references: [typeof defs];\n deserialize: [\n {\n pattern: {\n format: \"date-time\";\n };\n output: Date | ISODateString;\n },\n ];\n }\n>;\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../.generated/schemas/alarm.ts"],"sourcesContent":["import defs, { ISODateString } from \"./definitions\";\nimport type { FromSchema } from \"json-schema-to-ts\";\n\nexport const alarmSchema = {\n $schema: \"http://json-schema.org/draft-07/schema\",\n $id: \"alarm.json\",\n title: \"Alarm\",\n description: \"Any smart alarm system\",\n type: \"object\",\n definitions: {\n securityMode: {\n type: [\"string\", \"null\"],\n enum: [\n \"arming\",\n \"disarming\",\n \"armed\",\n \"disarmed\",\n \"intrusion\",\n \"fire\",\n \"medical\",\n null,\n ],\n },\n },\n required: [\"id\", \"type\", \"areas\", \"zones\", \"driver\"],\n additionalProperties: false,\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n description: \"Name of the alarm\",\n },\n offline: {\n type: \"boolean\",\n },\n type: {\n type: \"string\",\n enum: [\"alarm\"],\n default: \"alarm\",\n },\n systemId: {\n $ref: \"definitions.json#/definitions/systemId\",\n },\n driver: {\n $ref: \"definitions.json#/definitions/driver\",\n },\n alerts: {\n $ref: \"definitions.json#/definitions/alerts\",\n },\n areas: {\n type: \"array\",\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n },\n supportedSecurityModes: {\n type: \"array\",\n items: { $ref: \"#/definitions/securityMode\" },\n },\n securityMode: {\n $ref: \"#/definitions/securityMode\",\n },\n },\n additionalProperties: false,\n },\n },\n zones: {\n type: \"array\",\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n },\n areas: {\n type: \"array\",\n items: {\n type: \"string\",\n }\n },\n secure: {\n type: [\"boolean\", \"null\"],\n },\n bypassed: {\n type: [\"boolean\", \"null\"],\n },\n offline: {\n type: \"boolean\",\n },\n batteryLevel: {\n $ref: \"definitions.json#/definitions/batteryLevel\",\n },\n },\n additionalProperties: false,\n },\n },\n credentials: {\n type: \"array\",\n readOnly: true,\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n description: \"Name of the credential\",\n },\n }\n }\n },\n supportedNotifications: {\n $ref: \"definitions.json#/definitions/supportedNotifications\",\n },\n notification: {\n $ref: \"definitions.json#/definitions/notification\",\n },\n chime: {\n type: \"boolean\",\n description: \"Chime enabled\",\n },\n watts: {\n $ref: \"definitions.json#/definitions/watts\",\n },\n icon: {\n type: \"string\",\n },\n manufacturer: {\n type: \"string\",\n },\n modelNumber: {\n type: \"string\",\n },\n serialNumber: {\n type: \"string\",\n },\n firmwareVersion: {\n type: \"string\",\n },\n address: {\n $ref: \"definitions.json#/definitions/address\",\n },\n batteryLevel: {\n $ref: \"definitions.json#/definitions/batteryLevel\",\n },\n powerLevel: {\n $ref: \"definitions.json#/definitions/batteryLevel\",\n },\n monitoringTrouble: {\n type: \"boolean\",\n },\n bellTrouble: {\n type: \"boolean\",\n },\n },\n} as const;\n\nexport type AlarmSchema = FromSchema<\n typeof alarmSchema,\n {\n references: [typeof defs];\n deserialize: [\n {\n pattern: {\n format: \"date-time\";\n };\n output: Date | ISODateString;\n },\n ];\n }\n>;\n"],"mappings":"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","names":[]}
|
|
@@ -75,6 +75,12 @@ declare const alarmSchema: {
|
|
|
75
75
|
readonly name: {
|
|
76
76
|
readonly type: "string";
|
|
77
77
|
};
|
|
78
|
+
readonly areas: {
|
|
79
|
+
readonly type: "array";
|
|
80
|
+
readonly items: {
|
|
81
|
+
readonly type: "string";
|
|
82
|
+
};
|
|
83
|
+
};
|
|
78
84
|
readonly secure: {
|
|
79
85
|
readonly type: readonly ["boolean", "null"];
|
|
80
86
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../.generated/schemas/definitions.ts"],"sourcesContent":["const defs = {\n $schema: \"http://json-schema.org/draft-07/schema\",\n $id: \"definitions.json\",\n title: \"Definitions\",\n definitions: {\n id: {\n type: \"string\",\n description: \"Identifier of the object.\",\n },\n systemId: {\n type: \"string\",\n description: \"Identifier of the object, directly related to the system.\",\n },\n systemData: {\n type: \"object\",\n },\n metadata: {\n type: \"object\",\n default: {},\n },\n date: {\n type: [\"string\", \"object\"],\n format: \"date-time\",\n },\n file: {\n type: \"object\",\n required: [\"name\", \"type\", \"data\"],\n properties: {\n name: {\n type: \"string\",\n description: \"Name of the file.\",\n },\n type: {\n type: \"string\",\n description: \"MIME type of the file (e.g. application/pdf).\",\n },\n data: {\n type: \"string\",\n description: \"Base64-encoded data of the file.\",\n },\n },\n },\n address: {\n type: \"object\",\n additionalProperties: false,\n properties: {\n id: {\n type: \"string\",\n },\n line1: {\n type: \"string\",\n },\n line2: {\n type: \"string\",\n },\n line3: {\n type: \"string\",\n },\n city: {\n type: \"string\",\n },\n state: {\n type: \"string\",\n },\n postalCode: {\n type: \"string\",\n },\n countryCode: {\n type: \"string\",\n minLength: 2,\n maxLength: 2,\n },\n },\n },\n driver: {\n type: \"string\",\n description: \"Driver used to communicate with the object.\",\n enum: [\n \"adlink\",\n \"avigilon-alta\",\n \"aws-kinesis\",\n \"bacnet\",\n \"benq\",\n \"butler\",\n \"comelit\",\n \"crestron\",\n \"dell\",\n \"digital-watchdog\",\n \"distech\",\n \"dmp\",\n \"doorbird\",\n \"dormakaba\",\n \"dsc\",\n \"dsc-itv2\",\n \"earbridge\",\n \"ecobee\",\n \"epson\",\n \"geovision-rs\",\n \"geovision-as-manager\",\n \"honeywell-vista\",\n \"igor\",\n \"inncom\",\n \"isapi\",\n \"kohost-k7\",\n \"kohost\",\n \"lg\",\n \"lg-webos\",\n \"lapi\",\n \"lirc\",\n \"mews\",\n \"mht\",\n \"mobile-mule\",\n \"modbus\",\n \"napco\",\n \"newline\",\n \"obix\",\n \"one-roster\",\n \"paxton\",\n \"pdk\",\n \"pelican-wireless\",\n \"power-shades\",\n \"rachio\",\n \"rebrandly\",\n \"relay\",\n \"rtsp\",\n \"salto\",\n \"salto-irn\",\n \"samsung\",\n \"se\",\n \"sendgrid\",\n \"singlewire\",\n \"smartboard\",\n \"sonifi\",\n \"stay-n-touch\",\n \"storable\",\n \"twilio\",\n \"unifi\",\n \"valcom\",\n \"veracross\",\n \"verkada\",\n \"vivotek\",\n \"vizio\",\n \"wisenet\",\n \"cloudflare-images\",\n \"cloudflare-stream\",\n \"insperia-privacy\",\n ],\n },\n type: {\n type: \"string\",\n enum: [\n \"alarm\",\n \"camera\",\n \"courtesy\",\n \"dimmer\",\n \"gateway\",\n \"lock\",\n \"mediaSource\",\n \"motionSensor\",\n \"switch\",\n \"thermostat\",\n \"windowCovering\",\n ],\n },\n name: {\n type: \"string\",\n },\n alerts: {\n type: \"array\",\n uniqueItems: true,\n items: {\n type: \"object\",\n additionalProperties: false,\n required: [\"type\", \"status\", \"message\"],\n properties: {\n id: {\n type: \"string\"\n },\n type: {\n type: \"string\",\n enum: [\n \"Battery\",\n \"Communication\",\n \"Config\",\n \"Door Ajar\",\n \"Equipment\",\n \"Temperature\",\n \"Maintenance\",\n \"Cost\",\n \"Registration\",\n ],\n },\n status: {\n type: \"string\",\n enum: [\"Active\", \"Resolved\"],\n },\n message: {\n type: \"string\",\n },\n },\n },\n },\n supportedNotifications: {\n type: \"array\",\n uniqueItems: true,\n items: {\n enum: [\n \"button 1\",\n \"button 2\",\n \"button 3\",\n \"button 4\",\n \"button 5\",\n \"idle\",\n \"powerHasBeedApplied\",\n \"acMainsDisconnected\",\n \"acMainsReconnected\",\n \"replaceBatterySoon\",\n \"replaceBatteryNow\",\n \"batteryOk\",\n \"hardwareFailure\",\n \"softwareFailure\",\n \"hardwareFailureWithCode\",\n \"softwareFailureWithCode\",\n \"motionDetection\",\n \"airFilterNeedsCleaned\",\n \"airFilterNeedsReplaced\",\n \"smokeDetected\",\n \"outsideSafeTemperatureRange\",\n \"outsideSafeHumidityRange\",\n \"scheduleMaintenance\",\n \"doorAjar\",\n \"communicationFailure\",\n \"communicationOk\",\n \"burglarAlarm\",\n \"fireAlarm\",\n ],\n },\n },\n notification: {\n type: [\"object\", \"null\"],\n properties: {\n name: {\n type: \"string\",\n $ref: \"#/definitions/supportedNotifications/items\",\n },\n timestamp: {\n type: \"number\",\n minimum: 1655907956593,\n },\n description: {\n type: \"string\",\n },\n },\n },\n batteryLevel: {\n type: \"number\",\n minimum: 0,\n maximum: 100,\n },\n watts: {\n type: \"number\",\n minimum: 0,\n },\n revenue: {\n type: \"array\",\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n },\n date: {\n type: \"string\",\n format: \"date-time\",\n },\n price: {\n type: \"number\",\n },\n tax: {\n type: [\"number\", \"null\"],\n },\n },\n },\n },\n },\n} as const;\n\nexport type ISODateString = ReturnType<Date[\"toISOString\"]>;\n\nexport { defs as definitionsSchema };\nexport default defs;\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../.generated/schemas/definitions.ts"],"sourcesContent":["const defs = {\n $schema: \"http://json-schema.org/draft-07/schema\",\n $id: \"definitions.json\",\n title: \"Definitions\",\n definitions: {\n id: {\n type: \"string\",\n description: \"Identifier of the object.\",\n },\n systemId: {\n type: \"string\",\n description: \"Identifier of the object, directly related to the system.\",\n },\n systemData: {\n type: \"object\",\n },\n metadata: {\n type: \"object\",\n default: {},\n },\n date: {\n type: [\"string\", \"object\"],\n format: \"date-time\",\n },\n file: {\n type: \"object\",\n required: [\"name\", \"type\", \"data\"],\n properties: {\n name: {\n type: \"string\",\n description: \"Name of the file.\",\n },\n type: {\n type: \"string\",\n description: \"MIME type of the file (e.g. application/pdf).\",\n },\n data: {\n type: \"string\",\n description: \"Base64-encoded data of the file.\",\n },\n },\n },\n address: {\n type: \"object\",\n additionalProperties: false,\n properties: {\n id: {\n type: \"string\",\n },\n line1: {\n type: \"string\",\n },\n line2: {\n type: \"string\",\n },\n line3: {\n type: \"string\",\n },\n city: {\n type: \"string\",\n },\n state: {\n type: \"string\",\n },\n postalCode: {\n type: \"string\",\n },\n countryCode: {\n type: \"string\",\n minLength: 2,\n maxLength: 2,\n },\n },\n },\n driver: {\n type: \"string\",\n description: \"Driver used to communicate with the object.\",\n enum: [\n \"adlink\",\n \"avigilon-alta\",\n \"aws-kinesis\",\n \"bacnet\",\n \"benq\",\n \"butler\",\n \"comelit\",\n \"crestron\",\n \"dell\",\n \"digital-watchdog\",\n \"distech\",\n \"dmp\",\n \"doorbird\",\n \"dormakaba\",\n \"dsc\",\n \"dsc-itv2\",\n \"earbridge\",\n \"ecobee\",\n \"epson\",\n \"geovision-rs\",\n \"geovision-as-manager\",\n \"honeywell-vista\",\n \"igor\",\n \"inncom\",\n \"isapi\",\n \"kohost-k7\",\n \"kohost\",\n \"lg\",\n \"lg-webos\",\n \"lapi\",\n \"lirc\",\n \"mews\",\n \"mht\",\n \"mobile-mule\",\n \"modbus\",\n \"napco\",\n \"newline\",\n \"obix\",\n \"one-roster\",\n \"paxton\",\n \"pdk\",\n \"pelican-wireless\",\n \"power-shades\",\n \"rachio\",\n \"rebrandly\",\n \"relay\",\n \"reolink\",\n \"rtsp\",\n \"salto\",\n \"salto-irn\",\n \"samsung\",\n \"se\",\n \"sendgrid\",\n \"singlewire\",\n \"smartboard\",\n \"sonifi\",\n \"stay-n-touch\",\n \"storable\",\n \"twilio\",\n \"unifi\",\n \"valcom\",\n \"veracross\",\n \"verkada\",\n \"vivotek\",\n \"vizio\",\n \"wisenet\",\n \"cloudflare-images\",\n \"cloudflare-stream\",\n \"insperia-privacy\",\n ],\n },\n type: {\n type: \"string\",\n enum: [\n \"alarm\",\n \"camera\",\n \"courtesy\",\n \"dimmer\",\n \"gateway\",\n \"lock\",\n \"mediaSource\",\n \"motionSensor\",\n \"switch\",\n \"thermostat\",\n \"windowCovering\",\n ],\n },\n name: {\n type: \"string\",\n },\n alerts: {\n type: \"array\",\n uniqueItems: true,\n items: {\n type: \"object\",\n additionalProperties: false,\n required: [\"type\", \"status\", \"message\"],\n properties: {\n id: {\n type: \"string\"\n },\n type: {\n type: \"string\",\n enum: [\n \"Battery\",\n \"Communication\",\n \"Config\",\n \"Door Ajar\",\n \"Equipment\",\n \"Temperature\",\n \"Maintenance\",\n \"Cost\",\n \"Registration\",\n ],\n },\n status: {\n type: \"string\",\n enum: [\"Active\", \"Resolved\"],\n },\n message: {\n type: \"string\",\n },\n },\n },\n },\n supportedNotifications: {\n type: \"array\",\n uniqueItems: true,\n items: {\n enum: [\n \"button 1\",\n \"button 2\",\n \"button 3\",\n \"button 4\",\n \"button 5\",\n \"idle\",\n \"powerHasBeedApplied\",\n \"acMainsDisconnected\",\n \"acMainsReconnected\",\n \"replaceBatterySoon\",\n \"replaceBatteryNow\",\n \"batteryOk\",\n \"hardwareFailure\",\n \"softwareFailure\",\n \"hardwareFailureWithCode\",\n \"softwareFailureWithCode\",\n \"motionDetection\",\n \"airFilterNeedsCleaned\",\n \"airFilterNeedsReplaced\",\n \"smokeDetected\",\n \"outsideSafeTemperatureRange\",\n \"outsideSafeHumidityRange\",\n \"scheduleMaintenance\",\n \"doorAjar\",\n \"communicationFailure\",\n \"communicationOk\",\n \"burglarAlarm\",\n \"fireAlarm\",\n ],\n },\n },\n notification: {\n type: [\"object\", \"null\"],\n properties: {\n name: {\n type: \"string\",\n $ref: \"#/definitions/supportedNotifications/items\",\n },\n timestamp: {\n type: \"number\",\n minimum: 1655907956593,\n },\n description: {\n type: \"string\",\n },\n },\n },\n batteryLevel: {\n type: \"number\",\n minimum: 0,\n maximum: 100,\n },\n watts: {\n type: \"number\",\n minimum: 0,\n },\n revenue: {\n type: \"array\",\n items: {\n type: \"object\",\n properties: {\n id: {\n $ref: \"definitions.json#/definitions/id\",\n },\n name: {\n type: \"string\",\n },\n date: {\n type: \"string\",\n format: \"date-time\",\n },\n price: {\n type: \"number\",\n },\n tax: {\n type: [\"number\", \"null\"],\n },\n },\n },\n },\n },\n} as const;\n\nexport type ISODateString = ReturnType<Date[\"toISOString\"]>;\n\nexport { defs as definitionsSchema };\nexport default defs;\n"],"mappings":"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","names":[]}
|
|
@@ -75,7 +75,7 @@ declare const defs: {
|
|
|
75
75
|
readonly driver: {
|
|
76
76
|
readonly type: "string";
|
|
77
77
|
readonly description: "Driver used to communicate with the object.";
|
|
78
|
-
readonly enum: readonly ["adlink", "avigilon-alta", "aws-kinesis", "bacnet", "benq", "butler", "comelit", "crestron", "dell", "digital-watchdog", "distech", "dmp", "doorbird", "dormakaba", "dsc", "dsc-itv2", "earbridge", "ecobee", "epson", "geovision-rs", "geovision-as-manager", "honeywell-vista", "igor", "inncom", "isapi", "kohost-k7", "kohost", "lg", "lg-webos", "lapi", "lirc", "mews", "mht", "mobile-mule", "modbus", "napco", "newline", "obix", "one-roster", "paxton", "pdk", "pelican-wireless", "power-shades", "rachio", "rebrandly", "relay", "rtsp", "salto", "salto-irn", "samsung", "se", "sendgrid", "singlewire", "smartboard", "sonifi", "stay-n-touch", "storable", "twilio", "unifi", "valcom", "veracross", "verkada", "vivotek", "vizio", "wisenet", "cloudflare-images", "cloudflare-stream", "insperia-privacy"];
|
|
78
|
+
readonly enum: readonly ["adlink", "avigilon-alta", "aws-kinesis", "bacnet", "benq", "butler", "comelit", "crestron", "dell", "digital-watchdog", "distech", "dmp", "doorbird", "dormakaba", "dsc", "dsc-itv2", "earbridge", "ecobee", "epson", "geovision-rs", "geovision-as-manager", "honeywell-vista", "igor", "inncom", "isapi", "kohost-k7", "kohost", "lg", "lg-webos", "lapi", "lirc", "mews", "mht", "mobile-mule", "modbus", "napco", "newline", "obix", "one-roster", "paxton", "pdk", "pelican-wireless", "power-shades", "rachio", "rebrandly", "relay", "reolink", "rtsp", "salto", "salto-irn", "samsung", "se", "sendgrid", "singlewire", "smartboard", "sonifi", "stay-n-touch", "storable", "twilio", "unifi", "valcom", "veracross", "verkada", "vivotek", "vizio", "wisenet", "cloudflare-images", "cloudflare-stream", "insperia-privacy"];
|
|
79
79
|
};
|
|
80
80
|
readonly type: {
|
|
81
81
|
readonly type: "string";
|
|
@@ -34,6 +34,7 @@ __export(schemas_exports, {
|
|
|
34
34
|
gatewaySchema: () => import_gateway.gatewaySchema,
|
|
35
35
|
groupSchema: () => import_group.groupSchema,
|
|
36
36
|
identificationSchema: () => import_identification.identificationSchema,
|
|
37
|
+
integrationSchema: () => import_integration.integrationSchema,
|
|
37
38
|
issueSchema: () => import_issue.issueSchema,
|
|
38
39
|
lockSchema: () => import_lock.lockSchema,
|
|
39
40
|
logSchema: () => import_log.logSchema,
|
|
@@ -87,6 +88,7 @@ var import_energyReportShard = require("./energyReportShard.cjs");
|
|
|
87
88
|
var import_gateway = require("./gateway.cjs");
|
|
88
89
|
var import_group = require("./group.cjs");
|
|
89
90
|
var import_identification = require("./identification.cjs");
|
|
91
|
+
var import_integration = require("./integration.cjs");
|
|
90
92
|
var import_issue = require("./issue.cjs");
|
|
91
93
|
var import_lock = require("./lock.cjs");
|
|
92
94
|
var import_log = require("./log.cjs");
|
|
@@ -136,6 +138,7 @@ var import_windowCovering = require("./windowCovering.cjs");
|
|
|
136
138
|
gatewaySchema,
|
|
137
139
|
groupSchema,
|
|
138
140
|
identificationSchema,
|
|
141
|
+
integrationSchema,
|
|
139
142
|
issueSchema,
|
|
140
143
|
lockSchema,
|
|
141
144
|
logSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../.generated/schemas/index.ts"],"sourcesContent":["export { alarmSchema, type AlarmSchema } from \"./alarm.js\";\nexport { announcementSchema, type AnnouncementSchema } from \"./announcement.js\";\nexport { automationSchema, type AutomationSchema } from \"./automation.js\";\nexport { cameraSchema, type CameraSchema } from \"./camera.js\";\nexport { categorySchema, type CategorySchema } from \"./category.js\";\nexport { courtesySchema, type CourtesySchema } from \"./courtesy.js\";\nexport { credentialSchema, type CredentialSchema } from \"./credential.js\";\nexport { departmentSchema, type DepartmentSchema } from \"./department.js\";\nexport { deviceRouterSchema, type DeviceRouterSchema } from \"./deviceRouter.js\";\nexport { dimmerSchema, type DimmerSchema } from \"./dimmer.js\";\nexport { discoveredDeviceSchema, type DiscoveredDeviceSchema } from \"./discoveredDevice.js\";\nexport { emailMessageSchema, type EmailMessageSchema } from \"./emailMessage.js\";\nexport { energyReportSchema, type EnergyReportSchema } from \"./energyReport.js\";\nexport { energyReportShardSchema, type EnergyReportShardSchema } from \"./energyReportShard.js\";\nexport { gatewaySchema, type GatewaySchema } from \"./gateway.js\";\nexport { groupSchema, type GroupSchema } from \"./group.js\";\nexport { identificationSchema, type IdentificationSchema } from \"./identification.js\";\nexport { issueSchema, type IssueSchema } from \"./issue.js\";\nexport { lockSchema, type LockSchema } from \"./lock.js\";\nexport { logSchema, type LogSchema } from \"./log.js\";\nexport { mediaFileSchema, type MediaFileSchema, methods as mediaFileMethods } from \"./mediaFile.js\";\nexport { mediaSourceSchema, type MediaSourceSchema } from \"./mediaSource.js\";\nexport { motionSensorSchema, type MotionSensorSchema } from \"./motionSensor.js\";\nexport { notificationSchema, type NotificationSchema } from \"./notification.js\";\nexport { orderSchema, type OrderSchema } from \"./order.js\";\nexport { organizationSchema, type OrganizationSchema } from \"./organization.js\";\nexport { paymentSchema, type PaymentSchema } from \"./payment.js\";\nexport { policySchema, type PolicySchema } from \"./policy.js\";\nexport { productSchema, type ProductSchema } from \"./product.js\";\nexport { propertySchema, type PropertySchema } from \"./property.js\";\nexport { reservationSchema, type ReservationSchema } from \"./reservation.js\";\nexport { roomSchema, type RoomSchema, getters as roomGetters, statics as roomStatics } from \"./room.js\";\nexport { sceneSchema, type SceneSchema } from \"./scene.js\";\nexport { serverSchema, type ServerSchema } from \"./server.js\";\nexport { sessionSchema, type SessionSchema } from \"./session.js\";\nexport { shortLinkSchema, type ShortLinkSchema } from \"./shortLink.js\";\nexport { smsMessageSchema, type SmsMessageSchema } from \"./smsMessage.js\";\nexport { spaceSchema, type SpaceSchema } from \"./space.js\";\nexport { switchSchema, type SwitchSchema } from \"./switch.js\";\nexport { systemSchema, type SystemSchema } from \"./system.js\";\nexport { systemUserSchema, type SystemUserSchema } from \"./systemUser.js\";\nexport { thermostatSchema, type ThermostatSchema } from \"./thermostat.js\";\nexport { ticketSchema, type TicketSchema } from \"./ticket.js\";\nexport { timeSheetSchema, type TimeSheetSchema } from \"./timeSheet.js\";\nexport { userSchema, type UserSchema, getters as userGetters } from \"./user.js\";\nexport { vendorSchema, type VendorSchema } from \"./vendor.js\";\nexport { windowCoveringSchema, type WindowCoveringSchema } from \"./windowCovering.js\";\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAA8C;AAC9C,0BAA4D;AAC5D,wBAAwD;AACxD,oBAAgD;AAChD,sBAAoD;AACpD,sBAAoD;AACpD,wBAAwD;AACxD,wBAAwD;AACxD,0BAA4D;AAC5D,oBAAgD;AAChD,8BAAoE;AACpE,0BAA4D;AAC5D,0BAA4D;AAC5D,+BAAsE;AACtE,qBAAkD;AAClD,mBAA8C;AAC9C,4BAAgE;AAChE,mBAA8C;AAC9C,kBAA4C;AAC5C,iBAA0C;AAC1C,uBAAmF;AACnF,yBAA0D;AAC1D,0BAA4D;AAC5D,0BAA4D;AAC5D,mBAA8C;AAC9C,0BAA4D;AAC5D,qBAAkD;AAClD,oBAAgD;AAChD,qBAAkD;AAClD,sBAAoD;AACpD,yBAA0D;AAC1D,kBAA4F;AAC5F,mBAA8C;AAC9C,oBAAgD;AAChD,qBAAkD;AAClD,uBAAsD;AACtD,wBAAwD;AACxD,mBAA8C;AAC9C,oBAAgD;AAChD,oBAAgD;AAChD,wBAAwD;AACxD,wBAAwD;AACxD,oBAAgD;AAChD,uBAAsD;AACtD,kBAAoE;AACpE,oBAAgD;AAChD,4BAAgE;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../.generated/schemas/index.ts"],"sourcesContent":["export { alarmSchema, type AlarmSchema } from \"./alarm.js\";\nexport { announcementSchema, type AnnouncementSchema } from \"./announcement.js\";\nexport { automationSchema, type AutomationSchema } from \"./automation.js\";\nexport { cameraSchema, type CameraSchema } from \"./camera.js\";\nexport { categorySchema, type CategorySchema } from \"./category.js\";\nexport { courtesySchema, type CourtesySchema } from \"./courtesy.js\";\nexport { credentialSchema, type CredentialSchema } from \"./credential.js\";\nexport { departmentSchema, type DepartmentSchema } from \"./department.js\";\nexport { deviceRouterSchema, type DeviceRouterSchema } from \"./deviceRouter.js\";\nexport { dimmerSchema, type DimmerSchema } from \"./dimmer.js\";\nexport { discoveredDeviceSchema, type DiscoveredDeviceSchema } from \"./discoveredDevice.js\";\nexport { emailMessageSchema, type EmailMessageSchema } from \"./emailMessage.js\";\nexport { energyReportSchema, type EnergyReportSchema } from \"./energyReport.js\";\nexport { energyReportShardSchema, type EnergyReportShardSchema } from \"./energyReportShard.js\";\nexport { gatewaySchema, type GatewaySchema } from \"./gateway.js\";\nexport { groupSchema, type GroupSchema } from \"./group.js\";\nexport { identificationSchema, type IdentificationSchema } from \"./identification.js\";\nexport { integrationSchema, type IntegrationSchema } from \"./integration.js\";\nexport { issueSchema, type IssueSchema } from \"./issue.js\";\nexport { lockSchema, type LockSchema } from \"./lock.js\";\nexport { logSchema, type LogSchema } from \"./log.js\";\nexport { mediaFileSchema, type MediaFileSchema, methods as mediaFileMethods } from \"./mediaFile.js\";\nexport { mediaSourceSchema, type MediaSourceSchema } from \"./mediaSource.js\";\nexport { motionSensorSchema, type MotionSensorSchema } from \"./motionSensor.js\";\nexport { notificationSchema, type NotificationSchema } from \"./notification.js\";\nexport { orderSchema, type OrderSchema } from \"./order.js\";\nexport { organizationSchema, type OrganizationSchema } from \"./organization.js\";\nexport { paymentSchema, type PaymentSchema } from \"./payment.js\";\nexport { policySchema, type PolicySchema } from \"./policy.js\";\nexport { productSchema, type ProductSchema } from \"./product.js\";\nexport { propertySchema, type PropertySchema } from \"./property.js\";\nexport { reservationSchema, type ReservationSchema } from \"./reservation.js\";\nexport { roomSchema, type RoomSchema, getters as roomGetters, statics as roomStatics } from \"./room.js\";\nexport { sceneSchema, type SceneSchema } from \"./scene.js\";\nexport { serverSchema, type ServerSchema } from \"./server.js\";\nexport { sessionSchema, type SessionSchema } from \"./session.js\";\nexport { shortLinkSchema, type ShortLinkSchema } from \"./shortLink.js\";\nexport { smsMessageSchema, type SmsMessageSchema } from \"./smsMessage.js\";\nexport { spaceSchema, type SpaceSchema } from \"./space.js\";\nexport { switchSchema, type SwitchSchema } from \"./switch.js\";\nexport { systemSchema, type SystemSchema } from \"./system.js\";\nexport { systemUserSchema, type SystemUserSchema } from \"./systemUser.js\";\nexport { thermostatSchema, type ThermostatSchema } from \"./thermostat.js\";\nexport { ticketSchema, type TicketSchema } from \"./ticket.js\";\nexport { timeSheetSchema, type TimeSheetSchema } from \"./timeSheet.js\";\nexport { userSchema, type UserSchema, getters as userGetters } from \"./user.js\";\nexport { vendorSchema, type VendorSchema } from \"./vendor.js\";\nexport { windowCoveringSchema, type WindowCoveringSchema } from \"./windowCovering.js\";\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAA8C;AAC9C,0BAA4D;AAC5D,wBAAwD;AACxD,oBAAgD;AAChD,sBAAoD;AACpD,sBAAoD;AACpD,wBAAwD;AACxD,wBAAwD;AACxD,0BAA4D;AAC5D,oBAAgD;AAChD,8BAAoE;AACpE,0BAA4D;AAC5D,0BAA4D;AAC5D,+BAAsE;AACtE,qBAAkD;AAClD,mBAA8C;AAC9C,4BAAgE;AAChE,yBAA0D;AAC1D,mBAA8C;AAC9C,kBAA4C;AAC5C,iBAA0C;AAC1C,uBAAmF;AACnF,yBAA0D;AAC1D,0BAA4D;AAC5D,0BAA4D;AAC5D,mBAA8C;AAC9C,0BAA4D;AAC5D,qBAAkD;AAClD,oBAAgD;AAChD,qBAAkD;AAClD,sBAAoD;AACpD,yBAA0D;AAC1D,kBAA4F;AAC5F,mBAA8C;AAC9C,oBAAgD;AAChD,qBAAkD;AAClD,uBAAsD;AACtD,wBAAwD;AACxD,mBAA8C;AAC9C,oBAAgD;AAChD,oBAAgD;AAChD,wBAAwD;AACxD,wBAAwD;AACxD,oBAAgD;AAChD,uBAAsD;AACtD,kBAAoE;AACpE,oBAAgD;AAChD,4BAAgE;","names":[]}
|
|
@@ -15,6 +15,7 @@ export { EnergyReportShardSchema, energyReportShardSchema } from './energyReport
|
|
|
15
15
|
export { GatewaySchema, gatewaySchema } from './gateway.cjs';
|
|
16
16
|
export { GroupSchema, groupSchema } from './group.cjs';
|
|
17
17
|
export { IdentificationSchema, identificationSchema } from './identification.cjs';
|
|
18
|
+
export { IntegrationSchema, integrationSchema } from './integration.cjs';
|
|
18
19
|
export { IssueSchema, issueSchema } from './issue.cjs';
|
|
19
20
|
export { LockSchema, lockSchema } from './lock.cjs';
|
|
20
21
|
export { LogSchema, logSchema } from './log.cjs';
|