This repository was archived by the owner on Aug 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 3.7.1]
10+ ### Changed
11+ - Fixed linting errors
12+
913## [ 3.7.0]
1014### Added
1115- Add enableFullScreen to Canvas, allowing the canvas application to occupy the full screen, and not have a header at the top.
Original file line number Diff line number Diff line change 33 "description" : " Actions SDK Fulfillment Library for Node.js" ,
44 "main" : " dist/index.js" ,
55 "types" : " dist/index.d.ts" ,
6- "version" : " 3.7.0 " ,
6+ "version" : " 3.7.1 " ,
77 "license" : " Apache-2.0" ,
88 "author" : " Google LLC" ,
99 "engines" : {
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ export class ConversationV3 {
183183 * let color = conv.session.params.exampleColor;
184184 * });
185185 * ```
186- *
186+ *
187187 * @see {@link https://developers.google.com/assistant/conversational/storage-session | Session Storage documentation }
188188 * @public
189189 */
@@ -199,7 +199,7 @@ export class ConversationV3 {
199199 * let color = 'red';
200200 * conv.user.params.exampleColor = color;
201201 * });
202- *
202+ *
203203 * // Retrieve color from user storage
204204 * app.handle('getStoredColor', conv => {
205205 * let color = conv.user.params.exampleColor;
@@ -228,7 +228,7 @@ export class ConversationV3 {
228228 * let color = 'red';
229229 * conv.home.params.exampleColor = color;
230230 * });
231- *
231+ *
232232 * // Retrieve color from home storage
233233 * app.handle('getStoredColor', conv => {
234234 * let color = conv.home.params.exampleColor;
Original file line number Diff line number Diff line change 132132 "no-console" : true ,
133133 "max-line-length" : [
134134 true ,
135- 100
135+ {
136+ "limit" : 100 ,
137+ "ignore-pattern" : " \\ * @see"
138+ }
136139 ],
137140 "eofline" : true
138141 }
You can’t perform that action at this time.
0 commit comments