@ayasofyazilim/saas 0.0.63 → 0.0.65
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/CRMService/CRMServiceClient.ts +65 -65
- package/CRMService/schemas.gen.ts +176 -110
- package/CRMService/services.gen.ts +136 -48
- package/CRMService/types.gen.ts +226 -92
- package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
- package/ExportValidationService/core/ApiError.ts +20 -20
- package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
- package/ExportValidationService/core/ApiResult.ts +6 -6
- package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
- package/ExportValidationService/core/CancelablePromise.ts +125 -125
- package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
- package/ExportValidationService/core/OpenAPI.ts +55 -55
- package/ExportValidationService/core/request.ts +340 -340
- package/ExportValidationService/index.ts +8 -8
- package/ExportValidationService/schemas.gen.ts +4073 -4073
- package/ExportValidationService/services.gen.ts +248 -248
- package/ExportValidationService/types.gen.ts +820 -820
- package/LocationService/schemas.gen.ts +6635 -6635
- package/LocationService/services.gen.ts +1797 -1797
- package/LocationService/types.gen.ts +3738 -3738
- package/TagService/schemas.gen.ts +5014 -5012
- package/TagService/types.gen.ts +990 -990
- package/package.json +1 -1
|
@@ -1,249 +1,249 @@
|
|
|
1
|
-
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
|
|
3
|
-
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
|
-
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiExportValidationServiceExportValidationData, GetApiExportValidationServiceExportValidationResponse, PostApiExportValidationServiceExportValidationData, PostApiExportValidationServiceExportValidationResponse, GetApiExportValidationServiceExportValidationByIdData, GetApiExportValidationServiceExportValidationByIdResponse, PutApiExportValidationServiceExportValidationByIdData, PutApiExportValidationServiceExportValidationByIdResponse, DeleteApiExportValidationServiceExportValidationByIdData, DeleteApiExportValidationServiceExportValidationByIdResponse, GetApiExportValidationServiceExportValidationByIdDetailData, GetApiExportValidationServiceExportValidationByIdDetailResponse } from './types.gen';
|
|
6
|
-
|
|
7
|
-
export class AbpApiDefinitionService {
|
|
8
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* @param data The data for the request.
|
|
12
|
-
* @param data.includeTypes
|
|
13
|
-
* @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
|
|
14
|
-
* @throws ApiError
|
|
15
|
-
*/
|
|
16
|
-
public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
|
|
17
|
-
return this.httpRequest.request({
|
|
18
|
-
method: 'GET',
|
|
19
|
-
url: '/api/abp/api-definition',
|
|
20
|
-
query: {
|
|
21
|
-
IncludeTypes: data.includeTypes
|
|
22
|
-
},
|
|
23
|
-
errors: {
|
|
24
|
-
400: 'Bad Request',
|
|
25
|
-
401: 'Unauthorized',
|
|
26
|
-
403: 'Forbidden',
|
|
27
|
-
404: 'Not Found',
|
|
28
|
-
500: 'Server Error',
|
|
29
|
-
501: 'Server Error'
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export class AbpApplicationConfigurationService {
|
|
37
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* @param data The data for the request.
|
|
41
|
-
* @param data.includeLocalizationResources
|
|
42
|
-
* @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
|
|
43
|
-
* @throws ApiError
|
|
44
|
-
*/
|
|
45
|
-
public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
|
|
46
|
-
return this.httpRequest.request({
|
|
47
|
-
method: 'GET',
|
|
48
|
-
url: '/api/abp/application-configuration',
|
|
49
|
-
query: {
|
|
50
|
-
IncludeLocalizationResources: data.includeLocalizationResources
|
|
51
|
-
},
|
|
52
|
-
errors: {
|
|
53
|
-
400: 'Bad Request',
|
|
54
|
-
401: 'Unauthorized',
|
|
55
|
-
403: 'Forbidden',
|
|
56
|
-
404: 'Not Found',
|
|
57
|
-
500: 'Server Error',
|
|
58
|
-
501: 'Server Error'
|
|
59
|
-
}
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export class AbpApplicationLocalizationService {
|
|
66
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* @param data The data for the request.
|
|
70
|
-
* @param data.cultureName
|
|
71
|
-
* @param data.onlyDynamics
|
|
72
|
-
* @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
|
|
73
|
-
* @throws ApiError
|
|
74
|
-
*/
|
|
75
|
-
public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
|
|
76
|
-
return this.httpRequest.request({
|
|
77
|
-
method: 'GET',
|
|
78
|
-
url: '/api/abp/application-localization',
|
|
79
|
-
query: {
|
|
80
|
-
CultureName: data.cultureName,
|
|
81
|
-
OnlyDynamics: data.onlyDynamics
|
|
82
|
-
},
|
|
83
|
-
errors: {
|
|
84
|
-
400: 'Bad Request',
|
|
85
|
-
401: 'Unauthorized',
|
|
86
|
-
403: 'Forbidden',
|
|
87
|
-
404: 'Not Found',
|
|
88
|
-
500: 'Server Error',
|
|
89
|
-
501: 'Server Error'
|
|
90
|
-
}
|
|
91
|
-
});
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export class ExportValidationService {
|
|
97
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
98
|
-
|
|
99
|
-
/**
|
|
100
|
-
* @param data The data for the request.
|
|
101
|
-
* @param data.sorting
|
|
102
|
-
* @param data.skipCount
|
|
103
|
-
* @param data.maxResultCount
|
|
104
|
-
* @returns PagedResultDto_ExportValidationDto Success
|
|
105
|
-
* @throws ApiError
|
|
106
|
-
*/
|
|
107
|
-
public getApiExportValidationServiceExportValidation(data: GetApiExportValidationServiceExportValidationData = {}): CancelablePromise<GetApiExportValidationServiceExportValidationResponse> {
|
|
108
|
-
return this.httpRequest.request({
|
|
109
|
-
method: 'GET',
|
|
110
|
-
url: '/api/export-validation-service/export-validation',
|
|
111
|
-
query: {
|
|
112
|
-
Sorting: data.sorting,
|
|
113
|
-
SkipCount: data.skipCount,
|
|
114
|
-
MaxResultCount: data.maxResultCount
|
|
115
|
-
},
|
|
116
|
-
errors: {
|
|
117
|
-
400: 'Bad Request',
|
|
118
|
-
401: 'Unauthorized',
|
|
119
|
-
403: 'Forbidden',
|
|
120
|
-
404: 'Not Found',
|
|
121
|
-
500: 'Server Error',
|
|
122
|
-
501: 'Server Error'
|
|
123
|
-
}
|
|
124
|
-
});
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* @param data The data for the request.
|
|
129
|
-
* @param data.requestBody
|
|
130
|
-
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDto Success
|
|
131
|
-
* @throws ApiError
|
|
132
|
-
*/
|
|
133
|
-
public postApiExportValidationServiceExportValidation(data: PostApiExportValidationServiceExportValidationData = {}): CancelablePromise<PostApiExportValidationServiceExportValidationResponse> {
|
|
134
|
-
return this.httpRequest.request({
|
|
135
|
-
method: 'POST',
|
|
136
|
-
url: '/api/export-validation-service/export-validation',
|
|
137
|
-
body: data.requestBody,
|
|
138
|
-
mediaType: 'application/json',
|
|
139
|
-
errors: {
|
|
140
|
-
400: 'Bad Request',
|
|
141
|
-
401: 'Unauthorized',
|
|
142
|
-
403: 'Forbidden',
|
|
143
|
-
404: 'Not Found',
|
|
144
|
-
500: 'Server Error',
|
|
145
|
-
501: 'Server Error'
|
|
146
|
-
}
|
|
147
|
-
});
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* @param data The data for the request.
|
|
152
|
-
* @param data.id
|
|
153
|
-
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDto Success
|
|
154
|
-
* @throws ApiError
|
|
155
|
-
*/
|
|
156
|
-
public getApiExportValidationServiceExportValidationById(data: GetApiExportValidationServiceExportValidationByIdData): CancelablePromise<GetApiExportValidationServiceExportValidationByIdResponse> {
|
|
157
|
-
return this.httpRequest.request({
|
|
158
|
-
method: 'GET',
|
|
159
|
-
url: '/api/export-validation-service/export-validation/{id}',
|
|
160
|
-
path: {
|
|
161
|
-
id: data.id
|
|
162
|
-
},
|
|
163
|
-
errors: {
|
|
164
|
-
400: 'Bad Request',
|
|
165
|
-
401: 'Unauthorized',
|
|
166
|
-
403: 'Forbidden',
|
|
167
|
-
404: 'Not Found',
|
|
168
|
-
500: 'Server Error',
|
|
169
|
-
501: 'Server Error'
|
|
170
|
-
}
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/**
|
|
175
|
-
* @param data The data for the request.
|
|
176
|
-
* @param data.id
|
|
177
|
-
* @param data.requestBody
|
|
178
|
-
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDto Success
|
|
179
|
-
* @throws ApiError
|
|
180
|
-
*/
|
|
181
|
-
public putApiExportValidationServiceExportValidationById(data: PutApiExportValidationServiceExportValidationByIdData): CancelablePromise<PutApiExportValidationServiceExportValidationByIdResponse> {
|
|
182
|
-
return this.httpRequest.request({
|
|
183
|
-
method: 'PUT',
|
|
184
|
-
url: '/api/export-validation-service/export-validation/{id}',
|
|
185
|
-
path: {
|
|
186
|
-
id: data.id
|
|
187
|
-
},
|
|
188
|
-
body: data.requestBody,
|
|
189
|
-
mediaType: 'application/json',
|
|
190
|
-
errors: {
|
|
191
|
-
400: 'Bad Request',
|
|
192
|
-
401: 'Unauthorized',
|
|
193
|
-
403: 'Forbidden',
|
|
194
|
-
404: 'Not Found',
|
|
195
|
-
500: 'Server Error',
|
|
196
|
-
501: 'Server Error'
|
|
197
|
-
}
|
|
198
|
-
});
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* @param data The data for the request.
|
|
203
|
-
* @param data.id
|
|
204
|
-
* @returns unknown Success
|
|
205
|
-
* @throws ApiError
|
|
206
|
-
*/
|
|
207
|
-
public deleteApiExportValidationServiceExportValidationById(data: DeleteApiExportValidationServiceExportValidationByIdData): CancelablePromise<DeleteApiExportValidationServiceExportValidationByIdResponse> {
|
|
208
|
-
return this.httpRequest.request({
|
|
209
|
-
method: 'DELETE',
|
|
210
|
-
url: '/api/export-validation-service/export-validation/{id}',
|
|
211
|
-
path: {
|
|
212
|
-
id: data.id
|
|
213
|
-
},
|
|
214
|
-
errors: {
|
|
215
|
-
400: 'Bad Request',
|
|
216
|
-
401: 'Unauthorized',
|
|
217
|
-
403: 'Forbidden',
|
|
218
|
-
404: 'Not Found',
|
|
219
|
-
500: 'Server Error',
|
|
220
|
-
501: 'Server Error'
|
|
221
|
-
}
|
|
222
|
-
});
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
/**
|
|
226
|
-
* @param data The data for the request.
|
|
227
|
-
* @param data.id
|
|
228
|
-
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDetailDto Success
|
|
229
|
-
* @throws ApiError
|
|
230
|
-
*/
|
|
231
|
-
public getApiExportValidationServiceExportValidationByIdDetail(data: GetApiExportValidationServiceExportValidationByIdDetailData): CancelablePromise<GetApiExportValidationServiceExportValidationByIdDetailResponse> {
|
|
232
|
-
return this.httpRequest.request({
|
|
233
|
-
method: 'GET',
|
|
234
|
-
url: '/api/export-validation-service/export-validation/{id}/detail',
|
|
235
|
-
path: {
|
|
236
|
-
id: data.id
|
|
237
|
-
},
|
|
238
|
-
errors: {
|
|
239
|
-
400: 'Bad Request',
|
|
240
|
-
401: 'Unauthorized',
|
|
241
|
-
403: 'Forbidden',
|
|
242
|
-
404: 'Not Found',
|
|
243
|
-
500: 'Server Error',
|
|
244
|
-
501: 'Server Error'
|
|
245
|
-
}
|
|
246
|
-
});
|
|
247
|
-
}
|
|
248
|
-
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
|
+
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiExportValidationServiceExportValidationData, GetApiExportValidationServiceExportValidationResponse, PostApiExportValidationServiceExportValidationData, PostApiExportValidationServiceExportValidationResponse, GetApiExportValidationServiceExportValidationByIdData, GetApiExportValidationServiceExportValidationByIdResponse, PutApiExportValidationServiceExportValidationByIdData, PutApiExportValidationServiceExportValidationByIdResponse, DeleteApiExportValidationServiceExportValidationByIdData, DeleteApiExportValidationServiceExportValidationByIdResponse, GetApiExportValidationServiceExportValidationByIdDetailData, GetApiExportValidationServiceExportValidationByIdDetailResponse } from './types.gen';
|
|
6
|
+
|
|
7
|
+
export class AbpApiDefinitionService {
|
|
8
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @param data The data for the request.
|
|
12
|
+
* @param data.includeTypes
|
|
13
|
+
* @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
|
|
17
|
+
return this.httpRequest.request({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
url: '/api/abp/api-definition',
|
|
20
|
+
query: {
|
|
21
|
+
IncludeTypes: data.includeTypes
|
|
22
|
+
},
|
|
23
|
+
errors: {
|
|
24
|
+
400: 'Bad Request',
|
|
25
|
+
401: 'Unauthorized',
|
|
26
|
+
403: 'Forbidden',
|
|
27
|
+
404: 'Not Found',
|
|
28
|
+
500: 'Server Error',
|
|
29
|
+
501: 'Server Error'
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export class AbpApplicationConfigurationService {
|
|
37
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @param data The data for the request.
|
|
41
|
+
* @param data.includeLocalizationResources
|
|
42
|
+
* @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
|
|
43
|
+
* @throws ApiError
|
|
44
|
+
*/
|
|
45
|
+
public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
|
|
46
|
+
return this.httpRequest.request({
|
|
47
|
+
method: 'GET',
|
|
48
|
+
url: '/api/abp/application-configuration',
|
|
49
|
+
query: {
|
|
50
|
+
IncludeLocalizationResources: data.includeLocalizationResources
|
|
51
|
+
},
|
|
52
|
+
errors: {
|
|
53
|
+
400: 'Bad Request',
|
|
54
|
+
401: 'Unauthorized',
|
|
55
|
+
403: 'Forbidden',
|
|
56
|
+
404: 'Not Found',
|
|
57
|
+
500: 'Server Error',
|
|
58
|
+
501: 'Server Error'
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export class AbpApplicationLocalizationService {
|
|
66
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @param data The data for the request.
|
|
70
|
+
* @param data.cultureName
|
|
71
|
+
* @param data.onlyDynamics
|
|
72
|
+
* @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
|
|
73
|
+
* @throws ApiError
|
|
74
|
+
*/
|
|
75
|
+
public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
|
|
76
|
+
return this.httpRequest.request({
|
|
77
|
+
method: 'GET',
|
|
78
|
+
url: '/api/abp/application-localization',
|
|
79
|
+
query: {
|
|
80
|
+
CultureName: data.cultureName,
|
|
81
|
+
OnlyDynamics: data.onlyDynamics
|
|
82
|
+
},
|
|
83
|
+
errors: {
|
|
84
|
+
400: 'Bad Request',
|
|
85
|
+
401: 'Unauthorized',
|
|
86
|
+
403: 'Forbidden',
|
|
87
|
+
404: 'Not Found',
|
|
88
|
+
500: 'Server Error',
|
|
89
|
+
501: 'Server Error'
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export class ExportValidationService {
|
|
97
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* @param data The data for the request.
|
|
101
|
+
* @param data.sorting
|
|
102
|
+
* @param data.skipCount
|
|
103
|
+
* @param data.maxResultCount
|
|
104
|
+
* @returns PagedResultDto_ExportValidationDto Success
|
|
105
|
+
* @throws ApiError
|
|
106
|
+
*/
|
|
107
|
+
public getApiExportValidationServiceExportValidation(data: GetApiExportValidationServiceExportValidationData = {}): CancelablePromise<GetApiExportValidationServiceExportValidationResponse> {
|
|
108
|
+
return this.httpRequest.request({
|
|
109
|
+
method: 'GET',
|
|
110
|
+
url: '/api/export-validation-service/export-validation',
|
|
111
|
+
query: {
|
|
112
|
+
Sorting: data.sorting,
|
|
113
|
+
SkipCount: data.skipCount,
|
|
114
|
+
MaxResultCount: data.maxResultCount
|
|
115
|
+
},
|
|
116
|
+
errors: {
|
|
117
|
+
400: 'Bad Request',
|
|
118
|
+
401: 'Unauthorized',
|
|
119
|
+
403: 'Forbidden',
|
|
120
|
+
404: 'Not Found',
|
|
121
|
+
500: 'Server Error',
|
|
122
|
+
501: 'Server Error'
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* @param data The data for the request.
|
|
129
|
+
* @param data.requestBody
|
|
130
|
+
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDto Success
|
|
131
|
+
* @throws ApiError
|
|
132
|
+
*/
|
|
133
|
+
public postApiExportValidationServiceExportValidation(data: PostApiExportValidationServiceExportValidationData = {}): CancelablePromise<PostApiExportValidationServiceExportValidationResponse> {
|
|
134
|
+
return this.httpRequest.request({
|
|
135
|
+
method: 'POST',
|
|
136
|
+
url: '/api/export-validation-service/export-validation',
|
|
137
|
+
body: data.requestBody,
|
|
138
|
+
mediaType: 'application/json',
|
|
139
|
+
errors: {
|
|
140
|
+
400: 'Bad Request',
|
|
141
|
+
401: 'Unauthorized',
|
|
142
|
+
403: 'Forbidden',
|
|
143
|
+
404: 'Not Found',
|
|
144
|
+
500: 'Server Error',
|
|
145
|
+
501: 'Server Error'
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* @param data The data for the request.
|
|
152
|
+
* @param data.id
|
|
153
|
+
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDto Success
|
|
154
|
+
* @throws ApiError
|
|
155
|
+
*/
|
|
156
|
+
public getApiExportValidationServiceExportValidationById(data: GetApiExportValidationServiceExportValidationByIdData): CancelablePromise<GetApiExportValidationServiceExportValidationByIdResponse> {
|
|
157
|
+
return this.httpRequest.request({
|
|
158
|
+
method: 'GET',
|
|
159
|
+
url: '/api/export-validation-service/export-validation/{id}',
|
|
160
|
+
path: {
|
|
161
|
+
id: data.id
|
|
162
|
+
},
|
|
163
|
+
errors: {
|
|
164
|
+
400: 'Bad Request',
|
|
165
|
+
401: 'Unauthorized',
|
|
166
|
+
403: 'Forbidden',
|
|
167
|
+
404: 'Not Found',
|
|
168
|
+
500: 'Server Error',
|
|
169
|
+
501: 'Server Error'
|
|
170
|
+
}
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @param data The data for the request.
|
|
176
|
+
* @param data.id
|
|
177
|
+
* @param data.requestBody
|
|
178
|
+
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDto Success
|
|
179
|
+
* @throws ApiError
|
|
180
|
+
*/
|
|
181
|
+
public putApiExportValidationServiceExportValidationById(data: PutApiExportValidationServiceExportValidationByIdData): CancelablePromise<PutApiExportValidationServiceExportValidationByIdResponse> {
|
|
182
|
+
return this.httpRequest.request({
|
|
183
|
+
method: 'PUT',
|
|
184
|
+
url: '/api/export-validation-service/export-validation/{id}',
|
|
185
|
+
path: {
|
|
186
|
+
id: data.id
|
|
187
|
+
},
|
|
188
|
+
body: data.requestBody,
|
|
189
|
+
mediaType: 'application/json',
|
|
190
|
+
errors: {
|
|
191
|
+
400: 'Bad Request',
|
|
192
|
+
401: 'Unauthorized',
|
|
193
|
+
403: 'Forbidden',
|
|
194
|
+
404: 'Not Found',
|
|
195
|
+
500: 'Server Error',
|
|
196
|
+
501: 'Server Error'
|
|
197
|
+
}
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @param data The data for the request.
|
|
203
|
+
* @param data.id
|
|
204
|
+
* @returns unknown Success
|
|
205
|
+
* @throws ApiError
|
|
206
|
+
*/
|
|
207
|
+
public deleteApiExportValidationServiceExportValidationById(data: DeleteApiExportValidationServiceExportValidationByIdData): CancelablePromise<DeleteApiExportValidationServiceExportValidationByIdResponse> {
|
|
208
|
+
return this.httpRequest.request({
|
|
209
|
+
method: 'DELETE',
|
|
210
|
+
url: '/api/export-validation-service/export-validation/{id}',
|
|
211
|
+
path: {
|
|
212
|
+
id: data.id
|
|
213
|
+
},
|
|
214
|
+
errors: {
|
|
215
|
+
400: 'Bad Request',
|
|
216
|
+
401: 'Unauthorized',
|
|
217
|
+
403: 'Forbidden',
|
|
218
|
+
404: 'Not Found',
|
|
219
|
+
500: 'Server Error',
|
|
220
|
+
501: 'Server Error'
|
|
221
|
+
}
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* @param data The data for the request.
|
|
227
|
+
* @param data.id
|
|
228
|
+
* @returns UniRefund_ExportValidationService_ExportValidations_ExportValidationDetailDto Success
|
|
229
|
+
* @throws ApiError
|
|
230
|
+
*/
|
|
231
|
+
public getApiExportValidationServiceExportValidationByIdDetail(data: GetApiExportValidationServiceExportValidationByIdDetailData): CancelablePromise<GetApiExportValidationServiceExportValidationByIdDetailResponse> {
|
|
232
|
+
return this.httpRequest.request({
|
|
233
|
+
method: 'GET',
|
|
234
|
+
url: '/api/export-validation-service/export-validation/{id}/detail',
|
|
235
|
+
path: {
|
|
236
|
+
id: data.id
|
|
237
|
+
},
|
|
238
|
+
errors: {
|
|
239
|
+
400: 'Bad Request',
|
|
240
|
+
401: 'Unauthorized',
|
|
241
|
+
403: 'Forbidden',
|
|
242
|
+
404: 'Not Found',
|
|
243
|
+
500: 'Server Error',
|
|
244
|
+
501: 'Server Error'
|
|
245
|
+
}
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
|
|
249
249
|
}
|