tuix-pdf-service-client 0.0.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.
Files changed (82) hide show
  1. package/.openapi-generator/FILES +37 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +48 -0
  5. package/apis/ClientApi.js +571 -0
  6. package/apis/ClientApi.js.map +1 -0
  7. package/apis/ClientApi.ts +858 -0
  8. package/apis/index.js +20 -0
  9. package/apis/index.js.map +1 -0
  10. package/apis/index.ts +3 -0
  11. package/docs/APIKeyDTO.md +40 -0
  12. package/docs/AccountDTO.md +34 -0
  13. package/docs/ApplicationDTO.md +42 -0
  14. package/docs/ApplicationWithApplicationCountDTO.md +44 -0
  15. package/docs/ClientApi.md +1115 -0
  16. package/docs/CreateAPIKeyRequestDTO.md +34 -0
  17. package/docs/CreateAPIKeyResponseDTO.md +42 -0
  18. package/docs/CreateAccountDTO.md +36 -0
  19. package/docs/CreateApplicationDTO.md +36 -0
  20. package/docs/CreatePdfRequestDTO.md +34 -0
  21. package/docs/ErrorDTO.md +34 -0
  22. package/docs/GetAPIKeysResponseDTO.md +42 -0
  23. package/docs/PaginatedApplicationsDTO.md +42 -0
  24. package/docs/PdfCreatedRequestItemsDTO.md +40 -0
  25. package/docs/PdfTemplateDTO.md +36 -0
  26. package/docs/UpdateApplicationDTO.md +36 -0
  27. package/index.js +22 -0
  28. package/index.js.map +1 -0
  29. package/index.ts +5 -0
  30. package/models/APIKeyDTO.js +55 -0
  31. package/models/APIKeyDTO.js.map +1 -0
  32. package/models/APIKeyDTO.ts +89 -0
  33. package/models/AccountDTO.js +49 -0
  34. package/models/AccountDTO.js.map +1 -0
  35. package/models/AccountDTO.ts +65 -0
  36. package/models/ApplicationDTO.js +57 -0
  37. package/models/ApplicationDTO.js.map +1 -0
  38. package/models/ApplicationDTO.ts +97 -0
  39. package/models/ApplicationWithApplicationCountDTO.js +59 -0
  40. package/models/ApplicationWithApplicationCountDTO.js.map +1 -0
  41. package/models/ApplicationWithApplicationCountDTO.ts +105 -0
  42. package/models/CreateAPIKeyRequestDTO.js +51 -0
  43. package/models/CreateAPIKeyRequestDTO.js.map +1 -0
  44. package/models/CreateAPIKeyRequestDTO.ts +66 -0
  45. package/models/CreateAPIKeyResponseDTO.js +57 -0
  46. package/models/CreateAPIKeyResponseDTO.js.map +1 -0
  47. package/models/CreateAPIKeyResponseDTO.ts +97 -0
  48. package/models/CreateAccountDTO.js +55 -0
  49. package/models/CreateAccountDTO.js.map +1 -0
  50. package/models/CreateAccountDTO.ts +75 -0
  51. package/models/CreateApplicationDTO.js +55 -0
  52. package/models/CreateApplicationDTO.js.map +1 -0
  53. package/models/CreateApplicationDTO.ts +75 -0
  54. package/models/CreatePdfRequestDTO.js +52 -0
  55. package/models/CreatePdfRequestDTO.js.map +1 -0
  56. package/models/CreatePdfRequestDTO.ts +74 -0
  57. package/models/ErrorDTO.js +49 -0
  58. package/models/ErrorDTO.js.map +1 -0
  59. package/models/ErrorDTO.ts +65 -0
  60. package/models/GetAPIKeysResponseDTO.js +58 -0
  61. package/models/GetAPIKeysResponseDTO.js.map +1 -0
  62. package/models/GetAPIKeysResponseDTO.ts +105 -0
  63. package/models/PaginatedApplicationsDTO.js +68 -0
  64. package/models/PaginatedApplicationsDTO.js.map +1 -0
  65. package/models/PaginatedApplicationsDTO.ts +110 -0
  66. package/models/PdfCreatedRequestItemsDTO.js +63 -0
  67. package/models/PdfCreatedRequestItemsDTO.js.map +1 -0
  68. package/models/PdfCreatedRequestItemsDTO.ts +93 -0
  69. package/models/PdfTemplateDTO.js +53 -0
  70. package/models/PdfTemplateDTO.js.map +1 -0
  71. package/models/PdfTemplateDTO.ts +74 -0
  72. package/models/UpdateApplicationDTO.js +51 -0
  73. package/models/UpdateApplicationDTO.js.map +1 -0
  74. package/models/UpdateApplicationDTO.ts +73 -0
  75. package/models/index.js +34 -0
  76. package/models/index.js.map +1 -0
  77. package/models/index.ts +17 -0
  78. package/package.json +17 -0
  79. package/runtime.js +330 -0
  80. package/runtime.js.map +1 -0
  81. package/runtime.ts +432 -0
  82. package/tsconfig.build.tsbuildinfo +1 -0
@@ -0,0 +1,34 @@
1
+
2
+ # CreateAPIKeyRequestDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `name` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { CreateAPIKeyRequestDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "name": null,
19
+ } satisfies CreateAPIKeyRequestDTO
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as CreateAPIKeyRequestDTO
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,42 @@
1
+
2
+ # CreateAPIKeyResponseDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `accountId` | string
10
+ `apiKey` | string
11
+ `createdAt` | string
12
+ `id` | string
13
+ `name` | string
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { CreateAPIKeyResponseDTO } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "accountId": null,
23
+ "apiKey": null,
24
+ "createdAt": null,
25
+ "id": null,
26
+ "name": null,
27
+ } satisfies CreateAPIKeyResponseDTO
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as CreateAPIKeyResponseDTO
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,36 @@
1
+
2
+ # CreateAccountDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `firstName` | string
10
+ `lastName` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { CreateAccountDTO } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "firstName": Jhon,
20
+ "lastName": Doe,
21
+ } satisfies CreateAccountDTO
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as CreateAccountDTO
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,36 @@
1
+
2
+ # CreateApplicationDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `description` | string
10
+ `name` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { CreateApplicationDTO } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "description": application description,
20
+ "name": Alpha,
21
+ } satisfies CreateApplicationDTO
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as CreateApplicationDTO
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,34 @@
1
+
2
+ # CreatePdfRequestDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<PdfCreatedRequestItemsDTO>](PdfCreatedRequestItemsDTO.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { CreatePdfRequestDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "items": null,
19
+ } satisfies CreatePdfRequestDTO
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as CreatePdfRequestDTO
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,34 @@
1
+
2
+ # ErrorDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `message` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { ErrorDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "message": null,
19
+ } satisfies ErrorDTO
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as ErrorDTO
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,42 @@
1
+
2
+ # GetAPIKeysResponseDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<APIKeyDTO>](APIKeyDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { GetAPIKeysResponseDTO } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies GetAPIKeysResponseDTO
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as GetAPIKeysResponseDTO
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,42 @@
1
+
2
+ # PaginatedApplicationsDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<ApplicationWithApplicationCountDTO>](ApplicationWithApplicationCountDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedApplicationsDTO } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies PaginatedApplicationsDTO
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedApplicationsDTO
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,40 @@
1
+
2
+ # PdfCreatedRequestItemsDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | { [key: string]: any; }
10
+ `documentType` | string
11
+ `id` | string
12
+ `templateId` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { PdfCreatedRequestItemsDTO } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "data": null,
22
+ "documentType": null,
23
+ "id": null,
24
+ "templateId": null,
25
+ } satisfies PdfCreatedRequestItemsDTO
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as PdfCreatedRequestItemsDTO
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
@@ -0,0 +1,36 @@
1
+
2
+ # PdfTemplateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `name` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { PdfTemplateDTO } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "id": null,
20
+ "name": null,
21
+ } satisfies PdfTemplateDTO
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as PdfTemplateDTO
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,36 @@
1
+
2
+ # UpdateApplicationDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `description` | string
10
+ `name` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { UpdateApplicationDTO } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "description": null,
20
+ "name": null,
21
+ } satisfies UpdateApplicationDTO
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as UpdateApplicationDTO
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
package/index.js ADDED
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /* tslint:disable */
18
+ /* eslint-disable */
19
+ __exportStar(require("./runtime"), exports);
20
+ __exportStar(require("./apis/index"), exports);
21
+ __exportStar(require("./models/index"), exports);
22
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,4CAA0B;AAC1B,+CAA6B;AAC7B,iDAA+B"}
package/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ export * from './runtime';
4
+ export * from './apis/index';
5
+ export * from './models/index';
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Pdf Service
6
+ * Service to generate pdfs
7
+ *
8
+ * The version of the OpenAPI document: 0.0.1
9
+ *
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 });
16
+ exports.instanceOfAPIKeyDTO = instanceOfAPIKeyDTO;
17
+ exports.APIKeyDTOFromJSON = APIKeyDTOFromJSON;
18
+ exports.APIKeyDTOFromJSONTyped = APIKeyDTOFromJSONTyped;
19
+ exports.APIKeyDTOToJSON = APIKeyDTOToJSON;
20
+ exports.APIKeyDTOToJSONTyped = APIKeyDTOToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the APIKeyDTO interface.
23
+ */
24
+ function instanceOfAPIKeyDTO(value) {
25
+ return true;
26
+ }
27
+ function APIKeyDTOFromJSON(json) {
28
+ return APIKeyDTOFromJSONTyped(json, false);
29
+ }
30
+ function APIKeyDTOFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'apiKeyToDisplay': json['api_key_to_display'] == null ? undefined : json['api_key_to_display'],
36
+ 'createdAt': json['created_at'] == null ? undefined : json['created_at'],
37
+ 'id': json['id'] == null ? undefined : json['id'],
38
+ 'name': json['name'] == null ? undefined : json['name'],
39
+ };
40
+ }
41
+ function APIKeyDTOToJSON(json) {
42
+ return APIKeyDTOToJSONTyped(json, false);
43
+ }
44
+ function APIKeyDTOToJSONTyped(value, ignoreDiscriminator = false) {
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'api_key_to_display': value['apiKeyToDisplay'],
50
+ 'created_at': value['createdAt'],
51
+ 'id': value['id'],
52
+ 'name': value['name'],
53
+ };
54
+ }
55
+ //# sourceMappingURL=APIKeyDTO.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"APIKeyDTO.js","sourceRoot":"","sources":["APIKeyDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAsCH,kDAEC;AAED,8CAEC;AAED,wDAWC;AAED,0CAEC;AAED,oDAYC;AAxCD;;GAEG;AACH,SAAgB,mBAAmB,CAAC,KAAa;IAC7C,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,iBAAiB,CAAC,IAAS;IACvC,OAAO,sBAAsB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/C,CAAC;AAED,SAAgB,sBAAsB,CAAC,IAAS,EAAE,mBAA4B;IAC1E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,iBAAiB,EAAE,IAAI,CAAC,oBAAoB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC;QAC9F,WAAW,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;QACxE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;KAC1D,CAAC;AACN,CAAC;AAED,SAAgB,eAAe,CAAC,IAAS;IACrC,OAAO,oBAAoB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC7C,CAAC;AAED,SAAgB,oBAAoB,CAAC,KAAwB,EAAE,sBAA+B,KAAK;IAC/F,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,oBAAoB,EAAE,KAAK,CAAC,iBAAiB,CAAC;QAC9C,YAAY,EAAE,KAAK,CAAC,WAAW,CAAC;QAChC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
@@ -0,0 +1,89 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Pdf Service
5
+ * Service to generate pdfs
6
+ *
7
+ * The version of the OpenAPI document: 0.0.1
8
+ *
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
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface APIKeyDTO
20
+ */
21
+ export interface APIKeyDTO {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof APIKeyDTO
26
+ */
27
+ apiKeyToDisplay?: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof APIKeyDTO
32
+ */
33
+ createdAt?: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof APIKeyDTO
38
+ */
39
+ id?: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof APIKeyDTO
44
+ */
45
+ name?: string;
46
+ }
47
+
48
+ /**
49
+ * Check if a given object implements the APIKeyDTO interface.
50
+ */
51
+ export function instanceOfAPIKeyDTO(value: object): value is APIKeyDTO {
52
+ return true;
53
+ }
54
+
55
+ export function APIKeyDTOFromJSON(json: any): APIKeyDTO {
56
+ return APIKeyDTOFromJSONTyped(json, false);
57
+ }
58
+
59
+ export function APIKeyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIKeyDTO {
60
+ if (json == null) {
61
+ return json;
62
+ }
63
+ return {
64
+
65
+ 'apiKeyToDisplay': json['api_key_to_display'] == null ? undefined : json['api_key_to_display'],
66
+ 'createdAt': json['created_at'] == null ? undefined : json['created_at'],
67
+ 'id': json['id'] == null ? undefined : json['id'],
68
+ 'name': json['name'] == null ? undefined : json['name'],
69
+ };
70
+ }
71
+
72
+ export function APIKeyDTOToJSON(json: any): APIKeyDTO {
73
+ return APIKeyDTOToJSONTyped(json, false);
74
+ }
75
+
76
+ export function APIKeyDTOToJSONTyped(value?: APIKeyDTO | null, ignoreDiscriminator: boolean = false): any {
77
+ if (value == null) {
78
+ return value;
79
+ }
80
+
81
+ return {
82
+
83
+ 'api_key_to_display': value['apiKeyToDisplay'],
84
+ 'created_at': value['createdAt'],
85
+ 'id': value['id'],
86
+ 'name': value['name'],
87
+ };
88
+ }
89
+
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Pdf Service
6
+ * Service to generate pdfs
7
+ *
8
+ * The version of the OpenAPI document: 0.0.1
9
+ *
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 });
16
+ exports.instanceOfAccountDTO = instanceOfAccountDTO;
17
+ exports.AccountDTOFromJSON = AccountDTOFromJSON;
18
+ exports.AccountDTOFromJSONTyped = AccountDTOFromJSONTyped;
19
+ exports.AccountDTOToJSON = AccountDTOToJSON;
20
+ exports.AccountDTOToJSONTyped = AccountDTOToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the AccountDTO interface.
23
+ */
24
+ function instanceOfAccountDTO(value) {
25
+ return true;
26
+ }
27
+ function AccountDTOFromJSON(json) {
28
+ return AccountDTOFromJSONTyped(json, false);
29
+ }
30
+ function AccountDTOFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'id': json['id'] == null ? undefined : json['id'],
36
+ };
37
+ }
38
+ function AccountDTOToJSON(json) {
39
+ return AccountDTOToJSONTyped(json, false);
40
+ }
41
+ function AccountDTOToJSONTyped(value, ignoreDiscriminator = false) {
42
+ if (value == null) {
43
+ return value;
44
+ }
45
+ return {
46
+ 'id': value['id'],
47
+ };
48
+ }
49
+ //# sourceMappingURL=AccountDTO.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AccountDTO.js","sourceRoot":"","sources":["AccountDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAoBH,oDAEC;AAED,gDAEC;AAED,0DAQC;AAED,4CAEC;AAED,sDASC;AAlCD;;GAEG;AACH,SAAgB,oBAAoB,CAAC,KAAa;IAC9C,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,kBAAkB,CAAC,IAAS;IACxC,OAAO,uBAAuB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChD,CAAC;AAED,SAAgB,uBAAuB,CAAC,IAAS,EAAE,mBAA4B;IAC3E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;KACpD,CAAC;AACN,CAAC;AAED,SAAgB,gBAAgB,CAAC,IAAS;IACtC,OAAO,qBAAqB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC9C,CAAC;AAED,SAAgB,qBAAqB,CAAC,KAAyB,EAAE,sBAA+B,KAAK;IACjG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;KACpB,CAAC;AACN,CAAC"}