Skip to content

Commit

Permalink
smarthome/local: fix typings
Browse files Browse the repository at this point in the history
- update d.ts file lists
- remove obsolete files
- fix yaml seq indent
- bump version
- update changelog

Change-Id: I3565db03d1cf23601e1a03c53e255b8763d31841
  • Loading branch information
Local Home SDK team authored and proppy committed May 17, 2021
1 parent b312676 commit e80ee32
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 216 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.5.0] - 2021-05-18

### Added

- Support for seamless setup (BLE) has been added.

## [1.4.1] - 2021-01-13

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions docgen/docgen.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ function generateToc(project) {
// Return YAML doc
return YAML.stringify({
toc: packages,
}, {
indentSeq: false,
});
}

Expand Down
212 changes: 0 additions & 212 deletions execution-only.d.ts

This file was deleted.

3 changes: 2 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@
/// <reference path="./cloud.d.ts" />
/// <reference path="./cmd.d.ts" />
/// <reference path="./constants.d.ts" />
/// <reference path="./execution-only.d.ts" />
/// <reference path="./local-fulfillment.d.ts" />
/// <reference path="./generic.d.ts" />
/// <reference path="./intentflow.d.ts" />
/// <reference path="./proxy.d.ts" />
/// <reference path="./report-state-builder.d.ts" />
/// <reference path="./scan-data.d.ts" />

export = smarthome;
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/local-home-sdk",
"version": "1.4.1",
"version": "1.5.0",
"description": "TypeScript type definitions for the Local Home SDK",
"license": "Apache-2.0",
"author": "Google",
Expand All @@ -16,11 +16,12 @@
"cloud.d.ts",
"cmd.d.ts",
"constants.d.ts",
"execution-only.d.ts",
"local-fulfillment.d.ts",
"generic.d.ts",
"index.d.ts",
"intentflow.d.ts",
"proxy.d.ts",
"report-state-builder.d.ts",
"scan-data.d.ts"
],
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
"cloud.d.ts",
"cmd.d.ts",
"constants.d.ts",
"execution-only.d.ts",
"local-fulfillment.d.ts",
"generic.d.ts",
"index.d.ts",
"intentflow.d.ts",
"proxy.d.ts",
"report-state-builder.d.ts",
"scan-data.d.ts",
"test.ts"
]
Expand Down

0 comments on commit e80ee32

Please sign in to comment.