@ayasofyazilim/saas 0.0.106 → 0.0.107

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.
@@ -18,6 +18,10 @@ export const $PagedResultDto_ExportValidationDto = {
18
18
  format: 'uuid',
19
19
  nullable: true
20
20
  },
21
+ tagNumber: {
22
+ type: 'string',
23
+ nullable: true
24
+ },
21
25
  customsId: {
22
26
  type: 'string',
23
27
  format: 'uuid'
@@ -84,6 +88,10 @@ export const $UniRefund_ExportValidationService_ExportValidations_CreateExportVa
84
88
  format: 'uuid',
85
89
  nullable: true
86
90
  },
91
+ tagNumber: {
92
+ type: 'string',
93
+ nullable: true
94
+ },
87
95
  exportLocationId: {
88
96
  type: 'string',
89
97
  format: 'uuid'
@@ -126,6 +134,10 @@ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidati
126
134
  format: 'uuid',
127
135
  nullable: true
128
136
  },
137
+ tagNumber: {
138
+ type: 'string',
139
+ nullable: true
140
+ },
129
141
  customsId: {
130
142
  type: 'string',
131
143
  format: 'uuid'
@@ -175,6 +187,10 @@ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidati
175
187
  format: 'uuid',
176
188
  nullable: true
177
189
  },
190
+ tagNumber: {
191
+ type: 'string',
192
+ nullable: true
193
+ },
178
194
  customsId: {
179
195
  type: 'string',
180
196
  format: 'uuid'
@@ -100,6 +100,7 @@ export class ExportValidationService {
100
100
  * @param data The data for the request.
101
101
  * @param data.referenceId
102
102
  * @param data.tagIds
103
+ * @param data.tagNumbers
103
104
  * @param data.exportStartDate
104
105
  * @param data.exportEndDate
105
106
  * @param data.stampTypeCodes
@@ -117,6 +118,7 @@ export class ExportValidationService {
117
118
  query: {
118
119
  ReferenceId: data.referenceId,
119
120
  TagIds: data.tagIds,
121
+ TagNumbers: data.tagNumbers,
120
122
  ExportStartDate: data.exportStartDate,
121
123
  ExportEndDate: data.exportEndDate,
122
124
  StampTypeCodes: data.stampTypeCodes,
@@ -4,6 +4,7 @@ export type PagedResultDto_ExportValidationDto = {
4
4
  items?: Array<{
5
5
  id?: string;
6
6
  tagId?: (string) | null;
7
+ tagNumber?: (string) | null;
7
8
  customsId: string;
8
9
  customsName: string;
9
10
  exportDate: string;
@@ -21,6 +22,7 @@ export type UniRefund_ExportValidationService_ExportValidations_CreateExportVali
21
22
  creationTime?: string;
22
23
  creatorId?: (string) | null;
23
24
  tagId?: (string) | null;
25
+ tagNumber?: (string) | null;
24
26
  exportLocationId?: string;
25
27
  referenceId?: (string) | null;
26
28
  exportDate?: (string) | null;
@@ -38,6 +40,7 @@ export type finalValidationResult = 'None' | 'Green';
38
40
  export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDetailDto = {
39
41
  id?: string;
40
42
  tagId?: (string) | null;
43
+ tagNumber?: (string) | null;
41
44
  customsId: string;
42
45
  customsName: string;
43
46
  referenceId?: (string) | null;
@@ -53,6 +56,7 @@ export type status = 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
53
56
  export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDto = {
54
57
  id?: string;
55
58
  tagId?: (string) | null;
59
+ tagNumber?: (string) | null;
56
60
  customsId: string;
57
61
  customsName: string;
58
62
  exportDate: string;
@@ -1534,12 +1538,14 @@ export type GetApiExportValidationServiceExportValidationData = {
1534
1538
  stampTypeCodes?: Array<('None' | 'Integration' | 'DigitalStamp')>;
1535
1539
  statuses?: Array<('None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired')>;
1536
1540
  tagIds?: Array<(string)>;
1541
+ tagNumbers?: Array<(string)>;
1537
1542
  };
1538
1543
 
1539
1544
  export type GetApiExportValidationServiceExportValidationResponse = ({
1540
1545
  items?: Array<{
1541
1546
  id?: string;
1542
1547
  tagId?: (string) | null;
1548
+ tagNumber?: (string) | null;
1543
1549
  customsId: string;
1544
1550
  customsName: string;
1545
1551
  exportDate: string;
@@ -1559,6 +1565,7 @@ export type GetApiExportValidationServiceExportValidationByIdData = {
1559
1565
  export type GetApiExportValidationServiceExportValidationByIdResponse = ({
1560
1566
  id?: string;
1561
1567
  tagId?: (string) | null;
1568
+ tagNumber?: (string) | null;
1562
1569
  customsId: string;
1563
1570
  customsName: string;
1564
1571
  exportDate: string;
@@ -1584,6 +1591,7 @@ export type PutApiExportValidationServiceExportValidationByIdData = {
1584
1591
  export type PutApiExportValidationServiceExportValidationByIdResponse = ({
1585
1592
  id?: string;
1586
1593
  tagId?: (string) | null;
1594
+ tagNumber?: (string) | null;
1587
1595
  customsId: string;
1588
1596
  customsName: string;
1589
1597
  exportDate: string;
@@ -1606,6 +1614,7 @@ export type PostIntegrationApiExportvalidationsData = {
1606
1614
  creationTime?: string;
1607
1615
  creatorId?: (string) | null;
1608
1616
  tagId?: (string) | null;
1617
+ tagNumber?: (string) | null;
1609
1618
  exportLocationId?: string;
1610
1619
  referenceId?: (string) | null;
1611
1620
  exportDate?: (string) | null;
@@ -1618,6 +1627,7 @@ export type PostIntegrationApiExportvalidationsData = {
1618
1627
  export type PostIntegrationApiExportvalidationsResponse = ({
1619
1628
  id?: string;
1620
1629
  tagId?: (string) | null;
1630
+ tagNumber?: (string) | null;
1621
1631
  customsId: string;
1622
1632
  customsName: string;
1623
1633
  exportDate: string;
@@ -1635,6 +1645,7 @@ export type GetIntegrationApiExportvalidationsByIdDetailData = {
1635
1645
  export type GetIntegrationApiExportvalidationsByIdDetailResponse = ({
1636
1646
  id?: string;
1637
1647
  tagId?: (string) | null;
1648
+ tagNumber?: (string) | null;
1638
1649
  customsId: string;
1639
1650
  customsName: string;
1640
1651
  referenceId?: (string) | null;
@@ -1652,6 +1663,7 @@ export type GetIntegrationApiExportvalidationsDetailsListData = {
1652
1663
  export type GetIntegrationApiExportvalidationsDetailsListResponse = (Array<{
1653
1664
  id?: string;
1654
1665
  tagId?: (string) | null;
1666
+ tagNumber?: (string) | null;
1655
1667
  customsId: string;
1656
1668
  customsName: string;
1657
1669
  referenceId?: (string) | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/saas",
3
- "version": "0.0.106",
3
+ "version": "0.0.107",
4
4
  "description": "Ayasofyazılım SAAS",
5
5
  "exports": {
6
6
  "./*": "./*/index.ts"