@ayasofyazilim/saas 0.0.93 → 0.0.95

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.
@@ -1,5 +1,34 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
+ export const $PagedResultDto_NameAndIdDto = {
4
+ type: 'object',
5
+ properties: {
6
+ items: {
7
+ type: 'array',
8
+ items: {
9
+ type: 'object',
10
+ properties: {
11
+ id: {
12
+ type: 'string',
13
+ format: 'uuid'
14
+ },
15
+ fullName: {
16
+ type: 'string',
17
+ nullable: true
18
+ }
19
+ },
20
+ additionalProperties: false
21
+ },
22
+ nullable: true
23
+ },
24
+ totalCount: {
25
+ type: 'integer',
26
+ format: 'int64'
27
+ }
28
+ },
29
+ additionalProperties: false
30
+ } as const;
31
+
3
32
  export const $PagedResultDto_RefundListItem = {
4
33
  type: 'object',
5
34
  properties: {
@@ -114,36 +143,6 @@ export const $PagedResultDto_RefundPointNameDto = {
114
143
  additionalProperties: false
115
144
  } as const;
116
145
 
117
- export const $PagedResultDto_UserDeviceNameDto = {
118
- type: 'object',
119
- properties: {
120
- items: {
121
- type: 'array',
122
- items: {
123
- required: ['id', 'name'],
124
- type: 'object',
125
- properties: {
126
- id: {
127
- type: 'string',
128
- format: 'uuid'
129
- },
130
- name: {
131
- minLength: 1,
132
- type: 'string'
133
- }
134
- },
135
- additionalProperties: false
136
- },
137
- nullable: true
138
- },
139
- totalCount: {
140
- type: 'integer',
141
- format: 'int64'
142
- }
143
- },
144
- additionalProperties: false
145
- } as const;
146
-
147
146
  export const $UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund = {
148
147
  type: 'object',
149
148
  properties: {
@@ -175,32 +174,31 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointNameDto = {
175
174
  additionalProperties: false
176
175
  } as const;
177
176
 
178
- export const $UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
179
- required: ['id', 'name'],
177
+ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = {
178
+ enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
179
+ type: 'string'
180
+ } as const;
181
+
182
+ export const $UniRefund_ExportValidationService_ExportValidations_StampTypeCode = {
183
+ enum: ['None', 'Integration', 'DigitalStamp'],
184
+ type: 'string'
185
+ } as const;
186
+
187
+ export const $UniRefund_IdentityService_Users_NameAndIdDto = {
180
188
  type: 'object',
181
189
  properties: {
182
190
  id: {
183
191
  type: 'string',
184
192
  format: 'uuid'
185
193
  },
186
- name: {
187
- minLength: 1,
188
- type: 'string'
194
+ fullName: {
195
+ type: 'string',
196
+ nullable: true
189
197
  }
190
198
  },
191
199
  additionalProperties: false
192
200
  } as const;
193
201
 
194
- export const $UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = {
195
- enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
196
- type: 'string'
197
- } as const;
198
-
199
- export const $UniRefund_ExportValidationService_ExportValidations_StampTypeCode = {
200
- enum: ['None', 'Integration', 'DigitalStamp'],
201
- type: 'string'
202
- } as const;
203
-
204
202
  export const $UniRefund_RefundService_Enums_RefundReconciliationStatus = {
205
203
  enum: ['Approved', 'NotApproved', 'Error', 'InProgress'],
206
204
  type: 'string'
@@ -441,7 +439,7 @@ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
441
439
  tags: {
442
440
  type: 'array',
443
441
  items: {
444
- required: ['billing', 'expireDate', 'exportValidation', 'invoices', 'issueDate', 'merchant', 'status', 'tagNumber', 'totals'],
442
+ required: ['issueDate', 'status', 'tagNumber'],
445
443
  type: 'object',
446
444
  properties: {
447
445
  id: {
@@ -462,7 +460,8 @@ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
462
460
  },
463
461
  expireDate: {
464
462
  type: 'string',
465
- format: 'date-time'
463
+ format: 'date-time',
464
+ nullable: true
466
465
  },
467
466
  merchant: {
468
467
  type: 'object',
@@ -569,6 +568,7 @@ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
569
568
  invoices: {
570
569
  type: 'array',
571
570
  items: {
571
+ required: ['issueDate', 'totalAmount', 'vatAmount'],
572
572
  type: 'object',
573
573
  properties: {
574
574
  id: {
@@ -598,6 +598,7 @@ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
598
598
  invoiceLines: {
599
599
  type: 'array',
600
600
  items: {
601
+ required: ['amount', 'taxAmount', 'taxBase', 'taxRate'],
601
602
  type: 'object',
602
603
  properties: {
603
604
  id: {
@@ -639,11 +640,13 @@ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
639
640
  }
640
641
  },
641
642
  additionalProperties: false
642
- }
643
+ },
644
+ nullable: true
643
645
  },
644
646
  totals: {
645
647
  type: 'array',
646
648
  items: {
649
+ required: ['amount', 'currency', 'rate', 'totalType'],
647
650
  type: 'object',
648
651
  properties: {
649
652
  totalType: {
@@ -659,12 +662,17 @@ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
659
662
  nullable: true
660
663
  },
661
664
  currency: {
662
- type: 'string',
663
- nullable: true
665
+ minLength: 1,
666
+ type: 'string'
667
+ },
668
+ rate: {
669
+ type: 'number',
670
+ format: 'double'
664
671
  }
665
672
  },
666
673
  additionalProperties: false
667
- }
674
+ },
675
+ nullable: true
668
676
  }
669
677
  },
670
678
  additionalProperties: false
@@ -833,6 +841,7 @@ export const $UniRefund_TagService_ExportValidations_ExportValidationDto = {
833
841
  } as const;
834
842
 
835
843
  export const $UniRefund_TagService_Invoices_InvoiceDto = {
844
+ required: ['issueDate', 'totalAmount', 'vatAmount'],
836
845
  type: 'object',
837
846
  properties: {
838
847
  id: {
@@ -862,6 +871,7 @@ export const $UniRefund_TagService_Invoices_InvoiceDto = {
862
871
  invoiceLines: {
863
872
  type: 'array',
864
873
  items: {
874
+ required: ['amount', 'taxAmount', 'taxBase', 'taxRate'],
865
875
  type: 'object',
866
876
  properties: {
867
877
  id: {
@@ -906,6 +916,7 @@ export const $UniRefund_TagService_Invoices_InvoiceDto = {
906
916
  } as const;
907
917
 
908
918
  export const $UniRefund_TagService_Invoices_InvoiceLineDto = {
919
+ required: ['amount', 'taxAmount', 'taxBase', 'taxRate'],
909
920
  type: 'object',
910
921
  properties: {
911
922
  id: {
@@ -1006,6 +1017,11 @@ export const $UniRefund_TagService_Tags_AddressDto = {
1006
1017
  additionalProperties: false
1007
1018
  } as const;
1008
1019
 
1020
+ export const $UniRefund_TagService_Tags_Enums_RefundType = {
1021
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
1022
+ type: 'string'
1023
+ } as const;
1024
+
1009
1025
  export const $UniRefund_TagService_Tags_ProductGroupDto = {
1010
1026
  type: 'object',
1011
1027
  properties: {
@@ -1021,13 +1037,8 @@ export const $UniRefund_TagService_Tags_ProductGroupDto = {
1021
1037
  additionalProperties: false
1022
1038
  } as const;
1023
1039
 
1024
- export const $UniRefund_TagService_Tags_RefundType = {
1025
- enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
1026
- type: 'string'
1027
- } as const;
1028
-
1029
1040
  export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1030
- required: ['billing', 'expireDate', 'exportValidation', 'invoices', 'issueDate', 'merchant', 'status', 'tagNumber', 'totals'],
1041
+ required: ['issueDate', 'status', 'tagNumber'],
1031
1042
  type: 'object',
1032
1043
  properties: {
1033
1044
  id: {
@@ -1048,7 +1059,8 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1048
1059
  },
1049
1060
  expireDate: {
1050
1061
  type: 'string',
1051
- format: 'date-time'
1062
+ format: 'date-time',
1063
+ nullable: true
1052
1064
  },
1053
1065
  merchant: {
1054
1066
  type: 'object',
@@ -1155,6 +1167,7 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1155
1167
  invoices: {
1156
1168
  type: 'array',
1157
1169
  items: {
1170
+ required: ['issueDate', 'totalAmount', 'vatAmount'],
1158
1171
  type: 'object',
1159
1172
  properties: {
1160
1173
  id: {
@@ -1184,6 +1197,7 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1184
1197
  invoiceLines: {
1185
1198
  type: 'array',
1186
1199
  items: {
1200
+ required: ['amount', 'taxAmount', 'taxBase', 'taxRate'],
1187
1201
  type: 'object',
1188
1202
  properties: {
1189
1203
  id: {
@@ -1225,11 +1239,13 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1225
1239
  }
1226
1240
  },
1227
1241
  additionalProperties: false
1228
- }
1242
+ },
1243
+ nullable: true
1229
1244
  },
1230
1245
  totals: {
1231
1246
  type: 'array',
1232
1247
  items: {
1248
+ required: ['amount', 'currency', 'rate', 'totalType'],
1233
1249
  type: 'object',
1234
1250
  properties: {
1235
1251
  totalType: {
@@ -1245,12 +1261,17 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1245
1261
  nullable: true
1246
1262
  },
1247
1263
  currency: {
1248
- type: 'string',
1249
- nullable: true
1264
+ minLength: 1,
1265
+ type: 'string'
1266
+ },
1267
+ rate: {
1268
+ type: 'number',
1269
+ format: 'double'
1250
1270
  }
1251
1271
  },
1252
1272
  additionalProperties: false
1253
- }
1273
+ },
1274
+ nullable: true
1254
1275
  }
1255
1276
  },
1256
1277
  additionalProperties: false
@@ -1262,6 +1283,7 @@ export const $UniRefund_TagService_Tags_TagStatusType = {
1262
1283
  } as const;
1263
1284
 
1264
1285
  export const $UniRefund_TagService_Tags_TagTotalDto = {
1286
+ required: ['amount', 'currency', 'rate', 'totalType'],
1265
1287
  type: 'object',
1266
1288
  properties: {
1267
1289
  totalType: {
@@ -1277,8 +1299,12 @@ export const $UniRefund_TagService_Tags_TagTotalDto = {
1277
1299
  nullable: true
1278
1300
  },
1279
1301
  currency: {
1280
- type: 'string',
1281
- nullable: true
1302
+ minLength: 1,
1303
+ type: 'string'
1304
+ },
1305
+ rate: {
1306
+ type: 'number',
1307
+ format: 'double'
1282
1308
  }
1283
1309
  },
1284
1310
  additionalProperties: false
@@ -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, PostApiRefundServiceRefundsData, PostApiRefundServiceRefundsResponse, GetApiRefundServiceRefundsData, GetApiRefundServiceRefundsResponse, GetApiRefundServiceRefundsRefundPointNamesData, GetApiRefundServiceRefundsRefundPointNamesResponse, GetApiRefundServiceRefundsUserDevicesData, GetApiRefundServiceRefundsUserDevicesResponse, GetApiRefundServiceRefundsRefundStatisticsData, GetApiRefundServiceRefundsRefundStatisticsResponse, GetApiRefundServiceRefundsByIdDetailData, GetApiRefundServiceRefundsByIdDetailResponse } from './types.gen';
5
+ import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiRefundServiceRefundsData, PostApiRefundServiceRefundsResponse, GetApiRefundServiceRefundsData, GetApiRefundServiceRefundsResponse, GetApiRefundServiceRefundsRefundPointNamesData, GetApiRefundServiceRefundsRefundPointNamesResponse, GetApiRefundServiceRefundsUserDevicesData, GetApiRefundServiceRefundsUserDevicesResponse, GetApiRefundServiceRefundsRefundStatisticsData, GetApiRefundServiceRefundsRefundStatisticsResponse, GetApiRefundServiceRefundsByIdDetailData, GetApiRefundServiceRefundsByIdDetailResponse, GetApiRefundServiceRefundsTagByIdDetailData, GetApiRefundServiceRefundsTagByIdDetailResponse } from './types.gen';
6
6
 
7
7
  export class AbpApiDefinitionService {
8
8
  constructor(public readonly httpRequest: BaseHttpRequest) { }
@@ -224,7 +224,7 @@ export class RefundService {
224
224
  * @param data.refundPointIds
225
225
  * @param data.skipCount
226
226
  * @param data.maxResultCount
227
- * @returns PagedResultDto_UserDeviceNameDto Success
227
+ * @returns PagedResultDto_NameAndIdDto Success
228
228
  * @throws ApiError
229
229
  */
230
230
  public getApiRefundServiceRefundsUserDevices(data: GetApiRefundServiceRefundsUserDevicesData = {}): CancelablePromise<GetApiRefundServiceRefundsUserDevicesResponse> {
@@ -321,4 +321,28 @@ export class RefundService {
321
321
  });
322
322
  }
323
323
 
324
+ /**
325
+ * @param data The data for the request.
326
+ * @param data.id
327
+ * @returns UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto Success
328
+ * @throws ApiError
329
+ */
330
+ public getApiRefundServiceRefundsTagByIdDetail(data: GetApiRefundServiceRefundsTagByIdDetailData): CancelablePromise<GetApiRefundServiceRefundsTagByIdDetailResponse> {
331
+ return this.httpRequest.request({
332
+ method: 'GET',
333
+ url: '/api/refund-service/refunds/tag/{id}/detail',
334
+ path: {
335
+ id: data.id
336
+ },
337
+ errors: {
338
+ 400: 'Bad Request',
339
+ 401: 'Unauthorized',
340
+ 403: 'Forbidden',
341
+ 404: 'Not Found',
342
+ 500: 'Server Error',
343
+ 501: 'Server Error'
344
+ }
345
+ });
346
+ }
347
+
324
348
  }
@@ -1,5 +1,10 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
+ export type PagedResultDto_NameAndIdDto = {
4
+ items?: Array<UniRefund_IdentityService_Users_NameAndIdDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
3
8
  export type PagedResultDto_RefundListItem = {
4
9
  items?: Array<UniRefund_RefundService_Refunds_GetListAsync_RefundListItem> | null;
5
10
  totalCount?: number;
@@ -10,11 +15,6 @@ export type PagedResultDto_RefundPointNameDto = {
10
15
  totalCount?: number;
11
16
  };
12
17
 
13
- export type PagedResultDto_UserDeviceNameDto = {
14
- items?: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto> | null;
15
- totalCount?: number;
16
- };
17
-
18
18
  export type UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund = {
19
19
  name?: string | null;
20
20
  fullAddress?: string | null;
@@ -25,22 +25,22 @@ export type UniRefund_CRMService_RefundPoints_RefundPointNameDto = {
25
25
  name: string;
26
26
  };
27
27
 
28
- export type UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
29
- id: string;
30
- name: string;
31
- };
32
-
33
28
  export type UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
34
29
 
35
30
  export type UniRefund_ExportValidationService_ExportValidations_StampTypeCode = 'None' | 'Integration' | 'DigitalStamp';
36
31
 
32
+ export type UniRefund_IdentityService_Users_NameAndIdDto = {
33
+ id?: string;
34
+ fullName?: string | null;
35
+ };
36
+
37
37
  export type UniRefund_RefundService_Enums_RefundReconciliationStatus = 'Approved' | 'NotApproved' | 'Error' | 'InProgress';
38
38
 
39
39
  export type UniRefund_RefundService_Enums_RefundStatus = 'NotPaid' | 'PendingDeparture' | 'Blocked' | 'Processing' | 'PartlyPaid' | 'Paid' | 'Overpaid' | 'Rejected' | 'Cancelled' | 'Error';
40
40
 
41
41
  export type UniRefund_RefundService_Refunds_CreateRefundDto = {
42
42
  tagIds: Array<(string)>;
43
- refundType: UniRefund_TagService_Tags_RefundType;
43
+ refundType: UniRefund_TagService_Tags_Enums_RefundType;
44
44
  cardNumber?: string | null;
45
45
  cardExpiryMonth?: number | null;
46
46
  cardExpiryYear?: number | null;
@@ -55,7 +55,7 @@ export type UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
55
55
  refundPoint: UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
56
56
  traveller: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
57
57
  readonly userDeviceName: string;
58
- refundType: UniRefund_TagService_Tags_RefundType;
58
+ refundType: UniRefund_TagService_Tags_Enums_RefundType;
59
59
  readonly travellerDocumentNumber: string;
60
60
  readonly refundAmount: number;
61
61
  readonly refundCurrency: string;
@@ -74,7 +74,7 @@ export type UniRefund_RefundService_Refunds_GetListAsync_RefundListInputTimeFilt
74
74
  export type UniRefund_RefundService_Refunds_GetListAsync_RefundListItem = {
75
75
  id?: string;
76
76
  readonly userDeviceName: string;
77
- refundType: UniRefund_TagService_Tags_RefundType;
77
+ refundType: UniRefund_TagService_Tags_Enums_RefundType;
78
78
  readonly travellerDocumentNumber: string;
79
79
  readonly refundAmount: number;
80
80
  readonly refundCurrency: string;
@@ -114,9 +114,9 @@ export type UniRefund_TagService_ExportValidations_ExportValidationDto = {
114
114
  export type UniRefund_TagService_Invoices_InvoiceDto = {
115
115
  id?: string;
116
116
  number?: string | null;
117
- issueDate?: string;
118
- totalAmount?: number;
119
- vatAmount?: number;
117
+ issueDate: string;
118
+ totalAmount: number;
119
+ vatAmount: number;
120
120
  currency?: string | null;
121
121
  invoiceLines?: Array<UniRefund_TagService_Invoices_InvoiceLineDto> | null;
122
122
  };
@@ -125,10 +125,10 @@ export type UniRefund_TagService_Invoices_InvoiceLineDto = {
125
125
  id?: string;
126
126
  productGroup?: string | null;
127
127
  description?: string | null;
128
- amount?: number;
129
- taxRate?: number;
130
- taxAmount?: number;
131
- taxBase?: number;
128
+ amount: number;
129
+ taxRate: number;
130
+ taxAmount: number;
131
+ taxBase: number;
132
132
  currency?: string | null;
133
133
  };
134
134
 
@@ -144,33 +144,34 @@ export type UniRefund_TagService_Tags_AddressDto = {
144
144
  fullText?: string | null;
145
145
  };
146
146
 
147
+ export type UniRefund_TagService_Tags_Enums_RefundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
148
+
147
149
  export type UniRefund_TagService_Tags_ProductGroupDto = {
148
150
  id?: string;
149
151
  description?: string | null;
150
152
  };
151
153
 
152
- export type UniRefund_TagService_Tags_RefundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
153
-
154
154
  export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
155
155
  id?: string;
156
156
  tagNumber: string;
157
157
  status: UniRefund_TagService_Tags_TagStatusType;
158
158
  issueDate: string;
159
- expireDate: string;
160
- merchant: UniRefund_TagService_Merchants_MerchantDetailDto;
161
- exportValidation: UniRefund_TagService_ExportValidations_ExportValidationDto;
162
- billing: UniRefund_TagService_Billings_BillingDto;
163
- invoices: Array<UniRefund_TagService_Invoices_InvoiceDto>;
164
- totals: Array<UniRefund_TagService_Tags_TagTotalDto>;
159
+ expireDate?: string | null;
160
+ merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
161
+ exportValidation?: UniRefund_TagService_ExportValidations_ExportValidationDto;
162
+ billing?: UniRefund_TagService_Billings_BillingDto;
163
+ invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
164
+ totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
165
165
  };
166
166
 
167
167
  export type UniRefund_TagService_Tags_TagStatusType = 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
168
168
 
169
169
  export type UniRefund_TagService_Tags_TagTotalDto = {
170
- totalType?: UniRefund_TagService_Tags_TotalType;
171
- amount?: number;
170
+ totalType: UniRefund_TagService_Tags_TotalType;
171
+ amount: number;
172
172
  description?: string | null;
173
- currency?: string | null;
173
+ currency: string;
174
+ rate: number;
174
175
  };
175
176
 
176
177
  export type UniRefund_TagService_Tags_TotalType = 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
@@ -620,7 +621,7 @@ export type GetApiRefundServiceRefundsData = {
620
621
  skipCount?: number;
621
622
  sorting?: string;
622
623
  statusesFilterReconciliationStatuses?: Array<UniRefund_RefundService_Enums_RefundReconciliationStatus>;
623
- statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_RefundType>;
624
+ statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
624
625
  statusesFilterStatuses?: Array<UniRefund_RefundService_Enums_RefundStatus>;
625
626
  textFilterFilter?: string;
626
627
  textFilterTextFilterType?: UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType;
@@ -636,7 +637,7 @@ export type GetApiRefundServiceRefundsRefundPointNamesData = {
636
637
  refundUserDeviceIds?: Array<(string)>;
637
638
  skipCount?: number;
638
639
  statusesFilterReconciliationStatuses?: Array<UniRefund_RefundService_Enums_RefundReconciliationStatus>;
639
- statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_RefundType>;
640
+ statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
640
641
  statusesFilterStatuses?: Array<UniRefund_RefundService_Enums_RefundStatus>;
641
642
  textFilterFilter?: string;
642
643
  textFilterTextFilterType?: UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType;
@@ -652,7 +653,7 @@ export type GetApiRefundServiceRefundsUserDevicesData = {
652
653
  refundPointIds?: Array<(string)>;
653
654
  skipCount?: number;
654
655
  statusesFilterReconciliationStatuses?: Array<UniRefund_RefundService_Enums_RefundReconciliationStatus>;
655
- statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_RefundType>;
656
+ statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
656
657
  statusesFilterStatuses?: Array<UniRefund_RefundService_Enums_RefundStatus>;
657
658
  textFilterFilter?: string;
658
659
  textFilterTextFilterType?: UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType;
@@ -661,13 +662,13 @@ export type GetApiRefundServiceRefundsUserDevicesData = {
661
662
  timeFilterTimeRange?: UniRefund_RefundService_Refunds_GetListAsync_RefundListInputTimeFilter;
662
663
  };
663
664
 
664
- export type GetApiRefundServiceRefundsUserDevicesResponse = PagedResultDto_UserDeviceNameDto;
665
+ export type GetApiRefundServiceRefundsUserDevicesResponse = PagedResultDto_NameAndIdDto;
665
666
 
666
667
  export type GetApiRefundServiceRefundsRefundStatisticsData = {
667
668
  refundPointIds?: Array<(string)>;
668
669
  refundUserDeviceIds?: Array<(string)>;
669
670
  statusesFilterReconciliationStatuses?: Array<UniRefund_RefundService_Enums_RefundReconciliationStatus>;
670
- statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_RefundType>;
671
+ statusesFilterRefundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
671
672
  statusesFilterStatuses?: Array<UniRefund_RefundService_Enums_RefundStatus>;
672
673
  textFilterFilter?: string;
673
674
  textFilterTextFilterType?: UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType;
@@ -684,6 +685,12 @@ export type GetApiRefundServiceRefundsByIdDetailData = {
684
685
 
685
686
  export type GetApiRefundServiceRefundsByIdDetailResponse = UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto;
686
687
 
688
+ export type GetApiRefundServiceRefundsTagByIdDetailData = {
689
+ id: string;
690
+ };
691
+
692
+ export type GetApiRefundServiceRefundsTagByIdDetailResponse = UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto;
693
+
687
694
  export type $OpenApiTs = {
688
695
  '/api/abp/api-definition': {
689
696
  get: {
@@ -900,7 +907,7 @@ export type $OpenApiTs = {
900
907
  /**
901
908
  * Success
902
909
  */
903
- 200: PagedResultDto_UserDeviceNameDto;
910
+ 200: PagedResultDto_NameAndIdDto;
904
911
  /**
905
912
  * Bad Request
906
913
  */
@@ -998,4 +1005,39 @@ export type $OpenApiTs = {
998
1005
  };
999
1006
  };
1000
1007
  };
1008
+ '/api/refund-service/refunds/tag/{id}/detail': {
1009
+ get: {
1010
+ req: GetApiRefundServiceRefundsTagByIdDetailData;
1011
+ res: {
1012
+ /**
1013
+ * Success
1014
+ */
1015
+ 200: UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto;
1016
+ /**
1017
+ * Bad Request
1018
+ */
1019
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1020
+ /**
1021
+ * Unauthorized
1022
+ */
1023
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1024
+ /**
1025
+ * Forbidden
1026
+ */
1027
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1028
+ /**
1029
+ * Not Found
1030
+ */
1031
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1032
+ /**
1033
+ * Server Error
1034
+ */
1035
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1036
+ /**
1037
+ * Server Error
1038
+ */
1039
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1040
+ };
1041
+ };
1042
+ };
1001
1043
  };