@ayasofyazilim/saas 0.0.111 → 0.0.112

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.
@@ -185,6 +185,10 @@ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidati
185
185
  format: 'uuid',
186
186
  nullable: true
187
187
  },
188
+ tagNumber: {
189
+ type: 'string',
190
+ nullable: true
191
+ },
188
192
  customsId: {
189
193
  type: 'string',
190
194
  format: 'uuid'
@@ -234,6 +238,10 @@ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidati
234
238
  format: 'uuid',
235
239
  nullable: true
236
240
  },
241
+ tagNumber: {
242
+ type: 'string',
243
+ nullable: true
244
+ },
237
245
  customsId: {
238
246
  type: 'string',
239
247
  format: 'uuid'
@@ -285,31 +293,6 @@ export const $UniRefund_ExportValidationService_ExportValidations_ValidationResu
285
293
  type: 'string'
286
294
  } as const;
287
295
 
288
- export const $UniRefund_TagService_Billings_BillingDto = {
289
- type: 'object',
290
- properties: {
291
- id: {
292
- type: 'string',
293
- format: 'uuid'
294
- },
295
- billingDate: {
296
- type: 'string',
297
- format: 'date-time',
298
- nullable: true
299
- },
300
- billingNumber: {
301
- type: 'string',
302
- nullable: true
303
- },
304
- status: {
305
- type: 'integer',
306
- format: 'int32',
307
- nullable: true
308
- }
309
- },
310
- additionalProperties: false
311
- } as const;
312
-
313
296
  export const $UniRefund_TagService_Invoices_InvoiceDto = {
314
297
  required: ['issueDate', 'totalAmount', 'vatAmount'],
315
298
  type: 'object',
@@ -1113,6 +1096,10 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
1113
1096
  format: 'uuid',
1114
1097
  nullable: true
1115
1098
  },
1099
+ tagNumber: {
1100
+ type: 'string',
1101
+ nullable: true
1102
+ },
1116
1103
  customsId: {
1117
1104
  type: 'string',
1118
1105
  format: 'uuid'
@@ -1181,30 +1168,6 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
1181
1168
  },
1182
1169
  additionalProperties: false
1183
1170
  },
1184
- billing: {
1185
- type: 'object',
1186
- properties: {
1187
- id: {
1188
- type: 'string',
1189
- format: 'uuid'
1190
- },
1191
- billingDate: {
1192
- type: 'string',
1193
- format: 'date-time',
1194
- nullable: true
1195
- },
1196
- billingNumber: {
1197
- type: 'string',
1198
- nullable: true
1199
- },
1200
- status: {
1201
- type: 'integer',
1202
- format: 'int32',
1203
- nullable: true
1204
- }
1205
- },
1206
- additionalProperties: false
1207
- },
1208
1171
  invoices: {
1209
1172
  type: 'array',
1210
1173
  items: {
@@ -1402,6 +1365,10 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1402
1365
  format: 'uuid',
1403
1366
  nullable: true
1404
1367
  },
1368
+ tagNumber: {
1369
+ type: 'string',
1370
+ nullable: true
1371
+ },
1405
1372
  customsId: {
1406
1373
  type: 'string',
1407
1374
  format: 'uuid'
@@ -1437,30 +1404,6 @@ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1437
1404
  },
1438
1405
  additionalProperties: false
1439
1406
  },
1440
- billing: {
1441
- type: 'object',
1442
- properties: {
1443
- id: {
1444
- type: 'string',
1445
- format: 'uuid'
1446
- },
1447
- billingDate: {
1448
- type: 'string',
1449
- format: 'date-time',
1450
- nullable: true
1451
- },
1452
- billingNumber: {
1453
- type: 'string',
1454
- nullable: true
1455
- },
1456
- status: {
1457
- type: 'integer',
1458
- format: 'int32',
1459
- nullable: true
1460
- }
1461
- },
1462
- additionalProperties: false
1463
- },
1464
1407
  invoices: {
1465
1408
  type: 'array',
1466
1409
  items: {
@@ -45,6 +45,7 @@ export type TagListResponseDto_TagListItemDto = {
45
45
  export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDetailDto = {
46
46
  id?: string;
47
47
  tagId?: (string) | null;
48
+ tagNumber?: (string) | null;
48
49
  customsId: string;
49
50
  customsName: string;
50
51
  referenceId?: (string) | null;
@@ -66,6 +67,7 @@ export type finalValidationResult = 'None' | 'Green';
66
67
  export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDto = {
67
68
  id?: string;
68
69
  tagId?: (string) | null;
70
+ tagNumber?: (string) | null;
69
71
  customsId: string;
70
72
  customsName: string;
71
73
  exportDate: string;
@@ -82,13 +84,6 @@ export type UniRefund_ExportValidationService_ExportValidations_StampTypeCode =
82
84
 
83
85
  export type UniRefund_ExportValidationService_ExportValidations_ValidationResult = 'None' | 'Green';
84
86
 
85
- export type UniRefund_TagService_Billings_BillingDto = {
86
- id?: string;
87
- billingDate?: (string) | null;
88
- billingNumber?: (string) | null;
89
- status?: (number) | null;
90
- };
91
-
92
87
  export type UniRefund_TagService_Invoices_InvoiceDto = {
93
88
  id?: string;
94
89
  number?: (string) | null;
@@ -310,6 +305,7 @@ export type UniRefund_TagService_Tags_TagDetailDto = {
310
305
  exportValidation?: {
311
306
  id?: string;
312
307
  tagId?: (string) | null;
308
+ tagNumber?: (string) | null;
313
309
  customsId: string;
314
310
  customsName: string;
315
311
  referenceId?: (string) | null;
@@ -327,12 +323,6 @@ export type UniRefund_TagService_Tags_TagDetailDto = {
327
323
  status?: (number) | null;
328
324
  refundMethod?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
329
325
  };
330
- billing?: {
331
- id?: string;
332
- billingDate?: (string) | null;
333
- billingNumber?: (string) | null;
334
- status?: (number) | null;
335
- };
336
326
  invoices?: Array<{
337
327
  id?: string;
338
328
  number?: (string) | null;
@@ -381,6 +371,7 @@ export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
381
371
  exportValidation?: {
382
372
  id?: string;
383
373
  tagId?: (string) | null;
374
+ tagNumber?: (string) | null;
384
375
  customsId: string;
385
376
  customsName: string;
386
377
  referenceId?: (string) | null;
@@ -390,12 +381,6 @@ export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
390
381
  initialValidationResult?: 'None' | 'Green';
391
382
  finalValidationResult?: 'None' | 'Green';
392
383
  };
393
- billing?: {
394
- id?: string;
395
- billingDate?: (string) | null;
396
- billingNumber?: (string) | null;
397
- status?: (number) | null;
398
- };
399
384
  invoices?: Array<{
400
385
  id?: string;
401
386
  number?: (string) | null;
@@ -2233,6 +2218,7 @@ export type GetApiTagServiceTagByIdDetailResponse = ({
2233
2218
  exportValidation?: {
2234
2219
  id?: string;
2235
2220
  tagId?: (string) | null;
2221
+ tagNumber?: (string) | null;
2236
2222
  customsId: string;
2237
2223
  customsName: string;
2238
2224
  referenceId?: (string) | null;
@@ -2250,12 +2236,6 @@ export type GetApiTagServiceTagByIdDetailResponse = ({
2250
2236
  status?: (number) | null;
2251
2237
  refundMethod?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
2252
2238
  };
2253
- billing?: {
2254
- id?: string;
2255
- billingDate?: (string) | null;
2256
- billingNumber?: (string) | null;
2257
- status?: (number) | null;
2258
- };
2259
2239
  invoices?: Array<{
2260
2240
  id?: string;
2261
2241
  number?: (string) | null;
@@ -2368,6 +2348,7 @@ export type PutApiTagServiceTagExportValidationByIdData = {
2368
2348
  export type PutApiTagServiceTagExportValidationByIdResponse = ({
2369
2349
  id?: string;
2370
2350
  tagId?: (string) | null;
2351
+ tagNumber?: (string) | null;
2371
2352
  customsId: string;
2372
2353
  customsName: string;
2373
2354
  exportDate: string;
@@ -2475,6 +2456,7 @@ export type GetIntegrationApiTagsDetailsListForRefundResponse = (Array<{
2475
2456
  exportValidation?: {
2476
2457
  id?: string;
2477
2458
  tagId?: (string) | null;
2459
+ tagNumber?: (string) | null;
2478
2460
  customsId: string;
2479
2461
  customsName: string;
2480
2462
  referenceId?: (string) | null;
@@ -2484,12 +2466,6 @@ export type GetIntegrationApiTagsDetailsListForRefundResponse = (Array<{
2484
2466
  initialValidationResult?: 'None' | 'Green';
2485
2467
  finalValidationResult?: 'None' | 'Green';
2486
2468
  };
2487
- billing?: {
2488
- id?: string;
2489
- billingDate?: (string) | null;
2490
- billingNumber?: (string) | null;
2491
- status?: (number) | null;
2492
- };
2493
2469
  invoices?: Array<{
2494
2470
  id?: string;
2495
2471
  number?: (string) | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/saas",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "description": "Ayasofyazılım SAAS",
5
5
  "exports": {
6
6
  "./*": "./*/index.ts"