@ayasofyazilim/saas 0.0.165 → 0.0.167
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/update.yaml +2 -0
- package/ContractService/schemas.gen.ts +135 -212
- package/ContractService/types.gen.ts +23 -27
- package/TagService/schemas.gen.ts +141 -385
- package/TagService/sdk.gen.ts +27 -27
- package/TagService/types.gen.ts +71 -12
- package/package.json +2 -2
|
@@ -644,87 +644,65 @@ export const $PagedResultDto_ContractSettingDto = {
|
|
|
644
644
|
type: 'boolean'
|
|
645
645
|
},
|
|
646
646
|
invoicingAddressCommonData: {
|
|
647
|
-
required: ['addressLine', 'cityId', 'countryId', 'districtId', 'fullAddress', 'id', 'postalCode', 'type'],
|
|
648
647
|
type: 'object',
|
|
649
648
|
properties: {
|
|
650
649
|
id: {
|
|
651
650
|
type: 'string',
|
|
652
651
|
format: 'uuid'
|
|
653
652
|
},
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
653
|
+
partyType: {
|
|
654
|
+
enum: ['INDIVIDUAL', 'MERCHANT', 'REFUNDPOINT', 'CUSTOM', 'TAXFREE', 'TAXOFFICE', 'TOURGUIDE'],
|
|
655
|
+
type: 'string'
|
|
657
656
|
},
|
|
658
|
-
|
|
657
|
+
partyId: {
|
|
659
658
|
type: 'string',
|
|
660
|
-
format: 'uuid'
|
|
661
|
-
nullable: true
|
|
659
|
+
format: 'uuid'
|
|
662
660
|
},
|
|
663
|
-
|
|
661
|
+
countryId: {
|
|
664
662
|
type: 'string',
|
|
665
|
-
format: '
|
|
666
|
-
nullable: true
|
|
663
|
+
format: 'uuid'
|
|
667
664
|
},
|
|
668
|
-
|
|
665
|
+
adminAreaLevel1Id: {
|
|
669
666
|
type: 'string',
|
|
670
|
-
format: 'uuid'
|
|
671
|
-
nullable: true
|
|
667
|
+
format: 'uuid'
|
|
672
668
|
},
|
|
673
|
-
|
|
674
|
-
type: '
|
|
669
|
+
adminAreaLevel2Id: {
|
|
670
|
+
type: 'string',
|
|
671
|
+
format: 'uuid'
|
|
675
672
|
},
|
|
676
|
-
|
|
673
|
+
neighborhoodId: {
|
|
677
674
|
type: 'string',
|
|
678
675
|
format: 'uuid',
|
|
679
676
|
nullable: true
|
|
680
677
|
},
|
|
681
|
-
|
|
678
|
+
addressLine: {
|
|
682
679
|
type: 'string',
|
|
683
|
-
format: 'date-time',
|
|
684
680
|
nullable: true
|
|
685
681
|
},
|
|
686
|
-
type: {
|
|
687
|
-
enum: ['Home', 'Office', 'Invoice', 'Contact'],
|
|
688
|
-
type: 'string'
|
|
689
|
-
},
|
|
690
|
-
addressLine: {
|
|
691
|
-
maxLength: 255,
|
|
692
|
-
minLength: 0,
|
|
693
|
-
type: 'string'
|
|
694
|
-
},
|
|
695
682
|
postalCode: {
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
type: 'string'
|
|
683
|
+
type: 'string',
|
|
684
|
+
nullable: true
|
|
699
685
|
},
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
minLength: 0,
|
|
686
|
+
type: {
|
|
687
|
+
enum: ['UNKNOWN', 'HOME', 'WORK'],
|
|
703
688
|
type: 'string'
|
|
704
689
|
},
|
|
705
|
-
|
|
706
|
-
type: 'boolean'
|
|
707
|
-
},
|
|
708
|
-
countryId: {
|
|
709
|
-
type: 'string',
|
|
710
|
-
format: 'uuid'
|
|
711
|
-
},
|
|
712
|
-
regionId: {
|
|
690
|
+
placeId: {
|
|
713
691
|
type: 'string',
|
|
714
|
-
format: 'uuid',
|
|
715
692
|
nullable: true
|
|
716
693
|
},
|
|
717
|
-
|
|
718
|
-
type: '
|
|
719
|
-
format: '
|
|
694
|
+
latitude: {
|
|
695
|
+
type: 'number',
|
|
696
|
+
format: 'float',
|
|
697
|
+
nullable: true
|
|
720
698
|
},
|
|
721
|
-
|
|
722
|
-
type: '
|
|
723
|
-
format: '
|
|
699
|
+
longitude: {
|
|
700
|
+
type: 'number',
|
|
701
|
+
format: 'float',
|
|
702
|
+
nullable: true
|
|
724
703
|
},
|
|
725
|
-
|
|
726
|
-
type: '
|
|
727
|
-
format: 'uuid',
|
|
704
|
+
isPrimary: {
|
|
705
|
+
type: 'boolean',
|
|
728
706
|
nullable: true
|
|
729
707
|
}
|
|
730
708
|
},
|
|
@@ -790,14 +768,6 @@ export const $PagedResultDto_ContractStoreDetailedDto = {
|
|
|
790
768
|
type: 'string',
|
|
791
769
|
nullable: true
|
|
792
770
|
},
|
|
793
|
-
fullAddress: {
|
|
794
|
-
type: 'string',
|
|
795
|
-
nullable: true
|
|
796
|
-
},
|
|
797
|
-
manager: {
|
|
798
|
-
type: 'string',
|
|
799
|
-
nullable: true
|
|
800
|
-
},
|
|
801
771
|
contractSettingId: {
|
|
802
772
|
type: 'string',
|
|
803
773
|
format: 'uuid'
|
|
@@ -1101,6 +1071,77 @@ export const $PagedResultDto_RefundTableHeaderListDto = {
|
|
|
1101
1071
|
additionalProperties: false
|
|
1102
1072
|
} as const;
|
|
1103
1073
|
|
|
1074
|
+
export const $UniRefund_CRMService_Addresses_AddressDto = {
|
|
1075
|
+
type: 'object',
|
|
1076
|
+
properties: {
|
|
1077
|
+
id: {
|
|
1078
|
+
type: 'string',
|
|
1079
|
+
format: 'uuid'
|
|
1080
|
+
},
|
|
1081
|
+
partyType: {
|
|
1082
|
+
enum: ['INDIVIDUAL', 'MERCHANT', 'REFUNDPOINT', 'CUSTOM', 'TAXFREE', 'TAXOFFICE', 'TOURGUIDE'],
|
|
1083
|
+
type: 'string'
|
|
1084
|
+
},
|
|
1085
|
+
partyId: {
|
|
1086
|
+
type: 'string',
|
|
1087
|
+
format: 'uuid'
|
|
1088
|
+
},
|
|
1089
|
+
countryId: {
|
|
1090
|
+
type: 'string',
|
|
1091
|
+
format: 'uuid'
|
|
1092
|
+
},
|
|
1093
|
+
adminAreaLevel1Id: {
|
|
1094
|
+
type: 'string',
|
|
1095
|
+
format: 'uuid'
|
|
1096
|
+
},
|
|
1097
|
+
adminAreaLevel2Id: {
|
|
1098
|
+
type: 'string',
|
|
1099
|
+
format: 'uuid'
|
|
1100
|
+
},
|
|
1101
|
+
neighborhoodId: {
|
|
1102
|
+
type: 'string',
|
|
1103
|
+
format: 'uuid',
|
|
1104
|
+
nullable: true
|
|
1105
|
+
},
|
|
1106
|
+
addressLine: {
|
|
1107
|
+
type: 'string',
|
|
1108
|
+
nullable: true
|
|
1109
|
+
},
|
|
1110
|
+
postalCode: {
|
|
1111
|
+
type: 'string',
|
|
1112
|
+
nullable: true
|
|
1113
|
+
},
|
|
1114
|
+
type: {
|
|
1115
|
+
enum: ['UNKNOWN', 'HOME', 'WORK'],
|
|
1116
|
+
type: 'string'
|
|
1117
|
+
},
|
|
1118
|
+
placeId: {
|
|
1119
|
+
type: 'string',
|
|
1120
|
+
nullable: true
|
|
1121
|
+
},
|
|
1122
|
+
latitude: {
|
|
1123
|
+
type: 'number',
|
|
1124
|
+
format: 'float',
|
|
1125
|
+
nullable: true
|
|
1126
|
+
},
|
|
1127
|
+
longitude: {
|
|
1128
|
+
type: 'number',
|
|
1129
|
+
format: 'float',
|
|
1130
|
+
nullable: true
|
|
1131
|
+
},
|
|
1132
|
+
isPrimary: {
|
|
1133
|
+
type: 'boolean',
|
|
1134
|
+
nullable: true
|
|
1135
|
+
}
|
|
1136
|
+
},
|
|
1137
|
+
additionalProperties: false
|
|
1138
|
+
} as const;
|
|
1139
|
+
|
|
1140
|
+
export const $UniRefund_CRMService_Addresses_AddressType = {
|
|
1141
|
+
enum: ['UNKNOWN', 'HOME', 'WORK'],
|
|
1142
|
+
type: 'string'
|
|
1143
|
+
} as const;
|
|
1144
|
+
|
|
1104
1145
|
export const $UniRefund_CRMService_Individuals_IndividualIdNameDto = {
|
|
1105
1146
|
type: 'object',
|
|
1106
1147
|
properties: {
|
|
@@ -1902,87 +1943,65 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractSettings_Co
|
|
|
1902
1943
|
type: 'boolean'
|
|
1903
1944
|
},
|
|
1904
1945
|
invoicingAddressCommonData: {
|
|
1905
|
-
required: ['addressLine', 'cityId', 'countryId', 'districtId', 'fullAddress', 'id', 'postalCode', 'type'],
|
|
1906
1946
|
type: 'object',
|
|
1907
1947
|
properties: {
|
|
1908
1948
|
id: {
|
|
1909
1949
|
type: 'string',
|
|
1910
1950
|
format: 'uuid'
|
|
1911
1951
|
},
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1952
|
+
partyType: {
|
|
1953
|
+
enum: ['INDIVIDUAL', 'MERCHANT', 'REFUNDPOINT', 'CUSTOM', 'TAXFREE', 'TAXOFFICE', 'TOURGUIDE'],
|
|
1954
|
+
type: 'string'
|
|
1915
1955
|
},
|
|
1916
|
-
|
|
1956
|
+
partyId: {
|
|
1917
1957
|
type: 'string',
|
|
1918
|
-
format: 'uuid'
|
|
1919
|
-
nullable: true
|
|
1958
|
+
format: 'uuid'
|
|
1920
1959
|
},
|
|
1921
|
-
|
|
1960
|
+
countryId: {
|
|
1922
1961
|
type: 'string',
|
|
1923
|
-
format: '
|
|
1924
|
-
nullable: true
|
|
1962
|
+
format: 'uuid'
|
|
1925
1963
|
},
|
|
1926
|
-
|
|
1964
|
+
adminAreaLevel1Id: {
|
|
1927
1965
|
type: 'string',
|
|
1928
|
-
format: 'uuid'
|
|
1929
|
-
nullable: true
|
|
1966
|
+
format: 'uuid'
|
|
1930
1967
|
},
|
|
1931
|
-
|
|
1932
|
-
type: '
|
|
1968
|
+
adminAreaLevel2Id: {
|
|
1969
|
+
type: 'string',
|
|
1970
|
+
format: 'uuid'
|
|
1933
1971
|
},
|
|
1934
|
-
|
|
1972
|
+
neighborhoodId: {
|
|
1935
1973
|
type: 'string',
|
|
1936
1974
|
format: 'uuid',
|
|
1937
1975
|
nullable: true
|
|
1938
1976
|
},
|
|
1939
|
-
|
|
1977
|
+
addressLine: {
|
|
1940
1978
|
type: 'string',
|
|
1941
|
-
format: 'date-time',
|
|
1942
1979
|
nullable: true
|
|
1943
1980
|
},
|
|
1944
|
-
type: {
|
|
1945
|
-
enum: ['Home', 'Office', 'Invoice', 'Contact'],
|
|
1946
|
-
type: 'string'
|
|
1947
|
-
},
|
|
1948
|
-
addressLine: {
|
|
1949
|
-
maxLength: 255,
|
|
1950
|
-
minLength: 0,
|
|
1951
|
-
type: 'string'
|
|
1952
|
-
},
|
|
1953
1981
|
postalCode: {
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
type: 'string'
|
|
1982
|
+
type: 'string',
|
|
1983
|
+
nullable: true
|
|
1957
1984
|
},
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
minLength: 0,
|
|
1985
|
+
type: {
|
|
1986
|
+
enum: ['UNKNOWN', 'HOME', 'WORK'],
|
|
1961
1987
|
type: 'string'
|
|
1962
1988
|
},
|
|
1963
|
-
|
|
1964
|
-
type: 'boolean'
|
|
1965
|
-
},
|
|
1966
|
-
countryId: {
|
|
1967
|
-
type: 'string',
|
|
1968
|
-
format: 'uuid'
|
|
1969
|
-
},
|
|
1970
|
-
regionId: {
|
|
1989
|
+
placeId: {
|
|
1971
1990
|
type: 'string',
|
|
1972
|
-
format: 'uuid',
|
|
1973
1991
|
nullable: true
|
|
1974
1992
|
},
|
|
1975
|
-
|
|
1976
|
-
type: '
|
|
1977
|
-
format: '
|
|
1993
|
+
latitude: {
|
|
1994
|
+
type: 'number',
|
|
1995
|
+
format: 'float',
|
|
1996
|
+
nullable: true
|
|
1978
1997
|
},
|
|
1979
|
-
|
|
1980
|
-
type: '
|
|
1981
|
-
format: '
|
|
1998
|
+
longitude: {
|
|
1999
|
+
type: 'number',
|
|
2000
|
+
format: 'float',
|
|
2001
|
+
nullable: true
|
|
1982
2002
|
},
|
|
1983
|
-
|
|
1984
|
-
type: '
|
|
1985
|
-
format: 'uuid',
|
|
2003
|
+
isPrimary: {
|
|
2004
|
+
type: 'boolean',
|
|
1986
2005
|
nullable: true
|
|
1987
2006
|
}
|
|
1988
2007
|
},
|
|
@@ -2186,14 +2205,6 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_Cont
|
|
|
2186
2205
|
type: 'string',
|
|
2187
2206
|
nullable: true
|
|
2188
2207
|
},
|
|
2189
|
-
fullAddress: {
|
|
2190
|
-
type: 'string',
|
|
2191
|
-
nullable: true
|
|
2192
|
-
},
|
|
2193
|
-
manager: {
|
|
2194
|
-
type: 'string',
|
|
2195
|
-
nullable: true
|
|
2196
|
-
},
|
|
2197
2208
|
contractSettingId: {
|
|
2198
2209
|
type: 'string',
|
|
2199
2210
|
format: 'uuid'
|
|
@@ -3192,7 +3203,7 @@ export const $UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_
|
|
|
3192
3203
|
} as const;
|
|
3193
3204
|
|
|
3194
3205
|
export const $UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto = {
|
|
3195
|
-
required: ['
|
|
3206
|
+
required: ['affiliationIdForContact', 'contractHeaderId', 'id', 'rebateStatementPeriod'],
|
|
3196
3207
|
type: 'object',
|
|
3197
3208
|
properties: {
|
|
3198
3209
|
id: {
|
|
@@ -3242,7 +3253,7 @@ export const $UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto
|
|
|
3242
3253
|
enum: ['None', 'Monthly', 'Quarterly', 'BiAnnually', 'Annually'],
|
|
3243
3254
|
type: 'string'
|
|
3244
3255
|
},
|
|
3245
|
-
|
|
3256
|
+
affiliationIdForContact: {
|
|
3246
3257
|
type: 'string',
|
|
3247
3258
|
format: 'uuid'
|
|
3248
3259
|
},
|
|
@@ -3316,7 +3327,7 @@ export const $UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto
|
|
|
3316
3327
|
} as const;
|
|
3317
3328
|
|
|
3318
3329
|
export const $UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpSertDto = {
|
|
3319
|
-
required: ['
|
|
3330
|
+
required: ['affiliationIdForContact', 'rebateStatementPeriod'],
|
|
3320
3331
|
type: 'object',
|
|
3321
3332
|
properties: {
|
|
3322
3333
|
extraProperties: {
|
|
@@ -3337,7 +3348,7 @@ export const $UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpSe
|
|
|
3337
3348
|
enum: ['None', 'Monthly', 'Quarterly', 'BiAnnually', 'Annually'],
|
|
3338
3349
|
type: 'string'
|
|
3339
3350
|
},
|
|
3340
|
-
|
|
3351
|
+
affiliationIdForContact: {
|
|
3341
3352
|
type: 'string',
|
|
3342
3353
|
format: 'uuid'
|
|
3343
3354
|
},
|
|
@@ -5297,96 +5308,8 @@ export const $UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHe
|
|
|
5297
5308
|
additionalProperties: false
|
|
5298
5309
|
} as const;
|
|
5299
5310
|
|
|
5300
|
-
export const $
|
|
5301
|
-
|
|
5302
|
-
type: 'object',
|
|
5303
|
-
properties: {
|
|
5304
|
-
id: {
|
|
5305
|
-
type: 'string',
|
|
5306
|
-
format: 'uuid'
|
|
5307
|
-
},
|
|
5308
|
-
creationTime: {
|
|
5309
|
-
type: 'string',
|
|
5310
|
-
format: 'date-time'
|
|
5311
|
-
},
|
|
5312
|
-
creatorId: {
|
|
5313
|
-
type: 'string',
|
|
5314
|
-
format: 'uuid',
|
|
5315
|
-
nullable: true
|
|
5316
|
-
},
|
|
5317
|
-
lastModificationTime: {
|
|
5318
|
-
type: 'string',
|
|
5319
|
-
format: 'date-time',
|
|
5320
|
-
nullable: true
|
|
5321
|
-
},
|
|
5322
|
-
lastModifierId: {
|
|
5323
|
-
type: 'string',
|
|
5324
|
-
format: 'uuid',
|
|
5325
|
-
nullable: true
|
|
5326
|
-
},
|
|
5327
|
-
isDeleted: {
|
|
5328
|
-
type: 'boolean'
|
|
5329
|
-
},
|
|
5330
|
-
deleterId: {
|
|
5331
|
-
type: 'string',
|
|
5332
|
-
format: 'uuid',
|
|
5333
|
-
nullable: true
|
|
5334
|
-
},
|
|
5335
|
-
deletionTime: {
|
|
5336
|
-
type: 'string',
|
|
5337
|
-
format: 'date-time',
|
|
5338
|
-
nullable: true
|
|
5339
|
-
},
|
|
5340
|
-
type: {
|
|
5341
|
-
enum: ['Home', 'Office', 'Invoice', 'Contact'],
|
|
5342
|
-
type: 'string'
|
|
5343
|
-
},
|
|
5344
|
-
addressLine: {
|
|
5345
|
-
maxLength: 255,
|
|
5346
|
-
minLength: 0,
|
|
5347
|
-
type: 'string'
|
|
5348
|
-
},
|
|
5349
|
-
postalCode: {
|
|
5350
|
-
maxLength: 255,
|
|
5351
|
-
minLength: 0,
|
|
5352
|
-
type: 'string'
|
|
5353
|
-
},
|
|
5354
|
-
fullAddress: {
|
|
5355
|
-
maxLength: 255,
|
|
5356
|
-
minLength: 0,
|
|
5357
|
-
type: 'string'
|
|
5358
|
-
},
|
|
5359
|
-
primaryFlag: {
|
|
5360
|
-
type: 'boolean'
|
|
5361
|
-
},
|
|
5362
|
-
countryId: {
|
|
5363
|
-
type: 'string',
|
|
5364
|
-
format: 'uuid'
|
|
5365
|
-
},
|
|
5366
|
-
regionId: {
|
|
5367
|
-
type: 'string',
|
|
5368
|
-
format: 'uuid',
|
|
5369
|
-
nullable: true
|
|
5370
|
-
},
|
|
5371
|
-
cityId: {
|
|
5372
|
-
type: 'string',
|
|
5373
|
-
format: 'uuid'
|
|
5374
|
-
},
|
|
5375
|
-
districtId: {
|
|
5376
|
-
type: 'string',
|
|
5377
|
-
format: 'uuid'
|
|
5378
|
-
},
|
|
5379
|
-
neighborhoodId: {
|
|
5380
|
-
type: 'string',
|
|
5381
|
-
format: 'uuid',
|
|
5382
|
-
nullable: true
|
|
5383
|
-
}
|
|
5384
|
-
},
|
|
5385
|
-
additionalProperties: false
|
|
5386
|
-
} as const;
|
|
5387
|
-
|
|
5388
|
-
export const $UniRefund_LocationService_Enums_AddressType = {
|
|
5389
|
-
enum: ['Home', 'Office', 'Invoice', 'Contact'],
|
|
5311
|
+
export const $UniRefund_Shared_Contracts_Enums_PartyType = {
|
|
5312
|
+
enum: ['INDIVIDUAL', 'MERCHANT', 'REFUNDPOINT', 'CUSTOM', 'TAXFREE', 'TAXOFFICE', 'TOURGUIDE'],
|
|
5390
5313
|
type: 'string'
|
|
5391
5314
|
} as const;
|
|
5392
5315
|
|
|
@@ -190,7 +190,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
190
190
|
termOfPayment: number;
|
|
191
191
|
deliveryFee?: boolean;
|
|
192
192
|
factoring?: boolean;
|
|
193
|
-
invoicingAddressCommonData:
|
|
193
|
+
invoicingAddressCommonData: UniRefund_CRMService_Addresses_AddressDto;
|
|
194
194
|
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
195
195
|
eTaxFree?: boolean;
|
|
196
196
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
@@ -249,8 +249,6 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
249
249
|
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDetailedDto = {
|
|
250
250
|
contractTypeIdentifiersSubId: string;
|
|
251
251
|
name?: (string) | null;
|
|
252
|
-
fullAddress?: (string) | null;
|
|
253
|
-
manager?: (string) | null;
|
|
254
252
|
contractSettingId?: string;
|
|
255
253
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
256
254
|
};
|
|
@@ -494,7 +492,7 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto =
|
|
|
494
492
|
referenceNumber?: (string) | null;
|
|
495
493
|
isTrustedMerchant?: boolean;
|
|
496
494
|
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
497
|
-
|
|
495
|
+
affiliationIdForContact: string;
|
|
498
496
|
contractHeaderId: string;
|
|
499
497
|
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_RebateSettingRebateTableHeaderInformationDto> | null;
|
|
500
498
|
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto> | null;
|
|
@@ -507,7 +505,7 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpSert
|
|
|
507
505
|
referenceNumber?: (string) | null;
|
|
508
506
|
isTrustedMerchant?: (boolean) | null;
|
|
509
507
|
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
510
|
-
|
|
508
|
+
affiliationIdForContact: string;
|
|
511
509
|
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeadersToRebateSettingUpSertDto> | null;
|
|
512
510
|
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionUpSertDto> | null;
|
|
513
511
|
};
|
|
@@ -876,6 +874,25 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
876
874
|
refundTableDetails?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailUpdateWithRandomIdDto> | null;
|
|
877
875
|
};
|
|
878
876
|
|
|
877
|
+
export type UniRefund_CRMService_Addresses_AddressDto = {
|
|
878
|
+
id?: string;
|
|
879
|
+
partyType?: UniRefund_Shared_Contracts_Enums_PartyType;
|
|
880
|
+
partyId?: string;
|
|
881
|
+
countryId?: string;
|
|
882
|
+
adminAreaLevel1Id?: string;
|
|
883
|
+
adminAreaLevel2Id?: string;
|
|
884
|
+
neighborhoodId?: (string) | null;
|
|
885
|
+
addressLine?: (string) | null;
|
|
886
|
+
postalCode?: (string) | null;
|
|
887
|
+
type?: UniRefund_CRMService_Addresses_AddressType;
|
|
888
|
+
placeId?: (string) | null;
|
|
889
|
+
latitude?: (number) | null;
|
|
890
|
+
longitude?: (number) | null;
|
|
891
|
+
isPrimary?: (boolean) | null;
|
|
892
|
+
};
|
|
893
|
+
|
|
894
|
+
export type UniRefund_CRMService_Addresses_AddressType = 'UNKNOWN' | 'HOME' | 'WORK';
|
|
895
|
+
|
|
879
896
|
export type UniRefund_CRMService_Individuals_IndividualIdNameDto = {
|
|
880
897
|
id?: string;
|
|
881
898
|
name?: (string) | null;
|
|
@@ -902,28 +919,7 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeNameDto = {
|
|
|
902
919
|
name: string;
|
|
903
920
|
};
|
|
904
921
|
|
|
905
|
-
export type
|
|
906
|
-
id: string;
|
|
907
|
-
creationTime?: string;
|
|
908
|
-
creatorId?: (string) | null;
|
|
909
|
-
lastModificationTime?: (string) | null;
|
|
910
|
-
lastModifierId?: (string) | null;
|
|
911
|
-
isDeleted?: boolean;
|
|
912
|
-
deleterId?: (string) | null;
|
|
913
|
-
deletionTime?: (string) | null;
|
|
914
|
-
type: UniRefund_LocationService_Enums_AddressType;
|
|
915
|
-
addressLine: string;
|
|
916
|
-
postalCode: string;
|
|
917
|
-
fullAddress: string;
|
|
918
|
-
primaryFlag?: boolean;
|
|
919
|
-
countryId: string;
|
|
920
|
-
regionId?: (string) | null;
|
|
921
|
-
cityId: string;
|
|
922
|
-
districtId: string;
|
|
923
|
-
neighborhoodId?: (string) | null;
|
|
924
|
-
};
|
|
925
|
-
|
|
926
|
-
export type UniRefund_LocationService_Enums_AddressType = 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
922
|
+
export type UniRefund_Shared_Contracts_Enums_PartyType = 'INDIVIDUAL' | 'MERCHANT' | 'REFUNDPOINT' | 'CUSTOM' | 'TAXFREE' | 'TAXOFFICE' | 'TOURGUIDE';
|
|
927
923
|
|
|
928
924
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
929
925
|
grantedPolicies?: {
|