@ayasofyazilim/saas 0.0.24 → 0.0.26

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.
Files changed (37) hide show
  1. package/AccountService/AccountServiceClient.ts +65 -65
  2. package/AccountService/schemas.gen.ts +5103 -5103
  3. package/AccountService/services.gen.ts +1452 -1452
  4. package/AccountService/types.gen.ts +9896 -9896
  5. package/AdministrationService/AdministrationServiceClient.ts +74 -74
  6. package/AdministrationService/schemas.gen.ts +5897 -5897
  7. package/AdministrationService/services.gen.ts +1332 -1332
  8. package/AdministrationService/types.gen.ts +9024 -9024
  9. package/BackerService/BackerServiceClient.ts +50 -50
  10. package/BackerService/schemas.gen.ts +12444 -12401
  11. package/BackerService/services.gen.ts +866 -866
  12. package/BackerService/types.gen.ts +14936 -14936
  13. package/FundraiserService/schemas.gen.ts +795 -661
  14. package/FundraiserService/services.gen.ts +12 -36
  15. package/FundraiserService/types.gen.ts +1229 -2471
  16. package/IdentityService/IdentityServiceClient.ts +77 -77
  17. package/IdentityService/schemas.gen.ts +6573 -6573
  18. package/IdentityService/services.gen.ts +2839 -2839
  19. package/IdentityService/types.gen.ts +17446 -17446
  20. package/MerchantService/MerchantServiceClient.ts +77 -77
  21. package/MerchantService/schemas.gen.ts +14764 -14697
  22. package/MerchantService/services.gen.ts +1602 -1602
  23. package/MerchantService/types.gen.ts +18875 -18819
  24. package/ProjectService/ProjectServiceClient.ts +47 -47
  25. package/ProjectService/schemas.gen.ts +365 -1
  26. package/ProjectService/types.gen.ts +161 -1
  27. package/ProjectService.json +2937 -2937
  28. package/SaasService/schemas.gen.ts +5278 -5278
  29. package/SaasService/services.gen.ts +1325 -1325
  30. package/SaasService/types.gen.ts +9052 -9052
  31. package/SettingService/SettingServiceClient.ts +9 -0
  32. package/SettingService/schemas.gen.ts +516 -4
  33. package/SettingService/services.gen.ts +472 -1
  34. package/SettingService/types.gen.ts +896 -14
  35. package/generator.mjs +2 -2
  36. package/package.json +1 -1
  37. package/swagger.json +4794 -4794
@@ -80,6 +80,7 @@ export const $UpwithCrowd_FundraiserService_AddressTypes_AddressTypeDto = {
80
80
  } as const;
81
81
 
82
82
  export const $UpwithCrowd_FundraiserService_AddressTypes_CreateAddressTypeDto = {
83
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
83
84
  type: 'object',
84
85
  properties: {
85
86
  extraProperties: {
@@ -94,28 +95,28 @@ export const $UpwithCrowd_FundraiserService_AddressTypes_CreateAddressTypeDto =
94
95
  format: 'int32'
95
96
  },
96
97
  addressLine: {
97
- type: 'string',
98
- nullable: true
98
+ minLength: 1,
99
+ type: 'string'
99
100
  },
100
101
  city: {
101
- type: 'string',
102
- nullable: true
102
+ minLength: 1,
103
+ type: 'string'
103
104
  },
104
105
  terriority: {
105
- type: 'string',
106
- nullable: true
106
+ minLength: 1,
107
+ type: 'string'
107
108
  },
108
109
  postalCode: {
109
- type: 'string',
110
- nullable: true
110
+ minLength: 1,
111
+ type: 'string'
111
112
  },
112
113
  country: {
113
- type: 'string',
114
- nullable: true
114
+ minLength: 1,
115
+ type: 'string'
115
116
  },
116
117
  fullAddress: {
117
- type: 'string',
118
- nullable: true
118
+ minLength: 1,
119
+ type: 'string'
119
120
  },
120
121
  primaryFlag: {
121
122
  type: 'boolean'
@@ -125,6 +126,7 @@ export const $UpwithCrowd_FundraiserService_AddressTypes_CreateAddressTypeDto =
125
126
  } as const;
126
127
 
127
128
  export const $UpwithCrowd_FundraiserService_AddressTypes_UpdateAddressTypeDto = {
129
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
128
130
  type: 'object',
129
131
  properties: {
130
132
  extraProperties: {
@@ -139,28 +141,28 @@ export const $UpwithCrowd_FundraiserService_AddressTypes_UpdateAddressTypeDto =
139
141
  format: 'int32'
140
142
  },
141
143
  addressLine: {
142
- type: 'string',
143
- nullable: true
144
+ minLength: 1,
145
+ type: 'string'
144
146
  },
145
147
  city: {
146
- type: 'string',
147
- nullable: true
148
+ minLength: 1,
149
+ type: 'string'
148
150
  },
149
151
  terriority: {
150
- type: 'string',
151
- nullable: true
152
+ minLength: 1,
153
+ type: 'string'
152
154
  },
153
155
  postalCode: {
154
- type: 'string',
155
- nullable: true
156
+ minLength: 1,
157
+ type: 'string'
156
158
  },
157
159
  country: {
158
- type: 'string',
159
- nullable: true
160
+ minLength: 1,
161
+ type: 'string'
160
162
  },
161
163
  fullAddress: {
162
- type: 'string',
163
- nullable: true
164
+ minLength: 1,
165
+ type: 'string'
164
166
  },
165
167
  primaryFlag: {
166
168
  type: 'boolean'
@@ -234,6 +236,7 @@ export const $UpwithCrowd_FundraiserService_AffiliationTypes_AffiliationTypeDto
234
236
  } as const;
235
237
 
236
238
  export const $UpwithCrowd_FundraiserService_AffiliationTypes_CreateAffiliationTypeDto = {
239
+ required: ['affiliationTypeCode', 'description', 'name'],
237
240
  type: 'object',
238
241
  properties: {
239
242
  extraProperties: {
@@ -243,12 +246,12 @@ export const $UpwithCrowd_FundraiserService_AffiliationTypes_CreateAffiliationTy
243
246
  readOnly: true
244
247
  },
245
248
  name: {
246
- type: 'string',
247
- nullable: true
249
+ minLength: 1,
250
+ type: 'string'
248
251
  },
249
252
  description: {
250
- type: 'string',
251
- nullable: true
253
+ minLength: 1,
254
+ type: 'string'
252
255
  },
253
256
  affiliationTypeCode: {
254
257
  enum: [0, 1, 2],
@@ -563,6 +566,7 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_ContactInfor
563
566
  } as const;
564
567
 
565
568
  export const $UpwithCrowd_FundraiserService_ContactInformationTypes_CreateContactInformationTypeDto = {
569
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
566
570
  type: 'object',
567
571
  properties: {
568
572
  extraProperties: {
@@ -582,6 +586,7 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_CreateContac
582
586
  telephones: {
583
587
  type: 'array',
584
588
  items: {
589
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
585
590
  type: 'object',
586
591
  properties: {
587
592
  primaryFlag: {
@@ -593,25 +598,25 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_CreateContac
593
598
  format: 'int32'
594
599
  },
595
600
  areaCode: {
596
- type: 'string',
597
- nullable: true
601
+ minLength: 1,
602
+ type: 'string'
598
603
  },
599
604
  localNumber: {
600
- type: 'string',
601
- nullable: true
605
+ minLength: 1,
606
+ type: 'string'
602
607
  },
603
608
  ituCountryCode: {
604
- type: 'string',
605
- nullable: true
609
+ minLength: 1,
610
+ type: 'string'
606
611
  }
607
612
  },
608
613
  additionalProperties: false
609
- },
610
- nullable: true
614
+ }
611
615
  },
612
616
  addresses: {
613
617
  type: 'array',
614
618
  items: {
619
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
615
620
  type: 'object',
616
621
  properties: {
617
622
  extraProperties: {
@@ -626,40 +631,40 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_CreateContac
626
631
  format: 'int32'
627
632
  },
628
633
  addressLine: {
629
- type: 'string',
630
- nullable: true
634
+ minLength: 1,
635
+ type: 'string'
631
636
  },
632
637
  city: {
633
- type: 'string',
634
- nullable: true
638
+ minLength: 1,
639
+ type: 'string'
635
640
  },
636
641
  terriority: {
637
- type: 'string',
638
- nullable: true
642
+ minLength: 1,
643
+ type: 'string'
639
644
  },
640
645
  postalCode: {
641
- type: 'string',
642
- nullable: true
646
+ minLength: 1,
647
+ type: 'string'
643
648
  },
644
649
  country: {
645
- type: 'string',
646
- nullable: true
650
+ minLength: 1,
651
+ type: 'string'
647
652
  },
648
653
  fullAddress: {
649
- type: 'string',
650
- nullable: true
654
+ minLength: 1,
655
+ type: 'string'
651
656
  },
652
657
  primaryFlag: {
653
658
  type: 'boolean'
654
659
  }
655
660
  },
656
661
  additionalProperties: false
657
- },
658
- nullable: true
662
+ }
659
663
  },
660
664
  emails: {
661
665
  type: 'array',
662
666
  items: {
667
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
663
668
  type: 'object',
664
669
  properties: {
665
670
  extraProperties: {
@@ -677,19 +682,19 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_CreateContac
677
682
  format: 'int32'
678
683
  },
679
684
  emailAddress: {
680
- type: 'string',
681
- nullable: true
685
+ minLength: 1,
686
+ type: 'string'
682
687
  }
683
688
  },
684
689
  additionalProperties: false
685
- },
686
- nullable: true
690
+ }
687
691
  }
688
692
  },
689
693
  additionalProperties: false
690
694
  } as const;
691
695
 
692
696
  export const $UpwithCrowd_FundraiserService_ContactInformationTypes_UpdateContactInformationTypeDto = {
697
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
693
698
  type: 'object',
694
699
  properties: {
695
700
  extraProperties: {
@@ -709,6 +714,7 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_UpdateContac
709
714
  telephones: {
710
715
  type: 'array',
711
716
  items: {
717
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
712
718
  type: 'object',
713
719
  properties: {
714
720
  extraProperties: {
@@ -726,25 +732,25 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_UpdateContac
726
732
  format: 'int32'
727
733
  },
728
734
  areaCode: {
729
- type: 'string',
730
- nullable: true
735
+ minLength: 1,
736
+ type: 'string'
731
737
  },
732
738
  localNumber: {
733
- type: 'string',
734
- nullable: true
739
+ minLength: 1,
740
+ type: 'string'
735
741
  },
736
742
  ituCountryCode: {
737
- type: 'string',
738
- nullable: true
743
+ minLength: 1,
744
+ type: 'string'
739
745
  }
740
746
  },
741
747
  additionalProperties: false
742
- },
743
- nullable: true
748
+ }
744
749
  },
745
750
  addresses: {
746
751
  type: 'array',
747
752
  items: {
753
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
748
754
  type: 'object',
749
755
  properties: {
750
756
  extraProperties: {
@@ -759,40 +765,40 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_UpdateContac
759
765
  format: 'int32'
760
766
  },
761
767
  addressLine: {
762
- type: 'string',
763
- nullable: true
768
+ minLength: 1,
769
+ type: 'string'
764
770
  },
765
771
  city: {
766
- type: 'string',
767
- nullable: true
772
+ minLength: 1,
773
+ type: 'string'
768
774
  },
769
775
  terriority: {
770
- type: 'string',
771
- nullable: true
776
+ minLength: 1,
777
+ type: 'string'
772
778
  },
773
779
  postalCode: {
774
- type: 'string',
775
- nullable: true
780
+ minLength: 1,
781
+ type: 'string'
776
782
  },
777
783
  country: {
778
- type: 'string',
779
- nullable: true
784
+ minLength: 1,
785
+ type: 'string'
780
786
  },
781
787
  fullAddress: {
782
- type: 'string',
783
- nullable: true
788
+ minLength: 1,
789
+ type: 'string'
784
790
  },
785
791
  primaryFlag: {
786
792
  type: 'boolean'
787
793
  }
788
794
  },
789
795
  additionalProperties: false
790
- },
791
- nullable: true
796
+ }
792
797
  },
793
798
  emails: {
794
799
  type: 'array',
795
800
  items: {
801
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
796
802
  type: 'object',
797
803
  properties: {
798
804
  extraProperties: {
@@ -810,19 +816,19 @@ export const $UpwithCrowd_FundraiserService_ContactInformationTypes_UpdateContac
810
816
  format: 'int32'
811
817
  },
812
818
  emailAddress: {
813
- type: 'string',
814
- nullable: true
819
+ minLength: 1,
820
+ type: 'string'
815
821
  }
816
822
  },
817
823
  additionalProperties: false
818
- },
819
- nullable: true
824
+ }
820
825
  }
821
826
  },
822
827
  additionalProperties: false
823
828
  } as const;
824
829
 
825
830
  export const $UpwithCrowd_FundraiserService_EmailCommonDatas_CreateEmailCommonDataDto = {
831
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
826
832
  type: 'object',
827
833
  properties: {
828
834
  extraProperties: {
@@ -840,8 +846,8 @@ export const $UpwithCrowd_FundraiserService_EmailCommonDatas_CreateEmailCommonDa
840
846
  format: 'int32'
841
847
  },
842
848
  emailAddress: {
843
- type: 'string',
844
- nullable: true
849
+ minLength: 1,
850
+ type: 'string'
845
851
  }
846
852
  },
847
853
  additionalProperties: false
@@ -907,6 +913,7 @@ export const $UpwithCrowd_FundraiserService_EmailCommonDatas_EmailCommonDataDto
907
913
  } as const;
908
914
 
909
915
  export const $UpwithCrowd_FundraiserService_EmailCommonDatas_UpdateEmailCommonDataDto = {
916
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
910
917
  type: 'object',
911
918
  properties: {
912
919
  extraProperties: {
@@ -924,14 +931,15 @@ export const $UpwithCrowd_FundraiserService_EmailCommonDatas_UpdateEmailCommonDa
924
931
  format: 'int32'
925
932
  },
926
933
  emailAddress: {
927
- type: 'string',
928
- nullable: true
934
+ minLength: 1,
935
+ type: 'string'
929
936
  }
930
937
  },
931
938
  additionalProperties: false
932
939
  } as const;
933
940
 
934
941
  export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityInformationTypeDto = {
942
+ required: ['partyType'],
935
943
  type: 'object',
936
944
  properties: {
937
945
  extraProperties: {
@@ -948,6 +956,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
948
956
  organizations: {
949
957
  type: 'array',
950
958
  items: {
959
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
951
960
  type: 'object',
952
961
  properties: {
953
962
  extraProperties: {
@@ -957,18 +966,19 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
957
966
  readOnly: true
958
967
  },
959
968
  name: {
960
- type: 'string',
961
- nullable: true
969
+ minLength: 1,
970
+ type: 'string'
962
971
  },
963
972
  taxpayerId: {
964
- type: 'string',
965
- nullable: true
973
+ minLength: 1,
974
+ type: 'string'
966
975
  },
967
976
  legalStatusCode: {
968
- type: 'string',
969
- nullable: true
977
+ minLength: 1,
978
+ type: 'string'
970
979
  },
971
980
  contactInformation: {
981
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
972
982
  type: 'object',
973
983
  properties: {
974
984
  extraProperties: {
@@ -988,6 +998,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
988
998
  telephones: {
989
999
  type: 'array',
990
1000
  items: {
1001
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
991
1002
  type: 'object',
992
1003
  properties: {
993
1004
  primaryFlag: {
@@ -999,25 +1010,25 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
999
1010
  format: 'int32'
1000
1011
  },
1001
1012
  areaCode: {
1002
- type: 'string',
1003
- nullable: true
1013
+ minLength: 1,
1014
+ type: 'string'
1004
1015
  },
1005
1016
  localNumber: {
1006
- type: 'string',
1007
- nullable: true
1017
+ minLength: 1,
1018
+ type: 'string'
1008
1019
  },
1009
1020
  ituCountryCode: {
1010
- type: 'string',
1011
- nullable: true
1021
+ minLength: 1,
1022
+ type: 'string'
1012
1023
  }
1013
1024
  },
1014
1025
  additionalProperties: false
1015
- },
1016
- nullable: true
1026
+ }
1017
1027
  },
1018
1028
  addresses: {
1019
1029
  type: 'array',
1020
1030
  items: {
1031
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
1021
1032
  type: 'object',
1022
1033
  properties: {
1023
1034
  extraProperties: {
@@ -1032,40 +1043,40 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1032
1043
  format: 'int32'
1033
1044
  },
1034
1045
  addressLine: {
1035
- type: 'string',
1036
- nullable: true
1046
+ minLength: 1,
1047
+ type: 'string'
1037
1048
  },
1038
1049
  city: {
1039
- type: 'string',
1040
- nullable: true
1050
+ minLength: 1,
1051
+ type: 'string'
1041
1052
  },
1042
1053
  terriority: {
1043
- type: 'string',
1044
- nullable: true
1054
+ minLength: 1,
1055
+ type: 'string'
1045
1056
  },
1046
1057
  postalCode: {
1047
- type: 'string',
1048
- nullable: true
1058
+ minLength: 1,
1059
+ type: 'string'
1049
1060
  },
1050
1061
  country: {
1051
- type: 'string',
1052
- nullable: true
1062
+ minLength: 1,
1063
+ type: 'string'
1053
1064
  },
1054
1065
  fullAddress: {
1055
- type: 'string',
1056
- nullable: true
1066
+ minLength: 1,
1067
+ type: 'string'
1057
1068
  },
1058
1069
  primaryFlag: {
1059
1070
  type: 'boolean'
1060
1071
  }
1061
1072
  },
1062
1073
  additionalProperties: false
1063
- },
1064
- nullable: true
1074
+ }
1065
1075
  },
1066
1076
  emails: {
1067
1077
  type: 'array',
1068
1078
  items: {
1079
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
1069
1080
  type: 'object',
1070
1081
  properties: {
1071
1082
  extraProperties: {
@@ -1083,13 +1094,12 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1083
1094
  format: 'int32'
1084
1095
  },
1085
1096
  emailAddress: {
1086
- type: 'string',
1087
- nullable: true
1097
+ minLength: 1,
1098
+ type: 'string'
1088
1099
  }
1089
1100
  },
1090
1101
  additionalProperties: false
1091
- },
1092
- nullable: true
1102
+ }
1093
1103
  }
1094
1104
  },
1095
1105
  additionalProperties: false
@@ -1102,6 +1112,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1102
1112
  individuals: {
1103
1113
  type: 'array',
1104
1114
  items: {
1115
+ required: ['contactInformation', 'name'],
1105
1116
  type: 'object',
1106
1117
  properties: {
1107
1118
  extraProperties: {
@@ -1111,32 +1122,34 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1111
1122
  readOnly: true
1112
1123
  },
1113
1124
  name: {
1125
+ required: ['mailingName', 'name', 'officialName', 'salutation', 'suffix'],
1114
1126
  type: 'object',
1115
1127
  properties: {
1116
1128
  salutation: {
1117
- type: 'string',
1118
- nullable: true
1129
+ minLength: 1,
1130
+ type: 'string'
1119
1131
  },
1120
1132
  name: {
1121
- type: 'string',
1122
- nullable: true
1133
+ minLength: 1,
1134
+ type: 'string'
1123
1135
  },
1124
1136
  suffix: {
1125
- type: 'string',
1126
- nullable: true
1137
+ minLength: 1,
1138
+ type: 'string'
1127
1139
  },
1128
1140
  mailingName: {
1129
- type: 'string',
1130
- nullable: true
1141
+ minLength: 1,
1142
+ type: 'string'
1131
1143
  },
1132
1144
  officialName: {
1133
- type: 'string',
1134
- nullable: true
1145
+ minLength: 1,
1146
+ type: 'string'
1135
1147
  }
1136
1148
  },
1137
1149
  additionalProperties: false
1138
1150
  },
1139
1151
  contactInformation: {
1152
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
1140
1153
  type: 'object',
1141
1154
  properties: {
1142
1155
  extraProperties: {
@@ -1156,6 +1169,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1156
1169
  telephones: {
1157
1170
  type: 'array',
1158
1171
  items: {
1172
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
1159
1173
  type: 'object',
1160
1174
  properties: {
1161
1175
  primaryFlag: {
@@ -1167,25 +1181,25 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1167
1181
  format: 'int32'
1168
1182
  },
1169
1183
  areaCode: {
1170
- type: 'string',
1171
- nullable: true
1184
+ minLength: 1,
1185
+ type: 'string'
1172
1186
  },
1173
1187
  localNumber: {
1174
- type: 'string',
1175
- nullable: true
1188
+ minLength: 1,
1189
+ type: 'string'
1176
1190
  },
1177
1191
  ituCountryCode: {
1178
- type: 'string',
1179
- nullable: true
1192
+ minLength: 1,
1193
+ type: 'string'
1180
1194
  }
1181
1195
  },
1182
1196
  additionalProperties: false
1183
- },
1184
- nullable: true
1197
+ }
1185
1198
  },
1186
1199
  addresses: {
1187
1200
  type: 'array',
1188
1201
  items: {
1202
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
1189
1203
  type: 'object',
1190
1204
  properties: {
1191
1205
  extraProperties: {
@@ -1200,40 +1214,40 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1200
1214
  format: 'int32'
1201
1215
  },
1202
1216
  addressLine: {
1203
- type: 'string',
1204
- nullable: true
1217
+ minLength: 1,
1218
+ type: 'string'
1205
1219
  },
1206
1220
  city: {
1207
- type: 'string',
1208
- nullable: true
1221
+ minLength: 1,
1222
+ type: 'string'
1209
1223
  },
1210
1224
  terriority: {
1211
- type: 'string',
1212
- nullable: true
1225
+ minLength: 1,
1226
+ type: 'string'
1213
1227
  },
1214
1228
  postalCode: {
1215
- type: 'string',
1216
- nullable: true
1229
+ minLength: 1,
1230
+ type: 'string'
1217
1231
  },
1218
1232
  country: {
1219
- type: 'string',
1220
- nullable: true
1233
+ minLength: 1,
1234
+ type: 'string'
1221
1235
  },
1222
1236
  fullAddress: {
1223
- type: 'string',
1224
- nullable: true
1237
+ minLength: 1,
1238
+ type: 'string'
1225
1239
  },
1226
1240
  primaryFlag: {
1227
1241
  type: 'boolean'
1228
1242
  }
1229
1243
  },
1230
1244
  additionalProperties: false
1231
- },
1232
- nullable: true
1245
+ }
1233
1246
  },
1234
1247
  emails: {
1235
1248
  type: 'array',
1236
1249
  items: {
1250
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
1237
1251
  type: 'object',
1238
1252
  properties: {
1239
1253
  extraProperties: {
@@ -1251,13 +1265,12 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1251
1265
  format: 'int32'
1252
1266
  },
1253
1267
  emailAddress: {
1254
- type: 'string',
1255
- nullable: true
1268
+ minLength: 1,
1269
+ type: 'string'
1256
1270
  }
1257
1271
  },
1258
1272
  additionalProperties: false
1259
- },
1260
- nullable: true
1273
+ }
1261
1274
  }
1262
1275
  },
1263
1276
  additionalProperties: false
@@ -1265,6 +1278,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1265
1278
  personalSummaries: {
1266
1279
  type: 'array',
1267
1280
  items: {
1281
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'maritalStatusCode', 'religiousAffiliationName'],
1268
1282
  type: 'object',
1269
1283
  properties: {
1270
1284
  genderType: {
@@ -1281,16 +1295,16 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityI
1281
1295
  format: 'date-time'
1282
1296
  },
1283
1297
  ethnicity: {
1284
- type: 'string',
1285
- nullable: true
1298
+ minLength: 1,
1299
+ type: 'string'
1286
1300
  },
1287
1301
  maritalStatusCode: {
1288
- type: 'string',
1289
- nullable: true
1302
+ minLength: 1,
1303
+ type: 'string'
1290
1304
  },
1291
1305
  religiousAffiliationName: {
1292
- type: 'string',
1293
- nullable: true
1306
+ minLength: 1,
1307
+ type: 'string'
1294
1308
  }
1295
1309
  },
1296
1310
  additionalProperties: false
@@ -2135,6 +2149,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_EntityInforma
2135
2149
  } as const;
2136
2150
 
2137
2151
  export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityInformationTypeDto = {
2152
+ required: ['partyType'],
2138
2153
  type: 'object',
2139
2154
  properties: {
2140
2155
  partyType: {
@@ -2145,21 +2160,23 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2145
2160
  organizations: {
2146
2161
  type: 'array',
2147
2162
  items: {
2163
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
2148
2164
  type: 'object',
2149
2165
  properties: {
2150
2166
  name: {
2151
- type: 'string',
2152
- nullable: true
2167
+ minLength: 1,
2168
+ type: 'string'
2153
2169
  },
2154
2170
  taxpayerId: {
2155
- type: 'string',
2156
- nullable: true
2171
+ minLength: 1,
2172
+ type: 'string'
2157
2173
  },
2158
2174
  legalStatusCode: {
2159
- type: 'string',
2160
- nullable: true
2175
+ minLength: 1,
2176
+ type: 'string'
2161
2177
  },
2162
2178
  contactInformation: {
2179
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
2163
2180
  type: 'object',
2164
2181
  properties: {
2165
2182
  extraProperties: {
@@ -2179,6 +2196,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2179
2196
  telephones: {
2180
2197
  type: 'array',
2181
2198
  items: {
2199
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
2182
2200
  type: 'object',
2183
2201
  properties: {
2184
2202
  extraProperties: {
@@ -2196,25 +2214,25 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2196
2214
  format: 'int32'
2197
2215
  },
2198
2216
  areaCode: {
2199
- type: 'string',
2200
- nullable: true
2217
+ minLength: 1,
2218
+ type: 'string'
2201
2219
  },
2202
2220
  localNumber: {
2203
- type: 'string',
2204
- nullable: true
2221
+ minLength: 1,
2222
+ type: 'string'
2205
2223
  },
2206
2224
  ituCountryCode: {
2207
- type: 'string',
2208
- nullable: true
2225
+ minLength: 1,
2226
+ type: 'string'
2209
2227
  }
2210
2228
  },
2211
2229
  additionalProperties: false
2212
- },
2213
- nullable: true
2230
+ }
2214
2231
  },
2215
2232
  addresses: {
2216
2233
  type: 'array',
2217
2234
  items: {
2235
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
2218
2236
  type: 'object',
2219
2237
  properties: {
2220
2238
  extraProperties: {
@@ -2229,40 +2247,40 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2229
2247
  format: 'int32'
2230
2248
  },
2231
2249
  addressLine: {
2232
- type: 'string',
2233
- nullable: true
2250
+ minLength: 1,
2251
+ type: 'string'
2234
2252
  },
2235
2253
  city: {
2236
- type: 'string',
2237
- nullable: true
2254
+ minLength: 1,
2255
+ type: 'string'
2238
2256
  },
2239
2257
  terriority: {
2240
- type: 'string',
2241
- nullable: true
2258
+ minLength: 1,
2259
+ type: 'string'
2242
2260
  },
2243
2261
  postalCode: {
2244
- type: 'string',
2245
- nullable: true
2262
+ minLength: 1,
2263
+ type: 'string'
2246
2264
  },
2247
2265
  country: {
2248
- type: 'string',
2249
- nullable: true
2266
+ minLength: 1,
2267
+ type: 'string'
2250
2268
  },
2251
2269
  fullAddress: {
2252
- type: 'string',
2253
- nullable: true
2270
+ minLength: 1,
2271
+ type: 'string'
2254
2272
  },
2255
2273
  primaryFlag: {
2256
2274
  type: 'boolean'
2257
2275
  }
2258
2276
  },
2259
2277
  additionalProperties: false
2260
- },
2261
- nullable: true
2278
+ }
2262
2279
  },
2263
2280
  emails: {
2264
2281
  type: 'array',
2265
2282
  items: {
2283
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
2266
2284
  type: 'object',
2267
2285
  properties: {
2268
2286
  extraProperties: {
@@ -2280,13 +2298,12 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2280
2298
  format: 'int32'
2281
2299
  },
2282
2300
  emailAddress: {
2283
- type: 'string',
2284
- nullable: true
2301
+ minLength: 1,
2302
+ type: 'string'
2285
2303
  }
2286
2304
  },
2287
2305
  additionalProperties: false
2288
- },
2289
- nullable: true
2306
+ }
2290
2307
  }
2291
2308
  },
2292
2309
  additionalProperties: false
@@ -2299,6 +2316,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2299
2316
  individuals: {
2300
2317
  type: 'array',
2301
2318
  items: {
2319
+ required: ['contactInformation', 'contactInformationId', 'entityInformationTypeId', 'name'],
2302
2320
  type: 'object',
2303
2321
  properties: {
2304
2322
  extraProperties: {
@@ -2308,6 +2326,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2308
2326
  readOnly: true
2309
2327
  },
2310
2328
  name: {
2329
+ required: ['individualId', 'mailingName', 'name', 'officialName', 'salutation', 'suffix'],
2311
2330
  type: 'object',
2312
2331
  properties: {
2313
2332
  individualId: {
@@ -2315,29 +2334,30 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2315
2334
  format: 'uuid'
2316
2335
  },
2317
2336
  salutation: {
2318
- type: 'string',
2319
- nullable: true
2337
+ minLength: 1,
2338
+ type: 'string'
2320
2339
  },
2321
2340
  name: {
2322
- type: 'string',
2323
- nullable: true
2341
+ minLength: 1,
2342
+ type: 'string'
2324
2343
  },
2325
2344
  suffix: {
2326
- type: 'string',
2327
- nullable: true
2345
+ minLength: 1,
2346
+ type: 'string'
2328
2347
  },
2329
2348
  mailingName: {
2330
- type: 'string',
2331
- nullable: true
2349
+ minLength: 1,
2350
+ type: 'string'
2332
2351
  },
2333
2352
  officialName: {
2334
- type: 'string',
2335
- nullable: true
2353
+ minLength: 1,
2354
+ type: 'string'
2336
2355
  }
2337
2356
  },
2338
2357
  additionalProperties: false
2339
2358
  },
2340
2359
  contactInformation: {
2360
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
2341
2361
  type: 'object',
2342
2362
  properties: {
2343
2363
  extraProperties: {
@@ -2357,6 +2377,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2357
2377
  telephones: {
2358
2378
  type: 'array',
2359
2379
  items: {
2380
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
2360
2381
  type: 'object',
2361
2382
  properties: {
2362
2383
  extraProperties: {
@@ -2374,25 +2395,25 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2374
2395
  format: 'int32'
2375
2396
  },
2376
2397
  areaCode: {
2377
- type: 'string',
2378
- nullable: true
2398
+ minLength: 1,
2399
+ type: 'string'
2379
2400
  },
2380
2401
  localNumber: {
2381
- type: 'string',
2382
- nullable: true
2402
+ minLength: 1,
2403
+ type: 'string'
2383
2404
  },
2384
2405
  ituCountryCode: {
2385
- type: 'string',
2386
- nullable: true
2406
+ minLength: 1,
2407
+ type: 'string'
2387
2408
  }
2388
2409
  },
2389
2410
  additionalProperties: false
2390
- },
2391
- nullable: true
2411
+ }
2392
2412
  },
2393
2413
  addresses: {
2394
2414
  type: 'array',
2395
2415
  items: {
2416
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
2396
2417
  type: 'object',
2397
2418
  properties: {
2398
2419
  extraProperties: {
@@ -2407,40 +2428,40 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2407
2428
  format: 'int32'
2408
2429
  },
2409
2430
  addressLine: {
2410
- type: 'string',
2411
- nullable: true
2431
+ minLength: 1,
2432
+ type: 'string'
2412
2433
  },
2413
2434
  city: {
2414
- type: 'string',
2415
- nullable: true
2435
+ minLength: 1,
2436
+ type: 'string'
2416
2437
  },
2417
2438
  terriority: {
2418
- type: 'string',
2419
- nullable: true
2439
+ minLength: 1,
2440
+ type: 'string'
2420
2441
  },
2421
2442
  postalCode: {
2422
- type: 'string',
2423
- nullable: true
2443
+ minLength: 1,
2444
+ type: 'string'
2424
2445
  },
2425
2446
  country: {
2426
- type: 'string',
2427
- nullable: true
2447
+ minLength: 1,
2448
+ type: 'string'
2428
2449
  },
2429
2450
  fullAddress: {
2430
- type: 'string',
2431
- nullable: true
2451
+ minLength: 1,
2452
+ type: 'string'
2432
2453
  },
2433
2454
  primaryFlag: {
2434
2455
  type: 'boolean'
2435
2456
  }
2436
2457
  },
2437
2458
  additionalProperties: false
2438
- },
2439
- nullable: true
2459
+ }
2440
2460
  },
2441
2461
  emails: {
2442
2462
  type: 'array',
2443
2463
  items: {
2464
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
2444
2465
  type: 'object',
2445
2466
  properties: {
2446
2467
  extraProperties: {
@@ -2458,13 +2479,12 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2458
2479
  format: 'int32'
2459
2480
  },
2460
2481
  emailAddress: {
2461
- type: 'string',
2462
- nullable: true
2482
+ minLength: 1,
2483
+ type: 'string'
2463
2484
  }
2464
2485
  },
2465
2486
  additionalProperties: false
2466
- },
2467
- nullable: true
2487
+ }
2468
2488
  }
2469
2489
  },
2470
2490
  additionalProperties: false
@@ -2472,6 +2492,7 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2472
2492
  personalSummaries: {
2473
2493
  type: 'array',
2474
2494
  items: {
2495
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'individualId', 'maritalStatusCode', 'religiousAffiliationName'],
2475
2496
  type: 'object',
2476
2497
  properties: {
2477
2498
  id: {
@@ -2496,16 +2517,16 @@ export const $UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityI
2496
2517
  format: 'date-time'
2497
2518
  },
2498
2519
  ethnicity: {
2499
- type: 'string',
2500
- nullable: true
2520
+ minLength: 1,
2521
+ type: 'string'
2501
2522
  },
2502
2523
  maritalStatusCode: {
2503
- type: 'string',
2504
- nullable: true
2524
+ minLength: 1,
2525
+ type: 'string'
2505
2526
  },
2506
2527
  religiousAffiliationName: {
2507
- type: 'string',
2508
- nullable: true
2528
+ minLength: 1,
2529
+ type: 'string'
2509
2530
  }
2510
2531
  },
2511
2532
  additionalProperties: false
@@ -2541,13 +2562,13 @@ export const $UpwithCrowd_FundraiserService_Enums_AffiliationTypeCode = {
2541
2562
  format: 'int32'
2542
2563
  } as const;
2543
2564
 
2544
- export const $UpwithCrowd_FundraiserService_Enums_BackerPartyType = {
2565
+ export const $UpwithCrowd_FundraiserService_Enums_EmailTypeCode = {
2545
2566
  enum: [0, 1],
2546
2567
  type: 'integer',
2547
2568
  format: 'int32'
2548
2569
  } as const;
2549
2570
 
2550
- export const $UpwithCrowd_FundraiserService_Enums_EmailTypeCode = {
2571
+ export const $UpwithCrowd_FundraiserService_Enums_FundraiserPartyType = {
2551
2572
  enum: [0, 1],
2552
2573
  type: 'integer',
2553
2574
  format: 'int32'
@@ -2566,6 +2587,7 @@ export const $UpwithCrowd_FundraiserService_Enums_TelephoneTypeCode = {
2566
2587
  } as const;
2567
2588
 
2568
2589
  export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2590
+ required: ['entityInformations'],
2569
2591
  type: 'object',
2570
2592
  properties: {
2571
2593
  extraProperties: {
@@ -2577,6 +2599,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2577
2599
  entityInformations: {
2578
2600
  type: 'array',
2579
2601
  items: {
2602
+ required: ['partyType'],
2580
2603
  type: 'object',
2581
2604
  properties: {
2582
2605
  extraProperties: {
@@ -2593,6 +2616,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2593
2616
  organizations: {
2594
2617
  type: 'array',
2595
2618
  items: {
2619
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
2596
2620
  type: 'object',
2597
2621
  properties: {
2598
2622
  extraProperties: {
@@ -2602,18 +2626,19 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2602
2626
  readOnly: true
2603
2627
  },
2604
2628
  name: {
2605
- type: 'string',
2606
- nullable: true
2629
+ minLength: 1,
2630
+ type: 'string'
2607
2631
  },
2608
2632
  taxpayerId: {
2609
- type: 'string',
2610
- nullable: true
2633
+ minLength: 1,
2634
+ type: 'string'
2611
2635
  },
2612
2636
  legalStatusCode: {
2613
- type: 'string',
2614
- nullable: true
2637
+ minLength: 1,
2638
+ type: 'string'
2615
2639
  },
2616
2640
  contactInformation: {
2641
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
2617
2642
  type: 'object',
2618
2643
  properties: {
2619
2644
  extraProperties: {
@@ -2633,6 +2658,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2633
2658
  telephones: {
2634
2659
  type: 'array',
2635
2660
  items: {
2661
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
2636
2662
  type: 'object',
2637
2663
  properties: {
2638
2664
  primaryFlag: {
@@ -2644,25 +2670,25 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2644
2670
  format: 'int32'
2645
2671
  },
2646
2672
  areaCode: {
2647
- type: 'string',
2648
- nullable: true
2673
+ minLength: 1,
2674
+ type: 'string'
2649
2675
  },
2650
2676
  localNumber: {
2651
- type: 'string',
2652
- nullable: true
2677
+ minLength: 1,
2678
+ type: 'string'
2653
2679
  },
2654
2680
  ituCountryCode: {
2655
- type: 'string',
2656
- nullable: true
2681
+ minLength: 1,
2682
+ type: 'string'
2657
2683
  }
2658
2684
  },
2659
2685
  additionalProperties: false
2660
- },
2661
- nullable: true
2686
+ }
2662
2687
  },
2663
2688
  addresses: {
2664
2689
  type: 'array',
2665
2690
  items: {
2691
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
2666
2692
  type: 'object',
2667
2693
  properties: {
2668
2694
  extraProperties: {
@@ -2677,40 +2703,40 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2677
2703
  format: 'int32'
2678
2704
  },
2679
2705
  addressLine: {
2680
- type: 'string',
2681
- nullable: true
2706
+ minLength: 1,
2707
+ type: 'string'
2682
2708
  },
2683
2709
  city: {
2684
- type: 'string',
2685
- nullable: true
2710
+ minLength: 1,
2711
+ type: 'string'
2686
2712
  },
2687
2713
  terriority: {
2688
- type: 'string',
2689
- nullable: true
2714
+ minLength: 1,
2715
+ type: 'string'
2690
2716
  },
2691
2717
  postalCode: {
2692
- type: 'string',
2693
- nullable: true
2718
+ minLength: 1,
2719
+ type: 'string'
2694
2720
  },
2695
2721
  country: {
2696
- type: 'string',
2697
- nullable: true
2722
+ minLength: 1,
2723
+ type: 'string'
2698
2724
  },
2699
2725
  fullAddress: {
2700
- type: 'string',
2701
- nullable: true
2726
+ minLength: 1,
2727
+ type: 'string'
2702
2728
  },
2703
2729
  primaryFlag: {
2704
2730
  type: 'boolean'
2705
2731
  }
2706
2732
  },
2707
2733
  additionalProperties: false
2708
- },
2709
- nullable: true
2734
+ }
2710
2735
  },
2711
2736
  emails: {
2712
2737
  type: 'array',
2713
2738
  items: {
2739
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
2714
2740
  type: 'object',
2715
2741
  properties: {
2716
2742
  extraProperties: {
@@ -2728,13 +2754,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2728
2754
  format: 'int32'
2729
2755
  },
2730
2756
  emailAddress: {
2731
- type: 'string',
2732
- nullable: true
2757
+ minLength: 1,
2758
+ type: 'string'
2733
2759
  }
2734
2760
  },
2735
2761
  additionalProperties: false
2736
- },
2737
- nullable: true
2762
+ }
2738
2763
  }
2739
2764
  },
2740
2765
  additionalProperties: false
@@ -2747,6 +2772,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2747
2772
  individuals: {
2748
2773
  type: 'array',
2749
2774
  items: {
2775
+ required: ['contactInformation', 'name'],
2750
2776
  type: 'object',
2751
2777
  properties: {
2752
2778
  extraProperties: {
@@ -2756,32 +2782,34 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2756
2782
  readOnly: true
2757
2783
  },
2758
2784
  name: {
2785
+ required: ['mailingName', 'name', 'officialName', 'salutation', 'suffix'],
2759
2786
  type: 'object',
2760
2787
  properties: {
2761
2788
  salutation: {
2762
- type: 'string',
2763
- nullable: true
2789
+ minLength: 1,
2790
+ type: 'string'
2764
2791
  },
2765
2792
  name: {
2766
- type: 'string',
2767
- nullable: true
2793
+ minLength: 1,
2794
+ type: 'string'
2768
2795
  },
2769
2796
  suffix: {
2770
- type: 'string',
2771
- nullable: true
2797
+ minLength: 1,
2798
+ type: 'string'
2772
2799
  },
2773
2800
  mailingName: {
2774
- type: 'string',
2775
- nullable: true
2801
+ minLength: 1,
2802
+ type: 'string'
2776
2803
  },
2777
2804
  officialName: {
2778
- type: 'string',
2779
- nullable: true
2805
+ minLength: 1,
2806
+ type: 'string'
2780
2807
  }
2781
2808
  },
2782
2809
  additionalProperties: false
2783
2810
  },
2784
2811
  contactInformation: {
2812
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
2785
2813
  type: 'object',
2786
2814
  properties: {
2787
2815
  extraProperties: {
@@ -2801,6 +2829,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2801
2829
  telephones: {
2802
2830
  type: 'array',
2803
2831
  items: {
2832
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
2804
2833
  type: 'object',
2805
2834
  properties: {
2806
2835
  primaryFlag: {
@@ -2812,25 +2841,25 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2812
2841
  format: 'int32'
2813
2842
  },
2814
2843
  areaCode: {
2815
- type: 'string',
2816
- nullable: true
2844
+ minLength: 1,
2845
+ type: 'string'
2817
2846
  },
2818
2847
  localNumber: {
2819
- type: 'string',
2820
- nullable: true
2848
+ minLength: 1,
2849
+ type: 'string'
2821
2850
  },
2822
2851
  ituCountryCode: {
2823
- type: 'string',
2824
- nullable: true
2852
+ minLength: 1,
2853
+ type: 'string'
2825
2854
  }
2826
2855
  },
2827
2856
  additionalProperties: false
2828
- },
2829
- nullable: true
2857
+ }
2830
2858
  },
2831
2859
  addresses: {
2832
2860
  type: 'array',
2833
2861
  items: {
2862
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
2834
2863
  type: 'object',
2835
2864
  properties: {
2836
2865
  extraProperties: {
@@ -2845,40 +2874,40 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2845
2874
  format: 'int32'
2846
2875
  },
2847
2876
  addressLine: {
2848
- type: 'string',
2849
- nullable: true
2877
+ minLength: 1,
2878
+ type: 'string'
2850
2879
  },
2851
2880
  city: {
2852
- type: 'string',
2853
- nullable: true
2881
+ minLength: 1,
2882
+ type: 'string'
2854
2883
  },
2855
2884
  terriority: {
2856
- type: 'string',
2857
- nullable: true
2885
+ minLength: 1,
2886
+ type: 'string'
2858
2887
  },
2859
2888
  postalCode: {
2860
- type: 'string',
2861
- nullable: true
2889
+ minLength: 1,
2890
+ type: 'string'
2862
2891
  },
2863
2892
  country: {
2864
- type: 'string',
2865
- nullable: true
2893
+ minLength: 1,
2894
+ type: 'string'
2866
2895
  },
2867
2896
  fullAddress: {
2868
- type: 'string',
2869
- nullable: true
2897
+ minLength: 1,
2898
+ type: 'string'
2870
2899
  },
2871
2900
  primaryFlag: {
2872
2901
  type: 'boolean'
2873
2902
  }
2874
2903
  },
2875
2904
  additionalProperties: false
2876
- },
2877
- nullable: true
2905
+ }
2878
2906
  },
2879
2907
  emails: {
2880
2908
  type: 'array',
2881
2909
  items: {
2910
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
2882
2911
  type: 'object',
2883
2912
  properties: {
2884
2913
  extraProperties: {
@@ -2896,13 +2925,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2896
2925
  format: 'int32'
2897
2926
  },
2898
2927
  emailAddress: {
2899
- type: 'string',
2900
- nullable: true
2928
+ minLength: 1,
2929
+ type: 'string'
2901
2930
  }
2902
2931
  },
2903
2932
  additionalProperties: false
2904
- },
2905
- nullable: true
2933
+ }
2906
2934
  }
2907
2935
  },
2908
2936
  additionalProperties: false
@@ -2910,6 +2938,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2910
2938
  personalSummaries: {
2911
2939
  type: 'array',
2912
2940
  items: {
2941
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'maritalStatusCode', 'religiousAffiliationName'],
2913
2942
  type: 'object',
2914
2943
  properties: {
2915
2944
  genderType: {
@@ -2926,16 +2955,16 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2926
2955
  format: 'date-time'
2927
2956
  },
2928
2957
  ethnicity: {
2929
- type: 'string',
2930
- nullable: true
2958
+ minLength: 1,
2959
+ type: 'string'
2931
2960
  },
2932
2961
  maritalStatusCode: {
2933
- type: 'string',
2934
- nullable: true
2962
+ minLength: 1,
2963
+ type: 'string'
2935
2964
  },
2936
2965
  religiousAffiliationName: {
2937
- type: 'string',
2938
- nullable: true
2966
+ minLength: 1,
2967
+ type: 'string'
2939
2968
  }
2940
2969
  },
2941
2970
  additionalProperties: false
@@ -2949,12 +2978,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2949
2978
  }
2950
2979
  },
2951
2980
  additionalProperties: false
2952
- },
2953
- nullable: true
2981
+ }
2954
2982
  },
2955
2983
  affiliations: {
2956
2984
  type: 'array',
2957
2985
  items: {
2986
+ required: ['affiliationTypeCode', 'description', 'name'],
2958
2987
  type: 'object',
2959
2988
  properties: {
2960
2989
  extraProperties: {
@@ -2964,12 +2993,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
2964
2993
  readOnly: true
2965
2994
  },
2966
2995
  name: {
2967
- type: 'string',
2968
- nullable: true
2996
+ minLength: 1,
2997
+ type: 'string'
2969
2998
  },
2970
2999
  description: {
2971
- type: 'string',
2972
- nullable: true
3000
+ minLength: 1,
3001
+ type: 'string'
2973
3002
  },
2974
3003
  affiliationTypeCode: {
2975
3004
  enum: [0, 1, 2],
@@ -2998,6 +3027,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
2998
3027
  entityInformations: {
2999
3028
  type: 'array',
3000
3029
  items: {
3030
+ required: ['partyType'],
3001
3031
  type: 'object',
3002
3032
  properties: {
3003
3033
  extraProperties: {
@@ -3014,6 +3044,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3014
3044
  organizations: {
3015
3045
  type: 'array',
3016
3046
  items: {
3047
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
3017
3048
  type: 'object',
3018
3049
  properties: {
3019
3050
  extraProperties: {
@@ -3023,18 +3054,19 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3023
3054
  readOnly: true
3024
3055
  },
3025
3056
  name: {
3026
- type: 'string',
3027
- nullable: true
3057
+ minLength: 1,
3058
+ type: 'string'
3028
3059
  },
3029
3060
  taxpayerId: {
3030
- type: 'string',
3031
- nullable: true
3061
+ minLength: 1,
3062
+ type: 'string'
3032
3063
  },
3033
3064
  legalStatusCode: {
3034
- type: 'string',
3035
- nullable: true
3065
+ minLength: 1,
3066
+ type: 'string'
3036
3067
  },
3037
3068
  contactInformation: {
3069
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
3038
3070
  type: 'object',
3039
3071
  properties: {
3040
3072
  extraProperties: {
@@ -3054,6 +3086,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3054
3086
  telephones: {
3055
3087
  type: 'array',
3056
3088
  items: {
3089
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
3057
3090
  type: 'object',
3058
3091
  properties: {
3059
3092
  primaryFlag: {
@@ -3065,25 +3098,25 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3065
3098
  format: 'int32'
3066
3099
  },
3067
3100
  areaCode: {
3068
- type: 'string',
3069
- nullable: true
3101
+ minLength: 1,
3102
+ type: 'string'
3070
3103
  },
3071
3104
  localNumber: {
3072
- type: 'string',
3073
- nullable: true
3105
+ minLength: 1,
3106
+ type: 'string'
3074
3107
  },
3075
3108
  ituCountryCode: {
3076
- type: 'string',
3077
- nullable: true
3109
+ minLength: 1,
3110
+ type: 'string'
3078
3111
  }
3079
3112
  },
3080
3113
  additionalProperties: false
3081
- },
3082
- nullable: true
3114
+ }
3083
3115
  },
3084
3116
  addresses: {
3085
3117
  type: 'array',
3086
3118
  items: {
3119
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
3087
3120
  type: 'object',
3088
3121
  properties: {
3089
3122
  extraProperties: {
@@ -3098,40 +3131,40 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3098
3131
  format: 'int32'
3099
3132
  },
3100
3133
  addressLine: {
3101
- type: 'string',
3102
- nullable: true
3134
+ minLength: 1,
3135
+ type: 'string'
3103
3136
  },
3104
3137
  city: {
3105
- type: 'string',
3106
- nullable: true
3138
+ minLength: 1,
3139
+ type: 'string'
3107
3140
  },
3108
3141
  terriority: {
3109
- type: 'string',
3110
- nullable: true
3142
+ minLength: 1,
3143
+ type: 'string'
3111
3144
  },
3112
3145
  postalCode: {
3113
- type: 'string',
3114
- nullable: true
3146
+ minLength: 1,
3147
+ type: 'string'
3115
3148
  },
3116
3149
  country: {
3117
- type: 'string',
3118
- nullable: true
3150
+ minLength: 1,
3151
+ type: 'string'
3119
3152
  },
3120
3153
  fullAddress: {
3121
- type: 'string',
3122
- nullable: true
3154
+ minLength: 1,
3155
+ type: 'string'
3123
3156
  },
3124
3157
  primaryFlag: {
3125
3158
  type: 'boolean'
3126
3159
  }
3127
3160
  },
3128
3161
  additionalProperties: false
3129
- },
3130
- nullable: true
3162
+ }
3131
3163
  },
3132
3164
  emails: {
3133
3165
  type: 'array',
3134
3166
  items: {
3167
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
3135
3168
  type: 'object',
3136
3169
  properties: {
3137
3170
  extraProperties: {
@@ -3149,13 +3182,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3149
3182
  format: 'int32'
3150
3183
  },
3151
3184
  emailAddress: {
3152
- type: 'string',
3153
- nullable: true
3185
+ minLength: 1,
3186
+ type: 'string'
3154
3187
  }
3155
3188
  },
3156
3189
  additionalProperties: false
3157
- },
3158
- nullable: true
3190
+ }
3159
3191
  }
3160
3192
  },
3161
3193
  additionalProperties: false
@@ -3168,6 +3200,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3168
3200
  individuals: {
3169
3201
  type: 'array',
3170
3202
  items: {
3203
+ required: ['contactInformation', 'name'],
3171
3204
  type: 'object',
3172
3205
  properties: {
3173
3206
  extraProperties: {
@@ -3177,32 +3210,34 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3177
3210
  readOnly: true
3178
3211
  },
3179
3212
  name: {
3213
+ required: ['mailingName', 'name', 'officialName', 'salutation', 'suffix'],
3180
3214
  type: 'object',
3181
3215
  properties: {
3182
3216
  salutation: {
3183
- type: 'string',
3184
- nullable: true
3217
+ minLength: 1,
3218
+ type: 'string'
3185
3219
  },
3186
3220
  name: {
3187
- type: 'string',
3188
- nullable: true
3221
+ minLength: 1,
3222
+ type: 'string'
3189
3223
  },
3190
3224
  suffix: {
3191
- type: 'string',
3192
- nullable: true
3225
+ minLength: 1,
3226
+ type: 'string'
3193
3227
  },
3194
3228
  mailingName: {
3195
- type: 'string',
3196
- nullable: true
3229
+ minLength: 1,
3230
+ type: 'string'
3197
3231
  },
3198
3232
  officialName: {
3199
- type: 'string',
3200
- nullable: true
3233
+ minLength: 1,
3234
+ type: 'string'
3201
3235
  }
3202
3236
  },
3203
3237
  additionalProperties: false
3204
3238
  },
3205
3239
  contactInformation: {
3240
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
3206
3241
  type: 'object',
3207
3242
  properties: {
3208
3243
  extraProperties: {
@@ -3222,6 +3257,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3222
3257
  telephones: {
3223
3258
  type: 'array',
3224
3259
  items: {
3260
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
3225
3261
  type: 'object',
3226
3262
  properties: {
3227
3263
  primaryFlag: {
@@ -3233,25 +3269,25 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3233
3269
  format: 'int32'
3234
3270
  },
3235
3271
  areaCode: {
3236
- type: 'string',
3237
- nullable: true
3272
+ minLength: 1,
3273
+ type: 'string'
3238
3274
  },
3239
3275
  localNumber: {
3240
- type: 'string',
3241
- nullable: true
3276
+ minLength: 1,
3277
+ type: 'string'
3242
3278
  },
3243
3279
  ituCountryCode: {
3244
- type: 'string',
3245
- nullable: true
3280
+ minLength: 1,
3281
+ type: 'string'
3246
3282
  }
3247
3283
  },
3248
3284
  additionalProperties: false
3249
- },
3250
- nullable: true
3285
+ }
3251
3286
  },
3252
3287
  addresses: {
3253
3288
  type: 'array',
3254
3289
  items: {
3290
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
3255
3291
  type: 'object',
3256
3292
  properties: {
3257
3293
  extraProperties: {
@@ -3266,40 +3302,40 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3266
3302
  format: 'int32'
3267
3303
  },
3268
3304
  addressLine: {
3269
- type: 'string',
3270
- nullable: true
3305
+ minLength: 1,
3306
+ type: 'string'
3271
3307
  },
3272
3308
  city: {
3273
- type: 'string',
3274
- nullable: true
3309
+ minLength: 1,
3310
+ type: 'string'
3275
3311
  },
3276
3312
  terriority: {
3277
- type: 'string',
3278
- nullable: true
3313
+ minLength: 1,
3314
+ type: 'string'
3279
3315
  },
3280
3316
  postalCode: {
3281
- type: 'string',
3282
- nullable: true
3317
+ minLength: 1,
3318
+ type: 'string'
3283
3319
  },
3284
3320
  country: {
3285
- type: 'string',
3286
- nullable: true
3321
+ minLength: 1,
3322
+ type: 'string'
3287
3323
  },
3288
3324
  fullAddress: {
3289
- type: 'string',
3290
- nullable: true
3325
+ minLength: 1,
3326
+ type: 'string'
3291
3327
  },
3292
3328
  primaryFlag: {
3293
3329
  type: 'boolean'
3294
3330
  }
3295
3331
  },
3296
3332
  additionalProperties: false
3297
- },
3298
- nullable: true
3333
+ }
3299
3334
  },
3300
3335
  emails: {
3301
3336
  type: 'array',
3302
3337
  items: {
3338
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
3303
3339
  type: 'object',
3304
3340
  properties: {
3305
3341
  extraProperties: {
@@ -3317,13 +3353,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3317
3353
  format: 'int32'
3318
3354
  },
3319
3355
  emailAddress: {
3320
- type: 'string',
3321
- nullable: true
3356
+ minLength: 1,
3357
+ type: 'string'
3322
3358
  }
3323
3359
  },
3324
3360
  additionalProperties: false
3325
- },
3326
- nullable: true
3361
+ }
3327
3362
  }
3328
3363
  },
3329
3364
  additionalProperties: false
@@ -3331,6 +3366,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3331
3366
  personalSummaries: {
3332
3367
  type: 'array',
3333
3368
  items: {
3369
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'maritalStatusCode', 'religiousAffiliationName'],
3334
3370
  type: 'object',
3335
3371
  properties: {
3336
3372
  genderType: {
@@ -3347,16 +3383,16 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3347
3383
  format: 'date-time'
3348
3384
  },
3349
3385
  ethnicity: {
3350
- type: 'string',
3351
- nullable: true
3386
+ minLength: 1,
3387
+ type: 'string'
3352
3388
  },
3353
3389
  maritalStatusCode: {
3354
- type: 'string',
3355
- nullable: true
3390
+ minLength: 1,
3391
+ type: 'string'
3356
3392
  },
3357
3393
  religiousAffiliationName: {
3358
- type: 'string',
3359
- nullable: true
3394
+ minLength: 1,
3395
+ type: 'string'
3360
3396
  }
3361
3397
  },
3362
3398
  additionalProperties: false
@@ -3375,6 +3411,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3375
3411
  affiliations: {
3376
3412
  type: 'array',
3377
3413
  items: {
3414
+ required: ['affiliationTypeCode', 'description', 'name'],
3378
3415
  type: 'object',
3379
3416
  properties: {
3380
3417
  extraProperties: {
@@ -3384,12 +3421,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithComp
3384
3421
  readOnly: true
3385
3422
  },
3386
3423
  name: {
3387
- type: 'string',
3388
- nullable: true
3424
+ minLength: 1,
3425
+ type: 'string'
3389
3426
  },
3390
3427
  description: {
3391
- type: 'string',
3392
- nullable: true
3428
+ minLength: 1,
3429
+ type: 'string'
3393
3430
  },
3394
3431
  affiliationTypeCode: {
3395
3432
  enum: [0, 1, 2],
@@ -4346,7 +4383,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_FundraiserDto = {
4346
4383
  additionalProperties: false
4347
4384
  } as const;
4348
4385
 
4349
- export const $UpwithCrowd_FundraiserService_Fundraisers_ProfileDto = {
4386
+ export const $UpwithCrowd_FundraiserService_Fundraisers_FundraiserProfileDto = {
4350
4387
  type: 'object',
4351
4388
  properties: {
4352
4389
  id: {
@@ -4356,12 +4393,85 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_ProfileDto = {
4356
4393
  name: {
4357
4394
  type: 'string',
4358
4395
  nullable: true
4396
+ },
4397
+ fundraiserType: {
4398
+ enum: [0, 1],
4399
+ type: 'integer',
4400
+ format: 'int32'
4401
+ },
4402
+ fundraiserTypeDescription: {
4403
+ type: 'string',
4404
+ nullable: true
4405
+ },
4406
+ affiliation: {
4407
+ type: 'object',
4408
+ properties: {
4409
+ id: {
4410
+ type: 'string',
4411
+ format: 'uuid'
4412
+ },
4413
+ creationTime: {
4414
+ type: 'string',
4415
+ format: 'date-time'
4416
+ },
4417
+ creatorId: {
4418
+ type: 'string',
4419
+ format: 'uuid',
4420
+ nullable: true
4421
+ },
4422
+ lastModificationTime: {
4423
+ type: 'string',
4424
+ format: 'date-time',
4425
+ nullable: true
4426
+ },
4427
+ lastModifierId: {
4428
+ type: 'string',
4429
+ format: 'uuid',
4430
+ nullable: true
4431
+ },
4432
+ isDeleted: {
4433
+ type: 'boolean'
4434
+ },
4435
+ deleterId: {
4436
+ type: 'string',
4437
+ format: 'uuid',
4438
+ nullable: true
4439
+ },
4440
+ deletionTime: {
4441
+ type: 'string',
4442
+ format: 'date-time',
4443
+ nullable: true
4444
+ },
4445
+ fundraiserId: {
4446
+ type: 'string',
4447
+ format: 'uuid'
4448
+ },
4449
+ name: {
4450
+ type: 'string',
4451
+ nullable: true
4452
+ },
4453
+ description: {
4454
+ type: 'string',
4455
+ nullable: true
4456
+ },
4457
+ affiliationTypeCode: {
4458
+ enum: [0, 1, 2],
4459
+ type: 'integer',
4460
+ format: 'int32'
4461
+ },
4462
+ partyId: {
4463
+ type: 'string',
4464
+ format: 'uuid'
4465
+ }
4466
+ },
4467
+ additionalProperties: false
4359
4468
  }
4360
4469
  },
4361
4470
  additionalProperties: false
4362
4471
  } as const;
4363
4472
 
4364
4473
  export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4474
+ required: ['entityInformations'],
4365
4475
  type: 'object',
4366
4476
  properties: {
4367
4477
  extraProperties: {
@@ -4373,6 +4483,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4373
4483
  entityInformations: {
4374
4484
  type: 'array',
4375
4485
  items: {
4486
+ required: ['partyType'],
4376
4487
  type: 'object',
4377
4488
  properties: {
4378
4489
  partyType: {
@@ -4383,21 +4494,23 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4383
4494
  organizations: {
4384
4495
  type: 'array',
4385
4496
  items: {
4497
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
4386
4498
  type: 'object',
4387
4499
  properties: {
4388
4500
  name: {
4389
- type: 'string',
4390
- nullable: true
4501
+ minLength: 1,
4502
+ type: 'string'
4391
4503
  },
4392
4504
  taxpayerId: {
4393
- type: 'string',
4394
- nullable: true
4505
+ minLength: 1,
4506
+ type: 'string'
4395
4507
  },
4396
4508
  legalStatusCode: {
4397
- type: 'string',
4398
- nullable: true
4509
+ minLength: 1,
4510
+ type: 'string'
4399
4511
  },
4400
4512
  contactInformation: {
4513
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
4401
4514
  type: 'object',
4402
4515
  properties: {
4403
4516
  extraProperties: {
@@ -4417,6 +4530,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4417
4530
  telephones: {
4418
4531
  type: 'array',
4419
4532
  items: {
4533
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
4420
4534
  type: 'object',
4421
4535
  properties: {
4422
4536
  extraProperties: {
@@ -4434,25 +4548,25 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4434
4548
  format: 'int32'
4435
4549
  },
4436
4550
  areaCode: {
4437
- type: 'string',
4438
- nullable: true
4551
+ minLength: 1,
4552
+ type: 'string'
4439
4553
  },
4440
4554
  localNumber: {
4441
- type: 'string',
4442
- nullable: true
4555
+ minLength: 1,
4556
+ type: 'string'
4443
4557
  },
4444
4558
  ituCountryCode: {
4445
- type: 'string',
4446
- nullable: true
4559
+ minLength: 1,
4560
+ type: 'string'
4447
4561
  }
4448
4562
  },
4449
4563
  additionalProperties: false
4450
- },
4451
- nullable: true
4564
+ }
4452
4565
  },
4453
4566
  addresses: {
4454
4567
  type: 'array',
4455
4568
  items: {
4569
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
4456
4570
  type: 'object',
4457
4571
  properties: {
4458
4572
  extraProperties: {
@@ -4467,40 +4581,40 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4467
4581
  format: 'int32'
4468
4582
  },
4469
4583
  addressLine: {
4470
- type: 'string',
4471
- nullable: true
4584
+ minLength: 1,
4585
+ type: 'string'
4472
4586
  },
4473
4587
  city: {
4474
- type: 'string',
4475
- nullable: true
4588
+ minLength: 1,
4589
+ type: 'string'
4476
4590
  },
4477
4591
  terriority: {
4478
- type: 'string',
4479
- nullable: true
4592
+ minLength: 1,
4593
+ type: 'string'
4480
4594
  },
4481
4595
  postalCode: {
4482
- type: 'string',
4483
- nullable: true
4596
+ minLength: 1,
4597
+ type: 'string'
4484
4598
  },
4485
4599
  country: {
4486
- type: 'string',
4487
- nullable: true
4600
+ minLength: 1,
4601
+ type: 'string'
4488
4602
  },
4489
4603
  fullAddress: {
4490
- type: 'string',
4491
- nullable: true
4604
+ minLength: 1,
4605
+ type: 'string'
4492
4606
  },
4493
4607
  primaryFlag: {
4494
4608
  type: 'boolean'
4495
4609
  }
4496
4610
  },
4497
4611
  additionalProperties: false
4498
- },
4499
- nullable: true
4612
+ }
4500
4613
  },
4501
4614
  emails: {
4502
4615
  type: 'array',
4503
4616
  items: {
4617
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
4504
4618
  type: 'object',
4505
4619
  properties: {
4506
4620
  extraProperties: {
@@ -4518,13 +4632,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4518
4632
  format: 'int32'
4519
4633
  },
4520
4634
  emailAddress: {
4521
- type: 'string',
4522
- nullable: true
4635
+ minLength: 1,
4636
+ type: 'string'
4523
4637
  }
4524
4638
  },
4525
4639
  additionalProperties: false
4526
- },
4527
- nullable: true
4640
+ }
4528
4641
  }
4529
4642
  },
4530
4643
  additionalProperties: false
@@ -4537,6 +4650,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4537
4650
  individuals: {
4538
4651
  type: 'array',
4539
4652
  items: {
4653
+ required: ['contactInformation', 'contactInformationId', 'entityInformationTypeId', 'name'],
4540
4654
  type: 'object',
4541
4655
  properties: {
4542
4656
  extraProperties: {
@@ -4546,6 +4660,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4546
4660
  readOnly: true
4547
4661
  },
4548
4662
  name: {
4663
+ required: ['individualId', 'mailingName', 'name', 'officialName', 'salutation', 'suffix'],
4549
4664
  type: 'object',
4550
4665
  properties: {
4551
4666
  individualId: {
@@ -4553,29 +4668,30 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4553
4668
  format: 'uuid'
4554
4669
  },
4555
4670
  salutation: {
4556
- type: 'string',
4557
- nullable: true
4671
+ minLength: 1,
4672
+ type: 'string'
4558
4673
  },
4559
4674
  name: {
4560
- type: 'string',
4561
- nullable: true
4675
+ minLength: 1,
4676
+ type: 'string'
4562
4677
  },
4563
4678
  suffix: {
4564
- type: 'string',
4565
- nullable: true
4679
+ minLength: 1,
4680
+ type: 'string'
4566
4681
  },
4567
4682
  mailingName: {
4568
- type: 'string',
4569
- nullable: true
4683
+ minLength: 1,
4684
+ type: 'string'
4570
4685
  },
4571
4686
  officialName: {
4572
- type: 'string',
4573
- nullable: true
4687
+ minLength: 1,
4688
+ type: 'string'
4574
4689
  }
4575
4690
  },
4576
4691
  additionalProperties: false
4577
4692
  },
4578
4693
  contactInformation: {
4694
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
4579
4695
  type: 'object',
4580
4696
  properties: {
4581
4697
  extraProperties: {
@@ -4595,6 +4711,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4595
4711
  telephones: {
4596
4712
  type: 'array',
4597
4713
  items: {
4714
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
4598
4715
  type: 'object',
4599
4716
  properties: {
4600
4717
  extraProperties: {
@@ -4612,25 +4729,25 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4612
4729
  format: 'int32'
4613
4730
  },
4614
4731
  areaCode: {
4615
- type: 'string',
4616
- nullable: true
4732
+ minLength: 1,
4733
+ type: 'string'
4617
4734
  },
4618
4735
  localNumber: {
4619
- type: 'string',
4620
- nullable: true
4736
+ minLength: 1,
4737
+ type: 'string'
4621
4738
  },
4622
4739
  ituCountryCode: {
4623
- type: 'string',
4624
- nullable: true
4740
+ minLength: 1,
4741
+ type: 'string'
4625
4742
  }
4626
4743
  },
4627
4744
  additionalProperties: false
4628
- },
4629
- nullable: true
4745
+ }
4630
4746
  },
4631
4747
  addresses: {
4632
4748
  type: 'array',
4633
4749
  items: {
4750
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
4634
4751
  type: 'object',
4635
4752
  properties: {
4636
4753
  extraProperties: {
@@ -4645,40 +4762,40 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4645
4762
  format: 'int32'
4646
4763
  },
4647
4764
  addressLine: {
4648
- type: 'string',
4649
- nullable: true
4765
+ minLength: 1,
4766
+ type: 'string'
4650
4767
  },
4651
4768
  city: {
4652
- type: 'string',
4653
- nullable: true
4769
+ minLength: 1,
4770
+ type: 'string'
4654
4771
  },
4655
4772
  terriority: {
4656
- type: 'string',
4657
- nullable: true
4773
+ minLength: 1,
4774
+ type: 'string'
4658
4775
  },
4659
4776
  postalCode: {
4660
- type: 'string',
4661
- nullable: true
4777
+ minLength: 1,
4778
+ type: 'string'
4662
4779
  },
4663
4780
  country: {
4664
- type: 'string',
4665
- nullable: true
4781
+ minLength: 1,
4782
+ type: 'string'
4666
4783
  },
4667
4784
  fullAddress: {
4668
- type: 'string',
4669
- nullable: true
4785
+ minLength: 1,
4786
+ type: 'string'
4670
4787
  },
4671
4788
  primaryFlag: {
4672
4789
  type: 'boolean'
4673
4790
  }
4674
4791
  },
4675
4792
  additionalProperties: false
4676
- },
4677
- nullable: true
4793
+ }
4678
4794
  },
4679
4795
  emails: {
4680
4796
  type: 'array',
4681
4797
  items: {
4798
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
4682
4799
  type: 'object',
4683
4800
  properties: {
4684
4801
  extraProperties: {
@@ -4696,13 +4813,12 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4696
4813
  format: 'int32'
4697
4814
  },
4698
4815
  emailAddress: {
4699
- type: 'string',
4700
- nullable: true
4816
+ minLength: 1,
4817
+ type: 'string'
4701
4818
  }
4702
4819
  },
4703
4820
  additionalProperties: false
4704
- },
4705
- nullable: true
4821
+ }
4706
4822
  }
4707
4823
  },
4708
4824
  additionalProperties: false
@@ -4710,6 +4826,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4710
4826
  personalSummaries: {
4711
4827
  type: 'array',
4712
4828
  items: {
4829
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'individualId', 'maritalStatusCode', 'religiousAffiliationName'],
4713
4830
  type: 'object',
4714
4831
  properties: {
4715
4832
  id: {
@@ -4734,16 +4851,16 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4734
4851
  format: 'date-time'
4735
4852
  },
4736
4853
  ethnicity: {
4737
- type: 'string',
4738
- nullable: true
4854
+ minLength: 1,
4855
+ type: 'string'
4739
4856
  },
4740
4857
  maritalStatusCode: {
4741
- type: 'string',
4742
- nullable: true
4858
+ minLength: 1,
4859
+ type: 'string'
4743
4860
  },
4744
4861
  religiousAffiliationName: {
4745
- type: 'string',
4746
- nullable: true
4862
+ minLength: 1,
4863
+ type: 'string'
4747
4864
  }
4748
4865
  },
4749
4866
  additionalProperties: false
@@ -4765,8 +4882,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4765
4882
  }
4766
4883
  },
4767
4884
  additionalProperties: false
4768
- },
4769
- nullable: true
4885
+ }
4770
4886
  },
4771
4887
  affiliations: {
4772
4888
  type: 'array',
@@ -4814,6 +4930,7 @@ export const $UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
4814
4930
  } as const;
4815
4931
 
4816
4932
  export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4933
+ required: ['contactInformation', 'name'],
4817
4934
  type: 'object',
4818
4935
  properties: {
4819
4936
  extraProperties: {
@@ -4823,32 +4940,34 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4823
4940
  readOnly: true
4824
4941
  },
4825
4942
  name: {
4943
+ required: ['mailingName', 'name', 'officialName', 'salutation', 'suffix'],
4826
4944
  type: 'object',
4827
4945
  properties: {
4828
4946
  salutation: {
4829
- type: 'string',
4830
- nullable: true
4947
+ minLength: 1,
4948
+ type: 'string'
4831
4949
  },
4832
4950
  name: {
4833
- type: 'string',
4834
- nullable: true
4951
+ minLength: 1,
4952
+ type: 'string'
4835
4953
  },
4836
4954
  suffix: {
4837
- type: 'string',
4838
- nullable: true
4955
+ minLength: 1,
4956
+ type: 'string'
4839
4957
  },
4840
4958
  mailingName: {
4841
- type: 'string',
4842
- nullable: true
4959
+ minLength: 1,
4960
+ type: 'string'
4843
4961
  },
4844
4962
  officialName: {
4845
- type: 'string',
4846
- nullable: true
4963
+ minLength: 1,
4964
+ type: 'string'
4847
4965
  }
4848
4966
  },
4849
4967
  additionalProperties: false
4850
4968
  },
4851
4969
  contactInformation: {
4970
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
4852
4971
  type: 'object',
4853
4972
  properties: {
4854
4973
  extraProperties: {
@@ -4868,6 +4987,7 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4868
4987
  telephones: {
4869
4988
  type: 'array',
4870
4989
  items: {
4990
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
4871
4991
  type: 'object',
4872
4992
  properties: {
4873
4993
  primaryFlag: {
@@ -4879,25 +4999,25 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4879
4999
  format: 'int32'
4880
5000
  },
4881
5001
  areaCode: {
4882
- type: 'string',
4883
- nullable: true
5002
+ minLength: 1,
5003
+ type: 'string'
4884
5004
  },
4885
5005
  localNumber: {
4886
- type: 'string',
4887
- nullable: true
5006
+ minLength: 1,
5007
+ type: 'string'
4888
5008
  },
4889
5009
  ituCountryCode: {
4890
- type: 'string',
4891
- nullable: true
5010
+ minLength: 1,
5011
+ type: 'string'
4892
5012
  }
4893
5013
  },
4894
5014
  additionalProperties: false
4895
- },
4896
- nullable: true
5015
+ }
4897
5016
  },
4898
5017
  addresses: {
4899
5018
  type: 'array',
4900
5019
  items: {
5020
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
4901
5021
  type: 'object',
4902
5022
  properties: {
4903
5023
  extraProperties: {
@@ -4912,40 +5032,40 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4912
5032
  format: 'int32'
4913
5033
  },
4914
5034
  addressLine: {
4915
- type: 'string',
4916
- nullable: true
5035
+ minLength: 1,
5036
+ type: 'string'
4917
5037
  },
4918
5038
  city: {
4919
- type: 'string',
4920
- nullable: true
5039
+ minLength: 1,
5040
+ type: 'string'
4921
5041
  },
4922
5042
  terriority: {
4923
- type: 'string',
4924
- nullable: true
5043
+ minLength: 1,
5044
+ type: 'string'
4925
5045
  },
4926
5046
  postalCode: {
4927
- type: 'string',
4928
- nullable: true
5047
+ minLength: 1,
5048
+ type: 'string'
4929
5049
  },
4930
5050
  country: {
4931
- type: 'string',
4932
- nullable: true
5051
+ minLength: 1,
5052
+ type: 'string'
4933
5053
  },
4934
5054
  fullAddress: {
4935
- type: 'string',
4936
- nullable: true
5055
+ minLength: 1,
5056
+ type: 'string'
4937
5057
  },
4938
5058
  primaryFlag: {
4939
5059
  type: 'boolean'
4940
5060
  }
4941
5061
  },
4942
5062
  additionalProperties: false
4943
- },
4944
- nullable: true
5063
+ }
4945
5064
  },
4946
5065
  emails: {
4947
5066
  type: 'array',
4948
5067
  items: {
5068
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
4949
5069
  type: 'object',
4950
5070
  properties: {
4951
5071
  extraProperties: {
@@ -4963,13 +5083,12 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4963
5083
  format: 'int32'
4964
5084
  },
4965
5085
  emailAddress: {
4966
- type: 'string',
4967
- nullable: true
5086
+ minLength: 1,
5087
+ type: 'string'
4968
5088
  }
4969
5089
  },
4970
5090
  additionalProperties: false
4971
- },
4972
- nullable: true
5091
+ }
4973
5092
  }
4974
5093
  },
4975
5094
  additionalProperties: false
@@ -4977,6 +5096,7 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4977
5096
  personalSummaries: {
4978
5097
  type: 'array',
4979
5098
  items: {
5099
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'maritalStatusCode', 'religiousAffiliationName'],
4980
5100
  type: 'object',
4981
5101
  properties: {
4982
5102
  genderType: {
@@ -4993,16 +5113,16 @@ export const $UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
4993
5113
  format: 'date-time'
4994
5114
  },
4995
5115
  ethnicity: {
4996
- type: 'string',
4997
- nullable: true
5116
+ minLength: 1,
5117
+ type: 'string'
4998
5118
  },
4999
5119
  maritalStatusCode: {
5000
- type: 'string',
5001
- nullable: true
5120
+ minLength: 1,
5121
+ type: 'string'
5002
5122
  },
5003
5123
  religiousAffiliationName: {
5004
- type: 'string',
5005
- nullable: true
5124
+ minLength: 1,
5125
+ type: 'string'
5006
5126
  }
5007
5127
  },
5008
5128
  additionalProperties: false
@@ -5470,6 +5590,7 @@ export const $UpwithCrowd_FundraiserService_Individuals_IndividualDto = {
5470
5590
  } as const;
5471
5591
 
5472
5592
  export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5593
+ required: ['contactInformation', 'contactInformationId', 'entityInformationTypeId', 'name'],
5473
5594
  type: 'object',
5474
5595
  properties: {
5475
5596
  extraProperties: {
@@ -5479,6 +5600,7 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5479
5600
  readOnly: true
5480
5601
  },
5481
5602
  name: {
5603
+ required: ['individualId', 'mailingName', 'name', 'officialName', 'salutation', 'suffix'],
5482
5604
  type: 'object',
5483
5605
  properties: {
5484
5606
  individualId: {
@@ -5486,29 +5608,30 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5486
5608
  format: 'uuid'
5487
5609
  },
5488
5610
  salutation: {
5489
- type: 'string',
5490
- nullable: true
5611
+ minLength: 1,
5612
+ type: 'string'
5491
5613
  },
5492
5614
  name: {
5493
- type: 'string',
5494
- nullable: true
5615
+ minLength: 1,
5616
+ type: 'string'
5495
5617
  },
5496
5618
  suffix: {
5497
- type: 'string',
5498
- nullable: true
5619
+ minLength: 1,
5620
+ type: 'string'
5499
5621
  },
5500
5622
  mailingName: {
5501
- type: 'string',
5502
- nullable: true
5623
+ minLength: 1,
5624
+ type: 'string'
5503
5625
  },
5504
5626
  officialName: {
5505
- type: 'string',
5506
- nullable: true
5627
+ minLength: 1,
5628
+ type: 'string'
5507
5629
  }
5508
5630
  },
5509
5631
  additionalProperties: false
5510
5632
  },
5511
5633
  contactInformation: {
5634
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
5512
5635
  type: 'object',
5513
5636
  properties: {
5514
5637
  extraProperties: {
@@ -5528,6 +5651,7 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5528
5651
  telephones: {
5529
5652
  type: 'array',
5530
5653
  items: {
5654
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
5531
5655
  type: 'object',
5532
5656
  properties: {
5533
5657
  extraProperties: {
@@ -5545,25 +5669,25 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5545
5669
  format: 'int32'
5546
5670
  },
5547
5671
  areaCode: {
5548
- type: 'string',
5549
- nullable: true
5672
+ minLength: 1,
5673
+ type: 'string'
5550
5674
  },
5551
5675
  localNumber: {
5552
- type: 'string',
5553
- nullable: true
5676
+ minLength: 1,
5677
+ type: 'string'
5554
5678
  },
5555
5679
  ituCountryCode: {
5556
- type: 'string',
5557
- nullable: true
5680
+ minLength: 1,
5681
+ type: 'string'
5558
5682
  }
5559
5683
  },
5560
5684
  additionalProperties: false
5561
- },
5562
- nullable: true
5685
+ }
5563
5686
  },
5564
5687
  addresses: {
5565
5688
  type: 'array',
5566
5689
  items: {
5690
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
5567
5691
  type: 'object',
5568
5692
  properties: {
5569
5693
  extraProperties: {
@@ -5578,40 +5702,40 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5578
5702
  format: 'int32'
5579
5703
  },
5580
5704
  addressLine: {
5581
- type: 'string',
5582
- nullable: true
5705
+ minLength: 1,
5706
+ type: 'string'
5583
5707
  },
5584
5708
  city: {
5585
- type: 'string',
5586
- nullable: true
5709
+ minLength: 1,
5710
+ type: 'string'
5587
5711
  },
5588
5712
  terriority: {
5589
- type: 'string',
5590
- nullable: true
5713
+ minLength: 1,
5714
+ type: 'string'
5591
5715
  },
5592
5716
  postalCode: {
5593
- type: 'string',
5594
- nullable: true
5717
+ minLength: 1,
5718
+ type: 'string'
5595
5719
  },
5596
5720
  country: {
5597
- type: 'string',
5598
- nullable: true
5721
+ minLength: 1,
5722
+ type: 'string'
5599
5723
  },
5600
5724
  fullAddress: {
5601
- type: 'string',
5602
- nullable: true
5725
+ minLength: 1,
5726
+ type: 'string'
5603
5727
  },
5604
5728
  primaryFlag: {
5605
5729
  type: 'boolean'
5606
5730
  }
5607
5731
  },
5608
5732
  additionalProperties: false
5609
- },
5610
- nullable: true
5733
+ }
5611
5734
  },
5612
5735
  emails: {
5613
5736
  type: 'array',
5614
5737
  items: {
5738
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
5615
5739
  type: 'object',
5616
5740
  properties: {
5617
5741
  extraProperties: {
@@ -5629,13 +5753,12 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5629
5753
  format: 'int32'
5630
5754
  },
5631
5755
  emailAddress: {
5632
- type: 'string',
5633
- nullable: true
5756
+ minLength: 1,
5757
+ type: 'string'
5634
5758
  }
5635
5759
  },
5636
5760
  additionalProperties: false
5637
- },
5638
- nullable: true
5761
+ }
5639
5762
  }
5640
5763
  },
5641
5764
  additionalProperties: false
@@ -5643,6 +5766,7 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5643
5766
  personalSummaries: {
5644
5767
  type: 'array',
5645
5768
  items: {
5769
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'individualId', 'maritalStatusCode', 'religiousAffiliationName'],
5646
5770
  type: 'object',
5647
5771
  properties: {
5648
5772
  id: {
@@ -5667,16 +5791,16 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5667
5791
  format: 'date-time'
5668
5792
  },
5669
5793
  ethnicity: {
5670
- type: 'string',
5671
- nullable: true
5794
+ minLength: 1,
5795
+ type: 'string'
5672
5796
  },
5673
5797
  maritalStatusCode: {
5674
- type: 'string',
5675
- nullable: true
5798
+ minLength: 1,
5799
+ type: 'string'
5676
5800
  },
5677
5801
  religiousAffiliationName: {
5678
- type: 'string',
5679
- nullable: true
5802
+ minLength: 1,
5803
+ type: 'string'
5680
5804
  }
5681
5805
  },
5682
5806
  additionalProperties: false
@@ -5696,27 +5820,28 @@ export const $UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
5696
5820
  } as const;
5697
5821
 
5698
5822
  export const $UpwithCrowd_FundraiserService_NameCommonDatas_CreateNameCommonDataDto = {
5823
+ required: ['mailingName', 'name', 'officialName', 'salutation', 'suffix'],
5699
5824
  type: 'object',
5700
5825
  properties: {
5701
5826
  salutation: {
5702
- type: 'string',
5703
- nullable: true
5827
+ minLength: 1,
5828
+ type: 'string'
5704
5829
  },
5705
5830
  name: {
5706
- type: 'string',
5707
- nullable: true
5831
+ minLength: 1,
5832
+ type: 'string'
5708
5833
  },
5709
5834
  suffix: {
5710
- type: 'string',
5711
- nullable: true
5835
+ minLength: 1,
5836
+ type: 'string'
5712
5837
  },
5713
5838
  mailingName: {
5714
- type: 'string',
5715
- nullable: true
5839
+ minLength: 1,
5840
+ type: 'string'
5716
5841
  },
5717
5842
  officialName: {
5718
- type: 'string',
5719
- nullable: true
5843
+ minLength: 1,
5844
+ type: 'string'
5720
5845
  }
5721
5846
  },
5722
5847
  additionalProperties: false
@@ -5790,6 +5915,7 @@ export const $UpwithCrowd_FundraiserService_NameCommonDatas_NameCommonDataDto =
5790
5915
  } as const;
5791
5916
 
5792
5917
  export const $UpwithCrowd_FundraiserService_NameCommonDatas_UpdateNameCommonDataDto = {
5918
+ required: ['individualId', 'mailingName', 'name', 'officialName', 'salutation', 'suffix'],
5793
5919
  type: 'object',
5794
5920
  properties: {
5795
5921
  individualId: {
@@ -5797,30 +5923,31 @@ export const $UpwithCrowd_FundraiserService_NameCommonDatas_UpdateNameCommonData
5797
5923
  format: 'uuid'
5798
5924
  },
5799
5925
  salutation: {
5800
- type: 'string',
5801
- nullable: true
5926
+ minLength: 1,
5927
+ type: 'string'
5802
5928
  },
5803
5929
  name: {
5804
- type: 'string',
5805
- nullable: true
5930
+ minLength: 1,
5931
+ type: 'string'
5806
5932
  },
5807
5933
  suffix: {
5808
- type: 'string',
5809
- nullable: true
5934
+ minLength: 1,
5935
+ type: 'string'
5810
5936
  },
5811
5937
  mailingName: {
5812
- type: 'string',
5813
- nullable: true
5938
+ minLength: 1,
5939
+ type: 'string'
5814
5940
  },
5815
5941
  officialName: {
5816
- type: 'string',
5817
- nullable: true
5942
+ minLength: 1,
5943
+ type: 'string'
5818
5944
  }
5819
5945
  },
5820
5946
  additionalProperties: false
5821
5947
  } as const;
5822
5948
 
5823
5949
  export const $UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto = {
5950
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
5824
5951
  type: 'object',
5825
5952
  properties: {
5826
5953
  extraProperties: {
@@ -5830,18 +5957,19 @@ export const $UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto
5830
5957
  readOnly: true
5831
5958
  },
5832
5959
  name: {
5833
- type: 'string',
5834
- nullable: true
5960
+ minLength: 1,
5961
+ type: 'string'
5835
5962
  },
5836
5963
  taxpayerId: {
5837
- type: 'string',
5838
- nullable: true
5964
+ minLength: 1,
5965
+ type: 'string'
5839
5966
  },
5840
5967
  legalStatusCode: {
5841
- type: 'string',
5842
- nullable: true
5968
+ minLength: 1,
5969
+ type: 'string'
5843
5970
  },
5844
5971
  contactInformation: {
5972
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
5845
5973
  type: 'object',
5846
5974
  properties: {
5847
5975
  extraProperties: {
@@ -5861,6 +5989,7 @@ export const $UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto
5861
5989
  telephones: {
5862
5990
  type: 'array',
5863
5991
  items: {
5992
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
5864
5993
  type: 'object',
5865
5994
  properties: {
5866
5995
  primaryFlag: {
@@ -5872,25 +6001,25 @@ export const $UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto
5872
6001
  format: 'int32'
5873
6002
  },
5874
6003
  areaCode: {
5875
- type: 'string',
5876
- nullable: true
6004
+ minLength: 1,
6005
+ type: 'string'
5877
6006
  },
5878
6007
  localNumber: {
5879
- type: 'string',
5880
- nullable: true
6008
+ minLength: 1,
6009
+ type: 'string'
5881
6010
  },
5882
6011
  ituCountryCode: {
5883
- type: 'string',
5884
- nullable: true
6012
+ minLength: 1,
6013
+ type: 'string'
5885
6014
  }
5886
6015
  },
5887
6016
  additionalProperties: false
5888
- },
5889
- nullable: true
6017
+ }
5890
6018
  },
5891
6019
  addresses: {
5892
6020
  type: 'array',
5893
6021
  items: {
6022
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
5894
6023
  type: 'object',
5895
6024
  properties: {
5896
6025
  extraProperties: {
@@ -5905,40 +6034,40 @@ export const $UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto
5905
6034
  format: 'int32'
5906
6035
  },
5907
6036
  addressLine: {
5908
- type: 'string',
5909
- nullable: true
6037
+ minLength: 1,
6038
+ type: 'string'
5910
6039
  },
5911
6040
  city: {
5912
- type: 'string',
5913
- nullable: true
6041
+ minLength: 1,
6042
+ type: 'string'
5914
6043
  },
5915
6044
  terriority: {
5916
- type: 'string',
5917
- nullable: true
6045
+ minLength: 1,
6046
+ type: 'string'
5918
6047
  },
5919
6048
  postalCode: {
5920
- type: 'string',
5921
- nullable: true
6049
+ minLength: 1,
6050
+ type: 'string'
5922
6051
  },
5923
6052
  country: {
5924
- type: 'string',
5925
- nullable: true
6053
+ minLength: 1,
6054
+ type: 'string'
5926
6055
  },
5927
6056
  fullAddress: {
5928
- type: 'string',
5929
- nullable: true
6057
+ minLength: 1,
6058
+ type: 'string'
5930
6059
  },
5931
6060
  primaryFlag: {
5932
6061
  type: 'boolean'
5933
6062
  }
5934
6063
  },
5935
6064
  additionalProperties: false
5936
- },
5937
- nullable: true
6065
+ }
5938
6066
  },
5939
6067
  emails: {
5940
6068
  type: 'array',
5941
6069
  items: {
6070
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
5942
6071
  type: 'object',
5943
6072
  properties: {
5944
6073
  extraProperties: {
@@ -5956,13 +6085,12 @@ export const $UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto
5956
6085
  format: 'int32'
5957
6086
  },
5958
6087
  emailAddress: {
5959
- type: 'string',
5960
- nullable: true
6088
+ minLength: 1,
6089
+ type: 'string'
5961
6090
  }
5962
6091
  },
5963
6092
  additionalProperties: false
5964
- },
5965
- nullable: true
6093
+ }
5966
6094
  }
5967
6095
  },
5968
6096
  additionalProperties: false
@@ -6291,21 +6419,23 @@ export const $UpwithCrowd_FundraiserService_Organizations_OrganizationDto = {
6291
6419
  } as const;
6292
6420
 
6293
6421
  export const $UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto = {
6422
+ required: ['contactInformation', 'legalStatusCode', 'name', 'taxpayerId'],
6294
6423
  type: 'object',
6295
6424
  properties: {
6296
6425
  name: {
6297
- type: 'string',
6298
- nullable: true
6426
+ minLength: 1,
6427
+ type: 'string'
6299
6428
  },
6300
6429
  taxpayerId: {
6301
- type: 'string',
6302
- nullable: true
6430
+ minLength: 1,
6431
+ type: 'string'
6303
6432
  },
6304
6433
  legalStatusCode: {
6305
- type: 'string',
6306
- nullable: true
6434
+ minLength: 1,
6435
+ type: 'string'
6307
6436
  },
6308
6437
  contactInformation: {
6438
+ required: ['addresses', 'emails', 'endDate', 'startDate', 'telephones'],
6309
6439
  type: 'object',
6310
6440
  properties: {
6311
6441
  extraProperties: {
@@ -6325,6 +6455,7 @@ export const $UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto
6325
6455
  telephones: {
6326
6456
  type: 'array',
6327
6457
  items: {
6458
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
6328
6459
  type: 'object',
6329
6460
  properties: {
6330
6461
  extraProperties: {
@@ -6342,25 +6473,25 @@ export const $UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto
6342
6473
  format: 'int32'
6343
6474
  },
6344
6475
  areaCode: {
6345
- type: 'string',
6346
- nullable: true
6476
+ minLength: 1,
6477
+ type: 'string'
6347
6478
  },
6348
6479
  localNumber: {
6349
- type: 'string',
6350
- nullable: true
6480
+ minLength: 1,
6481
+ type: 'string'
6351
6482
  },
6352
6483
  ituCountryCode: {
6353
- type: 'string',
6354
- nullable: true
6484
+ minLength: 1,
6485
+ type: 'string'
6355
6486
  }
6356
6487
  },
6357
6488
  additionalProperties: false
6358
- },
6359
- nullable: true
6489
+ }
6360
6490
  },
6361
6491
  addresses: {
6362
6492
  type: 'array',
6363
6493
  items: {
6494
+ required: ['addressLine', 'city', 'country', 'fullAddress', 'postalCode', 'primaryFlag', 'terriority', 'typeCode'],
6364
6495
  type: 'object',
6365
6496
  properties: {
6366
6497
  extraProperties: {
@@ -6375,40 +6506,40 @@ export const $UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto
6375
6506
  format: 'int32'
6376
6507
  },
6377
6508
  addressLine: {
6378
- type: 'string',
6379
- nullable: true
6509
+ minLength: 1,
6510
+ type: 'string'
6380
6511
  },
6381
6512
  city: {
6382
- type: 'string',
6383
- nullable: true
6513
+ minLength: 1,
6514
+ type: 'string'
6384
6515
  },
6385
6516
  terriority: {
6386
- type: 'string',
6387
- nullable: true
6517
+ minLength: 1,
6518
+ type: 'string'
6388
6519
  },
6389
6520
  postalCode: {
6390
- type: 'string',
6391
- nullable: true
6521
+ minLength: 1,
6522
+ type: 'string'
6392
6523
  },
6393
6524
  country: {
6394
- type: 'string',
6395
- nullable: true
6525
+ minLength: 1,
6526
+ type: 'string'
6396
6527
  },
6397
6528
  fullAddress: {
6398
- type: 'string',
6399
- nullable: true
6529
+ minLength: 1,
6530
+ type: 'string'
6400
6531
  },
6401
6532
  primaryFlag: {
6402
6533
  type: 'boolean'
6403
6534
  }
6404
6535
  },
6405
6536
  additionalProperties: false
6406
- },
6407
- nullable: true
6537
+ }
6408
6538
  },
6409
6539
  emails: {
6410
6540
  type: 'array',
6411
6541
  items: {
6542
+ required: ['emailAddress', 'primaryFlag', 'typeCode'],
6412
6543
  type: 'object',
6413
6544
  properties: {
6414
6545
  extraProperties: {
@@ -6426,13 +6557,12 @@ export const $UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto
6426
6557
  format: 'int32'
6427
6558
  },
6428
6559
  emailAddress: {
6429
- type: 'string',
6430
- nullable: true
6560
+ minLength: 1,
6561
+ type: 'string'
6431
6562
  }
6432
6563
  },
6433
6564
  additionalProperties: false
6434
- },
6435
- nullable: true
6565
+ }
6436
6566
  }
6437
6567
  },
6438
6568
  additionalProperties: false
@@ -6442,6 +6572,7 @@ export const $UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto
6442
6572
  } as const;
6443
6573
 
6444
6574
  export const $UpwithCrowd_FundraiserService_PersonalSummaries_CreatePersonalSummaryDto = {
6575
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'maritalStatusCode', 'religiousAffiliationName'],
6445
6576
  type: 'object',
6446
6577
  properties: {
6447
6578
  genderType: {
@@ -6458,16 +6589,16 @@ export const $UpwithCrowd_FundraiserService_PersonalSummaries_CreatePersonalSumm
6458
6589
  format: 'date-time'
6459
6590
  },
6460
6591
  ethnicity: {
6461
- type: 'string',
6462
- nullable: true
6592
+ minLength: 1,
6593
+ type: 'string'
6463
6594
  },
6464
6595
  maritalStatusCode: {
6465
- type: 'string',
6466
- nullable: true
6596
+ minLength: 1,
6597
+ type: 'string'
6467
6598
  },
6468
6599
  religiousAffiliationName: {
6469
- type: 'string',
6470
- nullable: true
6600
+ minLength: 1,
6601
+ type: 'string'
6471
6602
  }
6472
6603
  },
6473
6604
  additionalProperties: false
@@ -6546,6 +6677,7 @@ export const $UpwithCrowd_FundraiserService_PersonalSummaries_PersonalSummaryDto
6546
6677
  } as const;
6547
6678
 
6548
6679
  export const $UpwithCrowd_FundraiserService_PersonalSummaries_UpdatePersonalSummaryDto = {
6680
+ required: ['birthDate', 'date', 'ethnicity', 'genderType', 'individualId', 'maritalStatusCode', 'religiousAffiliationName'],
6549
6681
  type: 'object',
6550
6682
  properties: {
6551
6683
  id: {
@@ -6570,22 +6702,23 @@ export const $UpwithCrowd_FundraiserService_PersonalSummaries_UpdatePersonalSumm
6570
6702
  format: 'date-time'
6571
6703
  },
6572
6704
  ethnicity: {
6573
- type: 'string',
6574
- nullable: true
6705
+ minLength: 1,
6706
+ type: 'string'
6575
6707
  },
6576
6708
  maritalStatusCode: {
6577
- type: 'string',
6578
- nullable: true
6709
+ minLength: 1,
6710
+ type: 'string'
6579
6711
  },
6580
6712
  religiousAffiliationName: {
6581
- type: 'string',
6582
- nullable: true
6713
+ minLength: 1,
6714
+ type: 'string'
6583
6715
  }
6584
6716
  },
6585
6717
  additionalProperties: false
6586
6718
  } as const;
6587
6719
 
6588
6720
  export const $UpwithCrowd_FundraiserService_TelephoneTypes_CreateTelephoneTypeDto = {
6721
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
6589
6722
  type: 'object',
6590
6723
  properties: {
6591
6724
  primaryFlag: {
@@ -6597,16 +6730,16 @@ export const $UpwithCrowd_FundraiserService_TelephoneTypes_CreateTelephoneTypeDt
6597
6730
  format: 'int32'
6598
6731
  },
6599
6732
  areaCode: {
6600
- type: 'string',
6601
- nullable: true
6733
+ minLength: 1,
6734
+ type: 'string'
6602
6735
  },
6603
6736
  localNumber: {
6604
- type: 'string',
6605
- nullable: true
6737
+ minLength: 1,
6738
+ type: 'string'
6606
6739
  },
6607
6740
  ituCountryCode: {
6608
- type: 'string',
6609
- nullable: true
6741
+ minLength: 1,
6742
+ type: 'string'
6610
6743
  }
6611
6744
  },
6612
6745
  additionalProperties: false
@@ -6680,6 +6813,7 @@ export const $UpwithCrowd_FundraiserService_TelephoneTypes_TelephoneTypeDto = {
6680
6813
  } as const;
6681
6814
 
6682
6815
  export const $UpwithCrowd_FundraiserService_TelephoneTypes_UpdateTelephoneTypeDto = {
6816
+ required: ['areaCode', 'ituCountryCode', 'localNumber', 'primaryFlag', 'typeCode'],
6683
6817
  type: 'object',
6684
6818
  properties: {
6685
6819
  extraProperties: {
@@ -6697,16 +6831,16 @@ export const $UpwithCrowd_FundraiserService_TelephoneTypes_UpdateTelephoneTypeDt
6697
6831
  format: 'int32'
6698
6832
  },
6699
6833
  areaCode: {
6700
- type: 'string',
6701
- nullable: true
6834
+ minLength: 1,
6835
+ type: 'string'
6702
6836
  },
6703
6837
  localNumber: {
6704
- type: 'string',
6705
- nullable: true
6838
+ minLength: 1,
6839
+ type: 'string'
6706
6840
  },
6707
6841
  ituCountryCode: {
6708
- type: 'string',
6709
- nullable: true
6842
+ minLength: 1,
6843
+ type: 'string'
6710
6844
  }
6711
6845
  },
6712
6846
  additionalProperties: false