@ayasofyazilim/saas 0.0.115 → 0.0.117
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 +3 -3
- package/CRMService/schemas.gen.ts +137 -110
- package/CRMService/sdk.gen.ts +105 -1
- package/CRMService/types.gen.ts +107 -49
- package/package.json +1 -1
|
@@ -88,13 +88,17 @@ export const $PagedResultDto_AffiliationTypeDetailDto = {
|
|
|
88
88
|
items: {
|
|
89
89
|
type: 'array',
|
|
90
90
|
items: {
|
|
91
|
-
required: ['codeId', 'codeName', 'email', 'entityInformationTypeCode', 'name', 'telephone'],
|
|
91
|
+
required: ['codeId', 'codeName', 'email', 'entityInformationTypeCode', 'name', 'partyId', 'telephone'],
|
|
92
92
|
type: 'object',
|
|
93
93
|
properties: {
|
|
94
94
|
id: {
|
|
95
95
|
type: 'string',
|
|
96
96
|
format: 'uuid'
|
|
97
97
|
},
|
|
98
|
+
partyId: {
|
|
99
|
+
type: 'string',
|
|
100
|
+
format: 'uuid'
|
|
101
|
+
},
|
|
98
102
|
name: {
|
|
99
103
|
minLength: 1,
|
|
100
104
|
type: 'string'
|
|
@@ -111,8 +115,9 @@ export const $PagedResultDto_AffiliationTypeDetailDto = {
|
|
|
111
115
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
112
116
|
type: 'string'
|
|
113
117
|
},
|
|
114
|
-
|
|
115
|
-
type: '
|
|
118
|
+
abpUserId: {
|
|
119
|
+
type: 'string',
|
|
120
|
+
format: 'uuid',
|
|
116
121
|
nullable: true
|
|
117
122
|
},
|
|
118
123
|
email: {
|
|
@@ -768,13 +773,17 @@ export const $UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
|
|
|
768
773
|
} as const;
|
|
769
774
|
|
|
770
775
|
export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto = {
|
|
771
|
-
required: ['codeId', 'codeName', 'email', 'entityInformationTypeCode', 'name', 'telephone'],
|
|
776
|
+
required: ['codeId', 'codeName', 'email', 'entityInformationTypeCode', 'name', 'partyId', 'telephone'],
|
|
772
777
|
type: 'object',
|
|
773
778
|
properties: {
|
|
774
779
|
id: {
|
|
775
780
|
type: 'string',
|
|
776
781
|
format: 'uuid'
|
|
777
782
|
},
|
|
783
|
+
partyId: {
|
|
784
|
+
type: 'string',
|
|
785
|
+
format: 'uuid'
|
|
786
|
+
},
|
|
778
787
|
name: {
|
|
779
788
|
minLength: 1,
|
|
780
789
|
type: 'string'
|
|
@@ -791,8 +800,9 @@ export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto = {
|
|
|
791
800
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
792
801
|
type: 'string'
|
|
793
802
|
},
|
|
794
|
-
|
|
795
|
-
type: '
|
|
803
|
+
abpUserId: {
|
|
804
|
+
type: 'string',
|
|
805
|
+
format: 'uuid',
|
|
796
806
|
nullable: true
|
|
797
807
|
},
|
|
798
808
|
email: {
|
|
@@ -1333,7 +1343,7 @@ export const $UniRefund_CRMService_ContactInformationTypes_CreateContactInformat
|
|
|
1333
1343
|
addresses: {
|
|
1334
1344
|
type: 'array',
|
|
1335
1345
|
items: {
|
|
1336
|
-
required: ['addressLine', 'countryId', '
|
|
1346
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
1337
1347
|
type: 'object',
|
|
1338
1348
|
properties: {
|
|
1339
1349
|
extraProperties: {
|
|
@@ -1352,9 +1362,8 @@ export const $UniRefund_CRMService_ContactInformationTypes_CreateContactInformat
|
|
|
1352
1362
|
type: 'string'
|
|
1353
1363
|
},
|
|
1354
1364
|
postalCode: {
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
type: 'string'
|
|
1365
|
+
type: 'string',
|
|
1366
|
+
nullable: true
|
|
1358
1367
|
},
|
|
1359
1368
|
primaryFlag: {
|
|
1360
1369
|
type: 'boolean'
|
|
@@ -1512,7 +1521,7 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
|
1512
1521
|
addresses: {
|
|
1513
1522
|
type: 'array',
|
|
1514
1523
|
items: {
|
|
1515
|
-
required: ['addressLine', 'countryId', '
|
|
1524
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
1516
1525
|
type: 'object',
|
|
1517
1526
|
properties: {
|
|
1518
1527
|
extraProperties: {
|
|
@@ -1531,9 +1540,8 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
|
1531
1540
|
type: 'string'
|
|
1532
1541
|
},
|
|
1533
1542
|
postalCode: {
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
type: 'string'
|
|
1543
|
+
type: 'string',
|
|
1544
|
+
nullable: true
|
|
1537
1545
|
},
|
|
1538
1546
|
primaryFlag: {
|
|
1539
1547
|
type: 'boolean'
|
|
@@ -1703,7 +1711,7 @@ export const $UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDt
|
|
|
1703
1711
|
addresses: {
|
|
1704
1712
|
type: 'array',
|
|
1705
1713
|
items: {
|
|
1706
|
-
required: ['addressLine', 'countryId', '
|
|
1714
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
1707
1715
|
type: 'object',
|
|
1708
1716
|
properties: {
|
|
1709
1717
|
extraProperties: {
|
|
@@ -1722,9 +1730,8 @@ export const $UniRefund_CRMService_Customss_CreateCustomsEntityInformationTypeDt
|
|
|
1722
1730
|
type: 'string'
|
|
1723
1731
|
},
|
|
1724
1732
|
postalCode: {
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
type: 'string'
|
|
1733
|
+
type: 'string',
|
|
1734
|
+
nullable: true
|
|
1728
1735
|
},
|
|
1729
1736
|
primaryFlag: {
|
|
1730
1737
|
type: 'boolean'
|
|
@@ -1869,7 +1876,7 @@ export const $UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
|
|
|
1869
1876
|
addresses: {
|
|
1870
1877
|
type: 'array',
|
|
1871
1878
|
items: {
|
|
1872
|
-
required: ['addressLine', 'countryId', '
|
|
1879
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
1873
1880
|
type: 'object',
|
|
1874
1881
|
properties: {
|
|
1875
1882
|
extraProperties: {
|
|
@@ -1888,9 +1895,8 @@ export const $UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
|
|
|
1888
1895
|
type: 'string'
|
|
1889
1896
|
},
|
|
1890
1897
|
postalCode: {
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
type: 'string'
|
|
1898
|
+
type: 'string',
|
|
1899
|
+
nullable: true
|
|
1894
1900
|
},
|
|
1895
1901
|
primaryFlag: {
|
|
1896
1902
|
type: 'boolean'
|
|
@@ -4170,7 +4176,7 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
|
|
|
4170
4176
|
addresses: {
|
|
4171
4177
|
type: 'array',
|
|
4172
4178
|
items: {
|
|
4173
|
-
required: ['addressLine', 'countryId', '
|
|
4179
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
4174
4180
|
type: 'object',
|
|
4175
4181
|
properties: {
|
|
4176
4182
|
extraProperties: {
|
|
@@ -4189,9 +4195,8 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
|
|
|
4189
4195
|
type: 'string'
|
|
4190
4196
|
},
|
|
4191
4197
|
postalCode: {
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
type: 'string'
|
|
4198
|
+
type: 'string',
|
|
4199
|
+
nullable: true
|
|
4195
4200
|
},
|
|
4196
4201
|
primaryFlag: {
|
|
4197
4202
|
type: 'boolean'
|
|
@@ -5644,7 +5649,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5644
5649
|
addresses: {
|
|
5645
5650
|
type: 'array',
|
|
5646
5651
|
items: {
|
|
5647
|
-
required: ['addressLine', 'countryId', '
|
|
5652
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
5648
5653
|
type: 'object',
|
|
5649
5654
|
properties: {
|
|
5650
5655
|
extraProperties: {
|
|
@@ -5663,9 +5668,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5663
5668
|
type: 'string'
|
|
5664
5669
|
},
|
|
5665
5670
|
postalCode: {
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
type: 'string'
|
|
5671
|
+
type: 'string',
|
|
5672
|
+
nullable: true
|
|
5669
5673
|
},
|
|
5670
5674
|
primaryFlag: {
|
|
5671
5675
|
type: 'boolean'
|
|
@@ -5744,7 +5748,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5744
5748
|
organizations: {
|
|
5745
5749
|
type: 'array',
|
|
5746
5750
|
items: {
|
|
5747
|
-
required: ['contactInformations', '
|
|
5751
|
+
required: ['contactInformations', 'name'],
|
|
5748
5752
|
type: 'object',
|
|
5749
5753
|
properties: {
|
|
5750
5754
|
extraProperties: {
|
|
@@ -5759,9 +5763,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5759
5763
|
type: 'string'
|
|
5760
5764
|
},
|
|
5761
5765
|
legalStatusCode: {
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
type: 'string'
|
|
5766
|
+
type: 'string',
|
|
5767
|
+
nullable: true
|
|
5765
5768
|
},
|
|
5766
5769
|
contactInformations: {
|
|
5767
5770
|
type: 'array',
|
|
@@ -5816,7 +5819,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5816
5819
|
addresses: {
|
|
5817
5820
|
type: 'array',
|
|
5818
5821
|
items: {
|
|
5819
|
-
required: ['addressLine', 'countryId', '
|
|
5822
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
5820
5823
|
type: 'object',
|
|
5821
5824
|
properties: {
|
|
5822
5825
|
extraProperties: {
|
|
@@ -5835,9 +5838,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5835
5838
|
type: 'string'
|
|
5836
5839
|
},
|
|
5837
5840
|
postalCode: {
|
|
5838
|
-
|
|
5839
|
-
|
|
5840
|
-
type: 'string'
|
|
5841
|
+
type: 'string',
|
|
5842
|
+
nullable: true
|
|
5841
5843
|
},
|
|
5842
5844
|
primaryFlag: {
|
|
5843
5845
|
type: 'boolean'
|
|
@@ -6071,7 +6073,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6071
6073
|
addresses: {
|
|
6072
6074
|
type: 'array',
|
|
6073
6075
|
items: {
|
|
6074
|
-
required: ['addressLine', 'countryId', '
|
|
6076
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
6075
6077
|
type: 'object',
|
|
6076
6078
|
properties: {
|
|
6077
6079
|
extraProperties: {
|
|
@@ -6090,9 +6092,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6090
6092
|
type: 'string'
|
|
6091
6093
|
},
|
|
6092
6094
|
postalCode: {
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
type: 'string'
|
|
6095
|
+
type: 'string',
|
|
6096
|
+
nullable: true
|
|
6096
6097
|
},
|
|
6097
6098
|
primaryFlag: {
|
|
6098
6099
|
type: 'boolean'
|
|
@@ -6171,7 +6172,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6171
6172
|
organizations: {
|
|
6172
6173
|
type: 'array',
|
|
6173
6174
|
items: {
|
|
6174
|
-
required: ['contactInformations', '
|
|
6175
|
+
required: ['contactInformations', 'name'],
|
|
6175
6176
|
type: 'object',
|
|
6176
6177
|
properties: {
|
|
6177
6178
|
extraProperties: {
|
|
@@ -6186,9 +6187,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6186
6187
|
type: 'string'
|
|
6187
6188
|
},
|
|
6188
6189
|
legalStatusCode: {
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
type: 'string'
|
|
6190
|
+
type: 'string',
|
|
6191
|
+
nullable: true
|
|
6192
6192
|
},
|
|
6193
6193
|
contactInformations: {
|
|
6194
6194
|
type: 'array',
|
|
@@ -6243,7 +6243,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6243
6243
|
addresses: {
|
|
6244
6244
|
type: 'array',
|
|
6245
6245
|
items: {
|
|
6246
|
-
required: ['addressLine', 'countryId', '
|
|
6246
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
6247
6247
|
type: 'object',
|
|
6248
6248
|
properties: {
|
|
6249
6249
|
extraProperties: {
|
|
@@ -6262,9 +6262,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6262
6262
|
type: 'string'
|
|
6263
6263
|
},
|
|
6264
6264
|
postalCode: {
|
|
6265
|
-
|
|
6266
|
-
|
|
6267
|
-
type: 'string'
|
|
6265
|
+
type: 'string',
|
|
6266
|
+
nullable: true
|
|
6268
6267
|
},
|
|
6269
6268
|
primaryFlag: {
|
|
6270
6269
|
type: 'boolean'
|
|
@@ -6341,7 +6340,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
6341
6340
|
} as const;
|
|
6342
6341
|
|
|
6343
6342
|
export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
6344
|
-
required: ['contactInformations', '
|
|
6343
|
+
required: ['contactInformations', 'name'],
|
|
6345
6344
|
type: 'object',
|
|
6346
6345
|
properties: {
|
|
6347
6346
|
extraProperties: {
|
|
@@ -6356,9 +6355,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
6356
6355
|
type: 'string'
|
|
6357
6356
|
},
|
|
6358
6357
|
legalStatusCode: {
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
type: 'string'
|
|
6358
|
+
type: 'string',
|
|
6359
|
+
nullable: true
|
|
6362
6360
|
},
|
|
6363
6361
|
contactInformations: {
|
|
6364
6362
|
type: 'array',
|
|
@@ -6413,7 +6411,7 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
6413
6411
|
addresses: {
|
|
6414
6412
|
type: 'array',
|
|
6415
6413
|
items: {
|
|
6416
|
-
required: ['addressLine', 'countryId', '
|
|
6414
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
6417
6415
|
type: 'object',
|
|
6418
6416
|
properties: {
|
|
6419
6417
|
extraProperties: {
|
|
@@ -6432,9 +6430,8 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
6432
6430
|
type: 'string'
|
|
6433
6431
|
},
|
|
6434
6432
|
postalCode: {
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
type: 'string'
|
|
6433
|
+
type: 'string',
|
|
6434
|
+
nullable: true
|
|
6438
6435
|
},
|
|
6439
6436
|
primaryFlag: {
|
|
6440
6437
|
type: 'boolean'
|
|
@@ -7708,8 +7705,7 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
7708
7705
|
},
|
|
7709
7706
|
vatId: {
|
|
7710
7707
|
type: 'string',
|
|
7711
|
-
format: 'uuid'
|
|
7712
|
-
nullable: true
|
|
7708
|
+
format: 'uuid'
|
|
7713
7709
|
},
|
|
7714
7710
|
vatPercent: {
|
|
7715
7711
|
type: 'integer',
|
|
@@ -9300,7 +9296,7 @@ export const $UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
|
|
|
9300
9296
|
} as const;
|
|
9301
9297
|
|
|
9302
9298
|
export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
9303
|
-
required: ['
|
|
9299
|
+
required: ['name'],
|
|
9304
9300
|
type: 'object',
|
|
9305
9301
|
properties: {
|
|
9306
9302
|
extraProperties: {
|
|
@@ -9315,9 +9311,8 @@ export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
9315
9311
|
type: 'string'
|
|
9316
9312
|
},
|
|
9317
9313
|
legalStatusCode: {
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
type: 'string'
|
|
9314
|
+
type: 'string',
|
|
9315
|
+
nullable: true
|
|
9321
9316
|
},
|
|
9322
9317
|
contactInformations: {
|
|
9323
9318
|
type: 'array',
|
|
@@ -9372,7 +9367,7 @@ export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
9372
9367
|
addresses: {
|
|
9373
9368
|
type: 'array',
|
|
9374
9369
|
items: {
|
|
9375
|
-
required: ['addressLine', 'countryId', '
|
|
9370
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
9376
9371
|
type: 'object',
|
|
9377
9372
|
properties: {
|
|
9378
9373
|
extraProperties: {
|
|
@@ -9391,9 +9386,8 @@ export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
9391
9386
|
type: 'string'
|
|
9392
9387
|
},
|
|
9393
9388
|
postalCode: {
|
|
9394
|
-
|
|
9395
|
-
|
|
9396
|
-
type: 'string'
|
|
9389
|
+
type: 'string',
|
|
9390
|
+
nullable: true
|
|
9397
9391
|
},
|
|
9398
9392
|
primaryFlag: {
|
|
9399
9393
|
type: 'boolean'
|
|
@@ -10184,7 +10178,7 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
|
10184
10178
|
addresses: {
|
|
10185
10179
|
type: 'array',
|
|
10186
10180
|
items: {
|
|
10187
|
-
required: ['addressLine', 'countryId', '
|
|
10181
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
10188
10182
|
type: 'object',
|
|
10189
10183
|
properties: {
|
|
10190
10184
|
extraProperties: {
|
|
@@ -10203,9 +10197,8 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
|
10203
10197
|
type: 'string'
|
|
10204
10198
|
},
|
|
10205
10199
|
postalCode: {
|
|
10206
|
-
|
|
10207
|
-
|
|
10208
|
-
type: 'string'
|
|
10200
|
+
type: 'string',
|
|
10201
|
+
nullable: true
|
|
10209
10202
|
},
|
|
10210
10203
|
primaryFlag: {
|
|
10211
10204
|
type: 'boolean'
|
|
@@ -10359,7 +10352,7 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformati
|
|
|
10359
10352
|
addresses: {
|
|
10360
10353
|
type: 'array',
|
|
10361
10354
|
items: {
|
|
10362
|
-
required: ['addressLine', 'countryId', '
|
|
10355
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
10363
10356
|
type: 'object',
|
|
10364
10357
|
properties: {
|
|
10365
10358
|
extraProperties: {
|
|
@@ -10378,9 +10371,8 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformati
|
|
|
10378
10371
|
type: 'string'
|
|
10379
10372
|
},
|
|
10380
10373
|
postalCode: {
|
|
10381
|
-
|
|
10382
|
-
|
|
10383
|
-
type: 'string'
|
|
10374
|
+
type: 'string',
|
|
10375
|
+
nullable: true
|
|
10384
10376
|
},
|
|
10385
10377
|
primaryFlag: {
|
|
10386
10378
|
type: 'boolean'
|
|
@@ -10518,7 +10510,7 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto
|
|
|
10518
10510
|
addresses: {
|
|
10519
10511
|
type: 'array',
|
|
10520
10512
|
items: {
|
|
10521
|
-
required: ['addressLine', 'countryId', '
|
|
10513
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
10522
10514
|
type: 'object',
|
|
10523
10515
|
properties: {
|
|
10524
10516
|
extraProperties: {
|
|
@@ -10537,9 +10529,8 @@ export const $UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto
|
|
|
10537
10529
|
type: 'string'
|
|
10538
10530
|
},
|
|
10539
10531
|
postalCode: {
|
|
10540
|
-
|
|
10541
|
-
|
|
10542
|
-
type: 'string'
|
|
10532
|
+
type: 'string',
|
|
10533
|
+
nullable: true
|
|
10543
10534
|
},
|
|
10544
10535
|
primaryFlag: {
|
|
10545
10536
|
type: 'boolean'
|
|
@@ -11793,7 +11784,7 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
11793
11784
|
addresses: {
|
|
11794
11785
|
type: 'array',
|
|
11795
11786
|
items: {
|
|
11796
|
-
required: ['addressLine', 'countryId', '
|
|
11787
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
11797
11788
|
type: 'object',
|
|
11798
11789
|
properties: {
|
|
11799
11790
|
extraProperties: {
|
|
@@ -11812,9 +11803,8 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
11812
11803
|
type: 'string'
|
|
11813
11804
|
},
|
|
11814
11805
|
postalCode: {
|
|
11815
|
-
|
|
11816
|
-
|
|
11817
|
-
type: 'string'
|
|
11806
|
+
type: 'string',
|
|
11807
|
+
nullable: true
|
|
11818
11808
|
},
|
|
11819
11809
|
primaryFlag: {
|
|
11820
11810
|
type: 'boolean'
|
|
@@ -11989,7 +11979,7 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDt
|
|
|
11989
11979
|
addresses: {
|
|
11990
11980
|
type: 'array',
|
|
11991
11981
|
items: {
|
|
11992
|
-
required: ['addressLine', 'countryId', '
|
|
11982
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
11993
11983
|
type: 'object',
|
|
11994
11984
|
properties: {
|
|
11995
11985
|
extraProperties: {
|
|
@@ -12008,9 +11998,8 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDt
|
|
|
12008
11998
|
type: 'string'
|
|
12009
11999
|
},
|
|
12010
12000
|
postalCode: {
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
type: 'string'
|
|
12001
|
+
type: 'string',
|
|
12002
|
+
nullable: true
|
|
12014
12003
|
},
|
|
12015
12004
|
primaryFlag: {
|
|
12016
12005
|
type: 'boolean'
|
|
@@ -12160,7 +12149,7 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
|
12160
12149
|
addresses: {
|
|
12161
12150
|
type: 'array',
|
|
12162
12151
|
items: {
|
|
12163
|
-
required: ['addressLine', 'countryId', '
|
|
12152
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
12164
12153
|
type: 'object',
|
|
12165
12154
|
properties: {
|
|
12166
12155
|
extraProperties: {
|
|
@@ -12179,9 +12168,8 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
|
12179
12168
|
type: 'string'
|
|
12180
12169
|
},
|
|
12181
12170
|
postalCode: {
|
|
12182
|
-
|
|
12183
|
-
|
|
12184
|
-
type: 'string'
|
|
12171
|
+
type: 'string',
|
|
12172
|
+
nullable: true
|
|
12185
12173
|
},
|
|
12186
12174
|
primaryFlag: {
|
|
12187
12175
|
type: 'boolean'
|
|
@@ -13333,7 +13321,7 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
|
13333
13321
|
addresses: {
|
|
13334
13322
|
type: 'array',
|
|
13335
13323
|
items: {
|
|
13336
|
-
required: ['addressLine', 'countryId', '
|
|
13324
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
13337
13325
|
type: 'object',
|
|
13338
13326
|
properties: {
|
|
13339
13327
|
extraProperties: {
|
|
@@ -13352,9 +13340,8 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
|
13352
13340
|
type: 'string'
|
|
13353
13341
|
},
|
|
13354
13342
|
postalCode: {
|
|
13355
|
-
|
|
13356
|
-
|
|
13357
|
-
type: 'string'
|
|
13343
|
+
type: 'string',
|
|
13344
|
+
nullable: true
|
|
13358
13345
|
},
|
|
13359
13346
|
primaryFlag: {
|
|
13360
13347
|
type: 'boolean'
|
|
@@ -13524,7 +13511,7 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTy
|
|
|
13524
13511
|
addresses: {
|
|
13525
13512
|
type: 'array',
|
|
13526
13513
|
items: {
|
|
13527
|
-
required: ['addressLine', 'countryId', '
|
|
13514
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
13528
13515
|
type: 'object',
|
|
13529
13516
|
properties: {
|
|
13530
13517
|
extraProperties: {
|
|
@@ -13543,9 +13530,8 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeEntityInformationTy
|
|
|
13543
13530
|
type: 'string'
|
|
13544
13531
|
},
|
|
13545
13532
|
postalCode: {
|
|
13546
|
-
|
|
13547
|
-
|
|
13548
|
-
type: 'string'
|
|
13533
|
+
type: 'string',
|
|
13534
|
+
nullable: true
|
|
13549
13535
|
},
|
|
13550
13536
|
primaryFlag: {
|
|
13551
13537
|
type: 'boolean'
|
|
@@ -13690,7 +13676,7 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
|
|
|
13690
13676
|
addresses: {
|
|
13691
13677
|
type: 'array',
|
|
13692
13678
|
items: {
|
|
13693
|
-
required: ['addressLine', 'countryId', '
|
|
13679
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
13694
13680
|
type: 'object',
|
|
13695
13681
|
properties: {
|
|
13696
13682
|
extraProperties: {
|
|
@@ -13709,9 +13695,8 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
|
|
|
13709
13695
|
type: 'string'
|
|
13710
13696
|
},
|
|
13711
13697
|
postalCode: {
|
|
13712
|
-
|
|
13713
|
-
|
|
13714
|
-
type: 'string'
|
|
13698
|
+
type: 'string',
|
|
13699
|
+
nullable: true
|
|
13715
13700
|
},
|
|
13716
13701
|
primaryFlag: {
|
|
13717
13702
|
type: 'boolean'
|
|
@@ -14930,7 +14915,7 @@ export const $UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
|
|
|
14930
14915
|
} as const;
|
|
14931
14916
|
|
|
14932
14917
|
export const $UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto = {
|
|
14933
|
-
required: ['addressLine', 'countryId', '
|
|
14918
|
+
required: ['addressLine', 'countryId', 'type'],
|
|
14934
14919
|
type: 'object',
|
|
14935
14920
|
properties: {
|
|
14936
14921
|
extraProperties: {
|
|
@@ -14949,9 +14934,8 @@ export const $UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCrea
|
|
|
14949
14934
|
type: 'string'
|
|
14950
14935
|
},
|
|
14951
14936
|
postalCode: {
|
|
14952
|
-
|
|
14953
|
-
|
|
14954
|
-
type: 'string'
|
|
14937
|
+
type: 'string',
|
|
14938
|
+
nullable: true
|
|
14955
14939
|
},
|
|
14956
14940
|
primaryFlag: {
|
|
14957
14941
|
type: 'boolean'
|
|
@@ -15132,12 +15116,56 @@ export const $UniRefund_LocationService_Enums_AddressType = {
|
|
|
15132
15116
|
type: 'string'
|
|
15133
15117
|
} as const;
|
|
15134
15118
|
|
|
15119
|
+
export const $UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantBaseDto = {
|
|
15120
|
+
required: ['productGroupId'],
|
|
15121
|
+
type: 'object',
|
|
15122
|
+
properties: {
|
|
15123
|
+
productGroupId: {
|
|
15124
|
+
type: 'string',
|
|
15125
|
+
format: 'uuid'
|
|
15126
|
+
},
|
|
15127
|
+
isDefault: {
|
|
15128
|
+
type: 'boolean'
|
|
15129
|
+
}
|
|
15130
|
+
},
|
|
15131
|
+
additionalProperties: false
|
|
15132
|
+
} as const;
|
|
15133
|
+
|
|
15135
15134
|
export const $UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
|
|
15135
|
+
required: ['productGroupId'],
|
|
15136
15136
|
type: 'object',
|
|
15137
15137
|
properties: {
|
|
15138
|
+
productGroupId: {
|
|
15139
|
+
type: 'string',
|
|
15140
|
+
format: 'uuid'
|
|
15141
|
+
},
|
|
15142
|
+
isDefault: {
|
|
15143
|
+
type: 'boolean'
|
|
15144
|
+
},
|
|
15138
15145
|
merchantId: {
|
|
15139
15146
|
type: 'string',
|
|
15140
15147
|
format: 'uuid'
|
|
15148
|
+
}
|
|
15149
|
+
},
|
|
15150
|
+
additionalProperties: false
|
|
15151
|
+
} as const;
|
|
15152
|
+
|
|
15153
|
+
export const $UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantRelationDto = {
|
|
15154
|
+
required: ['isActive', 'isAssign', 'isDefault', 'productGroupId', 'productGroupName'],
|
|
15155
|
+
type: 'object',
|
|
15156
|
+
properties: {
|
|
15157
|
+
productGroupName: {
|
|
15158
|
+
minLength: 1,
|
|
15159
|
+
type: 'string'
|
|
15160
|
+
},
|
|
15161
|
+
isDefault: {
|
|
15162
|
+
type: 'boolean'
|
|
15163
|
+
},
|
|
15164
|
+
isActive: {
|
|
15165
|
+
type: 'boolean'
|
|
15166
|
+
},
|
|
15167
|
+
isAssign: {
|
|
15168
|
+
type: 'boolean'
|
|
15141
15169
|
},
|
|
15142
15170
|
productGroupId: {
|
|
15143
15171
|
type: 'string',
|
|
@@ -15178,8 +15206,7 @@ export const $UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
15178
15206
|
},
|
|
15179
15207
|
vatId: {
|
|
15180
15208
|
type: 'string',
|
|
15181
|
-
format: 'uuid'
|
|
15182
|
-
nullable: true
|
|
15209
|
+
format: 'uuid'
|
|
15183
15210
|
},
|
|
15184
15211
|
vatPercent: {
|
|
15185
15212
|
type: 'integer',
|