mirror of
https://github.com/bourquep/mysa-js-sdk.git
synced 2026-02-04 09:41:07 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aaac9f6d73 | ||
|
|
43ac8334f0 |
3
.github/dependabot.yml
vendored
3
.github/dependabot.yml
vendored
@@ -11,6 +11,9 @@ updates:
|
||||
interval: 'daily'
|
||||
labels:
|
||||
- 'dependencies'
|
||||
commit-message:
|
||||
prefix: 'chore'
|
||||
include: 'scope'
|
||||
groups:
|
||||
dev-dependencies:
|
||||
patterns:
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { MysaApiClient } from '@/api/MysaApiClient';
|
||||
import { MysaSession } from '@/api/MysaSession';
|
||||
import { MysaApiClient, MysaSession } from '@/api';
|
||||
import 'dotenv/config';
|
||||
import { readFile, rm, writeFile } from 'fs/promises';
|
||||
import { pino } from 'pino';
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
export * from './api';
|
||||
export * from './types';
|
||||
|
||||
2
src/types/index.ts
Normal file
2
src/types/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from './mqtt';
|
||||
export * from './rest';
|
||||
4
src/types/mqtt/in/index.ts
Normal file
4
src/types/mqtt/in/index.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export * from './ChangeDeviceState';
|
||||
export * from './CheckDeviceSettings';
|
||||
export * from './InMessageType';
|
||||
export * from './StartPublishingDeviceStatus';
|
||||
10
src/types/mqtt/index.ts
Normal file
10
src/types/mqtt/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export * from './in';
|
||||
export * from './InPayload';
|
||||
export * from './MsgBasePayload';
|
||||
export * from './MsgInPayload';
|
||||
export * from './MsgOutPayload';
|
||||
export * from './MsgTypeBasePayload';
|
||||
export * from './MsgTypeInPayload';
|
||||
export * from './MsgTypeOutPayload';
|
||||
export * from './out';
|
||||
export * from './OutPayload';
|
||||
7
src/types/mqtt/out/index.ts
Normal file
7
src/types/mqtt/out/index.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export * from './DeviceLog';
|
||||
export * from './DevicePostBoot';
|
||||
export * from './DeviceSetpointChange';
|
||||
export * from './DeviceStateChange';
|
||||
export * from './DeviceV1Status';
|
||||
export * from './DeviceV2Status';
|
||||
export * from './OutMessageType';
|
||||
1
src/types/rest/index.ts
Normal file
1
src/types/rest/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './Devices';
|
||||
Reference in New Issue
Block a user