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 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-pdf`;
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-pdf`;
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-pdf`;
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-pdf`;
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-pdf | Create PDF by template |
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-pdf | Create PDF by template |
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 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuix-pdf-service-client",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "This package facilitates the client request to tuix tuix-pdf-service",
5
5
  "main": "index.js",
6
6
  "private": false,