@emilgroup/document-sdk-node 1.41.1-beta.0 → 1.41.1-beta.2

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.
@@ -0,0 +1,30 @@
1
+ /**
2
+ * EMIL DocumentService
3
+ * The EMIL DocumentService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface MergeDocumentsRequestDto
16
+ */
17
+ export interface MergeDocumentsRequestDto {
18
+ /**
19
+ * Array of document codes to merge (minimum 2, maximum 5)
20
+ * @type {Array<string>}
21
+ * @memberof MergeDocumentsRequestDto
22
+ */
23
+ 'documentCodes': Array<string>;
24
+ /**
25
+ * Whether to delete the original documents after merging
26
+ * @type {boolean}
27
+ * @memberof MergeDocumentsRequestDto
28
+ */
29
+ 'shouldDeleteOriginals': boolean;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL DocumentService
6
+ * The EMIL DocumentService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL DocumentService
3
+ * The EMIL DocumentService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { DocumentClass } from './document-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface MergeDocumentsResponseClass
17
+ */
18
+ export interface MergeDocumentsResponseClass {
19
+ /**
20
+ * The merged PDF document
21
+ * @type {DocumentClass}
22
+ * @memberof MergeDocumentsResponseClass
23
+ */
24
+ 'document': DocumentClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL DocumentService
6
+ * The EMIL DocumentService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,60 @@
1
+ /**
2
+ * EMIL DocumentService
3
+ * The EMIL DocumentService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface QrBillingEntityDto
16
+ */
17
+ export interface QrBillingEntityDto {
18
+ /**
19
+ * ZIP code
20
+ * @type {string}
21
+ * @memberof QrBillingEntityDto
22
+ */
23
+ 'zip': string;
24
+ /**
25
+ * City name
26
+ * @type {string}
27
+ * @memberof QrBillingEntityDto
28
+ */
29
+ 'city': string;
30
+ /**
31
+ * Name of the entity
32
+ * @type {string}
33
+ * @memberof QrBillingEntityDto
34
+ */
35
+ 'name': string;
36
+ /**
37
+ * Street address
38
+ * @type {string}
39
+ * @memberof QrBillingEntityDto
40
+ */
41
+ 'address': string;
42
+ /**
43
+ * Country code (ISO 3166-1 alpha-2)
44
+ * @type {string}
45
+ * @memberof QrBillingEntityDto
46
+ */
47
+ 'country': string;
48
+ /**
49
+ * Building number
50
+ * @type {string}
51
+ * @memberof QrBillingEntityDto
52
+ */
53
+ 'buildingNumber': string;
54
+ /**
55
+ * IBAN account number
56
+ * @type {string}
57
+ * @memberof QrBillingEntityDto
58
+ */
59
+ 'account': string;
60
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL DocumentService
6
+ * The EMIL DocumentService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,69 @@
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
+ import { QrBillingEntityDto } from './qr-billing-entity-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateQrBillDocumentRequestDto
22
+ */
23
+ export interface CreateQrBillDocumentRequestDto {
24
+ /**
25
+ * Payment amount
26
+ * @type {number}
27
+ * @memberof CreateQrBillDocumentRequestDto
28
+ */
29
+ 'amount': number;
30
+ /**
31
+ * Debtor information
32
+ * @type {QrBillingEntityDto}
33
+ * @memberof CreateQrBillDocumentRequestDto
34
+ */
35
+ 'debtor': QrBillingEntityDto;
36
+ /**
37
+ * Payment message or reference
38
+ * @type {string}
39
+ * @memberof CreateQrBillDocumentRequestDto
40
+ */
41
+ 'message': string;
42
+ /**
43
+ * Creditor information
44
+ * @type {QrBillingEntityDto}
45
+ * @memberof CreateQrBillDocumentRequestDto
46
+ */
47
+ 'creditor': QrBillingEntityDto;
48
+ /**
49
+ * Currency
50
+ * @type {string}
51
+ * @memberof CreateQrBillDocumentRequestDto
52
+ */
53
+ 'currency': CreateQrBillDocumentRequestDtoCurrencyEnum;
54
+ /**
55
+ * QR reference number
56
+ * @type {string}
57
+ * @memberof CreateQrBillDocumentRequestDto
58
+ */
59
+ 'reference': string;
60
+ }
61
+
62
+ export const CreateQrBillDocumentRequestDtoCurrencyEnum = {
63
+ Chf: 'CHF',
64
+ Eur: 'EUR'
65
+ } as const;
66
+
67
+ export type CreateQrBillDocumentRequestDtoCurrencyEnum = typeof CreateQrBillDocumentRequestDtoCurrencyEnum[keyof typeof CreateQrBillDocumentRequestDtoCurrencyEnum];
68
+
69
+
@@ -0,0 +1,60 @@
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 ExportDocumentRequestDto
21
+ */
22
+ export interface ExportDocumentRequestDto {
23
+ /**
24
+ * The key to the tenant setting which holds additional request data
25
+ * @type {string}
26
+ * @memberof ExportDocumentRequestDto
27
+ */
28
+ 'requestConfigKey': string;
29
+ /**
30
+ * The additional url path that should be appended to the base URL found in the tenant settings
31
+ * @type {string}
32
+ * @memberof ExportDocumentRequestDto
33
+ */
34
+ 'relativeUrl'?: string;
35
+ /**
36
+ * The bearer token to be used to authenticate the request. Yo do not need to include text \'Bearer\'
37
+ * @type {string}
38
+ * @memberof ExportDocumentRequestDto
39
+ */
40
+ 'customToken': string;
41
+ /**
42
+ * The name of the key to be used to attach the file as form-data
43
+ * @type {string}
44
+ * @memberof ExportDocumentRequestDto
45
+ */
46
+ 'fileKey': string;
47
+ /**
48
+ * Additional form data to attach to the POST request
49
+ * @type {object}
50
+ * @memberof ExportDocumentRequestDto
51
+ */
52
+ 'additionalFormData'?: object;
53
+ /**
54
+ * Additional headers to attach to the POST request
55
+ * @type {object}
56
+ * @memberof ExportDocumentRequestDto
57
+ */
58
+ 'additionalHeaders'?: object;
59
+ }
60
+
@@ -0,0 +1,36 @@
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 ExportDocumentResponseClass
21
+ */
22
+ export interface ExportDocumentResponseClass {
23
+ /**
24
+ * The status returned from the POST request
25
+ * @type {number}
26
+ * @memberof ExportDocumentResponseClass
27
+ */
28
+ 'status': number;
29
+ /**
30
+ * The response body returned from the POST request
31
+ * @type {object}
32
+ * @memberof ExportDocumentResponseClass
33
+ */
34
+ 'body': object;
35
+ }
36
+
package/models/index.ts CHANGED
@@ -7,6 +7,7 @@ export * from './create-layout-request-dto';
7
7
  export * from './create-layout-response-class';
8
8
  export * from './create-presigned-post-request-dto';
9
9
  export * from './create-presigned-post-response-class';
10
+ export * from './create-qr-bill-document-request-dto';
10
11
  export * from './delete-layout-request-dto';
11
12
  export * from './delete-product-document-request-dto';
12
13
  export * from './delete-request-dto';
@@ -15,6 +16,8 @@ export * from './doc-template-class';
15
16
  export * from './document-class';
16
17
  export * from './docx-template-class';
17
18
  export * from './download-document-request-dto';
19
+ export * from './export-document-request-dto';
20
+ export * from './export-document-response-class';
18
21
  export * from './get-doc-template-request-dto';
19
22
  export * from './get-doc-template-response-class';
20
23
  export * from './get-document-download-url-response-class';
@@ -44,7 +47,10 @@ export * from './list-searchable-document-owners-request-dto';
44
47
  export * from './list-searchable-document-owners-response-class';
45
48
  export * from './list-searchable-documents-request-dto';
46
49
  export * from './list-searchable-documents-response-class';
50
+ export * from './merge-documents-request-dto';
51
+ export * from './merge-documents-response-class';
47
52
  export * from './product-document-class';
53
+ export * from './qr-billing-entity-dto';
48
54
  export * from './save-external-document-request-dto';
49
55
  export * from './searchable-document-class';
50
56
  export * from './searchable-document-owner-class';
@@ -0,0 +1,36 @@
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 MergeDocumentsRequestDto
21
+ */
22
+ export interface MergeDocumentsRequestDto {
23
+ /**
24
+ * Array of document codes to merge (minimum 2, maximum 5)
25
+ * @type {Array<string>}
26
+ * @memberof MergeDocumentsRequestDto
27
+ */
28
+ 'documentCodes': Array<string>;
29
+ /**
30
+ * Whether to delete the original documents after merging
31
+ * @type {boolean}
32
+ * @memberof MergeDocumentsRequestDto
33
+ */
34
+ 'shouldDeleteOriginals': boolean;
35
+ }
36
+
@@ -0,0 +1,31 @@
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
+ import { DocumentClass } from './document-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface MergeDocumentsResponseClass
22
+ */
23
+ export interface MergeDocumentsResponseClass {
24
+ /**
25
+ * The merged PDF document
26
+ * @type {DocumentClass}
27
+ * @memberof MergeDocumentsResponseClass
28
+ */
29
+ 'document': DocumentClass;
30
+ }
31
+
@@ -0,0 +1,66 @@
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 QrBillingEntityDto
21
+ */
22
+ export interface QrBillingEntityDto {
23
+ /**
24
+ * ZIP code
25
+ * @type {string}
26
+ * @memberof QrBillingEntityDto
27
+ */
28
+ 'zip': string;
29
+ /**
30
+ * City name
31
+ * @type {string}
32
+ * @memberof QrBillingEntityDto
33
+ */
34
+ 'city': string;
35
+ /**
36
+ * Name of the entity
37
+ * @type {string}
38
+ * @memberof QrBillingEntityDto
39
+ */
40
+ 'name': string;
41
+ /**
42
+ * Street address
43
+ * @type {string}
44
+ * @memberof QrBillingEntityDto
45
+ */
46
+ 'address': string;
47
+ /**
48
+ * Country code (ISO 3166-1 alpha-2)
49
+ * @type {string}
50
+ * @memberof QrBillingEntityDto
51
+ */
52
+ 'country': string;
53
+ /**
54
+ * Building number
55
+ * @type {string}
56
+ * @memberof QrBillingEntityDto
57
+ */
58
+ 'buildingNumber': string;
59
+ /**
60
+ * IBAN account number
61
+ * @type {string}
62
+ * @memberof QrBillingEntityDto
63
+ */
64
+ 'account': string;
65
+ }
66
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/document-sdk-node",
3
- "version": "1.41.1-beta.0",
3
+ "version": "1.41.1-beta.2",
4
4
  "description": "OpenAPI client for @emilgroup/document-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [