@ayasofyazilim/saas 0.0.33 → 0.0.35
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/schemas.gen.ts +1251 -2
- package/CRMService/services.gen.ts +178 -10
- package/CRMService/types.gen.ts +312 -11
- package/ContractService/schemas.gen.ts +3412 -2902
- package/ContractService/services.gen.ts +250 -568
- package/ContractService/types.gen.ts +412 -1004
- package/TravellerService/TravellerServiceClient.ts +56 -0
- package/TravellerService/core/ApiError.ts +21 -0
- package/TravellerService/core/ApiRequestOptions.ts +13 -0
- package/TravellerService/core/ApiResult.ts +7 -0
- package/TravellerService/core/BaseHttpRequest.ts +10 -0
- package/TravellerService/core/CancelablePromise.ts +126 -0
- package/TravellerService/core/FetchHttpRequest.ts +22 -0
- package/TravellerService/core/OpenAPI.ts +56 -0
- package/TravellerService/core/request.ts +341 -0
- package/TravellerService/index.ts +9 -0
- package/TravellerService/schemas.gen.ts +7981 -0
- package/TravellerService/services.gen.ts +710 -0
- package/TravellerService/types.gen.ts +1851 -0
- package/generator.mjs +7 -1
- package/package.json +1 -1
|
@@ -1908,6 +1908,10 @@ export const $UniRefund_CRMService_Customss_CustomsProfileDto = {
|
|
|
1908
1908
|
type: 'string',
|
|
1909
1909
|
format: 'uuid',
|
|
1910
1910
|
nullable: true
|
|
1911
|
+
},
|
|
1912
|
+
organizationId: {
|
|
1913
|
+
type: 'string',
|
|
1914
|
+
format: 'uuid'
|
|
1911
1915
|
}
|
|
1912
1916
|
},
|
|
1913
1917
|
additionalProperties: false
|
|
@@ -4773,13 +4777,1093 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
4773
4777
|
nullable: true
|
|
4774
4778
|
}
|
|
4775
4779
|
},
|
|
4776
|
-
additionalProperties: false
|
|
4780
|
+
additionalProperties: false
|
|
4781
|
+
},
|
|
4782
|
+
nullable: true
|
|
4783
|
+
}
|
|
4784
|
+
},
|
|
4785
|
+
additionalProperties: false
|
|
4786
|
+
}
|
|
4787
|
+
}
|
|
4788
|
+
},
|
|
4789
|
+
additionalProperties: false
|
|
4790
|
+
} as const;
|
|
4791
|
+
|
|
4792
|
+
export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
4793
|
+
type: 'object',
|
|
4794
|
+
properties: {
|
|
4795
|
+
merchant: {
|
|
4796
|
+
type: 'object',
|
|
4797
|
+
properties: {
|
|
4798
|
+
id: {
|
|
4799
|
+
type: 'string',
|
|
4800
|
+
format: 'uuid'
|
|
4801
|
+
},
|
|
4802
|
+
creationTime: {
|
|
4803
|
+
type: 'string',
|
|
4804
|
+
format: 'date-time'
|
|
4805
|
+
},
|
|
4806
|
+
creatorId: {
|
|
4807
|
+
type: 'string',
|
|
4808
|
+
format: 'uuid',
|
|
4809
|
+
nullable: true
|
|
4810
|
+
},
|
|
4811
|
+
lastModificationTime: {
|
|
4812
|
+
type: 'string',
|
|
4813
|
+
format: 'date-time',
|
|
4814
|
+
nullable: true
|
|
4815
|
+
},
|
|
4816
|
+
lastModifierId: {
|
|
4817
|
+
type: 'string',
|
|
4818
|
+
format: 'uuid',
|
|
4819
|
+
nullable: true
|
|
4820
|
+
},
|
|
4821
|
+
isDeleted: {
|
|
4822
|
+
type: 'boolean'
|
|
4823
|
+
},
|
|
4824
|
+
deleterId: {
|
|
4825
|
+
type: 'string',
|
|
4826
|
+
format: 'uuid',
|
|
4827
|
+
nullable: true
|
|
4828
|
+
},
|
|
4829
|
+
deletionTime: {
|
|
4830
|
+
type: 'string',
|
|
4831
|
+
format: 'date-time',
|
|
4832
|
+
nullable: true
|
|
4833
|
+
},
|
|
4834
|
+
entityInformations: {
|
|
4835
|
+
type: 'array',
|
|
4836
|
+
items: {
|
|
4837
|
+
type: 'object',
|
|
4838
|
+
properties: {
|
|
4839
|
+
id: {
|
|
4840
|
+
type: 'string',
|
|
4841
|
+
format: 'uuid'
|
|
4842
|
+
},
|
|
4843
|
+
creationTime: {
|
|
4844
|
+
type: 'string',
|
|
4845
|
+
format: 'date-time'
|
|
4846
|
+
},
|
|
4847
|
+
creatorId: {
|
|
4848
|
+
type: 'string',
|
|
4849
|
+
format: 'uuid',
|
|
4850
|
+
nullable: true
|
|
4851
|
+
},
|
|
4852
|
+
lastModificationTime: {
|
|
4853
|
+
type: 'string',
|
|
4854
|
+
format: 'date-time',
|
|
4855
|
+
nullable: true
|
|
4856
|
+
},
|
|
4857
|
+
lastModifierId: {
|
|
4858
|
+
type: 'string',
|
|
4859
|
+
format: 'uuid',
|
|
4860
|
+
nullable: true
|
|
4861
|
+
},
|
|
4862
|
+
isDeleted: {
|
|
4863
|
+
type: 'boolean'
|
|
4864
|
+
},
|
|
4865
|
+
deleterId: {
|
|
4866
|
+
type: 'string',
|
|
4867
|
+
format: 'uuid',
|
|
4868
|
+
nullable: true
|
|
4869
|
+
},
|
|
4870
|
+
deletionTime: {
|
|
4871
|
+
type: 'string',
|
|
4872
|
+
format: 'date-time',
|
|
4873
|
+
nullable: true
|
|
4874
|
+
},
|
|
4875
|
+
merchantId: {
|
|
4876
|
+
type: 'string',
|
|
4877
|
+
format: 'uuid',
|
|
4878
|
+
nullable: true
|
|
4879
|
+
},
|
|
4880
|
+
customsId: {
|
|
4881
|
+
type: 'string',
|
|
4882
|
+
format: 'uuid',
|
|
4883
|
+
nullable: true
|
|
4884
|
+
},
|
|
4885
|
+
entityPartyTypeCode: {
|
|
4886
|
+
enum: [0, 1, 2, 3, 4],
|
|
4887
|
+
type: 'integer',
|
|
4888
|
+
format: 'int32'
|
|
4889
|
+
},
|
|
4890
|
+
entityInformationTypeCode: {
|
|
4891
|
+
enum: [0, 1],
|
|
4892
|
+
type: 'integer',
|
|
4893
|
+
format: 'int32'
|
|
4894
|
+
},
|
|
4895
|
+
individuals: {
|
|
4896
|
+
type: 'array',
|
|
4897
|
+
items: {
|
|
4898
|
+
type: 'object',
|
|
4899
|
+
properties: {
|
|
4900
|
+
id: {
|
|
4901
|
+
type: 'string',
|
|
4902
|
+
format: 'uuid'
|
|
4903
|
+
},
|
|
4904
|
+
creationTime: {
|
|
4905
|
+
type: 'string',
|
|
4906
|
+
format: 'date-time'
|
|
4907
|
+
},
|
|
4908
|
+
creatorId: {
|
|
4909
|
+
type: 'string',
|
|
4910
|
+
format: 'uuid',
|
|
4911
|
+
nullable: true
|
|
4912
|
+
},
|
|
4913
|
+
lastModificationTime: {
|
|
4914
|
+
type: 'string',
|
|
4915
|
+
format: 'date-time',
|
|
4916
|
+
nullable: true
|
|
4917
|
+
},
|
|
4918
|
+
lastModifierId: {
|
|
4919
|
+
type: 'string',
|
|
4920
|
+
format: 'uuid',
|
|
4921
|
+
nullable: true
|
|
4922
|
+
},
|
|
4923
|
+
isDeleted: {
|
|
4924
|
+
type: 'boolean'
|
|
4925
|
+
},
|
|
4926
|
+
deleterId: {
|
|
4927
|
+
type: 'string',
|
|
4928
|
+
format: 'uuid',
|
|
4929
|
+
nullable: true
|
|
4930
|
+
},
|
|
4931
|
+
deletionTime: {
|
|
4932
|
+
type: 'string',
|
|
4933
|
+
format: 'date-time',
|
|
4934
|
+
nullable: true
|
|
4935
|
+
},
|
|
4936
|
+
name: {
|
|
4937
|
+
type: 'object',
|
|
4938
|
+
properties: {
|
|
4939
|
+
id: {
|
|
4940
|
+
type: 'string',
|
|
4941
|
+
format: 'uuid'
|
|
4942
|
+
},
|
|
4943
|
+
creationTime: {
|
|
4944
|
+
type: 'string',
|
|
4945
|
+
format: 'date-time'
|
|
4946
|
+
},
|
|
4947
|
+
creatorId: {
|
|
4948
|
+
type: 'string',
|
|
4949
|
+
format: 'uuid',
|
|
4950
|
+
nullable: true
|
|
4951
|
+
},
|
|
4952
|
+
lastModificationTime: {
|
|
4953
|
+
type: 'string',
|
|
4954
|
+
format: 'date-time',
|
|
4955
|
+
nullable: true
|
|
4956
|
+
},
|
|
4957
|
+
lastModifierId: {
|
|
4958
|
+
type: 'string',
|
|
4959
|
+
format: 'uuid',
|
|
4960
|
+
nullable: true
|
|
4961
|
+
},
|
|
4962
|
+
isDeleted: {
|
|
4963
|
+
type: 'boolean'
|
|
4964
|
+
},
|
|
4965
|
+
deleterId: {
|
|
4966
|
+
type: 'string',
|
|
4967
|
+
format: 'uuid',
|
|
4968
|
+
nullable: true
|
|
4969
|
+
},
|
|
4970
|
+
deletionTime: {
|
|
4971
|
+
type: 'string',
|
|
4972
|
+
format: 'date-time',
|
|
4973
|
+
nullable: true
|
|
4974
|
+
},
|
|
4975
|
+
salutation: {
|
|
4976
|
+
type: 'string',
|
|
4977
|
+
nullable: true
|
|
4978
|
+
},
|
|
4979
|
+
name: {
|
|
4980
|
+
type: 'string',
|
|
4981
|
+
nullable: true
|
|
4982
|
+
},
|
|
4983
|
+
suffix: {
|
|
4984
|
+
type: 'string',
|
|
4985
|
+
nullable: true
|
|
4986
|
+
},
|
|
4987
|
+
mailingName: {
|
|
4988
|
+
type: 'string',
|
|
4989
|
+
nullable: true
|
|
4990
|
+
},
|
|
4991
|
+
officialName: {
|
|
4992
|
+
type: 'string',
|
|
4993
|
+
nullable: true
|
|
4994
|
+
},
|
|
4995
|
+
individualId: {
|
|
4996
|
+
type: 'string',
|
|
4997
|
+
format: 'uuid'
|
|
4998
|
+
}
|
|
4999
|
+
},
|
|
5000
|
+
additionalProperties: false
|
|
5001
|
+
},
|
|
5002
|
+
contactInformations: {
|
|
5003
|
+
type: 'array',
|
|
5004
|
+
items: {
|
|
5005
|
+
type: 'object',
|
|
5006
|
+
properties: {
|
|
5007
|
+
id: {
|
|
5008
|
+
type: 'string',
|
|
5009
|
+
format: 'uuid'
|
|
5010
|
+
},
|
|
5011
|
+
creationTime: {
|
|
5012
|
+
type: 'string',
|
|
5013
|
+
format: 'date-time'
|
|
5014
|
+
},
|
|
5015
|
+
creatorId: {
|
|
5016
|
+
type: 'string',
|
|
5017
|
+
format: 'uuid',
|
|
5018
|
+
nullable: true
|
|
5019
|
+
},
|
|
5020
|
+
lastModificationTime: {
|
|
5021
|
+
type: 'string',
|
|
5022
|
+
format: 'date-time',
|
|
5023
|
+
nullable: true
|
|
5024
|
+
},
|
|
5025
|
+
lastModifierId: {
|
|
5026
|
+
type: 'string',
|
|
5027
|
+
format: 'uuid',
|
|
5028
|
+
nullable: true
|
|
5029
|
+
},
|
|
5030
|
+
isDeleted: {
|
|
5031
|
+
type: 'boolean'
|
|
5032
|
+
},
|
|
5033
|
+
deleterId: {
|
|
5034
|
+
type: 'string',
|
|
5035
|
+
format: 'uuid',
|
|
5036
|
+
nullable: true
|
|
5037
|
+
},
|
|
5038
|
+
deletionTime: {
|
|
5039
|
+
type: 'string',
|
|
5040
|
+
format: 'date-time',
|
|
5041
|
+
nullable: true
|
|
5042
|
+
},
|
|
5043
|
+
organizationId: {
|
|
5044
|
+
type: 'string',
|
|
5045
|
+
format: 'uuid',
|
|
5046
|
+
nullable: true
|
|
5047
|
+
},
|
|
5048
|
+
individualId: {
|
|
5049
|
+
type: 'string',
|
|
5050
|
+
format: 'uuid',
|
|
5051
|
+
nullable: true
|
|
5052
|
+
},
|
|
5053
|
+
startDate: {
|
|
5054
|
+
type: 'string',
|
|
5055
|
+
format: 'date-time'
|
|
5056
|
+
},
|
|
5057
|
+
endDate: {
|
|
5058
|
+
type: 'string',
|
|
5059
|
+
format: 'date-time'
|
|
5060
|
+
},
|
|
5061
|
+
telephones: {
|
|
5062
|
+
type: 'array',
|
|
5063
|
+
items: {
|
|
5064
|
+
type: 'object',
|
|
5065
|
+
properties: {
|
|
5066
|
+
id: {
|
|
5067
|
+
type: 'string',
|
|
5068
|
+
format: 'uuid'
|
|
5069
|
+
},
|
|
5070
|
+
creationTime: {
|
|
5071
|
+
type: 'string',
|
|
5072
|
+
format: 'date-time'
|
|
5073
|
+
},
|
|
5074
|
+
creatorId: {
|
|
5075
|
+
type: 'string',
|
|
5076
|
+
format: 'uuid',
|
|
5077
|
+
nullable: true
|
|
5078
|
+
},
|
|
5079
|
+
lastModificationTime: {
|
|
5080
|
+
type: 'string',
|
|
5081
|
+
format: 'date-time',
|
|
5082
|
+
nullable: true
|
|
5083
|
+
},
|
|
5084
|
+
lastModifierId: {
|
|
5085
|
+
type: 'string',
|
|
5086
|
+
format: 'uuid',
|
|
5087
|
+
nullable: true
|
|
5088
|
+
},
|
|
5089
|
+
isDeleted: {
|
|
5090
|
+
type: 'boolean'
|
|
5091
|
+
},
|
|
5092
|
+
deleterId: {
|
|
5093
|
+
type: 'string',
|
|
5094
|
+
format: 'uuid',
|
|
5095
|
+
nullable: true
|
|
5096
|
+
},
|
|
5097
|
+
deletionTime: {
|
|
5098
|
+
type: 'string',
|
|
5099
|
+
format: 'date-time',
|
|
5100
|
+
nullable: true
|
|
5101
|
+
},
|
|
5102
|
+
areaCode: {
|
|
5103
|
+
type: 'string',
|
|
5104
|
+
nullable: true
|
|
5105
|
+
},
|
|
5106
|
+
localNumber: {
|
|
5107
|
+
type: 'string',
|
|
5108
|
+
nullable: true
|
|
5109
|
+
},
|
|
5110
|
+
ituCountryCode: {
|
|
5111
|
+
type: 'string',
|
|
5112
|
+
nullable: true
|
|
5113
|
+
},
|
|
5114
|
+
primaryFlag: {
|
|
5115
|
+
type: 'boolean'
|
|
5116
|
+
},
|
|
5117
|
+
typeCode: {
|
|
5118
|
+
enum: [0, 1, 2, 3],
|
|
5119
|
+
type: 'integer',
|
|
5120
|
+
format: 'int32'
|
|
5121
|
+
},
|
|
5122
|
+
contactInformationTypeId: {
|
|
5123
|
+
type: 'string',
|
|
5124
|
+
format: 'uuid'
|
|
5125
|
+
}
|
|
5126
|
+
},
|
|
5127
|
+
additionalProperties: false
|
|
5128
|
+
},
|
|
5129
|
+
nullable: true
|
|
5130
|
+
},
|
|
5131
|
+
addresses: {
|
|
5132
|
+
type: 'array',
|
|
5133
|
+
items: {
|
|
5134
|
+
type: 'object',
|
|
5135
|
+
properties: {
|
|
5136
|
+
id: {
|
|
5137
|
+
type: 'string',
|
|
5138
|
+
format: 'uuid'
|
|
5139
|
+
},
|
|
5140
|
+
creationTime: {
|
|
5141
|
+
type: 'string',
|
|
5142
|
+
format: 'date-time'
|
|
5143
|
+
},
|
|
5144
|
+
creatorId: {
|
|
5145
|
+
type: 'string',
|
|
5146
|
+
format: 'uuid',
|
|
5147
|
+
nullable: true
|
|
5148
|
+
},
|
|
5149
|
+
lastModificationTime: {
|
|
5150
|
+
type: 'string',
|
|
5151
|
+
format: 'date-time',
|
|
5152
|
+
nullable: true
|
|
5153
|
+
},
|
|
5154
|
+
lastModifierId: {
|
|
5155
|
+
type: 'string',
|
|
5156
|
+
format: 'uuid',
|
|
5157
|
+
nullable: true
|
|
5158
|
+
},
|
|
5159
|
+
isDeleted: {
|
|
5160
|
+
type: 'boolean'
|
|
5161
|
+
},
|
|
5162
|
+
deleterId: {
|
|
5163
|
+
type: 'string',
|
|
5164
|
+
format: 'uuid',
|
|
5165
|
+
nullable: true
|
|
5166
|
+
},
|
|
5167
|
+
deletionTime: {
|
|
5168
|
+
type: 'string',
|
|
5169
|
+
format: 'date-time',
|
|
5170
|
+
nullable: true
|
|
5171
|
+
},
|
|
5172
|
+
addressLine: {
|
|
5173
|
+
type: 'string',
|
|
5174
|
+
nullable: true
|
|
5175
|
+
},
|
|
5176
|
+
city: {
|
|
5177
|
+
type: 'string',
|
|
5178
|
+
nullable: true
|
|
5179
|
+
},
|
|
5180
|
+
terriority: {
|
|
5181
|
+
type: 'string',
|
|
5182
|
+
nullable: true
|
|
5183
|
+
},
|
|
5184
|
+
postalCode: {
|
|
5185
|
+
type: 'string',
|
|
5186
|
+
nullable: true
|
|
5187
|
+
},
|
|
5188
|
+
country: {
|
|
5189
|
+
type: 'string',
|
|
5190
|
+
nullable: true
|
|
5191
|
+
},
|
|
5192
|
+
fullAddress: {
|
|
5193
|
+
type: 'string',
|
|
5194
|
+
nullable: true
|
|
5195
|
+
},
|
|
5196
|
+
typeCode: {
|
|
5197
|
+
enum: [0, 1],
|
|
5198
|
+
type: 'integer',
|
|
5199
|
+
format: 'int32'
|
|
5200
|
+
},
|
|
5201
|
+
primaryFlag: {
|
|
5202
|
+
type: 'boolean'
|
|
5203
|
+
},
|
|
5204
|
+
contactInformationTypeId: {
|
|
5205
|
+
type: 'string',
|
|
5206
|
+
format: 'uuid'
|
|
5207
|
+
}
|
|
5208
|
+
},
|
|
5209
|
+
additionalProperties: false
|
|
5210
|
+
},
|
|
5211
|
+
nullable: true
|
|
5212
|
+
},
|
|
5213
|
+
emails: {
|
|
5214
|
+
type: 'array',
|
|
5215
|
+
items: {
|
|
5216
|
+
type: 'object',
|
|
5217
|
+
properties: {
|
|
5218
|
+
id: {
|
|
5219
|
+
type: 'string',
|
|
5220
|
+
format: 'uuid'
|
|
5221
|
+
},
|
|
5222
|
+
creationTime: {
|
|
5223
|
+
type: 'string',
|
|
5224
|
+
format: 'date-time'
|
|
5225
|
+
},
|
|
5226
|
+
creatorId: {
|
|
5227
|
+
type: 'string',
|
|
5228
|
+
format: 'uuid',
|
|
5229
|
+
nullable: true
|
|
5230
|
+
},
|
|
5231
|
+
lastModificationTime: {
|
|
5232
|
+
type: 'string',
|
|
5233
|
+
format: 'date-time',
|
|
5234
|
+
nullable: true
|
|
5235
|
+
},
|
|
5236
|
+
lastModifierId: {
|
|
5237
|
+
type: 'string',
|
|
5238
|
+
format: 'uuid',
|
|
5239
|
+
nullable: true
|
|
5240
|
+
},
|
|
5241
|
+
isDeleted: {
|
|
5242
|
+
type: 'boolean'
|
|
5243
|
+
},
|
|
5244
|
+
deleterId: {
|
|
5245
|
+
type: 'string',
|
|
5246
|
+
format: 'uuid',
|
|
5247
|
+
nullable: true
|
|
5248
|
+
},
|
|
5249
|
+
deletionTime: {
|
|
5250
|
+
type: 'string',
|
|
5251
|
+
format: 'date-time',
|
|
5252
|
+
nullable: true
|
|
5253
|
+
},
|
|
5254
|
+
primaryFlag: {
|
|
5255
|
+
type: 'boolean'
|
|
5256
|
+
},
|
|
5257
|
+
typeCode: {
|
|
5258
|
+
enum: [0, 1],
|
|
5259
|
+
type: 'integer',
|
|
5260
|
+
format: 'int32'
|
|
5261
|
+
},
|
|
5262
|
+
emailAddress: {
|
|
5263
|
+
type: 'string',
|
|
5264
|
+
nullable: true
|
|
5265
|
+
},
|
|
5266
|
+
contactInformationTypeId: {
|
|
5267
|
+
type: 'string',
|
|
5268
|
+
format: 'uuid'
|
|
5269
|
+
}
|
|
5270
|
+
},
|
|
5271
|
+
additionalProperties: false
|
|
5272
|
+
},
|
|
5273
|
+
nullable: true
|
|
5274
|
+
}
|
|
5275
|
+
},
|
|
5276
|
+
additionalProperties: false
|
|
5277
|
+
},
|
|
5278
|
+
nullable: true
|
|
5279
|
+
},
|
|
5280
|
+
personalSummaries: {
|
|
5281
|
+
type: 'array',
|
|
5282
|
+
items: {
|
|
5283
|
+
type: 'object',
|
|
5284
|
+
properties: {
|
|
5285
|
+
id: {
|
|
5286
|
+
type: 'string',
|
|
5287
|
+
format: 'uuid'
|
|
5288
|
+
},
|
|
5289
|
+
creationTime: {
|
|
5290
|
+
type: 'string',
|
|
5291
|
+
format: 'date-time'
|
|
5292
|
+
},
|
|
5293
|
+
creatorId: {
|
|
5294
|
+
type: 'string',
|
|
5295
|
+
format: 'uuid',
|
|
5296
|
+
nullable: true
|
|
5297
|
+
},
|
|
5298
|
+
lastModificationTime: {
|
|
5299
|
+
type: 'string',
|
|
5300
|
+
format: 'date-time',
|
|
5301
|
+
nullable: true
|
|
5302
|
+
},
|
|
5303
|
+
lastModifierId: {
|
|
5304
|
+
type: 'string',
|
|
5305
|
+
format: 'uuid',
|
|
5306
|
+
nullable: true
|
|
5307
|
+
},
|
|
5308
|
+
isDeleted: {
|
|
5309
|
+
type: 'boolean'
|
|
5310
|
+
},
|
|
5311
|
+
deleterId: {
|
|
5312
|
+
type: 'string',
|
|
5313
|
+
format: 'uuid',
|
|
5314
|
+
nullable: true
|
|
5315
|
+
},
|
|
5316
|
+
deletionTime: {
|
|
5317
|
+
type: 'string',
|
|
5318
|
+
format: 'date-time',
|
|
5319
|
+
nullable: true
|
|
5320
|
+
},
|
|
5321
|
+
date: {
|
|
5322
|
+
type: 'string',
|
|
5323
|
+
format: 'date-time'
|
|
5324
|
+
},
|
|
5325
|
+
birthDate: {
|
|
5326
|
+
type: 'string',
|
|
5327
|
+
format: 'date-time'
|
|
5328
|
+
},
|
|
5329
|
+
ethnicity: {
|
|
5330
|
+
type: 'string',
|
|
5331
|
+
nullable: true
|
|
5332
|
+
},
|
|
5333
|
+
maritalStatusCode: {
|
|
5334
|
+
type: 'string',
|
|
5335
|
+
nullable: true
|
|
5336
|
+
},
|
|
5337
|
+
religiousAffiliationName: {
|
|
5338
|
+
type: 'string',
|
|
5339
|
+
nullable: true
|
|
5340
|
+
},
|
|
5341
|
+
genderTypeCode: {
|
|
5342
|
+
enum: [0, 1],
|
|
5343
|
+
type: 'integer',
|
|
5344
|
+
format: 'int32'
|
|
5345
|
+
},
|
|
5346
|
+
individualId: {
|
|
5347
|
+
type: 'string',
|
|
5348
|
+
format: 'uuid'
|
|
5349
|
+
}
|
|
5350
|
+
},
|
|
5351
|
+
additionalProperties: false
|
|
5352
|
+
},
|
|
5353
|
+
nullable: true
|
|
5354
|
+
},
|
|
5355
|
+
entityInformationTypeId: {
|
|
5356
|
+
type: 'string',
|
|
5357
|
+
format: 'uuid',
|
|
5358
|
+
nullable: true
|
|
5359
|
+
}
|
|
5360
|
+
},
|
|
5361
|
+
additionalProperties: false
|
|
5362
|
+
},
|
|
5363
|
+
nullable: true
|
|
5364
|
+
},
|
|
5365
|
+
organizations: {
|
|
5366
|
+
type: 'array',
|
|
5367
|
+
items: {
|
|
5368
|
+
type: 'object',
|
|
5369
|
+
properties: {
|
|
5370
|
+
id: {
|
|
5371
|
+
type: 'string',
|
|
5372
|
+
format: 'uuid'
|
|
5373
|
+
},
|
|
5374
|
+
creationTime: {
|
|
5375
|
+
type: 'string',
|
|
5376
|
+
format: 'date-time'
|
|
5377
|
+
},
|
|
5378
|
+
creatorId: {
|
|
5379
|
+
type: 'string',
|
|
5380
|
+
format: 'uuid',
|
|
5381
|
+
nullable: true
|
|
5382
|
+
},
|
|
5383
|
+
lastModificationTime: {
|
|
5384
|
+
type: 'string',
|
|
5385
|
+
format: 'date-time',
|
|
5386
|
+
nullable: true
|
|
5387
|
+
},
|
|
5388
|
+
lastModifierId: {
|
|
5389
|
+
type: 'string',
|
|
5390
|
+
format: 'uuid',
|
|
5391
|
+
nullable: true
|
|
5392
|
+
},
|
|
5393
|
+
isDeleted: {
|
|
5394
|
+
type: 'boolean'
|
|
5395
|
+
},
|
|
5396
|
+
deleterId: {
|
|
5397
|
+
type: 'string',
|
|
5398
|
+
format: 'uuid',
|
|
5399
|
+
nullable: true
|
|
5400
|
+
},
|
|
5401
|
+
deletionTime: {
|
|
5402
|
+
type: 'string',
|
|
5403
|
+
format: 'date-time',
|
|
5404
|
+
nullable: true
|
|
5405
|
+
},
|
|
5406
|
+
entityInformationTypeId: {
|
|
5407
|
+
type: 'string',
|
|
5408
|
+
format: 'uuid',
|
|
5409
|
+
nullable: true
|
|
5410
|
+
},
|
|
5411
|
+
name: {
|
|
5412
|
+
type: 'string',
|
|
5413
|
+
nullable: true
|
|
5414
|
+
},
|
|
5415
|
+
taxpayerId: {
|
|
5416
|
+
type: 'string',
|
|
5417
|
+
nullable: true
|
|
5418
|
+
},
|
|
5419
|
+
legalStatusCode: {
|
|
5420
|
+
type: 'string',
|
|
5421
|
+
nullable: true
|
|
5422
|
+
},
|
|
5423
|
+
parentCompanyId: {
|
|
5424
|
+
type: 'string',
|
|
5425
|
+
format: 'uuid',
|
|
5426
|
+
nullable: true
|
|
5427
|
+
},
|
|
5428
|
+
customerNumber: {
|
|
5429
|
+
type: 'string',
|
|
5430
|
+
nullable: true
|
|
5431
|
+
},
|
|
5432
|
+
subCompanies: {
|
|
5433
|
+
type: 'array',
|
|
5434
|
+
items: '[Circular]',
|
|
5435
|
+
nullable: true
|
|
5436
|
+
},
|
|
5437
|
+
contactInformations: {
|
|
5438
|
+
type: 'array',
|
|
5439
|
+
items: {
|
|
5440
|
+
type: 'object',
|
|
5441
|
+
properties: {
|
|
5442
|
+
id: {
|
|
5443
|
+
type: 'string',
|
|
5444
|
+
format: 'uuid'
|
|
5445
|
+
},
|
|
5446
|
+
creationTime: {
|
|
5447
|
+
type: 'string',
|
|
5448
|
+
format: 'date-time'
|
|
5449
|
+
},
|
|
5450
|
+
creatorId: {
|
|
5451
|
+
type: 'string',
|
|
5452
|
+
format: 'uuid',
|
|
5453
|
+
nullable: true
|
|
5454
|
+
},
|
|
5455
|
+
lastModificationTime: {
|
|
5456
|
+
type: 'string',
|
|
5457
|
+
format: 'date-time',
|
|
5458
|
+
nullable: true
|
|
5459
|
+
},
|
|
5460
|
+
lastModifierId: {
|
|
5461
|
+
type: 'string',
|
|
5462
|
+
format: 'uuid',
|
|
5463
|
+
nullable: true
|
|
5464
|
+
},
|
|
5465
|
+
isDeleted: {
|
|
5466
|
+
type: 'boolean'
|
|
5467
|
+
},
|
|
5468
|
+
deleterId: {
|
|
5469
|
+
type: 'string',
|
|
5470
|
+
format: 'uuid',
|
|
5471
|
+
nullable: true
|
|
5472
|
+
},
|
|
5473
|
+
deletionTime: {
|
|
5474
|
+
type: 'string',
|
|
5475
|
+
format: 'date-time',
|
|
5476
|
+
nullable: true
|
|
5477
|
+
},
|
|
5478
|
+
organizationId: {
|
|
5479
|
+
type: 'string',
|
|
5480
|
+
format: 'uuid',
|
|
5481
|
+
nullable: true
|
|
5482
|
+
},
|
|
5483
|
+
individualId: {
|
|
5484
|
+
type: 'string',
|
|
5485
|
+
format: 'uuid',
|
|
5486
|
+
nullable: true
|
|
5487
|
+
},
|
|
5488
|
+
startDate: {
|
|
5489
|
+
type: 'string',
|
|
5490
|
+
format: 'date-time'
|
|
5491
|
+
},
|
|
5492
|
+
endDate: {
|
|
5493
|
+
type: 'string',
|
|
5494
|
+
format: 'date-time'
|
|
5495
|
+
},
|
|
5496
|
+
telephones: {
|
|
5497
|
+
type: 'array',
|
|
5498
|
+
items: {
|
|
5499
|
+
type: 'object',
|
|
5500
|
+
properties: {
|
|
5501
|
+
id: {
|
|
5502
|
+
type: 'string',
|
|
5503
|
+
format: 'uuid'
|
|
5504
|
+
},
|
|
5505
|
+
creationTime: {
|
|
5506
|
+
type: 'string',
|
|
5507
|
+
format: 'date-time'
|
|
5508
|
+
},
|
|
5509
|
+
creatorId: {
|
|
5510
|
+
type: 'string',
|
|
5511
|
+
format: 'uuid',
|
|
5512
|
+
nullable: true
|
|
5513
|
+
},
|
|
5514
|
+
lastModificationTime: {
|
|
5515
|
+
type: 'string',
|
|
5516
|
+
format: 'date-time',
|
|
5517
|
+
nullable: true
|
|
5518
|
+
},
|
|
5519
|
+
lastModifierId: {
|
|
5520
|
+
type: 'string',
|
|
5521
|
+
format: 'uuid',
|
|
5522
|
+
nullable: true
|
|
5523
|
+
},
|
|
5524
|
+
isDeleted: {
|
|
5525
|
+
type: 'boolean'
|
|
5526
|
+
},
|
|
5527
|
+
deleterId: {
|
|
5528
|
+
type: 'string',
|
|
5529
|
+
format: 'uuid',
|
|
5530
|
+
nullable: true
|
|
5531
|
+
},
|
|
5532
|
+
deletionTime: {
|
|
5533
|
+
type: 'string',
|
|
5534
|
+
format: 'date-time',
|
|
5535
|
+
nullable: true
|
|
5536
|
+
},
|
|
5537
|
+
areaCode: {
|
|
5538
|
+
type: 'string',
|
|
5539
|
+
nullable: true
|
|
5540
|
+
},
|
|
5541
|
+
localNumber: {
|
|
5542
|
+
type: 'string',
|
|
5543
|
+
nullable: true
|
|
5544
|
+
},
|
|
5545
|
+
ituCountryCode: {
|
|
5546
|
+
type: 'string',
|
|
5547
|
+
nullable: true
|
|
5548
|
+
},
|
|
5549
|
+
primaryFlag: {
|
|
5550
|
+
type: 'boolean'
|
|
5551
|
+
},
|
|
5552
|
+
typeCode: {
|
|
5553
|
+
enum: [0, 1, 2, 3],
|
|
5554
|
+
type: 'integer',
|
|
5555
|
+
format: 'int32'
|
|
5556
|
+
},
|
|
5557
|
+
contactInformationTypeId: {
|
|
5558
|
+
type: 'string',
|
|
5559
|
+
format: 'uuid'
|
|
5560
|
+
}
|
|
5561
|
+
},
|
|
5562
|
+
additionalProperties: false
|
|
5563
|
+
},
|
|
5564
|
+
nullable: true
|
|
5565
|
+
},
|
|
5566
|
+
addresses: {
|
|
5567
|
+
type: 'array',
|
|
5568
|
+
items: {
|
|
5569
|
+
type: 'object',
|
|
5570
|
+
properties: {
|
|
5571
|
+
id: {
|
|
5572
|
+
type: 'string',
|
|
5573
|
+
format: 'uuid'
|
|
5574
|
+
},
|
|
5575
|
+
creationTime: {
|
|
5576
|
+
type: 'string',
|
|
5577
|
+
format: 'date-time'
|
|
5578
|
+
},
|
|
5579
|
+
creatorId: {
|
|
5580
|
+
type: 'string',
|
|
5581
|
+
format: 'uuid',
|
|
5582
|
+
nullable: true
|
|
5583
|
+
},
|
|
5584
|
+
lastModificationTime: {
|
|
5585
|
+
type: 'string',
|
|
5586
|
+
format: 'date-time',
|
|
5587
|
+
nullable: true
|
|
5588
|
+
},
|
|
5589
|
+
lastModifierId: {
|
|
5590
|
+
type: 'string',
|
|
5591
|
+
format: 'uuid',
|
|
5592
|
+
nullable: true
|
|
5593
|
+
},
|
|
5594
|
+
isDeleted: {
|
|
5595
|
+
type: 'boolean'
|
|
5596
|
+
},
|
|
5597
|
+
deleterId: {
|
|
5598
|
+
type: 'string',
|
|
5599
|
+
format: 'uuid',
|
|
5600
|
+
nullable: true
|
|
5601
|
+
},
|
|
5602
|
+
deletionTime: {
|
|
5603
|
+
type: 'string',
|
|
5604
|
+
format: 'date-time',
|
|
5605
|
+
nullable: true
|
|
5606
|
+
},
|
|
5607
|
+
addressLine: {
|
|
5608
|
+
type: 'string',
|
|
5609
|
+
nullable: true
|
|
5610
|
+
},
|
|
5611
|
+
city: {
|
|
5612
|
+
type: 'string',
|
|
5613
|
+
nullable: true
|
|
5614
|
+
},
|
|
5615
|
+
terriority: {
|
|
5616
|
+
type: 'string',
|
|
5617
|
+
nullable: true
|
|
5618
|
+
},
|
|
5619
|
+
postalCode: {
|
|
5620
|
+
type: 'string',
|
|
5621
|
+
nullable: true
|
|
5622
|
+
},
|
|
5623
|
+
country: {
|
|
5624
|
+
type: 'string',
|
|
5625
|
+
nullable: true
|
|
5626
|
+
},
|
|
5627
|
+
fullAddress: {
|
|
5628
|
+
type: 'string',
|
|
5629
|
+
nullable: true
|
|
5630
|
+
},
|
|
5631
|
+
typeCode: {
|
|
5632
|
+
enum: [0, 1],
|
|
5633
|
+
type: 'integer',
|
|
5634
|
+
format: 'int32'
|
|
5635
|
+
},
|
|
5636
|
+
primaryFlag: {
|
|
5637
|
+
type: 'boolean'
|
|
5638
|
+
},
|
|
5639
|
+
contactInformationTypeId: {
|
|
5640
|
+
type: 'string',
|
|
5641
|
+
format: 'uuid'
|
|
5642
|
+
}
|
|
5643
|
+
},
|
|
5644
|
+
additionalProperties: false
|
|
5645
|
+
},
|
|
5646
|
+
nullable: true
|
|
5647
|
+
},
|
|
5648
|
+
emails: {
|
|
5649
|
+
type: 'array',
|
|
5650
|
+
items: {
|
|
5651
|
+
type: 'object',
|
|
5652
|
+
properties: {
|
|
5653
|
+
id: {
|
|
5654
|
+
type: 'string',
|
|
5655
|
+
format: 'uuid'
|
|
5656
|
+
},
|
|
5657
|
+
creationTime: {
|
|
5658
|
+
type: 'string',
|
|
5659
|
+
format: 'date-time'
|
|
5660
|
+
},
|
|
5661
|
+
creatorId: {
|
|
5662
|
+
type: 'string',
|
|
5663
|
+
format: 'uuid',
|
|
5664
|
+
nullable: true
|
|
5665
|
+
},
|
|
5666
|
+
lastModificationTime: {
|
|
5667
|
+
type: 'string',
|
|
5668
|
+
format: 'date-time',
|
|
5669
|
+
nullable: true
|
|
5670
|
+
},
|
|
5671
|
+
lastModifierId: {
|
|
5672
|
+
type: 'string',
|
|
5673
|
+
format: 'uuid',
|
|
5674
|
+
nullable: true
|
|
5675
|
+
},
|
|
5676
|
+
isDeleted: {
|
|
5677
|
+
type: 'boolean'
|
|
5678
|
+
},
|
|
5679
|
+
deleterId: {
|
|
5680
|
+
type: 'string',
|
|
5681
|
+
format: 'uuid',
|
|
5682
|
+
nullable: true
|
|
5683
|
+
},
|
|
5684
|
+
deletionTime: {
|
|
5685
|
+
type: 'string',
|
|
5686
|
+
format: 'date-time',
|
|
5687
|
+
nullable: true
|
|
5688
|
+
},
|
|
5689
|
+
primaryFlag: {
|
|
5690
|
+
type: 'boolean'
|
|
5691
|
+
},
|
|
5692
|
+
typeCode: {
|
|
5693
|
+
enum: [0, 1],
|
|
5694
|
+
type: 'integer',
|
|
5695
|
+
format: 'int32'
|
|
5696
|
+
},
|
|
5697
|
+
emailAddress: {
|
|
5698
|
+
type: 'string',
|
|
5699
|
+
nullable: true
|
|
5700
|
+
},
|
|
5701
|
+
contactInformationTypeId: {
|
|
5702
|
+
type: 'string',
|
|
5703
|
+
format: 'uuid'
|
|
5704
|
+
}
|
|
5705
|
+
},
|
|
5706
|
+
additionalProperties: false
|
|
5707
|
+
},
|
|
5708
|
+
nullable: true
|
|
5709
|
+
}
|
|
5710
|
+
},
|
|
5711
|
+
additionalProperties: false
|
|
5712
|
+
},
|
|
5713
|
+
nullable: true
|
|
5714
|
+
}
|
|
5715
|
+
},
|
|
5716
|
+
additionalProperties: false
|
|
5717
|
+
},
|
|
5718
|
+
nullable: true
|
|
5719
|
+
}
|
|
5720
|
+
},
|
|
5721
|
+
additionalProperties: false
|
|
5722
|
+
},
|
|
5723
|
+
nullable: true
|
|
5724
|
+
},
|
|
5725
|
+
affiliations: {
|
|
5726
|
+
type: 'array',
|
|
5727
|
+
items: {
|
|
5728
|
+
type: 'object',
|
|
5729
|
+
properties: {
|
|
5730
|
+
id: {
|
|
5731
|
+
type: 'string',
|
|
5732
|
+
format: 'uuid'
|
|
5733
|
+
},
|
|
5734
|
+
creationTime: {
|
|
5735
|
+
type: 'string',
|
|
5736
|
+
format: 'date-time'
|
|
5737
|
+
},
|
|
5738
|
+
creatorId: {
|
|
5739
|
+
type: 'string',
|
|
5740
|
+
format: 'uuid',
|
|
5741
|
+
nullable: true
|
|
5742
|
+
},
|
|
5743
|
+
lastModificationTime: {
|
|
5744
|
+
type: 'string',
|
|
5745
|
+
format: 'date-time',
|
|
5746
|
+
nullable: true
|
|
5747
|
+
},
|
|
5748
|
+
lastModifierId: {
|
|
5749
|
+
type: 'string',
|
|
5750
|
+
format: 'uuid',
|
|
5751
|
+
nullable: true
|
|
5752
|
+
},
|
|
5753
|
+
isDeleted: {
|
|
5754
|
+
type: 'boolean'
|
|
5755
|
+
},
|
|
5756
|
+
deleterId: {
|
|
5757
|
+
type: 'string',
|
|
5758
|
+
format: 'uuid',
|
|
5759
|
+
nullable: true
|
|
5760
|
+
},
|
|
5761
|
+
deletionTime: {
|
|
5762
|
+
type: 'string',
|
|
5763
|
+
format: 'date-time',
|
|
5764
|
+
nullable: true
|
|
5765
|
+
},
|
|
5766
|
+
name: {
|
|
5767
|
+
type: 'string',
|
|
5768
|
+
nullable: true,
|
|
5769
|
+
readOnly: true
|
|
5770
|
+
},
|
|
5771
|
+
description: {
|
|
5772
|
+
type: 'string',
|
|
5773
|
+
nullable: true,
|
|
5774
|
+
readOnly: true
|
|
5775
|
+
},
|
|
5776
|
+
affiliationTypeCode: {
|
|
5777
|
+
enum: [0, 1, 2],
|
|
5778
|
+
type: 'integer',
|
|
5779
|
+
format: 'int32'
|
|
5780
|
+
},
|
|
5781
|
+
partyId: {
|
|
5782
|
+
type: 'string',
|
|
5783
|
+
format: 'uuid',
|
|
5784
|
+
readOnly: true
|
|
5785
|
+
}
|
|
4777
5786
|
},
|
|
5787
|
+
additionalProperties: false
|
|
5788
|
+
},
|
|
5789
|
+
nullable: true
|
|
5790
|
+
}
|
|
5791
|
+
},
|
|
5792
|
+
additionalProperties: false
|
|
5793
|
+
},
|
|
5794
|
+
productGroups: {
|
|
5795
|
+
type: 'array',
|
|
5796
|
+
items: {
|
|
5797
|
+
type: 'object',
|
|
5798
|
+
properties: {
|
|
5799
|
+
id: {
|
|
5800
|
+
type: 'string',
|
|
5801
|
+
format: 'uuid'
|
|
5802
|
+
},
|
|
5803
|
+
creationTime: {
|
|
5804
|
+
type: 'string',
|
|
5805
|
+
format: 'date-time'
|
|
5806
|
+
},
|
|
5807
|
+
creatorId: {
|
|
5808
|
+
type: 'string',
|
|
5809
|
+
format: 'uuid',
|
|
5810
|
+
nullable: true
|
|
5811
|
+
},
|
|
5812
|
+
lastModificationTime: {
|
|
5813
|
+
type: 'string',
|
|
5814
|
+
format: 'date-time',
|
|
5815
|
+
nullable: true
|
|
5816
|
+
},
|
|
5817
|
+
lastModifierId: {
|
|
5818
|
+
type: 'string',
|
|
5819
|
+
format: 'uuid',
|
|
5820
|
+
nullable: true
|
|
5821
|
+
},
|
|
5822
|
+
isDeleted: {
|
|
5823
|
+
type: 'boolean'
|
|
5824
|
+
},
|
|
5825
|
+
deleterId: {
|
|
5826
|
+
type: 'string',
|
|
5827
|
+
format: 'uuid',
|
|
5828
|
+
nullable: true
|
|
5829
|
+
},
|
|
5830
|
+
deletionTime: {
|
|
5831
|
+
type: 'string',
|
|
5832
|
+
format: 'date-time',
|
|
5833
|
+
nullable: true
|
|
5834
|
+
},
|
|
5835
|
+
articleCode: {
|
|
5836
|
+
type: 'string',
|
|
5837
|
+
nullable: true
|
|
5838
|
+
},
|
|
5839
|
+
name: {
|
|
5840
|
+
type: 'string',
|
|
5841
|
+
nullable: true
|
|
5842
|
+
},
|
|
5843
|
+
unitCode: {
|
|
5844
|
+
enum: [0, 1, 2],
|
|
5845
|
+
type: 'integer',
|
|
5846
|
+
format: 'int32'
|
|
5847
|
+
},
|
|
5848
|
+
companyType: {
|
|
5849
|
+
enum: [0, 1, 2, 3, 4, 5, 6],
|
|
5850
|
+
type: 'integer',
|
|
5851
|
+
format: 'int32'
|
|
5852
|
+
},
|
|
5853
|
+
active: {
|
|
5854
|
+
type: 'boolean'
|
|
5855
|
+
},
|
|
5856
|
+
food: {
|
|
5857
|
+
type: 'boolean'
|
|
5858
|
+
},
|
|
5859
|
+
language: {
|
|
5860
|
+
type: 'string',
|
|
4778
5861
|
nullable: true
|
|
4779
5862
|
}
|
|
4780
5863
|
},
|
|
4781
5864
|
additionalProperties: false
|
|
4782
|
-
}
|
|
5865
|
+
},
|
|
5866
|
+
nullable: true
|
|
4783
5867
|
}
|
|
4784
5868
|
},
|
|
4785
5869
|
additionalProperties: false
|
|
@@ -5809,6 +6893,16 @@ export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
|
5809
6893
|
entityInformationTypeCodeName: {
|
|
5810
6894
|
type: 'string',
|
|
5811
6895
|
nullable: true
|
|
6896
|
+
},
|
|
6897
|
+
organizationId: {
|
|
6898
|
+
type: 'string',
|
|
6899
|
+
format: 'uuid',
|
|
6900
|
+
nullable: true
|
|
6901
|
+
},
|
|
6902
|
+
individualId: {
|
|
6903
|
+
type: 'string',
|
|
6904
|
+
format: 'uuid',
|
|
6905
|
+
nullable: true
|
|
5812
6906
|
}
|
|
5813
6907
|
},
|
|
5814
6908
|
additionalProperties: false
|
|
@@ -5833,6 +6927,10 @@ export const $UniRefund_CRMService_Merchants_RefundPointProfileDto = {
|
|
|
5833
6927
|
entityInformationTypeCodeValue: {
|
|
5834
6928
|
type: 'string',
|
|
5835
6929
|
nullable: true
|
|
6930
|
+
},
|
|
6931
|
+
organizationId: {
|
|
6932
|
+
type: 'string',
|
|
6933
|
+
format: 'uuid'
|
|
5836
6934
|
}
|
|
5837
6935
|
},
|
|
5838
6936
|
additionalProperties: false
|
|
@@ -6506,6 +7604,25 @@ export const $UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
|
6506
7604
|
additionalProperties: false
|
|
6507
7605
|
} as const;
|
|
6508
7606
|
|
|
7607
|
+
export const $UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
7608
|
+
required: ['name'],
|
|
7609
|
+
type: 'object',
|
|
7610
|
+
properties: {
|
|
7611
|
+
extraProperties: {
|
|
7612
|
+
type: 'object',
|
|
7613
|
+
additionalProperties: {},
|
|
7614
|
+
nullable: true,
|
|
7615
|
+
readOnly: true
|
|
7616
|
+
},
|
|
7617
|
+
name: {
|
|
7618
|
+
maxLength: 255,
|
|
7619
|
+
minLength: 0,
|
|
7620
|
+
type: 'string'
|
|
7621
|
+
}
|
|
7622
|
+
},
|
|
7623
|
+
additionalProperties: false
|
|
7624
|
+
} as const;
|
|
7625
|
+
|
|
6509
7626
|
export const $UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
6510
7627
|
required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
|
|
6511
7628
|
type: 'object',
|
|
@@ -8915,6 +10032,10 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
|
8915
10032
|
type: 'string',
|
|
8916
10033
|
format: 'uuid',
|
|
8917
10034
|
nullable: true
|
|
10035
|
+
},
|
|
10036
|
+
organizationId: {
|
|
10037
|
+
type: 'string',
|
|
10038
|
+
format: 'uuid'
|
|
8918
10039
|
}
|
|
8919
10040
|
},
|
|
8920
10041
|
additionalProperties: false
|
|
@@ -10075,6 +11196,10 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
|
10075
11196
|
type: 'string',
|
|
10076
11197
|
format: 'uuid',
|
|
10077
11198
|
nullable: true
|
|
11199
|
+
},
|
|
11200
|
+
organizationId: {
|
|
11201
|
+
type: 'string',
|
|
11202
|
+
format: 'uuid'
|
|
10078
11203
|
}
|
|
10079
11204
|
},
|
|
10080
11205
|
additionalProperties: false
|
|
@@ -10266,6 +11391,104 @@ export const $UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
|
|
|
10266
11391
|
additionalProperties: false
|
|
10267
11392
|
} as const;
|
|
10268
11393
|
|
|
11394
|
+
export const $UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
|
|
11395
|
+
type: 'object',
|
|
11396
|
+
properties: {
|
|
11397
|
+
merchantId: {
|
|
11398
|
+
type: 'string',
|
|
11399
|
+
format: 'uuid'
|
|
11400
|
+
},
|
|
11401
|
+
productGroupId: {
|
|
11402
|
+
type: 'string',
|
|
11403
|
+
format: 'uuid'
|
|
11404
|
+
}
|
|
11405
|
+
},
|
|
11406
|
+
additionalProperties: false
|
|
11407
|
+
} as const;
|
|
11408
|
+
|
|
11409
|
+
export const $UniRefund_SettingService_ProductGroups_CompanyTypeCode = {
|
|
11410
|
+
enum: [0, 1, 2, 3, 4, 5, 6],
|
|
11411
|
+
type: 'integer',
|
|
11412
|
+
format: 'int32'
|
|
11413
|
+
} as const;
|
|
11414
|
+
|
|
11415
|
+
export const $UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
11416
|
+
type: 'object',
|
|
11417
|
+
properties: {
|
|
11418
|
+
id: {
|
|
11419
|
+
type: 'string',
|
|
11420
|
+
format: 'uuid'
|
|
11421
|
+
},
|
|
11422
|
+
creationTime: {
|
|
11423
|
+
type: 'string',
|
|
11424
|
+
format: 'date-time'
|
|
11425
|
+
},
|
|
11426
|
+
creatorId: {
|
|
11427
|
+
type: 'string',
|
|
11428
|
+
format: 'uuid',
|
|
11429
|
+
nullable: true
|
|
11430
|
+
},
|
|
11431
|
+
lastModificationTime: {
|
|
11432
|
+
type: 'string',
|
|
11433
|
+
format: 'date-time',
|
|
11434
|
+
nullable: true
|
|
11435
|
+
},
|
|
11436
|
+
lastModifierId: {
|
|
11437
|
+
type: 'string',
|
|
11438
|
+
format: 'uuid',
|
|
11439
|
+
nullable: true
|
|
11440
|
+
},
|
|
11441
|
+
isDeleted: {
|
|
11442
|
+
type: 'boolean'
|
|
11443
|
+
},
|
|
11444
|
+
deleterId: {
|
|
11445
|
+
type: 'string',
|
|
11446
|
+
format: 'uuid',
|
|
11447
|
+
nullable: true
|
|
11448
|
+
},
|
|
11449
|
+
deletionTime: {
|
|
11450
|
+
type: 'string',
|
|
11451
|
+
format: 'date-time',
|
|
11452
|
+
nullable: true
|
|
11453
|
+
},
|
|
11454
|
+
articleCode: {
|
|
11455
|
+
type: 'string',
|
|
11456
|
+
nullable: true
|
|
11457
|
+
},
|
|
11458
|
+
name: {
|
|
11459
|
+
type: 'string',
|
|
11460
|
+
nullable: true
|
|
11461
|
+
},
|
|
11462
|
+
unitCode: {
|
|
11463
|
+
enum: [0, 1, 2],
|
|
11464
|
+
type: 'integer',
|
|
11465
|
+
format: 'int32'
|
|
11466
|
+
},
|
|
11467
|
+
companyType: {
|
|
11468
|
+
enum: [0, 1, 2, 3, 4, 5, 6],
|
|
11469
|
+
type: 'integer',
|
|
11470
|
+
format: 'int32'
|
|
11471
|
+
},
|
|
11472
|
+
active: {
|
|
11473
|
+
type: 'boolean'
|
|
11474
|
+
},
|
|
11475
|
+
food: {
|
|
11476
|
+
type: 'boolean'
|
|
11477
|
+
},
|
|
11478
|
+
language: {
|
|
11479
|
+
type: 'string',
|
|
11480
|
+
nullable: true
|
|
11481
|
+
}
|
|
11482
|
+
},
|
|
11483
|
+
additionalProperties: false
|
|
11484
|
+
} as const;
|
|
11485
|
+
|
|
11486
|
+
export const $UniRefund_SettingService_ProductGroups_UnitTypeCode = {
|
|
11487
|
+
enum: [0, 1, 2],
|
|
11488
|
+
type: 'integer',
|
|
11489
|
+
format: 'int32'
|
|
11490
|
+
} as const;
|
|
11491
|
+
|
|
10269
11492
|
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_AddressTypes_AddressTypeDto__UniRefund_CRMService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
10270
11493
|
type: 'object',
|
|
10271
11494
|
properties: {
|
|
@@ -10456,6 +11679,10 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_C
|
|
|
10456
11679
|
type: 'string',
|
|
10457
11680
|
format: 'uuid',
|
|
10458
11681
|
nullable: true
|
|
11682
|
+
},
|
|
11683
|
+
organizationId: {
|
|
11684
|
+
type: 'string',
|
|
11685
|
+
format: 'uuid'
|
|
10459
11686
|
}
|
|
10460
11687
|
},
|
|
10461
11688
|
additionalProperties: false
|
|
@@ -10628,6 +11855,16 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_M
|
|
|
10628
11855
|
entityInformationTypeCodeName: {
|
|
10629
11856
|
type: 'string',
|
|
10630
11857
|
nullable: true
|
|
11858
|
+
},
|
|
11859
|
+
organizationId: {
|
|
11860
|
+
type: 'string',
|
|
11861
|
+
format: 'uuid',
|
|
11862
|
+
nullable: true
|
|
11863
|
+
},
|
|
11864
|
+
individualId: {
|
|
11865
|
+
type: 'string',
|
|
11866
|
+
format: 'uuid',
|
|
11867
|
+
nullable: true
|
|
10631
11868
|
}
|
|
10632
11869
|
},
|
|
10633
11870
|
additionalProperties: false
|
|
@@ -10666,6 +11903,10 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_M
|
|
|
10666
11903
|
entityInformationTypeCodeValue: {
|
|
10667
11904
|
type: 'string',
|
|
10668
11905
|
nullable: true
|
|
11906
|
+
},
|
|
11907
|
+
organizationId: {
|
|
11908
|
+
type: 'string',
|
|
11909
|
+
format: 'uuid'
|
|
10669
11910
|
}
|
|
10670
11911
|
},
|
|
10671
11912
|
additionalProperties: false
|
|
@@ -10756,6 +11997,10 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_T
|
|
|
10756
11997
|
type: 'string',
|
|
10757
11998
|
format: 'uuid',
|
|
10758
11999
|
nullable: true
|
|
12000
|
+
},
|
|
12001
|
+
organizationId: {
|
|
12002
|
+
type: 'string',
|
|
12003
|
+
format: 'uuid'
|
|
10759
12004
|
}
|
|
10760
12005
|
},
|
|
10761
12006
|
additionalProperties: false
|
|
@@ -10790,6 +12035,10 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_T
|
|
|
10790
12035
|
type: 'string',
|
|
10791
12036
|
format: 'uuid',
|
|
10792
12037
|
nullable: true
|
|
12038
|
+
},
|
|
12039
|
+
organizationId: {
|
|
12040
|
+
type: 'string',
|
|
12041
|
+
format: 'uuid'
|
|
10793
12042
|
}
|
|
10794
12043
|
},
|
|
10795
12044
|
additionalProperties: false
|