@ayasofyazilim/saas 0.0.85 → 0.0.87
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/.github/workflows/update.yaml +22 -3
- package/AdministrationService/schemas.gen.ts +47 -23
- package/AdministrationService/services.gen.ts +8 -27
- package/AdministrationService/types.gen.ts +20 -47
- package/TagService/TagServiceClient.ts +3 -0
- package/TagService/schemas.gen.ts +487 -5
- package/TagService/services.gen.ts +126 -14
- package/TagService/types.gen.ts +241 -17
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
4
|
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiTagServiceTagData, PostApiTagServiceTagResponse, GetApiTagServiceTagData, GetApiTagServiceTagResponse, PutApiTagServiceTagByIdData, PutApiTagServiceTagByIdResponse, DeleteApiTagServiceTagByIdData, DeleteApiTagServiceTagByIdResponse, GetApiTagServiceTagByIdDetailData, GetApiTagServiceTagByIdDetailResponse,
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiTagServiceTagData, PostApiTagServiceTagResponse, GetApiTagServiceTagData, GetApiTagServiceTagResponse, PutApiTagServiceTagByIdData, PutApiTagServiceTagByIdResponse, DeleteApiTagServiceTagByIdData, DeleteApiTagServiceTagByIdResponse, GetApiTagServiceTagByIdDetailData, GetApiTagServiceTagByIdDetailResponse, GetApiTagServiceTagTagsRefundData, GetApiTagServiceTagTagsRefundResponse, GetApiTagServiceTagSummaryData, GetApiTagServiceTagSummaryResponse, GetApiTagServiceTagTagsRefundFeesData, GetApiTagServiceTagTagsRefundFeesResponse, GetIntegrationApiTagsSumData, GetIntegrationApiTagsSumResponse, PutIntegrationApiTagsRefundData, PutIntegrationApiTagsRefundResponse, GetIntegrationApiTagsDetailsListForRefundData, GetIntegrationApiTagsDetailsListForRefundResponse, GetIntegrationApiTagsValidListForVatStatementWithTenantFilterOffResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -252,16 +252,26 @@ export class TagService {
|
|
|
252
252
|
|
|
253
253
|
/**
|
|
254
254
|
* @param data The data for the request.
|
|
255
|
-
* @param data.
|
|
256
|
-
* @
|
|
255
|
+
* @param data.travellerDocumentNumber
|
|
256
|
+
* @param data.isExportValidated
|
|
257
|
+
* @param data.refundType
|
|
258
|
+
* @param data.refundPointId
|
|
259
|
+
* @param data.skipCount
|
|
260
|
+
* @param data.maxResultCount
|
|
261
|
+
* @returns PagedResultDto_TagListItemDto Success
|
|
257
262
|
* @throws ApiError
|
|
258
263
|
*/
|
|
259
|
-
public
|
|
264
|
+
public getApiTagServiceTagTagsRefund(data: GetApiTagServiceTagTagsRefundData): CancelablePromise<GetApiTagServiceTagTagsRefundResponse> {
|
|
260
265
|
return this.httpRequest.request({
|
|
261
266
|
method: 'GET',
|
|
262
|
-
url: '/api/tag-service/tag/tags-
|
|
267
|
+
url: '/api/tag-service/tag/tags-refund',
|
|
263
268
|
query: {
|
|
264
|
-
|
|
269
|
+
TravellerDocumentNumber: data.travellerDocumentNumber,
|
|
270
|
+
IsExportValidated: data.isExportValidated,
|
|
271
|
+
RefundType: data.refundType,
|
|
272
|
+
RefundPointId: data.refundPointId,
|
|
273
|
+
SkipCount: data.skipCount,
|
|
274
|
+
MaxResultCount: data.maxResultCount
|
|
265
275
|
},
|
|
266
276
|
errors: {
|
|
267
277
|
400: 'Bad Request',
|
|
@@ -332,20 +342,79 @@ export class TagService {
|
|
|
332
342
|
|
|
333
343
|
/**
|
|
334
344
|
* @param data The data for the request.
|
|
335
|
-
* @param data.
|
|
345
|
+
* @param data.tagIds
|
|
346
|
+
* @param data.refundPointId
|
|
347
|
+
* @param data.refundDate
|
|
336
348
|
* @param data.refundType
|
|
337
|
-
* @
|
|
338
|
-
* @returns unknown Success
|
|
349
|
+
* @returns UniRefund_TagService_Tags_TagRefundFeesDto Success
|
|
339
350
|
* @throws ApiError
|
|
340
351
|
*/
|
|
341
|
-
public
|
|
352
|
+
public getApiTagServiceTagTagsRefundFees(data: GetApiTagServiceTagTagsRefundFeesData): CancelablePromise<GetApiTagServiceTagTagsRefundFeesResponse> {
|
|
342
353
|
return this.httpRequest.request({
|
|
343
|
-
method: '
|
|
344
|
-
url: '/api/tag-service/tag/tags-refund',
|
|
354
|
+
method: 'GET',
|
|
355
|
+
url: '/api/tag-service/tag/tags-refund-fees',
|
|
356
|
+
query: {
|
|
357
|
+
TagIds: data.tagIds,
|
|
358
|
+
RefundPointId: data.refundPointId,
|
|
359
|
+
RefundDate: data.refundDate,
|
|
360
|
+
RefundType: data.refundType
|
|
361
|
+
},
|
|
362
|
+
errors: {
|
|
363
|
+
400: 'Bad Request',
|
|
364
|
+
401: 'Unauthorized',
|
|
365
|
+
403: 'Forbidden',
|
|
366
|
+
404: 'Not Found',
|
|
367
|
+
500: 'Server Error',
|
|
368
|
+
501: 'Server Error'
|
|
369
|
+
}
|
|
370
|
+
});
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export class TagIntegrationService {
|
|
376
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* @param data The data for the request.
|
|
380
|
+
* @param data.ids
|
|
381
|
+
* @param data.refundPointId
|
|
382
|
+
* @param data.refundDate
|
|
383
|
+
* @param data.refundType
|
|
384
|
+
* @returns UniRefund_TagService_Tags_TagSumTagsResponseDto Success
|
|
385
|
+
* @throws ApiError
|
|
386
|
+
*/
|
|
387
|
+
public getIntegrationApiTagsSum(data: GetIntegrationApiTagsSumData): CancelablePromise<GetIntegrationApiTagsSumResponse> {
|
|
388
|
+
return this.httpRequest.request({
|
|
389
|
+
method: 'GET',
|
|
390
|
+
url: '/integration-api/tags/sum',
|
|
345
391
|
query: {
|
|
346
|
-
|
|
347
|
-
|
|
392
|
+
Ids: data.ids,
|
|
393
|
+
RefundPointId: data.refundPointId,
|
|
394
|
+
RefundDate: data.refundDate,
|
|
395
|
+
RefundType: data.refundType
|
|
348
396
|
},
|
|
397
|
+
errors: {
|
|
398
|
+
400: 'Bad Request',
|
|
399
|
+
401: 'Unauthorized',
|
|
400
|
+
403: 'Forbidden',
|
|
401
|
+
404: 'Not Found',
|
|
402
|
+
500: 'Server Error',
|
|
403
|
+
501: 'Server Error'
|
|
404
|
+
}
|
|
405
|
+
});
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* @param data The data for the request.
|
|
410
|
+
* @param data.requestBody
|
|
411
|
+
* @returns UniRefund_TagService_Tags_SetTagRefundResponseDto Success
|
|
412
|
+
* @throws ApiError
|
|
413
|
+
*/
|
|
414
|
+
public putIntegrationApiTagsRefund(data: PutIntegrationApiTagsRefundData = {}): CancelablePromise<PutIntegrationApiTagsRefundResponse> {
|
|
415
|
+
return this.httpRequest.request({
|
|
416
|
+
method: 'PUT',
|
|
417
|
+
url: '/integration-api/tags/refund',
|
|
349
418
|
body: data.requestBody,
|
|
350
419
|
mediaType: 'application/json',
|
|
351
420
|
errors: {
|
|
@@ -359,4 +428,47 @@ export class TagService {
|
|
|
359
428
|
});
|
|
360
429
|
}
|
|
361
430
|
|
|
431
|
+
/**
|
|
432
|
+
* @param data The data for the request.
|
|
433
|
+
* @param data.tagIds
|
|
434
|
+
* @returns UniRefund_TagService_Tags_TagDetailForRefundDto Success
|
|
435
|
+
* @throws ApiError
|
|
436
|
+
*/
|
|
437
|
+
public getIntegrationApiTagsDetailsListForRefund(data: GetIntegrationApiTagsDetailsListForRefundData = {}): CancelablePromise<GetIntegrationApiTagsDetailsListForRefundResponse> {
|
|
438
|
+
return this.httpRequest.request({
|
|
439
|
+
method: 'GET',
|
|
440
|
+
url: '/integration-api/tags/details-list-for-refund',
|
|
441
|
+
query: {
|
|
442
|
+
tagIds: data.tagIds
|
|
443
|
+
},
|
|
444
|
+
errors: {
|
|
445
|
+
400: 'Bad Request',
|
|
446
|
+
401: 'Unauthorized',
|
|
447
|
+
403: 'Forbidden',
|
|
448
|
+
404: 'Not Found',
|
|
449
|
+
500: 'Server Error',
|
|
450
|
+
501: 'Server Error'
|
|
451
|
+
}
|
|
452
|
+
});
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* @returns UniRefund_TagService_Tags_TagValidForVATStatementResponseDto Success
|
|
457
|
+
* @throws ApiError
|
|
458
|
+
*/
|
|
459
|
+
public getIntegrationApiTagsValidListForVatStatementWithTenantFilterOff(): CancelablePromise<GetIntegrationApiTagsValidListForVatStatementWithTenantFilterOffResponse> {
|
|
460
|
+
return this.httpRequest.request({
|
|
461
|
+
method: 'GET',
|
|
462
|
+
url: '/integration-api/tags/valid-list-for-vat-statement-with-tenant-filter-off',
|
|
463
|
+
errors: {
|
|
464
|
+
400: 'Bad Request',
|
|
465
|
+
401: 'Unauthorized',
|
|
466
|
+
403: 'Forbidden',
|
|
467
|
+
404: 'Not Found',
|
|
468
|
+
500: 'Server Error',
|
|
469
|
+
501: 'Server Error'
|
|
470
|
+
}
|
|
471
|
+
});
|
|
472
|
+
}
|
|
473
|
+
|
|
362
474
|
}
|
package/TagService/types.gen.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
+
export type PagedResultDto_TagListItemDto = {
|
|
4
|
+
items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
|
|
5
|
+
totalCount?: number;
|
|
6
|
+
};
|
|
7
|
+
|
|
3
8
|
export type TagPagedAndSortedResultResponseDto_TagListItemDto = {
|
|
4
9
|
items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
|
|
5
10
|
totalCount?: number;
|
|
@@ -105,11 +110,24 @@ export type UniRefund_TagService_Tags_ProductGroupDto = {
|
|
|
105
110
|
|
|
106
111
|
export type UniRefund_TagService_Tags_RefundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
107
112
|
|
|
108
|
-
export type
|
|
109
|
-
|
|
110
|
-
|
|
113
|
+
export type UniRefund_TagService_Tags_SetTagRefundRequestDto = {
|
|
114
|
+
tagRefunds?: Array<UniRefund_TagService_Tags_SetTagRefundRequestItemDto> | null;
|
|
115
|
+
refundId?: string;
|
|
116
|
+
refundType?: UniRefund_TagService_Tags_RefundType;
|
|
117
|
+
refundDate?: string;
|
|
118
|
+
status?: UniRefund_TagService_Tags_TagStatusType;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
export type UniRefund_TagService_Tags_SetTagRefundRequestItemDto = {
|
|
122
|
+
id?: string;
|
|
111
123
|
refundAmount?: number;
|
|
112
124
|
refundCurrency?: string | null;
|
|
125
|
+
refundRate?: number;
|
|
126
|
+
travellerFeeAmount?: number;
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
export type UniRefund_TagService_Tags_SetTagRefundResponseDto = {
|
|
130
|
+
earlyRefundExpiryDate?: string | null;
|
|
113
131
|
};
|
|
114
132
|
|
|
115
133
|
export type UniRefund_TagService_Tags_TagDetailDto = {
|
|
@@ -128,6 +146,19 @@ export type UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
128
146
|
totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
|
|
129
147
|
};
|
|
130
148
|
|
|
149
|
+
export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
|
|
150
|
+
id?: string;
|
|
151
|
+
tagNumber: string;
|
|
152
|
+
status: UniRefund_TagService_Tags_TagStatusType;
|
|
153
|
+
issueDate: string;
|
|
154
|
+
expireDate: string;
|
|
155
|
+
merchant: UniRefund_TagService_Merchants_MerchantDetailDto;
|
|
156
|
+
exportValidation: UniRefund_TagService_ExportValidations_ExportValidationDto;
|
|
157
|
+
billing: UniRefund_TagService_Billings_BillingDto;
|
|
158
|
+
invoices: Array<UniRefund_TagService_Invoices_InvoiceDto>;
|
|
159
|
+
totals: Array<UniRefund_TagService_Tags_TagTotalDto>;
|
|
160
|
+
};
|
|
161
|
+
|
|
131
162
|
export type UniRefund_TagService_Tags_TagDto = {
|
|
132
163
|
id?: string;
|
|
133
164
|
tagNumber?: string | null;
|
|
@@ -165,8 +196,22 @@ export type UniRefund_TagService_Tags_TagListSummaryDto = {
|
|
|
165
196
|
currency?: string | null;
|
|
166
197
|
};
|
|
167
198
|
|
|
199
|
+
export type UniRefund_TagService_Tags_TagRefundFeesDto = {
|
|
200
|
+
id: string;
|
|
201
|
+
touristFee: number;
|
|
202
|
+
netRefundAmount: number;
|
|
203
|
+
};
|
|
204
|
+
|
|
168
205
|
export type UniRefund_TagService_Tags_TagStatusType = 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
169
206
|
|
|
207
|
+
export type UniRefund_TagService_Tags_TagSumTagsResponseDto = {
|
|
208
|
+
tagRefundFees?: Array<UniRefund_TagService_Tags_TagRefundFeesDto> | null;
|
|
209
|
+
travellerId?: string;
|
|
210
|
+
travellerDocumentNumber?: string | null;
|
|
211
|
+
refundCurrency?: string | null;
|
|
212
|
+
status?: UniRefund_TagService_Tags_TagStatusType;
|
|
213
|
+
};
|
|
214
|
+
|
|
170
215
|
export type UniRefund_TagService_Tags_TagTotalDto = {
|
|
171
216
|
totalType?: UniRefund_TagService_Tags_TotalType;
|
|
172
217
|
amount?: number;
|
|
@@ -174,6 +219,17 @@ export type UniRefund_TagService_Tags_TagTotalDto = {
|
|
|
174
219
|
currency?: string | null;
|
|
175
220
|
};
|
|
176
221
|
|
|
222
|
+
export type UniRefund_TagService_Tags_TagValidForVATStatementResponseDto = {
|
|
223
|
+
tagId?: string;
|
|
224
|
+
tenantId?: string | null;
|
|
225
|
+
tagNumber?: string | null;
|
|
226
|
+
invoiceId?: string | null;
|
|
227
|
+
taxRate?: number | null;
|
|
228
|
+
taxBase?: number;
|
|
229
|
+
taxAmount?: number;
|
|
230
|
+
grandTotal?: number;
|
|
231
|
+
};
|
|
232
|
+
|
|
177
233
|
export type UniRefund_TagService_Tags_TaxTotalDto = {
|
|
178
234
|
taxRate?: number;
|
|
179
235
|
taxTotal?: number;
|
|
@@ -668,11 +724,16 @@ export type GetApiTagServiceTagByIdDetailData = {
|
|
|
668
724
|
|
|
669
725
|
export type GetApiTagServiceTagByIdDetailResponse = UniRefund_TagService_Tags_TagDetailDto;
|
|
670
726
|
|
|
671
|
-
export type
|
|
672
|
-
|
|
727
|
+
export type GetApiTagServiceTagTagsRefundData = {
|
|
728
|
+
isExportValidated: boolean;
|
|
729
|
+
maxResultCount?: number;
|
|
730
|
+
refundPointId: string;
|
|
731
|
+
refundType: UniRefund_TagService_Tags_RefundType;
|
|
732
|
+
skipCount?: number;
|
|
733
|
+
travellerDocumentNumber: string;
|
|
673
734
|
};
|
|
674
735
|
|
|
675
|
-
export type
|
|
736
|
+
export type GetApiTagServiceTagTagsRefundResponse = PagedResultDto_TagListItemDto;
|
|
676
737
|
|
|
677
738
|
export type GetApiTagServiceTagSummaryData = {
|
|
678
739
|
exportEndDate?: string;
|
|
@@ -696,13 +757,37 @@ export type GetApiTagServiceTagSummaryData = {
|
|
|
696
757
|
|
|
697
758
|
export type GetApiTagServiceTagSummaryResponse = UniRefund_TagService_Tags_TagListSummaryDto;
|
|
698
759
|
|
|
699
|
-
export type
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
760
|
+
export type GetApiTagServiceTagTagsRefundFeesData = {
|
|
761
|
+
refundDate: string;
|
|
762
|
+
refundPointId: string;
|
|
763
|
+
refundType: UniRefund_TagService_Tags_RefundType;
|
|
764
|
+
tagIds: Array<(string)>;
|
|
765
|
+
};
|
|
766
|
+
|
|
767
|
+
export type GetApiTagServiceTagTagsRefundFeesResponse = Array<UniRefund_TagService_Tags_TagRefundFeesDto>;
|
|
768
|
+
|
|
769
|
+
export type GetIntegrationApiTagsSumData = {
|
|
770
|
+
ids: Array<(string)>;
|
|
771
|
+
refundDate: string;
|
|
772
|
+
refundPointId: string;
|
|
773
|
+
refundType: UniRefund_TagService_Tags_RefundType;
|
|
703
774
|
};
|
|
704
775
|
|
|
705
|
-
export type
|
|
776
|
+
export type GetIntegrationApiTagsSumResponse = UniRefund_TagService_Tags_TagSumTagsResponseDto;
|
|
777
|
+
|
|
778
|
+
export type PutIntegrationApiTagsRefundData = {
|
|
779
|
+
requestBody?: UniRefund_TagService_Tags_SetTagRefundRequestDto;
|
|
780
|
+
};
|
|
781
|
+
|
|
782
|
+
export type PutIntegrationApiTagsRefundResponse = UniRefund_TagService_Tags_SetTagRefundResponseDto;
|
|
783
|
+
|
|
784
|
+
export type GetIntegrationApiTagsDetailsListForRefundData = {
|
|
785
|
+
tagIds?: Array<(string)>;
|
|
786
|
+
};
|
|
787
|
+
|
|
788
|
+
export type GetIntegrationApiTagsDetailsListForRefundResponse = Array<UniRefund_TagService_Tags_TagDetailForRefundDto>;
|
|
789
|
+
|
|
790
|
+
export type GetIntegrationApiTagsValidListForVatStatementWithTenantFilterOffResponse = Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>;
|
|
706
791
|
|
|
707
792
|
export type $OpenApiTs = {
|
|
708
793
|
'/api/abp/api-definition': {
|
|
@@ -981,14 +1066,14 @@ export type $OpenApiTs = {
|
|
|
981
1066
|
};
|
|
982
1067
|
};
|
|
983
1068
|
};
|
|
984
|
-
'/api/tag-service/tag/tags-
|
|
1069
|
+
'/api/tag-service/tag/tags-refund': {
|
|
985
1070
|
get: {
|
|
986
|
-
req:
|
|
1071
|
+
req: GetApiTagServiceTagTagsRefundData;
|
|
987
1072
|
res: {
|
|
988
1073
|
/**
|
|
989
1074
|
* Success
|
|
990
1075
|
*/
|
|
991
|
-
200:
|
|
1076
|
+
200: PagedResultDto_TagListItemDto;
|
|
992
1077
|
/**
|
|
993
1078
|
* Bad Request
|
|
994
1079
|
*/
|
|
@@ -1051,14 +1136,153 @@ export type $OpenApiTs = {
|
|
|
1051
1136
|
};
|
|
1052
1137
|
};
|
|
1053
1138
|
};
|
|
1054
|
-
'/api/tag-service/tag/tags-refund': {
|
|
1139
|
+
'/api/tag-service/tag/tags-refund-fees': {
|
|
1140
|
+
get: {
|
|
1141
|
+
req: GetApiTagServiceTagTagsRefundFeesData;
|
|
1142
|
+
res: {
|
|
1143
|
+
/**
|
|
1144
|
+
* Success
|
|
1145
|
+
*/
|
|
1146
|
+
200: Array<UniRefund_TagService_Tags_TagRefundFeesDto>;
|
|
1147
|
+
/**
|
|
1148
|
+
* Bad Request
|
|
1149
|
+
*/
|
|
1150
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1151
|
+
/**
|
|
1152
|
+
* Unauthorized
|
|
1153
|
+
*/
|
|
1154
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1155
|
+
/**
|
|
1156
|
+
* Forbidden
|
|
1157
|
+
*/
|
|
1158
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1159
|
+
/**
|
|
1160
|
+
* Not Found
|
|
1161
|
+
*/
|
|
1162
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1163
|
+
/**
|
|
1164
|
+
* Server Error
|
|
1165
|
+
*/
|
|
1166
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1167
|
+
/**
|
|
1168
|
+
* Server Error
|
|
1169
|
+
*/
|
|
1170
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1171
|
+
};
|
|
1172
|
+
};
|
|
1173
|
+
};
|
|
1174
|
+
'/integration-api/tags/sum': {
|
|
1175
|
+
get: {
|
|
1176
|
+
req: GetIntegrationApiTagsSumData;
|
|
1177
|
+
res: {
|
|
1178
|
+
/**
|
|
1179
|
+
* Success
|
|
1180
|
+
*/
|
|
1181
|
+
200: UniRefund_TagService_Tags_TagSumTagsResponseDto;
|
|
1182
|
+
/**
|
|
1183
|
+
* Bad Request
|
|
1184
|
+
*/
|
|
1185
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1186
|
+
/**
|
|
1187
|
+
* Unauthorized
|
|
1188
|
+
*/
|
|
1189
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1190
|
+
/**
|
|
1191
|
+
* Forbidden
|
|
1192
|
+
*/
|
|
1193
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1194
|
+
/**
|
|
1195
|
+
* Not Found
|
|
1196
|
+
*/
|
|
1197
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1198
|
+
/**
|
|
1199
|
+
* Server Error
|
|
1200
|
+
*/
|
|
1201
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1202
|
+
/**
|
|
1203
|
+
* Server Error
|
|
1204
|
+
*/
|
|
1205
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1206
|
+
};
|
|
1207
|
+
};
|
|
1208
|
+
};
|
|
1209
|
+
'/integration-api/tags/refund': {
|
|
1055
1210
|
put: {
|
|
1056
|
-
req:
|
|
1211
|
+
req: PutIntegrationApiTagsRefundData;
|
|
1057
1212
|
res: {
|
|
1058
1213
|
/**
|
|
1059
1214
|
* Success
|
|
1060
1215
|
*/
|
|
1061
|
-
200:
|
|
1216
|
+
200: UniRefund_TagService_Tags_SetTagRefundResponseDto;
|
|
1217
|
+
/**
|
|
1218
|
+
* Bad Request
|
|
1219
|
+
*/
|
|
1220
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1221
|
+
/**
|
|
1222
|
+
* Unauthorized
|
|
1223
|
+
*/
|
|
1224
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1225
|
+
/**
|
|
1226
|
+
* Forbidden
|
|
1227
|
+
*/
|
|
1228
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1229
|
+
/**
|
|
1230
|
+
* Not Found
|
|
1231
|
+
*/
|
|
1232
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1233
|
+
/**
|
|
1234
|
+
* Server Error
|
|
1235
|
+
*/
|
|
1236
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1237
|
+
/**
|
|
1238
|
+
* Server Error
|
|
1239
|
+
*/
|
|
1240
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
};
|
|
1244
|
+
'/integration-api/tags/details-list-for-refund': {
|
|
1245
|
+
get: {
|
|
1246
|
+
req: GetIntegrationApiTagsDetailsListForRefundData;
|
|
1247
|
+
res: {
|
|
1248
|
+
/**
|
|
1249
|
+
* Success
|
|
1250
|
+
*/
|
|
1251
|
+
200: Array<UniRefund_TagService_Tags_TagDetailForRefundDto>;
|
|
1252
|
+
/**
|
|
1253
|
+
* Bad Request
|
|
1254
|
+
*/
|
|
1255
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1256
|
+
/**
|
|
1257
|
+
* Unauthorized
|
|
1258
|
+
*/
|
|
1259
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1260
|
+
/**
|
|
1261
|
+
* Forbidden
|
|
1262
|
+
*/
|
|
1263
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1264
|
+
/**
|
|
1265
|
+
* Not Found
|
|
1266
|
+
*/
|
|
1267
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1268
|
+
/**
|
|
1269
|
+
* Server Error
|
|
1270
|
+
*/
|
|
1271
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1272
|
+
/**
|
|
1273
|
+
* Server Error
|
|
1274
|
+
*/
|
|
1275
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1276
|
+
};
|
|
1277
|
+
};
|
|
1278
|
+
};
|
|
1279
|
+
'/integration-api/tags/valid-list-for-vat-statement-with-tenant-filter-off': {
|
|
1280
|
+
get: {
|
|
1281
|
+
res: {
|
|
1282
|
+
/**
|
|
1283
|
+
* Success
|
|
1284
|
+
*/
|
|
1285
|
+
200: Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>;
|
|
1062
1286
|
/**
|
|
1063
1287
|
* Bad Request
|
|
1064
1288
|
*/
|