@ayasofyazilim/saas 0.0.47 → 0.0.49
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 +163 -134
- package/CRMService/services.gen.ts +157 -1
- package/CRMService/types.gen.ts +286 -15
- package/package.json +1 -1
|
@@ -285,7 +285,7 @@ export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
|
285
285
|
readOnly: true
|
|
286
286
|
},
|
|
287
287
|
affiliationTypeCode: {
|
|
288
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
288
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
289
289
|
type: 'string'
|
|
290
290
|
},
|
|
291
291
|
partyId: {
|
|
@@ -318,7 +318,7 @@ export const $UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
|
318
318
|
type: 'string'
|
|
319
319
|
},
|
|
320
320
|
affiliationTypeCode: {
|
|
321
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
321
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
322
322
|
type: 'string'
|
|
323
323
|
},
|
|
324
324
|
partyId: {
|
|
@@ -937,6 +937,11 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
|
937
937
|
},
|
|
938
938
|
additionalProperties: false
|
|
939
939
|
}
|
|
940
|
+
},
|
|
941
|
+
parentId: {
|
|
942
|
+
type: 'string',
|
|
943
|
+
format: 'uuid',
|
|
944
|
+
nullable: true
|
|
940
945
|
}
|
|
941
946
|
},
|
|
942
947
|
additionalProperties: false
|
|
@@ -1926,11 +1931,6 @@ export const $UniRefund_CRMService_Customss_CustomsDto = {
|
|
|
1926
1931
|
type: 'string',
|
|
1927
1932
|
nullable: true
|
|
1928
1933
|
},
|
|
1929
|
-
parentCompanyId: {
|
|
1930
|
-
type: 'string',
|
|
1931
|
-
format: 'uuid',
|
|
1932
|
-
nullable: true
|
|
1933
|
-
},
|
|
1934
1934
|
customerNumber: {
|
|
1935
1935
|
type: 'string',
|
|
1936
1936
|
nullable: true
|
|
@@ -2245,7 +2245,7 @@ export const $UniRefund_CRMService_Customss_CustomsProfileDto = {
|
|
|
2245
2245
|
type: 'string',
|
|
2246
2246
|
nullable: true
|
|
2247
2247
|
},
|
|
2248
|
-
|
|
2248
|
+
parentId: {
|
|
2249
2249
|
type: 'string',
|
|
2250
2250
|
format: 'uuid',
|
|
2251
2251
|
nullable: true
|
|
@@ -3006,11 +3006,6 @@ export const $UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeD
|
|
|
3006
3006
|
type: 'string',
|
|
3007
3007
|
nullable: true
|
|
3008
3008
|
},
|
|
3009
|
-
parentCompanyId: {
|
|
3010
|
-
type: 'string',
|
|
3011
|
-
format: 'uuid',
|
|
3012
|
-
nullable: true
|
|
3013
|
-
},
|
|
3014
3009
|
customerNumber: {
|
|
3015
3010
|
type: 'string',
|
|
3016
3011
|
nullable: true
|
|
@@ -3315,7 +3310,7 @@ export const $UniRefund_CRMService_Enums_AddressTypeCode = {
|
|
|
3315
3310
|
} as const;
|
|
3316
3311
|
|
|
3317
3312
|
export const $UniRefund_CRMService_Enums_AffiliationTypeCode = {
|
|
3318
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
3313
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
3319
3314
|
type: 'string'
|
|
3320
3315
|
} as const;
|
|
3321
3316
|
|
|
@@ -4034,7 +4029,7 @@ export const $UniRefund_CRMService_Individuals_IndividualDto = {
|
|
|
4034
4029
|
additionalProperties: false
|
|
4035
4030
|
} as const;
|
|
4036
4031
|
|
|
4037
|
-
export const $
|
|
4032
|
+
export const $UniRefund_CRMService_Individuals_IndividualIdNameDto = {
|
|
4038
4033
|
type: 'object',
|
|
4039
4034
|
properties: {
|
|
4040
4035
|
id: {
|
|
@@ -4044,38 +4039,41 @@ export const $UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
|
4044
4039
|
name: {
|
|
4045
4040
|
type: 'string',
|
|
4046
4041
|
nullable: true
|
|
4042
|
+
}
|
|
4043
|
+
},
|
|
4044
|
+
additionalProperties: false
|
|
4045
|
+
} as const;
|
|
4046
|
+
|
|
4047
|
+
export const $UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
4048
|
+
type: 'object',
|
|
4049
|
+
properties: {
|
|
4050
|
+
id: {
|
|
4051
|
+
type: 'string',
|
|
4052
|
+
format: 'uuid'
|
|
4047
4053
|
},
|
|
4048
|
-
|
|
4054
|
+
name: {
|
|
4049
4055
|
type: 'string',
|
|
4050
|
-
format: 'uuid',
|
|
4051
4056
|
nullable: true
|
|
4052
4057
|
},
|
|
4053
|
-
|
|
4058
|
+
affiliationId: {
|
|
4054
4059
|
type: 'string',
|
|
4060
|
+
format: 'uuid',
|
|
4055
4061
|
nullable: true
|
|
4056
4062
|
},
|
|
4057
4063
|
affiliationTypeCode: {
|
|
4058
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
4064
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
4059
4065
|
type: 'string'
|
|
4060
4066
|
},
|
|
4061
|
-
affiliationTypeCodeValue: {
|
|
4062
|
-
type: 'string',
|
|
4063
|
-
nullable: true
|
|
4064
|
-
},
|
|
4065
4067
|
affiliationParentTypeCode: {
|
|
4066
4068
|
enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
|
|
4067
4069
|
type: 'string'
|
|
4068
|
-
},
|
|
4069
|
-
affiliationParentTypeCodeValue: {
|
|
4070
|
-
type: 'string',
|
|
4071
|
-
nullable: true
|
|
4072
4070
|
}
|
|
4073
4071
|
},
|
|
4074
4072
|
additionalProperties: false
|
|
4075
4073
|
} as const;
|
|
4076
4074
|
|
|
4077
4075
|
export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
4078
|
-
required: ['entityInformationTypes', 'typeCode'],
|
|
4076
|
+
required: ['entityInformationTypes', 'taxOfficeId', 'typeCode'],
|
|
4079
4077
|
type: 'object',
|
|
4080
4078
|
properties: {
|
|
4081
4079
|
extraProperties: {
|
|
@@ -4084,6 +4082,19 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
4084
4082
|
nullable: true,
|
|
4085
4083
|
readOnly: true
|
|
4086
4084
|
},
|
|
4085
|
+
typeCode: {
|
|
4086
|
+
enum: ['HEADQUARTER', 'STORE'],
|
|
4087
|
+
type: 'string'
|
|
4088
|
+
},
|
|
4089
|
+
taxOfficeId: {
|
|
4090
|
+
type: 'string',
|
|
4091
|
+
format: 'uuid'
|
|
4092
|
+
},
|
|
4093
|
+
parentId: {
|
|
4094
|
+
type: 'string',
|
|
4095
|
+
format: 'uuid',
|
|
4096
|
+
nullable: true
|
|
4097
|
+
},
|
|
4087
4098
|
entityInformationTypes: {
|
|
4088
4099
|
type: 'array',
|
|
4089
4100
|
items: {
|
|
@@ -4364,11 +4375,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
4364
4375
|
type: 'string',
|
|
4365
4376
|
nullable: true
|
|
4366
4377
|
},
|
|
4367
|
-
parentCompanyId: {
|
|
4368
|
-
type: 'string',
|
|
4369
|
-
format: 'uuid',
|
|
4370
|
-
nullable: true
|
|
4371
|
-
},
|
|
4372
4378
|
contactInformations: {
|
|
4373
4379
|
type: 'array',
|
|
4374
4380
|
items: {
|
|
@@ -4514,10 +4520,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
4514
4520
|
},
|
|
4515
4521
|
additionalProperties: false
|
|
4516
4522
|
}
|
|
4517
|
-
},
|
|
4518
|
-
typeCode: {
|
|
4519
|
-
enum: ['HEADQUARTER', 'STORE'],
|
|
4520
|
-
type: 'string'
|
|
4521
4523
|
}
|
|
4522
4524
|
},
|
|
4523
4525
|
additionalProperties: false
|
|
@@ -4801,11 +4803,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
4801
4803
|
type: 'string',
|
|
4802
4804
|
nullable: true
|
|
4803
4805
|
},
|
|
4804
|
-
parentCompanyId: {
|
|
4805
|
-
type: 'string',
|
|
4806
|
-
format: 'uuid',
|
|
4807
|
-
nullable: true
|
|
4808
|
-
},
|
|
4809
4806
|
contactInformations: {
|
|
4810
4807
|
type: 'array',
|
|
4811
4808
|
items: {
|
|
@@ -4989,11 +4986,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
4989
4986
|
type: 'string',
|
|
4990
4987
|
nullable: true
|
|
4991
4988
|
},
|
|
4992
|
-
parentCompanyId: {
|
|
4993
|
-
type: 'string',
|
|
4994
|
-
format: 'uuid',
|
|
4995
|
-
nullable: true
|
|
4996
|
-
},
|
|
4997
4989
|
contactInformations: {
|
|
4998
4990
|
type: 'array',
|
|
4999
4991
|
items: {
|
|
@@ -5135,6 +5127,57 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
5135
5127
|
additionalProperties: false
|
|
5136
5128
|
} as const;
|
|
5137
5129
|
|
|
5130
|
+
export const $UniRefund_CRMService_Merchants_MerchantBasicInformationDto = {
|
|
5131
|
+
type: 'object',
|
|
5132
|
+
properties: {
|
|
5133
|
+
id: {
|
|
5134
|
+
type: 'string',
|
|
5135
|
+
format: 'uuid'
|
|
5136
|
+
},
|
|
5137
|
+
name: {
|
|
5138
|
+
type: 'string',
|
|
5139
|
+
nullable: true
|
|
5140
|
+
},
|
|
5141
|
+
taxOffice: {
|
|
5142
|
+
type: 'object',
|
|
5143
|
+
properties: {
|
|
5144
|
+
id: {
|
|
5145
|
+
type: 'string',
|
|
5146
|
+
format: 'uuid'
|
|
5147
|
+
},
|
|
5148
|
+
name: {
|
|
5149
|
+
type: 'string',
|
|
5150
|
+
nullable: true
|
|
5151
|
+
}
|
|
5152
|
+
},
|
|
5153
|
+
additionalProperties: false
|
|
5154
|
+
},
|
|
5155
|
+
numberOfStores: {
|
|
5156
|
+
type: 'integer',
|
|
5157
|
+
format: 'int32'
|
|
5158
|
+
},
|
|
5159
|
+
accountManagers: {
|
|
5160
|
+
type: 'array',
|
|
5161
|
+
items: {
|
|
5162
|
+
type: 'object',
|
|
5163
|
+
properties: {
|
|
5164
|
+
id: {
|
|
5165
|
+
type: 'string',
|
|
5166
|
+
format: 'uuid'
|
|
5167
|
+
},
|
|
5168
|
+
name: {
|
|
5169
|
+
type: 'string',
|
|
5170
|
+
nullable: true
|
|
5171
|
+
}
|
|
5172
|
+
},
|
|
5173
|
+
additionalProperties: false
|
|
5174
|
+
},
|
|
5175
|
+
nullable: true
|
|
5176
|
+
}
|
|
5177
|
+
},
|
|
5178
|
+
additionalProperties: false
|
|
5179
|
+
} as const;
|
|
5180
|
+
|
|
5138
5181
|
export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
5139
5182
|
type: 'object',
|
|
5140
5183
|
properties: {
|
|
@@ -5760,11 +5803,6 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
5760
5803
|
type: 'string',
|
|
5761
5804
|
nullable: true
|
|
5762
5805
|
},
|
|
5763
|
-
parentCompanyId: {
|
|
5764
|
-
type: 'string',
|
|
5765
|
-
format: 'uuid',
|
|
5766
|
-
nullable: true
|
|
5767
|
-
},
|
|
5768
5806
|
customerNumber: {
|
|
5769
5807
|
type: 'string',
|
|
5770
5808
|
nullable: true
|
|
@@ -6116,7 +6154,7 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
6116
6154
|
readOnly: true
|
|
6117
6155
|
},
|
|
6118
6156
|
affiliationTypeCode: {
|
|
6119
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
6157
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
6120
6158
|
type: 'string'
|
|
6121
6159
|
},
|
|
6122
6160
|
partyId: {
|
|
@@ -6128,6 +6166,19 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
6128
6166
|
additionalProperties: false
|
|
6129
6167
|
},
|
|
6130
6168
|
nullable: true
|
|
6169
|
+
},
|
|
6170
|
+
typeCode: {
|
|
6171
|
+
enum: ['HEADQUARTER', 'STORE'],
|
|
6172
|
+
type: 'string'
|
|
6173
|
+
},
|
|
6174
|
+
taxOfficeId: {
|
|
6175
|
+
type: 'string',
|
|
6176
|
+
format: 'uuid'
|
|
6177
|
+
},
|
|
6178
|
+
tenantId: {
|
|
6179
|
+
type: 'string',
|
|
6180
|
+
format: 'uuid',
|
|
6181
|
+
nullable: true
|
|
6131
6182
|
}
|
|
6132
6183
|
},
|
|
6133
6184
|
additionalProperties: false
|
|
@@ -6830,11 +6881,6 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
|
|
|
6830
6881
|
type: 'string',
|
|
6831
6882
|
nullable: true
|
|
6832
6883
|
},
|
|
6833
|
-
parentCompanyId: {
|
|
6834
|
-
type: 'string',
|
|
6835
|
-
format: 'uuid',
|
|
6836
|
-
nullable: true
|
|
6837
|
-
},
|
|
6838
6884
|
customerNumber: {
|
|
6839
6885
|
type: 'string',
|
|
6840
6886
|
nullable: true
|
|
@@ -7186,7 +7232,7 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
|
|
|
7186
7232
|
readOnly: true
|
|
7187
7233
|
},
|
|
7188
7234
|
affiliationTypeCode: {
|
|
7189
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
7235
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
7190
7236
|
type: 'string'
|
|
7191
7237
|
},
|
|
7192
7238
|
partyId: {
|
|
@@ -7198,6 +7244,19 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
|
|
|
7198
7244
|
additionalProperties: false
|
|
7199
7245
|
},
|
|
7200
7246
|
nullable: true
|
|
7247
|
+
},
|
|
7248
|
+
typeCode: {
|
|
7249
|
+
enum: ['HEADQUARTER', 'STORE'],
|
|
7250
|
+
type: 'string'
|
|
7251
|
+
},
|
|
7252
|
+
taxOfficeId: {
|
|
7253
|
+
type: 'string',
|
|
7254
|
+
format: 'uuid'
|
|
7255
|
+
},
|
|
7256
|
+
tenantId: {
|
|
7257
|
+
type: 'string',
|
|
7258
|
+
format: 'uuid',
|
|
7259
|
+
nullable: true
|
|
7201
7260
|
}
|
|
7202
7261
|
},
|
|
7203
7262
|
additionalProperties: false
|
|
@@ -7237,7 +7296,7 @@ export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
|
7237
7296
|
type: 'string',
|
|
7238
7297
|
nullable: true
|
|
7239
7298
|
},
|
|
7240
|
-
|
|
7299
|
+
parentId: {
|
|
7241
7300
|
type: 'string',
|
|
7242
7301
|
format: 'uuid',
|
|
7243
7302
|
nullable: true
|
|
@@ -7246,10 +7305,6 @@ export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
|
7246
7305
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
7247
7306
|
type: 'string'
|
|
7248
7307
|
},
|
|
7249
|
-
entityInformationTypeCodeName: {
|
|
7250
|
-
type: 'string',
|
|
7251
|
-
nullable: true
|
|
7252
|
-
},
|
|
7253
7308
|
organizationId: {
|
|
7254
7309
|
type: 'string',
|
|
7255
7310
|
format: 'uuid',
|
|
@@ -7284,10 +7339,6 @@ export const $UniRefund_CRMService_Merchants_RefundPointProfileDto = {
|
|
|
7284
7339
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
7285
7340
|
type: 'string'
|
|
7286
7341
|
},
|
|
7287
|
-
entityInformationTypeCodeValue: {
|
|
7288
|
-
type: 'string',
|
|
7289
|
-
nullable: true
|
|
7290
|
-
},
|
|
7291
7342
|
organizationId: {
|
|
7292
7343
|
type: 'string',
|
|
7293
7344
|
format: 'uuid'
|
|
@@ -7671,11 +7722,6 @@ export const $UniRefund_CRMService_Organizations_OrganizationDto = {
|
|
|
7671
7722
|
type: 'string',
|
|
7672
7723
|
nullable: true
|
|
7673
7724
|
},
|
|
7674
|
-
parentCompanyId: {
|
|
7675
|
-
type: 'string',
|
|
7676
|
-
format: 'uuid',
|
|
7677
|
-
nullable: true
|
|
7678
|
-
},
|
|
7679
7725
|
customerNumber: {
|
|
7680
7726
|
type: 'string',
|
|
7681
7727
|
nullable: true
|
|
@@ -7990,20 +8036,12 @@ export const $UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
|
7990
8036
|
nullable: true
|
|
7991
8037
|
},
|
|
7992
8038
|
affiliationTypeCode: {
|
|
7993
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
8039
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
7994
8040
|
type: 'string'
|
|
7995
8041
|
},
|
|
7996
|
-
affiliationTypeCodeValue: {
|
|
7997
|
-
type: 'string',
|
|
7998
|
-
nullable: true
|
|
7999
|
-
},
|
|
8000
8042
|
affiliationParentTypeCode: {
|
|
8001
8043
|
enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
|
|
8002
8044
|
type: 'string'
|
|
8003
|
-
},
|
|
8004
|
-
affiliationParentTypeCodeValue: {
|
|
8005
|
-
type: 'string',
|
|
8006
|
-
nullable: true
|
|
8007
8045
|
}
|
|
8008
8046
|
},
|
|
8009
8047
|
additionalProperties: false
|
|
@@ -8219,6 +8257,11 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
|
8219
8257
|
enum: ['HEADQUARTER', 'REFUNDPOINT'],
|
|
8220
8258
|
type: 'string'
|
|
8221
8259
|
},
|
|
8260
|
+
parentId: {
|
|
8261
|
+
type: 'string',
|
|
8262
|
+
format: 'uuid',
|
|
8263
|
+
nullable: true
|
|
8264
|
+
},
|
|
8222
8265
|
entityInformationTypes: {
|
|
8223
8266
|
type: 'array',
|
|
8224
8267
|
items: {
|
|
@@ -8795,6 +8838,10 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointDto = {
|
|
|
8795
8838
|
format: 'date-time',
|
|
8796
8839
|
nullable: true
|
|
8797
8840
|
},
|
|
8841
|
+
typeCode: {
|
|
8842
|
+
enum: ['HEADQUARTER', 'REFUNDPOINT'],
|
|
8843
|
+
type: 'string'
|
|
8844
|
+
},
|
|
8798
8845
|
entityInformations: {
|
|
8799
8846
|
type: 'array',
|
|
8800
8847
|
items: {
|
|
@@ -9378,11 +9425,6 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointDto = {
|
|
|
9378
9425
|
type: 'string',
|
|
9379
9426
|
nullable: true
|
|
9380
9427
|
},
|
|
9381
|
-
parentCompanyId: {
|
|
9382
|
-
type: 'string',
|
|
9383
|
-
format: 'uuid',
|
|
9384
|
-
nullable: true
|
|
9385
|
-
},
|
|
9386
9428
|
customerNumber: {
|
|
9387
9429
|
type: 'string',
|
|
9388
9430
|
nullable: true
|
|
@@ -9929,6 +9971,11 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
9929
9971
|
},
|
|
9930
9972
|
additionalProperties: false
|
|
9931
9973
|
}
|
|
9974
|
+
},
|
|
9975
|
+
parentId: {
|
|
9976
|
+
type: 'string',
|
|
9977
|
+
format: 'uuid',
|
|
9978
|
+
nullable: true
|
|
9932
9979
|
}
|
|
9933
9980
|
},
|
|
9934
9981
|
additionalProperties: false
|
|
@@ -10940,11 +10987,6 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeDto = {
|
|
|
10940
10987
|
type: 'string',
|
|
10941
10988
|
nullable: true
|
|
10942
10989
|
},
|
|
10943
|
-
parentCompanyId: {
|
|
10944
|
-
type: 'string',
|
|
10945
|
-
format: 'uuid',
|
|
10946
|
-
nullable: true
|
|
10947
|
-
},
|
|
10948
10990
|
customerNumber: {
|
|
10949
10991
|
type: 'string',
|
|
10950
10992
|
nullable: true
|
|
@@ -11259,7 +11301,7 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
|
11259
11301
|
type: 'string',
|
|
11260
11302
|
nullable: true
|
|
11261
11303
|
},
|
|
11262
|
-
|
|
11304
|
+
parentId: {
|
|
11263
11305
|
type: 'string',
|
|
11264
11306
|
format: 'uuid',
|
|
11265
11307
|
nullable: true
|
|
@@ -11481,6 +11523,11 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
|
11481
11523
|
},
|
|
11482
11524
|
additionalProperties: false
|
|
11483
11525
|
}
|
|
11526
|
+
},
|
|
11527
|
+
parentId: {
|
|
11528
|
+
type: 'string',
|
|
11529
|
+
format: 'uuid',
|
|
11530
|
+
nullable: true
|
|
11484
11531
|
}
|
|
11485
11532
|
},
|
|
11486
11533
|
additionalProperties: false
|
|
@@ -12488,11 +12535,6 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
|
|
|
12488
12535
|
type: 'string',
|
|
12489
12536
|
nullable: true
|
|
12490
12537
|
},
|
|
12491
|
-
parentCompanyId: {
|
|
12492
|
-
type: 'string',
|
|
12493
|
-
format: 'uuid',
|
|
12494
|
-
nullable: true
|
|
12495
|
-
},
|
|
12496
12538
|
customerNumber: {
|
|
12497
12539
|
type: 'string',
|
|
12498
12540
|
nullable: true
|
|
@@ -12796,6 +12838,21 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
|
|
|
12796
12838
|
additionalProperties: false
|
|
12797
12839
|
} as const;
|
|
12798
12840
|
|
|
12841
|
+
export const $UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto = {
|
|
12842
|
+
type: 'object',
|
|
12843
|
+
properties: {
|
|
12844
|
+
id: {
|
|
12845
|
+
type: 'string',
|
|
12846
|
+
format: 'uuid'
|
|
12847
|
+
},
|
|
12848
|
+
name: {
|
|
12849
|
+
type: 'string',
|
|
12850
|
+
nullable: true
|
|
12851
|
+
}
|
|
12852
|
+
},
|
|
12853
|
+
additionalProperties: false
|
|
12854
|
+
} as const;
|
|
12855
|
+
|
|
12799
12856
|
export const $UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
12800
12857
|
type: 'object',
|
|
12801
12858
|
properties: {
|
|
@@ -12807,7 +12864,7 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
|
12807
12864
|
type: 'string',
|
|
12808
12865
|
nullable: true
|
|
12809
12866
|
},
|
|
12810
|
-
|
|
12867
|
+
parentId: {
|
|
12811
12868
|
type: 'string',
|
|
12812
12869
|
format: 'uuid',
|
|
12813
12870
|
nullable: true
|
|
@@ -13239,7 +13296,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_A
|
|
|
13239
13296
|
readOnly: true
|
|
13240
13297
|
},
|
|
13241
13298
|
affiliationTypeCode: {
|
|
13242
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
13299
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
13243
13300
|
type: 'string'
|
|
13244
13301
|
},
|
|
13245
13302
|
partyId: {
|
|
@@ -13276,7 +13333,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_C
|
|
|
13276
13333
|
type: 'string',
|
|
13277
13334
|
nullable: true
|
|
13278
13335
|
},
|
|
13279
|
-
|
|
13336
|
+
parentId: {
|
|
13280
13337
|
type: 'string',
|
|
13281
13338
|
format: 'uuid',
|
|
13282
13339
|
nullable: true
|
|
@@ -13391,25 +13448,13 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_I
|
|
|
13391
13448
|
format: 'uuid',
|
|
13392
13449
|
nullable: true
|
|
13393
13450
|
},
|
|
13394
|
-
affiliatedName: {
|
|
13395
|
-
type: 'string',
|
|
13396
|
-
nullable: true
|
|
13397
|
-
},
|
|
13398
13451
|
affiliationTypeCode: {
|
|
13399
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
13452
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
13400
13453
|
type: 'string'
|
|
13401
13454
|
},
|
|
13402
|
-
affiliationTypeCodeValue: {
|
|
13403
|
-
type: 'string',
|
|
13404
|
-
nullable: true
|
|
13405
|
-
},
|
|
13406
13455
|
affiliationParentTypeCode: {
|
|
13407
13456
|
enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
|
|
13408
13457
|
type: 'string'
|
|
13409
|
-
},
|
|
13410
|
-
affiliationParentTypeCodeValue: {
|
|
13411
|
-
type: 'string',
|
|
13412
|
-
nullable: true
|
|
13413
13458
|
}
|
|
13414
13459
|
},
|
|
13415
13460
|
additionalProperties: false
|
|
@@ -13440,7 +13485,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_M
|
|
|
13440
13485
|
type: 'string',
|
|
13441
13486
|
nullable: true
|
|
13442
13487
|
},
|
|
13443
|
-
|
|
13488
|
+
parentId: {
|
|
13444
13489
|
type: 'string',
|
|
13445
13490
|
format: 'uuid',
|
|
13446
13491
|
nullable: true
|
|
@@ -13449,10 +13494,6 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_M
|
|
|
13449
13494
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
13450
13495
|
type: 'string'
|
|
13451
13496
|
},
|
|
13452
|
-
entityInformationTypeCodeName: {
|
|
13453
|
-
type: 'string',
|
|
13454
|
-
nullable: true
|
|
13455
|
-
},
|
|
13456
13497
|
organizationId: {
|
|
13457
13498
|
type: 'string',
|
|
13458
13499
|
format: 'uuid',
|
|
@@ -13496,10 +13537,6 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_M
|
|
|
13496
13537
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
13497
13538
|
type: 'string'
|
|
13498
13539
|
},
|
|
13499
|
-
entityInformationTypeCodeValue: {
|
|
13500
|
-
type: 'string',
|
|
13501
|
-
nullable: true
|
|
13502
|
-
},
|
|
13503
13540
|
organizationId: {
|
|
13504
13541
|
type: 'string',
|
|
13505
13542
|
format: 'uuid'
|
|
@@ -13543,20 +13580,12 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_O
|
|
|
13543
13580
|
nullable: true
|
|
13544
13581
|
},
|
|
13545
13582
|
affiliationTypeCode: {
|
|
13546
|
-
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY'],
|
|
13583
|
+
enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER'],
|
|
13547
13584
|
type: 'string'
|
|
13548
13585
|
},
|
|
13549
|
-
affiliationTypeCodeValue: {
|
|
13550
|
-
type: 'string',
|
|
13551
|
-
nullable: true
|
|
13552
|
-
},
|
|
13553
13586
|
affiliationParentTypeCode: {
|
|
13554
13587
|
enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
|
|
13555
13588
|
type: 'string'
|
|
13556
|
-
},
|
|
13557
|
-
affiliationParentTypeCodeValue: {
|
|
13558
|
-
type: 'string',
|
|
13559
|
-
nullable: true
|
|
13560
13589
|
}
|
|
13561
13590
|
},
|
|
13562
13591
|
additionalProperties: false
|
|
@@ -13587,7 +13616,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_T
|
|
|
13587
13616
|
type: 'string',
|
|
13588
13617
|
nullable: true
|
|
13589
13618
|
},
|
|
13590
|
-
|
|
13619
|
+
parentId: {
|
|
13591
13620
|
type: 'string',
|
|
13592
13621
|
format: 'uuid',
|
|
13593
13622
|
nullable: true
|
|
@@ -13625,7 +13654,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_CRMService_T
|
|
|
13625
13654
|
type: 'string',
|
|
13626
13655
|
nullable: true
|
|
13627
13656
|
},
|
|
13628
|
-
|
|
13657
|
+
parentId: {
|
|
13629
13658
|
type: 'string',
|
|
13630
13659
|
format: 'uuid',
|
|
13631
13660
|
nullable: true
|