|
1937 | 1937 |
|
1938 | 1938 | /** |
1939 | 1939 | * @param {String} projectsPk |
| 1940 | + * @param {Object} opts Optional parameters |
| 1941 | + * @param {String} opts.ifcs Filter the returned list by ifcs |
| 1942 | + * @param {String} opts.format Filter the returned list by format |
1940 | 1943 | * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/SingleJsonTopic>} and HTTP response |
1941 | 1944 | */ |
1942 | | - this.getFullTopicsWithHttpInfo = function(projectsPk) { |
| 1945 | + this.getFullTopicsWithHttpInfo = function(projectsPk, opts) { |
| 1946 | + opts = opts || {}; |
1943 | 1947 | var postBody = null; |
1944 | 1948 |
|
1945 | 1949 | // verify the required parameter 'projectsPk' is set |
|
1952 | 1956 | 'projects_pk': projectsPk |
1953 | 1957 | }; |
1954 | 1958 | var queryParams = { |
| 1959 | + 'ifcs': opts['ifcs'], |
| 1960 | + 'format': opts['format'], |
1955 | 1961 | }; |
1956 | 1962 | var collectionQueryParams = { |
1957 | 1963 | }; |
|
1974 | 1980 |
|
1975 | 1981 | /** |
1976 | 1982 | * @param {String} projectsPk |
| 1983 | + * @param {Object} opts Optional parameters |
| 1984 | + * @param {String} opts.ifcs Filter the returned list by ifcs |
| 1985 | + * @param {String} opts.format Filter the returned list by format |
1977 | 1986 | * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/SingleJsonTopic>} |
1978 | 1987 | */ |
1979 | | - this.getFullTopics = function(projectsPk) { |
1980 | | - return this.getFullTopicsWithHttpInfo(projectsPk) |
| 1988 | + this.getFullTopics = function(projectsPk, opts) { |
| 1989 | + return this.getFullTopicsWithHttpInfo(projectsPk, opts) |
1981 | 1990 | .then(function(response_and_data) { |
1982 | 1991 | return response_and_data.data; |
1983 | 1992 | }); |
|
2248 | 2257 | * @param {String} projectsPk |
2249 | 2258 | * @param {Object} opts Optional parameters |
2250 | 2259 | * @param {String} opts.ifcs Filter the returned list by ifcs |
| 2260 | + * @param {String} opts.format Filter the returned list by format |
2251 | 2261 | * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/Topic>} and HTTP response |
2252 | 2262 | */ |
2253 | 2263 | this.getTopicsWithHttpInfo = function(projectsPk, opts) { |
|
2265 | 2275 | }; |
2266 | 2276 | var queryParams = { |
2267 | 2277 | 'ifcs': opts['ifcs'], |
| 2278 | + 'format': opts['format'], |
2268 | 2279 | }; |
2269 | 2280 | var collectionQueryParams = { |
2270 | 2281 | }; |
|
2289 | 2300 | * @param {String} projectsPk |
2290 | 2301 | * @param {Object} opts Optional parameters |
2291 | 2302 | * @param {String} opts.ifcs Filter the returned list by ifcs |
| 2303 | + * @param {String} opts.format Filter the returned list by format |
2292 | 2304 | * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/Topic>} |
2293 | 2305 | */ |
2294 | 2306 | this.getTopics = function(projectsPk, opts) { |
|
0 commit comments