capivara-solidaria-ts-sdk 1.0.3 → 1.0.4

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.
@@ -126,33 +126,54 @@ declare const CIDADES_BRASIL: {
126
126
  };
127
127
 
128
128
  declare const OngCategory: {
129
- animais: string;
130
- meioAmbiente: string;
131
- educacao: string;
132
- saude: string;
133
- direitosHumanos: string;
134
- combateAFome: string;
135
- criancasEAdolescentes: string;
136
- idosos: string;
137
- pessoasComDeficiencia: string;
138
- moradoresDeRua: string;
139
- igualdadeDeGenero: string;
140
- refugiadosEImigrantes: string;
141
- protecaoAnimal: string;
142
- desenvolvimentoComunitario: string;
143
- culturaEArte: string;
144
- esporteEInclusao: string;
145
- voluntariadoEDoacoes: string;
146
- tecnologiaSocial: string;
147
- direitosDasMulheres: string;
148
- outros: string;
129
+ readonly animais: "animais";
130
+ readonly meioAmbiente: "meioAmbiente";
131
+ readonly educacao: "educacao";
132
+ readonly saude: "saude";
133
+ readonly direitosHumanos: "direitosHumanos";
134
+ readonly combateAFome: "combateAFome";
135
+ readonly criancasEAdolescentes: "criancasEAdolescentes";
136
+ readonly idosos: "idosos";
137
+ readonly pessoasComDeficiencia: "pessoasComDeficiencia";
138
+ readonly moradoresDeRua: "moradoresDeRua";
139
+ readonly igualdadeDeGenero: "igualdadeDeGenero";
140
+ readonly refugiadosEImigrantes: "refugiadosEImigrantes";
141
+ readonly protecaoAnimal: "protecaoAnimal";
142
+ readonly desenvolvimentoComunitario: "desenvolvimentoComunitario";
143
+ readonly culturaEArte: "culturaEArte";
144
+ readonly esporteEInclusao: "esporteEInclusao";
145
+ readonly voluntariadoEDoacoes: "voluntariadoEDoacoes";
146
+ readonly tecnologiaSocial: "tecnologiaSocial";
147
+ readonly direitosDasMulheres: "direitosDasMulheres";
148
+ readonly outros: "outros";
149
149
  };
150
150
  type OngCategory = (typeof OngCategory)[keyof typeof OngCategory];
151
151
  declare const isOngCategory: (value: unknown) => value is OngCategory;
152
- declare const HUBSPOT_ONG_VALUES: string[];
152
+ declare const HUBSPOT_ONG_VALUES: readonly ["Animais", "Meio Ambiente", "Educação", "Saúde", "Direitos Humanos", "Combate à Fome", "Crianças e Adolescentes", "Idosos", "Pessoas com Deficiência", "Moradores de Rua", "Igualdade de Gênero", "Refugiados e Imigrantes", "Proteção Animal", "Desenvolvimento Comunitário", "Cultura e Arte", "Esporte e Inclusão", "Voluntariado e Doações", "Tecnologia Social", "Direitos das Mulheres", "Outros"];
153
153
  type HubspotOngValue = (typeof HUBSPOT_ONG_VALUES)[number];
154
154
  declare const isHubspotOngValue: (value: unknown) => value is HubspotOngValue;
155
- declare const ONG_CATEGORY_TO_HUBSPOT: Record<OngCategory, HubspotOngValue>;
155
+ declare const ONG_CATEGORY_TO_HUBSPOT: {
156
+ readonly animais: "Animais";
157
+ readonly meioAmbiente: "Meio Ambiente";
158
+ readonly educacao: "Educação";
159
+ readonly saude: "Saúde";
160
+ readonly direitosHumanos: "Direitos Humanos";
161
+ readonly combateAFome: "Combate à Fome";
162
+ readonly criancasEAdolescentes: "Crianças e Adolescentes";
163
+ readonly idosos: "Idosos";
164
+ readonly pessoasComDeficiencia: "Pessoas com Deficiência";
165
+ readonly moradoresDeRua: "Moradores de Rua";
166
+ readonly igualdadeDeGenero: "Igualdade de Gênero";
167
+ readonly refugiadosEImigrantes: "Refugiados e Imigrantes";
168
+ readonly protecaoAnimal: "Proteção Animal";
169
+ readonly desenvolvimentoComunitario: "Desenvolvimento Comunitário";
170
+ readonly culturaEArte: "Cultura e Arte";
171
+ readonly esporteEInclusao: "Esporte e Inclusão";
172
+ readonly voluntariadoEDoacoes: "Voluntariado e Doações";
173
+ readonly tecnologiaSocial: "Tecnologia Social";
174
+ readonly direitosDasMulheres: "Direitos das Mulheres";
175
+ readonly outros: "Outros";
176
+ };
156
177
  declare const toOngCategory: (value: string) => OngCategory | undefined;
157
178
  declare const toHubspotOngValue: (value: OngCategory) => HubspotOngValue;
158
179
 
@@ -170,10 +191,10 @@ declare const DEFAULT_TEMPLATE_COLORS: {
170
191
  declare const DEFAULT_TEMPLATE_COLOR_PALLETES: Record<TemplateType, any>;
171
192
 
172
193
  declare const DEFAULT_TEMPLATES_ORDER: {
173
- primary: string[];
174
- secondary: string[];
175
- tertiary: string[];
176
- quarternary: string[];
194
+ readonly primary: readonly ["header", "details", "moreInfoAbout", "ourMission", "depoiments", "faq"];
195
+ readonly secondary: readonly ["header", "howItWorks", "moreInfoAbout", "aboutUs", "faq"];
196
+ readonly tertiary: readonly ["header", "howItWorks", "testimonials", "moreInfoAbout", "initiatives", "aboutUs", "faq"];
197
+ readonly quarternary: readonly ["header", "causes", "timeline", "getInvolved", "faq"];
177
198
  };
178
199
 
179
200
  declare const PRIMARY_TEMPLATE_DEFAULT_COPIES: {
@@ -126,33 +126,54 @@ declare const CIDADES_BRASIL: {
126
126
  };
127
127
 
128
128
  declare const OngCategory: {
129
- animais: string;
130
- meioAmbiente: string;
131
- educacao: string;
132
- saude: string;
133
- direitosHumanos: string;
134
- combateAFome: string;
135
- criancasEAdolescentes: string;
136
- idosos: string;
137
- pessoasComDeficiencia: string;
138
- moradoresDeRua: string;
139
- igualdadeDeGenero: string;
140
- refugiadosEImigrantes: string;
141
- protecaoAnimal: string;
142
- desenvolvimentoComunitario: string;
143
- culturaEArte: string;
144
- esporteEInclusao: string;
145
- voluntariadoEDoacoes: string;
146
- tecnologiaSocial: string;
147
- direitosDasMulheres: string;
148
- outros: string;
129
+ readonly animais: "animais";
130
+ readonly meioAmbiente: "meioAmbiente";
131
+ readonly educacao: "educacao";
132
+ readonly saude: "saude";
133
+ readonly direitosHumanos: "direitosHumanos";
134
+ readonly combateAFome: "combateAFome";
135
+ readonly criancasEAdolescentes: "criancasEAdolescentes";
136
+ readonly idosos: "idosos";
137
+ readonly pessoasComDeficiencia: "pessoasComDeficiencia";
138
+ readonly moradoresDeRua: "moradoresDeRua";
139
+ readonly igualdadeDeGenero: "igualdadeDeGenero";
140
+ readonly refugiadosEImigrantes: "refugiadosEImigrantes";
141
+ readonly protecaoAnimal: "protecaoAnimal";
142
+ readonly desenvolvimentoComunitario: "desenvolvimentoComunitario";
143
+ readonly culturaEArte: "culturaEArte";
144
+ readonly esporteEInclusao: "esporteEInclusao";
145
+ readonly voluntariadoEDoacoes: "voluntariadoEDoacoes";
146
+ readonly tecnologiaSocial: "tecnologiaSocial";
147
+ readonly direitosDasMulheres: "direitosDasMulheres";
148
+ readonly outros: "outros";
149
149
  };
150
150
  type OngCategory = (typeof OngCategory)[keyof typeof OngCategory];
151
151
  declare const isOngCategory: (value: unknown) => value is OngCategory;
152
- declare const HUBSPOT_ONG_VALUES: string[];
152
+ declare const HUBSPOT_ONG_VALUES: readonly ["Animais", "Meio Ambiente", "Educação", "Saúde", "Direitos Humanos", "Combate à Fome", "Crianças e Adolescentes", "Idosos", "Pessoas com Deficiência", "Moradores de Rua", "Igualdade de Gênero", "Refugiados e Imigrantes", "Proteção Animal", "Desenvolvimento Comunitário", "Cultura e Arte", "Esporte e Inclusão", "Voluntariado e Doações", "Tecnologia Social", "Direitos das Mulheres", "Outros"];
153
153
  type HubspotOngValue = (typeof HUBSPOT_ONG_VALUES)[number];
154
154
  declare const isHubspotOngValue: (value: unknown) => value is HubspotOngValue;
155
- declare const ONG_CATEGORY_TO_HUBSPOT: Record<OngCategory, HubspotOngValue>;
155
+ declare const ONG_CATEGORY_TO_HUBSPOT: {
156
+ readonly animais: "Animais";
157
+ readonly meioAmbiente: "Meio Ambiente";
158
+ readonly educacao: "Educação";
159
+ readonly saude: "Saúde";
160
+ readonly direitosHumanos: "Direitos Humanos";
161
+ readonly combateAFome: "Combate à Fome";
162
+ readonly criancasEAdolescentes: "Crianças e Adolescentes";
163
+ readonly idosos: "Idosos";
164
+ readonly pessoasComDeficiencia: "Pessoas com Deficiência";
165
+ readonly moradoresDeRua: "Moradores de Rua";
166
+ readonly igualdadeDeGenero: "Igualdade de Gênero";
167
+ readonly refugiadosEImigrantes: "Refugiados e Imigrantes";
168
+ readonly protecaoAnimal: "Proteção Animal";
169
+ readonly desenvolvimentoComunitario: "Desenvolvimento Comunitário";
170
+ readonly culturaEArte: "Cultura e Arte";
171
+ readonly esporteEInclusao: "Esporte e Inclusão";
172
+ readonly voluntariadoEDoacoes: "Voluntariado e Doações";
173
+ readonly tecnologiaSocial: "Tecnologia Social";
174
+ readonly direitosDasMulheres: "Direitos das Mulheres";
175
+ readonly outros: "Outros";
176
+ };
156
177
  declare const toOngCategory: (value: string) => OngCategory | undefined;
157
178
  declare const toHubspotOngValue: (value: OngCategory) => HubspotOngValue;
158
179
 
@@ -170,10 +191,10 @@ declare const DEFAULT_TEMPLATE_COLORS: {
170
191
  declare const DEFAULT_TEMPLATE_COLOR_PALLETES: Record<TemplateType, any>;
171
192
 
172
193
  declare const DEFAULT_TEMPLATES_ORDER: {
173
- primary: string[];
174
- secondary: string[];
175
- tertiary: string[];
176
- quarternary: string[];
194
+ readonly primary: readonly ["header", "details", "moreInfoAbout", "ourMission", "depoiments", "faq"];
195
+ readonly secondary: readonly ["header", "howItWorks", "moreInfoAbout", "aboutUs", "faq"];
196
+ readonly tertiary: readonly ["header", "howItWorks", "testimonials", "moreInfoAbout", "initiatives", "aboutUs", "faq"];
197
+ readonly quarternary: readonly ["header", "causes", "timeline", "getInvolved", "faq"];
177
198
  };
178
199
 
179
200
  declare const PRIMARY_TEMPLATE_DEFAULT_COPIES: {