suggestgrid 0.3.0.rc9 → 0.3.0.rc10
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.
- checksums.yaml +4 -4
- data/lib/suggestgrid/models/get_recommended_items_body.rb +1 -1
- data/lib/suggestgrid/models/get_recommended_users_body.rb +1 -1
- data/lib/suggestgrid/models/get_similar_items_body.rb +1 -1
- data/lib/suggestgrid/models/get_similar_users_body.rb +1 -1
- data/spec/swagger.yaml +13 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1134fcd3e60014721a6c4d8ffe35c11019838bb3
|
|
4
|
+
data.tar.gz: c843ed75005fa9534bc865ba93ab0e31739b3585
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 08eea6013685547d91d8eb5969df792cdc90ffec215b843baa25e635409cd5c37e46383aac9021bb5ac25229548ccf6229efbe51ac5840facbc61c410f6062e7
|
|
7
|
+
data.tar.gz: 63697708931d92d1f6857a0df99ceea2e4d38e05c9ca89f2d8b96f5a93214f9adb101f2c3db1117b4c4bcaa42c4b36856c1b898b473a15168c77c4a2d7a3014d
|
|
@@ -7,7 +7,7 @@ module SuggestGrid
|
|
|
7
7
|
attr_accessor :type
|
|
8
8
|
|
|
9
9
|
# The types of the query. Exactly one of type or types parameters must be provided.
|
|
10
|
-
# @return [String]
|
|
10
|
+
# @return [List of String]
|
|
11
11
|
attr_accessor :types
|
|
12
12
|
|
|
13
13
|
# The item id of the query. Get similar items to given item id. Either item id or item ids must be provided.
|
data/spec/swagger.yaml
CHANGED
|
@@ -2,7 +2,7 @@ swagger: '2.0'
|
|
|
2
2
|
|
|
3
3
|
info:
|
|
4
4
|
title: SuggestGrid
|
|
5
|
-
version: 0.3.0-rc.
|
|
5
|
+
version: 0.3.0-rc.10
|
|
6
6
|
description: Personalization made Simple
|
|
7
7
|
x-codegen-settings:
|
|
8
8
|
appendContentHeaders: true
|
|
@@ -164,8 +164,10 @@ definitions:
|
|
|
164
164
|
type: string
|
|
165
165
|
description: The type of the query. Recommendations will be calculated based on actions of this type.
|
|
166
166
|
types:
|
|
167
|
-
type:
|
|
167
|
+
type: array
|
|
168
168
|
description: The types of the query. Exactly one of type or types parameters must be provided.
|
|
169
|
+
items:
|
|
170
|
+
type: string
|
|
169
171
|
item_id:
|
|
170
172
|
type: string
|
|
171
173
|
description: The item id of the query.
|
|
@@ -210,8 +212,10 @@ definitions:
|
|
|
210
212
|
type: string
|
|
211
213
|
description: The type of the query. Recommendations will be calculated based on actions of this type.
|
|
212
214
|
types:
|
|
213
|
-
type:
|
|
215
|
+
type: array
|
|
214
216
|
description: The types of the query. Exactly one of type or types parameters must be provided.
|
|
217
|
+
items:
|
|
218
|
+
type: string
|
|
215
219
|
user_id:
|
|
216
220
|
type: string
|
|
217
221
|
description: The user id of the query.
|
|
@@ -256,8 +260,10 @@ definitions:
|
|
|
256
260
|
type: string
|
|
257
261
|
description: The type of the query. Similarities will be calculated based on actions of this type.
|
|
258
262
|
types:
|
|
259
|
-
type:
|
|
263
|
+
type: array
|
|
260
264
|
description: The types of the query. Exactly one of type or types parameters must be provided.
|
|
265
|
+
items:
|
|
266
|
+
type: string
|
|
261
267
|
user_id:
|
|
262
268
|
type: string
|
|
263
269
|
description: The user id of the query.
|
|
@@ -292,8 +298,10 @@ definitions:
|
|
|
292
298
|
type: string
|
|
293
299
|
description: The type of the query. Similarities will be calculated based on actions of this type.
|
|
294
300
|
types:
|
|
295
|
-
type:
|
|
301
|
+
type: array
|
|
296
302
|
description: The types of the query. Exactly one of type or types parameters must be provided.
|
|
303
|
+
items:
|
|
304
|
+
type: string
|
|
297
305
|
item_id:
|
|
298
306
|
type: string
|
|
299
307
|
description: The item id of the query.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: suggestgrid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.0.
|
|
4
|
+
version: 0.3.0.rc10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SuggestGrid
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-08-
|
|
11
|
+
date: 2017-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logging
|