@ayasofyazilim/saas 0.0.94 → 0.0.96

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.
@@ -54,12 +54,17 @@ export const $PagedResultDto_AffiliationCodeDto = {
54
54
  },
55
55
  roleId: {
56
56
  type: 'string',
57
- format: 'uuid'
57
+ format: 'uuid',
58
+ nullable: true
58
59
  },
59
60
  status: {
60
61
  enum: ['Waiting', 'Approved', 'Rejected'],
61
62
  type: 'string'
62
63
  },
64
+ entityPartyTypeCode: {
65
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
66
+ type: 'string'
67
+ },
63
68
  language: {
64
69
  type: 'string',
65
70
  nullable: true
@@ -77,7 +82,7 @@ export const $PagedResultDto_AffiliationCodeDto = {
77
82
  additionalProperties: false
78
83
  } as const;
79
84
 
80
- export const $PagedResultDto_AffiliationTypeDto = {
85
+ export const $PagedResultDto_AffiliationTypeDetailDto = {
81
86
  type: 'object',
82
87
  properties: {
83
88
  items: {
@@ -89,64 +94,21 @@ export const $PagedResultDto_AffiliationTypeDto = {
89
94
  type: 'string',
90
95
  format: 'uuid'
91
96
  },
92
- creationTime: {
93
- type: 'string',
94
- format: 'date-time'
95
- },
96
- creatorId: {
97
- type: 'string',
98
- format: 'uuid',
99
- nullable: true
100
- },
101
- lastModificationTime: {
102
- type: 'string',
103
- format: 'date-time',
104
- nullable: true
105
- },
106
- lastModifierId: {
107
- type: 'string',
108
- format: 'uuid',
109
- nullable: true
110
- },
111
- isDeleted: {
112
- type: 'boolean'
113
- },
114
- deleterId: {
115
- type: 'string',
116
- format: 'uuid',
117
- nullable: true
118
- },
119
- deletionTime: {
120
- type: 'string',
121
- format: 'date-time',
122
- nullable: true
123
- },
124
97
  name: {
125
98
  type: 'string',
126
99
  nullable: true
127
100
  },
128
- description: {
129
- type: 'string',
130
- nullable: true
131
- },
132
- partyId: {
133
- type: 'string',
134
- format: 'uuid'
135
- },
136
- approvedUserId: {
137
- type: 'string',
138
- format: 'uuid',
139
- nullable: true
101
+ codeId: {
102
+ type: 'integer',
103
+ format: 'int32'
140
104
  },
141
- approvedDate: {
105
+ codeName: {
142
106
  type: 'string',
143
- format: 'date-time',
144
107
  nullable: true
145
108
  },
146
- merchantId: {
147
- type: 'string',
148
- format: 'uuid',
149
- nullable: true
109
+ entityInformationTypeCode: {
110
+ enum: ['INDIVIDUAL', 'ORGANIZATION'],
111
+ type: 'string'
150
112
  }
151
113
  },
152
114
  additionalProperties: false
@@ -269,22 +231,23 @@ export const $PagedResultDto_IndividualProfileDto = {
269
231
  },
270
232
  roleId: {
271
233
  type: 'string',
272
- format: 'uuid'
234
+ format: 'uuid',
235
+ nullable: true
273
236
  },
274
237
  status: {
275
238
  enum: ['Waiting', 'Approved', 'Rejected'],
276
239
  type: 'string'
277
240
  },
241
+ entityPartyTypeCode: {
242
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
243
+ type: 'string'
244
+ },
278
245
  language: {
279
246
  type: 'string',
280
247
  nullable: true
281
248
  }
282
249
  },
283
250
  additionalProperties: false
284
- },
285
- affiliationParentTypeCode: {
286
- enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
287
- type: 'string'
288
251
  }
289
252
  },
290
253
  additionalProperties: false
@@ -426,22 +389,23 @@ export const $PagedResultDto_OrganizationProfileDto = {
426
389
  },
427
390
  roleId: {
428
391
  type: 'string',
429
- format: 'uuid'
392
+ format: 'uuid',
393
+ nullable: true
430
394
  },
431
395
  status: {
432
396
  enum: ['Waiting', 'Approved', 'Rejected'],
433
397
  type: 'string'
434
398
  },
399
+ entityPartyTypeCode: {
400
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
401
+ type: 'string'
402
+ },
435
403
  language: {
436
404
  type: 'string',
437
405
  nullable: true
438
406
  }
439
407
  },
440
408
  additionalProperties: false
441
- },
442
- affiliationParentTypeCode: {
443
- enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
444
- type: 'string'
445
409
  }
446
410
  },
447
411
  additionalProperties: false
@@ -608,36 +572,6 @@ export const $PagedResultDto_TaxOfficeProfileDto = {
608
572
  additionalProperties: false
609
573
  } as const;
610
574
 
611
- export const $PagedResultDto_UserDeviceNameDto = {
612
- type: 'object',
613
- properties: {
614
- items: {
615
- type: 'array',
616
- items: {
617
- required: ['id', 'name'],
618
- type: 'object',
619
- properties: {
620
- id: {
621
- type: 'string',
622
- format: 'uuid'
623
- },
624
- name: {
625
- minLength: 1,
626
- type: 'string'
627
- }
628
- },
629
- additionalProperties: false
630
- },
631
- nullable: true
632
- },
633
- totalCount: {
634
- type: 'integer',
635
- format: 'int64'
636
- }
637
- },
638
- additionalProperties: false
639
- } as const;
640
-
641
575
  export const $UniRefund_CRMService_AddressTypes_AddressTypeDto = {
642
576
  type: 'object',
643
577
  properties: {
@@ -702,12 +636,17 @@ export const $UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto = {
702
636
  },
703
637
  roleId: {
704
638
  type: 'string',
705
- format: 'uuid'
639
+ format: 'uuid',
640
+ nullable: true
706
641
  },
707
642
  status: {
708
643
  enum: ['Waiting', 'Approved', 'Rejected'],
709
644
  type: 'string'
710
645
  },
646
+ entityPartyTypeCode: {
647
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
648
+ type: 'string'
649
+ },
711
650
  language: {
712
651
  type: 'string',
713
652
  nullable: true
@@ -722,11 +661,12 @@ export const $UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus = {
722
661
  } as const;
723
662
 
724
663
  export const $UniRefund_CRMService_AffiliationCodes_CreateAffiliationCodeDto = {
664
+ required: ['entityPartyTypeCode', 'name', 'status'],
725
665
  type: 'object',
726
666
  properties: {
727
667
  name: {
728
- type: 'string',
729
- nullable: true
668
+ minLength: 1,
669
+ type: 'string'
730
670
  },
731
671
  description: {
732
672
  type: 'string',
@@ -734,11 +674,16 @@ export const $UniRefund_CRMService_AffiliationCodes_CreateAffiliationCodeDto = {
734
674
  },
735
675
  roleId: {
736
676
  type: 'string',
737
- format: 'uuid'
677
+ format: 'uuid',
678
+ nullable: true
738
679
  },
739
680
  status: {
740
681
  enum: ['Waiting', 'Approved', 'Rejected'],
741
682
  type: 'string'
683
+ },
684
+ entityPartyTypeCode: {
685
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
686
+ type: 'string'
742
687
  }
743
688
  },
744
689
  additionalProperties: false
@@ -761,11 +706,12 @@ export const $UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeT
761
706
  } as const;
762
707
 
763
708
  export const $UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
709
+ required: ['entityPartyTypeCode', 'name', 'status'],
764
710
  type: 'object',
765
711
  properties: {
766
712
  name: {
767
- type: 'string',
768
- nullable: true
713
+ minLength: 1,
714
+ type: 'string'
769
715
  },
770
716
  description: {
771
717
  type: 'string',
@@ -773,17 +719,50 @@ export const $UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
773
719
  },
774
720
  roleId: {
775
721
  type: 'string',
776
- format: 'uuid'
722
+ format: 'uuid',
723
+ nullable: true
777
724
  },
778
725
  status: {
779
726
  enum: ['Waiting', 'Approved', 'Rejected'],
780
727
  type: 'string'
728
+ },
729
+ entityPartyTypeCode: {
730
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
731
+ type: 'string'
732
+ }
733
+ },
734
+ additionalProperties: false
735
+ } as const;
736
+
737
+ export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto = {
738
+ type: 'object',
739
+ properties: {
740
+ id: {
741
+ type: 'string',
742
+ format: 'uuid'
743
+ },
744
+ name: {
745
+ type: 'string',
746
+ nullable: true
747
+ },
748
+ codeId: {
749
+ type: 'integer',
750
+ format: 'int32'
751
+ },
752
+ codeName: {
753
+ type: 'string',
754
+ nullable: true
755
+ },
756
+ entityInformationTypeCode: {
757
+ enum: ['INDIVIDUAL', 'ORGANIZATION'],
758
+ type: 'string'
781
759
  }
782
760
  },
783
761
  additionalProperties: false
784
762
  } as const;
785
763
 
786
764
  export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
765
+ required: ['affiliationCode', 'partyId'],
787
766
  type: 'object',
788
767
  properties: {
789
768
  id: {
@@ -822,14 +801,77 @@ export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
822
801
  format: 'date-time',
823
802
  nullable: true
824
803
  },
825
- name: {
826
- type: 'string',
827
- nullable: true
828
- },
829
804
  description: {
830
805
  type: 'string',
831
806
  nullable: true
832
807
  },
808
+ affiliationCode: {
809
+ type: 'object',
810
+ properties: {
811
+ id: {
812
+ type: 'integer',
813
+ format: 'int32'
814
+ },
815
+ creationTime: {
816
+ type: 'string',
817
+ format: 'date-time'
818
+ },
819
+ creatorId: {
820
+ type: 'string',
821
+ format: 'uuid',
822
+ nullable: true
823
+ },
824
+ lastModificationTime: {
825
+ type: 'string',
826
+ format: 'date-time',
827
+ nullable: true
828
+ },
829
+ lastModifierId: {
830
+ type: 'string',
831
+ format: 'uuid',
832
+ nullable: true
833
+ },
834
+ isDeleted: {
835
+ type: 'boolean'
836
+ },
837
+ deleterId: {
838
+ type: 'string',
839
+ format: 'uuid',
840
+ nullable: true
841
+ },
842
+ deletionTime: {
843
+ type: 'string',
844
+ format: 'date-time',
845
+ nullable: true
846
+ },
847
+ name: {
848
+ type: 'string',
849
+ nullable: true
850
+ },
851
+ description: {
852
+ type: 'string',
853
+ nullable: true
854
+ },
855
+ roleId: {
856
+ type: 'string',
857
+ format: 'uuid',
858
+ nullable: true
859
+ },
860
+ status: {
861
+ enum: ['Waiting', 'Approved', 'Rejected'],
862
+ type: 'string'
863
+ },
864
+ entityPartyTypeCode: {
865
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
866
+ type: 'string'
867
+ },
868
+ language: {
869
+ type: 'string',
870
+ nullable: true
871
+ }
872
+ },
873
+ additionalProperties: false
874
+ },
833
875
  partyId: {
834
876
  type: 'string',
835
877
  format: 'uuid'
@@ -843,18 +885,13 @@ export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
843
885
  type: 'string',
844
886
  format: 'date-time',
845
887
  nullable: true
846
- },
847
- merchantId: {
848
- type: 'string',
849
- format: 'uuid',
850
- nullable: true
851
888
  }
852
889
  },
853
890
  additionalProperties: false
854
891
  } as const;
855
892
 
856
893
  export const $UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
857
- required: ['affiliationCodeId', 'description', 'name'],
894
+ required: ['affiliationCodeId', 'entityInformationTypeCode', 'partyId'],
858
895
  type: 'object',
859
896
  properties: {
860
897
  extraProperties: {
@@ -863,15 +900,11 @@ export const $UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
863
900
  nullable: true,
864
901
  readOnly: true
865
902
  },
866
- name: {
867
- maxLength: 255,
868
- minLength: 0,
869
- type: 'string'
870
- },
871
903
  description: {
872
904
  maxLength: 255,
873
905
  minLength: 0,
874
- type: 'string'
906
+ type: 'string',
907
+ nullable: true
875
908
  },
876
909
  affiliationCodeId: {
877
910
  type: 'integer',
@@ -879,15 +912,18 @@ export const $UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
879
912
  },
880
913
  partyId: {
881
914
  type: 'string',
882
- format: 'uuid',
883
- nullable: true
915
+ format: 'uuid'
916
+ },
917
+ entityInformationTypeCode: {
918
+ enum: ['INDIVIDUAL', 'ORGANIZATION'],
919
+ type: 'string'
884
920
  }
885
921
  },
886
922
  additionalProperties: false
887
923
  } as const;
888
924
 
889
925
  export const $UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto = {
890
- required: ['affiliationTypeCode', 'description', 'name'],
926
+ required: ['affiliationCodeId', 'entityInformationTypeCode', 'partyId'],
891
927
  type: 'object',
892
928
  properties: {
893
929
  extraProperties: {
@@ -896,19 +932,11 @@ export const $UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto = {
896
932
  nullable: true,
897
933
  readOnly: true
898
934
  },
899
- name: {
935
+ description: {
900
936
  maxLength: 255,
901
937
  minLength: 0,
902
- type: 'string'
903
- },
904
- description: {
905
- maxLength: 255,
906
- minLength: 0,
907
- type: 'string'
908
- },
909
- affiliationTypeCode: {
910
- enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER', 'Franchise'],
911
- type: 'string'
938
+ type: 'string',
939
+ nullable: true
912
940
  },
913
941
  affiliationCodeId: {
914
942
  type: 'integer',
@@ -917,6 +945,10 @@ export const $UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto = {
917
945
  partyId: {
918
946
  type: 'string',
919
947
  format: 'uuid'
948
+ },
949
+ entityInformationTypeCode: {
950
+ enum: ['INDIVIDUAL', 'ORGANIZATION'],
951
+ type: 'string'
920
952
  }
921
953
  },
922
954
  additionalProperties: false
@@ -3956,11 +3988,6 @@ export const $UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeD
3956
3988
  additionalProperties: false
3957
3989
  } as const;
3958
3990
 
3959
- export const $UniRefund_CRMService_Enums_AffiliationTypeCode = {
3960
- enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER', 'Franchise'],
3961
- type: 'string'
3962
- } as const;
3963
-
3964
3991
  export const $UniRefund_CRMService_Enums_EmailTypeCode = {
3965
3992
  enum: ['WORK', 'PERSONAL'],
3966
3993
  type: 'string'
@@ -4889,22 +4916,23 @@ export const $UniRefund_CRMService_Individuals_IndividualProfileDto = {
4889
4916
  },
4890
4917
  roleId: {
4891
4918
  type: 'string',
4892
- format: 'uuid'
4919
+ format: 'uuid',
4920
+ nullable: true
4893
4921
  },
4894
4922
  status: {
4895
4923
  enum: ['Waiting', 'Approved', 'Rejected'],
4896
4924
  type: 'string'
4897
4925
  },
4926
+ entityPartyTypeCode: {
4927
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
4928
+ type: 'string'
4929
+ },
4898
4930
  language: {
4899
4931
  type: 'string',
4900
4932
  nullable: true
4901
4933
  }
4902
4934
  },
4903
4935
  additionalProperties: false
4904
- },
4905
- affiliationParentTypeCode: {
4906
- enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
4907
- type: 'string'
4908
4936
  }
4909
4937
  },
4910
4938
  additionalProperties: false
@@ -5762,320 +5790,76 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
5762
5790
  maxLength: 255,
5763
5791
  minLength: 0,
5764
5792
  type: 'string'
5765
- },
5766
- primaryFlag: {
5767
- type: 'boolean'
5768
- },
5769
- countryId: {
5770
- type: 'string',
5771
- format: 'uuid'
5772
- },
5773
- regionId: {
5774
- type: 'string',
5775
- format: 'uuid',
5776
- nullable: true
5777
- },
5778
- cityId: {
5779
- type: 'string',
5780
- format: 'uuid',
5781
- nullable: true
5782
- },
5783
- districtId: {
5784
- type: 'string',
5785
- format: 'uuid',
5786
- nullable: true
5787
- },
5788
- neighborhoodId: {
5789
- type: 'string',
5790
- format: 'uuid',
5791
- nullable: true
5792
- }
5793
- },
5794
- additionalProperties: false
5795
- },
5796
- nullable: true
5797
- },
5798
- emails: {
5799
- type: 'array',
5800
- items: {
5801
- required: ['emailAddress', 'primaryFlag', 'typeCode'],
5802
- type: 'object',
5803
- properties: {
5804
- extraProperties: {
5805
- type: 'object',
5806
- additionalProperties: {},
5807
- nullable: true,
5808
- readOnly: true
5809
- },
5810
- emailAddress: {
5811
- maxLength: 255,
5812
- minLength: 0,
5813
- type: 'string'
5814
- },
5815
- primaryFlag: {
5816
- type: 'boolean'
5817
- },
5818
- typeCode: {
5819
- enum: ['WORK', 'PERSONAL'],
5820
- type: 'string'
5821
- }
5822
- },
5823
- additionalProperties: false
5824
- },
5825
- nullable: true
5826
- }
5827
- },
5828
- additionalProperties: false
5829
- }
5830
- }
5831
- },
5832
- additionalProperties: false
5833
- },
5834
- nullable: true
5835
- }
5836
- },
5837
- additionalProperties: false
5838
- } as const;
5839
-
5840
- export const $UniRefund_CRMService_Merchants_CreateMerchantIndividualDto = {
5841
- required: ['affiliationCodeId'],
5842
- type: 'object',
5843
- properties: {
5844
- extraProperties: {
5845
- type: 'object',
5846
- additionalProperties: {},
5847
- nullable: true,
5848
- readOnly: true
5849
- },
5850
- name: {
5851
- required: ['firstName', 'lastName', 'mailingName', 'officialName', 'salutation', 'suffix'],
5852
- type: 'object',
5853
- properties: {
5854
- salutation: {
5855
- maxLength: 255,
5856
- minLength: 0,
5857
- type: 'string'
5858
- },
5859
- firstName: {
5860
- maxLength: 255,
5861
- minLength: 0,
5862
- type: 'string'
5863
- },
5864
- lastName: {
5865
- maxLength: 255,
5866
- minLength: 0,
5867
- type: 'string'
5868
- },
5869
- suffix: {
5870
- maxLength: 255,
5871
- minLength: 0,
5872
- type: 'string'
5873
- },
5874
- mailingName: {
5875
- maxLength: 255,
5876
- minLength: 0,
5877
- type: 'string'
5878
- },
5879
- officialName: {
5880
- maxLength: 255,
5881
- minLength: 0,
5882
- type: 'string'
5883
- }
5884
- },
5885
- additionalProperties: false
5886
- },
5887
- personalSummaries: {
5888
- type: 'array',
5889
- items: {
5890
- required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
5891
- type: 'object',
5892
- properties: {
5893
- extraProperties: {
5894
- type: 'object',
5895
- additionalProperties: {},
5896
- nullable: true,
5897
- readOnly: true
5898
- },
5899
- date: {
5900
- type: 'string',
5901
- format: 'date-time'
5902
- },
5903
- birthDate: {
5904
- type: 'string',
5905
- format: 'date-time'
5906
- },
5907
- ethnicity: {
5908
- maxLength: 255,
5909
- minLength: 0,
5910
- type: 'string'
5911
- },
5912
- maritalStatusCode: {
5913
- maxLength: 255,
5914
- minLength: 0,
5915
- type: 'string'
5916
- },
5917
- religiousAffiliationName: {
5918
- maxLength: 255,
5919
- minLength: 0,
5920
- type: 'string'
5921
- },
5922
- genderTypeCode: {
5923
- enum: ['MALE', 'FEMALE'],
5924
- type: 'string'
5925
- }
5926
- },
5927
- additionalProperties: false
5928
- },
5929
- nullable: true
5930
- },
5931
- contactInformations: {
5932
- type: 'array',
5933
- items: {
5934
- type: 'object',
5935
- properties: {
5936
- extraProperties: {
5937
- type: 'object',
5938
- additionalProperties: {},
5939
- nullable: true,
5940
- readOnly: true
5941
- },
5942
- telephones: {
5943
- type: 'array',
5944
- items: {
5945
- required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
5946
- type: 'object',
5947
- properties: {
5948
- extraProperties: {
5949
- type: 'object',
5950
- additionalProperties: {},
5951
- nullable: true,
5952
- readOnly: true
5953
- },
5954
- areaCode: {
5955
- maxLength: 255,
5956
- minLength: 0,
5957
- type: 'string'
5958
- },
5959
- localNumber: {
5960
- maxLength: 255,
5961
- minLength: 0,
5962
- type: 'string'
5963
- },
5964
- ituCountryCode: {
5965
- maxLength: 255,
5966
- minLength: 0,
5967
- type: 'string'
5968
- },
5969
- primaryFlag: {
5970
- type: 'boolean'
5971
- },
5972
- typeCode: {
5973
- enum: ['HOME', 'OFFICE', 'MOBILE', 'FAX'],
5974
- type: 'string'
5975
- }
5976
- },
5977
- additionalProperties: false
5978
- },
5979
- nullable: true
5980
- },
5981
- addresses: {
5982
- type: 'array',
5983
- items: {
5984
- required: ['addressLine', 'countryId', 'postalCode', 'type'],
5985
- type: 'object',
5986
- properties: {
5987
- extraProperties: {
5988
- type: 'object',
5989
- additionalProperties: {},
5990
- nullable: true,
5991
- readOnly: true
5992
- },
5993
- type: {
5994
- enum: ['Home', 'Office', 'Invoice', 'Contact'],
5995
- type: 'string'
5996
- },
5997
- addressLine: {
5998
- maxLength: 255,
5999
- minLength: 0,
6000
- type: 'string'
6001
- },
6002
- postalCode: {
6003
- maxLength: 255,
6004
- minLength: 0,
6005
- type: 'string'
6006
- },
6007
- primaryFlag: {
6008
- type: 'boolean'
6009
- },
6010
- countryId: {
6011
- type: 'string',
6012
- format: 'uuid'
6013
- },
6014
- regionId: {
6015
- type: 'string',
6016
- format: 'uuid',
6017
- nullable: true
6018
- },
6019
- cityId: {
6020
- type: 'string',
6021
- format: 'uuid',
6022
- nullable: true
6023
- },
6024
- districtId: {
6025
- type: 'string',
6026
- format: 'uuid',
5793
+ },
5794
+ primaryFlag: {
5795
+ type: 'boolean'
5796
+ },
5797
+ countryId: {
5798
+ type: 'string',
5799
+ format: 'uuid'
5800
+ },
5801
+ regionId: {
5802
+ type: 'string',
5803
+ format: 'uuid',
5804
+ nullable: true
5805
+ },
5806
+ cityId: {
5807
+ type: 'string',
5808
+ format: 'uuid',
5809
+ nullable: true
5810
+ },
5811
+ districtId: {
5812
+ type: 'string',
5813
+ format: 'uuid',
5814
+ nullable: true
5815
+ },
5816
+ neighborhoodId: {
5817
+ type: 'string',
5818
+ format: 'uuid',
5819
+ nullable: true
5820
+ }
5821
+ },
5822
+ additionalProperties: false
5823
+ },
6027
5824
  nullable: true
6028
5825
  },
6029
- neighborhoodId: {
6030
- type: 'string',
6031
- format: 'uuid',
5826
+ emails: {
5827
+ type: 'array',
5828
+ items: {
5829
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
5830
+ type: 'object',
5831
+ properties: {
5832
+ extraProperties: {
5833
+ type: 'object',
5834
+ additionalProperties: {},
5835
+ nullable: true,
5836
+ readOnly: true
5837
+ },
5838
+ emailAddress: {
5839
+ maxLength: 255,
5840
+ minLength: 0,
5841
+ type: 'string'
5842
+ },
5843
+ primaryFlag: {
5844
+ type: 'boolean'
5845
+ },
5846
+ typeCode: {
5847
+ enum: ['WORK', 'PERSONAL'],
5848
+ type: 'string'
5849
+ }
5850
+ },
5851
+ additionalProperties: false
5852
+ },
6032
5853
  nullable: true
6033
5854
  }
6034
5855
  },
6035
5856
  additionalProperties: false
6036
- },
6037
- nullable: true
6038
- },
6039
- emails: {
6040
- type: 'array',
6041
- items: {
6042
- required: ['emailAddress', 'primaryFlag', 'typeCode'],
6043
- type: 'object',
6044
- properties: {
6045
- extraProperties: {
6046
- type: 'object',
6047
- additionalProperties: {},
6048
- nullable: true,
6049
- readOnly: true
6050
- },
6051
- emailAddress: {
6052
- maxLength: 255,
6053
- minLength: 0,
6054
- type: 'string'
6055
- },
6056
- primaryFlag: {
6057
- type: 'boolean'
6058
- },
6059
- typeCode: {
6060
- enum: ['WORK', 'PERSONAL'],
6061
- type: 'string'
6062
- }
6063
- },
6064
- additionalProperties: false
6065
- },
6066
- nullable: true
5857
+ }
6067
5858
  }
6068
5859
  },
6069
5860
  additionalProperties: false
6070
5861
  },
6071
5862
  nullable: true
6072
- },
6073
- createAbpUserAccount: {
6074
- type: 'boolean'
6075
- },
6076
- affiliationCodeId: {
6077
- type: 'integer',
6078
- format: 'int32'
6079
5863
  }
6080
5864
  },
6081
5865
  additionalProperties: false
@@ -7296,6 +7080,7 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
7296
7080
  affiliations: {
7297
7081
  type: 'array',
7298
7082
  items: {
7083
+ required: ['affiliationCode', 'partyId'],
7299
7084
  type: 'object',
7300
7085
  properties: {
7301
7086
  id: {
@@ -7334,14 +7119,77 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
7334
7119
  format: 'date-time',
7335
7120
  nullable: true
7336
7121
  },
7337
- name: {
7338
- type: 'string',
7339
- nullable: true
7340
- },
7341
7122
  description: {
7342
7123
  type: 'string',
7343
7124
  nullable: true
7344
7125
  },
7126
+ affiliationCode: {
7127
+ type: 'object',
7128
+ properties: {
7129
+ id: {
7130
+ type: 'integer',
7131
+ format: 'int32'
7132
+ },
7133
+ creationTime: {
7134
+ type: 'string',
7135
+ format: 'date-time'
7136
+ },
7137
+ creatorId: {
7138
+ type: 'string',
7139
+ format: 'uuid',
7140
+ nullable: true
7141
+ },
7142
+ lastModificationTime: {
7143
+ type: 'string',
7144
+ format: 'date-time',
7145
+ nullable: true
7146
+ },
7147
+ lastModifierId: {
7148
+ type: 'string',
7149
+ format: 'uuid',
7150
+ nullable: true
7151
+ },
7152
+ isDeleted: {
7153
+ type: 'boolean'
7154
+ },
7155
+ deleterId: {
7156
+ type: 'string',
7157
+ format: 'uuid',
7158
+ nullable: true
7159
+ },
7160
+ deletionTime: {
7161
+ type: 'string',
7162
+ format: 'date-time',
7163
+ nullable: true
7164
+ },
7165
+ name: {
7166
+ type: 'string',
7167
+ nullable: true
7168
+ },
7169
+ description: {
7170
+ type: 'string',
7171
+ nullable: true
7172
+ },
7173
+ roleId: {
7174
+ type: 'string',
7175
+ format: 'uuid',
7176
+ nullable: true
7177
+ },
7178
+ status: {
7179
+ enum: ['Waiting', 'Approved', 'Rejected'],
7180
+ type: 'string'
7181
+ },
7182
+ entityPartyTypeCode: {
7183
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
7184
+ type: 'string'
7185
+ },
7186
+ language: {
7187
+ type: 'string',
7188
+ nullable: true
7189
+ }
7190
+ },
7191
+ additionalProperties: false
7192
+ },
7345
7193
  partyId: {
7346
7194
  type: 'string',
7347
7195
  format: 'uuid'
@@ -7355,11 +7203,6 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
7355
7203
  type: 'string',
7356
7204
  format: 'date-time',
7357
7205
  nullable: true
7358
- },
7359
- merchantId: {
7360
- type: 'string',
7361
- format: 'uuid',
7362
- nullable: true
7363
7206
  }
7364
7207
  },
7365
7208
  additionalProperties: false
@@ -8388,6 +8231,7 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
8388
8231
  affiliations: {
8389
8232
  type: 'array',
8390
8233
  items: {
8234
+ required: ['affiliationCode', 'partyId'],
8391
8235
  type: 'object',
8392
8236
  properties: {
8393
8237
  id: {
@@ -8426,14 +8270,77 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
8426
8270
  format: 'date-time',
8427
8271
  nullable: true
8428
8272
  },
8429
- name: {
8430
- type: 'string',
8431
- nullable: true
8432
- },
8433
8273
  description: {
8434
8274
  type: 'string',
8435
8275
  nullable: true
8436
8276
  },
8277
+ affiliationCode: {
8278
+ type: 'object',
8279
+ properties: {
8280
+ id: {
8281
+ type: 'integer',
8282
+ format: 'int32'
8283
+ },
8284
+ creationTime: {
8285
+ type: 'string',
8286
+ format: 'date-time'
8287
+ },
8288
+ creatorId: {
8289
+ type: 'string',
8290
+ format: 'uuid',
8291
+ nullable: true
8292
+ },
8293
+ lastModificationTime: {
8294
+ type: 'string',
8295
+ format: 'date-time',
8296
+ nullable: true
8297
+ },
8298
+ lastModifierId: {
8299
+ type: 'string',
8300
+ format: 'uuid',
8301
+ nullable: true
8302
+ },
8303
+ isDeleted: {
8304
+ type: 'boolean'
8305
+ },
8306
+ deleterId: {
8307
+ type: 'string',
8308
+ format: 'uuid',
8309
+ nullable: true
8310
+ },
8311
+ deletionTime: {
8312
+ type: 'string',
8313
+ format: 'date-time',
8314
+ nullable: true
8315
+ },
8316
+ name: {
8317
+ type: 'string',
8318
+ nullable: true
8319
+ },
8320
+ description: {
8321
+ type: 'string',
8322
+ nullable: true
8323
+ },
8324
+ roleId: {
8325
+ type: 'string',
8326
+ format: 'uuid',
8327
+ nullable: true
8328
+ },
8329
+ status: {
8330
+ enum: ['Waiting', 'Approved', 'Rejected'],
8331
+ type: 'string'
8332
+ },
8333
+ entityPartyTypeCode: {
8334
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
8335
+ type: 'string'
8336
+ },
8337
+ language: {
8338
+ type: 'string',
8339
+ nullable: true
8340
+ }
8341
+ },
8342
+ additionalProperties: false
8343
+ },
8437
8344
  partyId: {
8438
8345
  type: 'string',
8439
8346
  format: 'uuid'
@@ -8447,11 +8354,6 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
8447
8354
  type: 'string',
8448
8355
  format: 'date-time',
8449
8356
  nullable: true
8450
- },
8451
- merchantId: {
8452
- type: 'string',
8453
- format: 'uuid',
8454
- nullable: true
8455
8357
  }
8456
8358
  },
8457
8359
  additionalProperties: false
@@ -8719,7 +8621,7 @@ export const $UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegrati
8719
8621
  } as const;
8720
8622
 
8721
8623
  export const $UniRefund_CRMService_Merchants_SubIndividualDto = {
8722
- required: ['affiliationTypeCode', 'name'],
8624
+ required: ['name'],
8723
8625
  type: 'object',
8724
8626
  properties: {
8725
8627
  id: {
@@ -8730,10 +8632,6 @@ export const $UniRefund_CRMService_Merchants_SubIndividualDto = {
8730
8632
  minLength: 1,
8731
8633
  type: 'string'
8732
8634
  },
8733
- affiliationTypeCode: {
8734
- enum: ['COFOUNDER', 'PARTNER', 'ABPUSER', 'SUBCOMPANY', 'ACCOUNTMANAGER', 'Franchise'],
8735
- type: 'string'
8736
- },
8737
8635
  affiliationCode: {
8738
8636
  type: 'object',
8739
8637
  properties: {
@@ -8783,12 +8681,17 @@ export const $UniRefund_CRMService_Merchants_SubIndividualDto = {
8783
8681
  },
8784
8682
  roleId: {
8785
8683
  type: 'string',
8786
- format: 'uuid'
8684
+ format: 'uuid',
8685
+ nullable: true
8787
8686
  },
8788
8687
  status: {
8789
8688
  enum: ['Waiting', 'Approved', 'Rejected'],
8790
8689
  type: 'string'
8791
8690
  },
8691
+ entityPartyTypeCode: {
8692
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
8693
+ type: 'string'
8694
+ },
8792
8695
  language: {
8793
8696
  type: 'string',
8794
8697
  nullable: true
@@ -9582,22 +9485,23 @@ export const $UniRefund_CRMService_Organizations_OrganizationProfileDto = {
9582
9485
  },
9583
9486
  roleId: {
9584
9487
  type: 'string',
9585
- format: 'uuid'
9488
+ format: 'uuid',
9489
+ nullable: true
9586
9490
  },
9587
9491
  status: {
9588
9492
  enum: ['Waiting', 'Approved', 'Rejected'],
9589
9493
  type: 'string'
9590
9494
  },
9495
+ entityPartyTypeCode: {
9496
+ enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
9497
+ type: 'string'
9498
+ },
9591
9499
  language: {
9592
9500
  type: 'string',
9593
9501
  nullable: true
9594
9502
  }
9595
9503
  },
9596
9504
  additionalProperties: false
9597
- },
9598
- affiliationParentTypeCode: {
9599
- enum: ['CUSTOMS', 'MERCHANT', 'REFUNDPOINT', 'TAXFREE', 'TAXOFFICE'],
9600
- type: 'string'
9601
9505
  }
9602
9506
  },
9603
9507
  additionalProperties: false
@@ -11429,22 +11333,6 @@ export const $UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto
11429
11333
  additionalProperties: false
11430
11334
  } as const;
11431
11335
 
11432
- export const $UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
11433
- required: ['id', 'name'],
11434
- type: 'object',
11435
- properties: {
11436
- id: {
11437
- type: 'string',
11438
- format: 'uuid'
11439
- },
11440
- name: {
11441
- minLength: 1,
11442
- type: 'string'
11443
- }
11444
- },
11445
- additionalProperties: false
11446
- } as const;
11447
-
11448
11336
  export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
11449
11337
  required: ['entityInformationTypes'],
11450
11338
  type: 'object',