@ayasofyazilim/saas 0.0.128 → 0.0.130

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.
@@ -606,6 +606,10 @@ export const $PagedResultDto_TaxOfficeProfileDto = {
606
606
  taxpayerId: {
607
607
  type: 'string',
608
608
  nullable: true
609
+ },
610
+ typeCode: {
611
+ enum: ['HEADQUARTER', 'TAXOFFICE'],
612
+ type: 'string'
609
613
  }
610
614
  },
611
615
  additionalProperties: false
@@ -1439,9 +1443,30 @@ export const $UniRefund_CRMService_ContactInformationTypes_CreateContactInformat
1439
1443
  } as const;
1440
1444
 
1441
1445
  export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
1442
- required: ['entityInformationTypes'],
1446
+ required: ['entityInformationTypes', 'typeCode'],
1443
1447
  type: 'object',
1444
1448
  properties: {
1449
+ parentId: {
1450
+ type: 'string',
1451
+ format: 'uuid',
1452
+ nullable: true
1453
+ },
1454
+ taxpayerId: {
1455
+ maxLength: 255,
1456
+ minLength: 0,
1457
+ type: 'string',
1458
+ nullable: true
1459
+ },
1460
+ typeCode: {
1461
+ enum: ['HEADQUARTER', 'CUSTOMS'],
1462
+ type: 'string'
1463
+ },
1464
+ gateNumber: {
1465
+ maxLength: 15,
1466
+ minLength: 0,
1467
+ type: 'string',
1468
+ nullable: true
1469
+ },
1445
1470
  entityInformationTypes: {
1446
1471
  type: 'array',
1447
1472
  items: {
@@ -1619,21 +1644,6 @@ export const $UniRefund_CRMService_Customss_CreateCustomsDto = {
1619
1644
  },
1620
1645
  additionalProperties: false
1621
1646
  }
1622
- },
1623
- parentId: {
1624
- type: 'string',
1625
- format: 'uuid',
1626
- nullable: true
1627
- },
1628
- taxpayerId: {
1629
- maxLength: 255,
1630
- minLength: 0,
1631
- type: 'string',
1632
- nullable: true
1633
- },
1634
- typeCode: {
1635
- enum: ['HEADQUARTER', 'CUSTOMS'],
1636
- type: 'string'
1637
1647
  }
1638
1648
  },
1639
1649
  additionalProperties: false
@@ -2028,6 +2038,10 @@ export const $UniRefund_CRMService_Customss_CustomsDto = {
2028
2038
  enum: ['HEADQUARTER', 'CUSTOMS'],
2029
2039
  type: 'string'
2030
2040
  },
2041
+ gateNumber: {
2042
+ type: 'string',
2043
+ nullable: true
2044
+ },
2031
2045
  entityInformations: {
2032
2046
  type: 'array',
2033
2047
  items: {
@@ -2526,11 +2540,13 @@ export const $UniRefund_CRMService_Customss_CustomsDto = {
2526
2540
  },
2527
2541
  date: {
2528
2542
  type: 'string',
2529
- format: 'date-time'
2543
+ format: 'date-time',
2544
+ nullable: true
2530
2545
  },
2531
2546
  birthDate: {
2532
2547
  type: 'string',
2533
- format: 'date-time'
2548
+ format: 'date-time',
2549
+ nullable: true
2534
2550
  },
2535
2551
  ethnicity: {
2536
2552
  type: 'string',
@@ -2996,6 +3012,12 @@ export const $UniRefund_CRMService_Customss_UpdateCustomsDto = {
2996
3012
  typeCode: {
2997
3013
  enum: ['HEADQUARTER', 'CUSTOMS'],
2998
3014
  type: 'string'
3015
+ },
3016
+ gateNumber: {
3017
+ maxLength: 15,
3018
+ minLength: 0,
3019
+ type: 'string',
3020
+ nullable: true
2999
3021
  }
3000
3022
  },
3001
3023
  additionalProperties: false
@@ -3625,11 +3647,13 @@ export const $UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeD
3625
3647
  },
3626
3648
  date: {
3627
3649
  type: 'string',
3628
- format: 'date-time'
3650
+ format: 'date-time',
3651
+ nullable: true
3629
3652
  },
3630
3653
  birthDate: {
3631
3654
  type: 'string',
3632
- format: 'date-time'
3655
+ format: 'date-time',
3656
+ nullable: true
3633
3657
  },
3634
3658
  ethnicity: {
3635
3659
  type: 'string',
@@ -4082,13 +4106,14 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
4082
4106
  readOnly: true
4083
4107
  },
4084
4108
  name: {
4085
- required: ['firstName', 'lastName', 'mailingName', 'officialName', 'salutation', 'suffix'],
4109
+ required: ['firstName', 'lastName'],
4086
4110
  type: 'object',
4087
4111
  properties: {
4088
4112
  salutation: {
4089
4113
  maxLength: 255,
4090
4114
  minLength: 0,
4091
- type: 'string'
4115
+ type: 'string',
4116
+ nullable: true
4092
4117
  },
4093
4118
  firstName: {
4094
4119
  maxLength: 255,
@@ -4103,17 +4128,20 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
4103
4128
  suffix: {
4104
4129
  maxLength: 255,
4105
4130
  minLength: 0,
4106
- type: 'string'
4131
+ type: 'string',
4132
+ nullable: true
4107
4133
  },
4108
4134
  mailingName: {
4109
4135
  maxLength: 255,
4110
4136
  minLength: 0,
4111
- type: 'string'
4137
+ type: 'string',
4138
+ nullable: true
4112
4139
  },
4113
4140
  officialName: {
4114
4141
  maxLength: 255,
4115
4142
  minLength: 0,
4116
- type: 'string'
4143
+ type: 'string',
4144
+ nullable: true
4117
4145
  }
4118
4146
  },
4119
4147
  additionalProperties: false
@@ -4121,7 +4149,6 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
4121
4149
  personalSummaries: {
4122
4150
  type: 'array',
4123
4151
  items: {
4124
- required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
4125
4152
  type: 'object',
4126
4153
  properties: {
4127
4154
  extraProperties: {
@@ -4132,26 +4159,31 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
4132
4159
  },
4133
4160
  date: {
4134
4161
  type: 'string',
4135
- format: 'date-time'
4162
+ format: 'date-time',
4163
+ nullable: true
4136
4164
  },
4137
4165
  birthDate: {
4138
4166
  type: 'string',
4139
- format: 'date-time'
4167
+ format: 'date-time',
4168
+ nullable: true
4140
4169
  },
4141
4170
  ethnicity: {
4142
4171
  maxLength: 255,
4143
4172
  minLength: 0,
4144
- type: 'string'
4173
+ type: 'string',
4174
+ nullable: true
4145
4175
  },
4146
4176
  maritalStatusCode: {
4147
4177
  maxLength: 255,
4148
4178
  minLength: 0,
4149
- type: 'string'
4179
+ type: 'string',
4180
+ nullable: true
4150
4181
  },
4151
4182
  religiousAffiliationName: {
4152
4183
  maxLength: 255,
4153
4184
  minLength: 0,
4154
- type: 'string'
4185
+ type: 'string',
4186
+ nullable: true
4155
4187
  },
4156
4188
  genderTypeCode: {
4157
4189
  enum: ['MALE', 'FEMALE'],
@@ -4849,11 +4881,13 @@ export const $UniRefund_CRMService_Individuals_IndividualDto = {
4849
4881
  },
4850
4882
  date: {
4851
4883
  type: 'string',
4852
- format: 'date-time'
4884
+ format: 'date-time',
4885
+ nullable: true
4853
4886
  },
4854
4887
  birthDate: {
4855
4888
  type: 'string',
4856
- format: 'date-time'
4889
+ format: 'date-time',
4890
+ nullable: true
4857
4891
  },
4858
4892
  ethnicity: {
4859
4893
  type: 'string',
@@ -5438,11 +5472,13 @@ export const $UniRefund_CRMService_Individuals_IndividualWithAbpUserAccountDto =
5438
5472
  },
5439
5473
  date: {
5440
5474
  type: 'string',
5441
- format: 'date-time'
5475
+ format: 'date-time',
5476
+ nullable: true
5442
5477
  },
5443
5478
  birthDate: {
5444
5479
  type: 'string',
5445
- format: 'date-time'
5480
+ format: 'date-time',
5481
+ nullable: true
5446
5482
  },
5447
5483
  ethnicity: {
5448
5484
  type: 'string',
@@ -5600,13 +5636,14 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
5600
5636
  readOnly: true
5601
5637
  },
5602
5638
  name: {
5603
- required: ['firstName', 'lastName', 'mailingName', 'officialName', 'salutation', 'suffix'],
5639
+ required: ['firstName', 'lastName'],
5604
5640
  type: 'object',
5605
5641
  properties: {
5606
5642
  salutation: {
5607
5643
  maxLength: 255,
5608
5644
  minLength: 0,
5609
- type: 'string'
5645
+ type: 'string',
5646
+ nullable: true
5610
5647
  },
5611
5648
  firstName: {
5612
5649
  maxLength: 255,
@@ -5621,17 +5658,20 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
5621
5658
  suffix: {
5622
5659
  maxLength: 255,
5623
5660
  minLength: 0,
5624
- type: 'string'
5661
+ type: 'string',
5662
+ nullable: true
5625
5663
  },
5626
5664
  mailingName: {
5627
5665
  maxLength: 255,
5628
5666
  minLength: 0,
5629
- type: 'string'
5667
+ type: 'string',
5668
+ nullable: true
5630
5669
  },
5631
5670
  officialName: {
5632
5671
  maxLength: 255,
5633
5672
  minLength: 0,
5634
- type: 'string'
5673
+ type: 'string',
5674
+ nullable: true
5635
5675
  }
5636
5676
  },
5637
5677
  additionalProperties: false
@@ -5639,7 +5679,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
5639
5679
  personalSummaries: {
5640
5680
  type: 'array',
5641
5681
  items: {
5642
- required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
5643
5682
  type: 'object',
5644
5683
  properties: {
5645
5684
  extraProperties: {
@@ -5650,26 +5689,31 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
5650
5689
  },
5651
5690
  date: {
5652
5691
  type: 'string',
5653
- format: 'date-time'
5692
+ format: 'date-time',
5693
+ nullable: true
5654
5694
  },
5655
5695
  birthDate: {
5656
5696
  type: 'string',
5657
- format: 'date-time'
5697
+ format: 'date-time',
5698
+ nullable: true
5658
5699
  },
5659
5700
  ethnicity: {
5660
5701
  maxLength: 255,
5661
5702
  minLength: 0,
5662
- type: 'string'
5703
+ type: 'string',
5704
+ nullable: true
5663
5705
  },
5664
5706
  maritalStatusCode: {
5665
5707
  maxLength: 255,
5666
5708
  minLength: 0,
5667
- type: 'string'
5709
+ type: 'string',
5710
+ nullable: true
5668
5711
  },
5669
5712
  religiousAffiliationName: {
5670
5713
  maxLength: 255,
5671
5714
  minLength: 0,
5672
- type: 'string'
5715
+ type: 'string',
5716
+ nullable: true
5673
5717
  },
5674
5718
  genderTypeCode: {
5675
5719
  enum: ['MALE', 'FEMALE'],
@@ -6024,13 +6068,14 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
6024
6068
  readOnly: true
6025
6069
  },
6026
6070
  name: {
6027
- required: ['firstName', 'lastName', 'mailingName', 'officialName', 'salutation', 'suffix'],
6071
+ required: ['firstName', 'lastName'],
6028
6072
  type: 'object',
6029
6073
  properties: {
6030
6074
  salutation: {
6031
6075
  maxLength: 255,
6032
6076
  minLength: 0,
6033
- type: 'string'
6077
+ type: 'string',
6078
+ nullable: true
6034
6079
  },
6035
6080
  firstName: {
6036
6081
  maxLength: 255,
@@ -6045,17 +6090,20 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
6045
6090
  suffix: {
6046
6091
  maxLength: 255,
6047
6092
  minLength: 0,
6048
- type: 'string'
6093
+ type: 'string',
6094
+ nullable: true
6049
6095
  },
6050
6096
  mailingName: {
6051
6097
  maxLength: 255,
6052
6098
  minLength: 0,
6053
- type: 'string'
6099
+ type: 'string',
6100
+ nullable: true
6054
6101
  },
6055
6102
  officialName: {
6056
6103
  maxLength: 255,
6057
6104
  minLength: 0,
6058
- type: 'string'
6105
+ type: 'string',
6106
+ nullable: true
6059
6107
  }
6060
6108
  },
6061
6109
  additionalProperties: false
@@ -6063,7 +6111,6 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
6063
6111
  personalSummaries: {
6064
6112
  type: 'array',
6065
6113
  items: {
6066
- required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
6067
6114
  type: 'object',
6068
6115
  properties: {
6069
6116
  extraProperties: {
@@ -6074,26 +6121,31 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
6074
6121
  },
6075
6122
  date: {
6076
6123
  type: 'string',
6077
- format: 'date-time'
6124
+ format: 'date-time',
6125
+ nullable: true
6078
6126
  },
6079
6127
  birthDate: {
6080
6128
  type: 'string',
6081
- format: 'date-time'
6129
+ format: 'date-time',
6130
+ nullable: true
6082
6131
  },
6083
6132
  ethnicity: {
6084
6133
  maxLength: 255,
6085
6134
  minLength: 0,
6086
- type: 'string'
6135
+ type: 'string',
6136
+ nullable: true
6087
6137
  },
6088
6138
  maritalStatusCode: {
6089
6139
  maxLength: 255,
6090
6140
  minLength: 0,
6091
- type: 'string'
6141
+ type: 'string',
6142
+ nullable: true
6092
6143
  },
6093
6144
  religiousAffiliationName: {
6094
6145
  maxLength: 255,
6095
6146
  minLength: 0,
6096
- type: 'string'
6147
+ type: 'string',
6148
+ nullable: true
6097
6149
  },
6098
6150
  genderTypeCode: {
6099
6151
  enum: ['MALE', 'FEMALE'],
@@ -7179,11 +7231,13 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
7179
7231
  },
7180
7232
  date: {
7181
7233
  type: 'string',
7182
- format: 'date-time'
7234
+ format: 'date-time',
7235
+ nullable: true
7183
7236
  },
7184
7237
  birthDate: {
7185
7238
  type: 'string',
7186
- format: 'date-time'
7239
+ format: 'date-time',
7240
+ nullable: true
7187
7241
  },
7188
7242
  ethnicity: {
7189
7243
  type: 'string',
@@ -8329,11 +8383,13 @@ export const $UniRefund_CRMService_Merchants_MerchantDto = {
8329
8383
  },
8330
8384
  date: {
8331
8385
  type: 'string',
8332
- format: 'date-time'
8386
+ format: 'date-time',
8387
+ nullable: true
8333
8388
  },
8334
8389
  birthDate: {
8335
8390
  type: 'string',
8336
- format: 'date-time'
8391
+ format: 'date-time',
8392
+ nullable: true
8337
8393
  },
8338
8394
  ethnicity: {
8339
8395
  type: 'string',
@@ -9217,13 +9273,14 @@ export const $UniRefund_CRMService_Merchants_UpdateMerchantDto = {
9217
9273
  } as const;
9218
9274
 
9219
9275
  export const $UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
9220
- required: ['firstName', 'lastName', 'mailingName', 'officialName', 'salutation', 'suffix'],
9276
+ required: ['firstName', 'lastName'],
9221
9277
  type: 'object',
9222
9278
  properties: {
9223
9279
  salutation: {
9224
9280
  maxLength: 255,
9225
9281
  minLength: 0,
9226
- type: 'string'
9282
+ type: 'string',
9283
+ nullable: true
9227
9284
  },
9228
9285
  firstName: {
9229
9286
  maxLength: 255,
@@ -9238,17 +9295,20 @@ export const $UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
9238
9295
  suffix: {
9239
9296
  maxLength: 255,
9240
9297
  minLength: 0,
9241
- type: 'string'
9298
+ type: 'string',
9299
+ nullable: true
9242
9300
  },
9243
9301
  mailingName: {
9244
9302
  maxLength: 255,
9245
9303
  minLength: 0,
9246
- type: 'string'
9304
+ type: 'string',
9305
+ nullable: true
9247
9306
  },
9248
9307
  officialName: {
9249
9308
  maxLength: 255,
9250
9309
  minLength: 0,
9251
- type: 'string'
9310
+ type: 'string',
9311
+ nullable: true
9252
9312
  }
9253
9313
  },
9254
9314
  additionalProperties: false
@@ -9326,7 +9386,7 @@ export const $UniRefund_CRMService_NameCommonDatas_NameCommonDataDto = {
9326
9386
  } as const;
9327
9387
 
9328
9388
  export const $UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
9329
- required: ['firstName', 'lastName', 'mailingName', 'officialName', 'salutation', 'suffix'],
9389
+ required: ['firstName', 'lastName'],
9330
9390
  type: 'object',
9331
9391
  properties: {
9332
9392
  extraProperties: {
@@ -9338,7 +9398,8 @@ export const $UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
9338
9398
  salutation: {
9339
9399
  maxLength: 255,
9340
9400
  minLength: 0,
9341
- type: 'string'
9401
+ type: 'string',
9402
+ nullable: true
9342
9403
  },
9343
9404
  firstName: {
9344
9405
  maxLength: 255,
@@ -9353,17 +9414,20 @@ export const $UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
9353
9414
  suffix: {
9354
9415
  maxLength: 255,
9355
9416
  minLength: 0,
9356
- type: 'string'
9417
+ type: 'string',
9418
+ nullable: true
9357
9419
  },
9358
9420
  mailingName: {
9359
9421
  maxLength: 255,
9360
9422
  minLength: 0,
9361
- type: 'string'
9423
+ type: 'string',
9424
+ nullable: true
9362
9425
  },
9363
9426
  officialName: {
9364
9427
  maxLength: 255,
9365
9428
  minLength: 0,
9366
- type: 'string'
9429
+ type: 'string',
9430
+ nullable: true
9367
9431
  }
9368
9432
  },
9369
9433
  additionalProperties: false
@@ -9992,7 +10056,6 @@ export const $UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
9992
10056
  } as const;
9993
10057
 
9994
10058
  export const $UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
9995
- required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
9996
10059
  type: 'object',
9997
10060
  properties: {
9998
10061
  extraProperties: {
@@ -10003,26 +10066,31 @@ export const $UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto =
10003
10066
  },
10004
10067
  date: {
10005
10068
  type: 'string',
10006
- format: 'date-time'
10069
+ format: 'date-time',
10070
+ nullable: true
10007
10071
  },
10008
10072
  birthDate: {
10009
10073
  type: 'string',
10010
- format: 'date-time'
10074
+ format: 'date-time',
10075
+ nullable: true
10011
10076
  },
10012
10077
  ethnicity: {
10013
10078
  maxLength: 255,
10014
10079
  minLength: 0,
10015
- type: 'string'
10080
+ type: 'string',
10081
+ nullable: true
10016
10082
  },
10017
10083
  maritalStatusCode: {
10018
10084
  maxLength: 255,
10019
10085
  minLength: 0,
10020
- type: 'string'
10086
+ type: 'string',
10087
+ nullable: true
10021
10088
  },
10022
10089
  religiousAffiliationName: {
10023
10090
  maxLength: 255,
10024
10091
  minLength: 0,
10025
- type: 'string'
10092
+ type: 'string',
10093
+ nullable: true
10026
10094
  },
10027
10095
  genderTypeCode: {
10028
10096
  enum: ['MALE', 'FEMALE'],
@@ -10073,11 +10141,13 @@ export const $UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
10073
10141
  },
10074
10142
  date: {
10075
10143
  type: 'string',
10076
- format: 'date-time'
10144
+ format: 'date-time',
10145
+ nullable: true
10077
10146
  },
10078
10147
  birthDate: {
10079
10148
  type: 'string',
10080
- format: 'date-time'
10149
+ format: 'date-time',
10150
+ nullable: true
10081
10151
  },
10082
10152
  ethnicity: {
10083
10153
  type: 'string',
@@ -10104,7 +10174,6 @@ export const $UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
10104
10174
  } as const;
10105
10175
 
10106
10176
  export const $UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto = {
10107
- required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
10108
10177
  type: 'object',
10109
10178
  properties: {
10110
10179
  extraProperties: {
@@ -10115,26 +10184,31 @@ export const $UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto =
10115
10184
  },
10116
10185
  date: {
10117
10186
  type: 'string',
10118
- format: 'date-time'
10187
+ format: 'date-time',
10188
+ nullable: true
10119
10189
  },
10120
10190
  birthDate: {
10121
10191
  type: 'string',
10122
- format: 'date-time'
10192
+ format: 'date-time',
10193
+ nullable: true
10123
10194
  },
10124
10195
  ethnicity: {
10125
10196
  maxLength: 255,
10126
10197
  minLength: 0,
10127
- type: 'string'
10198
+ type: 'string',
10199
+ nullable: true
10128
10200
  },
10129
10201
  maritalStatusCode: {
10130
10202
  maxLength: 255,
10131
10203
  minLength: 0,
10132
- type: 'string'
10204
+ type: 'string',
10205
+ nullable: true
10133
10206
  },
10134
10207
  religiousAffiliationName: {
10135
10208
  maxLength: 255,
10136
10209
  minLength: 0,
10137
- type: 'string'
10210
+ type: 'string',
10211
+ nullable: true
10138
10212
  },
10139
10213
  genderTypeCode: {
10140
10214
  enum: ['MALE', 'FEMALE'],
@@ -11287,11 +11361,13 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointDto = {
11287
11361
  },
11288
11362
  date: {
11289
11363
  type: 'string',
11290
- format: 'date-time'
11364
+ format: 'date-time',
11365
+ nullable: true
11291
11366
  },
11292
11367
  birthDate: {
11293
11368
  type: 'string',
11294
- format: 'date-time'
11369
+ format: 'date-time',
11370
+ nullable: true
11295
11371
  },
11296
11372
  ethnicity: {
11297
11373
  type: 'string',
@@ -12881,11 +12957,13 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeDto = {
12881
12957
  },
12882
12958
  date: {
12883
12959
  type: 'string',
12884
- format: 'date-time'
12960
+ format: 'date-time',
12961
+ nullable: true
12885
12962
  },
12886
12963
  birthDate: {
12887
12964
  type: 'string',
12888
- format: 'date-time'
12965
+ format: 'date-time',
12966
+ nullable: true
12889
12967
  },
12890
12968
  ethnicity: {
12891
12969
  type: 'string',
@@ -13383,15 +13461,9 @@ export const $UniRefund_CRMService_TaxFrees_UpdateTaxFreeDto = {
13383
13461
  } as const;
13384
13462
 
13385
13463
  export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
13386
- required: ['entityInformationTypes', 'taxpayerId'],
13464
+ required: ['entityInformationTypes'],
13387
13465
  type: 'object',
13388
13466
  properties: {
13389
- extraProperties: {
13390
- type: 'object',
13391
- additionalProperties: {},
13392
- nullable: true,
13393
- readOnly: true
13394
- },
13395
13467
  entityInformationTypes: {
13396
13468
  type: 'array',
13397
13469
  items: {
@@ -13578,6 +13650,11 @@ export const $UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
13578
13650
  taxpayerId: {
13579
13651
  maxLength: 255,
13580
13652
  minLength: 0,
13653
+ type: 'string',
13654
+ nullable: true
13655
+ },
13656
+ typeCode: {
13657
+ enum: ['HEADQUARTER', 'TAXOFFICE'],
13581
13658
  type: 'string'
13582
13659
  }
13583
13660
  },
@@ -13968,6 +14045,10 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
13968
14045
  type: 'string',
13969
14046
  nullable: true
13970
14047
  },
14048
+ typeCode: {
14049
+ enum: ['HEADQUARTER', 'TAXOFFICE'],
14050
+ type: 'string'
14051
+ },
13971
14052
  entityInformations: {
13972
14053
  type: 'array',
13973
14054
  items: {
@@ -14466,11 +14547,13 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
14466
14547
  },
14467
14548
  date: {
14468
14549
  type: 'string',
14469
- format: 'date-time'
14550
+ format: 'date-time',
14551
+ nullable: true
14470
14552
  },
14471
14553
  birthDate: {
14472
14554
  type: 'string',
14473
- format: 'date-time'
14555
+ format: 'date-time',
14556
+ nullable: true
14474
14557
  },
14475
14558
  ethnicity: {
14476
14559
  type: 'string',
@@ -14909,13 +14992,21 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
14909
14992
  taxpayerId: {
14910
14993
  type: 'string',
14911
14994
  nullable: true
14995
+ },
14996
+ typeCode: {
14997
+ enum: ['HEADQUARTER', 'TAXOFFICE'],
14998
+ type: 'string'
14912
14999
  }
14913
15000
  },
14914
15001
  additionalProperties: false
14915
15002
  } as const;
14916
15003
 
15004
+ export const $UniRefund_CRMService_TaxOffices_TaxOfficeTypeCode = {
15005
+ enum: ['HEADQUARTER', 'TAXOFFICE'],
15006
+ type: 'string'
15007
+ } as const;
15008
+
14917
15009
  export const $UniRefund_CRMService_TaxOffices_UpdateTaxOfficeDto = {
14918
- required: ['taxpayerId'],
14919
15010
  type: 'object',
14920
15011
  properties: {
14921
15012
  parentId: {
@@ -14926,6 +15017,11 @@ export const $UniRefund_CRMService_TaxOffices_UpdateTaxOfficeDto = {
14926
15017
  taxpayerId: {
14927
15018
  maxLength: 255,
14928
15019
  minLength: 0,
15020
+ type: 'string',
15021
+ nullable: true
15022
+ },
15023
+ typeCode: {
15024
+ enum: ['HEADQUARTER', 'TAXOFFICE'],
14929
15025
  type: 'string'
14930
15026
  }
14931
15027
  },