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.
- package/.openapi-generator/FILES +37 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +48 -0
- package/apis/ClientApi.js +571 -0
- package/apis/ClientApi.js.map +1 -0
- package/apis/ClientApi.ts +858 -0
- package/apis/index.js +20 -0
- package/apis/index.js.map +1 -0
- package/apis/index.ts +3 -0
- package/docs/APIKeyDTO.md +40 -0
- package/docs/AccountDTO.md +34 -0
- package/docs/ApplicationDTO.md +42 -0
- package/docs/ApplicationWithApplicationCountDTO.md +44 -0
- package/docs/ClientApi.md +1115 -0
- package/docs/CreateAPIKeyRequestDTO.md +34 -0
- package/docs/CreateAPIKeyResponseDTO.md +42 -0
- package/docs/CreateAccountDTO.md +36 -0
- package/docs/CreateApplicationDTO.md +36 -0
- package/docs/CreatePdfRequestDTO.md +34 -0
- package/docs/ErrorDTO.md +34 -0
- package/docs/GetAPIKeysResponseDTO.md +42 -0
- package/docs/PaginatedApplicationsDTO.md +42 -0
- package/docs/PdfCreatedRequestItemsDTO.md +40 -0
- package/docs/PdfTemplateDTO.md +36 -0
- package/docs/UpdateApplicationDTO.md +36 -0
- package/index.js +22 -0
- package/index.js.map +1 -0
- package/index.ts +5 -0
- package/models/APIKeyDTO.js +55 -0
- package/models/APIKeyDTO.js.map +1 -0
- package/models/APIKeyDTO.ts +89 -0
- package/models/AccountDTO.js +49 -0
- package/models/AccountDTO.js.map +1 -0
- package/models/AccountDTO.ts +65 -0
- package/models/ApplicationDTO.js +57 -0
- package/models/ApplicationDTO.js.map +1 -0
- package/models/ApplicationDTO.ts +97 -0
- package/models/ApplicationWithApplicationCountDTO.js +59 -0
- package/models/ApplicationWithApplicationCountDTO.js.map +1 -0
- package/models/ApplicationWithApplicationCountDTO.ts +105 -0
- package/models/CreateAPIKeyRequestDTO.js +51 -0
- package/models/CreateAPIKeyRequestDTO.js.map +1 -0
- package/models/CreateAPIKeyRequestDTO.ts +66 -0
- package/models/CreateAPIKeyResponseDTO.js +57 -0
- package/models/CreateAPIKeyResponseDTO.js.map +1 -0
- package/models/CreateAPIKeyResponseDTO.ts +97 -0
- package/models/CreateAccountDTO.js +55 -0
- package/models/CreateAccountDTO.js.map +1 -0
- package/models/CreateAccountDTO.ts +75 -0
- package/models/CreateApplicationDTO.js +55 -0
- package/models/CreateApplicationDTO.js.map +1 -0
- package/models/CreateApplicationDTO.ts +75 -0
- package/models/CreatePdfRequestDTO.js +52 -0
- package/models/CreatePdfRequestDTO.js.map +1 -0
- package/models/CreatePdfRequestDTO.ts +74 -0
- package/models/ErrorDTO.js +49 -0
- package/models/ErrorDTO.js.map +1 -0
- package/models/ErrorDTO.ts +65 -0
- package/models/GetAPIKeysResponseDTO.js +58 -0
- package/models/GetAPIKeysResponseDTO.js.map +1 -0
- package/models/GetAPIKeysResponseDTO.ts +105 -0
- package/models/PaginatedApplicationsDTO.js +68 -0
- package/models/PaginatedApplicationsDTO.js.map +1 -0
- package/models/PaginatedApplicationsDTO.ts +110 -0
- package/models/PdfCreatedRequestItemsDTO.js +63 -0
- package/models/PdfCreatedRequestItemsDTO.js.map +1 -0
- package/models/PdfCreatedRequestItemsDTO.ts +93 -0
- package/models/PdfTemplateDTO.js +53 -0
- package/models/PdfTemplateDTO.js.map +1 -0
- package/models/PdfTemplateDTO.ts +74 -0
- package/models/UpdateApplicationDTO.js +51 -0
- package/models/UpdateApplicationDTO.js.map +1 -0
- package/models/UpdateApplicationDTO.ts +73 -0
- package/models/index.js +34 -0
- package/models/index.js.map +1 -0
- package/models/index.ts +17 -0
- package/package.json +17 -0
- package/runtime.js +330 -0
- package/runtime.js.map +1 -0
- package/runtime.ts +432 -0
- package/tsconfig.build.tsbuildinfo +1 -0
|
@@ -0,0 +1,105 @@
|
|
|
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
|
+
import type { APIKeyDTO } from './APIKeyDTO';
|
|
17
|
+
import {
|
|
18
|
+
APIKeyDTOFromJSON,
|
|
19
|
+
APIKeyDTOFromJSONTyped,
|
|
20
|
+
APIKeyDTOToJSON,
|
|
21
|
+
APIKeyDTOToJSONTyped,
|
|
22
|
+
} from './APIKeyDTO';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface GetAPIKeysResponseDTO
|
|
28
|
+
*/
|
|
29
|
+
export interface GetAPIKeysResponseDTO {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<APIKeyDTO>}
|
|
33
|
+
* @memberof GetAPIKeysResponseDTO
|
|
34
|
+
*/
|
|
35
|
+
items?: Array<APIKeyDTO>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof GetAPIKeysResponseDTO
|
|
40
|
+
*/
|
|
41
|
+
page?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof GetAPIKeysResponseDTO
|
|
46
|
+
*/
|
|
47
|
+
pageSize?: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof GetAPIKeysResponseDTO
|
|
52
|
+
*/
|
|
53
|
+
totalItems?: number;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof GetAPIKeysResponseDTO
|
|
58
|
+
*/
|
|
59
|
+
totalPages?: number;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Check if a given object implements the GetAPIKeysResponseDTO interface.
|
|
64
|
+
*/
|
|
65
|
+
export function instanceOfGetAPIKeysResponseDTO(value: object): value is GetAPIKeysResponseDTO {
|
|
66
|
+
return true;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function GetAPIKeysResponseDTOFromJSON(json: any): GetAPIKeysResponseDTO {
|
|
70
|
+
return GetAPIKeysResponseDTOFromJSONTyped(json, false);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export function GetAPIKeysResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAPIKeysResponseDTO {
|
|
74
|
+
if (json == null) {
|
|
75
|
+
return json;
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
|
|
79
|
+
'items': json['items'] == null ? undefined : ((json['items'] as Array<any>).map(APIKeyDTOFromJSON)),
|
|
80
|
+
'page': json['page'] == null ? undefined : json['page'],
|
|
81
|
+
'pageSize': json['pageSize'] == null ? undefined : json['pageSize'],
|
|
82
|
+
'totalItems': json['totalItems'] == null ? undefined : json['totalItems'],
|
|
83
|
+
'totalPages': json['totalPages'] == null ? undefined : json['totalPages'],
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function GetAPIKeysResponseDTOToJSON(json: any): GetAPIKeysResponseDTO {
|
|
88
|
+
return GetAPIKeysResponseDTOToJSONTyped(json, false);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export function GetAPIKeysResponseDTOToJSONTyped(value?: GetAPIKeysResponseDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
92
|
+
if (value == null) {
|
|
93
|
+
return value;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
return {
|
|
97
|
+
|
|
98
|
+
'items': value['items'] == null ? undefined : ((value['items'] as Array<any>).map(APIKeyDTOToJSON)),
|
|
99
|
+
'page': value['page'],
|
|
100
|
+
'pageSize': value['pageSize'],
|
|
101
|
+
'totalItems': value['totalItems'],
|
|
102
|
+
'totalPages': value['totalPages'],
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
|
|
@@ -0,0 +1,68 @@
|
|
|
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.instanceOfPaginatedApplicationsDTO = instanceOfPaginatedApplicationsDTO;
|
|
17
|
+
exports.PaginatedApplicationsDTOFromJSON = PaginatedApplicationsDTOFromJSON;
|
|
18
|
+
exports.PaginatedApplicationsDTOFromJSONTyped = PaginatedApplicationsDTOFromJSONTyped;
|
|
19
|
+
exports.PaginatedApplicationsDTOToJSON = PaginatedApplicationsDTOToJSON;
|
|
20
|
+
exports.PaginatedApplicationsDTOToJSONTyped = PaginatedApplicationsDTOToJSONTyped;
|
|
21
|
+
const ApplicationWithApplicationCountDTO_1 = require("./ApplicationWithApplicationCountDTO");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the PaginatedApplicationsDTO interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfPaginatedApplicationsDTO(value) {
|
|
26
|
+
if (!('items' in value) || value['items'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('page' in value) || value['page'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('pageSize' in value) || value['pageSize'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('totalItems' in value) || value['totalItems'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('totalPages' in value) || value['totalPages'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
return true;
|
|
37
|
+
}
|
|
38
|
+
function PaginatedApplicationsDTOFromJSON(json) {
|
|
39
|
+
return PaginatedApplicationsDTOFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
function PaginatedApplicationsDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
42
|
+
if (json == null) {
|
|
43
|
+
return json;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
'items': (json['items'].map(ApplicationWithApplicationCountDTO_1.ApplicationWithApplicationCountDTOFromJSON)),
|
|
47
|
+
'page': json['page'],
|
|
48
|
+
'pageSize': json['pageSize'],
|
|
49
|
+
'totalItems': json['totalItems'],
|
|
50
|
+
'totalPages': json['totalPages'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
function PaginatedApplicationsDTOToJSON(json) {
|
|
54
|
+
return PaginatedApplicationsDTOToJSONTyped(json, false);
|
|
55
|
+
}
|
|
56
|
+
function PaginatedApplicationsDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
return {
|
|
61
|
+
'items': (value['items'].map(ApplicationWithApplicationCountDTO_1.ApplicationWithApplicationCountDTOToJSON)),
|
|
62
|
+
'page': value['page'],
|
|
63
|
+
'pageSize': value['pageSize'],
|
|
64
|
+
'totalItems': value['totalItems'],
|
|
65
|
+
'totalPages': value['totalPages'],
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=PaginatedApplicationsDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaginatedApplicationsDTO.js","sourceRoot":"","sources":["PaginatedApplicationsDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAoDH,gFAOC;AAED,4EAEC;AAED,sFAYC;AAED,wEAEC;AAED,kFAaC;AA5FD,6FAK8C;AAwC9C;;GAEG;AACH,SAAgB,kCAAkC,CAAC,KAAa;IAC5D,IAAI,CAAC,CAAC,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtE,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,IAAI,CAAC,CAAC,UAAU,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC5E,IAAI,CAAC,CAAC,YAAY,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChF,IAAI,CAAC,CAAC,YAAY,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,gCAAgC,CAAC,IAAS;IACtD,OAAO,qCAAqC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC9D,CAAC;AAED,SAAgB,qCAAqC,CAAC,IAAS,EAAE,mBAA4B;IACzF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,CAAE,IAAI,CAAC,OAAO,CAAgB,CAAC,GAAG,CAAC,+EAA0C,CAAC,CAAC;QACxF,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;QAC5B,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC;QAChC,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC;KACnC,CAAC;AACN,CAAC;AAED,SAAgB,8BAA8B,CAAC,IAAS;IACpD,OAAO,mCAAmC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC5D,CAAC;AAED,SAAgB,mCAAmC,CAAC,KAAuC,EAAE,sBAA+B,KAAK;IAC7H,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,OAAO,EAAE,CAAE,KAAK,CAAC,OAAO,CAAgB,CAAC,GAAG,CAAC,6EAAwC,CAAC,CAAC;QACvF,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;QACjC,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;KACpC,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,110 @@
|
|
|
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
|
+
import type { ApplicationWithApplicationCountDTO } from './ApplicationWithApplicationCountDTO';
|
|
17
|
+
import {
|
|
18
|
+
ApplicationWithApplicationCountDTOFromJSON,
|
|
19
|
+
ApplicationWithApplicationCountDTOFromJSONTyped,
|
|
20
|
+
ApplicationWithApplicationCountDTOToJSON,
|
|
21
|
+
ApplicationWithApplicationCountDTOToJSONTyped,
|
|
22
|
+
} from './ApplicationWithApplicationCountDTO';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface PaginatedApplicationsDTO
|
|
28
|
+
*/
|
|
29
|
+
export interface PaginatedApplicationsDTO {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<ApplicationWithApplicationCountDTO>}
|
|
33
|
+
* @memberof PaginatedApplicationsDTO
|
|
34
|
+
*/
|
|
35
|
+
items: Array<ApplicationWithApplicationCountDTO>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof PaginatedApplicationsDTO
|
|
40
|
+
*/
|
|
41
|
+
page: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof PaginatedApplicationsDTO
|
|
46
|
+
*/
|
|
47
|
+
pageSize: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof PaginatedApplicationsDTO
|
|
52
|
+
*/
|
|
53
|
+
totalItems: number;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof PaginatedApplicationsDTO
|
|
58
|
+
*/
|
|
59
|
+
totalPages: number;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Check if a given object implements the PaginatedApplicationsDTO interface.
|
|
64
|
+
*/
|
|
65
|
+
export function instanceOfPaginatedApplicationsDTO(value: object): value is PaginatedApplicationsDTO {
|
|
66
|
+
if (!('items' in value) || value['items'] === undefined) return false;
|
|
67
|
+
if (!('page' in value) || value['page'] === undefined) return false;
|
|
68
|
+
if (!('pageSize' in value) || value['pageSize'] === undefined) return false;
|
|
69
|
+
if (!('totalItems' in value) || value['totalItems'] === undefined) return false;
|
|
70
|
+
if (!('totalPages' in value) || value['totalPages'] === undefined) return false;
|
|
71
|
+
return true;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export function PaginatedApplicationsDTOFromJSON(json: any): PaginatedApplicationsDTO {
|
|
75
|
+
return PaginatedApplicationsDTOFromJSONTyped(json, false);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function PaginatedApplicationsDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedApplicationsDTO {
|
|
79
|
+
if (json == null) {
|
|
80
|
+
return json;
|
|
81
|
+
}
|
|
82
|
+
return {
|
|
83
|
+
|
|
84
|
+
'items': ((json['items'] as Array<any>).map(ApplicationWithApplicationCountDTOFromJSON)),
|
|
85
|
+
'page': json['page'],
|
|
86
|
+
'pageSize': json['pageSize'],
|
|
87
|
+
'totalItems': json['totalItems'],
|
|
88
|
+
'totalPages': json['totalPages'],
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function PaginatedApplicationsDTOToJSON(json: any): PaginatedApplicationsDTO {
|
|
93
|
+
return PaginatedApplicationsDTOToJSONTyped(json, false);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export function PaginatedApplicationsDTOToJSONTyped(value?: PaginatedApplicationsDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
97
|
+
if (value == null) {
|
|
98
|
+
return value;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
return {
|
|
102
|
+
|
|
103
|
+
'items': ((value['items'] as Array<any>).map(ApplicationWithApplicationCountDTOToJSON)),
|
|
104
|
+
'page': value['page'],
|
|
105
|
+
'pageSize': value['pageSize'],
|
|
106
|
+
'totalItems': value['totalItems'],
|
|
107
|
+
'totalPages': value['totalPages'],
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
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.instanceOfPdfCreatedRequestItemsDTO = instanceOfPdfCreatedRequestItemsDTO;
|
|
17
|
+
exports.PdfCreatedRequestItemsDTOFromJSON = PdfCreatedRequestItemsDTOFromJSON;
|
|
18
|
+
exports.PdfCreatedRequestItemsDTOFromJSONTyped = PdfCreatedRequestItemsDTOFromJSONTyped;
|
|
19
|
+
exports.PdfCreatedRequestItemsDTOToJSON = PdfCreatedRequestItemsDTOToJSON;
|
|
20
|
+
exports.PdfCreatedRequestItemsDTOToJSONTyped = PdfCreatedRequestItemsDTOToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PdfCreatedRequestItemsDTO interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPdfCreatedRequestItemsDTO(value) {
|
|
25
|
+
if (!('data' in value) || value['data'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('documentType' in value) || value['documentType'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('templateId' in value) || value['templateId'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
function PdfCreatedRequestItemsDTOFromJSON(json) {
|
|
36
|
+
return PdfCreatedRequestItemsDTOFromJSONTyped(json, false);
|
|
37
|
+
}
|
|
38
|
+
function PdfCreatedRequestItemsDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
|
+
if (json == null) {
|
|
40
|
+
return json;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'data': json['data'],
|
|
44
|
+
'documentType': json['documentType'],
|
|
45
|
+
'id': json['id'],
|
|
46
|
+
'templateId': json['templateId'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
function PdfCreatedRequestItemsDTOToJSON(json) {
|
|
50
|
+
return PdfCreatedRequestItemsDTOToJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
function PdfCreatedRequestItemsDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
53
|
+
if (value == null) {
|
|
54
|
+
return value;
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
'data': value['data'],
|
|
58
|
+
'documentType': value['documentType'],
|
|
59
|
+
'id': value['id'],
|
|
60
|
+
'templateId': value['templateId'],
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=PdfCreatedRequestItemsDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfCreatedRequestItemsDTO.js","sourceRoot":"","sources":["PdfCreatedRequestItemsDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAsCH,kFAMC;AAED,8EAEC;AAED,wFAWC;AAED,0EAEC;AAED,oFAYC;AA5CD;;GAEG;AACH,SAAgB,mCAAmC,CAAC,KAAa;IAC7D,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,IAAI,CAAC,CAAC,cAAc,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,cAAc,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpF,IAAI,CAAC,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChE,IAAI,CAAC,CAAC,YAAY,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS;IACvD,OAAO,sCAAsC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/D,CAAC;AAED,SAAgB,sCAAsC,CAAC,IAAS,EAAE,mBAA4B;IAC1F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC;QACpC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;QAChB,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC;KACnC,CAAC;AACN,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS;IACrD,OAAO,oCAAoC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC7D,CAAC;AAED,SAAgB,oCAAoC,CAAC,KAAwC,EAAE,sBAA+B,KAAK;IAC/H,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;QACrC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;KACpC,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
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 PdfCreatedRequestItemsDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface PdfCreatedRequestItemsDTO {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {{ [key: string]: any; }}
|
|
25
|
+
* @memberof PdfCreatedRequestItemsDTO
|
|
26
|
+
*/
|
|
27
|
+
data: { [key: string]: any; };
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof PdfCreatedRequestItemsDTO
|
|
32
|
+
*/
|
|
33
|
+
documentType: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof PdfCreatedRequestItemsDTO
|
|
38
|
+
*/
|
|
39
|
+
id: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof PdfCreatedRequestItemsDTO
|
|
44
|
+
*/
|
|
45
|
+
templateId: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the PdfCreatedRequestItemsDTO interface.
|
|
50
|
+
*/
|
|
51
|
+
export function instanceOfPdfCreatedRequestItemsDTO(value: object): value is PdfCreatedRequestItemsDTO {
|
|
52
|
+
if (!('data' in value) || value['data'] === undefined) return false;
|
|
53
|
+
if (!('documentType' in value) || value['documentType'] === undefined) return false;
|
|
54
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
55
|
+
if (!('templateId' in value) || value['templateId'] === undefined) return false;
|
|
56
|
+
return true;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function PdfCreatedRequestItemsDTOFromJSON(json: any): PdfCreatedRequestItemsDTO {
|
|
60
|
+
return PdfCreatedRequestItemsDTOFromJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function PdfCreatedRequestItemsDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PdfCreatedRequestItemsDTO {
|
|
64
|
+
if (json == null) {
|
|
65
|
+
return json;
|
|
66
|
+
}
|
|
67
|
+
return {
|
|
68
|
+
|
|
69
|
+
'data': json['data'],
|
|
70
|
+
'documentType': json['documentType'],
|
|
71
|
+
'id': json['id'],
|
|
72
|
+
'templateId': json['templateId'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function PdfCreatedRequestItemsDTOToJSON(json: any): PdfCreatedRequestItemsDTO {
|
|
77
|
+
return PdfCreatedRequestItemsDTOToJSONTyped(json, false);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function PdfCreatedRequestItemsDTOToJSONTyped(value?: PdfCreatedRequestItemsDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
81
|
+
if (value == null) {
|
|
82
|
+
return value;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return {
|
|
86
|
+
|
|
87
|
+
'data': value['data'],
|
|
88
|
+
'documentType': value['documentType'],
|
|
89
|
+
'id': value['id'],
|
|
90
|
+
'templateId': value['templateId'],
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
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.instanceOfPdfTemplateDTO = instanceOfPdfTemplateDTO;
|
|
17
|
+
exports.PdfTemplateDTOFromJSON = PdfTemplateDTOFromJSON;
|
|
18
|
+
exports.PdfTemplateDTOFromJSONTyped = PdfTemplateDTOFromJSONTyped;
|
|
19
|
+
exports.PdfTemplateDTOToJSON = PdfTemplateDTOToJSON;
|
|
20
|
+
exports.PdfTemplateDTOToJSONTyped = PdfTemplateDTOToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PdfTemplateDTO interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPdfTemplateDTO(value) {
|
|
25
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function PdfTemplateDTOFromJSON(json) {
|
|
30
|
+
return PdfTemplateDTOFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function PdfTemplateDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
38
|
+
'name': json['name'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function PdfTemplateDTOToJSON(json) {
|
|
42
|
+
return PdfTemplateDTOToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function PdfTemplateDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'id': value['id'],
|
|
50
|
+
'name': value['name'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=PdfTemplateDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfTemplateDTO.js","sourceRoot":"","sources":["PdfTemplateDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,4DAGC;AAED,wDAEC;AAED,kEASC;AAED,oDAEC;AAED,8DAUC;AArCD;;GAEG;AACH,SAAgB,wBAAwB,CAAC,KAAa;IAClD,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,sBAAsB,CAAC,IAAS;IAC5C,OAAO,2BAA2B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpD,CAAC;AAED,SAAgB,2BAA2B,CAAC,IAAS,EAAE,mBAA4B;IAC/E,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;QACjD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;KACvB,CAAC;AACN,CAAC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAED,SAAgB,yBAAyB,CAAC,KAA6B,EAAE,sBAA+B,KAAK;IACzG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
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 PdfTemplateDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface PdfTemplateDTO {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof PdfTemplateDTO
|
|
26
|
+
*/
|
|
27
|
+
id?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof PdfTemplateDTO
|
|
32
|
+
*/
|
|
33
|
+
name: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the PdfTemplateDTO interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfPdfTemplateDTO(value: object): value is PdfTemplateDTO {
|
|
40
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
41
|
+
return true;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function PdfTemplateDTOFromJSON(json: any): PdfTemplateDTO {
|
|
45
|
+
return PdfTemplateDTOFromJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function PdfTemplateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PdfTemplateDTO {
|
|
49
|
+
if (json == null) {
|
|
50
|
+
return json;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
|
|
54
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
55
|
+
'name': json['name'],
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function PdfTemplateDTOToJSON(json: any): PdfTemplateDTO {
|
|
60
|
+
return PdfTemplateDTOToJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function PdfTemplateDTOToJSONTyped(value?: PdfTemplateDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
64
|
+
if (value == null) {
|
|
65
|
+
return value;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'id': value['id'],
|
|
71
|
+
'name': value['name'],
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
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.instanceOfUpdateApplicationDTO = instanceOfUpdateApplicationDTO;
|
|
17
|
+
exports.UpdateApplicationDTOFromJSON = UpdateApplicationDTOFromJSON;
|
|
18
|
+
exports.UpdateApplicationDTOFromJSONTyped = UpdateApplicationDTOFromJSONTyped;
|
|
19
|
+
exports.UpdateApplicationDTOToJSON = UpdateApplicationDTOToJSON;
|
|
20
|
+
exports.UpdateApplicationDTOToJSONTyped = UpdateApplicationDTOToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the UpdateApplicationDTO interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfUpdateApplicationDTO(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function UpdateApplicationDTOFromJSON(json) {
|
|
28
|
+
return UpdateApplicationDTOFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function UpdateApplicationDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
36
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function UpdateApplicationDTOToJSON(json) {
|
|
40
|
+
return UpdateApplicationDTOToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function UpdateApplicationDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'description': value['description'],
|
|
48
|
+
'name': value['name'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=UpdateApplicationDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpdateApplicationDTO.js","sourceRoot":"","sources":["UpdateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,wEAEC;AAED,oEAEC;AAED,8EASC;AAED,gEAEC;AAED,0EAUC;AApCD;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,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,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
|