gaboesquivel 3.4.1 → 3.4.3

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/index.d.mts CHANGED
@@ -2,8 +2,8 @@ interface Project {
2
2
  title: string;
3
3
  slug: string;
4
4
  description: string;
5
- technologies: string[];
6
- tags: string[];
5
+ tech: string[];
6
+ type: string[];
7
7
  link?: string;
8
8
  image: string;
9
9
  repo?: string;
@@ -15,7 +15,7 @@ interface Project {
15
15
  interface TechStackItem {
16
16
  name: string;
17
17
  icon: string;
18
- tag: string;
18
+ tag: Tag;
19
19
  image: string;
20
20
  description: string;
21
21
  link: string;
@@ -23,25 +23,18 @@ interface TechStackItem {
23
23
  intro: string[];
24
24
  experience: string[];
25
25
  }
26
+ interface TechStackItemWithProjects extends TechStackItem {
27
+ projects: Project[];
28
+ }
29
+ type Tag = 'TypeScript' | 'Solidity' | 'Foundry' | 'NextJS' | 'Ponder' | 'Postgres' | 'Viem' | 'Wagmi' | 'EVM' | 'ThirdWeb' | 'AI' | 'Hardhat' | 'NodeJS' | 'PostgreSQL' | 'GraphQL' | 'AI SDK' | 'LLMs' | 'WebGL' | 'Ethereum' | 'Ethers' | 'NFT' | 'AWS' | 'ReactJS' | 'React Native' | 'Blockchain' | 'EOS' | 'Antelope' | 'C++' | 'GCloud' | 'Serverless' | 'Docker' | 'RXJS' | 'Flow Blockchain' | 'Niftory' | 'Dalle' | 'Midjourney' | 'Tailwind' | 'Ruby on Rails' | 'Spree' | 'Heroku' | 'MongoDB' | 'AngularJS' | 'Express.js' | 'Stripe' | 'Twilio' | 'SASS' | 'jQuery' | 'Lodash' | 'Grapnel.js' | 'Grunt' | 'Divshot' | 'PHP' | 'HTML5' | 'AJAX' | 'Handlebars' | 'Brightcove API' | 'require.js' | 'JSP (Struts)' | 'Omniture' | 'Adobe mBox' | 'Facebook API' | 'Dojo' | 'CSS' | 'Mootols' | 'Wordpress' | 'Custom CMS' | 'Data Charts' | 'Bootstrap' | 'Faye' | 'LESS';
26
30
 
27
31
  declare const projects: Project[];
28
32
 
29
33
  declare const techStack: TechStackItem[];
30
34
 
31
35
  declare function getProjectBySlug(slug: string): Project | undefined;
32
- declare function getTechStackByTag(tag: string): {
33
- projects: Project[];
34
- name?: string | undefined;
35
- icon?: string | undefined;
36
- tag?: string | undefined;
37
- image?: string | undefined;
38
- description?: string | undefined;
39
- link?: string | undefined;
40
- since?: string | undefined;
41
- intro?: string[] | undefined;
42
- experience?: string[] | undefined;
43
- };
36
+ declare function getTechStackByTag(tag: string): TechStackItemWithProjects | null;
44
37
  declare function getProjectsByTechnology(tag: string): Project[];
45
38
  declare function gaboLog(): void;
46
39
 
47
- export { type Project, type TechStackItem, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
40
+ export { type Project, type Tag, type TechStackItem, type TechStackItemWithProjects, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
package/dist/index.d.ts CHANGED
@@ -2,8 +2,8 @@ interface Project {
2
2
  title: string;
3
3
  slug: string;
4
4
  description: string;
5
- technologies: string[];
6
- tags: string[];
5
+ tech: string[];
6
+ type: string[];
7
7
  link?: string;
8
8
  image: string;
9
9
  repo?: string;
@@ -15,7 +15,7 @@ interface Project {
15
15
  interface TechStackItem {
16
16
  name: string;
17
17
  icon: string;
18
- tag: string;
18
+ tag: Tag;
19
19
  image: string;
20
20
  description: string;
21
21
  link: string;
@@ -23,25 +23,18 @@ interface TechStackItem {
23
23
  intro: string[];
24
24
  experience: string[];
25
25
  }
26
+ interface TechStackItemWithProjects extends TechStackItem {
27
+ projects: Project[];
28
+ }
29
+ type Tag = 'TypeScript' | 'Solidity' | 'Foundry' | 'NextJS' | 'Ponder' | 'Postgres' | 'Viem' | 'Wagmi' | 'EVM' | 'ThirdWeb' | 'AI' | 'Hardhat' | 'NodeJS' | 'PostgreSQL' | 'GraphQL' | 'AI SDK' | 'LLMs' | 'WebGL' | 'Ethereum' | 'Ethers' | 'NFT' | 'AWS' | 'ReactJS' | 'React Native' | 'Blockchain' | 'EOS' | 'Antelope' | 'C++' | 'GCloud' | 'Serverless' | 'Docker' | 'RXJS' | 'Flow Blockchain' | 'Niftory' | 'Dalle' | 'Midjourney' | 'Tailwind' | 'Ruby on Rails' | 'Spree' | 'Heroku' | 'MongoDB' | 'AngularJS' | 'Express.js' | 'Stripe' | 'Twilio' | 'SASS' | 'jQuery' | 'Lodash' | 'Grapnel.js' | 'Grunt' | 'Divshot' | 'PHP' | 'HTML5' | 'AJAX' | 'Handlebars' | 'Brightcove API' | 'require.js' | 'JSP (Struts)' | 'Omniture' | 'Adobe mBox' | 'Facebook API' | 'Dojo' | 'CSS' | 'Mootols' | 'Wordpress' | 'Custom CMS' | 'Data Charts' | 'Bootstrap' | 'Faye' | 'LESS';
26
30
 
27
31
  declare const projects: Project[];
28
32
 
29
33
  declare const techStack: TechStackItem[];
30
34
 
31
35
  declare function getProjectBySlug(slug: string): Project | undefined;
32
- declare function getTechStackByTag(tag: string): {
33
- projects: Project[];
34
- name?: string | undefined;
35
- icon?: string | undefined;
36
- tag?: string | undefined;
37
- image?: string | undefined;
38
- description?: string | undefined;
39
- link?: string | undefined;
40
- since?: string | undefined;
41
- intro?: string[] | undefined;
42
- experience?: string[] | undefined;
43
- };
36
+ declare function getTechStackByTag(tag: string): TechStackItemWithProjects | null;
44
37
  declare function getProjectsByTechnology(tag: string): Project[];
45
38
  declare function gaboLog(): void;
46
39
 
47
- export { type Project, type TechStackItem, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
40
+ export { type Project, type Tag, type TechStackItem, type TechStackItemWithProjects, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };