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.
- package/dist/enums/index.d.mts +47 -26
- package/dist/enums/index.d.ts +47 -26
- package/dist/enums/index.js.map +1 -1
- package/dist/enums/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/enums/index.d.mts
CHANGED
|
@@ -126,33 +126,54 @@ declare const CIDADES_BRASIL: {
|
|
|
126
126
|
};
|
|
127
127
|
|
|
128
128
|
declare const OngCategory: {
|
|
129
|
-
animais:
|
|
130
|
-
meioAmbiente:
|
|
131
|
-
educacao:
|
|
132
|
-
saude:
|
|
133
|
-
direitosHumanos:
|
|
134
|
-
combateAFome:
|
|
135
|
-
criancasEAdolescentes:
|
|
136
|
-
idosos:
|
|
137
|
-
pessoasComDeficiencia:
|
|
138
|
-
moradoresDeRua:
|
|
139
|
-
igualdadeDeGenero:
|
|
140
|
-
refugiadosEImigrantes:
|
|
141
|
-
protecaoAnimal:
|
|
142
|
-
desenvolvimentoComunitario:
|
|
143
|
-
culturaEArte:
|
|
144
|
-
esporteEInclusao:
|
|
145
|
-
voluntariadoEDoacoes:
|
|
146
|
-
tecnologiaSocial:
|
|
147
|
-
direitosDasMulheres:
|
|
148
|
-
outros:
|
|
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:
|
|
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:
|
|
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:
|
|
174
|
-
secondary:
|
|
175
|
-
tertiary:
|
|
176
|
-
quarternary:
|
|
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: {
|
package/dist/enums/index.d.ts
CHANGED
|
@@ -126,33 +126,54 @@ declare const CIDADES_BRASIL: {
|
|
|
126
126
|
};
|
|
127
127
|
|
|
128
128
|
declare const OngCategory: {
|
|
129
|
-
animais:
|
|
130
|
-
meioAmbiente:
|
|
131
|
-
educacao:
|
|
132
|
-
saude:
|
|
133
|
-
direitosHumanos:
|
|
134
|
-
combateAFome:
|
|
135
|
-
criancasEAdolescentes:
|
|
136
|
-
idosos:
|
|
137
|
-
pessoasComDeficiencia:
|
|
138
|
-
moradoresDeRua:
|
|
139
|
-
igualdadeDeGenero:
|
|
140
|
-
refugiadosEImigrantes:
|
|
141
|
-
protecaoAnimal:
|
|
142
|
-
desenvolvimentoComunitario:
|
|
143
|
-
culturaEArte:
|
|
144
|
-
esporteEInclusao:
|
|
145
|
-
voluntariadoEDoacoes:
|
|
146
|
-
tecnologiaSocial:
|
|
147
|
-
direitosDasMulheres:
|
|
148
|
-
outros:
|
|
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:
|
|
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:
|
|
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:
|
|
174
|
-
secondary:
|
|
175
|
-
tertiary:
|
|
176
|
-
quarternary:
|
|
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: {
|