@ayasofyazilim/saas 0.0.99 → 0.0.101
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/.github/workflows/release.yaml +12 -88
- package/CRMService/schemas.gen.ts +635 -224
- package/CRMService/services.gen.ts +52 -33
- package/CRMService/types.gen.ts +129 -74
- package/package.json +19 -6
|
@@ -281,7 +281,7 @@ export const $PagedResultDto_MerchantProfileDto = {
|
|
|
281
281
|
items: {
|
|
282
282
|
type: 'array',
|
|
283
283
|
items: {
|
|
284
|
-
required: ['entityInformationTypeCode', 'id', 'name'],
|
|
284
|
+
required: ['entityInformationTypeCode', 'id', 'name', 'taxpayerId'],
|
|
285
285
|
type: 'object',
|
|
286
286
|
properties: {
|
|
287
287
|
id: {
|
|
@@ -301,6 +301,10 @@ export const $PagedResultDto_MerchantProfileDto = {
|
|
|
301
301
|
format: 'uuid',
|
|
302
302
|
nullable: true
|
|
303
303
|
},
|
|
304
|
+
taxpayerId: {
|
|
305
|
+
minLength: 1,
|
|
306
|
+
type: 'string'
|
|
307
|
+
},
|
|
304
308
|
parentName: {
|
|
305
309
|
type: 'string',
|
|
306
310
|
nullable: true
|
|
@@ -1402,7 +1406,7 @@ export const $UniRefund_CRMService_ContactInformationTypes_CreateContactInformat
|
|
|
1402
1406
|
} as const;
|
|
1403
1407
|
|
|
1404
1408
|
export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
1405
|
-
required: ['entityInformationTypes'],
|
|
1409
|
+
required: ['entityInformationTypes', 'taxpayerId'],
|
|
1406
1410
|
type: 'object',
|
|
1407
1411
|
properties: {
|
|
1408
1412
|
extraProperties: {
|
|
@@ -1425,7 +1429,7 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
|
1425
1429
|
organizations: {
|
|
1426
1430
|
type: 'array',
|
|
1427
1431
|
items: {
|
|
1428
|
-
required: ['name'
|
|
1432
|
+
required: ['name'],
|
|
1429
1433
|
type: 'object',
|
|
1430
1434
|
properties: {
|
|
1431
1435
|
extraProperties: {
|
|
@@ -1439,11 +1443,6 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
|
1439
1443
|
minLength: 0,
|
|
1440
1444
|
type: 'string'
|
|
1441
1445
|
},
|
|
1442
|
-
taxpayerId: {
|
|
1443
|
-
maxLength: 255,
|
|
1444
|
-
minLength: 0,
|
|
1445
|
-
type: 'string'
|
|
1446
|
-
},
|
|
1447
1446
|
contactInformations: {
|
|
1448
1447
|
type: 'array',
|
|
1449
1448
|
items: {
|
|
@@ -1599,6 +1598,11 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
|
1599
1598
|
type: 'string',
|
|
1600
1599
|
format: 'uuid',
|
|
1601
1600
|
nullable: true
|
|
1601
|
+
},
|
|
1602
|
+
taxpayerId: {
|
|
1603
|
+
maxLength: 255,
|
|
1604
|
+
minLength: 0,
|
|
1605
|
+
type: 'string'
|
|
1602
1606
|
}
|
|
1603
1607
|
},
|
|
1604
1608
|
additionalProperties: false
|
|
@@ -1616,7 +1620,7 @@ export const $UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDt
|
|
|
1616
1620
|
organizations: {
|
|
1617
1621
|
type: 'array',
|
|
1618
1622
|
items: {
|
|
1619
|
-
required: ['name'
|
|
1623
|
+
required: ['name'],
|
|
1620
1624
|
type: 'object',
|
|
1621
1625
|
properties: {
|
|
1622
1626
|
extraProperties: {
|
|
@@ -1630,11 +1634,6 @@ export const $UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDt
|
|
|
1630
1634
|
minLength: 0,
|
|
1631
1635
|
type: 'string'
|
|
1632
1636
|
},
|
|
1633
|
-
taxpayerId: {
|
|
1634
|
-
maxLength: 255,
|
|
1635
|
-
minLength: 0,
|
|
1636
|
-
type: 'string'
|
|
1637
|
-
},
|
|
1638
1637
|
contactInformations: {
|
|
1639
1638
|
type: 'array',
|
|
1640
1639
|
items: {
|
|
@@ -1787,7 +1786,7 @@ export const $UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDt
|
|
|
1787
1786
|
} as const;
|
|
1788
1787
|
|
|
1789
1788
|
export const $UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
|
|
1790
|
-
required: ['name'
|
|
1789
|
+
required: ['name'],
|
|
1791
1790
|
type: 'object',
|
|
1792
1791
|
properties: {
|
|
1793
1792
|
extraProperties: {
|
|
@@ -1801,11 +1800,6 @@ export const $UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
|
|
|
1801
1800
|
minLength: 0,
|
|
1802
1801
|
type: 'string'
|
|
1803
1802
|
},
|
|
1804
|
-
taxpayerId: {
|
|
1805
|
-
maxLength: 255,
|
|
1806
|
-
minLength: 0,
|
|
1807
|
-
type: 'string'
|
|
1808
|
-
},
|
|
1809
1803
|
contactInformations: {
|
|
1810
1804
|
type: 'array',
|
|
1811
1805
|
items: {
|
|
@@ -2590,10 +2584,6 @@ export const $UniRefund_CRMService_Customss_CustomsDto = {
|
|
|
2590
2584
|
type: 'string',
|
|
2591
2585
|
nullable: true
|
|
2592
2586
|
},
|
|
2593
|
-
taxpayerId: {
|
|
2594
|
-
type: 'string',
|
|
2595
|
-
nullable: true
|
|
2596
|
-
},
|
|
2597
2587
|
legalStatusCode: {
|
|
2598
2588
|
type: 'string',
|
|
2599
2589
|
nullable: true
|
|
@@ -2943,7 +2933,7 @@ export const $UniRefund_CRMService_Customss_CustomsProfileDto = {
|
|
|
2943
2933
|
} as const;
|
|
2944
2934
|
|
|
2945
2935
|
export const $UniRefund_CRMService_Customss_UpdateCustomsOrganizationDto = {
|
|
2946
|
-
required: ['name'
|
|
2936
|
+
required: ['name'],
|
|
2947
2937
|
type: 'object',
|
|
2948
2938
|
properties: {
|
|
2949
2939
|
name: {
|
|
@@ -2951,11 +2941,6 @@ export const $UniRefund_CRMService_Customss_UpdateCustomsOrganizationDto = {
|
|
|
2951
2941
|
minLength: 0,
|
|
2952
2942
|
type: 'string'
|
|
2953
2943
|
},
|
|
2954
|
-
taxpayerId: {
|
|
2955
|
-
maxLength: 255,
|
|
2956
|
-
minLength: 0,
|
|
2957
|
-
type: 'string'
|
|
2958
|
-
},
|
|
2959
2944
|
parentCompanyId: {
|
|
2960
2945
|
type: 'string',
|
|
2961
2946
|
format: 'uuid',
|
|
@@ -3667,10 +3652,6 @@ export const $UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeD
|
|
|
3667
3652
|
type: 'string',
|
|
3668
3653
|
nullable: true
|
|
3669
3654
|
},
|
|
3670
|
-
taxpayerId: {
|
|
3671
|
-
type: 'string',
|
|
3672
|
-
nullable: true
|
|
3673
|
-
},
|
|
3674
3655
|
legalStatusCode: {
|
|
3675
3656
|
type: 'string',
|
|
3676
3657
|
nullable: true
|
|
@@ -3999,6 +3980,29 @@ export const $UniRefund_CRMService_Enums_TelephoneTypeCode = {
|
|
|
3999
3980
|
type: 'string'
|
|
4000
3981
|
} as const;
|
|
4001
3982
|
|
|
3983
|
+
export const $UniRefund_CRMService_Individuals_AbpUserAccountDto = {
|
|
3984
|
+
type: 'object',
|
|
3985
|
+
properties: {
|
|
3986
|
+
id: {
|
|
3987
|
+
type: 'string',
|
|
3988
|
+
format: 'uuid'
|
|
3989
|
+
},
|
|
3990
|
+
userName: {
|
|
3991
|
+
type: 'string',
|
|
3992
|
+
nullable: true
|
|
3993
|
+
},
|
|
3994
|
+
email: {
|
|
3995
|
+
type: 'string',
|
|
3996
|
+
nullable: true
|
|
3997
|
+
},
|
|
3998
|
+
password: {
|
|
3999
|
+
type: 'string',
|
|
4000
|
+
nullable: true
|
|
4001
|
+
}
|
|
4002
|
+
},
|
|
4003
|
+
additionalProperties: false
|
|
4004
|
+
} as const;
|
|
4005
|
+
|
|
4002
4006
|
export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
|
|
4003
4007
|
type: 'object',
|
|
4004
4008
|
properties: {
|
|
@@ -4892,28 +4896,532 @@ export const $UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
|
4892
4896
|
format: 'date-time',
|
|
4893
4897
|
nullable: true
|
|
4894
4898
|
},
|
|
4895
|
-
name: {
|
|
4899
|
+
name: {
|
|
4900
|
+
type: 'string',
|
|
4901
|
+
nullable: true
|
|
4902
|
+
},
|
|
4903
|
+
description: {
|
|
4904
|
+
type: 'string',
|
|
4905
|
+
nullable: true
|
|
4906
|
+
},
|
|
4907
|
+
roleId: {
|
|
4908
|
+
type: 'string',
|
|
4909
|
+
format: 'uuid',
|
|
4910
|
+
nullable: true
|
|
4911
|
+
},
|
|
4912
|
+
status: {
|
|
4913
|
+
enum: ['Waiting', 'Approved', 'Rejected'],
|
|
4914
|
+
type: 'string'
|
|
4915
|
+
},
|
|
4916
|
+
entityPartyTypeCode: {
|
|
4917
|
+
enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
|
|
4918
|
+
type: 'string'
|
|
4919
|
+
},
|
|
4920
|
+
language: {
|
|
4921
|
+
type: 'string',
|
|
4922
|
+
nullable: true
|
|
4923
|
+
}
|
|
4924
|
+
},
|
|
4925
|
+
additionalProperties: false
|
|
4926
|
+
}
|
|
4927
|
+
},
|
|
4928
|
+
additionalProperties: false
|
|
4929
|
+
} as const;
|
|
4930
|
+
|
|
4931
|
+
export const $UniRefund_CRMService_Individuals_IndividualWithAbpUserAccountDto = {
|
|
4932
|
+
type: 'object',
|
|
4933
|
+
properties: {
|
|
4934
|
+
id: {
|
|
4935
|
+
type: 'string',
|
|
4936
|
+
format: 'uuid'
|
|
4937
|
+
},
|
|
4938
|
+
creationTime: {
|
|
4939
|
+
type: 'string',
|
|
4940
|
+
format: 'date-time'
|
|
4941
|
+
},
|
|
4942
|
+
creatorId: {
|
|
4943
|
+
type: 'string',
|
|
4944
|
+
format: 'uuid',
|
|
4945
|
+
nullable: true
|
|
4946
|
+
},
|
|
4947
|
+
lastModificationTime: {
|
|
4948
|
+
type: 'string',
|
|
4949
|
+
format: 'date-time',
|
|
4950
|
+
nullable: true
|
|
4951
|
+
},
|
|
4952
|
+
lastModifierId: {
|
|
4953
|
+
type: 'string',
|
|
4954
|
+
format: 'uuid',
|
|
4955
|
+
nullable: true
|
|
4956
|
+
},
|
|
4957
|
+
isDeleted: {
|
|
4958
|
+
type: 'boolean'
|
|
4959
|
+
},
|
|
4960
|
+
deleterId: {
|
|
4961
|
+
type: 'string',
|
|
4962
|
+
format: 'uuid',
|
|
4963
|
+
nullable: true
|
|
4964
|
+
},
|
|
4965
|
+
deletionTime: {
|
|
4966
|
+
type: 'string',
|
|
4967
|
+
format: 'date-time',
|
|
4968
|
+
nullable: true
|
|
4969
|
+
},
|
|
4970
|
+
name: {
|
|
4971
|
+
type: 'object',
|
|
4972
|
+
properties: {
|
|
4973
|
+
id: {
|
|
4974
|
+
type: 'string',
|
|
4975
|
+
format: 'uuid'
|
|
4976
|
+
},
|
|
4977
|
+
creationTime: {
|
|
4978
|
+
type: 'string',
|
|
4979
|
+
format: 'date-time'
|
|
4980
|
+
},
|
|
4981
|
+
creatorId: {
|
|
4982
|
+
type: 'string',
|
|
4983
|
+
format: 'uuid',
|
|
4984
|
+
nullable: true
|
|
4985
|
+
},
|
|
4986
|
+
lastModificationTime: {
|
|
4987
|
+
type: 'string',
|
|
4988
|
+
format: 'date-time',
|
|
4989
|
+
nullable: true
|
|
4990
|
+
},
|
|
4991
|
+
lastModifierId: {
|
|
4992
|
+
type: 'string',
|
|
4993
|
+
format: 'uuid',
|
|
4994
|
+
nullable: true
|
|
4995
|
+
},
|
|
4996
|
+
isDeleted: {
|
|
4997
|
+
type: 'boolean'
|
|
4998
|
+
},
|
|
4999
|
+
deleterId: {
|
|
5000
|
+
type: 'string',
|
|
5001
|
+
format: 'uuid',
|
|
5002
|
+
nullable: true
|
|
5003
|
+
},
|
|
5004
|
+
deletionTime: {
|
|
5005
|
+
type: 'string',
|
|
5006
|
+
format: 'date-time',
|
|
5007
|
+
nullable: true
|
|
5008
|
+
},
|
|
5009
|
+
salutation: {
|
|
5010
|
+
type: 'string',
|
|
5011
|
+
nullable: true
|
|
5012
|
+
},
|
|
5013
|
+
firstName: {
|
|
5014
|
+
type: 'string',
|
|
5015
|
+
nullable: true
|
|
5016
|
+
},
|
|
5017
|
+
lastName: {
|
|
5018
|
+
type: 'string',
|
|
5019
|
+
nullable: true
|
|
5020
|
+
},
|
|
5021
|
+
suffix: {
|
|
5022
|
+
type: 'string',
|
|
5023
|
+
nullable: true
|
|
5024
|
+
},
|
|
5025
|
+
mailingName: {
|
|
5026
|
+
type: 'string',
|
|
5027
|
+
nullable: true
|
|
5028
|
+
},
|
|
5029
|
+
officialName: {
|
|
5030
|
+
type: 'string',
|
|
5031
|
+
nullable: true
|
|
5032
|
+
},
|
|
5033
|
+
individualId: {
|
|
5034
|
+
type: 'string',
|
|
5035
|
+
format: 'uuid'
|
|
5036
|
+
}
|
|
5037
|
+
},
|
|
5038
|
+
additionalProperties: false
|
|
5039
|
+
},
|
|
5040
|
+
contactInformations: {
|
|
5041
|
+
type: 'array',
|
|
5042
|
+
items: {
|
|
5043
|
+
type: 'object',
|
|
5044
|
+
properties: {
|
|
5045
|
+
id: {
|
|
5046
|
+
type: 'string',
|
|
5047
|
+
format: 'uuid'
|
|
5048
|
+
},
|
|
5049
|
+
creationTime: {
|
|
5050
|
+
type: 'string',
|
|
5051
|
+
format: 'date-time'
|
|
5052
|
+
},
|
|
5053
|
+
creatorId: {
|
|
5054
|
+
type: 'string',
|
|
5055
|
+
format: 'uuid',
|
|
5056
|
+
nullable: true
|
|
5057
|
+
},
|
|
5058
|
+
lastModificationTime: {
|
|
5059
|
+
type: 'string',
|
|
5060
|
+
format: 'date-time',
|
|
5061
|
+
nullable: true
|
|
5062
|
+
},
|
|
5063
|
+
lastModifierId: {
|
|
5064
|
+
type: 'string',
|
|
5065
|
+
format: 'uuid',
|
|
5066
|
+
nullable: true
|
|
5067
|
+
},
|
|
5068
|
+
isDeleted: {
|
|
5069
|
+
type: 'boolean'
|
|
5070
|
+
},
|
|
5071
|
+
deleterId: {
|
|
5072
|
+
type: 'string',
|
|
5073
|
+
format: 'uuid',
|
|
5074
|
+
nullable: true
|
|
5075
|
+
},
|
|
5076
|
+
deletionTime: {
|
|
5077
|
+
type: 'string',
|
|
5078
|
+
format: 'date-time',
|
|
5079
|
+
nullable: true
|
|
5080
|
+
},
|
|
5081
|
+
organizationId: {
|
|
5082
|
+
type: 'string',
|
|
5083
|
+
format: 'uuid',
|
|
5084
|
+
nullable: true
|
|
5085
|
+
},
|
|
5086
|
+
individualId: {
|
|
5087
|
+
type: 'string',
|
|
5088
|
+
format: 'uuid',
|
|
5089
|
+
nullable: true
|
|
5090
|
+
},
|
|
5091
|
+
startDate: {
|
|
5092
|
+
type: 'string',
|
|
5093
|
+
format: 'date-time'
|
|
5094
|
+
},
|
|
5095
|
+
endDate: {
|
|
5096
|
+
type: 'string',
|
|
5097
|
+
format: 'date-time'
|
|
5098
|
+
},
|
|
5099
|
+
telephones: {
|
|
5100
|
+
type: 'array',
|
|
5101
|
+
items: {
|
|
5102
|
+
type: 'object',
|
|
5103
|
+
properties: {
|
|
5104
|
+
id: {
|
|
5105
|
+
type: 'string',
|
|
5106
|
+
format: 'uuid'
|
|
5107
|
+
},
|
|
5108
|
+
creationTime: {
|
|
5109
|
+
type: 'string',
|
|
5110
|
+
format: 'date-time'
|
|
5111
|
+
},
|
|
5112
|
+
creatorId: {
|
|
5113
|
+
type: 'string',
|
|
5114
|
+
format: 'uuid',
|
|
5115
|
+
nullable: true
|
|
5116
|
+
},
|
|
5117
|
+
lastModificationTime: {
|
|
5118
|
+
type: 'string',
|
|
5119
|
+
format: 'date-time',
|
|
5120
|
+
nullable: true
|
|
5121
|
+
},
|
|
5122
|
+
lastModifierId: {
|
|
5123
|
+
type: 'string',
|
|
5124
|
+
format: 'uuid',
|
|
5125
|
+
nullable: true
|
|
5126
|
+
},
|
|
5127
|
+
isDeleted: {
|
|
5128
|
+
type: 'boolean'
|
|
5129
|
+
},
|
|
5130
|
+
deleterId: {
|
|
5131
|
+
type: 'string',
|
|
5132
|
+
format: 'uuid',
|
|
5133
|
+
nullable: true
|
|
5134
|
+
},
|
|
5135
|
+
deletionTime: {
|
|
5136
|
+
type: 'string',
|
|
5137
|
+
format: 'date-time',
|
|
5138
|
+
nullable: true
|
|
5139
|
+
},
|
|
5140
|
+
areaCode: {
|
|
5141
|
+
type: 'string',
|
|
5142
|
+
nullable: true
|
|
5143
|
+
},
|
|
5144
|
+
localNumber: {
|
|
5145
|
+
type: 'string',
|
|
5146
|
+
nullable: true
|
|
5147
|
+
},
|
|
5148
|
+
ituCountryCode: {
|
|
5149
|
+
type: 'string',
|
|
5150
|
+
nullable: true
|
|
5151
|
+
},
|
|
5152
|
+
primaryFlag: {
|
|
5153
|
+
type: 'boolean'
|
|
5154
|
+
},
|
|
5155
|
+
typeCode: {
|
|
5156
|
+
enum: ['HOME', 'OFFICE', 'MOBILE', 'FAX'],
|
|
5157
|
+
type: 'string'
|
|
5158
|
+
},
|
|
5159
|
+
contactInformationTypeId: {
|
|
5160
|
+
type: 'string',
|
|
5161
|
+
format: 'uuid'
|
|
5162
|
+
}
|
|
5163
|
+
},
|
|
5164
|
+
additionalProperties: false
|
|
5165
|
+
},
|
|
5166
|
+
nullable: true
|
|
5167
|
+
},
|
|
5168
|
+
addresses: {
|
|
5169
|
+
type: 'array',
|
|
5170
|
+
items: {
|
|
5171
|
+
required: ['addressLine', 'cityId', 'countryId', 'districtId', 'fullAddress', 'id', 'postalCode', 'type'],
|
|
5172
|
+
type: 'object',
|
|
5173
|
+
properties: {
|
|
5174
|
+
id: {
|
|
5175
|
+
type: 'string',
|
|
5176
|
+
format: 'uuid'
|
|
5177
|
+
},
|
|
5178
|
+
creationTime: {
|
|
5179
|
+
type: 'string',
|
|
5180
|
+
format: 'date-time'
|
|
5181
|
+
},
|
|
5182
|
+
creatorId: {
|
|
5183
|
+
type: 'string',
|
|
5184
|
+
format: 'uuid',
|
|
5185
|
+
nullable: true
|
|
5186
|
+
},
|
|
5187
|
+
lastModificationTime: {
|
|
5188
|
+
type: 'string',
|
|
5189
|
+
format: 'date-time',
|
|
5190
|
+
nullable: true
|
|
5191
|
+
},
|
|
5192
|
+
lastModifierId: {
|
|
5193
|
+
type: 'string',
|
|
5194
|
+
format: 'uuid',
|
|
5195
|
+
nullable: true
|
|
5196
|
+
},
|
|
5197
|
+
isDeleted: {
|
|
5198
|
+
type: 'boolean'
|
|
5199
|
+
},
|
|
5200
|
+
deleterId: {
|
|
5201
|
+
type: 'string',
|
|
5202
|
+
format: 'uuid',
|
|
5203
|
+
nullable: true
|
|
5204
|
+
},
|
|
5205
|
+
deletionTime: {
|
|
5206
|
+
type: 'string',
|
|
5207
|
+
format: 'date-time',
|
|
5208
|
+
nullable: true
|
|
5209
|
+
},
|
|
5210
|
+
type: {
|
|
5211
|
+
enum: ['Home', 'Office', 'Invoice', 'Contact'],
|
|
5212
|
+
type: 'string'
|
|
5213
|
+
},
|
|
5214
|
+
addressLine: {
|
|
5215
|
+
maxLength: 255,
|
|
5216
|
+
minLength: 0,
|
|
5217
|
+
type: 'string'
|
|
5218
|
+
},
|
|
5219
|
+
postalCode: {
|
|
5220
|
+
maxLength: 255,
|
|
5221
|
+
minLength: 0,
|
|
5222
|
+
type: 'string'
|
|
5223
|
+
},
|
|
5224
|
+
fullAddress: {
|
|
5225
|
+
maxLength: 255,
|
|
5226
|
+
minLength: 0,
|
|
5227
|
+
type: 'string'
|
|
5228
|
+
},
|
|
5229
|
+
primaryFlag: {
|
|
5230
|
+
type: 'boolean'
|
|
5231
|
+
},
|
|
5232
|
+
countryId: {
|
|
5233
|
+
type: 'string',
|
|
5234
|
+
format: 'uuid'
|
|
5235
|
+
},
|
|
5236
|
+
regionId: {
|
|
5237
|
+
type: 'string',
|
|
5238
|
+
format: 'uuid',
|
|
5239
|
+
nullable: true
|
|
5240
|
+
},
|
|
5241
|
+
cityId: {
|
|
5242
|
+
type: 'string',
|
|
5243
|
+
format: 'uuid'
|
|
5244
|
+
},
|
|
5245
|
+
districtId: {
|
|
5246
|
+
type: 'string',
|
|
5247
|
+
format: 'uuid'
|
|
5248
|
+
},
|
|
5249
|
+
neighborhoodId: {
|
|
5250
|
+
type: 'string',
|
|
5251
|
+
format: 'uuid',
|
|
5252
|
+
nullable: true
|
|
5253
|
+
}
|
|
5254
|
+
},
|
|
5255
|
+
additionalProperties: false
|
|
5256
|
+
},
|
|
5257
|
+
nullable: true
|
|
5258
|
+
},
|
|
5259
|
+
emails: {
|
|
5260
|
+
type: 'array',
|
|
5261
|
+
items: {
|
|
5262
|
+
type: 'object',
|
|
5263
|
+
properties: {
|
|
5264
|
+
id: {
|
|
5265
|
+
type: 'string',
|
|
5266
|
+
format: 'uuid'
|
|
5267
|
+
},
|
|
5268
|
+
creationTime: {
|
|
5269
|
+
type: 'string',
|
|
5270
|
+
format: 'date-time'
|
|
5271
|
+
},
|
|
5272
|
+
creatorId: {
|
|
5273
|
+
type: 'string',
|
|
5274
|
+
format: 'uuid',
|
|
5275
|
+
nullable: true
|
|
5276
|
+
},
|
|
5277
|
+
lastModificationTime: {
|
|
5278
|
+
type: 'string',
|
|
5279
|
+
format: 'date-time',
|
|
5280
|
+
nullable: true
|
|
5281
|
+
},
|
|
5282
|
+
lastModifierId: {
|
|
5283
|
+
type: 'string',
|
|
5284
|
+
format: 'uuid',
|
|
5285
|
+
nullable: true
|
|
5286
|
+
},
|
|
5287
|
+
isDeleted: {
|
|
5288
|
+
type: 'boolean'
|
|
5289
|
+
},
|
|
5290
|
+
deleterId: {
|
|
5291
|
+
type: 'string',
|
|
5292
|
+
format: 'uuid',
|
|
5293
|
+
nullable: true
|
|
5294
|
+
},
|
|
5295
|
+
deletionTime: {
|
|
5296
|
+
type: 'string',
|
|
5297
|
+
format: 'date-time',
|
|
5298
|
+
nullable: true
|
|
5299
|
+
},
|
|
5300
|
+
primaryFlag: {
|
|
5301
|
+
type: 'boolean'
|
|
5302
|
+
},
|
|
5303
|
+
typeCode: {
|
|
5304
|
+
enum: ['WORK', 'PERSONAL'],
|
|
5305
|
+
type: 'string'
|
|
5306
|
+
},
|
|
5307
|
+
emailAddress: {
|
|
5308
|
+
type: 'string',
|
|
5309
|
+
nullable: true
|
|
5310
|
+
},
|
|
5311
|
+
contactInformationTypeId: {
|
|
5312
|
+
type: 'string',
|
|
5313
|
+
format: 'uuid'
|
|
5314
|
+
}
|
|
5315
|
+
},
|
|
5316
|
+
additionalProperties: false
|
|
5317
|
+
},
|
|
5318
|
+
nullable: true
|
|
5319
|
+
}
|
|
5320
|
+
},
|
|
5321
|
+
additionalProperties: false
|
|
5322
|
+
},
|
|
5323
|
+
nullable: true
|
|
5324
|
+
},
|
|
5325
|
+
personalSummaries: {
|
|
5326
|
+
type: 'array',
|
|
5327
|
+
items: {
|
|
5328
|
+
type: 'object',
|
|
5329
|
+
properties: {
|
|
5330
|
+
id: {
|
|
5331
|
+
type: 'string',
|
|
5332
|
+
format: 'uuid'
|
|
5333
|
+
},
|
|
5334
|
+
creationTime: {
|
|
5335
|
+
type: 'string',
|
|
5336
|
+
format: 'date-time'
|
|
5337
|
+
},
|
|
5338
|
+
creatorId: {
|
|
5339
|
+
type: 'string',
|
|
5340
|
+
format: 'uuid',
|
|
5341
|
+
nullable: true
|
|
5342
|
+
},
|
|
5343
|
+
lastModificationTime: {
|
|
5344
|
+
type: 'string',
|
|
5345
|
+
format: 'date-time',
|
|
5346
|
+
nullable: true
|
|
5347
|
+
},
|
|
5348
|
+
lastModifierId: {
|
|
5349
|
+
type: 'string',
|
|
5350
|
+
format: 'uuid',
|
|
5351
|
+
nullable: true
|
|
5352
|
+
},
|
|
5353
|
+
isDeleted: {
|
|
5354
|
+
type: 'boolean'
|
|
5355
|
+
},
|
|
5356
|
+
deleterId: {
|
|
5357
|
+
type: 'string',
|
|
5358
|
+
format: 'uuid',
|
|
5359
|
+
nullable: true
|
|
5360
|
+
},
|
|
5361
|
+
deletionTime: {
|
|
5362
|
+
type: 'string',
|
|
5363
|
+
format: 'date-time',
|
|
5364
|
+
nullable: true
|
|
5365
|
+
},
|
|
5366
|
+
date: {
|
|
5367
|
+
type: 'string',
|
|
5368
|
+
format: 'date-time'
|
|
5369
|
+
},
|
|
5370
|
+
birthDate: {
|
|
5371
|
+
type: 'string',
|
|
5372
|
+
format: 'date-time'
|
|
5373
|
+
},
|
|
5374
|
+
ethnicity: {
|
|
5375
|
+
type: 'string',
|
|
5376
|
+
nullable: true
|
|
5377
|
+
},
|
|
5378
|
+
maritalStatusCode: {
|
|
5379
|
+
type: 'string',
|
|
5380
|
+
nullable: true
|
|
5381
|
+
},
|
|
5382
|
+
religiousAffiliationName: {
|
|
5383
|
+
type: 'string',
|
|
5384
|
+
nullable: true
|
|
5385
|
+
},
|
|
5386
|
+
genderTypeCode: {
|
|
5387
|
+
enum: ['MALE', 'FEMALE'],
|
|
5388
|
+
type: 'string'
|
|
5389
|
+
},
|
|
5390
|
+
individualId: {
|
|
5391
|
+
type: 'string',
|
|
5392
|
+
format: 'uuid'
|
|
5393
|
+
}
|
|
5394
|
+
},
|
|
5395
|
+
additionalProperties: false
|
|
5396
|
+
},
|
|
5397
|
+
nullable: true
|
|
5398
|
+
},
|
|
5399
|
+
entityInformationTypeId: {
|
|
5400
|
+
type: 'string',
|
|
5401
|
+
format: 'uuid',
|
|
5402
|
+
nullable: true
|
|
5403
|
+
},
|
|
5404
|
+
abpUserId: {
|
|
5405
|
+
type: 'string',
|
|
5406
|
+
format: 'uuid',
|
|
5407
|
+
nullable: true
|
|
5408
|
+
},
|
|
5409
|
+
userAccount: {
|
|
5410
|
+
type: 'object',
|
|
5411
|
+
properties: {
|
|
5412
|
+
id: {
|
|
4896
5413
|
type: 'string',
|
|
4897
|
-
|
|
5414
|
+
format: 'uuid'
|
|
4898
5415
|
},
|
|
4899
|
-
|
|
5416
|
+
userName: {
|
|
4900
5417
|
type: 'string',
|
|
4901
5418
|
nullable: true
|
|
4902
5419
|
},
|
|
4903
|
-
|
|
5420
|
+
email: {
|
|
4904
5421
|
type: 'string',
|
|
4905
|
-
format: 'uuid',
|
|
4906
5422
|
nullable: true
|
|
4907
5423
|
},
|
|
4908
|
-
|
|
4909
|
-
enum: ['Waiting', 'Approved', 'Rejected'],
|
|
4910
|
-
type: 'string'
|
|
4911
|
-
},
|
|
4912
|
-
entityPartyTypeCode: {
|
|
4913
|
-
enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
|
|
4914
|
-
type: 'string'
|
|
4915
|
-
},
|
|
4916
|
-
language: {
|
|
5424
|
+
password: {
|
|
4917
5425
|
type: 'string',
|
|
4918
5426
|
nullable: true
|
|
4919
5427
|
}
|
|
@@ -4924,26 +5432,8 @@ export const $UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
|
4924
5432
|
additionalProperties: false
|
|
4925
5433
|
} as const;
|
|
4926
5434
|
|
|
4927
|
-
export const $UniRefund_CRMService_Individuals_UpdateIndividualDto = {
|
|
4928
|
-
type: 'object',
|
|
4929
|
-
properties: {
|
|
4930
|
-
extraProperties: {
|
|
4931
|
-
type: 'object',
|
|
4932
|
-
additionalProperties: {},
|
|
4933
|
-
nullable: true,
|
|
4934
|
-
readOnly: true
|
|
4935
|
-
},
|
|
4936
|
-
abpUserId: {
|
|
4937
|
-
type: 'string',
|
|
4938
|
-
format: 'uuid',
|
|
4939
|
-
nullable: true
|
|
4940
|
-
}
|
|
4941
|
-
},
|
|
4942
|
-
additionalProperties: false
|
|
4943
|
-
} as const;
|
|
4944
|
-
|
|
4945
5435
|
export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
4946
|
-
required: ['entityInformationTypes', 'taxOfficeId', 'typeCode'],
|
|
5436
|
+
required: ['entityInformationTypes', 'taxOfficeId', 'taxpayerId', 'typeCode'],
|
|
4947
5437
|
type: 'object',
|
|
4948
5438
|
properties: {
|
|
4949
5439
|
extraProperties: {
|
|
@@ -4969,6 +5459,11 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
4969
5459
|
type: 'string',
|
|
4970
5460
|
nullable: true
|
|
4971
5461
|
},
|
|
5462
|
+
taxpayerId: {
|
|
5463
|
+
maxLength: 255,
|
|
5464
|
+
minLength: 0,
|
|
5465
|
+
type: 'string'
|
|
5466
|
+
},
|
|
4972
5467
|
entityInformationTypes: {
|
|
4973
5468
|
type: 'array',
|
|
4974
5469
|
items: {
|
|
@@ -5225,7 +5720,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5225
5720
|
organizations: {
|
|
5226
5721
|
type: 'array',
|
|
5227
5722
|
items: {
|
|
5228
|
-
required: ['contactInformations', 'legalStatusCode', 'name'
|
|
5723
|
+
required: ['contactInformations', 'legalStatusCode', 'name'],
|
|
5229
5724
|
type: 'object',
|
|
5230
5725
|
properties: {
|
|
5231
5726
|
extraProperties: {
|
|
@@ -5239,11 +5734,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5239
5734
|
minLength: 0,
|
|
5240
5735
|
type: 'string'
|
|
5241
5736
|
},
|
|
5242
|
-
taxpayerId: {
|
|
5243
|
-
maxLength: 255,
|
|
5244
|
-
minLength: 0,
|
|
5245
|
-
type: 'string'
|
|
5246
|
-
},
|
|
5247
5737
|
legalStatusCode: {
|
|
5248
5738
|
maxLength: 255,
|
|
5249
5739
|
minLength: 0,
|
|
@@ -5657,7 +6147,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
5657
6147
|
organizations: {
|
|
5658
6148
|
type: 'array',
|
|
5659
6149
|
items: {
|
|
5660
|
-
required: ['contactInformations', 'legalStatusCode', 'name'
|
|
6150
|
+
required: ['contactInformations', 'legalStatusCode', 'name'],
|
|
5661
6151
|
type: 'object',
|
|
5662
6152
|
properties: {
|
|
5663
6153
|
extraProperties: {
|
|
@@ -5671,11 +6161,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
5671
6161
|
minLength: 0,
|
|
5672
6162
|
type: 'string'
|
|
5673
6163
|
},
|
|
5674
|
-
taxpayerId: {
|
|
5675
|
-
maxLength: 255,
|
|
5676
|
-
minLength: 0,
|
|
5677
|
-
type: 'string'
|
|
5678
|
-
},
|
|
5679
6164
|
legalStatusCode: {
|
|
5680
6165
|
maxLength: 255,
|
|
5681
6166
|
minLength: 0,
|
|
@@ -5832,7 +6317,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
5832
6317
|
} as const;
|
|
5833
6318
|
|
|
5834
6319
|
export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
5835
|
-
required: ['contactInformations', 'legalStatusCode', 'name'
|
|
6320
|
+
required: ['contactInformations', 'legalStatusCode', 'name'],
|
|
5836
6321
|
type: 'object',
|
|
5837
6322
|
properties: {
|
|
5838
6323
|
extraProperties: {
|
|
@@ -5846,11 +6331,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
5846
6331
|
minLength: 0,
|
|
5847
6332
|
type: 'string'
|
|
5848
6333
|
},
|
|
5849
|
-
taxpayerId: {
|
|
5850
|
-
maxLength: 255,
|
|
5851
|
-
minLength: 0,
|
|
5852
|
-
type: 'string'
|
|
5853
|
-
},
|
|
5854
6334
|
legalStatusCode: {
|
|
5855
6335
|
maxLength: 255,
|
|
5856
6336
|
minLength: 0,
|
|
@@ -6714,10 +7194,6 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
6714
7194
|
type: 'string',
|
|
6715
7195
|
nullable: true
|
|
6716
7196
|
},
|
|
6717
|
-
taxpayerId: {
|
|
6718
|
-
type: 'string',
|
|
6719
|
-
nullable: true
|
|
6720
|
-
},
|
|
6721
7197
|
legalStatusCode: {
|
|
6722
7198
|
type: 'string',
|
|
6723
7199
|
nullable: true
|
|
@@ -7856,10 +8332,6 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
|
|
|
7856
8332
|
type: 'string',
|
|
7857
8333
|
nullable: true
|
|
7858
8334
|
},
|
|
7859
|
-
taxpayerId: {
|
|
7860
|
-
type: 'string',
|
|
7861
|
-
nullable: true
|
|
7862
|
-
},
|
|
7863
8335
|
legalStatusCode: {
|
|
7864
8336
|
type: 'string',
|
|
7865
8337
|
nullable: true
|
|
@@ -8330,10 +8802,6 @@ export const $UniRefund_CRMService_Merchants_MerchantInfoDto = {
|
|
|
8330
8802
|
type: 'string',
|
|
8331
8803
|
nullable: true
|
|
8332
8804
|
},
|
|
8333
|
-
countryCode: {
|
|
8334
|
-
type: 'string',
|
|
8335
|
-
nullable: true
|
|
8336
|
-
},
|
|
8337
8805
|
customerNumber: {
|
|
8338
8806
|
type: 'string',
|
|
8339
8807
|
nullable: true
|
|
@@ -8359,7 +8827,7 @@ export const $UniRefund_CRMService_Merchants_MerchantNameDto = {
|
|
|
8359
8827
|
} as const;
|
|
8360
8828
|
|
|
8361
8829
|
export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
8362
|
-
required: ['entityInformationTypeCode', 'id', 'name'],
|
|
8830
|
+
required: ['entityInformationTypeCode', 'id', 'name', 'taxpayerId'],
|
|
8363
8831
|
type: 'object',
|
|
8364
8832
|
properties: {
|
|
8365
8833
|
id: {
|
|
@@ -8379,6 +8847,10 @@ export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
|
8379
8847
|
format: 'uuid',
|
|
8380
8848
|
nullable: true
|
|
8381
8849
|
},
|
|
8850
|
+
taxpayerId: {
|
|
8851
|
+
minLength: 1,
|
|
8852
|
+
type: 'string'
|
|
8853
|
+
},
|
|
8382
8854
|
parentName: {
|
|
8383
8855
|
type: 'string',
|
|
8384
8856
|
nullable: true
|
|
@@ -8406,34 +8878,6 @@ export const $UniRefund_CRMService_Merchants_MerchantTypeCode = {
|
|
|
8406
8878
|
type: 'string'
|
|
8407
8879
|
} as const;
|
|
8408
8880
|
|
|
8409
|
-
export const $UniRefund_CRMService_Merchants_RefundPointProfileDto = {
|
|
8410
|
-
type: 'object',
|
|
8411
|
-
properties: {
|
|
8412
|
-
id: {
|
|
8413
|
-
type: 'string',
|
|
8414
|
-
format: 'uuid'
|
|
8415
|
-
},
|
|
8416
|
-
name: {
|
|
8417
|
-
type: 'string',
|
|
8418
|
-
nullable: true
|
|
8419
|
-
},
|
|
8420
|
-
organizationId: {
|
|
8421
|
-
type: 'string',
|
|
8422
|
-
format: 'uuid'
|
|
8423
|
-
},
|
|
8424
|
-
parentId: {
|
|
8425
|
-
type: 'string',
|
|
8426
|
-
format: 'uuid',
|
|
8427
|
-
nullable: true
|
|
8428
|
-
},
|
|
8429
|
-
taxOfficeId: {
|
|
8430
|
-
type: 'string',
|
|
8431
|
-
format: 'uuid'
|
|
8432
|
-
}
|
|
8433
|
-
},
|
|
8434
|
-
additionalProperties: false
|
|
8435
|
-
} as const;
|
|
8436
|
-
|
|
8437
8881
|
export const $UniRefund_CRMService_Merchants_StoreProfileDto = {
|
|
8438
8882
|
required: ['fullAddress', 'id', 'manager', 'name'],
|
|
8439
8883
|
type: 'object',
|
|
@@ -8640,7 +9084,7 @@ export const $UniRefund_CRMService_Merchants_SubIndividualDto = {
|
|
|
8640
9084
|
} as const;
|
|
8641
9085
|
|
|
8642
9086
|
export const $UniRefund_CRMService_Merchants_UpdateMerchantDto = {
|
|
8643
|
-
required: ['taxOfficeId', 'typeCode'],
|
|
9087
|
+
required: ['taxOfficeId', 'taxpayerId', 'typeCode'],
|
|
8644
9088
|
type: 'object',
|
|
8645
9089
|
properties: {
|
|
8646
9090
|
typeCode: {
|
|
@@ -8655,6 +9099,11 @@ export const $UniRefund_CRMService_Merchants_UpdateMerchantDto = {
|
|
|
8655
9099
|
type: 'string',
|
|
8656
9100
|
format: 'uuid',
|
|
8657
9101
|
nullable: true
|
|
9102
|
+
},
|
|
9103
|
+
taxpayerId: {
|
|
9104
|
+
maxLength: 255,
|
|
9105
|
+
minLength: 0,
|
|
9106
|
+
type: 'string'
|
|
8658
9107
|
}
|
|
8659
9108
|
},
|
|
8660
9109
|
additionalProperties: false
|
|
@@ -8814,7 +9263,7 @@ export const $UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
|
|
|
8814
9263
|
} as const;
|
|
8815
9264
|
|
|
8816
9265
|
export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
8817
|
-
required: ['legalStatusCode', 'name'
|
|
9266
|
+
required: ['legalStatusCode', 'name'],
|
|
8818
9267
|
type: 'object',
|
|
8819
9268
|
properties: {
|
|
8820
9269
|
extraProperties: {
|
|
@@ -8828,11 +9277,6 @@ export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
8828
9277
|
minLength: 0,
|
|
8829
9278
|
type: 'string'
|
|
8830
9279
|
},
|
|
8831
|
-
taxpayerId: {
|
|
8832
|
-
maxLength: 255,
|
|
8833
|
-
minLength: 0,
|
|
8834
|
-
type: 'string'
|
|
8835
|
-
},
|
|
8836
9280
|
legalStatusCode: {
|
|
8837
9281
|
maxLength: 255,
|
|
8838
9282
|
minLength: 0,
|
|
@@ -9032,10 +9476,6 @@ export const $UniRefund_CRMService_Organizations_OrganizationDto = {
|
|
|
9032
9476
|
type: 'string',
|
|
9033
9477
|
nullable: true
|
|
9034
9478
|
},
|
|
9035
|
-
taxpayerId: {
|
|
9036
|
-
type: 'string',
|
|
9037
|
-
nullable: true
|
|
9038
|
-
},
|
|
9039
9479
|
legalStatusCode: {
|
|
9040
9480
|
type: 'string',
|
|
9041
9481
|
nullable: true
|
|
@@ -9422,7 +9862,7 @@ export const $UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
|
9422
9862
|
} as const;
|
|
9423
9863
|
|
|
9424
9864
|
export const $UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
9425
|
-
required: ['name'
|
|
9865
|
+
required: ['name'],
|
|
9426
9866
|
type: 'object',
|
|
9427
9867
|
properties: {
|
|
9428
9868
|
extraProperties: {
|
|
@@ -9436,11 +9876,6 @@ export const $UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
|
9436
9876
|
minLength: 0,
|
|
9437
9877
|
type: 'string'
|
|
9438
9878
|
},
|
|
9439
|
-
taxpayerId: {
|
|
9440
|
-
maxLength: 255,
|
|
9441
|
-
minLength: 0,
|
|
9442
|
-
type: 'string'
|
|
9443
|
-
},
|
|
9444
9879
|
legalStatusCode: {
|
|
9445
9880
|
maxLength: 255,
|
|
9446
9881
|
minLength: 0,
|
|
@@ -9610,7 +10045,7 @@ export const $UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto =
|
|
|
9610
10045
|
} as const;
|
|
9611
10046
|
|
|
9612
10047
|
export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
9613
|
-
required: ['taxOfficeId', 'typeCode'],
|
|
10048
|
+
required: ['taxOfficeId', 'taxpayerId', 'typeCode'],
|
|
9614
10049
|
type: 'object',
|
|
9615
10050
|
properties: {
|
|
9616
10051
|
extraProperties: {
|
|
@@ -9632,6 +10067,11 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
|
9632
10067
|
format: 'uuid',
|
|
9633
10068
|
nullable: true
|
|
9634
10069
|
},
|
|
10070
|
+
taxpayerId: {
|
|
10071
|
+
maxLength: 255,
|
|
10072
|
+
minLength: 0,
|
|
10073
|
+
type: 'string'
|
|
10074
|
+
},
|
|
9635
10075
|
entityInformationTypes: {
|
|
9636
10076
|
type: 'array',
|
|
9637
10077
|
items: {
|
|
@@ -9646,7 +10086,7 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
|
9646
10086
|
organizations: {
|
|
9647
10087
|
type: 'array',
|
|
9648
10088
|
items: {
|
|
9649
|
-
required: ['contactInformations', 'name'
|
|
10089
|
+
required: ['contactInformations', 'name'],
|
|
9650
10090
|
type: 'object',
|
|
9651
10091
|
properties: {
|
|
9652
10092
|
name: {
|
|
@@ -9654,11 +10094,6 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
|
9654
10094
|
minLength: 0,
|
|
9655
10095
|
type: 'string'
|
|
9656
10096
|
},
|
|
9657
|
-
taxpayerId: {
|
|
9658
|
-
maxLength: 255,
|
|
9659
|
-
minLength: 0,
|
|
9660
|
-
type: 'string'
|
|
9661
|
-
},
|
|
9662
10097
|
contactInformations: {
|
|
9663
10098
|
type: 'array',
|
|
9664
10099
|
items: {
|
|
@@ -9826,7 +10261,7 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformati
|
|
|
9826
10261
|
organizations: {
|
|
9827
10262
|
type: 'array',
|
|
9828
10263
|
items: {
|
|
9829
|
-
required: ['contactInformations', 'name'
|
|
10264
|
+
required: ['contactInformations', 'name'],
|
|
9830
10265
|
type: 'object',
|
|
9831
10266
|
properties: {
|
|
9832
10267
|
name: {
|
|
@@ -9834,11 +10269,6 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformati
|
|
|
9834
10269
|
minLength: 0,
|
|
9835
10270
|
type: 'string'
|
|
9836
10271
|
},
|
|
9837
|
-
taxpayerId: {
|
|
9838
|
-
maxLength: 255,
|
|
9839
|
-
minLength: 0,
|
|
9840
|
-
type: 'string'
|
|
9841
|
-
},
|
|
9842
10272
|
contactInformations: {
|
|
9843
10273
|
type: 'array',
|
|
9844
10274
|
items: {
|
|
@@ -9990,7 +10420,7 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformati
|
|
|
9990
10420
|
} as const;
|
|
9991
10421
|
|
|
9992
10422
|
export const $UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto = {
|
|
9993
|
-
required: ['contactInformations', 'name'
|
|
10423
|
+
required: ['contactInformations', 'name'],
|
|
9994
10424
|
type: 'object',
|
|
9995
10425
|
properties: {
|
|
9996
10426
|
name: {
|
|
@@ -9998,11 +10428,6 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto
|
|
|
9998
10428
|
minLength: 0,
|
|
9999
10429
|
type: 'string'
|
|
10000
10430
|
},
|
|
10001
|
-
taxpayerId: {
|
|
10002
|
-
maxLength: 255,
|
|
10003
|
-
minLength: 0,
|
|
10004
|
-
type: 'string'
|
|
10005
|
-
},
|
|
10006
10431
|
contactInformations: {
|
|
10007
10432
|
type: 'array',
|
|
10008
10433
|
items: {
|
|
@@ -10852,10 +11277,6 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointDto = {
|
|
|
10852
11277
|
type: 'string',
|
|
10853
11278
|
nullable: true
|
|
10854
11279
|
},
|
|
10855
|
-
taxpayerId: {
|
|
10856
|
-
type: 'string',
|
|
10857
|
-
nullable: true
|
|
10858
|
-
},
|
|
10859
11280
|
legalStatusCode: {
|
|
10860
11281
|
type: 'string',
|
|
10861
11282
|
nullable: true
|
|
@@ -11180,13 +11601,41 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointNameDto = {
|
|
|
11180
11601
|
additionalProperties: false
|
|
11181
11602
|
} as const;
|
|
11182
11603
|
|
|
11604
|
+
export const $UniRefund_CRMService_RefundPoints_RefundPointProfileDto = {
|
|
11605
|
+
type: 'object',
|
|
11606
|
+
properties: {
|
|
11607
|
+
id: {
|
|
11608
|
+
type: 'string',
|
|
11609
|
+
format: 'uuid'
|
|
11610
|
+
},
|
|
11611
|
+
name: {
|
|
11612
|
+
type: 'string',
|
|
11613
|
+
nullable: true
|
|
11614
|
+
},
|
|
11615
|
+
organizationId: {
|
|
11616
|
+
type: 'string',
|
|
11617
|
+
format: 'uuid'
|
|
11618
|
+
},
|
|
11619
|
+
parentId: {
|
|
11620
|
+
type: 'string',
|
|
11621
|
+
format: 'uuid',
|
|
11622
|
+
nullable: true
|
|
11623
|
+
},
|
|
11624
|
+
taxOfficeId: {
|
|
11625
|
+
type: 'string',
|
|
11626
|
+
format: 'uuid'
|
|
11627
|
+
}
|
|
11628
|
+
},
|
|
11629
|
+
additionalProperties: false
|
|
11630
|
+
} as const;
|
|
11631
|
+
|
|
11183
11632
|
export const $UniRefund_CRMService_RefundPoints_RefundPointTypeCode = {
|
|
11184
11633
|
enum: ['HEADQUARTER', 'REFUNDPOINT'],
|
|
11185
11634
|
type: 'string'
|
|
11186
11635
|
} as const;
|
|
11187
11636
|
|
|
11188
11637
|
export const $UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto = {
|
|
11189
|
-
required: ['name'
|
|
11638
|
+
required: ['name'],
|
|
11190
11639
|
type: 'object',
|
|
11191
11640
|
properties: {
|
|
11192
11641
|
name: {
|
|
@@ -11194,11 +11643,6 @@ export const $UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto
|
|
|
11194
11643
|
minLength: 0,
|
|
11195
11644
|
type: 'string'
|
|
11196
11645
|
},
|
|
11197
|
-
taxpayerId: {
|
|
11198
|
-
maxLength: 255,
|
|
11199
|
-
minLength: 0,
|
|
11200
|
-
type: 'string'
|
|
11201
|
-
},
|
|
11202
11646
|
parentCompanyId: {
|
|
11203
11647
|
type: 'string',
|
|
11204
11648
|
format: 'uuid',
|
|
@@ -11209,7 +11653,7 @@ export const $UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto
|
|
|
11209
11653
|
} as const;
|
|
11210
11654
|
|
|
11211
11655
|
export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
11212
|
-
required: ['entityInformationTypes'],
|
|
11656
|
+
required: ['entityInformationTypes', 'taxpayerId'],
|
|
11213
11657
|
type: 'object',
|
|
11214
11658
|
properties: {
|
|
11215
11659
|
extraProperties: {
|
|
@@ -11232,7 +11676,7 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
11232
11676
|
organizations: {
|
|
11233
11677
|
type: 'array',
|
|
11234
11678
|
items: {
|
|
11235
|
-
required: ['legalStatusCode', 'name'
|
|
11679
|
+
required: ['legalStatusCode', 'name'],
|
|
11236
11680
|
type: 'object',
|
|
11237
11681
|
properties: {
|
|
11238
11682
|
extraProperties: {
|
|
@@ -11246,11 +11690,6 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
11246
11690
|
minLength: 0,
|
|
11247
11691
|
type: 'string'
|
|
11248
11692
|
},
|
|
11249
|
-
taxpayerId: {
|
|
11250
|
-
maxLength: 255,
|
|
11251
|
-
minLength: 0,
|
|
11252
|
-
type: 'string'
|
|
11253
|
-
},
|
|
11254
11693
|
legalStatusCode: {
|
|
11255
11694
|
maxLength: 255,
|
|
11256
11695
|
minLength: 0,
|
|
@@ -11411,6 +11850,11 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
11411
11850
|
type: 'string',
|
|
11412
11851
|
format: 'uuid',
|
|
11413
11852
|
nullable: true
|
|
11853
|
+
},
|
|
11854
|
+
taxpayerId: {
|
|
11855
|
+
maxLength: 255,
|
|
11856
|
+
minLength: 0,
|
|
11857
|
+
type: 'string'
|
|
11414
11858
|
}
|
|
11415
11859
|
},
|
|
11416
11860
|
additionalProperties: false
|
|
@@ -11428,7 +11872,7 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDt
|
|
|
11428
11872
|
organizations: {
|
|
11429
11873
|
type: 'array',
|
|
11430
11874
|
items: {
|
|
11431
|
-
required: ['legalStatusCode', 'name'
|
|
11875
|
+
required: ['legalStatusCode', 'name'],
|
|
11432
11876
|
type: 'object',
|
|
11433
11877
|
properties: {
|
|
11434
11878
|
extraProperties: {
|
|
@@ -11442,11 +11886,6 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDt
|
|
|
11442
11886
|
minLength: 0,
|
|
11443
11887
|
type: 'string'
|
|
11444
11888
|
},
|
|
11445
|
-
taxpayerId: {
|
|
11446
|
-
maxLength: 255,
|
|
11447
|
-
minLength: 0,
|
|
11448
|
-
type: 'string'
|
|
11449
|
-
},
|
|
11450
11889
|
legalStatusCode: {
|
|
11451
11890
|
maxLength: 255,
|
|
11452
11891
|
minLength: 0,
|
|
@@ -11604,7 +12043,7 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDt
|
|
|
11604
12043
|
} as const;
|
|
11605
12044
|
|
|
11606
12045
|
export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
11607
|
-
required: ['legalStatusCode', 'name'
|
|
12046
|
+
required: ['legalStatusCode', 'name'],
|
|
11608
12047
|
type: 'object',
|
|
11609
12048
|
properties: {
|
|
11610
12049
|
extraProperties: {
|
|
@@ -11618,11 +12057,6 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
|
11618
12057
|
minLength: 0,
|
|
11619
12058
|
type: 'string'
|
|
11620
12059
|
},
|
|
11621
|
-
taxpayerId: {
|
|
11622
|
-
maxLength: 255,
|
|
11623
|
-
minLength: 0,
|
|
11624
|
-
type: 'string'
|
|
11625
|
-
},
|
|
11626
12060
|
legalStatusCode: {
|
|
11627
12061
|
maxLength: 255,
|
|
11628
12062
|
minLength: 0,
|
|
@@ -12407,10 +12841,6 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeDto = {
|
|
|
12407
12841
|
type: 'string',
|
|
12408
12842
|
nullable: true
|
|
12409
12843
|
},
|
|
12410
|
-
taxpayerId: {
|
|
12411
|
-
type: 'string',
|
|
12412
|
-
nullable: true
|
|
12413
|
-
},
|
|
12414
12844
|
legalStatusCode: {
|
|
12415
12845
|
type: 'string',
|
|
12416
12846
|
nullable: true
|
|
@@ -12764,7 +13194,7 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
|
12764
13194
|
} as const;
|
|
12765
13195
|
|
|
12766
13196
|
export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
12767
|
-
required: ['entityInformationTypes'],
|
|
13197
|
+
required: ['entityInformationTypes', 'taxpayerId'],
|
|
12768
13198
|
type: 'object',
|
|
12769
13199
|
properties: {
|
|
12770
13200
|
extraProperties: {
|
|
@@ -12787,7 +13217,7 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
|
12787
13217
|
organizations: {
|
|
12788
13218
|
type: 'array',
|
|
12789
13219
|
items: {
|
|
12790
|
-
required: ['name'
|
|
13220
|
+
required: ['name'],
|
|
12791
13221
|
type: 'object',
|
|
12792
13222
|
properties: {
|
|
12793
13223
|
extraProperties: {
|
|
@@ -12801,11 +13231,6 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
|
12801
13231
|
minLength: 0,
|
|
12802
13232
|
type: 'string'
|
|
12803
13233
|
},
|
|
12804
|
-
taxpayerId: {
|
|
12805
|
-
maxLength: 255,
|
|
12806
|
-
minLength: 0,
|
|
12807
|
-
type: 'string'
|
|
12808
|
-
},
|
|
12809
13234
|
contactInformations: {
|
|
12810
13235
|
type: 'array',
|
|
12811
13236
|
items: {
|
|
@@ -12961,6 +13386,11 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
|
12961
13386
|
type: 'string',
|
|
12962
13387
|
format: 'uuid',
|
|
12963
13388
|
nullable: true
|
|
13389
|
+
},
|
|
13390
|
+
taxpayerId: {
|
|
13391
|
+
maxLength: 255,
|
|
13392
|
+
minLength: 0,
|
|
13393
|
+
type: 'string'
|
|
12964
13394
|
}
|
|
12965
13395
|
},
|
|
12966
13396
|
additionalProperties: false
|
|
@@ -12978,7 +13408,7 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTy
|
|
|
12978
13408
|
organizations: {
|
|
12979
13409
|
type: 'array',
|
|
12980
13410
|
items: {
|
|
12981
|
-
required: ['name'
|
|
13411
|
+
required: ['name'],
|
|
12982
13412
|
type: 'object',
|
|
12983
13413
|
properties: {
|
|
12984
13414
|
extraProperties: {
|
|
@@ -12992,11 +13422,6 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTy
|
|
|
12992
13422
|
minLength: 0,
|
|
12993
13423
|
type: 'string'
|
|
12994
13424
|
},
|
|
12995
|
-
taxpayerId: {
|
|
12996
|
-
maxLength: 255,
|
|
12997
|
-
minLength: 0,
|
|
12998
|
-
type: 'string'
|
|
12999
|
-
},
|
|
13000
13425
|
contactInformations: {
|
|
13001
13426
|
type: 'array',
|
|
13002
13427
|
items: {
|
|
@@ -13149,7 +13574,7 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTy
|
|
|
13149
13574
|
} as const;
|
|
13150
13575
|
|
|
13151
13576
|
export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
|
|
13152
|
-
required: ['name'
|
|
13577
|
+
required: ['name'],
|
|
13153
13578
|
type: 'object',
|
|
13154
13579
|
properties: {
|
|
13155
13580
|
extraProperties: {
|
|
@@ -13163,11 +13588,6 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
|
|
|
13163
13588
|
minLength: 0,
|
|
13164
13589
|
type: 'string'
|
|
13165
13590
|
},
|
|
13166
|
-
taxpayerId: {
|
|
13167
|
-
maxLength: 255,
|
|
13168
|
-
minLength: 0,
|
|
13169
|
-
type: 'string'
|
|
13170
|
-
},
|
|
13171
13591
|
contactInformations: {
|
|
13172
13592
|
type: 'array',
|
|
13173
13593
|
items: {
|
|
@@ -13947,10 +14367,6 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
|
|
|
13947
14367
|
type: 'string',
|
|
13948
14368
|
nullable: true
|
|
13949
14369
|
},
|
|
13950
|
-
taxpayerId: {
|
|
13951
|
-
type: 'string',
|
|
13952
|
-
nullable: true
|
|
13953
|
-
},
|
|
13954
14370
|
legalStatusCode: {
|
|
13955
14371
|
type: 'string',
|
|
13956
14372
|
nullable: true
|
|
@@ -14300,7 +14716,7 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
|
14300
14716
|
} as const;
|
|
14301
14717
|
|
|
14302
14718
|
export const $UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto = {
|
|
14303
|
-
required: ['name'
|
|
14719
|
+
required: ['name'],
|
|
14304
14720
|
type: 'object',
|
|
14305
14721
|
properties: {
|
|
14306
14722
|
extraProperties: {
|
|
@@ -14313,11 +14729,6 @@ export const $UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto = {
|
|
|
14313
14729
|
maxLength: 255,
|
|
14314
14730
|
minLength: 0,
|
|
14315
14731
|
type: 'string'
|
|
14316
|
-
},
|
|
14317
|
-
taxpayerId: {
|
|
14318
|
-
maxLength: 255,
|
|
14319
|
-
minLength: 0,
|
|
14320
|
-
type: 'string'
|
|
14321
14732
|
}
|
|
14322
14733
|
},
|
|
14323
14734
|
additionalProperties: false
|