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
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 3.7.1]
10
+ ### Changed
11
+ - Fixed linting errors
12
+
9
13
## [ 3.7.0]
10
14
### Added
11
15
- 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 3
3
"description" : " Actions SDK Fulfillment Library for Node.js" ,
4
4
"main" : " dist/index.js" ,
5
5
"types" : " dist/index.d.ts" ,
6
- "version" : " 3.7.0 " ,
6
+ "version" : " 3.7.1 " ,
7
7
"license" : " Apache-2.0" ,
8
8
"author" : " Google LLC" ,
9
9
"engines" : {
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ export class ConversationV3 {
183
183
* let color = conv.session.params.exampleColor;
184
184
* });
185
185
* ```
186
- *
186
+ *
187
187
* @see {@link https://developers.google.com/assistant/conversational/storage-session | Session Storage documentation }
188
188
* @public
189
189
*/
@@ -199,7 +199,7 @@ export class ConversationV3 {
199
199
* let color = 'red';
200
200
* conv.user.params.exampleColor = color;
201
201
* });
202
- *
202
+ *
203
203
* // Retrieve color from user storage
204
204
* app.handle('getStoredColor', conv => {
205
205
* let color = conv.user.params.exampleColor;
@@ -228,7 +228,7 @@ export class ConversationV3 {
228
228
* let color = 'red';
229
229
* conv.home.params.exampleColor = color;
230
230
* });
231
- *
231
+ *
232
232
* // Retrieve color from home storage
233
233
* app.handle('getStoredColor', conv => {
234
234
* let color = conv.home.params.exampleColor;
Original file line number Diff line number Diff line change 132
132
"no-console" : true ,
133
133
"max-line-length" : [
134
134
true ,
135
- 100
135
+ {
136
+ "limit" : 100 ,
137
+ "ignore-pattern" : " \\ * @see"
138
+ }
136
139
],
137
140
"eofline" : true
138
141
}
You can’t perform that action at this time.
0 commit comments