tuix-pdf-service-client 0.0.4 → 0.0.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/apis/ClientApi.js +2 -2
- package/apis/ClientApi.ts +2 -2
- package/docs/ClientApi.md +2 -2
- package/package.json +1 -1
package/apis/ClientApi.js
CHANGED
|
@@ -67,7 +67,7 @@ class ClientApi extends runtime.BaseAPI {
|
|
|
67
67
|
const queryParameters = {};
|
|
68
68
|
const headerParameters = {};
|
|
69
69
|
headerParameters['Content-Type'] = 'application/json';
|
|
70
|
-
let urlPath = `/api/applications/{applicationId}/create
|
|
70
|
+
let urlPath = `/api/applications/{applicationId}/pdf-create`;
|
|
71
71
|
urlPath = urlPath.replace(`{${"applicationId"}}`, encodeURIComponent(String(requestParameters['applicationId'])));
|
|
72
72
|
const response = await this.request({
|
|
73
73
|
path: urlPath,
|
|
@@ -244,7 +244,7 @@ class ClientApi extends runtime.BaseAPI {
|
|
|
244
244
|
const queryParameters = {};
|
|
245
245
|
const headerParameters = {};
|
|
246
246
|
headerParameters['Content-Type'] = 'application/json';
|
|
247
|
-
let urlPath = `/applications/{applicationId}/create
|
|
247
|
+
let urlPath = `/applications/{applicationId}/pdf-create`;
|
|
248
248
|
urlPath = urlPath.replace(`{${"applicationId"}}`, encodeURIComponent(String(requestParameters['applicationId'])));
|
|
249
249
|
const response = await this.request({
|
|
250
250
|
path: urlPath,
|
package/apis/ClientApi.ts
CHANGED
|
@@ -164,7 +164,7 @@ export class ClientApi extends runtime.BaseAPI {
|
|
|
164
164
|
headerParameters['Content-Type'] = 'application/json';
|
|
165
165
|
|
|
166
166
|
|
|
167
|
-
let urlPath = `/api/applications/{applicationId}/create
|
|
167
|
+
let urlPath = `/api/applications/{applicationId}/pdf-create`;
|
|
168
168
|
urlPath = urlPath.replace(`{${"applicationId"}}`, encodeURIComponent(String(requestParameters['applicationId'])));
|
|
169
169
|
|
|
170
170
|
const response = await this.request({
|
|
@@ -413,7 +413,7 @@ export class ClientApi extends runtime.BaseAPI {
|
|
|
413
413
|
headerParameters['Content-Type'] = 'application/json';
|
|
414
414
|
|
|
415
415
|
|
|
416
|
-
let urlPath = `/applications/{applicationId}/create
|
|
416
|
+
let urlPath = `/applications/{applicationId}/pdf-create`;
|
|
417
417
|
urlPath = urlPath.replace(`{${"applicationId"}}`, encodeURIComponent(String(requestParameters['applicationId'])));
|
|
418
418
|
|
|
419
419
|
const response = await this.request({
|
package/docs/ClientApi.md
CHANGED
|
@@ -4,13 +4,13 @@ All URIs are relative to *http://localhost:3000*
|
|
|
4
4
|
|
|
5
5
|
| Method | HTTP request | Description |
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
|
-
| [**aPICreatePdfByTermplate**](ClientApi.md#apicreatepdfbytermplate) | **POST** /api/applications/{applicationId}/create
|
|
7
|
+
| [**aPICreatePdfByTermplate**](ClientApi.md#apicreatepdfbytermplate) | **POST** /api/applications/{applicationId}/pdf-create | Create PDF by template |
|
|
8
8
|
| [**apiKeysGet**](ClientApi.md#apikeysget) | **GET** /api-keys | Get all API keys for the authenticated user |
|
|
9
9
|
| [**apiKeysIdDelete**](ClientApi.md#apikeysiddelete) | **DELETE** /api-keys/{id} | Delete an API key |
|
|
10
10
|
| [**apiKeysPost**](ClientApi.md#apikeyspost) | **POST** /api-keys | Create a new API key |
|
|
11
11
|
| [**createAccount**](ClientApi.md#createaccount) | **POST** /accounts | Creates a new account |
|
|
12
12
|
| [**createApplication**](ClientApi.md#createapplication) | **POST** /applications | Create a new application |
|
|
13
|
-
| [**createPdfByTermplate**](ClientApi.md#createpdfbytermplate) | **POST** /applications/{applicationId}/create
|
|
13
|
+
| [**createPdfByTermplate**](ClientApi.md#createpdfbytermplate) | **POST** /applications/{applicationId}/pdf-create | Create PDF by template |
|
|
14
14
|
| [**deleteApplication**](ClientApi.md#deleteapplication) | **DELETE** /applications/{applicationId} | Delete an application |
|
|
15
15
|
| [**deletePDFTemplate**](ClientApi.md#deletepdftemplate) | **DELETE** /applications/{applicationId}/pdf-templates/{id} | Delete a pdf template |
|
|
16
16
|
| [**getApplicationByID**](ClientApi.md#getapplicationbyid) | **GET** /applications/{applicationId} | Get an application by applicationId |
|