@teemill/file-processor 0.3.4 → 0.3.6

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.
@@ -2,7 +2,7 @@
2
2
  * File Processor API
3
3
  * RIP file processor
4
4
  *
5
- * The version of the OpenAPI document: 0.3.4
5
+ * The version of the OpenAPI document: 0.3.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,49 +23,32 @@ export declare class Configuration {
23
23
  /**
24
24
  * parameter for apiKey security
25
25
  * @param name security name
26
- * @memberof Configuration
27
26
  */
28
27
  apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
29
28
  /**
30
29
  * parameter for basic security
31
- *
32
- * @type {string}
33
- * @memberof Configuration
34
30
  */
35
31
  username?: string;
36
32
  /**
37
33
  * parameter for basic security
38
- *
39
- * @type {string}
40
- * @memberof Configuration
41
34
  */
42
35
  password?: string;
43
36
  /**
44
37
  * parameter for oauth2 security
45
38
  * @param name security name
46
39
  * @param scopes oauth2 scope
47
- * @memberof Configuration
48
40
  */
49
41
  accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
50
42
  /**
51
43
  * override base path
52
- *
53
- * @type {string}
54
- * @memberof Configuration
55
44
  */
56
45
  basePath?: string;
57
46
  /**
58
47
  * override server index
59
- *
60
- * @type {number}
61
- * @memberof Configuration
62
48
  */
63
49
  serverIndex?: number;
64
50
  /**
65
51
  * base options for axios calls
66
- *
67
- * @type {any}
68
- * @memberof Configuration
69
52
  */
70
53
  baseOptions?: any;
71
54
  /**
@@ -4,7 +4,7 @@
4
4
  * File Processor API
5
5
  * RIP file processor
6
6
  *
7
- * The version of the OpenAPI document: 0.3.4
7
+ * The version of the OpenAPI document: 0.3.6
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * File Processor API
3
3
  * RIP file processor
4
4
  *
5
- * The version of the OpenAPI document: 0.3.4
5
+ * The version of the OpenAPI document: 0.3.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * File Processor API
5
5
  * RIP file processor
6
6
  *
7
- * The version of the OpenAPI document: 0.3.4
7
+ * The version of the OpenAPI document: 0.3.6
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * File Processor API
3
3
  * RIP file processor
4
4
  *
5
- * The version of the OpenAPI document: 0.3.4
5
+ * The version of the OpenAPI document: 0.3.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * File Processor API
6
6
  * RIP file processor
7
7
  *
8
- * The version of the OpenAPI document: 0.3.4
8
+ * The version of the OpenAPI document: 0.3.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,22 @@
1
+ # ListJobs200Response
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **jobs** | [**Array&lt;Job&gt;**](Job.md) | | [default to undefined]
9
+ **nextPageToken** | **number** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ListJobs200Response } from '@teemill/file-processor';
15
+
16
+ const instance: ListJobs200Response = {
17
+ jobs,
18
+ nextPageToken,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -187,7 +187,7 @@ const { status, data } = await apiInstance.getJob(
187
187
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
188
188
 
189
189
  # **listJobs**
190
- > InlineObject listJobs()
190
+ > ListJobs200Response listJobs()
191
191
 
192
192
  List your processor jobs
193
193
 
@@ -224,7 +224,7 @@ const { status, data } = await apiInstance.listJobs(
224
224
 
225
225
  ### Return type
226
226
 
227
- **InlineObject**
227
+ **ListJobs200Response**
228
228
 
229
229
  ### Authorization
230
230
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * File Processor API
5
5
  * RIP file processor
6
6
  *
7
- * The version of the OpenAPI document: 0.3.4
7
+ * The version of the OpenAPI document: 0.3.6
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/file-processor",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "OpenAPI client for @teemill/file-processor",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "^1.6.1"
27
+ "axios": "1.12.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",