@emilgroup/document-sdk 1.7.0 → 1.7.1
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/.openapi-generator/FILES +0 -3
- package/README.md +2 -2
- package/api.ts +0 -2
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/index.d.ts +0 -2
- package/dist/models/index.js +0 -2
- package/models/index.ts +0 -2
- package/package.json +1 -1
- package/api/docx-templates-api.ts +0 -554
- package/dist/api/docx-templates-api.d.ts +0 -316
- package/dist/api/docx-templates-api.js +0 -538
- package/dist/models/shared-update-docx-template-request-dto.d.ts +0 -36
- package/dist/models/shared-update-docx-template-request-dto.js +0 -15
- package/dist/models/upload-docx-template-request-dto.d.ts +0 -54
- package/dist/models/upload-docx-template-request-dto.js +0 -15
- package/models/shared-update-docx-template-request-dto.ts +0 -42
- package/models/upload-docx-template-request-dto.ts +0 -60
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL DocumentService
|
|
5
|
-
* The EMIL DocumentService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface SharedUpdateDocxTemplateRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface SharedUpdateDocxTemplateRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Description of the document. Usually a short summary about the context in which the template is being used.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof SharedUpdateDocxTemplateRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'description': string;
|
|
29
|
-
/**
|
|
30
|
-
* Name of the file the end user will see when he downloads it.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof SharedUpdateDocxTemplateRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'filename': string;
|
|
35
|
-
/**
|
|
36
|
-
* Entity type of the docx template.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof SharedUpdateDocxTemplateRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'entityType': string;
|
|
41
|
-
}
|
|
42
|
-
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL DocumentService
|
|
5
|
-
* The EMIL DocumentService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface UploadDocxTemplateRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface UploadDocxTemplateRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Slug of the docx template.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof UploadDocxTemplateRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'slug': string;
|
|
29
|
-
/**
|
|
30
|
-
* Slug of the product.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof UploadDocxTemplateRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'productSlug': string;
|
|
35
|
-
/**
|
|
36
|
-
* Description of the document. Usually a short summary about the context in which the template is being used.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof UploadDocxTemplateRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'description': string;
|
|
41
|
-
/**
|
|
42
|
-
* Name of the file the end user will see when he downloads it.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof UploadDocxTemplateRequestDto
|
|
45
|
-
*/
|
|
46
|
-
'filename': string;
|
|
47
|
-
/**
|
|
48
|
-
* Entity type of the docx template.
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof UploadDocxTemplateRequestDto
|
|
51
|
-
*/
|
|
52
|
-
'entityType': string;
|
|
53
|
-
/**
|
|
54
|
-
* Id of the product version, and is optional. If not provided, the document will be attached to the latest version of the product.
|
|
55
|
-
* @type {number}
|
|
56
|
-
* @memberof UploadDocxTemplateRequestDto
|
|
57
|
-
*/
|
|
58
|
-
'productVersionId'?: number;
|
|
59
|
-
}
|
|
60
|
-
|