@teemill/gtins 0.6.4 → 0.6.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.
- package/README.md +3 -3
- package/api.ts +4 -123
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +10 -129
- package/dist/api.js +1 -13
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +10 -129
- package/dist/esm/api.js +1 -13
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/GTINsApi.md +2 -2
- package/docs/ImportGtins202Response.md +20 -0
- package/index.ts +1 -1
- package/package.json +2 -2
package/docs/GTINsApi.md
CHANGED
|
@@ -193,7 +193,7 @@ const { status, data } = await apiInstance.getGtin(
|
|
|
193
193
|
[[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)
|
|
194
194
|
|
|
195
195
|
# **importGtins**
|
|
196
|
-
>
|
|
196
|
+
> ImportGtins202Response importGtins()
|
|
197
197
|
|
|
198
198
|
Initiates a GTINs import from a CSV file. The result will be available as a notification in the dashboard.
|
|
199
199
|
|
|
@@ -227,7 +227,7 @@ const { status, data } = await apiInstance.importGtins(
|
|
|
227
227
|
|
|
228
228
|
### Return type
|
|
229
229
|
|
|
230
|
-
**
|
|
230
|
+
**ImportGtins202Response**
|
|
231
231
|
|
|
232
232
|
### Authorization
|
|
233
233
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ImportGtins202Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**importId** | **string** | Id of the GTINs import | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { ImportGtins202Response } from '@teemill/gtins';
|
|
14
|
+
|
|
15
|
+
const instance: ImportGtins202Response = {
|
|
16
|
+
importId,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teemill/gtins",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
4
4
|
"description": "OpenAPI client for @teemill/gtins",
|
|
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": "
|
|
27
|
+
"axios": "1.12.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "12.11.5 - 12.20.42",
|