tuix-timesheets-api 0.45.0 → 0.47.0
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 +3 -3
- package/apis/TuixTimesheetsClientApi.js +87 -63
- package/apis/TuixTimesheetsClientApi.js.map +1 -1
- package/apis/TuixTimesheetsClientApi.ts +128 -92
- package/models/ClientInvoiceDTO.js +2 -0
- package/models/ClientInvoiceDTO.js.map +1 -1
- package/models/ClientInvoiceDTO.ts +8 -0
- package/models/EmailTemplateDTO.js +57 -0
- package/models/EmailTemplateDTO.js.map +1 -0
- package/models/EmailTemplateDTO.ts +89 -0
- package/models/MarkInvoicePaidDTO.js +51 -0
- package/models/MarkInvoicePaidDTO.js.map +1 -0
- package/models/MarkInvoicePaidDTO.ts +66 -0
- package/models/PaginatedEmailTemplateDTO.js +64 -0
- package/models/PaginatedEmailTemplateDTO.js.map +1 -0
- package/models/PaginatedEmailTemplateDTO.ts +109 -0
- package/models/index.js +3 -3
- package/models/index.js.map +1 -1
- package/models/index.ts +3 -3
- package/package.json +1 -1
- package/models/EmailTemplates.js +0 -60
- package/models/EmailTemplates.js.map +0 -1
- package/models/EmailTemplates.ts +0 -93
- package/models/SDKTestRequestDTO.js +0 -60
- package/models/SDKTestRequestDTO.js.map +0 -1
- package/models/SDKTestRequestDTO.ts +0 -93
- package/models/SDKTestResponseDTO.js +0 -60
- package/models/SDKTestResponseDTO.js.map +0 -1
- package/models/SDKTestResponseDTO.ts +0 -93
|
@@ -27,7 +27,7 @@ import type {
|
|
|
27
27
|
CreateJiraUserDto,
|
|
28
28
|
CreateSubscriptionDTO,
|
|
29
29
|
CreateUserDto,
|
|
30
|
-
|
|
30
|
+
EmailTemplateDTO,
|
|
31
31
|
EmployeeDTO,
|
|
32
32
|
EmployeeInvoiceDTO,
|
|
33
33
|
EmployeeUpdateDTO,
|
|
@@ -42,9 +42,11 @@ import type {
|
|
|
42
42
|
HolidayDTO,
|
|
43
43
|
JiraAccountDto,
|
|
44
44
|
JiraUserDto,
|
|
45
|
+
MarkInvoicePaidDTO,
|
|
45
46
|
PaginatedAdjustedTimesheets,
|
|
46
47
|
PaginatedClientInvoices,
|
|
47
48
|
PaginatedClients,
|
|
49
|
+
PaginatedEmailTemplateDTO,
|
|
48
50
|
PaginatedEmployeeInvoices,
|
|
49
51
|
PaginatedEmployeeProjects,
|
|
50
52
|
PaginatedEmployees,
|
|
@@ -57,8 +59,6 @@ import type {
|
|
|
57
59
|
ProjectDTO,
|
|
58
60
|
ProjectInputDTO,
|
|
59
61
|
ProjectUpdateDTO,
|
|
60
|
-
SDKTestRequestDTO,
|
|
61
|
-
SDKTestResponseDTO,
|
|
62
62
|
SendNewsletterDto,
|
|
63
63
|
SlackAccountReponseDto,
|
|
64
64
|
SlackUserDto,
|
|
@@ -97,8 +97,8 @@ import {
|
|
|
97
97
|
CreateSubscriptionDTOToJSON,
|
|
98
98
|
CreateUserDtoFromJSON,
|
|
99
99
|
CreateUserDtoToJSON,
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
EmailTemplateDTOFromJSON,
|
|
101
|
+
EmailTemplateDTOToJSON,
|
|
102
102
|
EmployeeDTOFromJSON,
|
|
103
103
|
EmployeeDTOToJSON,
|
|
104
104
|
EmployeeInvoiceDTOFromJSON,
|
|
@@ -127,12 +127,16 @@ import {
|
|
|
127
127
|
JiraAccountDtoToJSON,
|
|
128
128
|
JiraUserDtoFromJSON,
|
|
129
129
|
JiraUserDtoToJSON,
|
|
130
|
+
MarkInvoicePaidDTOFromJSON,
|
|
131
|
+
MarkInvoicePaidDTOToJSON,
|
|
130
132
|
PaginatedAdjustedTimesheetsFromJSON,
|
|
131
133
|
PaginatedAdjustedTimesheetsToJSON,
|
|
132
134
|
PaginatedClientInvoicesFromJSON,
|
|
133
135
|
PaginatedClientInvoicesToJSON,
|
|
134
136
|
PaginatedClientsFromJSON,
|
|
135
137
|
PaginatedClientsToJSON,
|
|
138
|
+
PaginatedEmailTemplateDTOFromJSON,
|
|
139
|
+
PaginatedEmailTemplateDTOToJSON,
|
|
136
140
|
PaginatedEmployeeInvoicesFromJSON,
|
|
137
141
|
PaginatedEmployeeInvoicesToJSON,
|
|
138
142
|
PaginatedEmployeeProjectsFromJSON,
|
|
@@ -157,10 +161,6 @@ import {
|
|
|
157
161
|
ProjectInputDTOToJSON,
|
|
158
162
|
ProjectUpdateDTOFromJSON,
|
|
159
163
|
ProjectUpdateDTOToJSON,
|
|
160
|
-
SDKTestRequestDTOFromJSON,
|
|
161
|
-
SDKTestRequestDTOToJSON,
|
|
162
|
-
SDKTestResponseDTOFromJSON,
|
|
163
|
-
SDKTestResponseDTOToJSON,
|
|
164
164
|
SendNewsletterDtoFromJSON,
|
|
165
165
|
SendNewsletterDtoToJSON,
|
|
166
166
|
SlackAccountReponseDtoFromJSON,
|
|
@@ -411,10 +411,15 @@ export interface GetTeamRequest {
|
|
|
411
411
|
pageSize?: number;
|
|
412
412
|
}
|
|
413
413
|
|
|
414
|
-
export interface
|
|
414
|
+
export interface GetTemplateRequest {
|
|
415
415
|
id: string;
|
|
416
416
|
}
|
|
417
417
|
|
|
418
|
+
export interface GetTemplatesRequest {
|
|
419
|
+
page?: number;
|
|
420
|
+
pageSize?: number;
|
|
421
|
+
}
|
|
422
|
+
|
|
418
423
|
export interface GetTimesheetRequest {
|
|
419
424
|
projectId: string;
|
|
420
425
|
timesheetId: string;
|
|
@@ -434,6 +439,12 @@ export interface InviteEmployeeRequest {
|
|
|
434
439
|
employeeDTO: EmployeeDTO;
|
|
435
440
|
}
|
|
436
441
|
|
|
442
|
+
export interface MarkInvoiceAsPaidRequest {
|
|
443
|
+
clientId: string;
|
|
444
|
+
invoiceId: string;
|
|
445
|
+
markInvoicePaidDTO: MarkInvoicePaidDTO;
|
|
446
|
+
}
|
|
447
|
+
|
|
437
448
|
export interface OpenSentTimesheetRequest {
|
|
438
449
|
projectId: string;
|
|
439
450
|
timesheetId: string;
|
|
@@ -443,15 +454,11 @@ export interface RemoveJiraAccountRequest {
|
|
|
443
454
|
jiraAccountId: string;
|
|
444
455
|
}
|
|
445
456
|
|
|
446
|
-
export interface SdkTestRequest {
|
|
447
|
-
sDKTestRequestDTO: SDKTestRequestDTO;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
457
|
export interface SendEmailRequest {
|
|
451
458
|
from: string;
|
|
452
|
-
to: string;
|
|
453
459
|
subject: string;
|
|
454
460
|
templateUUID: string;
|
|
461
|
+
to: string;
|
|
455
462
|
body?: string;
|
|
456
463
|
data?: string;
|
|
457
464
|
file?: Blob;
|
|
@@ -528,8 +535,8 @@ export interface UploadPdfTemplateRequest {
|
|
|
528
535
|
}
|
|
529
536
|
|
|
530
537
|
export interface UploadTemplateRequest {
|
|
531
|
-
name: string;
|
|
532
538
|
file: Blob;
|
|
539
|
+
name: string;
|
|
533
540
|
}
|
|
534
541
|
|
|
535
542
|
/**
|
|
@@ -2703,11 +2710,12 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
2703
2710
|
}
|
|
2704
2711
|
|
|
2705
2712
|
/**
|
|
2706
|
-
*
|
|
2713
|
+
* Return a template
|
|
2714
|
+
* Return a template
|
|
2707
2715
|
*/
|
|
2708
|
-
async
|
|
2716
|
+
async getTemplateRaw(requestParameters: GetTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>> {
|
|
2709
2717
|
if (requestParameters.id === null || requestParameters.id === undefined) {
|
|
2710
|
-
throw new runtime.RequiredError('id','Required parameter requestParameters.id was null or undefined when calling
|
|
2718
|
+
throw new runtime.RequiredError('id','Required parameter requestParameters.id was null or undefined when calling getTemplate.');
|
|
2711
2719
|
}
|
|
2712
2720
|
|
|
2713
2721
|
const queryParameters: any = {};
|
|
@@ -2733,19 +2741,29 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
2733
2741
|
}
|
|
2734
2742
|
|
|
2735
2743
|
/**
|
|
2736
|
-
*
|
|
2744
|
+
* Return a template
|
|
2745
|
+
* Return a template
|
|
2737
2746
|
*/
|
|
2738
|
-
async
|
|
2739
|
-
const response = await this.
|
|
2747
|
+
async getTemplate(requestParameters: GetTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string> {
|
|
2748
|
+
const response = await this.getTemplateRaw(requestParameters, initOverrides);
|
|
2740
2749
|
return await response.value();
|
|
2741
2750
|
}
|
|
2742
2751
|
|
|
2743
2752
|
/**
|
|
2744
|
-
*
|
|
2753
|
+
* Return all templates
|
|
2754
|
+
* Return all templates
|
|
2745
2755
|
*/
|
|
2746
|
-
async getTemplatesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
2756
|
+
async getTemplatesRaw(requestParameters: GetTemplatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedEmailTemplateDTO>> {
|
|
2747
2757
|
const queryParameters: any = {};
|
|
2748
2758
|
|
|
2759
|
+
if (requestParameters.page !== undefined) {
|
|
2760
|
+
queryParameters['page'] = requestParameters.page;
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
if (requestParameters.pageSize !== undefined) {
|
|
2764
|
+
queryParameters['pageSize'] = requestParameters.pageSize;
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2749
2767
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
2750
2768
|
|
|
2751
2769
|
if (this.configuration && this.configuration.apiKey) {
|
|
@@ -2759,14 +2777,15 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
2759
2777
|
query: queryParameters,
|
|
2760
2778
|
}, initOverrides);
|
|
2761
2779
|
|
|
2762
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue
|
|
2780
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => PaginatedEmailTemplateDTOFromJSON(jsonValue));
|
|
2763
2781
|
}
|
|
2764
2782
|
|
|
2765
2783
|
/**
|
|
2766
|
-
*
|
|
2784
|
+
* Return all templates
|
|
2785
|
+
* Return all templates
|
|
2767
2786
|
*/
|
|
2768
|
-
async getTemplates(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
2769
|
-
const response = await this.getTemplatesRaw(initOverrides);
|
|
2787
|
+
async getTemplates(requestParameters: GetTemplatesRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedEmailTemplateDTO> {
|
|
2788
|
+
const response = await this.getTemplatesRaw(requestParameters, initOverrides);
|
|
2770
2789
|
return await response.value();
|
|
2771
2790
|
}
|
|
2772
2791
|
|
|
@@ -2986,6 +3005,52 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
2986
3005
|
return await response.value();
|
|
2987
3006
|
}
|
|
2988
3007
|
|
|
3008
|
+
/**
|
|
3009
|
+
* Mark a client invoice as paid
|
|
3010
|
+
* Mark a client invoice as paid with the specified date and time
|
|
3011
|
+
*/
|
|
3012
|
+
async markInvoiceAsPaidRaw(requestParameters: MarkInvoiceAsPaidRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
3013
|
+
if (requestParameters.clientId === null || requestParameters.clientId === undefined) {
|
|
3014
|
+
throw new runtime.RequiredError('clientId','Required parameter requestParameters.clientId was null or undefined when calling markInvoiceAsPaid.');
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
if (requestParameters.invoiceId === null || requestParameters.invoiceId === undefined) {
|
|
3018
|
+
throw new runtime.RequiredError('invoiceId','Required parameter requestParameters.invoiceId was null or undefined when calling markInvoiceAsPaid.');
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
if (requestParameters.markInvoicePaidDTO === null || requestParameters.markInvoicePaidDTO === undefined) {
|
|
3022
|
+
throw new runtime.RequiredError('markInvoicePaidDTO','Required parameter requestParameters.markInvoicePaidDTO was null or undefined when calling markInvoiceAsPaid.');
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
const queryParameters: any = {};
|
|
3026
|
+
|
|
3027
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
3028
|
+
|
|
3029
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
3030
|
+
|
|
3031
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
3032
|
+
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // auth0Authorizer authentication
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
const response = await this.request({
|
|
3036
|
+
path: `/clients/{clientId}/invoices/{invoiceId}/mark-paid`.replace(`{${"clientId"}}`, encodeURIComponent(String(requestParameters.clientId))).replace(`{${"invoiceId"}}`, encodeURIComponent(String(requestParameters.invoiceId))),
|
|
3037
|
+
method: 'POST',
|
|
3038
|
+
headers: headerParameters,
|
|
3039
|
+
query: queryParameters,
|
|
3040
|
+
body: MarkInvoicePaidDTOToJSON(requestParameters.markInvoicePaidDTO),
|
|
3041
|
+
}, initOverrides);
|
|
3042
|
+
|
|
3043
|
+
return new runtime.VoidApiResponse(response);
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
/**
|
|
3047
|
+
* Mark a client invoice as paid
|
|
3048
|
+
* Mark a client invoice as paid with the specified date and time
|
|
3049
|
+
*/
|
|
3050
|
+
async markInvoiceAsPaid(requestParameters: MarkInvoiceAsPaidRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
3051
|
+
await this.markInvoiceAsPaidRaw(requestParameters, initOverrides);
|
|
3052
|
+
}
|
|
3053
|
+
|
|
2989
3054
|
/**
|
|
2990
3055
|
* Open a sent timesheet
|
|
2991
3056
|
* Open a sent timesheet
|
|
@@ -3059,50 +3124,14 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3059
3124
|
}
|
|
3060
3125
|
|
|
3061
3126
|
/**
|
|
3062
|
-
*
|
|
3063
|
-
|
|
3064
|
-
async sdkTestRaw(requestParameters: SdkTestRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SDKTestResponseDTO>> {
|
|
3065
|
-
if (requestParameters.sDKTestRequestDTO === null || requestParameters.sDKTestRequestDTO === undefined) {
|
|
3066
|
-
throw new runtime.RequiredError('sDKTestRequestDTO','Required parameter requestParameters.sDKTestRequestDTO was null or undefined when calling sdkTest.');
|
|
3067
|
-
}
|
|
3068
|
-
|
|
3069
|
-
const queryParameters: any = {};
|
|
3070
|
-
|
|
3071
|
-
const headerParameters: runtime.HTTPHeaders = {};
|
|
3072
|
-
|
|
3073
|
-
headerParameters['Content-Type'] = 'application/json';
|
|
3074
|
-
|
|
3075
|
-
const response = await this.request({
|
|
3076
|
-
path: `/sdkTest`,
|
|
3077
|
-
method: 'POST',
|
|
3078
|
-
headers: headerParameters,
|
|
3079
|
-
query: queryParameters,
|
|
3080
|
-
body: SDKTestRequestDTOToJSON(requestParameters.sDKTestRequestDTO),
|
|
3081
|
-
}, initOverrides);
|
|
3082
|
-
|
|
3083
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => SDKTestResponseDTOFromJSON(jsonValue));
|
|
3084
|
-
}
|
|
3085
|
-
|
|
3086
|
-
/**
|
|
3087
|
-
*
|
|
3088
|
-
*/
|
|
3089
|
-
async sdkTest(requestParameters: SdkTestRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SDKTestResponseDTO> {
|
|
3090
|
-
const response = await this.sdkTestRaw(requestParameters, initOverrides);
|
|
3091
|
-
return await response.value();
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
/**
|
|
3095
|
-
*
|
|
3127
|
+
* Send an email
|
|
3128
|
+
* Send an email
|
|
3096
3129
|
*/
|
|
3097
3130
|
async sendEmailRaw(requestParameters: SendEmailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
3098
3131
|
if (requestParameters.from === null || requestParameters.from === undefined) {
|
|
3099
3132
|
throw new runtime.RequiredError('from','Required parameter requestParameters.from was null or undefined when calling sendEmail.');
|
|
3100
3133
|
}
|
|
3101
3134
|
|
|
3102
|
-
if (requestParameters.to === null || requestParameters.to === undefined) {
|
|
3103
|
-
throw new runtime.RequiredError('to','Required parameter requestParameters.to was null or undefined when calling sendEmail.');
|
|
3104
|
-
}
|
|
3105
|
-
|
|
3106
3135
|
if (requestParameters.subject === null || requestParameters.subject === undefined) {
|
|
3107
3136
|
throw new runtime.RequiredError('subject','Required parameter requestParameters.subject was null or undefined when calling sendEmail.');
|
|
3108
3137
|
}
|
|
@@ -3111,6 +3140,10 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3111
3140
|
throw new runtime.RequiredError('templateUUID','Required parameter requestParameters.templateUUID was null or undefined when calling sendEmail.');
|
|
3112
3141
|
}
|
|
3113
3142
|
|
|
3143
|
+
if (requestParameters.to === null || requestParameters.to === undefined) {
|
|
3144
|
+
throw new runtime.RequiredError('to','Required parameter requestParameters.to was null or undefined when calling sendEmail.');
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3114
3147
|
const queryParameters: any = {};
|
|
3115
3148
|
|
|
3116
3149
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -3131,32 +3164,32 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3131
3164
|
formParams = new URLSearchParams();
|
|
3132
3165
|
}
|
|
3133
3166
|
|
|
3134
|
-
if (requestParameters.
|
|
3135
|
-
formParams.append('
|
|
3167
|
+
if (requestParameters.body !== undefined) {
|
|
3168
|
+
formParams.append('body', requestParameters.body as any);
|
|
3136
3169
|
}
|
|
3137
3170
|
|
|
3138
|
-
if (requestParameters.
|
|
3139
|
-
formParams.append('
|
|
3171
|
+
if (requestParameters.data !== undefined) {
|
|
3172
|
+
formParams.append('data', requestParameters.data as any);
|
|
3140
3173
|
}
|
|
3141
3174
|
|
|
3142
|
-
if (requestParameters.
|
|
3143
|
-
formParams.append('
|
|
3175
|
+
if (requestParameters.file !== undefined) {
|
|
3176
|
+
formParams.append('file', requestParameters.file as any);
|
|
3144
3177
|
}
|
|
3145
3178
|
|
|
3146
|
-
if (requestParameters.
|
|
3147
|
-
formParams.append('
|
|
3179
|
+
if (requestParameters.from !== undefined) {
|
|
3180
|
+
formParams.append('from', requestParameters.from as any);
|
|
3148
3181
|
}
|
|
3149
3182
|
|
|
3150
|
-
if (requestParameters.
|
|
3151
|
-
formParams.append('
|
|
3183
|
+
if (requestParameters.subject !== undefined) {
|
|
3184
|
+
formParams.append('subject', requestParameters.subject as any);
|
|
3152
3185
|
}
|
|
3153
3186
|
|
|
3154
3187
|
if (requestParameters.templateUUID !== undefined) {
|
|
3155
3188
|
formParams.append('templateUUID', requestParameters.templateUUID as any);
|
|
3156
3189
|
}
|
|
3157
3190
|
|
|
3158
|
-
if (requestParameters.
|
|
3159
|
-
formParams.append('
|
|
3191
|
+
if (requestParameters.to !== undefined) {
|
|
3192
|
+
formParams.append('to', requestParameters.to as any);
|
|
3160
3193
|
}
|
|
3161
3194
|
|
|
3162
3195
|
const response = await this.request({
|
|
@@ -3171,7 +3204,8 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3171
3204
|
}
|
|
3172
3205
|
|
|
3173
3206
|
/**
|
|
3174
|
-
*
|
|
3207
|
+
* Send an email
|
|
3208
|
+
* Send an email
|
|
3175
3209
|
*/
|
|
3176
3210
|
async sendEmail(requestParameters: SendEmailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
3177
3211
|
await this.sendEmailRaw(requestParameters, initOverrides);
|
|
@@ -3763,17 +3797,18 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3763
3797
|
}
|
|
3764
3798
|
|
|
3765
3799
|
/**
|
|
3766
|
-
*
|
|
3800
|
+
* Upload a template
|
|
3801
|
+
* Upload a template
|
|
3767
3802
|
*/
|
|
3768
|
-
async uploadTemplateRaw(requestParameters: UploadTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
3769
|
-
if (requestParameters.name === null || requestParameters.name === undefined) {
|
|
3770
|
-
throw new runtime.RequiredError('name','Required parameter requestParameters.name was null or undefined when calling uploadTemplate.');
|
|
3771
|
-
}
|
|
3772
|
-
|
|
3803
|
+
async uploadTemplateRaw(requestParameters: UploadTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<EmailTemplateDTO>> {
|
|
3773
3804
|
if (requestParameters.file === null || requestParameters.file === undefined) {
|
|
3774
3805
|
throw new runtime.RequiredError('file','Required parameter requestParameters.file was null or undefined when calling uploadTemplate.');
|
|
3775
3806
|
}
|
|
3776
3807
|
|
|
3808
|
+
if (requestParameters.name === null || requestParameters.name === undefined) {
|
|
3809
|
+
throw new runtime.RequiredError('name','Required parameter requestParameters.name was null or undefined when calling uploadTemplate.');
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3777
3812
|
const queryParameters: any = {};
|
|
3778
3813
|
|
|
3779
3814
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -3798,14 +3833,14 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3798
3833
|
formParams = new URLSearchParams();
|
|
3799
3834
|
}
|
|
3800
3835
|
|
|
3801
|
-
if (requestParameters.name !== undefined) {
|
|
3802
|
-
formParams.append('name', requestParameters.name as any);
|
|
3803
|
-
}
|
|
3804
|
-
|
|
3805
3836
|
if (requestParameters.file !== undefined) {
|
|
3806
3837
|
formParams.append('file', requestParameters.file as any);
|
|
3807
3838
|
}
|
|
3808
3839
|
|
|
3840
|
+
if (requestParameters.name !== undefined) {
|
|
3841
|
+
formParams.append('name', requestParameters.name as any);
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3809
3844
|
const response = await this.request({
|
|
3810
3845
|
path: `/templates`,
|
|
3811
3846
|
method: 'POST',
|
|
@@ -3814,13 +3849,14 @@ export class TuixTimesheetsClientApi extends runtime.BaseAPI {
|
|
|
3814
3849
|
body: formParams,
|
|
3815
3850
|
}, initOverrides);
|
|
3816
3851
|
|
|
3817
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
3852
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => EmailTemplateDTOFromJSON(jsonValue));
|
|
3818
3853
|
}
|
|
3819
3854
|
|
|
3820
3855
|
/**
|
|
3821
|
-
*
|
|
3856
|
+
* Upload a template
|
|
3857
|
+
* Upload a template
|
|
3822
3858
|
*/
|
|
3823
|
-
async uploadTemplate(requestParameters: UploadTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
3859
|
+
async uploadTemplate(requestParameters: UploadTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<EmailTemplateDTO> {
|
|
3824
3860
|
const response = await this.uploadTemplateRaw(requestParameters, initOverrides);
|
|
3825
3861
|
return await response.value();
|
|
3826
3862
|
}
|
|
@@ -37,6 +37,7 @@ function ClientInvoiceDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
|
|
38
38
|
'net': !(0, runtime_1.exists)(json, 'net') ? undefined : json['net'],
|
|
39
39
|
'number': !(0, runtime_1.exists)(json, 'number') ? undefined : json['number'],
|
|
40
|
+
'paidDate': !(0, runtime_1.exists)(json, 'paidDate') ? undefined : json['paidDate'],
|
|
40
41
|
'vatPercentage': !(0, runtime_1.exists)(json, 'vatPercentage') ? undefined : json['vatPercentage'],
|
|
41
42
|
};
|
|
42
43
|
}
|
|
@@ -54,6 +55,7 @@ function ClientInvoiceDTOToJSON(value) {
|
|
|
54
55
|
'id': value.id,
|
|
55
56
|
'net': value.net,
|
|
56
57
|
'number': value.number,
|
|
58
|
+
'paidDate': value.paidDate,
|
|
57
59
|
'vatPercentage': value.vatPercentage,
|
|
58
60
|
};
|
|
59
61
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClientInvoiceDTO.js","sourceRoot":"","sources":["ClientInvoiceDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;
|
|
1
|
+
{"version":3,"file":"ClientInvoiceDTO.js","sourceRoot":"","sources":["ClientInvoiceDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAmD/C;;GAEG;AACH,SAAgB,0BAA0B,CAAC,KAAa;IACpD,IAAI,UAAU,GAAG,IAAI,CAAC;IAEtB,OAAO,UAAU,CAAC;AACtB,CAAC;AAJD,gEAIC;AAED,SAAgB,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAFD,4DAEC;AAED,SAAgB,6BAA6B,CAAC,IAAS,EAAE,mBAA4B;IACjF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACvE,OAAO,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;QAC3D,IAAI,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QAClD,KAAK,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC;QACrD,QAAQ,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC9D,UAAU,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACpE,eAAe,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC;KACtF,CAAC;AACN,CAAC;AAdD,sEAcC;AAED,SAAgB,sBAAsB,CAAC,KAA+B;IAClE,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACtB,OAAO,SAAS,CAAC;IACrB,CAAC;IACD,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;QACjB,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,SAAS;QAC5B,OAAO,EAAE,KAAK,CAAC,KAAK;QACpB,IAAI,EAAE,KAAK,CAAC,EAAE;QACd,KAAK,EAAE,KAAK,CAAC,GAAG;QAChB,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,UAAU,EAAE,KAAK,CAAC,QAAQ;QAC1B,eAAe,EAAE,KAAK,CAAC,aAAa;KACvC,CAAC;AACN,CAAC;AAjBD,wDAiBC"}
|
|
@@ -49,6 +49,12 @@ export interface ClientInvoiceDTO {
|
|
|
49
49
|
* @memberof ClientInvoiceDTO
|
|
50
50
|
*/
|
|
51
51
|
number?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof ClientInvoiceDTO
|
|
56
|
+
*/
|
|
57
|
+
paidDate?: string;
|
|
52
58
|
/**
|
|
53
59
|
*
|
|
54
60
|
* @type {number}
|
|
@@ -81,6 +87,7 @@ export function ClientInvoiceDTOFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
81
87
|
'id': !exists(json, 'id') ? undefined : json['id'],
|
|
82
88
|
'net': !exists(json, 'net') ? undefined : json['net'],
|
|
83
89
|
'number': !exists(json, 'number') ? undefined : json['number'],
|
|
90
|
+
'paidDate': !exists(json, 'paidDate') ? undefined : json['paidDate'],
|
|
84
91
|
'vatPercentage': !exists(json, 'vatPercentage') ? undefined : json['vatPercentage'],
|
|
85
92
|
};
|
|
86
93
|
}
|
|
@@ -99,6 +106,7 @@ export function ClientInvoiceDTOToJSON(value?: ClientInvoiceDTO | null): any {
|
|
|
99
106
|
'id': value.id,
|
|
100
107
|
'net': value.net,
|
|
101
108
|
'number': value.number,
|
|
109
|
+
'paidDate': value.paidDate,
|
|
102
110
|
'vatPercentage': value.vatPercentage,
|
|
103
111
|
};
|
|
104
112
|
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Tuix Services
|
|
6
|
+
* Tuix Services API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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.EmailTemplateDTOToJSON = exports.EmailTemplateDTOFromJSONTyped = exports.EmailTemplateDTOFromJSON = exports.instanceOfEmailTemplateDTO = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the EmailTemplateDTO interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfEmailTemplateDTO(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
return isInstance;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfEmailTemplateDTO = instanceOfEmailTemplateDTO;
|
|
26
|
+
function EmailTemplateDTOFromJSON(json) {
|
|
27
|
+
return EmailTemplateDTOFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.EmailTemplateDTOFromJSON = EmailTemplateDTOFromJSON;
|
|
30
|
+
function EmailTemplateDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if ((json === undefined) || (json === null)) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'createdAt': !(0, runtime_1.exists)(json, 'createdAt') ? undefined : json['createdAt'],
|
|
36
|
+
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
|
|
37
|
+
'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
|
|
38
|
+
'updatedAt': !(0, runtime_1.exists)(json, 'updatedAt') ? undefined : json['updatedAt'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.EmailTemplateDTOFromJSONTyped = EmailTemplateDTOFromJSONTyped;
|
|
42
|
+
function EmailTemplateDTOToJSON(value) {
|
|
43
|
+
if (value === undefined) {
|
|
44
|
+
return undefined;
|
|
45
|
+
}
|
|
46
|
+
if (value === null) {
|
|
47
|
+
return null;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'createdAt': value.createdAt,
|
|
51
|
+
'id': value.id,
|
|
52
|
+
'name': value.name,
|
|
53
|
+
'updatedAt': value.updatedAt,
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
exports.EmailTemplateDTOToJSON = EmailTemplateDTOToJSON;
|
|
57
|
+
//# sourceMappingURL=EmailTemplateDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmailTemplateDTO.js","sourceRoot":"","sources":["EmailTemplateDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAiC/C;;GAEG;AACH,SAAgB,0BAA0B,CAAC,KAAa;IACpD,IAAI,UAAU,GAAG,IAAI,CAAC;IAEtB,OAAO,UAAU,CAAC;AACtB,CAAC;AAJD,gEAIC;AAED,SAAgB,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAFD,4DAEC;AAED,SAAgB,6BAA6B,CAAC,IAAS,EAAE,mBAA4B;IACjF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACvE,IAAI,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QAClD,MAAM,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACxD,WAAW,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;KAC1E,CAAC;AACN,CAAC;AAXD,sEAWC;AAED,SAAgB,sBAAsB,CAAC,KAA+B;IAClE,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACtB,OAAO,SAAS,CAAC;IACrB,CAAC;IACD,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;QACjB,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,SAAS;QAC5B,IAAI,EAAE,KAAK,CAAC,EAAE;QACd,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,WAAW,EAAE,KAAK,CAAC,SAAS;KAC/B,CAAC;AACN,CAAC;AAdD,wDAcC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Tuix Services
|
|
5
|
+
* Tuix Services API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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 { exists, mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface EmailTemplateDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface EmailTemplateDTO {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof EmailTemplateDTO
|
|
26
|
+
*/
|
|
27
|
+
createdAt?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof EmailTemplateDTO
|
|
32
|
+
*/
|
|
33
|
+
id?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof EmailTemplateDTO
|
|
38
|
+
*/
|
|
39
|
+
name?: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof EmailTemplateDTO
|
|
44
|
+
*/
|
|
45
|
+
updatedAt?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the EmailTemplateDTO interface.
|
|
50
|
+
*/
|
|
51
|
+
export function instanceOfEmailTemplateDTO(value: object): boolean {
|
|
52
|
+
let isInstance = true;
|
|
53
|
+
|
|
54
|
+
return isInstance;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function EmailTemplateDTOFromJSON(json: any): EmailTemplateDTO {
|
|
58
|
+
return EmailTemplateDTOFromJSONTyped(json, false);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function EmailTemplateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailTemplateDTO {
|
|
62
|
+
if ((json === undefined) || (json === null)) {
|
|
63
|
+
return json;
|
|
64
|
+
}
|
|
65
|
+
return {
|
|
66
|
+
|
|
67
|
+
'createdAt': !exists(json, 'createdAt') ? undefined : json['createdAt'],
|
|
68
|
+
'id': !exists(json, 'id') ? undefined : json['id'],
|
|
69
|
+
'name': !exists(json, 'name') ? undefined : json['name'],
|
|
70
|
+
'updatedAt': !exists(json, 'updatedAt') ? undefined : json['updatedAt'],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export function EmailTemplateDTOToJSON(value?: EmailTemplateDTO | null): any {
|
|
75
|
+
if (value === undefined) {
|
|
76
|
+
return undefined;
|
|
77
|
+
}
|
|
78
|
+
if (value === null) {
|
|
79
|
+
return null;
|
|
80
|
+
}
|
|
81
|
+
return {
|
|
82
|
+
|
|
83
|
+
'createdAt': value.createdAt,
|
|
84
|
+
'id': value.id,
|
|
85
|
+
'name': value.name,
|
|
86
|
+
'updatedAt': value.updatedAt,
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Tuix Services
|
|
6
|
+
* Tuix Services API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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.MarkInvoicePaidDTOToJSON = exports.MarkInvoicePaidDTOFromJSONTyped = exports.MarkInvoicePaidDTOFromJSON = exports.instanceOfMarkInvoicePaidDTO = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the MarkInvoicePaidDTO interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfMarkInvoicePaidDTO(value) {
|
|
21
|
+
let isInstance = true;
|
|
22
|
+
isInstance = isInstance && "paidDate" in value;
|
|
23
|
+
return isInstance;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfMarkInvoicePaidDTO = instanceOfMarkInvoicePaidDTO;
|
|
26
|
+
function MarkInvoicePaidDTOFromJSON(json) {
|
|
27
|
+
return MarkInvoicePaidDTOFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.MarkInvoicePaidDTOFromJSON = MarkInvoicePaidDTOFromJSON;
|
|
30
|
+
function MarkInvoicePaidDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if ((json === undefined) || (json === null)) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'paidDate': json['paidDate'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
exports.MarkInvoicePaidDTOFromJSONTyped = MarkInvoicePaidDTOFromJSONTyped;
|
|
39
|
+
function MarkInvoicePaidDTOToJSON(value) {
|
|
40
|
+
if (value === undefined) {
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
if (value === null) {
|
|
44
|
+
return null;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'paidDate': value.paidDate,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
exports.MarkInvoicePaidDTOToJSON = MarkInvoicePaidDTOToJSON;
|
|
51
|
+
//# sourceMappingURL=MarkInvoicePaidDTO.js.map
|