@ayasofyazilim/saas 0.0.64 → 0.0.66

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,9 +1,9 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
- export { ExportValidationServiceClient } from './ExportValidationServiceClient';
3
- export { ApiError } from './core/ApiError';
4
- export { BaseHttpRequest } from './core/BaseHttpRequest';
5
- export { CancelablePromise, CancelError } from './core/CancelablePromise';
6
- export { OpenAPI, type OpenAPIConfig } from './core/OpenAPI';
7
- export * from './services.gen';
8
- export * from './types.gen';
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ export { ExportValidationServiceClient } from './ExportValidationServiceClient';
3
+ export { ApiError } from './core/ApiError';
4
+ export { BaseHttpRequest } from './core/BaseHttpRequest';
5
+ export { CancelablePromise, CancelError } from './core/CancelablePromise';
6
+ export { OpenAPI, type OpenAPIConfig } from './core/OpenAPI';
7
+ export * from './services.gen';
8
+ export * from './types.gen';
9
9
  export * from './schemas.gen';
@@ -12,43 +12,6 @@ export const $PagedResultDto_ExportValidationDto = {
12
12
  type: 'string',
13
13
  format: 'uuid'
14
14
  },
15
- creationTime: {
16
- type: 'string',
17
- format: 'date-time'
18
- },
19
- creatorId: {
20
- type: 'string',
21
- format: 'uuid',
22
- nullable: true
23
- },
24
- lastModificationTime: {
25
- type: 'string',
26
- format: 'date-time',
27
- nullable: true
28
- },
29
- lastModifierId: {
30
- type: 'string',
31
- format: 'uuid',
32
- nullable: true
33
- },
34
- isDeleted: {
35
- type: 'boolean'
36
- },
37
- deleterId: {
38
- type: 'string',
39
- format: 'uuid',
40
- nullable: true
41
- },
42
- deletionTime: {
43
- type: 'string',
44
- format: 'date-time',
45
- nullable: true
46
- },
47
- tenantId: {
48
- type: 'string',
49
- format: 'uuid',
50
- nullable: true
51
- },
52
15
  tagId: {
53
16
  type: 'string',
54
17
  format: 'uuid',
@@ -165,10 +128,9 @@ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidati
165
128
  type: 'string',
166
129
  nullable: true
167
130
  },
168
- date: {
131
+ exportDate: {
169
132
  type: 'string',
170
- format: 'date-time',
171
- nullable: true
133
+ format: 'date-time'
172
134
  },
173
135
  status: {
174
136
  enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
@@ -197,43 +159,6 @@ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidati
197
159
  type: 'string',
198
160
  format: 'uuid'
199
161
  },
200
- creationTime: {
201
- type: 'string',
202
- format: 'date-time'
203
- },
204
- creatorId: {
205
- type: 'string',
206
- format: 'uuid',
207
- nullable: true
208
- },
209
- lastModificationTime: {
210
- type: 'string',
211
- format: 'date-time',
212
- nullable: true
213
- },
214
- lastModifierId: {
215
- type: 'string',
216
- format: 'uuid',
217
- nullable: true
218
- },
219
- isDeleted: {
220
- type: 'boolean'
221
- },
222
- deleterId: {
223
- type: 'string',
224
- format: 'uuid',
225
- nullable: true
226
- },
227
- deletionTime: {
228
- type: 'string',
229
- format: 'date-time',
230
- nullable: true
231
- },
232
- tenantId: {
233
- type: 'string',
234
- format: 'uuid',
235
- nullable: true
236
- },
237
162
  tagId: {
238
163
  type: 'string',
239
164
  format: 'uuid',
@@ -98,6 +98,12 @@ export class ExportValidationService {
98
98
 
99
99
  /**
100
100
  * @param data The data for the request.
101
+ * @param data.referenceId
102
+ * @param data.tagIds
103
+ * @param data.exportStartDate
104
+ * @param data.exportEndDate
105
+ * @param data.stampTypeCodes
106
+ * @param data.statuses
101
107
  * @param data.sorting
102
108
  * @param data.skipCount
103
109
  * @param data.maxResultCount
@@ -109,6 +115,12 @@ export class ExportValidationService {
109
115
  method: 'GET',
110
116
  url: '/api/export-validation-service/export-validation',
111
117
  query: {
118
+ ReferenceId: data.referenceId,
119
+ TagIds: data.tagIds,
120
+ ExportStartDate: data.exportStartDate,
121
+ ExportEndDate: data.exportEndDate,
122
+ StampTypeCodes: data.stampTypeCodes,
123
+ Statuses: data.statuses,
112
124
  Sorting: data.sorting,
113
125
  SkipCount: data.skipCount,
114
126
  MaxResultCount: data.maxResultCount
@@ -23,7 +23,7 @@ export type UniRefund_ExportValidationService_ExportValidations_ExportValidation
23
23
  tagId?: string | null;
24
24
  exportLocationId?: string;
25
25
  referenceId?: string | null;
26
- date?: string | null;
26
+ exportDate?: string;
27
27
  status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
28
28
  stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
29
29
  initialValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
@@ -32,14 +32,6 @@ export type UniRefund_ExportValidationService_ExportValidations_ExportValidation
32
32
 
33
33
  export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDto = {
34
34
  id?: string;
35
- creationTime?: string;
36
- creatorId?: string | null;
37
- lastModificationTime?: string | null;
38
- lastModifierId?: string | null;
39
- isDeleted?: boolean;
40
- deleterId?: string | null;
41
- deletionTime?: string | null;
42
- tenantId?: string | null;
43
35
  tagId?: string | null;
44
36
  exportLocationId?: string;
45
37
  referenceId?: string | null;
@@ -470,9 +462,15 @@ export type GetApiAbpApplicationLocalizationData = {
470
462
  export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
471
463
 
472
464
  export type GetApiExportValidationServiceExportValidationData = {
465
+ exportEndDate?: string;
466
+ exportStartDate?: string;
473
467
  maxResultCount?: number;
468
+ referenceId?: string;
474
469
  skipCount?: number;
475
470
  sorting?: string;
471
+ stampTypeCodes?: Array<UniRefund_ExportValidationService_ExportValidations_StampTypeCode>;
472
+ statuses?: Array<UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode>;
473
+ tagIds?: Array<(string)>;
476
474
  };
477
475
 
478
476
  export type GetApiExportValidationServiceExportValidationResponse = PagedResultDto_ExportValidationDto;