+
+
+ Back to blog
+
{#if authorMeta.src}
-
{#if authorMeta.src}
-
+
{/if}
{authorMeta.name}
diff --git a/src/lib/components/Button.svelte b/src/lib/components/Button.svelte
index a8767eba..4ee41857 100644
--- a/src/lib/components/Button.svelte
+++ b/src/lib/components/Button.svelte
@@ -1,4 +1,5 @@
{#if isLink}
@@ -71,7 +83,9 @@
class:text-md={textSize === "md"}
class:text-lg={textSize === "lg"}
class:text-xl={textSize === "xl"}
- class="flex items-center justify-between gap-3 font-medium"
+ class:fade-in={visible}
+ class="flex items-center justify-between gap-3 font-medium transition-opacity duration-300"
+ class:opacity-0={!visible}
{rel}
{href}
{title}
@@ -156,4 +170,8 @@
.button.regular {
@apply from-mine-shaft-50 to-mine-shaft-100 text-neutral-700 border border-mine-shaft-300;
}
+
+ .fade-in {
+ @apply opacity-100;
+ }
diff --git a/src/lib/components/DynamicIcon.svelte b/src/lib/components/DynamicIcon.svelte
index 15498b04..671aa371 100644
--- a/src/lib/components/DynamicIcon.svelte
+++ b/src/lib/components/DynamicIcon.svelte
@@ -7,35 +7,36 @@
export let iconTheme = "bs";
export let size = "1.2rem";
- let iconThemes = {
+ // We need to use the proper import structure for svelte-icons-pack
+ // First import the whole theme, then access specific icons
+ const themeImports = {
ai: () => import("svelte-icons-pack/ai"),
bs: () => import("svelte-icons-pack/bs"),
bi: () => import("svelte-icons-pack/bi"),
- ci: () => import("svelte-icons-pack/ci"),
- fi: () => import("svelte-icons-pack/fi"),
- fa: () => import("svelte-icons-pack/fa"),
- oi: () => import("svelte-icons-pack/oi"),
- hi: () => import("svelte-icons-pack/hi"),
- im: () => import("svelte-icons-pack/im"),
- io: () => import("svelte-icons-pack/io"),
lu: () => import("svelte-icons-pack/lu"),
- ri: () => import("svelte-icons-pack/ri"),
- si: () => import("svelte-icons-pack/si"),
- sl: () => import("svelte-icons-pack/sl"),
- ti: () => import("svelte-icons-pack/ti"),
- tr: () => import("svelte-icons-pack/tr"),
- wi: () => import("svelte-icons-pack/wi"),
vsc: () => import("svelte-icons-pack/vsc"),
+ // Add others as needed
};
async function getIcon(iconName, iconTheme) {
try {
- const moduleLoader = iconThemes[iconTheme];
- if (!moduleLoader) {
- throw new Error(`Unknown icon theme: ${iconTheme}`);
+ // Get the theme module loader
+ const themeLoader = themeImports[iconTheme];
+ if (!themeLoader) {
+ console.warn(`Icon theme not configured: ${iconTheme}`);
+ return null;
}
- const module = await moduleLoader();
- return module[iconName];
+
+ // Load the entire theme module
+ const themeModule = await themeLoader();
+
+ // Get the specific icon from the theme
+ if (!(iconName in themeModule)) {
+ console.warn(`Icon not found: ${iconName} in theme: ${iconTheme}`);
+ return null;
+ }
+
+ return themeModule[iconName];
} catch (error) {
console.error(`Failed to load icon: ${iconName} from theme: ${iconTheme}`, error);
return null;
diff --git a/src/lib/components/ProgressBar.svelte b/src/lib/components/ProgressBar.svelte
index bc16b3d2..e0bc8160 100644
--- a/src/lib/components/ProgressBar.svelte
+++ b/src/lib/components/ProgressBar.svelte
@@ -1,37 +1,64 @@
-
+
-
+
{normalizedProgress}%
diff --git a/src/lib/components/ProjectCard.svelte b/src/lib/components/ProjectCard.svelte
index 35f6562a..7eea0d53 100644
--- a/src/lib/components/ProjectCard.svelte
+++ b/src/lib/components/ProjectCard.svelte
@@ -1,157 +1,24 @@
-
+
{#await project.image && imageExists()}
{:then}
@@ -161,20 +28,6 @@
{:else if project.image}
- {:else}
-
- {#key redrawKey}
-
- {/key}
-
{/if}
{/await}
@@ -183,25 +36,49 @@
{#if project.donations}
-
- {project.collected}:
- {#if !project.donationGoal}
-
{project.donations.total.toLocaleString($locale, currencyOptions)}
- {/if}
- {#if project.donationGoal}
- {project.donations.total.toLocaleString($locale, currencyOptions)}
- {project.separator}
- {project.donationGoal.toLocaleString($locale, currencyOptions)}
-
- {/if}
+
+
+
+
+ {project.collected}:
+ {#if project.donationGoal}
+
+ {project.donations.total.toLocaleString($locale, currencyOptions)}
+ {project.separator}
+ {project.donationGoal.toLocaleString($locale, currencyOptions)}
+ {:else}
+
+
+ {project.donations.total.toLocaleString($locale, currencyOptions)}
+
+ {/if}
+
+ {#if project.donationGoal}
+
+
+
+
+ {/if}
+
+ {#if project.donationLinkID && onDonate}
+
{/if}
{#if project.intro}
{project.intro}
{/if}
- {#if project.button && href}
+ {#if project.secondaryButton && href}
-
+
{/if}
@@ -212,6 +89,7 @@
.group {
@apply w-full flex-shrink-0 py-4 md:w-1/2 md:px-4 xl:w-1/3;
}
+
.card {
@apply grid h-full grid-cols-1 rounded-2xl border border-neutral-300 shadow-2xl dark:border-neutral-700 dark:shadow-neutral-900;
grid-template-rows: auto 1fr;
@@ -219,7 +97,7 @@
.card-container {
@apply grid grid-cols-1 gap-8 p-8;
- grid-template-rows: 1fr auto;
+ grid-template-rows: auto 1fr;
}
.card-title {
@@ -227,17 +105,13 @@
}
.card-image {
- @apply relative overflow-hidden;
+ @apply relative overflow-hidden border-b-4 border-red-berry-900 dark:border-neutral-700;
}
.project-image {
@apply rounded-t-2xl aspect-square w-full md:aspect-video;
}
- .dynamic-bg-container {
- @apply rounded-t-2xl aspect-square w-full md:aspect-video overflow-hidden;
- }
-
.card-content {
@apply font-light;
}
diff --git a/src/lib/config/data/config.yaml b/src/lib/config/data/config.yaml
index 646d2e06..48564ca0 100644
--- a/src/lib/config/data/config.yaml
+++ b/src/lib/config/data/config.yaml
@@ -30,6 +30,7 @@ site:
github: https://github.com/spyder-ide/spyder
twitter: https://twitter.com/spyder_ide
facebook: https://www.facebook.com/SpyderIDE
+ youtube: https://www.youtube.com/@SpyderIDE
mastodon: https://fosstodon.org/@Spyder
instagram: https://instagram.com/spyderide
rss: https://www.spyder-ide.org/blog/feed.xml
diff --git a/src/lib/config/data/donate.yaml b/src/lib/config/data/donate.yaml
index aa105b9a..e48c97aa 100644
--- a/src/lib/config/data/donate.yaml
+++ b/src/lib/config/data/donate.yaml
@@ -3,7 +3,7 @@ projects:
slug: spyder
image: /assets/media/spyder_splash_bg.webp
donationLinkID: Pjm6SyqYNb
- pastDonations: 15744
+ pastDonations: 17795
- id: 1
slug: code-completions
image: /assets/media/donations-code_completions.webp
diff --git a/src/lib/config/data/funding.yaml b/src/lib/config/data/funding.yaml
new file mode 100644
index 00000000..575fdee9
--- /dev/null
+++ b/src/lib/config/data/funding.yaml
@@ -0,0 +1,116 @@
+version: 'v1.0.0'
+entity:
+ type: 'organisation'
+ role: 'other'
+ name: 'Spyder'
+ email: 'spyder.python@gmail.com'
+ description: 'The Spyder organization, a project of the NumFOCUS nonprofit'
+ webpageUrl:
+ url: 'https://www.spyder-ide.org'
+projects:
+ - guid: 'spyder-ide'
+ name: 'Spyder'
+ description: 'The scientific Python development environment'
+ webpageUrl:
+ url: 'https://www.spyder-ide.org'
+ repositoryUrl:
+ url: 'https://github.com/spyder-ide'
+ wellKnown: 'https://github.com/spyder-ide/spyder/raw/HEAD/.well-known/funding-manifest-urls'
+ licenses: ['spdx:MIT']
+ tags:
+ - 'data'
+ - 'data-science'
+ - 'data-visualization'
+ - 'developer-tools'
+ - 'development'
+ - 'programming'
+ - 'science'
+ - 'scientific-computing'
+ - 'software-engineering'
+ - 'python'
+ - guid: 'python-lsp'
+ name: 'Python LSP Server'
+ description: 'The python-language-server project, maintained by the Spyder IDE team and the community'
+ webpageUrl:
+ url: 'https://github.com/python-lsp'
+ wellKnown: 'https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls'
+ repositoryUrl:
+ url: 'https://github.com/python-lsp/python-lsp-server'
+ wellKnown: 'https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls'
+ licenses: ['spdx:MIT']
+ tags:
+ - 'developer-tools'
+ - 'development'
+ - 'programming'
+ - 'software-engineering'
+ - 'ide'
+ - 'language-server-protocol'
+ - 'lsp'
+ - 'lsp-server'
+ - 'python'
+funding:
+ channels:
+ - guid: 'hubspot'
+ type: 'payment-provider'
+ address: 'https://numfocus.org/donate-for-spyder'
+ description: 'Spyder Hubspot donation page with NumFOCUS'
+ - guid: 'numfocus'
+ type: 'other'
+ address: 'info@numfocus.org'
+ description: 'Contact NumFOCUS to coordinate a direct donation'
+ plans:
+ - guid: 'general-fund-onetime'
+ status: 'active'
+ name: 'Support Spyder one-time'
+ description: 'Support the Spyder project as a whole, with the money used where it is needed most.'
+ amount: 0
+ currency: 'USD'
+ frequency: 'one-time'
+ channels: ['hubspot']
+ - guid: 'general-fund-monthly'
+ status: 'active'
+ name: 'Support Spyder monthly'
+ description: 'Support the Spyder project as a whole with a monthly donation, with the money used where it is needed most.'
+ amount: 0
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'individual'
+ status: 'active'
+ name: 'Individual Donor'
+ description: 'Support us with a monthly donation and help us continue our activities.'
+ amount: 5
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'company'
+ status: 'active'
+ name: 'Company Sponsor'
+ description: 'Become a sponsor and get your logo on our README on Github with a link to your site.'
+ amount: 100
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'junior-dev'
+ status: 'active'
+ name: 'Part Time Junior Developer'
+ description: 'Help pay a Junior Developer to work part time on the Spyder IDE.'
+ amount: 500
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'baseline-maintenance'
+ status: 'active'
+ name: 'Baseline Development and Maintenance'
+ description: 'Help fund critical baseline development and maintenance for our worldwide community of hundreds of thousands of users.'
+ amount: 50000
+ currency: 'USD'
+ frequency: 'yearly'
+ channels: ['numfocus']
+ history:
+ - year: 2024
+ income: 150000
+ expenses: 150000
+ taxes: 0
+ currency: 'USD'
+ description: ''
diff --git a/src/lib/i18n/en-US/donate.yaml b/src/lib/i18n/en-US/donate.yaml
index d10a7aa6..1294b84c 100644
--- a/src/lib/i18n/en-US/donate.yaml
+++ b/src/lib/i18n/en-US/donate.yaml
@@ -5,10 +5,14 @@ page:
back: Back to list
supporters: Total Supporters
intro: |
- Our mission is to create and maintain **the best open source Python IDE** for scientists, engineers and data analysts that is both **powerful and easy to use**. Your donations sustain this effort and fund the features you're most interested in seeing in future versions. Would you give today?
+ Our mission is to develop the **best scientific Python IDE** that is **powerful and easy to use**.
+ Your donations are vital to sustaining this effort and funding the features you need. Will you give today?
- * All donations are stewarded by [NumFOCUS](https://numfocus.org/), a registered non-profit charitable organization.
- * Spyder is a fully independent, community-developed project, unaffiliated with Anaconda or other commercial companies.
+ * All donations are stewarded by [NumFOCUS](https://numfocus.org/), a registered non-profit charitable organization.
+ * Spyder is a community-developed project unaffiliated with Anaconda or commercial companies.
+
+ otherProjects:
+ title: Other Projects
projects:
- id: 0
@@ -20,7 +24,9 @@ projects:
content: |
Spyder’s continued development and maintenance is made possible by you, our user community\! Your contributions to Spyder as a whole have helped us fund developers, students and interns to contribute critical improvements, support key members of the team such as our web and interface designer, pay for critical web infrastructure, and fund outreach and community efforts to make sure we are doing the best we can to serve all of you!
button:
- text: Support Spyder
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 1
title: Smarter code completion
@@ -34,7 +40,9 @@ projects:
* Enhance our [current language server](https://github.com/python-lsp/python-lsp-server/) and/or use a more [powerful one](https://github.com/DetachHead/basedpyright) (similar to that used by VSCode) for completions.
* Connect the Editor to the IPython console to get completions and documentation from it in case they are not available through the language server.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 2
title: New Viewer pane
@@ -47,7 +55,9 @@ projects:
This would both greatly improve the development and data analysis experience for Spyder users, and also enable wider adoption of these visualization tools outside of the confines of Jupyter notebooks.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 3
title: Supercharge syntax highlighting
@@ -62,7 +72,9 @@ projects:
It has been challenging to implement this as the libraries Spyder has relied on for syntax detection and highlighting have not kept up with those used by many other editors. Your support would allow us to migrate to a modern, actively developed framework providing the same features you’ve come to expect in the most popular IDEs.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 4
title: Level-up the Variable Explorer
@@ -75,4 +87,6 @@ projects:
We'd like to address that by supporting a portable, streamlined method of object representation that is not limited by such a restriction. Alongside that, we’d also like to make saving and loading spydata files to restore your current session later more reliable and work on a wider variety of data types by using a more robust library for that task.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
\ No newline at end of file
diff --git a/src/lib/i18n/es-ES/donate.yaml b/src/lib/i18n/es-ES/donate.yaml
new file mode 100644
index 00000000..ad581cd3
--- /dev/null
+++ b/src/lib/i18n/es-ES/donate.yaml
@@ -0,0 +1,92 @@
+page:
+ title: Apóyanos
+ monthly: Mensual
+ oneTime: Una sola vez
+ back: Volver a la lista
+ supporters: Total de colaboradores
+ intro: |
+ Nuestra misión es desarrollar **el mejor IDE científico de Python** que sea **potente y fácil de usar**.
+ Tus donaciones son vitales para sostener este esfuerzo y financiar las características que necesitas. ¿Contribuirás hoy?
+
+ * Todas las donaciones son administradas por [NumFOCUS](https://numfocus.org/), una organización benéfica sin fines de lucro registrada.
+ * Spyder es un proyecto desarrollado por la comunidad sin afiliación con Anaconda o empresas comerciales.
+
+ otherProjects:
+ title: Otros Proyectos
+
+projects:
+ - id: 0
+ title: Apoyar a Spyder
+ collected: Balance disponible
+ separator: de
+ intro: >-
+ ¿Quieres apoyar el proyecto Spyder en su conjunto, con el dinero utilizado donde más se necesita? ¡Dona aquí!
+ content: |
+ El desarrollo y mantenimiento continuo de Spyder es posible gracias a ti, nuestra comunidad de usuarios\! Tus contribuciones a Spyder en general nos han ayudado a financiar desarrolladores, estudiantes y pasantes para contribuir con mejoras críticas, apoyar a miembros clave del equipo como nuestro diseñador de interfaces y web, pagar la infraestructura web crítica, y financiar esfuerzos de divulgación y comunidad para asegurarnos de que estamos haciendo lo mejor posible para servir a todos ustedes!
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 1
+ title: Autocompletado de código más inteligente
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ El autocompletado de código en el Editor de Spyder tiene mucho margen de mejora, y tenemos un camino claro para mejorarlos significativamente. ¡Ayúdanos a hacerlos de clase mundial!
+ content: |
+ El Editor de Spyder se beneficiaría enormemente de una muy necesaria revisión para proporcionar mejores autocompletados de código. Con tu apoyo podremos:
+
+ * Mejorar nuestro [servidor de lenguaje actual](https://github.com/python-lsp/python-lsp-server/) y/o usar uno [más potente](https://github.com/DetachHead/basedpyright) (similar al usado por VSCode) para autocompletados.
+ * Conectar el Editor a la consola IPython para obtener autocompletados y documentación en caso de que no estén disponibles a través del servidor de lenguaje.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 2
+ title: Nuevo panel de visualización
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ Las bibliotecas de visualización populares como Bokeh, Plotly o Altair actualmente solo funcionan en un entorno de notebook. Un nuevo panel de visualización permitiría interactuar con ellas directamente dentro de Spyder, sin necesidad de notebook.
+ content: |
+ Las bibliotecas de visualización como Bokeh, Plotly o Altair e interfaces como IPywidgets, Panel o Dash actualmente están diseñadas para funcionar solo en un entorno de notebook. Un nuevo panel de visualización abordaría esto empaquetando las bibliotecas Javascript necesarias para mostrar e interactuar con estos tipos de contenido desde Spyder.
+
+ Esto mejoraría enormemente la experiencia de desarrollo y análisis de datos para los usuarios de Spyder, y también permitiría una adopción más amplia de estas herramientas de visualización fuera de los límites de los notebooks de Jupyter.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 3
+ title: Potenciar el resaltado de sintaxis
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ Ayúdanos a implementar un resaltado de sintaxis semántico mejorado en el Editor, permitiendo que los argumentos de funciones, nombres de clases y funciones, y otros fragmentos especiales de código sean detectados y estilizados. Esto también conduciría a mejoras importantes en el panel Esquema de Spyder.
+ content: |
+ El resaltado de sintaxis semántico completo, la capacidad de colorear el código según su rol semántico, es una característica que nos han solicitado desde hace mucho tiempo. Agregar soporte para esto permitiría resaltar los argumentos de funciones, nombres de clases/funciones y otras construcciones en colores únicos, lo que mejoraría enormemente la legibilidad del código.
+
+ Además, permitiría que el panel Esquema pueda mostrar contenidos mucho más ricos y apropiados para cada archivo, facilitando la navegación.
+
+ Ha sido un desafío implementar esto ya que las bibliotecas en las que Spyder se ha basado para la detección y resaltado de sintaxis no se han mantenido al día con las utilizadas por muchos otros editores. Tu apoyo nos permitiría migrar a un marco moderno y en desarrollo activo que proporcione las mismas características que esperas en los IDE más populares.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 4
+ title: Mejorar el explorador de variables
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ Nos gustaría agregar soporte para ver objetos/tipos de datos personalizados en el Explorador de Variables sin necesidad de instalar todas sus bibliotecas correspondientes en el entorno de aplicación de Spyder, así como hacer que guardar y cargar sesiones sea mucho más robusto.
+ content: |
+ El Explorador de Variables es uno de los paneles más queridos en Spyder. Sin embargo, para inspeccionar cualquier objeto de una clase o tipo de datos personalizado, necesita tener las bibliotecas utilizadas para crearlo instaladas en el propio entorno de aplicación de Spyder. Esto es poco práctico, podría romper Spyder y está impedido por diseño con nuestros instaladores independientes recomendados.
+
+ Nos gustaría abordar esto mediante el soporte de un método portátil y simplificado de representación de objetos que no esté limitado por tal restricción. Junto con eso, también nos gustaría hacer que guardar y cargar archivos spydata para restaurar tu sesión actual más tarde sea más confiable y funcione en una variedad más amplia de tipos de datos utilizando una biblioteca más robusta para esa tarea.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte
index 61ee3170..8eb70e25 100644
--- a/src/routes/about/+page.svelte
+++ b/src/routes/about/+page.svelte
@@ -111,7 +111,7 @@
tracking-tight
font-extralight
text-mine-shaft-600
- dark:text-mine-shaft-200 my-16 md:my-32"
+ dark:text-mine-shaft-200 my-16 xl:my-32"
>
{pageTitle}
diff --git a/src/routes/donate/+page.svelte b/src/routes/donate/+page.svelte
index 9ad524bd..d9b0f4d4 100644
--- a/src/routes/donate/+page.svelte
+++ b/src/routes/donate/+page.svelte
@@ -4,7 +4,9 @@
import { metadata } from "$lib/store";
import { _, json, locale } from "svelte-i18n";
+ import Button from "$lib/components/Button.svelte";
import Metadata from "$lib/components/Metadata.svelte";
+ import PaymentModal from "$lib/components/PaymentModal.svelte";
import ProjectCard from "$lib/components/ProjectCard.svelte";
import SvelteMarkdown from "svelte-markdown";
@@ -14,22 +16,44 @@
const totalDonations = data?.totalDonations ?? 0;
const pipelineDeals = data?.pipelineDeals ?? [];
+ // Modal state
+ let showModal = false;
+ let selectedProjectDonationLinkID = null;
+ let currencyOptions = { style: "currency", currency: "USD", maximumFractionDigits: 0 };
+
$: keywords = config.site?.keywords ?? [];
$: lastUpdated = data?.lastUpdated ? new Date(data.lastUpdated).toLocaleDateString($locale) : null;
- $: projects = Object.values(
+ $: allProjects = Object.values(
[...props.projects, ...$json("donate.projects")].reduce((acc, project) => {
acc[project.id] = acc[project.id] ? { ...acc[project.id], ...project } : project;
return acc;
}, {}),
);
+ // Separate spyder project from others
+ $: spyderProject = allProjects.find((project) => project.slug === "spyder");
+ $: otherProjects = allProjects
+ .filter((project) => project.slug !== "spyder")
+ .sort((a, b) => {
+ // Sort by total donations in descending order
+ const aDonations = a.donations?.total || 0;
+ const bDonations = b.donations?.total || 0;
+ return bDonations - aDonations;
+ });
+
$: values = {
totalDonations: `$${totalDonations.toLocaleString()}`,
dealsCount: pipelineDeals.length,
lastUpdated,
};
+ // Function to open donation modal
+ const openDonationModal = (donationLinkID) => {
+ selectedProjectDonationLinkID = donationLinkID;
+ showModal = true;
+ };
+
$: metadata.setMetadata({
title: `${$_("config.site.title")} | ${$_("donate.page.title")}`,
description: $_("config.site.description"),
@@ -41,25 +65,25 @@
-
+
{$_("donate.page.title")}
-
+ mx-auto
+ mb-16
+ max-w-6xl
+ text-center
+ dark:text-neutral-200
+ md:text-xl"
+ >
-
- {#each projects as project}
-
- {/each}
-
+
+
+ {#if spyderProject}
+
+
+
+
+
+ {#if spyderProject.image}
+
+
+
+ {/if}
+
+ {spyderProject.title}
+
+
+
+ {#if spyderProject.donations}
+
+ {spyderProject.collected}:
+
+ {spyderProject.donations.total.toLocaleString($locale, currencyOptions)}
+
+
+ {/if}
+ {#if spyderProject.intro}
+ {spyderProject.intro}
+ {/if}
+ {#if spyderProject.button}
+
+ {#if spyderProject.button && spyderProject.button.text && spyderProject.donationLinkID}
+
+ {/if}
+
+
+
+
+
+ {/if}
+
+
+ {#if otherProjects.length > 0}
+
+ {$_("donate.page.otherProjects.title")}
+
+
+ {#each otherProjects as project}
+
+ {/each}
+
+ {/if}
+
+
+
+
diff --git a/static/data/github-contributors.json b/static/data/github-contributors.json
index e1fc8732..d0315e19 100644
--- a/static/data/github-contributors.json
+++ b/static/data/github-contributors.json
@@ -19,7 +19,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 14428
+ "contributions": 14581
},
{
"login": "dalthviz",
@@ -41,7 +41,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 2471
+ "contributions": 2584
},
{
"login": "PierreRaybaut",
@@ -129,7 +129,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 985
+ "contributions": 1008
},
{
"login": "jnsebgosselin",
@@ -239,7 +239,29 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 385
+ "contributions": 403
+ },
+ {
+ "login": "jitseniesen",
+ "id": 7941918,
+ "node_id": "MDQ6VXNlcjc5NDE5MTg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7941918?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/jitseniesen",
+ "html_url": "https://github.com/jitseniesen",
+ "followers_url": "https://api.github.com/users/jitseniesen/followers",
+ "following_url": "https://api.github.com/users/jitseniesen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/jitseniesen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/jitseniesen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/jitseniesen/subscriptions",
+ "organizations_url": "https://api.github.com/users/jitseniesen/orgs",
+ "repos_url": "https://api.github.com/users/jitseniesen/repos",
+ "events_url": "https://api.github.com/users/jitseniesen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/jitseniesen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 324
},
{
"login": "juanis2112",
@@ -285,28 +307,6 @@
"site_admin": false,
"contributions": 304
},
- {
- "login": "jitseniesen",
- "id": 7941918,
- "node_id": "MDQ6VXNlcjc5NDE5MTg=",
- "avatar_url": "https://avatars.githubusercontent.com/u/7941918?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jitseniesen",
- "html_url": "https://github.com/jitseniesen",
- "followers_url": "https://api.github.com/users/jitseniesen/followers",
- "following_url": "https://api.github.com/users/jitseniesen/following{/other_user}",
- "gists_url": "https://api.github.com/users/jitseniesen/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jitseniesen/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jitseniesen/subscriptions",
- "organizations_url": "https://api.github.com/users/jitseniesen/orgs",
- "repos_url": "https://api.github.com/users/jitseniesen/repos",
- "events_url": "https://api.github.com/users/jitseniesen/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jitseniesen/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 297
- },
{
"login": "hlouzada",
"id": 5204788,
@@ -327,7 +327,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 202
+ "contributions": 277
},
{
"login": "SylvainCorlay",
@@ -371,7 +371,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 176
+ "contributions": 178
},
{
"login": "bcolsen",
@@ -395,6 +395,28 @@
"site_admin": false,
"contributions": 136
},
+ {
+ "login": "jsbautista",
+ "id": 42411448,
+ "node_id": "MDQ6VXNlcjQyNDExNDQ4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/42411448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/jsbautista",
+ "html_url": "https://github.com/jsbautista",
+ "followers_url": "https://api.github.com/users/jsbautista/followers",
+ "following_url": "https://api.github.com/users/jsbautista/following{/other_user}",
+ "gists_url": "https://api.github.com/users/jsbautista/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/jsbautista/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/jsbautista/subscriptions",
+ "organizations_url": "https://api.github.com/users/jsbautista/orgs",
+ "repos_url": "https://api.github.com/users/jsbautista/repos",
+ "events_url": "https://api.github.com/users/jsbautista/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/jsbautista/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 121
+ },
{
"login": "techtonik",
"id": 515889,
@@ -417,6 +439,28 @@
"site_admin": false,
"contributions": 119
},
+ {
+ "login": "rear1019",
+ "id": 33811443,
+ "node_id": "MDQ6VXNlcjMzODExNDQz",
+ "avatar_url": "https://avatars.githubusercontent.com/u/33811443?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/rear1019",
+ "html_url": "https://github.com/rear1019",
+ "followers_url": "https://api.github.com/users/rear1019/followers",
+ "following_url": "https://api.github.com/users/rear1019/following{/other_user}",
+ "gists_url": "https://api.github.com/users/rear1019/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/rear1019/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/rear1019/subscriptions",
+ "organizations_url": "https://api.github.com/users/rear1019/orgs",
+ "repos_url": "https://api.github.com/users/rear1019/repos",
+ "events_url": "https://api.github.com/users/rear1019/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/rear1019/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 117
+ },
{
"login": "mariacamilarg",
"id": 3608776,
@@ -439,28 +483,6 @@
"site_admin": false,
"contributions": 110
},
- {
- "login": "rear1019",
- "id": 33811443,
- "node_id": "MDQ6VXNlcjMzODExNDQz",
- "avatar_url": "https://avatars.githubusercontent.com/u/33811443?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/rear1019",
- "html_url": "https://github.com/rear1019",
- "followers_url": "https://api.github.com/users/rear1019/followers",
- "following_url": "https://api.github.com/users/rear1019/following{/other_user}",
- "gists_url": "https://api.github.com/users/rear1019/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/rear1019/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/rear1019/subscriptions",
- "organizations_url": "https://api.github.com/users/rear1019/orgs",
- "repos_url": "https://api.github.com/users/rear1019/repos",
- "events_url": "https://api.github.com/users/rear1019/events{/privacy}",
- "received_events_url": "https://api.github.com/users/rear1019/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 109
- },
{
"login": "ok97465",
"id": 22970578,
@@ -483,28 +505,6 @@
"site_admin": false,
"contributions": 98
},
- {
- "login": "jsbautista",
- "id": 42411448,
- "node_id": "MDQ6VXNlcjQyNDExNDQ4",
- "avatar_url": "https://avatars.githubusercontent.com/u/42411448?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jsbautista",
- "html_url": "https://github.com/jsbautista",
- "followers_url": "https://api.github.com/users/jsbautista/followers",
- "following_url": "https://api.github.com/users/jsbautista/following{/other_user}",
- "gists_url": "https://api.github.com/users/jsbautista/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jsbautista/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jsbautista/subscriptions",
- "organizations_url": "https://api.github.com/users/jsbautista/orgs",
- "repos_url": "https://api.github.com/users/jsbautista/repos",
- "events_url": "https://api.github.com/users/jsbautista/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jsbautista/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 95
- },
{
"login": "dhoegh",
"id": 7973946,
@@ -858,22 +858,22 @@
"contributions": 27
},
{
- "login": "pwoosam",
- "id": 18713517,
- "node_id": "MDQ6VXNlcjE4NzEzNTE3",
- "avatar_url": "https://avatars.githubusercontent.com/u/18713517?v=4",
+ "login": "skjerns",
+ "id": 14980558,
+ "node_id": "MDQ6VXNlcjE0OTgwNTU4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14980558?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/pwoosam",
- "html_url": "https://github.com/pwoosam",
- "followers_url": "https://api.github.com/users/pwoosam/followers",
- "following_url": "https://api.github.com/users/pwoosam/following{/other_user}",
- "gists_url": "https://api.github.com/users/pwoosam/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/pwoosam/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/pwoosam/subscriptions",
- "organizations_url": "https://api.github.com/users/pwoosam/orgs",
- "repos_url": "https://api.github.com/users/pwoosam/repos",
- "events_url": "https://api.github.com/users/pwoosam/events{/privacy}",
- "received_events_url": "https://api.github.com/users/pwoosam/received_events",
+ "url": "https://api.github.com/users/skjerns",
+ "html_url": "https://github.com/skjerns",
+ "followers_url": "https://api.github.com/users/skjerns/followers",
+ "following_url": "https://api.github.com/users/skjerns/following{/other_user}",
+ "gists_url": "https://api.github.com/users/skjerns/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/skjerns/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/skjerns/subscriptions",
+ "organizations_url": "https://api.github.com/users/skjerns/orgs",
+ "repos_url": "https://api.github.com/users/skjerns/repos",
+ "events_url": "https://api.github.com/users/skjerns/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/skjerns/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -902,22 +902,22 @@
"contributions": 22
},
{
- "login": "skjerns",
- "id": 14980558,
- "node_id": "MDQ6VXNlcjE0OTgwNTU4",
- "avatar_url": "https://avatars.githubusercontent.com/u/14980558?v=4",
+ "login": "pwoosam",
+ "id": 18713517,
+ "node_id": "MDQ6VXNlcjE4NzEzNTE3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/18713517?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/skjerns",
- "html_url": "https://github.com/skjerns",
- "followers_url": "https://api.github.com/users/skjerns/followers",
- "following_url": "https://api.github.com/users/skjerns/following{/other_user}",
- "gists_url": "https://api.github.com/users/skjerns/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/skjerns/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/skjerns/subscriptions",
- "organizations_url": "https://api.github.com/users/skjerns/orgs",
- "repos_url": "https://api.github.com/users/skjerns/repos",
- "events_url": "https://api.github.com/users/skjerns/events{/privacy}",
- "received_events_url": "https://api.github.com/users/skjerns/received_events",
+ "url": "https://api.github.com/users/pwoosam",
+ "html_url": "https://github.com/pwoosam",
+ "followers_url": "https://api.github.com/users/pwoosam/followers",
+ "following_url": "https://api.github.com/users/pwoosam/following{/other_user}",
+ "gists_url": "https://api.github.com/users/pwoosam/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/pwoosam/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/pwoosam/subscriptions",
+ "organizations_url": "https://api.github.com/users/pwoosam/orgs",
+ "repos_url": "https://api.github.com/users/pwoosam/repos",
+ "events_url": "https://api.github.com/users/pwoosam/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/pwoosam/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -1009,6 +1009,28 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
+ "contributions": 18
+ },
+ {
+ "login": "thepycoder",
+ "id": 11781950,
+ "node_id": "MDQ6VXNlcjExNzgxOTUw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/11781950?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/thepycoder",
+ "html_url": "https://github.com/thepycoder",
+ "followers_url": "https://api.github.com/users/thepycoder/followers",
+ "following_url": "https://api.github.com/users/thepycoder/following{/other_user}",
+ "gists_url": "https://api.github.com/users/thepycoder/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/thepycoder/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/thepycoder/subscriptions",
+ "organizations_url": "https://api.github.com/users/thepycoder/orgs",
+ "repos_url": "https://api.github.com/users/thepycoder/repos",
+ "events_url": "https://api.github.com/users/thepycoder/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/thepycoder/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
"contributions": 17
},
{
@@ -1033,28 +1055,6 @@
"site_admin": false,
"contributions": 17
},
- {
- "login": "thepycoder",
- "id": 11781950,
- "node_id": "MDQ6VXNlcjExNzgxOTUw",
- "avatar_url": "https://avatars.githubusercontent.com/u/11781950?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/thepycoder",
- "html_url": "https://github.com/thepycoder",
- "followers_url": "https://api.github.com/users/thepycoder/followers",
- "following_url": "https://api.github.com/users/thepycoder/following{/other_user}",
- "gists_url": "https://api.github.com/users/thepycoder/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/thepycoder/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/thepycoder/subscriptions",
- "organizations_url": "https://api.github.com/users/thepycoder/orgs",
- "repos_url": "https://api.github.com/users/thepycoder/repos",
- "events_url": "https://api.github.com/users/thepycoder/events{/privacy}",
- "received_events_url": "https://api.github.com/users/thepycoder/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 17
- },
{
"login": "sohnishi",
"id": 20334211,
@@ -1099,28 +1099,6 @@
"site_admin": false,
"contributions": 13
},
- {
- "login": "larsoner",
- "id": 2365790,
- "node_id": "MDQ6VXNlcjIzNjU3OTA=",
- "avatar_url": "https://avatars.githubusercontent.com/u/2365790?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/larsoner",
- "html_url": "https://github.com/larsoner",
- "followers_url": "https://api.github.com/users/larsoner/followers",
- "following_url": "https://api.github.com/users/larsoner/following{/other_user}",
- "gists_url": "https://api.github.com/users/larsoner/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/larsoner/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/larsoner/subscriptions",
- "organizations_url": "https://api.github.com/users/larsoner/orgs",
- "repos_url": "https://api.github.com/users/larsoner/repos",
- "events_url": "https://api.github.com/users/larsoner/events{/privacy}",
- "received_events_url": "https://api.github.com/users/larsoner/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 12
- },
{
"login": "JGoutin",
"id": 13535894,
@@ -1166,11 +1144,33 @@
"contributions": 12
},
{
- "login": "rhkarls",
- "id": 2330659,
- "node_id": "MDQ6VXNlcjIzMzA2NTk=",
- "avatar_url": "https://avatars.githubusercontent.com/u/2330659?v=4",
- "gravatar_id": "",
+ "login": "larsoner",
+ "id": 2365790,
+ "node_id": "MDQ6VXNlcjIzNjU3OTA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2365790?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/larsoner",
+ "html_url": "https://github.com/larsoner",
+ "followers_url": "https://api.github.com/users/larsoner/followers",
+ "following_url": "https://api.github.com/users/larsoner/following{/other_user}",
+ "gists_url": "https://api.github.com/users/larsoner/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/larsoner/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/larsoner/subscriptions",
+ "organizations_url": "https://api.github.com/users/larsoner/orgs",
+ "repos_url": "https://api.github.com/users/larsoner/repos",
+ "events_url": "https://api.github.com/users/larsoner/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/larsoner/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 12
+ },
+ {
+ "login": "rhkarls",
+ "id": 2330659,
+ "node_id": "MDQ6VXNlcjIzMzA2NTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2330659?v=4",
+ "gravatar_id": "",
"url": "https://api.github.com/users/rhkarls",
"html_url": "https://github.com/rhkarls",
"followers_url": "https://api.github.com/users/rhkarls/followers",
@@ -2728,22 +2728,22 @@
"contributions": 3
},
{
- "login": "blackPantherOS",
- "id": 12883566,
- "node_id": "MDQ6VXNlcjEyODgzNTY2",
- "avatar_url": "https://avatars.githubusercontent.com/u/12883566?v=4",
+ "login": "StefRe",
+ "id": 19879328,
+ "node_id": "MDQ6VXNlcjE5ODc5MzI4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19879328?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/blackPantherOS",
- "html_url": "https://github.com/blackPantherOS",
- "followers_url": "https://api.github.com/users/blackPantherOS/followers",
- "following_url": "https://api.github.com/users/blackPantherOS/following{/other_user}",
- "gists_url": "https://api.github.com/users/blackPantherOS/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/blackPantherOS/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/blackPantherOS/subscriptions",
- "organizations_url": "https://api.github.com/users/blackPantherOS/orgs",
- "repos_url": "https://api.github.com/users/blackPantherOS/repos",
- "events_url": "https://api.github.com/users/blackPantherOS/events{/privacy}",
- "received_events_url": "https://api.github.com/users/blackPantherOS/received_events",
+ "url": "https://api.github.com/users/StefRe",
+ "html_url": "https://github.com/StefRe",
+ "followers_url": "https://api.github.com/users/StefRe/followers",
+ "following_url": "https://api.github.com/users/StefRe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/StefRe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/StefRe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/StefRe/subscriptions",
+ "organizations_url": "https://api.github.com/users/StefRe/orgs",
+ "repos_url": "https://api.github.com/users/StefRe/repos",
+ "events_url": "https://api.github.com/users/StefRe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/StefRe/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -2925,28 +2925,6 @@
"site_admin": false,
"contributions": 2
},
- {
- "login": "battaglia01",
- "id": 1020594,
- "node_id": "MDQ6VXNlcjEwMjA1OTQ=",
- "avatar_url": "https://avatars.githubusercontent.com/u/1020594?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/battaglia01",
- "html_url": "https://github.com/battaglia01",
- "followers_url": "https://api.github.com/users/battaglia01/followers",
- "following_url": "https://api.github.com/users/battaglia01/following{/other_user}",
- "gists_url": "https://api.github.com/users/battaglia01/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/battaglia01/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/battaglia01/subscriptions",
- "organizations_url": "https://api.github.com/users/battaglia01/orgs",
- "repos_url": "https://api.github.com/users/battaglia01/repos",
- "events_url": "https://api.github.com/users/battaglia01/events{/privacy}",
- "received_events_url": "https://api.github.com/users/battaglia01/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
{
"login": "stephenshank",
"id": 8673708,
@@ -2970,132 +2948,22 @@
"contributions": 2
},
{
- "login": "cbrnr",
- "id": 4377312,
- "node_id": "MDQ6VXNlcjQzNzczMTI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/4377312?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/cbrnr",
- "html_url": "https://github.com/cbrnr",
- "followers_url": "https://api.github.com/users/cbrnr/followers",
- "following_url": "https://api.github.com/users/cbrnr/following{/other_user}",
- "gists_url": "https://api.github.com/users/cbrnr/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/cbrnr/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/cbrnr/subscriptions",
- "organizations_url": "https://api.github.com/users/cbrnr/orgs",
- "repos_url": "https://api.github.com/users/cbrnr/repos",
- "events_url": "https://api.github.com/users/cbrnr/events{/privacy}",
- "received_events_url": "https://api.github.com/users/cbrnr/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "Mte90",
- "id": 403283,
- "node_id": "MDQ6VXNlcjQwMzI4Mw==",
- "avatar_url": "https://avatars.githubusercontent.com/u/403283?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Mte90",
- "html_url": "https://github.com/Mte90",
- "followers_url": "https://api.github.com/users/Mte90/followers",
- "following_url": "https://api.github.com/users/Mte90/following{/other_user}",
- "gists_url": "https://api.github.com/users/Mte90/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Mte90/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Mte90/subscriptions",
- "organizations_url": "https://api.github.com/users/Mte90/orgs",
- "repos_url": "https://api.github.com/users/Mte90/repos",
- "events_url": "https://api.github.com/users/Mte90/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Mte90/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "estraiton",
- "id": 32228416,
- "node_id": "MDQ6VXNlcjMyMjI4NDE2",
- "avatar_url": "https://avatars.githubusercontent.com/u/32228416?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/estraiton",
- "html_url": "https://github.com/estraiton",
- "followers_url": "https://api.github.com/users/estraiton/followers",
- "following_url": "https://api.github.com/users/estraiton/following{/other_user}",
- "gists_url": "https://api.github.com/users/estraiton/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/estraiton/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/estraiton/subscriptions",
- "organizations_url": "https://api.github.com/users/estraiton/orgs",
- "repos_url": "https://api.github.com/users/estraiton/repos",
- "events_url": "https://api.github.com/users/estraiton/events{/privacy}",
- "received_events_url": "https://api.github.com/users/estraiton/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "jfunez",
- "id": 805749,
- "node_id": "MDQ6VXNlcjgwNTc0OQ==",
- "avatar_url": "https://avatars.githubusercontent.com/u/805749?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jfunez",
- "html_url": "https://github.com/jfunez",
- "followers_url": "https://api.github.com/users/jfunez/followers",
- "following_url": "https://api.github.com/users/jfunez/following{/other_user}",
- "gists_url": "https://api.github.com/users/jfunez/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jfunez/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jfunez/subscriptions",
- "organizations_url": "https://api.github.com/users/jfunez/orgs",
- "repos_url": "https://api.github.com/users/jfunez/repos",
- "events_url": "https://api.github.com/users/jfunez/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jfunez/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "kevinsmia1939",
- "id": 11407922,
- "node_id": "MDQ6VXNlcjExNDA3OTIy",
- "avatar_url": "https://avatars.githubusercontent.com/u/11407922?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/kevinsmia1939",
- "html_url": "https://github.com/kevinsmia1939",
- "followers_url": "https://api.github.com/users/kevinsmia1939/followers",
- "following_url": "https://api.github.com/users/kevinsmia1939/following{/other_user}",
- "gists_url": "https://api.github.com/users/kevinsmia1939/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/kevinsmia1939/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/kevinsmia1939/subscriptions",
- "organizations_url": "https://api.github.com/users/kevinsmia1939/orgs",
- "repos_url": "https://api.github.com/users/kevinsmia1939/repos",
- "events_url": "https://api.github.com/users/kevinsmia1939/events{/privacy}",
- "received_events_url": "https://api.github.com/users/kevinsmia1939/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "StefRe",
- "id": 19879328,
- "node_id": "MDQ6VXNlcjE5ODc5MzI4",
- "avatar_url": "https://avatars.githubusercontent.com/u/19879328?v=4",
+ "login": "battaglia01",
+ "id": 1020594,
+ "node_id": "MDQ6VXNlcjEwMjA1OTQ=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1020594?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/StefRe",
- "html_url": "https://github.com/StefRe",
- "followers_url": "https://api.github.com/users/StefRe/followers",
- "following_url": "https://api.github.com/users/StefRe/following{/other_user}",
- "gists_url": "https://api.github.com/users/StefRe/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/StefRe/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/StefRe/subscriptions",
- "organizations_url": "https://api.github.com/users/StefRe/orgs",
- "repos_url": "https://api.github.com/users/StefRe/repos",
- "events_url": "https://api.github.com/users/StefRe/events{/privacy}",
- "received_events_url": "https://api.github.com/users/StefRe/received_events",
+ "url": "https://api.github.com/users/battaglia01",
+ "html_url": "https://github.com/battaglia01",
+ "followers_url": "https://api.github.com/users/battaglia01/followers",
+ "following_url": "https://api.github.com/users/battaglia01/following{/other_user}",
+ "gists_url": "https://api.github.com/users/battaglia01/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/battaglia01/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/battaglia01/subscriptions",
+ "organizations_url": "https://api.github.com/users/battaglia01/orgs",
+ "repos_url": "https://api.github.com/users/battaglia01/repos",
+ "events_url": "https://api.github.com/users/battaglia01/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/battaglia01/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3146,22 +3014,22 @@
"contributions": 2
},
{
- "login": "ximion",
- "id": 417468,
- "node_id": "MDQ6VXNlcjQxNzQ2OA==",
- "avatar_url": "https://avatars.githubusercontent.com/u/417468?v=4",
+ "login": "bioruffo",
+ "id": 24945128,
+ "node_id": "MDQ6VXNlcjI0OTQ1MTI4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/24945128?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/ximion",
- "html_url": "https://github.com/ximion",
- "followers_url": "https://api.github.com/users/ximion/followers",
- "following_url": "https://api.github.com/users/ximion/following{/other_user}",
- "gists_url": "https://api.github.com/users/ximion/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ximion/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ximion/subscriptions",
- "organizations_url": "https://api.github.com/users/ximion/orgs",
- "repos_url": "https://api.github.com/users/ximion/repos",
- "events_url": "https://api.github.com/users/ximion/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ximion/received_events",
+ "url": "https://api.github.com/users/bioruffo",
+ "html_url": "https://github.com/bioruffo",
+ "followers_url": "https://api.github.com/users/bioruffo/followers",
+ "following_url": "https://api.github.com/users/bioruffo/following{/other_user}",
+ "gists_url": "https://api.github.com/users/bioruffo/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/bioruffo/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/bioruffo/subscriptions",
+ "organizations_url": "https://api.github.com/users/bioruffo/orgs",
+ "repos_url": "https://api.github.com/users/bioruffo/repos",
+ "events_url": "https://api.github.com/users/bioruffo/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/bioruffo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3190,158 +3058,158 @@
"contributions": 2
},
{
- "login": "bioruffo",
- "id": 24945128,
- "node_id": "MDQ6VXNlcjI0OTQ1MTI4",
- "avatar_url": "https://avatars.githubusercontent.com/u/24945128?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/bioruffo",
- "html_url": "https://github.com/bioruffo",
- "followers_url": "https://api.github.com/users/bioruffo/followers",
- "following_url": "https://api.github.com/users/bioruffo/following{/other_user}",
- "gists_url": "https://api.github.com/users/bioruffo/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/bioruffo/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/bioruffo/subscriptions",
- "organizations_url": "https://api.github.com/users/bioruffo/orgs",
- "repos_url": "https://api.github.com/users/bioruffo/repos",
- "events_url": "https://api.github.com/users/bioruffo/events{/privacy}",
- "received_events_url": "https://api.github.com/users/bioruffo/received_events",
+ "login": "ximion",
+ "id": 417468,
+ "node_id": "MDQ6VXNlcjQxNzQ2OA==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/417468?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/ximion",
+ "html_url": "https://github.com/ximion",
+ "followers_url": "https://api.github.com/users/ximion/followers",
+ "following_url": "https://api.github.com/users/ximion/following{/other_user}",
+ "gists_url": "https://api.github.com/users/ximion/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/ximion/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/ximion/subscriptions",
+ "organizations_url": "https://api.github.com/users/ximion/orgs",
+ "repos_url": "https://api.github.com/users/ximion/repos",
+ "events_url": "https://api.github.com/users/ximion/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/ximion/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
- "login": "tlunet",
- "id": 12183839,
- "node_id": "MDQ6VXNlcjEyMTgzODM5",
- "avatar_url": "https://avatars.githubusercontent.com/u/12183839?v=4",
+ "login": "kevinsmia1939",
+ "id": 11407922,
+ "node_id": "MDQ6VXNlcjExNDA3OTIy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/11407922?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/tlunet",
- "html_url": "https://github.com/tlunet",
- "followers_url": "https://api.github.com/users/tlunet/followers",
- "following_url": "https://api.github.com/users/tlunet/following{/other_user}",
- "gists_url": "https://api.github.com/users/tlunet/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tlunet/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tlunet/subscriptions",
- "organizations_url": "https://api.github.com/users/tlunet/orgs",
- "repos_url": "https://api.github.com/users/tlunet/repos",
- "events_url": "https://api.github.com/users/tlunet/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tlunet/received_events",
+ "url": "https://api.github.com/users/kevinsmia1939",
+ "html_url": "https://github.com/kevinsmia1939",
+ "followers_url": "https://api.github.com/users/kevinsmia1939/followers",
+ "following_url": "https://api.github.com/users/kevinsmia1939/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kevinsmia1939/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kevinsmia1939/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kevinsmia1939/subscriptions",
+ "organizations_url": "https://api.github.com/users/kevinsmia1939/orgs",
+ "repos_url": "https://api.github.com/users/kevinsmia1939/repos",
+ "events_url": "https://api.github.com/users/kevinsmia1939/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kevinsmia1939/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "tovogt",
- "id": 57705593,
- "node_id": "MDQ6VXNlcjU3NzA1NTkz",
- "avatar_url": "https://avatars.githubusercontent.com/u/57705593?v=4",
+ "login": "jfunez",
+ "id": 805749,
+ "node_id": "MDQ6VXNlcjgwNTc0OQ==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/805749?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/tovogt",
- "html_url": "https://github.com/tovogt",
- "followers_url": "https://api.github.com/users/tovogt/followers",
- "following_url": "https://api.github.com/users/tovogt/following{/other_user}",
- "gists_url": "https://api.github.com/users/tovogt/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tovogt/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tovogt/subscriptions",
- "organizations_url": "https://api.github.com/users/tovogt/orgs",
- "repos_url": "https://api.github.com/users/tovogt/repos",
- "events_url": "https://api.github.com/users/tovogt/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tovogt/received_events",
+ "url": "https://api.github.com/users/jfunez",
+ "html_url": "https://github.com/jfunez",
+ "followers_url": "https://api.github.com/users/jfunez/followers",
+ "following_url": "https://api.github.com/users/jfunez/following{/other_user}",
+ "gists_url": "https://api.github.com/users/jfunez/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/jfunez/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/jfunez/subscriptions",
+ "organizations_url": "https://api.github.com/users/jfunez/orgs",
+ "repos_url": "https://api.github.com/users/jfunez/repos",
+ "events_url": "https://api.github.com/users/jfunez/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/jfunez/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "Ajax-Light",
- "id": 54140487,
- "node_id": "MDQ6VXNlcjU0MTQwNDg3",
- "avatar_url": "https://avatars.githubusercontent.com/u/54140487?v=4",
+ "login": "estraiton",
+ "id": 32228416,
+ "node_id": "MDQ6VXNlcjMyMjI4NDE2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/32228416?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/Ajax-Light",
- "html_url": "https://github.com/Ajax-Light",
- "followers_url": "https://api.github.com/users/Ajax-Light/followers",
- "following_url": "https://api.github.com/users/Ajax-Light/following{/other_user}",
- "gists_url": "https://api.github.com/users/Ajax-Light/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Ajax-Light/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Ajax-Light/subscriptions",
- "organizations_url": "https://api.github.com/users/Ajax-Light/orgs",
- "repos_url": "https://api.github.com/users/Ajax-Light/repos",
- "events_url": "https://api.github.com/users/Ajax-Light/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Ajax-Light/received_events",
+ "url": "https://api.github.com/users/estraiton",
+ "html_url": "https://github.com/estraiton",
+ "followers_url": "https://api.github.com/users/estraiton/followers",
+ "following_url": "https://api.github.com/users/estraiton/following{/other_user}",
+ "gists_url": "https://api.github.com/users/estraiton/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/estraiton/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/estraiton/subscriptions",
+ "organizations_url": "https://api.github.com/users/estraiton/orgs",
+ "repos_url": "https://api.github.com/users/estraiton/repos",
+ "events_url": "https://api.github.com/users/estraiton/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/estraiton/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "Virinas-code",
- "id": 61283052,
- "node_id": "MDQ6VXNlcjYxMjgzMDUy",
- "avatar_url": "https://avatars.githubusercontent.com/u/61283052?v=4",
+ "login": "Mte90",
+ "id": 403283,
+ "node_id": "MDQ6VXNlcjQwMzI4Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/403283?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/Virinas-code",
- "html_url": "https://github.com/Virinas-code",
- "followers_url": "https://api.github.com/users/Virinas-code/followers",
- "following_url": "https://api.github.com/users/Virinas-code/following{/other_user}",
- "gists_url": "https://api.github.com/users/Virinas-code/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Virinas-code/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Virinas-code/subscriptions",
- "organizations_url": "https://api.github.com/users/Virinas-code/orgs",
- "repos_url": "https://api.github.com/users/Virinas-code/repos",
- "events_url": "https://api.github.com/users/Virinas-code/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Virinas-code/received_events",
+ "url": "https://api.github.com/users/Mte90",
+ "html_url": "https://github.com/Mte90",
+ "followers_url": "https://api.github.com/users/Mte90/followers",
+ "following_url": "https://api.github.com/users/Mte90/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Mte90/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Mte90/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Mte90/subscriptions",
+ "organizations_url": "https://api.github.com/users/Mte90/orgs",
+ "repos_url": "https://api.github.com/users/Mte90/repos",
+ "events_url": "https://api.github.com/users/Mte90/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Mte90/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "alexfargus",
- "id": 1611282,
- "node_id": "MDQ6VXNlcjE2MTEyODI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/1611282?v=4",
+ "login": "cbrnr",
+ "id": 4377312,
+ "node_id": "MDQ6VXNlcjQzNzczMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4377312?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/alexfargus",
- "html_url": "https://github.com/alexfargus",
- "followers_url": "https://api.github.com/users/alexfargus/followers",
- "following_url": "https://api.github.com/users/alexfargus/following{/other_user}",
- "gists_url": "https://api.github.com/users/alexfargus/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/alexfargus/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/alexfargus/subscriptions",
- "organizations_url": "https://api.github.com/users/alexfargus/orgs",
- "repos_url": "https://api.github.com/users/alexfargus/repos",
- "events_url": "https://api.github.com/users/alexfargus/events{/privacy}",
- "received_events_url": "https://api.github.com/users/alexfargus/received_events",
+ "url": "https://api.github.com/users/cbrnr",
+ "html_url": "https://github.com/cbrnr",
+ "followers_url": "https://api.github.com/users/cbrnr/followers",
+ "following_url": "https://api.github.com/users/cbrnr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/cbrnr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/cbrnr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/cbrnr/subscriptions",
+ "organizations_url": "https://api.github.com/users/cbrnr/orgs",
+ "repos_url": "https://api.github.com/users/cbrnr/repos",
+ "events_url": "https://api.github.com/users/cbrnr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/cbrnr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "alfonsotwr",
- "id": 64971658,
- "node_id": "MDQ6VXNlcjY0OTcxNjU4",
- "avatar_url": "https://avatars.githubusercontent.com/u/64971658?v=4",
+ "login": "blackPantherOS",
+ "id": 12883566,
+ "node_id": "MDQ6VXNlcjEyODgzNTY2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12883566?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/alfonsotwr",
- "html_url": "https://github.com/alfonsotwr",
- "followers_url": "https://api.github.com/users/alfonsotwr/followers",
- "following_url": "https://api.github.com/users/alfonsotwr/following{/other_user}",
- "gists_url": "https://api.github.com/users/alfonsotwr/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/alfonsotwr/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/alfonsotwr/subscriptions",
- "organizations_url": "https://api.github.com/users/alfonsotwr/orgs",
- "repos_url": "https://api.github.com/users/alfonsotwr/repos",
- "events_url": "https://api.github.com/users/alfonsotwr/events{/privacy}",
- "received_events_url": "https://api.github.com/users/alfonsotwr/received_events",
+ "url": "https://api.github.com/users/blackPantherOS",
+ "html_url": "https://github.com/blackPantherOS",
+ "followers_url": "https://api.github.com/users/blackPantherOS/followers",
+ "following_url": "https://api.github.com/users/blackPantherOS/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blackPantherOS/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blackPantherOS/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blackPantherOS/subscriptions",
+ "organizations_url": "https://api.github.com/users/blackPantherOS/orgs",
+ "repos_url": "https://api.github.com/users/blackPantherOS/repos",
+ "events_url": "https://api.github.com/users/blackPantherOS/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blackPantherOS/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
"login": "simonleetheprogrammer",
@@ -3365,28 +3233,6 @@
"site_admin": false,
"contributions": 1
},
- {
- "login": "wojnilowicz",
- "id": 22069602,
- "node_id": "MDQ6VXNlcjIyMDY5NjAy",
- "avatar_url": "https://avatars.githubusercontent.com/u/22069602?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/wojnilowicz",
- "html_url": "https://github.com/wojnilowicz",
- "followers_url": "https://api.github.com/users/wojnilowicz/followers",
- "following_url": "https://api.github.com/users/wojnilowicz/following{/other_user}",
- "gists_url": "https://api.github.com/users/wojnilowicz/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/wojnilowicz/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/wojnilowicz/subscriptions",
- "organizations_url": "https://api.github.com/users/wojnilowicz/orgs",
- "repos_url": "https://api.github.com/users/wojnilowicz/repos",
- "events_url": "https://api.github.com/users/wojnilowicz/events{/privacy}",
- "received_events_url": "https://api.github.com/users/wojnilowicz/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1
- },
{
"login": "azure-pipelines[bot]",
"id": 36771401,
@@ -3520,176 +3366,330 @@
"contributions": 1
},
{
- "login": "dzosz",
- "id": 13596691,
- "node_id": "MDQ6VXNlcjEzNTk2Njkx",
- "avatar_url": "https://avatars.githubusercontent.com/u/13596691?v=4",
+ "login": "wojnilowicz",
+ "id": 22069602,
+ "node_id": "MDQ6VXNlcjIyMDY5NjAy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/22069602?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/dzosz",
- "html_url": "https://github.com/dzosz",
- "followers_url": "https://api.github.com/users/dzosz/followers",
- "following_url": "https://api.github.com/users/dzosz/following{/other_user}",
- "gists_url": "https://api.github.com/users/dzosz/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/dzosz/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/dzosz/subscriptions",
- "organizations_url": "https://api.github.com/users/dzosz/orgs",
- "repos_url": "https://api.github.com/users/dzosz/repos",
- "events_url": "https://api.github.com/users/dzosz/events{/privacy}",
- "received_events_url": "https://api.github.com/users/dzosz/received_events",
+ "url": "https://api.github.com/users/wojnilowicz",
+ "html_url": "https://github.com/wojnilowicz",
+ "followers_url": "https://api.github.com/users/wojnilowicz/followers",
+ "following_url": "https://api.github.com/users/wojnilowicz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/wojnilowicz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/wojnilowicz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/wojnilowicz/subscriptions",
+ "organizations_url": "https://api.github.com/users/wojnilowicz/orgs",
+ "repos_url": "https://api.github.com/users/wojnilowicz/repos",
+ "events_url": "https://api.github.com/users/wojnilowicz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/wojnilowicz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "freddii",
- "id": 7213207,
- "node_id": "MDQ6VXNlcjcyMTMyMDc=",
- "avatar_url": "https://avatars.githubusercontent.com/u/7213207?v=4",
+ "login": "alfonsotwr",
+ "id": 64971658,
+ "node_id": "MDQ6VXNlcjY0OTcxNjU4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/64971658?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/freddii",
- "html_url": "https://github.com/freddii",
- "followers_url": "https://api.github.com/users/freddii/followers",
- "following_url": "https://api.github.com/users/freddii/following{/other_user}",
- "gists_url": "https://api.github.com/users/freddii/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/freddii/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/freddii/subscriptions",
- "organizations_url": "https://api.github.com/users/freddii/orgs",
- "repos_url": "https://api.github.com/users/freddii/repos",
- "events_url": "https://api.github.com/users/freddii/events{/privacy}",
- "received_events_url": "https://api.github.com/users/freddii/received_events",
+ "url": "https://api.github.com/users/alfonsotwr",
+ "html_url": "https://github.com/alfonsotwr",
+ "followers_url": "https://api.github.com/users/alfonsotwr/followers",
+ "following_url": "https://api.github.com/users/alfonsotwr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/alfonsotwr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/alfonsotwr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/alfonsotwr/subscriptions",
+ "organizations_url": "https://api.github.com/users/alfonsotwr/orgs",
+ "repos_url": "https://api.github.com/users/alfonsotwr/repos",
+ "events_url": "https://api.github.com/users/alfonsotwr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/alfonsotwr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "fxjaeckel",
- "id": 45701052,
- "node_id": "MDQ6VXNlcjQ1NzAxMDUy",
- "avatar_url": "https://avatars.githubusercontent.com/u/45701052?v=4",
+ "login": "alexfargus",
+ "id": 1611282,
+ "node_id": "MDQ6VXNlcjE2MTEyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1611282?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/fxjaeckel",
- "html_url": "https://github.com/fxjaeckel",
- "followers_url": "https://api.github.com/users/fxjaeckel/followers",
- "following_url": "https://api.github.com/users/fxjaeckel/following{/other_user}",
- "gists_url": "https://api.github.com/users/fxjaeckel/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/fxjaeckel/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/fxjaeckel/subscriptions",
- "organizations_url": "https://api.github.com/users/fxjaeckel/orgs",
- "repos_url": "https://api.github.com/users/fxjaeckel/repos",
- "events_url": "https://api.github.com/users/fxjaeckel/events{/privacy}",
- "received_events_url": "https://api.github.com/users/fxjaeckel/received_events",
+ "url": "https://api.github.com/users/alexfargus",
+ "html_url": "https://github.com/alexfargus",
+ "followers_url": "https://api.github.com/users/alexfargus/followers",
+ "following_url": "https://api.github.com/users/alexfargus/following{/other_user}",
+ "gists_url": "https://api.github.com/users/alexfargus/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/alexfargus/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/alexfargus/subscriptions",
+ "organizations_url": "https://api.github.com/users/alexfargus/orgs",
+ "repos_url": "https://api.github.com/users/alexfargus/repos",
+ "events_url": "https://api.github.com/users/alexfargus/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/alexfargus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "habibmy",
- "id": 29559410,
- "node_id": "MDQ6VXNlcjI5NTU5NDEw",
- "avatar_url": "https://avatars.githubusercontent.com/u/29559410?v=4",
+ "login": "Virinas-code",
+ "id": 61283052,
+ "node_id": "MDQ6VXNlcjYxMjgzMDUy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/61283052?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/habibmy",
- "html_url": "https://github.com/habibmy",
- "followers_url": "https://api.github.com/users/habibmy/followers",
- "following_url": "https://api.github.com/users/habibmy/following{/other_user}",
- "gists_url": "https://api.github.com/users/habibmy/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/habibmy/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/habibmy/subscriptions",
- "organizations_url": "https://api.github.com/users/habibmy/orgs",
- "repos_url": "https://api.github.com/users/habibmy/repos",
- "events_url": "https://api.github.com/users/habibmy/events{/privacy}",
- "received_events_url": "https://api.github.com/users/habibmy/received_events",
+ "url": "https://api.github.com/users/Virinas-code",
+ "html_url": "https://github.com/Virinas-code",
+ "followers_url": "https://api.github.com/users/Virinas-code/followers",
+ "following_url": "https://api.github.com/users/Virinas-code/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Virinas-code/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Virinas-code/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Virinas-code/subscriptions",
+ "organizations_url": "https://api.github.com/users/Virinas-code/orgs",
+ "repos_url": "https://api.github.com/users/Virinas-code/repos",
+ "events_url": "https://api.github.com/users/Virinas-code/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Virinas-code/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "javidcf",
- "id": 1098280,
- "node_id": "MDQ6VXNlcjEwOTgyODA=",
- "avatar_url": "https://avatars.githubusercontent.com/u/1098280?v=4",
+ "login": "Ajax-Light",
+ "id": 54140487,
+ "node_id": "MDQ6VXNlcjU0MTQwNDg3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/54140487?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/javidcf",
- "html_url": "https://github.com/javidcf",
- "followers_url": "https://api.github.com/users/javidcf/followers",
- "following_url": "https://api.github.com/users/javidcf/following{/other_user}",
- "gists_url": "https://api.github.com/users/javidcf/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/javidcf/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/javidcf/subscriptions",
- "organizations_url": "https://api.github.com/users/javidcf/orgs",
- "repos_url": "https://api.github.com/users/javidcf/repos",
- "events_url": "https://api.github.com/users/javidcf/events{/privacy}",
- "received_events_url": "https://api.github.com/users/javidcf/received_events",
+ "url": "https://api.github.com/users/Ajax-Light",
+ "html_url": "https://github.com/Ajax-Light",
+ "followers_url": "https://api.github.com/users/Ajax-Light/followers",
+ "following_url": "https://api.github.com/users/Ajax-Light/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Ajax-Light/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Ajax-Light/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Ajax-Light/subscriptions",
+ "organizations_url": "https://api.github.com/users/Ajax-Light/orgs",
+ "repos_url": "https://api.github.com/users/Ajax-Light/repos",
+ "events_url": "https://api.github.com/users/Ajax-Light/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Ajax-Light/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "lpinner",
- "id": 4827816,
- "node_id": "MDQ6VXNlcjQ4Mjc4MTY=",
- "avatar_url": "https://avatars.githubusercontent.com/u/4827816?v=4",
+ "login": "tovogt",
+ "id": 57705593,
+ "node_id": "MDQ6VXNlcjU3NzA1NTkz",
+ "avatar_url": "https://avatars.githubusercontent.com/u/57705593?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/lpinner",
- "html_url": "https://github.com/lpinner",
- "followers_url": "https://api.github.com/users/lpinner/followers",
- "following_url": "https://api.github.com/users/lpinner/following{/other_user}",
- "gists_url": "https://api.github.com/users/lpinner/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/lpinner/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/lpinner/subscriptions",
- "organizations_url": "https://api.github.com/users/lpinner/orgs",
- "repos_url": "https://api.github.com/users/lpinner/repos",
- "events_url": "https://api.github.com/users/lpinner/events{/privacy}",
- "received_events_url": "https://api.github.com/users/lpinner/received_events",
+ "url": "https://api.github.com/users/tovogt",
+ "html_url": "https://github.com/tovogt",
+ "followers_url": "https://api.github.com/users/tovogt/followers",
+ "following_url": "https://api.github.com/users/tovogt/following{/other_user}",
+ "gists_url": "https://api.github.com/users/tovogt/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/tovogt/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/tovogt/subscriptions",
+ "organizations_url": "https://api.github.com/users/tovogt/orgs",
+ "repos_url": "https://api.github.com/users/tovogt/repos",
+ "events_url": "https://api.github.com/users/tovogt/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/tovogt/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "ptocca",
- "id": 12876344,
- "node_id": "MDQ6VXNlcjEyODc2MzQ0",
- "avatar_url": "https://avatars.githubusercontent.com/u/12876344?v=4",
+ "login": "tlunet",
+ "id": 12183839,
+ "node_id": "MDQ6VXNlcjEyMTgzODM5",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12183839?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/ptocca",
- "html_url": "https://github.com/ptocca",
- "followers_url": "https://api.github.com/users/ptocca/followers",
- "following_url": "https://api.github.com/users/ptocca/following{/other_user}",
- "gists_url": "https://api.github.com/users/ptocca/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ptocca/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ptocca/subscriptions",
- "organizations_url": "https://api.github.com/users/ptocca/orgs",
- "repos_url": "https://api.github.com/users/ptocca/repos",
- "events_url": "https://api.github.com/users/ptocca/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ptocca/received_events",
+ "url": "https://api.github.com/users/tlunet",
+ "html_url": "https://github.com/tlunet",
+ "followers_url": "https://api.github.com/users/tlunet/followers",
+ "following_url": "https://api.github.com/users/tlunet/following{/other_user}",
+ "gists_url": "https://api.github.com/users/tlunet/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/tlunet/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/tlunet/subscriptions",
+ "organizations_url": "https://api.github.com/users/tlunet/orgs",
+ "repos_url": "https://api.github.com/users/tlunet/repos",
+ "events_url": "https://api.github.com/users/tlunet/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/tlunet/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "ryohei22",
- "id": 65102983,
- "node_id": "MDQ6VXNlcjY1MTAyOTgz",
- "avatar_url": "https://avatars.githubusercontent.com/u/65102983?v=4",
+ "login": "afvincent",
+ "id": 17270724,
+ "node_id": "MDQ6VXNlcjE3MjcwNzI0",
+ "avatar_url": "https://avatars.githubusercontent.com/u/17270724?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/ryohei22",
- "html_url": "https://github.com/ryohei22",
- "followers_url": "https://api.github.com/users/ryohei22/followers",
- "following_url": "https://api.github.com/users/ryohei22/following{/other_user}",
- "gists_url": "https://api.github.com/users/ryohei22/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ryohei22/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ryohei22/subscriptions",
- "organizations_url": "https://api.github.com/users/ryohei22/orgs",
- "repos_url": "https://api.github.com/users/ryohei22/repos",
- "events_url": "https://api.github.com/users/ryohei22/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ryohei22/received_events",
+ "url": "https://api.github.com/users/afvincent",
+ "html_url": "https://github.com/afvincent",
+ "followers_url": "https://api.github.com/users/afvincent/followers",
+ "following_url": "https://api.github.com/users/afvincent/following{/other_user}",
+ "gists_url": "https://api.github.com/users/afvincent/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/afvincent/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/afvincent/subscriptions",
+ "organizations_url": "https://api.github.com/users/afvincent/orgs",
+ "repos_url": "https://api.github.com/users/afvincent/repos",
+ "events_url": "https://api.github.com/users/afvincent/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/afvincent/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "real-yfprojects",
+ "id": 62463991,
+ "node_id": "MDQ6VXNlcjYyNDYzOTkx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/62463991?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/real-yfprojects",
+ "html_url": "https://github.com/real-yfprojects",
+ "followers_url": "https://api.github.com/users/real-yfprojects/followers",
+ "following_url": "https://api.github.com/users/real-yfprojects/following{/other_user}",
+ "gists_url": "https://api.github.com/users/real-yfprojects/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/real-yfprojects/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/real-yfprojects/subscriptions",
+ "organizations_url": "https://api.github.com/users/real-yfprojects/orgs",
+ "repos_url": "https://api.github.com/users/real-yfprojects/repos",
+ "events_url": "https://api.github.com/users/real-yfprojects/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/real-yfprojects/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "amish",
+ "id": 9803532,
+ "node_id": "MDQ6VXNlcjk4MDM1MzI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/9803532?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/amish",
+ "html_url": "https://github.com/amish",
+ "followers_url": "https://api.github.com/users/amish/followers",
+ "following_url": "https://api.github.com/users/amish/following{/other_user}",
+ "gists_url": "https://api.github.com/users/amish/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/amish/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/amish/subscriptions",
+ "organizations_url": "https://api.github.com/users/amish/orgs",
+ "repos_url": "https://api.github.com/users/amish/repos",
+ "events_url": "https://api.github.com/users/amish/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/amish/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "trollodel",
+ "id": 33117082,
+ "node_id": "MDQ6VXNlcjMzMTE3MDgy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/33117082?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/trollodel",
+ "html_url": "https://github.com/trollodel",
+ "followers_url": "https://api.github.com/users/trollodel/followers",
+ "following_url": "https://api.github.com/users/trollodel/following{/other_user}",
+ "gists_url": "https://api.github.com/users/trollodel/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/trollodel/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/trollodel/subscriptions",
+ "organizations_url": "https://api.github.com/users/trollodel/orgs",
+ "repos_url": "https://api.github.com/users/trollodel/repos",
+ "events_url": "https://api.github.com/users/trollodel/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/trollodel/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "talkaminker",
+ "id": 13932998,
+ "node_id": "MDQ6VXNlcjEzOTMyOTk4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/13932998?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/talkaminker",
+ "html_url": "https://github.com/talkaminker",
+ "followers_url": "https://api.github.com/users/talkaminker/followers",
+ "following_url": "https://api.github.com/users/talkaminker/following{/other_user}",
+ "gists_url": "https://api.github.com/users/talkaminker/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/talkaminker/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/talkaminker/subscriptions",
+ "organizations_url": "https://api.github.com/users/talkaminker/orgs",
+ "repos_url": "https://api.github.com/users/talkaminker/repos",
+ "events_url": "https://api.github.com/users/talkaminker/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/talkaminker/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "scottwedge",
+ "id": 3101154,
+ "node_id": "MDQ6VXNlcjMxMDExNTQ=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3101154?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/scottwedge",
+ "html_url": "https://github.com/scottwedge",
+ "followers_url": "https://api.github.com/users/scottwedge/followers",
+ "following_url": "https://api.github.com/users/scottwedge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/scottwedge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/scottwedge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/scottwedge/subscriptions",
+ "organizations_url": "https://api.github.com/users/scottwedge/orgs",
+ "repos_url": "https://api.github.com/users/scottwedge/repos",
+ "events_url": "https://api.github.com/users/scottwedge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/scottwedge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "sphh",
+ "id": 4856462,
+ "node_id": "MDQ6VXNlcjQ4NTY0NjI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4856462?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/sphh",
+ "html_url": "https://github.com/sphh",
+ "followers_url": "https://api.github.com/users/sphh/followers",
+ "following_url": "https://api.github.com/users/sphh/following{/other_user}",
+ "gists_url": "https://api.github.com/users/sphh/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/sphh/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/sphh/subscriptions",
+ "organizations_url": "https://api.github.com/users/sphh/orgs",
+ "repos_url": "https://api.github.com/users/sphh/repos",
+ "events_url": "https://api.github.com/users/sphh/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/sphh/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "sonofeft",
+ "id": 13057199,
+ "node_id": "MDQ6VXNlcjEzMDU3MTk5",
+ "avatar_url": "https://avatars.githubusercontent.com/u/13057199?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/sonofeft",
+ "html_url": "https://github.com/sonofeft",
+ "followers_url": "https://api.github.com/users/sonofeft/followers",
+ "following_url": "https://api.github.com/users/sonofeft/following{/other_user}",
+ "gists_url": "https://api.github.com/users/sonofeft/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/sonofeft/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/sonofeft/subscriptions",
+ "organizations_url": "https://api.github.com/users/sonofeft/orgs",
+ "repos_url": "https://api.github.com/users/sonofeft/repos",
+ "events_url": "https://api.github.com/users/sonofeft/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/sonofeft/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3718,176 +3718,176 @@
"contributions": 1
},
{
- "login": "sonofeft",
- "id": 13057199,
- "node_id": "MDQ6VXNlcjEzMDU3MTk5",
- "avatar_url": "https://avatars.githubusercontent.com/u/13057199?v=4",
+ "login": "ryohei22",
+ "id": 65102983,
+ "node_id": "MDQ6VXNlcjY1MTAyOTgz",
+ "avatar_url": "https://avatars.githubusercontent.com/u/65102983?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/sonofeft",
- "html_url": "https://github.com/sonofeft",
- "followers_url": "https://api.github.com/users/sonofeft/followers",
- "following_url": "https://api.github.com/users/sonofeft/following{/other_user}",
- "gists_url": "https://api.github.com/users/sonofeft/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/sonofeft/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/sonofeft/subscriptions",
- "organizations_url": "https://api.github.com/users/sonofeft/orgs",
- "repos_url": "https://api.github.com/users/sonofeft/repos",
- "events_url": "https://api.github.com/users/sonofeft/events{/privacy}",
- "received_events_url": "https://api.github.com/users/sonofeft/received_events",
+ "url": "https://api.github.com/users/ryohei22",
+ "html_url": "https://github.com/ryohei22",
+ "followers_url": "https://api.github.com/users/ryohei22/followers",
+ "following_url": "https://api.github.com/users/ryohei22/following{/other_user}",
+ "gists_url": "https://api.github.com/users/ryohei22/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/ryohei22/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/ryohei22/subscriptions",
+ "organizations_url": "https://api.github.com/users/ryohei22/orgs",
+ "repos_url": "https://api.github.com/users/ryohei22/repos",
+ "events_url": "https://api.github.com/users/ryohei22/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/ryohei22/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "sphh",
- "id": 4856462,
- "node_id": "MDQ6VXNlcjQ4NTY0NjI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/4856462?v=4",
+ "login": "ptocca",
+ "id": 12876344,
+ "node_id": "MDQ6VXNlcjEyODc2MzQ0",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12876344?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/sphh",
- "html_url": "https://github.com/sphh",
- "followers_url": "https://api.github.com/users/sphh/followers",
- "following_url": "https://api.github.com/users/sphh/following{/other_user}",
- "gists_url": "https://api.github.com/users/sphh/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/sphh/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/sphh/subscriptions",
- "organizations_url": "https://api.github.com/users/sphh/orgs",
- "repos_url": "https://api.github.com/users/sphh/repos",
- "events_url": "https://api.github.com/users/sphh/events{/privacy}",
- "received_events_url": "https://api.github.com/users/sphh/received_events",
+ "url": "https://api.github.com/users/ptocca",
+ "html_url": "https://github.com/ptocca",
+ "followers_url": "https://api.github.com/users/ptocca/followers",
+ "following_url": "https://api.github.com/users/ptocca/following{/other_user}",
+ "gists_url": "https://api.github.com/users/ptocca/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/ptocca/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/ptocca/subscriptions",
+ "organizations_url": "https://api.github.com/users/ptocca/orgs",
+ "repos_url": "https://api.github.com/users/ptocca/repos",
+ "events_url": "https://api.github.com/users/ptocca/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/ptocca/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "scottwedge",
- "id": 3101154,
- "node_id": "MDQ6VXNlcjMxMDExNTQ=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3101154?v=4",
+ "login": "lpinner",
+ "id": 4827816,
+ "node_id": "MDQ6VXNlcjQ4Mjc4MTY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4827816?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/scottwedge",
- "html_url": "https://github.com/scottwedge",
- "followers_url": "https://api.github.com/users/scottwedge/followers",
- "following_url": "https://api.github.com/users/scottwedge/following{/other_user}",
- "gists_url": "https://api.github.com/users/scottwedge/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/scottwedge/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/scottwedge/subscriptions",
- "organizations_url": "https://api.github.com/users/scottwedge/orgs",
- "repos_url": "https://api.github.com/users/scottwedge/repos",
- "events_url": "https://api.github.com/users/scottwedge/events{/privacy}",
- "received_events_url": "https://api.github.com/users/scottwedge/received_events",
+ "url": "https://api.github.com/users/lpinner",
+ "html_url": "https://github.com/lpinner",
+ "followers_url": "https://api.github.com/users/lpinner/followers",
+ "following_url": "https://api.github.com/users/lpinner/following{/other_user}",
+ "gists_url": "https://api.github.com/users/lpinner/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/lpinner/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/lpinner/subscriptions",
+ "organizations_url": "https://api.github.com/users/lpinner/orgs",
+ "repos_url": "https://api.github.com/users/lpinner/repos",
+ "events_url": "https://api.github.com/users/lpinner/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/lpinner/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "talkaminker",
- "id": 13932998,
- "node_id": "MDQ6VXNlcjEzOTMyOTk4",
- "avatar_url": "https://avatars.githubusercontent.com/u/13932998?v=4",
+ "login": "javidcf",
+ "id": 1098280,
+ "node_id": "MDQ6VXNlcjEwOTgyODA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1098280?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/talkaminker",
- "html_url": "https://github.com/talkaminker",
- "followers_url": "https://api.github.com/users/talkaminker/followers",
- "following_url": "https://api.github.com/users/talkaminker/following{/other_user}",
- "gists_url": "https://api.github.com/users/talkaminker/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/talkaminker/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/talkaminker/subscriptions",
- "organizations_url": "https://api.github.com/users/talkaminker/orgs",
- "repos_url": "https://api.github.com/users/talkaminker/repos",
- "events_url": "https://api.github.com/users/talkaminker/events{/privacy}",
- "received_events_url": "https://api.github.com/users/talkaminker/received_events",
+ "url": "https://api.github.com/users/javidcf",
+ "html_url": "https://github.com/javidcf",
+ "followers_url": "https://api.github.com/users/javidcf/followers",
+ "following_url": "https://api.github.com/users/javidcf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/javidcf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/javidcf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/javidcf/subscriptions",
+ "organizations_url": "https://api.github.com/users/javidcf/orgs",
+ "repos_url": "https://api.github.com/users/javidcf/repos",
+ "events_url": "https://api.github.com/users/javidcf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/javidcf/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "trollodel",
- "id": 33117082,
- "node_id": "MDQ6VXNlcjMzMTE3MDgy",
- "avatar_url": "https://avatars.githubusercontent.com/u/33117082?v=4",
+ "login": "habibmy",
+ "id": 29559410,
+ "node_id": "MDQ6VXNlcjI5NTU5NDEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/29559410?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/trollodel",
- "html_url": "https://github.com/trollodel",
- "followers_url": "https://api.github.com/users/trollodel/followers",
- "following_url": "https://api.github.com/users/trollodel/following{/other_user}",
- "gists_url": "https://api.github.com/users/trollodel/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/trollodel/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/trollodel/subscriptions",
- "organizations_url": "https://api.github.com/users/trollodel/orgs",
- "repos_url": "https://api.github.com/users/trollodel/repos",
- "events_url": "https://api.github.com/users/trollodel/events{/privacy}",
- "received_events_url": "https://api.github.com/users/trollodel/received_events",
+ "url": "https://api.github.com/users/habibmy",
+ "html_url": "https://github.com/habibmy",
+ "followers_url": "https://api.github.com/users/habibmy/followers",
+ "following_url": "https://api.github.com/users/habibmy/following{/other_user}",
+ "gists_url": "https://api.github.com/users/habibmy/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/habibmy/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/habibmy/subscriptions",
+ "organizations_url": "https://api.github.com/users/habibmy/orgs",
+ "repos_url": "https://api.github.com/users/habibmy/repos",
+ "events_url": "https://api.github.com/users/habibmy/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/habibmy/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "amish",
- "id": 9803532,
- "node_id": "MDQ6VXNlcjk4MDM1MzI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/9803532?v=4",
+ "login": "fxjaeckel",
+ "id": 45701052,
+ "node_id": "MDQ6VXNlcjQ1NzAxMDUy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/45701052?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/amish",
- "html_url": "https://github.com/amish",
- "followers_url": "https://api.github.com/users/amish/followers",
- "following_url": "https://api.github.com/users/amish/following{/other_user}",
- "gists_url": "https://api.github.com/users/amish/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/amish/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/amish/subscriptions",
- "organizations_url": "https://api.github.com/users/amish/orgs",
- "repos_url": "https://api.github.com/users/amish/repos",
- "events_url": "https://api.github.com/users/amish/events{/privacy}",
- "received_events_url": "https://api.github.com/users/amish/received_events",
+ "url": "https://api.github.com/users/fxjaeckel",
+ "html_url": "https://github.com/fxjaeckel",
+ "followers_url": "https://api.github.com/users/fxjaeckel/followers",
+ "following_url": "https://api.github.com/users/fxjaeckel/following{/other_user}",
+ "gists_url": "https://api.github.com/users/fxjaeckel/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/fxjaeckel/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/fxjaeckel/subscriptions",
+ "organizations_url": "https://api.github.com/users/fxjaeckel/orgs",
+ "repos_url": "https://api.github.com/users/fxjaeckel/repos",
+ "events_url": "https://api.github.com/users/fxjaeckel/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/fxjaeckel/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "real-yfprojects",
- "id": 62463991,
- "node_id": "MDQ6VXNlcjYyNDYzOTkx",
- "avatar_url": "https://avatars.githubusercontent.com/u/62463991?v=4",
+ "login": "freddii",
+ "id": 7213207,
+ "node_id": "MDQ6VXNlcjcyMTMyMDc=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7213207?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/real-yfprojects",
- "html_url": "https://github.com/real-yfprojects",
- "followers_url": "https://api.github.com/users/real-yfprojects/followers",
- "following_url": "https://api.github.com/users/real-yfprojects/following{/other_user}",
- "gists_url": "https://api.github.com/users/real-yfprojects/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/real-yfprojects/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/real-yfprojects/subscriptions",
- "organizations_url": "https://api.github.com/users/real-yfprojects/orgs",
- "repos_url": "https://api.github.com/users/real-yfprojects/repos",
- "events_url": "https://api.github.com/users/real-yfprojects/events{/privacy}",
- "received_events_url": "https://api.github.com/users/real-yfprojects/received_events",
+ "url": "https://api.github.com/users/freddii",
+ "html_url": "https://github.com/freddii",
+ "followers_url": "https://api.github.com/users/freddii/followers",
+ "following_url": "https://api.github.com/users/freddii/following{/other_user}",
+ "gists_url": "https://api.github.com/users/freddii/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/freddii/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/freddii/subscriptions",
+ "organizations_url": "https://api.github.com/users/freddii/orgs",
+ "repos_url": "https://api.github.com/users/freddii/repos",
+ "events_url": "https://api.github.com/users/freddii/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/freddii/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "afvincent",
- "id": 17270724,
- "node_id": "MDQ6VXNlcjE3MjcwNzI0",
- "avatar_url": "https://avatars.githubusercontent.com/u/17270724?v=4",
+ "login": "dzosz",
+ "id": 13596691,
+ "node_id": "MDQ6VXNlcjEzNTk2Njkx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/13596691?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/afvincent",
- "html_url": "https://github.com/afvincent",
- "followers_url": "https://api.github.com/users/afvincent/followers",
- "following_url": "https://api.github.com/users/afvincent/following{/other_user}",
- "gists_url": "https://api.github.com/users/afvincent/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/afvincent/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/afvincent/subscriptions",
- "organizations_url": "https://api.github.com/users/afvincent/orgs",
- "repos_url": "https://api.github.com/users/afvincent/repos",
- "events_url": "https://api.github.com/users/afvincent/events{/privacy}",
- "received_events_url": "https://api.github.com/users/afvincent/received_events",
+ "url": "https://api.github.com/users/dzosz",
+ "html_url": "https://github.com/dzosz",
+ "followers_url": "https://api.github.com/users/dzosz/followers",
+ "following_url": "https://api.github.com/users/dzosz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/dzosz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/dzosz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/dzosz/subscriptions",
+ "organizations_url": "https://api.github.com/users/dzosz/orgs",
+ "repos_url": "https://api.github.com/users/dzosz/repos",
+ "events_url": "https://api.github.com/users/dzosz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/dzosz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3915,6 +3915,28 @@
"site_admin": false,
"contributions": 1
},
+ {
+ "login": "a-detiste",
+ "id": 7994192,
+ "node_id": "MDQ6VXNlcjc5OTQxOTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7994192?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/a-detiste",
+ "html_url": "https://github.com/a-detiste",
+ "followers_url": "https://api.github.com/users/a-detiste/followers",
+ "following_url": "https://api.github.com/users/a-detiste/following{/other_user}",
+ "gists_url": "https://api.github.com/users/a-detiste/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/a-detiste/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/a-detiste/subscriptions",
+ "organizations_url": "https://api.github.com/users/a-detiste/orgs",
+ "repos_url": "https://api.github.com/users/a-detiste/repos",
+ "events_url": "https://api.github.com/users/a-detiste/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/a-detiste/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
{
"login": "kai3341",
"id": 3619375,
@@ -4530,5 +4552,27 @@
"user_view_type": "public",
"site_admin": false,
"contributions": 1
+ },
+ {
+ "login": "SimpleZion",
+ "id": 110653193,
+ "node_id": "U_kgDOBphvCQ",
+ "avatar_url": "https://avatars.githubusercontent.com/u/110653193?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SimpleZion",
+ "html_url": "https://github.com/SimpleZion",
+ "followers_url": "https://api.github.com/users/SimpleZion/followers",
+ "following_url": "https://api.github.com/users/SimpleZion/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SimpleZion/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SimpleZion/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SimpleZion/subscriptions",
+ "organizations_url": "https://api.github.com/users/SimpleZion/orgs",
+ "repos_url": "https://api.github.com/users/SimpleZion/repos",
+ "events_url": "https://api.github.com/users/SimpleZion/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SimpleZion/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
}
]
\ No newline at end of file
diff --git a/static/data/hubspot.json b/static/data/hubspot.json
index 10c0d42e..655b030d 100644
--- a/static/data/hubspot.json
+++ b/static/data/hubspot.json
@@ -8,11 +8,11 @@
"amount": "30.00",
"createdate": "2024-11-05T15:27:55.386Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:12.602Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
"hs_object_id": "28743099954",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:12.602Z"
+ "updatedAt": "2025-07-24T00:49:46.301Z"
},
{
"createdAt": "2024-12-31T20:59:52.585Z",
@@ -22,11 +22,11 @@
"amount": "25.00",
"createdate": "2024-12-31T20:59:52.585Z",
"dealname": "Spyder One-Time Donation via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:16.598Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
"hs_object_id": "31266008965",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:16.598Z"
+ "updatedAt": "2025-07-24T00:49:46.031Z"
},
{
"createdAt": "2025-01-09T08:35:04.408Z",
@@ -36,11 +36,11 @@
"amount": "15.00",
"createdate": "2025-01-09T08:35:04.408Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:07.657Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
"hs_object_id": "31704199823",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:07.657Z"
+ "updatedAt": "2025-07-24T00:49:47.949Z"
},
{
"createdAt": "2025-03-30T21:19:04.375Z",
@@ -50,11 +50,11 @@
"amount": "5.00",
"createdate": "2025-03-30T21:19:04.375Z",
"dealname": "New Viewer pane: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:02.679Z",
+ "hs_lastmodifieddate": "2025-08-02T18:55:16.425Z",
"hs_object_id": "35240642058",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:02.679Z"
+ "updatedAt": "2025-08-02T18:55:16.425Z"
},
{
"createdAt": "2025-04-09T15:18:48.599Z",
@@ -64,11 +64,11 @@
"amount": "10.00",
"createdate": "2025-04-09T15:18:48.599Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:54.992Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
"hs_object_id": "35594316619",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:54.992Z"
+ "updatedAt": "2025-07-24T00:49:47.880Z"
},
{
"createdAt": "2025-04-09T17:22:23.099Z",
@@ -78,11 +78,11 @@
"amount": "20.00",
"createdate": "2025-04-09T17:22:23.099Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:49.454Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
"hs_object_id": "35625727668",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:49.454Z"
+ "updatedAt": "2025-07-24T00:49:47.901Z"
},
{
"createdAt": "2025-04-13T07:53:27.488Z",
@@ -92,11 +92,11 @@
"amount": "25.00",
"createdate": "2025-04-13T07:53:27.488Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:32:09.288Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
"hs_object_id": "35711256670",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:32:09.288Z"
+ "updatedAt": "2025-07-24T00:49:47.965Z"
},
{
"createdAt": "2025-04-14T01:13:19.442Z",
@@ -106,11 +106,11 @@
"amount": "20.00",
"createdate": "2025-04-14T01:13:19.442Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:59.781Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
"hs_object_id": "35723857267",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:59.781Z"
+ "updatedAt": "2025-07-24T00:49:47.875Z"
},
{
"createdAt": "2025-04-17T16:54:31.545Z",
@@ -120,11 +120,11 @@
"amount": "5.00",
"createdate": "2025-04-17T16:54:31.545Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:49.060Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
"hs_object_id": "35859805840",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:49.060Z"
+ "updatedAt": "2025-07-24T00:49:46.025Z"
},
{
"createdAt": "2025-04-17T20:57:16.478Z",
@@ -134,11 +134,11 @@
"amount": "50.00",
"createdate": "2025-04-17T20:57:16.478Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:45.183Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.062Z",
"hs_object_id": "35836379945",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:45.183Z"
+ "updatedAt": "2025-07-24T00:49:46.062Z"
},
{
"createdAt": "2025-04-18T09:54:45.965Z",
@@ -148,11 +148,11 @@
"amount": "240.00",
"createdate": "2025-04-18T09:54:45.965Z",
"dealname": "Level-up the Variable Explorer: Monthly via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:41.193Z",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.264Z",
"hs_object_id": "35891295603",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:41.193Z"
+ "updatedAt": "2025-07-24T01:12:11.264Z"
},
{
"createdAt": "2025-04-18T12:37:06.036Z",
@@ -162,11 +162,11 @@
"amount": "10.00",
"createdate": "2025-04-18T12:37:06.036Z",
"dealname": "Supercharge syntax highlighting: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:32.206Z",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.504Z",
"hs_object_id": "35895389081",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:32.206Z"
+ "updatedAt": "2025-07-24T01:11:46.504Z"
},
{
"createdAt": "2025-04-18T12:55:14.989Z",
@@ -176,11 +176,11 @@
"amount": "20.00",
"createdate": "2025-04-18T12:55:14.989Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:24.725Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
"hs_object_id": "35880854290",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:24.725Z"
+ "updatedAt": "2025-07-24T00:49:46.520Z"
},
{
"createdAt": "2025-04-18T15:45:54.411Z",
@@ -190,11 +190,11 @@
"amount": "40.00",
"createdate": "2025-04-18T15:45:54.411Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:22.102Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
"hs_object_id": "35897730114",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:22.102Z"
+ "updatedAt": "2025-07-24T00:49:46.520Z"
},
{
"createdAt": "2025-04-19T21:45:52.198Z",
@@ -204,11 +204,11 @@
"amount": "10.00",
"createdate": "2025-04-19T21:45:52.198Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:18.160Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
"hs_object_id": "35937273359",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:18.160Z"
+ "updatedAt": "2025-07-24T00:49:48.003Z"
},
{
"createdAt": "2025-04-20T08:12:12.733Z",
@@ -218,11 +218,11 @@
"amount": "50.00",
"createdate": "2025-04-20T08:12:12.733Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:15.581Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
"hs_object_id": "35953158972",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:15.581Z"
+ "updatedAt": "2025-07-24T00:49:47.982Z"
},
{
"createdAt": "2025-04-21T02:57:49.957Z",
@@ -232,11 +232,11 @@
"amount": "10.00",
"createdate": "2025-04-21T02:57:49.957Z",
"dealname": "Level-up the Variable Explorer: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:45.427Z",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.233Z",
"hs_object_id": "35995991825",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:45.427Z"
+ "updatedAt": "2025-07-24T01:12:11.233Z"
},
{
"createdAt": "2025-04-22T05:24:45.122Z",
@@ -246,11 +246,11 @@
"amount": "15.00",
"createdate": "2025-04-22T05:24:45.122Z",
"dealname": "Smarter code completion: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:10.003Z",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.491Z",
"hs_object_id": "36051856705",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:10.003Z"
+ "updatedAt": "2025-07-24T01:10:48.491Z"
},
{
"createdAt": "2025-04-23T12:01:37.506Z",
@@ -260,11 +260,11 @@
"amount": "20.00",
"createdate": "2025-04-23T12:01:37.506Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:02.812Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
"hs_object_id": "36115001092",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:02.812Z"
+ "updatedAt": "2025-07-24T00:49:47.824Z"
},
{
"createdAt": "2025-04-23T22:14:59.735Z",
@@ -274,11 +274,11 @@
"amount": "20.00",
"createdate": "2025-04-23T22:14:59.735Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:48.630Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
"hs_object_id": "36145295911",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:48.630Z"
+ "updatedAt": "2025-07-24T00:49:47.880Z"
},
{
"createdAt": "2025-04-24T07:00:32.701Z",
@@ -288,313 +288,3421 @@
"amount": "50.00",
"createdate": "2025-04-24T07:00:32.701Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T07:06:03.130Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
"hs_object_id": "36166714949",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T07:06:03.130Z"
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-04-27T19:47:18.244Z",
+ "archived": false,
+ "id": "36356682525",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-04-27T19:47:18.244Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "36356682525",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-04-27T20:51:17.893Z",
+ "archived": false,
+ "id": "36343578784",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-04-27T20:51:17.893Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36343578784",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-04-27T22:24:59.927Z",
+ "archived": false,
+ "id": "36343582855",
+ "properties": {
+ "amount": "17.00",
+ "createdate": "2025-04-27T22:24:59.927Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36343582855",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-04-28T13:25:54.714Z",
+ "archived": false,
+ "id": "36415253077",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-04-28T13:25:54.714Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "36415253077",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-04-29T17:03:41.997Z",
+ "archived": false,
+ "id": "36538113559",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-29T17:03:41.997Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36538113559",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-03T09:46:35.819Z",
+ "archived": false,
+ "id": "36669741836",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-03T09:46:35.819Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.659Z",
+ "hs_object_id": "36669741836",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.659Z"
+ },
+ {
+ "createdAt": "2025-05-03T11:31:49.309Z",
+ "archived": false,
+ "id": "36669445015",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-05-03T11:31:49.309Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "36669445015",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-05-04T01:52:57.487Z",
+ "archived": false,
+ "id": "36667340080",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-05-04T01:52:57.487Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.889Z",
+ "hs_object_id": "36667340080",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.889Z"
+ },
+ {
+ "createdAt": "2025-05-04T12:45:20.458Z",
+ "archived": false,
+ "id": "36680225375",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T12:45:20.458Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.512Z",
+ "hs_object_id": "36680225375",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.512Z"
+ },
+ {
+ "createdAt": "2025-05-04T18:50:16.137Z",
+ "archived": false,
+ "id": "36672569189",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T18:50:16.137Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36672569189",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-04T21:55:20.178Z",
+ "archived": false,
+ "id": "36687533695",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-04T21:55:20.178Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.471Z",
+ "hs_object_id": "36687533695",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.471Z"
+ },
+ {
+ "createdAt": "2025-05-06T20:46:16.006Z",
+ "archived": false,
+ "id": "36834640221",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-06T20:46:16.006Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36834640221",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-05-08T11:00:42.052Z",
+ "archived": false,
+ "id": "36896574053",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-08T11:00:42.052Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "36896574053",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-05-09T09:27:10.023Z",
+ "archived": false,
+ "id": "36964765007",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-09T09:27:10.023Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "36964765007",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-09T17:48:47.939Z",
+ "archived": false,
+ "id": "36989563671",
+ "properties": {
+ "amount": "2.00",
+ "createdate": "2025-05-09T17:48:47.939Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36989563671",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-10T15:55:00.982Z",
+ "archived": false,
+ "id": "37026677833",
+ "properties": {
+ "amount": "1.00",
+ "createdate": "2025-05-10T15:55:00.982Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "37026677833",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-11T08:23:17.592Z",
+ "archived": false,
+ "id": "37009328415",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-11T08:23:17.592Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "37009328415",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-05-12T15:21:05.818Z",
+ "archived": false,
+ "id": "37107403591",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-12T15:21:05.818Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.144Z",
+ "hs_object_id": "37107403591",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.144Z"
+ },
+ {
+ "createdAt": "2025-05-12T19:58:11.880Z",
+ "archived": false,
+ "id": "37127637853",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-12T19:58:11.880Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.698Z",
+ "hs_object_id": "37127637853",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.698Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:02:04.415Z",
+ "archived": false,
+ "id": "37143810663",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-13T13:02:04.415Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37143810663",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:07:51.758Z",
+ "archived": false,
+ "id": "37124041893",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-13T13:07:51.758Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37124041893",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T18:02:30.876Z",
+ "archived": false,
+ "id": "37131599656",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-13T18:02:30.876Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.926Z",
+ "hs_object_id": "37131599656",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.926Z"
+ },
+ {
+ "createdAt": "2025-05-18T20:50:32.354Z",
+ "archived": false,
+ "id": "37395734026",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-18T20:50:32.354Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "37395734026",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-05-19T01:50:44.429Z",
+ "archived": false,
+ "id": "37406526815",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-19T01:50:44.429Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:19.473Z",
+ "hs_object_id": "37406526815",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:19.473Z"
+ },
+ {
+ "createdAt": "2025-05-20T13:36:54.271Z",
+ "archived": false,
+ "id": "37472200612",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-20T13:36:54.271Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.124Z",
+ "hs_object_id": "37472200612",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.124Z"
+ },
+ {
+ "createdAt": "2025-05-23T03:37:00.394Z",
+ "archived": false,
+ "id": "37765132904",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-23T03:37:00.394Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:46.643Z",
+ "hs_object_id": "37765132904",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:46.643Z"
+ },
+ {
+ "createdAt": "2025-05-24T15:35:23.080Z",
+ "archived": false,
+ "id": "37885719047",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T15:35:23.080Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "37885719047",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-24T17:37:55.015Z",
+ "archived": false,
+ "id": "37931379865",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T17:37:55.015Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.406Z",
+ "hs_object_id": "37931379865",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.406Z"
+ },
+ {
+ "createdAt": "2025-05-27T06:41:32.116Z",
+ "archived": false,
+ "id": "37987691528",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-27T06:41:32.116Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37987691528",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-27T18:16:34.026Z",
+ "archived": false,
+ "id": "38051227649",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-27T18:16:34.026Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38051227649",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T14:26:32.206Z",
+ "archived": false,
+ "id": "38144782927",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-29T14:26:32.206Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38144782927",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T15:17:00.173Z",
+ "archived": false,
+ "id": "38158417666",
+ "properties": {
+ "amount": "11.50",
+ "createdate": "2025-05-29T15:17:00.173Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "38158417666",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-29T16:11:38.397Z",
+ "archived": false,
+ "id": "38210604426",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-29T16:11:38.397Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.172Z",
+ "hs_object_id": "38210604426",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.172Z"
+ },
+ {
+ "createdAt": "2025-05-30T14:58:43.205Z",
+ "archived": false,
+ "id": "38249483330",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-30T14:58:43.205Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.401Z",
+ "hs_object_id": "38249483330",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:46.401Z"
+ },
+ {
+ "createdAt": "2025-05-30T17:58:06.202Z",
+ "archived": false,
+ "id": "38268635719",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-30T17:58:06.202Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.080Z",
+ "hs_object_id": "38268635719",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.080Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:47:45.421Z",
+ "archived": false,
+ "id": "38311123737",
+ "properties": {
+ "amount": "500.00",
+ "createdate": "2025-06-02T08:47:45.421Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38311123737",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:54:26.976Z",
+ "archived": false,
+ "id": "38311479139",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:54:26.976Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.844Z",
+ "hs_object_id": "38311479139",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.844Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:56:26.660Z",
+ "archived": false,
+ "id": "38311673672",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:56:26.660Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:14.338Z",
+ "hs_object_id": "38311673672",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:14.338Z"
+ },
+ {
+ "createdAt": "2025-06-02T22:08:40.929Z",
+ "archived": false,
+ "id": "38329891970",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T22:08:40.929Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.260Z",
+ "hs_object_id": "38329891970",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.260Z"
+ },
+ {
+ "createdAt": "2025-06-03T11:35:05.893Z",
+ "archived": false,
+ "id": "38346856226",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-03T11:35:05.893Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.589Z",
+ "hs_object_id": "38346856226",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.589Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:04:56.187Z",
+ "archived": false,
+ "id": "38347530406",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-03T12:04:56.187Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "38347530406",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:50:53.610Z",
+ "archived": false,
+ "id": "38345333847",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-03T12:50:53.610Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38345333847",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-05T13:05:05.441Z",
+ "archived": false,
+ "id": "38528449603",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-05T13:05:05.441Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "38528449603",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-06-07T14:44:48.802Z",
+ "archived": false,
+ "id": "38616040627",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-07T14:44:48.802Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.693Z",
+ "hs_object_id": "38616040627",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.693Z"
+ },
+ {
+ "createdAt": "2025-06-08T00:09:03.366Z",
+ "archived": false,
+ "id": "38624297779",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-08T00:09:03.366Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "38624297779",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-06-09T17:44:07.802Z",
+ "archived": false,
+ "id": "38665140076",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-09T17:44:07.802Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.215Z",
+ "hs_object_id": "38665140076",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.215Z"
+ },
+ {
+ "createdAt": "2025-06-10T16:55:51.897Z",
+ "archived": false,
+ "id": "38729804081",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-10T16:55:51.897Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "38729804081",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-06-11T23:45:34.958Z",
+ "archived": false,
+ "id": "38788725328",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-11T23:45:34.958Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38788725328",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-12T22:03:20.494Z",
+ "archived": false,
+ "id": "38825619778",
+ "properties": {
+ "amount": "35.00",
+ "createdate": "2025-06-12T22:03:20.494Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "38825619778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-13T03:32:18.747Z",
+ "archived": false,
+ "id": "38829177434",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-13T03:32:18.747Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38829177434",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-15T12:21:32.605Z",
+ "archived": false,
+ "id": "38898539399",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-15T12:21:32.605Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38898539399",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-17T00:59:25.566Z",
+ "archived": false,
+ "id": "38953988654",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-17T00:59:25.566Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.564Z",
+ "hs_object_id": "38953988654",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.564Z"
+ },
+ {
+ "createdAt": "2025-06-19T06:50:29.250Z",
+ "archived": false,
+ "id": "39058692022",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-19T06:50:29.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "39058692022",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-19T17:18:48.724Z",
+ "archived": false,
+ "id": "39066297134",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-06-19T17:18:48.724Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.329Z",
+ "hs_object_id": "39066297134",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.329Z"
+ },
+ {
+ "createdAt": "2025-06-21T12:43:48.468Z",
+ "archived": false,
+ "id": "39108670994",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-21T12:43:48.468Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39108670994",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-23T19:29:48.687Z",
+ "archived": false,
+ "id": "39239432817",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-06-23T19:29:48.687Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.967Z",
+ "hs_object_id": "39239432817",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.967Z"
+ },
+ {
+ "createdAt": "2025-06-24T16:56:48.203Z",
+ "archived": false,
+ "id": "39256894309",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-24T16:56:48.203Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "39256894309",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-25T06:43:06.292Z",
+ "archived": false,
+ "id": "39267967832",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-25T06:43:06.292Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39267967832",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-25T08:32:28.479Z",
+ "archived": false,
+ "id": "39269837706",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-25T08:32:28.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.313Z",
+ "hs_object_id": "39269837706",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.313Z"
+ },
+ {
+ "createdAt": "2025-06-25T09:51:37.418Z",
+ "archived": false,
+ "id": "39264318101",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-25T09:51:37.418Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "39264318101",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-06-26T00:30:12.249Z",
+ "archived": false,
+ "id": "39292536602",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-26T00:30:12.249Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "39292536602",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-06-26T08:48:28.967Z",
+ "archived": false,
+ "id": "39309125394",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-26T08:48:28.967Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39309125394",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-29T12:07:41.551Z",
+ "archived": false,
+ "id": "39457053587",
+ "properties": {
+ "amount": "200.00",
+ "createdate": "2025-06-29T12:07:41.551Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "39457053587",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-06-29T13:39:44.175Z",
+ "archived": false,
+ "id": "39457548821",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-06-29T13:39:44.175Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39457548821",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-29T15:15:12.289Z",
+ "archived": false,
+ "id": "39464411980",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-29T15:15:12.289Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "39464411980",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-06-30T18:05:45.510Z",
+ "archived": false,
+ "id": "39514245985",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-30T18:05:45.510Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.688Z",
+ "hs_object_id": "39514245985",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.688Z"
+ },
+ {
+ "createdAt": "2025-07-02T13:34:52.479Z",
+ "archived": false,
+ "id": "39607572819",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-02T13:34:52.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "39607572819",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-07-03T07:00:40.910Z",
+ "archived": false,
+ "id": "39636448605",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-03T07:00:40.910Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39636448605",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-04T17:15:07.495Z",
+ "archived": false,
+ "id": "39698037686",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-07-04T17:15:07.495Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39698037686",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-07-06T13:21:20.114Z",
+ "archived": false,
+ "id": "39768507694",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-07-06T13:21:20.114Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39768507694",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-07-07T07:24:09.664Z",
+ "archived": false,
+ "id": "39805299124",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-07T07:24:09.664Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39805299124",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-07-08T06:47:49.250Z",
+ "archived": false,
+ "id": "39848597854",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-08T06:47:49.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.496Z",
+ "hs_object_id": "39848597854",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.496Z"
+ },
+ {
+ "createdAt": "2025-07-08T08:36:11.581Z",
+ "archived": false,
+ "id": "39842480413",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-08T08:36:11.581Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "39842480413",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-07-10T05:21:17.733Z",
+ "archived": false,
+ "id": "39925390942",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-10T05:21:17.733Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "39925390942",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-07-10T09:44:33.152Z",
+ "archived": false,
+ "id": "39940834582",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-10T09:44:33.152Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39940834582",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-10T16:39:46.401Z",
+ "archived": false,
+ "id": "39980252809",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-10T16:39:46.401Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39980252809",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-11T18:56:19.214Z",
+ "archived": false,
+ "id": "40012499753",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-11T18:56:19.214Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "40012499753",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-07-12T03:08:09.584Z",
+ "archived": false,
+ "id": "40059678258",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-07-12T03:08:09.584Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40059678258",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.875Z"
+ },
+ {
+ "createdAt": "2025-07-12T12:21:04.666Z",
+ "archived": false,
+ "id": "40086290944",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-12T12:21:04.666Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40086290944",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-07-12T16:14:21.272Z",
+ "archived": false,
+ "id": "40100062839",
+ "properties": {
+ "amount": "3.00",
+ "createdate": "2025-07-12T16:14:21.272Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40100062839",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-07-13T19:27:03.194Z",
+ "archived": false,
+ "id": "40154663440",
+ "properties": {
+ "amount": "36.00",
+ "createdate": "2025-07-13T19:27:03.194Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "40154663440",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-07-16T05:29:06.816Z",
+ "archived": false,
+ "id": "40297151772",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-16T05:29:06.816Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40297151772",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-07-16T11:56:13.418Z",
+ "archived": false,
+ "id": "40312153979",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-16T11:56:13.418Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "40312153979",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-07-16T13:43:43.042Z",
+ "archived": false,
+ "id": "40322190885",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-16T13:43:43.042Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "40322190885",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-16T15:29:12.525Z",
+ "archived": false,
+ "id": "40326223268",
+ "properties": {
+ "amount": "4.22",
+ "createdate": "2025-07-16T15:29:12.525Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "40326223268",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-07-16T16:35:54.168Z",
+ "archived": false,
+ "id": "40332153441",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-16T16:35:54.168Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "40332153441",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-07-17T10:40:10.832Z",
+ "archived": false,
+ "id": "40356174907",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-17T10:40:10.832Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40356174907",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-07-17T18:53:13.425Z",
+ "archived": false,
+ "id": "40411877968",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-07-17T18:53:13.425Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40411877968",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-07-19T06:51:18.752Z",
+ "archived": false,
+ "id": "40483957059",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-19T06:51:18.752Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.559Z",
+ "hs_object_id": "40483957059",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.559Z"
+ },
+ {
+ "createdAt": "2025-07-19T06:55:17.242Z",
+ "archived": false,
+ "id": "40489548728",
+ "properties": {
+ "amount": "84.00",
+ "createdate": "2025-07-19T06:55:17.242Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "40489548728",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-07-20T01:14:32.647Z",
+ "archived": false,
+ "id": "40518705722",
+ "properties": {
+ "amount": "2.00",
+ "createdate": "2025-07-20T01:14:32.647Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40518705722",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.875Z"
+ },
+ {
+ "createdAt": "2025-07-21T15:04:20.221Z",
+ "archived": false,
+ "id": "40575552537",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-21T15:04:20.221Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40575552537",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-07-22T16:34:06.118Z",
+ "archived": false,
+ "id": "40673678107",
+ "properties": {
+ "amount": "60.00",
+ "createdate": "2025-07-22T16:34:06.118Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:17.324Z",
+ "hs_object_id": "40673678107",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:17.324Z"
+ },
+ {
+ "createdAt": "2025-07-24T15:37:31.935Z",
+ "archived": false,
+ "id": "40760201012",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-24T15:37:31.935Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T20:09:29.281Z",
+ "hs_object_id": "40760201012",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T20:09:29.281Z"
+ },
+ {
+ "createdAt": "2025-07-25T13:29:23.122Z",
+ "archived": false,
+ "id": "40828495681",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-25T13:29:23.122Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-25T13:34:44.342Z",
+ "hs_object_id": "40828495681",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-25T13:34:44.342Z"
+ },
+ {
+ "createdAt": "2025-07-27T22:10:02.064Z",
+ "archived": false,
+ "id": "40923075914",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-27T22:10:02.064Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T22:11:11.229Z",
+ "hs_object_id": "40923075914",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T22:11:11.229Z"
+ },
+ {
+ "createdAt": "2025-07-27T23:13:41.447Z",
+ "archived": false,
+ "id": "40920368559",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-27T23:13:41.447Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T23:29:51.405Z",
+ "hs_object_id": "40920368559",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T23:29:51.405Z"
+ },
+ {
+ "createdAt": "2025-07-27T23:37:17.208Z",
+ "archived": false,
+ "id": "40939385523",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-27T23:37:17.208Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T23:53:29.400Z",
+ "hs_object_id": "40939385523",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T23:53:29.400Z"
+ },
+ {
+ "createdAt": "2025-07-28T13:08:24.566Z",
+ "archived": false,
+ "id": "40974422184",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-28T13:08:24.566Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-28T13:12:00.142Z",
+ "hs_object_id": "40974422184",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-28T13:12:00.142Z"
+ },
+ {
+ "createdAt": "2025-07-30T15:30:49.834Z",
+ "archived": false,
+ "id": "41068945962",
+ "properties": {
+ "amount": "40.00",
+ "createdate": "2025-07-30T15:30:49.834Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-30T15:36:52.801Z",
+ "hs_object_id": "41068945962",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-30T15:36:52.801Z"
+ },
+ {
+ "createdAt": "2025-07-31T06:45:07.226Z",
+ "archived": false,
+ "id": "41101724708",
+ "properties": {
+ "amount": "1.50",
+ "createdate": "2025-07-31T06:45:07.226Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T07:01:19.465Z",
+ "hs_object_id": "41101724708",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T07:01:19.465Z"
+ },
+ {
+ "createdAt": "2025-07-31T16:16:02.461Z",
+ "archived": false,
+ "id": "41129617778",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-31T16:16:02.461Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T16:17:52.812Z",
+ "hs_object_id": "41129617778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T16:17:52.812Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:02:04.442Z",
+ "archived": false,
+ "id": "41187758140",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:02:04.442Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T17:04:08.293Z",
+ "hs_object_id": "41187758140",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T17:04:08.293Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:55:21.724Z",
+ "archived": false,
+ "id": "41190839594",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:55:21.724Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T18:12:00.848Z",
+ "hs_object_id": "41190839594",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T18:12:00.848Z"
+ },
+ {
+ "createdAt": "2025-08-01T20:25:03.314Z",
+ "archived": false,
+ "id": "41193909518",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-01T20:25:03.314Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T20:41:24.769Z",
+ "hs_object_id": "41193909518",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T20:41:24.769Z"
+ },
+ {
+ "createdAt": "2025-08-04T08:53:39.504Z",
+ "archived": false,
+ "id": "41312378735",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-04T08:53:39.504Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T09:09:47.696Z",
+ "hs_object_id": "41312378735",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T09:09:47.696Z"
+ },
+ {
+ "createdAt": "2025-08-04T13:25:04.371Z",
+ "archived": false,
+ "id": "41298486314",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-04T13:25:04.371Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.608Z",
+ "hs_object_id": "41298486314",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.608Z"
+ },
+ {
+ "createdAt": "2025-08-04T23:29:01.565Z",
+ "archived": false,
+ "id": "41368915729",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-04T23:29:01.565Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T23:45:11.444Z",
+ "hs_object_id": "41368915729",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T23:45:11.444Z"
+ },
+ {
+ "createdAt": "2025-08-05T16:44:09.911Z",
+ "archived": false,
+ "id": "41357901724",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-05T16:44:09.911Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-05T17:01:56.435Z",
+ "hs_object_id": "41357901724",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-05T17:01:56.435Z"
+ },
+ {
+ "createdAt": "2025-08-07T09:21:23.756Z",
+ "archived": false,
+ "id": "41527070984",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-08-07T09:21:23.756Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-07T09:37:40.633Z",
+ "hs_object_id": "41527070984",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-07T09:37:40.633Z"
+ },
+ {
+ "createdAt": "2025-08-08T06:39:07.779Z",
+ "archived": false,
+ "id": "41564803453",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-08T06:39:07.779Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T06:40:17.889Z",
+ "hs_object_id": "41564803453",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T06:40:17.889Z"
}
],
"monthlyDeals": [
{
- "createdAt": "2025-04-18T09:54:45.965Z",
+ "createdAt": "2025-04-18T09:54:45.965Z",
+ "archived": false,
+ "id": "35891295603",
+ "properties": {
+ "amount": "240.00",
+ "createdate": "2025-04-18T09:54:45.965Z",
+ "dealname": "Level-up the Variable Explorer: Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.264Z",
+ "hs_object_id": "35891295603",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.264Z"
+ },
+ {
+ "createdAt": "2025-04-27T19:47:18.244Z",
+ "archived": false,
+ "id": "36356682525",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-04-27T19:47:18.244Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "36356682525",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-06-19T17:18:48.724Z",
+ "archived": false,
+ "id": "39066297134",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-06-19T17:18:48.724Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.329Z",
+ "hs_object_id": "39066297134",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.329Z"
+ },
+ {
+ "createdAt": "2025-07-13T19:27:03.194Z",
+ "archived": false,
+ "id": "40154663440",
+ "properties": {
+ "amount": "36.00",
+ "createdate": "2025-07-13T19:27:03.194Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "40154663440",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-07-19T06:55:17.242Z",
+ "archived": false,
+ "id": "40489548728",
+ "properties": {
+ "amount": "84.00",
+ "createdate": "2025-07-19T06:55:17.242Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "40489548728",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-07-22T16:34:06.118Z",
+ "archived": false,
+ "id": "40673678107",
+ "properties": {
+ "amount": "60.00",
+ "createdate": "2025-07-22T16:34:06.118Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:17.324Z",
+ "hs_object_id": "40673678107",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:17.324Z"
+ }
+ ],
+ "oneTimeDeals": [
+ {
+ "createdAt": "2024-11-05T15:27:55.386Z",
+ "archived": false,
+ "id": "28743099954",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2024-11-05T15:27:55.386Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "28743099954",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2024-12-31T20:59:52.585Z",
+ "archived": false,
+ "id": "31266008965",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2024-12-31T20:59:52.585Z",
+ "dealname": "Spyder One-Time Donation via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "31266008965",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-01-09T08:35:04.408Z",
+ "archived": false,
+ "id": "31704199823",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-01-09T08:35:04.408Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "31704199823",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-03-30T21:19:04.375Z",
+ "archived": false,
+ "id": "35240642058",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-03-30T21:19:04.375Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-02T18:55:16.425Z",
+ "hs_object_id": "35240642058",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-02T18:55:16.425Z"
+ },
+ {
+ "createdAt": "2025-04-09T15:18:48.599Z",
+ "archived": false,
+ "id": "35594316619",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-09T15:18:48.599Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "35594316619",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-04-09T17:22:23.099Z",
+ "archived": false,
+ "id": "35625727668",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-09T17:22:23.099Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "35625727668",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-04-13T07:53:27.488Z",
+ "archived": false,
+ "id": "35711256670",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-04-13T07:53:27.488Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "35711256670",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-04-14T01:13:19.442Z",
+ "archived": false,
+ "id": "35723857267",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-14T01:13:19.442Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "35723857267",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.875Z"
+ },
+ {
+ "createdAt": "2025-04-17T16:54:31.545Z",
+ "archived": false,
+ "id": "35859805840",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-04-17T16:54:31.545Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "35859805840",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-04-17T20:57:16.478Z",
+ "archived": false,
+ "id": "35836379945",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-04-17T20:57:16.478Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.062Z",
+ "hs_object_id": "35836379945",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.062Z"
+ },
+ {
+ "createdAt": "2025-04-18T12:37:06.036Z",
+ "archived": false,
+ "id": "35895389081",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-18T12:37:06.036Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.504Z",
+ "hs_object_id": "35895389081",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:46.504Z"
+ },
+ {
+ "createdAt": "2025-04-18T12:55:14.989Z",
+ "archived": false,
+ "id": "35880854290",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-18T12:55:14.989Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "35880854290",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-04-18T15:45:54.411Z",
+ "archived": false,
+ "id": "35897730114",
+ "properties": {
+ "amount": "40.00",
+ "createdate": "2025-04-18T15:45:54.411Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "35897730114",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-04-19T21:45:52.198Z",
+ "archived": false,
+ "id": "35937273359",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-19T21:45:52.198Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "35937273359",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-04-20T08:12:12.733Z",
+ "archived": false,
+ "id": "35953158972",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-04-20T08:12:12.733Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "35953158972",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-04-21T02:57:49.957Z",
+ "archived": false,
+ "id": "35995991825",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-21T02:57:49.957Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.233Z",
+ "hs_object_id": "35995991825",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.233Z"
+ },
+ {
+ "createdAt": "2025-04-22T05:24:45.122Z",
+ "archived": false,
+ "id": "36051856705",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-04-22T05:24:45.122Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.491Z",
+ "hs_object_id": "36051856705",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.491Z"
+ },
+ {
+ "createdAt": "2025-04-23T12:01:37.506Z",
+ "archived": false,
+ "id": "36115001092",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-23T12:01:37.506Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "36115001092",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-04-23T22:14:59.735Z",
+ "archived": false,
+ "id": "36145295911",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-23T22:14:59.735Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "36145295911",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-04-24T07:00:32.701Z",
+ "archived": false,
+ "id": "36166714949",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-04-24T07:00:32.701Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "36166714949",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-04-27T20:51:17.893Z",
+ "archived": false,
+ "id": "36343578784",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-04-27T20:51:17.893Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36343578784",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-04-27T22:24:59.927Z",
+ "archived": false,
+ "id": "36343582855",
+ "properties": {
+ "amount": "17.00",
+ "createdate": "2025-04-27T22:24:59.927Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36343582855",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-04-28T13:25:54.714Z",
+ "archived": false,
+ "id": "36415253077",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-04-28T13:25:54.714Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "36415253077",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-04-29T17:03:41.997Z",
+ "archived": false,
+ "id": "36538113559",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-29T17:03:41.997Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36538113559",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-03T09:46:35.819Z",
+ "archived": false,
+ "id": "36669741836",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-03T09:46:35.819Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.659Z",
+ "hs_object_id": "36669741836",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.659Z"
+ },
+ {
+ "createdAt": "2025-05-03T11:31:49.309Z",
+ "archived": false,
+ "id": "36669445015",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-05-03T11:31:49.309Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "36669445015",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-05-04T01:52:57.487Z",
+ "archived": false,
+ "id": "36667340080",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-05-04T01:52:57.487Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.889Z",
+ "hs_object_id": "36667340080",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.889Z"
+ },
+ {
+ "createdAt": "2025-05-04T12:45:20.458Z",
+ "archived": false,
+ "id": "36680225375",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T12:45:20.458Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.512Z",
+ "hs_object_id": "36680225375",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.512Z"
+ },
+ {
+ "createdAt": "2025-05-04T18:50:16.137Z",
+ "archived": false,
+ "id": "36672569189",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T18:50:16.137Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36672569189",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-04T21:55:20.178Z",
+ "archived": false,
+ "id": "36687533695",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-04T21:55:20.178Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.471Z",
+ "hs_object_id": "36687533695",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.471Z"
+ },
+ {
+ "createdAt": "2025-05-06T20:46:16.006Z",
+ "archived": false,
+ "id": "36834640221",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-06T20:46:16.006Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36834640221",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-05-08T11:00:42.052Z",
+ "archived": false,
+ "id": "36896574053",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-08T11:00:42.052Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "36896574053",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-05-09T09:27:10.023Z",
+ "archived": false,
+ "id": "36964765007",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-09T09:27:10.023Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "36964765007",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-09T17:48:47.939Z",
+ "archived": false,
+ "id": "36989563671",
+ "properties": {
+ "amount": "2.00",
+ "createdate": "2025-05-09T17:48:47.939Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36989563671",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-10T15:55:00.982Z",
+ "archived": false,
+ "id": "37026677833",
+ "properties": {
+ "amount": "1.00",
+ "createdate": "2025-05-10T15:55:00.982Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "37026677833",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-11T08:23:17.592Z",
+ "archived": false,
+ "id": "37009328415",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-11T08:23:17.592Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "37009328415",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-05-12T15:21:05.818Z",
+ "archived": false,
+ "id": "37107403591",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-12T15:21:05.818Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.144Z",
+ "hs_object_id": "37107403591",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.144Z"
+ },
+ {
+ "createdAt": "2025-05-12T19:58:11.880Z",
+ "archived": false,
+ "id": "37127637853",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-12T19:58:11.880Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.698Z",
+ "hs_object_id": "37127637853",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.698Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:02:04.415Z",
+ "archived": false,
+ "id": "37143810663",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-13T13:02:04.415Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37143810663",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:07:51.758Z",
+ "archived": false,
+ "id": "37124041893",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-13T13:07:51.758Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37124041893",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T18:02:30.876Z",
+ "archived": false,
+ "id": "37131599656",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-13T18:02:30.876Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.926Z",
+ "hs_object_id": "37131599656",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.926Z"
+ },
+ {
+ "createdAt": "2025-05-18T20:50:32.354Z",
+ "archived": false,
+ "id": "37395734026",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-18T20:50:32.354Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "37395734026",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-05-19T01:50:44.429Z",
+ "archived": false,
+ "id": "37406526815",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-19T01:50:44.429Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:19.473Z",
+ "hs_object_id": "37406526815",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:19.473Z"
+ },
+ {
+ "createdAt": "2025-05-20T13:36:54.271Z",
+ "archived": false,
+ "id": "37472200612",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-20T13:36:54.271Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.124Z",
+ "hs_object_id": "37472200612",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.124Z"
+ },
+ {
+ "createdAt": "2025-05-23T03:37:00.394Z",
+ "archived": false,
+ "id": "37765132904",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-23T03:37:00.394Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:46.643Z",
+ "hs_object_id": "37765132904",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:46.643Z"
+ },
+ {
+ "createdAt": "2025-05-24T15:35:23.080Z",
+ "archived": false,
+ "id": "37885719047",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T15:35:23.080Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "37885719047",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-24T17:37:55.015Z",
+ "archived": false,
+ "id": "37931379865",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T17:37:55.015Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.406Z",
+ "hs_object_id": "37931379865",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.406Z"
+ },
+ {
+ "createdAt": "2025-05-27T06:41:32.116Z",
+ "archived": false,
+ "id": "37987691528",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-27T06:41:32.116Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37987691528",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-27T18:16:34.026Z",
+ "archived": false,
+ "id": "38051227649",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-27T18:16:34.026Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38051227649",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T14:26:32.206Z",
+ "archived": false,
+ "id": "38144782927",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-29T14:26:32.206Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38144782927",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T15:17:00.173Z",
+ "archived": false,
+ "id": "38158417666",
+ "properties": {
+ "amount": "11.50",
+ "createdate": "2025-05-29T15:17:00.173Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "38158417666",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-29T16:11:38.397Z",
+ "archived": false,
+ "id": "38210604426",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-29T16:11:38.397Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.172Z",
+ "hs_object_id": "38210604426",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.172Z"
+ },
+ {
+ "createdAt": "2025-05-30T14:58:43.205Z",
+ "archived": false,
+ "id": "38249483330",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-30T14:58:43.205Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.401Z",
+ "hs_object_id": "38249483330",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:46.401Z"
+ },
+ {
+ "createdAt": "2025-05-30T17:58:06.202Z",
+ "archived": false,
+ "id": "38268635719",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-30T17:58:06.202Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.080Z",
+ "hs_object_id": "38268635719",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.080Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:47:45.421Z",
+ "archived": false,
+ "id": "38311123737",
+ "properties": {
+ "amount": "500.00",
+ "createdate": "2025-06-02T08:47:45.421Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38311123737",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:54:26.976Z",
+ "archived": false,
+ "id": "38311479139",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:54:26.976Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.844Z",
+ "hs_object_id": "38311479139",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.844Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:56:26.660Z",
+ "archived": false,
+ "id": "38311673672",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:56:26.660Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:14.338Z",
+ "hs_object_id": "38311673672",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:14.338Z"
+ },
+ {
+ "createdAt": "2025-06-02T22:08:40.929Z",
+ "archived": false,
+ "id": "38329891970",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T22:08:40.929Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.260Z",
+ "hs_object_id": "38329891970",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.260Z"
+ },
+ {
+ "createdAt": "2025-06-03T11:35:05.893Z",
+ "archived": false,
+ "id": "38346856226",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-03T11:35:05.893Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.589Z",
+ "hs_object_id": "38346856226",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.589Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:04:56.187Z",
+ "archived": false,
+ "id": "38347530406",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-03T12:04:56.187Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "38347530406",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:50:53.610Z",
+ "archived": false,
+ "id": "38345333847",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-03T12:50:53.610Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38345333847",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-05T13:05:05.441Z",
+ "archived": false,
+ "id": "38528449603",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-05T13:05:05.441Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "38528449603",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-06-07T14:44:48.802Z",
+ "archived": false,
+ "id": "38616040627",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-07T14:44:48.802Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.693Z",
+ "hs_object_id": "38616040627",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.693Z"
+ },
+ {
+ "createdAt": "2025-06-08T00:09:03.366Z",
+ "archived": false,
+ "id": "38624297779",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-08T00:09:03.366Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "38624297779",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-06-09T17:44:07.802Z",
+ "archived": false,
+ "id": "38665140076",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-09T17:44:07.802Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.215Z",
+ "hs_object_id": "38665140076",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.215Z"
+ },
+ {
+ "createdAt": "2025-06-10T16:55:51.897Z",
+ "archived": false,
+ "id": "38729804081",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-10T16:55:51.897Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "38729804081",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-06-11T23:45:34.958Z",
+ "archived": false,
+ "id": "38788725328",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-11T23:45:34.958Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38788725328",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-12T22:03:20.494Z",
+ "archived": false,
+ "id": "38825619778",
+ "properties": {
+ "amount": "35.00",
+ "createdate": "2025-06-12T22:03:20.494Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "38825619778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-13T03:32:18.747Z",
+ "archived": false,
+ "id": "38829177434",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-13T03:32:18.747Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38829177434",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-15T12:21:32.605Z",
+ "archived": false,
+ "id": "38898539399",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-15T12:21:32.605Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38898539399",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-17T00:59:25.566Z",
+ "archived": false,
+ "id": "38953988654",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-17T00:59:25.566Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.564Z",
+ "hs_object_id": "38953988654",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.564Z"
+ },
+ {
+ "createdAt": "2025-06-19T06:50:29.250Z",
+ "archived": false,
+ "id": "39058692022",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-19T06:50:29.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "39058692022",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-21T12:43:48.468Z",
+ "archived": false,
+ "id": "39108670994",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-21T12:43:48.468Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39108670994",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-23T19:29:48.687Z",
+ "archived": false,
+ "id": "39239432817",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-06-23T19:29:48.687Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.967Z",
+ "hs_object_id": "39239432817",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.967Z"
+ },
+ {
+ "createdAt": "2025-06-24T16:56:48.203Z",
+ "archived": false,
+ "id": "39256894309",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-24T16:56:48.203Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "39256894309",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-25T06:43:06.292Z",
+ "archived": false,
+ "id": "39267967832",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-25T06:43:06.292Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39267967832",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-25T08:32:28.479Z",
+ "archived": false,
+ "id": "39269837706",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-25T08:32:28.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.313Z",
+ "hs_object_id": "39269837706",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.313Z"
+ },
+ {
+ "createdAt": "2025-06-25T09:51:37.418Z",
+ "archived": false,
+ "id": "39264318101",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-25T09:51:37.418Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "39264318101",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-06-26T00:30:12.249Z",
+ "archived": false,
+ "id": "39292536602",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-26T00:30:12.249Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "39292536602",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-06-26T08:48:28.967Z",
+ "archived": false,
+ "id": "39309125394",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-26T08:48:28.967Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39309125394",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-29T12:07:41.551Z",
+ "archived": false,
+ "id": "39457053587",
+ "properties": {
+ "amount": "200.00",
+ "createdate": "2025-06-29T12:07:41.551Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "39457053587",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-06-29T13:39:44.175Z",
+ "archived": false,
+ "id": "39457548821",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-06-29T13:39:44.175Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39457548821",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-29T15:15:12.289Z",
+ "archived": false,
+ "id": "39464411980",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-29T15:15:12.289Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "39464411980",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-06-30T18:05:45.510Z",
+ "archived": false,
+ "id": "39514245985",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-30T18:05:45.510Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.688Z",
+ "hs_object_id": "39514245985",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.688Z"
+ },
+ {
+ "createdAt": "2025-07-02T13:34:52.479Z",
+ "archived": false,
+ "id": "39607572819",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-02T13:34:52.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "39607572819",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-07-03T07:00:40.910Z",
"archived": false,
- "id": "35891295603",
+ "id": "39636448605",
"properties": {
- "amount": "240.00",
- "createdate": "2025-04-18T09:54:45.965Z",
- "dealname": "Level-up the Variable Explorer: Monthly via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:41.193Z",
- "hs_object_id": "35891295603",
- "pipeline": "691999256"
+ "amount": "20.00",
+ "createdate": "2025-07-03T07:00:40.910Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39636448605",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:41.193Z"
- }
- ],
- "oneTimeDeals": [
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
{
- "createdAt": "2024-11-05T15:27:55.386Z",
+ "createdAt": "2025-07-04T17:15:07.495Z",
"archived": false,
- "id": "28743099954",
+ "id": "39698037686",
"properties": {
- "amount": "30.00",
- "createdate": "2024-11-05T15:27:55.386Z",
+ "amount": "100.00",
+ "createdate": "2025-07-04T17:15:07.495Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:12.602Z",
- "hs_object_id": "28743099954",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39698037686",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:12.602Z"
+ "updatedAt": "2025-07-24T00:49:47.901Z"
},
{
- "createdAt": "2024-12-31T20:59:52.585Z",
+ "createdAt": "2025-07-06T13:21:20.114Z",
"archived": false,
- "id": "31266008965",
+ "id": "39768507694",
"properties": {
- "amount": "25.00",
- "createdate": "2024-12-31T20:59:52.585Z",
- "dealname": "Spyder One-Time Donation via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:16.598Z",
- "hs_object_id": "31266008965",
- "pipeline": "691999256"
+ "amount": "10.00",
+ "createdate": "2025-07-06T13:21:20.114Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39768507694",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:16.598Z"
+ "updatedAt": "2025-07-24T00:49:46.025Z"
},
{
- "createdAt": "2025-01-09T08:35:04.408Z",
+ "createdAt": "2025-07-07T07:24:09.664Z",
"archived": false,
- "id": "31704199823",
+ "id": "39805299124",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-07T07:24:09.664Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39805299124",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-07-08T06:47:49.250Z",
+ "archived": false,
+ "id": "39848597854",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-08T06:47:49.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.496Z",
+ "hs_object_id": "39848597854",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.496Z"
+ },
+ {
+ "createdAt": "2025-07-08T08:36:11.581Z",
+ "archived": false,
+ "id": "39842480413",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-08T08:36:11.581Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "39842480413",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-07-10T05:21:17.733Z",
+ "archived": false,
+ "id": "39925390942",
"properties": {
"amount": "15.00",
- "createdate": "2025-01-09T08:35:04.408Z",
+ "createdate": "2025-07-10T05:21:17.733Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:07.657Z",
- "hs_object_id": "31704199823",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "39925390942",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:07.657Z"
+ "updatedAt": "2025-07-24T00:49:48.021Z"
},
{
- "createdAt": "2025-03-30T21:19:04.375Z",
+ "createdAt": "2025-07-10T09:44:33.152Z",
"archived": false,
- "id": "35240642058",
+ "id": "39940834582",
"properties": {
- "amount": "5.00",
- "createdate": "2025-03-30T21:19:04.375Z",
- "dealname": "New Viewer pane: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:02.679Z",
- "hs_object_id": "35240642058",
- "pipeline": "691999256"
+ "amount": "20.00",
+ "createdate": "2025-07-10T09:44:33.152Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39940834582",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:02.679Z"
+ "updatedAt": "2025-07-24T00:49:47.982Z"
},
{
- "createdAt": "2025-04-09T15:18:48.599Z",
+ "createdAt": "2025-07-10T16:39:46.401Z",
"archived": false,
- "id": "35594316619",
+ "id": "39980252809",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-10T16:39:46.401Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39980252809",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-11T18:56:19.214Z",
+ "archived": false,
+ "id": "40012499753",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-11T18:56:19.214Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "40012499753",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-07-12T03:08:09.584Z",
+ "archived": false,
+ "id": "40059678258",
"properties": {
"amount": "10.00",
- "createdate": "2025-04-09T15:18:48.599Z",
+ "createdate": "2025-07-12T03:08:09.584Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:54.992Z",
- "hs_object_id": "35594316619",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40059678258",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:54.992Z"
+ "updatedAt": "2025-07-24T00:49:47.875Z"
},
{
- "createdAt": "2025-04-09T17:22:23.099Z",
+ "createdAt": "2025-07-12T12:21:04.666Z",
"archived": false,
- "id": "35625727668",
+ "id": "40086290944",
"properties": {
"amount": "20.00",
- "createdate": "2025-04-09T17:22:23.099Z",
+ "createdate": "2025-07-12T12:21:04.666Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:49.454Z",
- "hs_object_id": "35625727668",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40086290944",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:49.454Z"
+ "updatedAt": "2025-07-24T00:49:46.094Z"
},
{
- "createdAt": "2025-04-13T07:53:27.488Z",
+ "createdAt": "2025-07-12T16:14:21.272Z",
"archived": false,
- "id": "35711256670",
+ "id": "40100062839",
+ "properties": {
+ "amount": "3.00",
+ "createdate": "2025-07-12T16:14:21.272Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40100062839",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-07-16T05:29:06.816Z",
+ "archived": false,
+ "id": "40297151772",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-16T05:29:06.816Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40297151772",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-07-16T11:56:13.418Z",
+ "archived": false,
+ "id": "40312153979",
"properties": {
"amount": "25.00",
- "createdate": "2025-04-13T07:53:27.488Z",
+ "createdate": "2025-07-16T11:56:13.418Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:32:09.288Z",
- "hs_object_id": "35711256670",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "40312153979",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:32:09.288Z"
+ "updatedAt": "2025-07-24T00:49:48.003Z"
},
{
- "createdAt": "2025-04-14T01:13:19.442Z",
+ "createdAt": "2025-07-16T13:43:43.042Z",
"archived": false,
- "id": "35723857267",
+ "id": "40322190885",
"properties": {
- "amount": "20.00",
- "createdate": "2025-04-14T01:13:19.442Z",
+ "amount": "25.00",
+ "createdate": "2025-07-16T13:43:43.042Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:59.781Z",
- "hs_object_id": "35723857267",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "40322190885",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:59.781Z"
+ "updatedAt": "2025-07-24T00:49:47.982Z"
},
{
- "createdAt": "2025-04-17T16:54:31.545Z",
+ "createdAt": "2025-07-16T15:29:12.525Z",
"archived": false,
- "id": "35859805840",
+ "id": "40326223268",
+ "properties": {
+ "amount": "4.22",
+ "createdate": "2025-07-16T15:29:12.525Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "40326223268",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-07-16T16:35:54.168Z",
+ "archived": false,
+ "id": "40332153441",
"properties": {
"amount": "5.00",
- "createdate": "2025-04-17T16:54:31.545Z",
+ "createdate": "2025-07-16T16:35:54.168Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:49.060Z",
- "hs_object_id": "35859805840",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "40332153441",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:49.060Z"
+ "updatedAt": "2025-07-24T00:49:46.301Z"
},
{
- "createdAt": "2025-04-17T20:57:16.478Z",
+ "createdAt": "2025-07-17T10:40:10.832Z",
"archived": false,
- "id": "35836379945",
+ "id": "40356174907",
"properties": {
"amount": "50.00",
- "createdate": "2025-04-17T20:57:16.478Z",
+ "createdate": "2025-07-17T10:40:10.832Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:45.183Z",
- "hs_object_id": "35836379945",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40356174907",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:45.183Z"
+ "updatedAt": "2025-07-24T00:49:47.824Z"
},
{
- "createdAt": "2025-04-18T12:37:06.036Z",
+ "createdAt": "2025-07-17T18:53:13.425Z",
"archived": false,
- "id": "35895389081",
+ "id": "40411877968",
"properties": {
"amount": "10.00",
- "createdate": "2025-04-18T12:37:06.036Z",
- "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:32.206Z",
- "hs_object_id": "35895389081",
- "pipeline": "691999256"
+ "createdate": "2025-07-17T18:53:13.425Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40411877968",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:32.206Z"
+ "updatedAt": "2025-07-24T00:49:47.965Z"
},
{
- "createdAt": "2025-04-18T12:55:14.989Z",
+ "createdAt": "2025-07-19T06:51:18.752Z",
"archived": false,
- "id": "35880854290",
+ "id": "40483957059",
"properties": {
- "amount": "20.00",
- "createdate": "2025-04-18T12:55:14.989Z",
+ "amount": "50.00",
+ "createdate": "2025-07-19T06:51:18.752Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:24.725Z",
- "hs_object_id": "35880854290",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.559Z",
+ "hs_object_id": "40483957059",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:24.725Z"
+ "updatedAt": "2025-07-24T00:49:46.559Z"
},
{
- "createdAt": "2025-04-18T15:45:54.411Z",
+ "createdAt": "2025-07-20T01:14:32.647Z",
"archived": false,
- "id": "35897730114",
+ "id": "40518705722",
"properties": {
- "amount": "40.00",
- "createdate": "2025-04-18T15:45:54.411Z",
+ "amount": "2.00",
+ "createdate": "2025-07-20T01:14:32.647Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:22.102Z",
- "hs_object_id": "35897730114",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40518705722",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:22.102Z"
+ "updatedAt": "2025-07-24T00:49:47.875Z"
},
{
- "createdAt": "2025-04-19T21:45:52.198Z",
+ "createdAt": "2025-07-21T15:04:20.221Z",
"archived": false,
- "id": "35937273359",
+ "id": "40575552537",
"properties": {
- "amount": "10.00",
- "createdate": "2025-04-19T21:45:52.198Z",
+ "amount": "50.00",
+ "createdate": "2025-07-21T15:04:20.221Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:18.160Z",
- "hs_object_id": "35937273359",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40575552537",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:18.160Z"
+ "updatedAt": "2025-07-24T00:49:47.965Z"
},
{
- "createdAt": "2025-04-20T08:12:12.733Z",
+ "createdAt": "2025-07-24T15:37:31.935Z",
"archived": false,
- "id": "35953158972",
+ "id": "40760201012",
"properties": {
"amount": "50.00",
- "createdate": "2025-04-20T08:12:12.733Z",
+ "createdate": "2025-07-24T15:37:31.935Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:15.581Z",
- "hs_object_id": "35953158972",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T20:09:29.281Z",
+ "hs_object_id": "40760201012",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:15.581Z"
+ "updatedAt": "2025-07-24T20:09:29.281Z"
},
{
- "createdAt": "2025-04-21T02:57:49.957Z",
+ "createdAt": "2025-07-25T13:29:23.122Z",
"archived": false,
- "id": "35995991825",
+ "id": "40828495681",
"properties": {
- "amount": "10.00",
- "createdate": "2025-04-21T02:57:49.957Z",
- "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:45.427Z",
- "hs_object_id": "35995991825",
- "pipeline": "691999256"
+ "amount": "50.00",
+ "createdate": "2025-07-25T13:29:23.122Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-25T13:34:44.342Z",
+ "hs_object_id": "40828495681",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:45.427Z"
+ "updatedAt": "2025-07-25T13:34:44.342Z"
},
{
- "createdAt": "2025-04-22T05:24:45.122Z",
+ "createdAt": "2025-07-27T22:10:02.064Z",
"archived": false,
- "id": "36051856705",
+ "id": "40923075914",
"properties": {
- "amount": "15.00",
- "createdate": "2025-04-22T05:24:45.122Z",
+ "amount": "20.00",
+ "createdate": "2025-07-27T22:10:02.064Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T22:11:11.229Z",
+ "hs_object_id": "40923075914",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T22:11:11.229Z"
+ },
+ {
+ "createdAt": "2025-07-27T23:13:41.447Z",
+ "archived": false,
+ "id": "40920368559",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-27T23:13:41.447Z",
"dealname": "Smarter code completion: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:10.003Z",
- "hs_object_id": "36051856705",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-27T23:29:51.405Z",
+ "hs_object_id": "40920368559",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:10.003Z"
+ "updatedAt": "2025-07-27T23:29:51.405Z"
},
{
- "createdAt": "2025-04-23T12:01:37.506Z",
+ "createdAt": "2025-07-27T23:37:17.208Z",
"archived": false,
- "id": "36115001092",
+ "id": "40939385523",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-27T23:37:17.208Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T23:53:29.400Z",
+ "hs_object_id": "40939385523",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T23:53:29.400Z"
+ },
+ {
+ "createdAt": "2025-07-28T13:08:24.566Z",
+ "archived": false,
+ "id": "40974422184",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-28T13:08:24.566Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-28T13:12:00.142Z",
+ "hs_object_id": "40974422184",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-28T13:12:00.142Z"
+ },
+ {
+ "createdAt": "2025-07-30T15:30:49.834Z",
+ "archived": false,
+ "id": "41068945962",
+ "properties": {
+ "amount": "40.00",
+ "createdate": "2025-07-30T15:30:49.834Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-30T15:36:52.801Z",
+ "hs_object_id": "41068945962",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-30T15:36:52.801Z"
+ },
+ {
+ "createdAt": "2025-07-31T06:45:07.226Z",
+ "archived": false,
+ "id": "41101724708",
+ "properties": {
+ "amount": "1.50",
+ "createdate": "2025-07-31T06:45:07.226Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T07:01:19.465Z",
+ "hs_object_id": "41101724708",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T07:01:19.465Z"
+ },
+ {
+ "createdAt": "2025-07-31T16:16:02.461Z",
+ "archived": false,
+ "id": "41129617778",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-31T16:16:02.461Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T16:17:52.812Z",
+ "hs_object_id": "41129617778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T16:17:52.812Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:02:04.442Z",
+ "archived": false,
+ "id": "41187758140",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:02:04.442Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T17:04:08.293Z",
+ "hs_object_id": "41187758140",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T17:04:08.293Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:55:21.724Z",
+ "archived": false,
+ "id": "41190839594",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:55:21.724Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T18:12:00.848Z",
+ "hs_object_id": "41190839594",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T18:12:00.848Z"
+ },
+ {
+ "createdAt": "2025-08-01T20:25:03.314Z",
+ "archived": false,
+ "id": "41193909518",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-01T20:25:03.314Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T20:41:24.769Z",
+ "hs_object_id": "41193909518",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T20:41:24.769Z"
+ },
+ {
+ "createdAt": "2025-08-04T08:53:39.504Z",
+ "archived": false,
+ "id": "41312378735",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-04T08:53:39.504Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T09:09:47.696Z",
+ "hs_object_id": "41312378735",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T09:09:47.696Z"
+ },
+ {
+ "createdAt": "2025-08-04T13:25:04.371Z",
+ "archived": false,
+ "id": "41298486314",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-04T13:25:04.371Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.608Z",
+ "hs_object_id": "41298486314",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.608Z"
+ },
+ {
+ "createdAt": "2025-08-04T23:29:01.565Z",
+ "archived": false,
+ "id": "41368915729",
"properties": {
"amount": "20.00",
- "createdate": "2025-04-23T12:01:37.506Z",
+ "createdate": "2025-08-04T23:29:01.565Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:02.812Z",
- "hs_object_id": "36115001092",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-08-04T23:45:11.444Z",
+ "hs_object_id": "41368915729",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:02.812Z"
+ "updatedAt": "2025-08-04T23:45:11.444Z"
},
{
- "createdAt": "2025-04-23T22:14:59.735Z",
+ "createdAt": "2025-08-05T16:44:09.911Z",
"archived": false,
- "id": "36145295911",
+ "id": "41357901724",
"properties": {
"amount": "20.00",
- "createdate": "2025-04-23T22:14:59.735Z",
+ "createdate": "2025-08-05T16:44:09.911Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:48.630Z",
- "hs_object_id": "36145295911",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-08-05T17:01:56.435Z",
+ "hs_object_id": "41357901724",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:48.630Z"
+ "updatedAt": "2025-08-05T17:01:56.435Z"
},
{
- "createdAt": "2025-04-24T07:00:32.701Z",
+ "createdAt": "2025-08-07T09:21:23.756Z",
"archived": false,
- "id": "36166714949",
+ "id": "41527070984",
"properties": {
"amount": "50.00",
- "createdate": "2025-04-24T07:00:32.701Z",
+ "createdate": "2025-08-07T09:21:23.756Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T07:06:03.130Z",
- "hs_object_id": "36166714949",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-08-07T09:37:40.633Z",
+ "hs_object_id": "41527070984",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-07T09:37:40.633Z"
+ },
+ {
+ "createdAt": "2025-08-08T06:39:07.779Z",
+ "archived": false,
+ "id": "41564803453",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-08T06:39:07.779Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T06:40:17.889Z",
+ "hs_object_id": "41564803453",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T07:06:03.130Z"
+ "updatedAt": "2025-08-08T06:40:17.889Z"
}
],
- "totalDonations": 690,
- "totalMonthlyDonations": 240,
- "totalOneTimeDonations": 450,
- "lastUpdated": "2025-04-24T17:59:18.150Z"
+ "totalDonations": 4337.219999999999,
+ "totalMonthlyDonations": 660,
+ "totalOneTimeDonations": 3677.22,
+ "lastUpdated": "2025-08-08T21:06:15.714Z"
}
\ No newline at end of file
diff --git a/static/funding.json b/static/funding.json
new file mode 100644
index 00000000..72bf1ef0
--- /dev/null
+++ b/static/funding.json
@@ -0,0 +1,169 @@
+{
+ "version": "v1.0.0",
+ "entity": {
+ "type": "organisation",
+ "role": "other",
+ "name": "Spyder",
+ "email": "spyder.python@gmail.com",
+ "description": "The Spyder organization, a project of the NumFOCUS nonprofit",
+ "webpageUrl": {
+ "url": "https://www.spyder-ide.org"
+ }
+ },
+ "projects": [
+ {
+ "guid": "spyder-ide",
+ "name": "Spyder",
+ "description": "The scientific Python development environment",
+ "webpageUrl": {
+ "url": "https://www.spyder-ide.org"
+ },
+ "repositoryUrl": {
+ "url": "https://github.com/spyder-ide",
+ "wellKnown": "https://github.com/spyder-ide/spyder/raw/HEAD/.well-known/funding-manifest-urls"
+ },
+ "licenses": [
+ "spdx:MIT"
+ ],
+ "tags": [
+ "data",
+ "data-science",
+ "data-visualization",
+ "developer-tools",
+ "development",
+ "programming",
+ "science",
+ "scientific-computing",
+ "software-engineering",
+ "python"
+ ]
+ },
+ {
+ "guid": "python-lsp",
+ "name": "Python LSP Server",
+ "description": "The python-language-server project, maintained by the Spyder IDE team and the community",
+ "webpageUrl": {
+ "url": "https://github.com/python-lsp",
+ "wellKnown": "https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls"
+ },
+ "repositoryUrl": {
+ "url": "https://github.com/python-lsp/python-lsp-server",
+ "wellKnown": "https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls"
+ },
+ "licenses": [
+ "spdx:MIT"
+ ],
+ "tags": [
+ "developer-tools",
+ "development",
+ "programming",
+ "software-engineering",
+ "ide",
+ "language-server-protocol",
+ "lsp",
+ "lsp-server",
+ "python"
+ ]
+ }
+ ],
+ "funding": {
+ "channels": [
+ {
+ "guid": "hubspot",
+ "type": "payment-provider",
+ "address": "https://numfocus.org/donate-for-spyder",
+ "description": "Spyder Hubspot donation page with NumFOCUS"
+ },
+ {
+ "guid": "numfocus",
+ "type": "other",
+ "address": "info@numfocus.org",
+ "description": "Contact NumFOCUS to coordinate a direct donation"
+ }
+ ],
+ "plans": [
+ {
+ "guid": "general-fund-onetime",
+ "status": "active",
+ "name": "Support Spyder one-time",
+ "description": "Support the Spyder project as a whole, with the money used where it is needed most.",
+ "amount": 0,
+ "currency": "USD",
+ "frequency": "one-time",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "general-fund-monthly",
+ "status": "active",
+ "name": "Support Spyder monthly",
+ "description": "Support the Spyder project as a whole with a monthly donation, with the money used where it is needed most.",
+ "amount": 0,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "individual",
+ "status": "active",
+ "name": "Individual Donor",
+ "description": "Support us with a monthly donation and help us continue our activities.",
+ "amount": 5,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "company",
+ "status": "active",
+ "name": "Company Sponsor",
+ "description": "Become a sponsor and get your logo on our README on Github with a link to your site.",
+ "amount": 100,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "junior-dev",
+ "status": "active",
+ "name": "Part Time Junior Developer",
+ "description": "Help pay a Junior Developer to work part time on the Spyder IDE.",
+ "amount": 500,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "baseline-maintenance",
+ "status": "active",
+ "name": "Baseline Development and Maintenance",
+ "description": "Help fund critical baseline development and maintenance for our worldwide community of hundreds of thousands of users.",
+ "amount": 50000,
+ "currency": "USD",
+ "frequency": "yearly",
+ "channels": [
+ "numfocus"
+ ]
+ }
+ ],
+ "history": [
+ {
+ "year": 2024,
+ "income": 150000,
+ "expenses": 150000,
+ "taxes": 0,
+ "currency": "USD",
+ "description": ""
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/svelte.config.js b/svelte.config.js
index d3a1f8e3..835af2cd 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -71,13 +71,13 @@ const blogImages = () => {
}
});
- // Then handle raw HTML to catch any embedded
tags
+ // Then handle raw HTML to catch any embedded
,
+
-
+
diff --git a/src/lib/components/ProjectCard.svelte b/src/lib/components/ProjectCard.svelte
index 35f6562a..7eea0d53 100644
--- a/src/lib/components/ProjectCard.svelte
+++ b/src/lib/components/ProjectCard.svelte
@@ -1,157 +1,24 @@
{normalizedProgress}%
-
+
{#await project.image && imageExists()}
{:then}
@@ -161,20 +28,6 @@
{:else if project.image}
- {:else}
-
- {#key redrawKey}
-
- {/key}
-
{/if}
{/await}
@@ -183,25 +36,49 @@
{#if project.donations}
-
-
- {project.collected}:
- {#if !project.donationGoal}
-
{project.donations.total.toLocaleString($locale, currencyOptions)} - {/if} - {#if project.donationGoal} - {project.donations.total.toLocaleString($locale, currencyOptions)} - {project.separator} - {project.donationGoal.toLocaleString($locale, currencyOptions)} -
- {/if}
+
@@ -212,6 +89,7 @@
.group {
@apply w-full flex-shrink-0 py-4 md:w-1/2 md:px-4 xl:w-1/3;
}
+
.card {
@apply grid h-full grid-cols-1 rounded-2xl border border-neutral-300 shadow-2xl dark:border-neutral-700 dark:shadow-neutral-900;
grid-template-rows: auto 1fr;
@@ -219,7 +97,7 @@
.card-container {
@apply grid grid-cols-1 gap-8 p-8;
- grid-template-rows: 1fr auto;
+ grid-template-rows: auto 1fr;
}
.card-title {
@@ -227,17 +105,13 @@
}
.card-image {
- @apply relative overflow-hidden;
+ @apply relative overflow-hidden border-b-4 border-red-berry-900 dark:border-neutral-700;
}
.project-image {
@apply rounded-t-2xl aspect-square w-full md:aspect-video;
}
- .dynamic-bg-container {
- @apply rounded-t-2xl aspect-square w-full md:aspect-video overflow-hidden;
- }
-
.card-content {
@apply font-light;
}
diff --git a/src/lib/config/data/config.yaml b/src/lib/config/data/config.yaml
index 646d2e06..48564ca0 100644
--- a/src/lib/config/data/config.yaml
+++ b/src/lib/config/data/config.yaml
@@ -30,6 +30,7 @@ site:
github: https://github.com/spyder-ide/spyder
twitter: https://twitter.com/spyder_ide
facebook: https://www.facebook.com/SpyderIDE
+ youtube: https://www.youtube.com/@SpyderIDE
mastodon: https://fosstodon.org/@Spyder
instagram: https://instagram.com/spyderide
rss: https://www.spyder-ide.org/blog/feed.xml
diff --git a/src/lib/config/data/donate.yaml b/src/lib/config/data/donate.yaml
index aa105b9a..e48c97aa 100644
--- a/src/lib/config/data/donate.yaml
+++ b/src/lib/config/data/donate.yaml
@@ -3,7 +3,7 @@ projects:
slug: spyder
image: /assets/media/spyder_splash_bg.webp
donationLinkID: Pjm6SyqYNb
- pastDonations: 15744
+ pastDonations: 17795
- id: 1
slug: code-completions
image: /assets/media/donations-code_completions.webp
diff --git a/src/lib/config/data/funding.yaml b/src/lib/config/data/funding.yaml
new file mode 100644
index 00000000..575fdee9
--- /dev/null
+++ b/src/lib/config/data/funding.yaml
@@ -0,0 +1,116 @@
+version: 'v1.0.0'
+entity:
+ type: 'organisation'
+ role: 'other'
+ name: 'Spyder'
+ email: 'spyder.python@gmail.com'
+ description: 'The Spyder organization, a project of the NumFOCUS nonprofit'
+ webpageUrl:
+ url: 'https://www.spyder-ide.org'
+projects:
+ - guid: 'spyder-ide'
+ name: 'Spyder'
+ description: 'The scientific Python development environment'
+ webpageUrl:
+ url: 'https://www.spyder-ide.org'
+ repositoryUrl:
+ url: 'https://github.com/spyder-ide'
+ wellKnown: 'https://github.com/spyder-ide/spyder/raw/HEAD/.well-known/funding-manifest-urls'
+ licenses: ['spdx:MIT']
+ tags:
+ - 'data'
+ - 'data-science'
+ - 'data-visualization'
+ - 'developer-tools'
+ - 'development'
+ - 'programming'
+ - 'science'
+ - 'scientific-computing'
+ - 'software-engineering'
+ - 'python'
+ - guid: 'python-lsp'
+ name: 'Python LSP Server'
+ description: 'The python-language-server project, maintained by the Spyder IDE team and the community'
+ webpageUrl:
+ url: 'https://github.com/python-lsp'
+ wellKnown: 'https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls'
+ repositoryUrl:
+ url: 'https://github.com/python-lsp/python-lsp-server'
+ wellKnown: 'https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls'
+ licenses: ['spdx:MIT']
+ tags:
+ - 'developer-tools'
+ - 'development'
+ - 'programming'
+ - 'software-engineering'
+ - 'ide'
+ - 'language-server-protocol'
+ - 'lsp'
+ - 'lsp-server'
+ - 'python'
+funding:
+ channels:
+ - guid: 'hubspot'
+ type: 'payment-provider'
+ address: 'https://numfocus.org/donate-for-spyder'
+ description: 'Spyder Hubspot donation page with NumFOCUS'
+ - guid: 'numfocus'
+ type: 'other'
+ address: 'info@numfocus.org'
+ description: 'Contact NumFOCUS to coordinate a direct donation'
+ plans:
+ - guid: 'general-fund-onetime'
+ status: 'active'
+ name: 'Support Spyder one-time'
+ description: 'Support the Spyder project as a whole, with the money used where it is needed most.'
+ amount: 0
+ currency: 'USD'
+ frequency: 'one-time'
+ channels: ['hubspot']
+ - guid: 'general-fund-monthly'
+ status: 'active'
+ name: 'Support Spyder monthly'
+ description: 'Support the Spyder project as a whole with a monthly donation, with the money used where it is needed most.'
+ amount: 0
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'individual'
+ status: 'active'
+ name: 'Individual Donor'
+ description: 'Support us with a monthly donation and help us continue our activities.'
+ amount: 5
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'company'
+ status: 'active'
+ name: 'Company Sponsor'
+ description: 'Become a sponsor and get your logo on our README on Github with a link to your site.'
+ amount: 100
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'junior-dev'
+ status: 'active'
+ name: 'Part Time Junior Developer'
+ description: 'Help pay a Junior Developer to work part time on the Spyder IDE.'
+ amount: 500
+ currency: 'USD'
+ frequency: 'monthly'
+ channels: ['hubspot']
+ - guid: 'baseline-maintenance'
+ status: 'active'
+ name: 'Baseline Development and Maintenance'
+ description: 'Help fund critical baseline development and maintenance for our worldwide community of hundreds of thousands of users.'
+ amount: 50000
+ currency: 'USD'
+ frequency: 'yearly'
+ channels: ['numfocus']
+ history:
+ - year: 2024
+ income: 150000
+ expenses: 150000
+ taxes: 0
+ currency: 'USD'
+ description: ''
diff --git a/src/lib/i18n/en-US/donate.yaml b/src/lib/i18n/en-US/donate.yaml
index d10a7aa6..1294b84c 100644
--- a/src/lib/i18n/en-US/donate.yaml
+++ b/src/lib/i18n/en-US/donate.yaml
@@ -5,10 +5,14 @@ page:
back: Back to list
supporters: Total Supporters
intro: |
- Our mission is to create and maintain **the best open source Python IDE** for scientists, engineers and data analysts that is both **powerful and easy to use**. Your donations sustain this effort and fund the features you're most interested in seeing in future versions. Would you give today?
+ Our mission is to develop the **best scientific Python IDE** that is **powerful and easy to use**.
+ Your donations are vital to sustaining this effort and funding the features you need. Will you give today?
- * All donations are stewarded by [NumFOCUS](https://numfocus.org/), a registered non-profit charitable organization.
- * Spyder is a fully independent, community-developed project, unaffiliated with Anaconda or other commercial companies.
+ * All donations are stewarded by [NumFOCUS](https://numfocus.org/), a registered non-profit charitable organization.
+ * Spyder is a community-developed project unaffiliated with Anaconda or commercial companies.
+
+ otherProjects:
+ title: Other Projects
projects:
- id: 0
@@ -20,7 +24,9 @@ projects:
content: |
Spyder’s continued development and maintenance is made possible by you, our user community\! Your contributions to Spyder as a whole have helped us fund developers, students and interns to contribute critical improvements, support key members of the team such as our web and interface designer, pay for critical web infrastructure, and fund outreach and community efforts to make sure we are doing the best we can to serve all of you!
button:
- text: Support Spyder
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 1
title: Smarter code completion
@@ -34,7 +40,9 @@ projects:
* Enhance our [current language server](https://github.com/python-lsp/python-lsp-server/) and/or use a more [powerful one](https://github.com/DetachHead/basedpyright) (similar to that used by VSCode) for completions.
* Connect the Editor to the IPython console to get completions and documentation from it in case they are not available through the language server.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 2
title: New Viewer pane
@@ -47,7 +55,9 @@ projects:
This would both greatly improve the development and data analysis experience for Spyder users, and also enable wider adoption of these visualization tools outside of the confines of Jupyter notebooks.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 3
title: Supercharge syntax highlighting
@@ -62,7 +72,9 @@ projects:
It has been challenging to implement this as the libraries Spyder has relied on for syntax detection and highlighting have not kept up with those used by many other editors. Your support would allow us to migrate to a modern, actively developed framework providing the same features you’ve come to expect in the most popular IDEs.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
- id: 4
title: Level-up the Variable Explorer
@@ -75,4 +87,6 @@ projects:
We'd like to address that by supporting a portable, streamlined method of object representation that is not limited by such a restriction. Alongside that, we’d also like to make saving and loading spydata files to restore your current session later more reliable and work on a wider variety of data types by using a more robust library for that task.
button:
- text: Support This Project
+ text: Donate now
+ secondaryButton:
+ text: Read more
\ No newline at end of file
diff --git a/src/lib/i18n/es-ES/donate.yaml b/src/lib/i18n/es-ES/donate.yaml
new file mode 100644
index 00000000..ad581cd3
--- /dev/null
+++ b/src/lib/i18n/es-ES/donate.yaml
@@ -0,0 +1,92 @@
+page:
+ title: Apóyanos
+ monthly: Mensual
+ oneTime: Una sola vez
+ back: Volver a la lista
+ supporters: Total de colaboradores
+ intro: |
+ Nuestra misión es desarrollar **el mejor IDE científico de Python** que sea **potente y fácil de usar**.
+ Tus donaciones son vitales para sostener este esfuerzo y financiar las características que necesitas. ¿Contribuirás hoy?
+
+ * Todas las donaciones son administradas por [NumFOCUS](https://numfocus.org/), una organización benéfica sin fines de lucro registrada.
+ * Spyder es un proyecto desarrollado por la comunidad sin afiliación con Anaconda o empresas comerciales.
+
+ otherProjects:
+ title: Otros Proyectos
+
+projects:
+ - id: 0
+ title: Apoyar a Spyder
+ collected: Balance disponible
+ separator: de
+ intro: >-
+ ¿Quieres apoyar el proyecto Spyder en su conjunto, con el dinero utilizado donde más se necesita? ¡Dona aquí!
+ content: |
+ El desarrollo y mantenimiento continuo de Spyder es posible gracias a ti, nuestra comunidad de usuarios\! Tus contribuciones a Spyder en general nos han ayudado a financiar desarrolladores, estudiantes y pasantes para contribuir con mejoras críticas, apoyar a miembros clave del equipo como nuestro diseñador de interfaces y web, pagar la infraestructura web crítica, y financiar esfuerzos de divulgación y comunidad para asegurarnos de que estamos haciendo lo mejor posible para servir a todos ustedes!
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 1
+ title: Autocompletado de código más inteligente
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ El autocompletado de código en el Editor de Spyder tiene mucho margen de mejora, y tenemos un camino claro para mejorarlos significativamente. ¡Ayúdanos a hacerlos de clase mundial!
+ content: |
+ El Editor de Spyder se beneficiaría enormemente de una muy necesaria revisión para proporcionar mejores autocompletados de código. Con tu apoyo podremos:
+
+ * Mejorar nuestro [servidor de lenguaje actual](https://github.com/python-lsp/python-lsp-server/) y/o usar uno [más potente](https://github.com/DetachHead/basedpyright) (similar al usado por VSCode) para autocompletados.
+ * Conectar el Editor a la consola IPython para obtener autocompletados y documentación en caso de que no estén disponibles a través del servidor de lenguaje.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 2
+ title: Nuevo panel de visualización
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ Las bibliotecas de visualización populares como Bokeh, Plotly o Altair actualmente solo funcionan en un entorno de notebook. Un nuevo panel de visualización permitiría interactuar con ellas directamente dentro de Spyder, sin necesidad de notebook.
+ content: |
+ Las bibliotecas de visualización como Bokeh, Plotly o Altair e interfaces como IPywidgets, Panel o Dash actualmente están diseñadas para funcionar solo en un entorno de notebook. Un nuevo panel de visualización abordaría esto empaquetando las bibliotecas Javascript necesarias para mostrar e interactuar con estos tipos de contenido desde Spyder.
+
+ Esto mejoraría enormemente la experiencia de desarrollo y análisis de datos para los usuarios de Spyder, y también permitiría una adopción más amplia de estas herramientas de visualización fuera de los límites de los notebooks de Jupyter.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 3
+ title: Potenciar el resaltado de sintaxis
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ Ayúdanos a implementar un resaltado de sintaxis semántico mejorado en el Editor, permitiendo que los argumentos de funciones, nombres de clases y funciones, y otros fragmentos especiales de código sean detectados y estilizados. Esto también conduciría a mejoras importantes en el panel Esquema de Spyder.
+ content: |
+ El resaltado de sintaxis semántico completo, la capacidad de colorear el código según su rol semántico, es una característica que nos han solicitado desde hace mucho tiempo. Agregar soporte para esto permitiría resaltar los argumentos de funciones, nombres de clases/funciones y otras construcciones en colores únicos, lo que mejoraría enormemente la legibilidad del código.
+
+ Además, permitiría que el panel Esquema pueda mostrar contenidos mucho más ricos y apropiados para cada archivo, facilitando la navegación.
+
+ Ha sido un desafío implementar esto ya que las bibliotecas en las que Spyder se ha basado para la detección y resaltado de sintaxis no se han mantenido al día con las utilizadas por muchos otros editores. Tu apoyo nos permitiría migrar a un marco moderno y en desarrollo activo que proporcione las mismas características que esperas en los IDE más populares.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
+
+ - id: 4
+ title: Mejorar el explorador de variables
+ collected: Recaudado hasta ahora
+ separator: de
+ intro: >-
+ Nos gustaría agregar soporte para ver objetos/tipos de datos personalizados en el Explorador de Variables sin necesidad de instalar todas sus bibliotecas correspondientes en el entorno de aplicación de Spyder, así como hacer que guardar y cargar sesiones sea mucho más robusto.
+ content: |
+ El Explorador de Variables es uno de los paneles más queridos en Spyder. Sin embargo, para inspeccionar cualquier objeto de una clase o tipo de datos personalizado, necesita tener las bibliotecas utilizadas para crearlo instaladas en el propio entorno de aplicación de Spyder. Esto es poco práctico, podría romper Spyder y está impedido por diseño con nuestros instaladores independientes recomendados.
+
+ Nos gustaría abordar esto mediante el soporte de un método portátil y simplificado de representación de objetos que no esté limitado por tal restricción. Junto con eso, también nos gustaría hacer que guardar y cargar archivos spydata para restaurar tu sesión actual más tarde sea más confiable y funcione en una variedad más amplia de tipos de datos utilizando una biblioteca más robusta para esa tarea.
+ button:
+ text: Donar ahora
+ secondaryButton:
+ text: Leer más
diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte
index 61ee3170..8eb70e25 100644
--- a/src/routes/about/+page.svelte
+++ b/src/routes/about/+page.svelte
@@ -111,7 +111,7 @@
tracking-tight
font-extralight
text-mine-shaft-600
- dark:text-mine-shaft-200 my-16 md:my-32"
+ dark:text-mine-shaft-200 my-16 xl:my-32"
>
{pageTitle}
diff --git a/src/routes/donate/+page.svelte b/src/routes/donate/+page.svelte
index 9ad524bd..d9b0f4d4 100644
--- a/src/routes/donate/+page.svelte
+++ b/src/routes/donate/+page.svelte
@@ -4,7 +4,9 @@
import { metadata } from "$lib/store";
import { _, json, locale } from "svelte-i18n";
+ import Button from "$lib/components/Button.svelte";
import Metadata from "$lib/components/Metadata.svelte";
+ import PaymentModal from "$lib/components/PaymentModal.svelte";
import ProjectCard from "$lib/components/ProjectCard.svelte";
import SvelteMarkdown from "svelte-markdown";
@@ -14,22 +16,44 @@
const totalDonations = data?.totalDonations ?? 0;
const pipelineDeals = data?.pipelineDeals ?? [];
+ // Modal state
+ let showModal = false;
+ let selectedProjectDonationLinkID = null;
+ let currencyOptions = { style: "currency", currency: "USD", maximumFractionDigits: 0 };
+
$: keywords = config.site?.keywords ?? [];
$: lastUpdated = data?.lastUpdated ? new Date(data.lastUpdated).toLocaleDateString($locale) : null;
- $: projects = Object.values(
+ $: allProjects = Object.values(
[...props.projects, ...$json("donate.projects")].reduce((acc, project) => {
acc[project.id] = acc[project.id] ? { ...acc[project.id], ...project } : project;
return acc;
}, {}),
);
+ // Separate spyder project from others
+ $: spyderProject = allProjects.find((project) => project.slug === "spyder");
+ $: otherProjects = allProjects
+ .filter((project) => project.slug !== "spyder")
+ .sort((a, b) => {
+ // Sort by total donations in descending order
+ const aDonations = a.donations?.total || 0;
+ const bDonations = b.donations?.total || 0;
+ return bDonations - aDonations;
+ });
+
$: values = {
totalDonations: `$${totalDonations.toLocaleString()}`,
dealsCount: pipelineDeals.length,
lastUpdated,
};
+ // Function to open donation modal
+ const openDonationModal = (donationLinkID) => {
+ selectedProjectDonationLinkID = donationLinkID;
+ showModal = true;
+ };
+
$: metadata.setMetadata({
title: `${$_("config.site.title")} | ${$_("donate.page.title")}`,
description: $_("config.site.description"),
@@ -41,25 +65,25 @@
{project.donations.total.toLocaleString($locale, currencyOptions)} - {/if} - {#if project.donationGoal} - {project.donations.total.toLocaleString($locale, currencyOptions)} - {project.separator} - {project.donationGoal.toLocaleString($locale, currencyOptions)} -
+
{/if}
{#if project.intro}
+
+
+ {#if project.donationLinkID && onDonate}
+
+ {project.collected}:
+ {#if project.donationGoal}
+
+ {project.donations.total.toLocaleString($locale, currencyOptions)}
+ {project.separator}
+ {project.donationGoal.toLocaleString($locale, currencyOptions)}
+ {:else}
+
+
+ {project.donations.total.toLocaleString($locale, currencyOptions)}
+
+ {/if}
+
+ {#if project.donationGoal}
+
+
+
+
+ {/if}
+ {project.intro}
{/if}
- {#if project.button && href}
+ {#if project.secondaryButton && href}
-
+
{/if}
+
+
+
+
+
diff --git a/static/data/github-contributors.json b/static/data/github-contributors.json
index e1fc8732..d0315e19 100644
--- a/static/data/github-contributors.json
+++ b/static/data/github-contributors.json
@@ -19,7 +19,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 14428
+ "contributions": 14581
},
{
"login": "dalthviz",
@@ -41,7 +41,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 2471
+ "contributions": 2584
},
{
"login": "PierreRaybaut",
@@ -129,7 +129,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 985
+ "contributions": 1008
},
{
"login": "jnsebgosselin",
@@ -239,7 +239,29 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 385
+ "contributions": 403
+ },
+ {
+ "login": "jitseniesen",
+ "id": 7941918,
+ "node_id": "MDQ6VXNlcjc5NDE5MTg=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7941918?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/jitseniesen",
+ "html_url": "https://github.com/jitseniesen",
+ "followers_url": "https://api.github.com/users/jitseniesen/followers",
+ "following_url": "https://api.github.com/users/jitseniesen/following{/other_user}",
+ "gists_url": "https://api.github.com/users/jitseniesen/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/jitseniesen/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/jitseniesen/subscriptions",
+ "organizations_url": "https://api.github.com/users/jitseniesen/orgs",
+ "repos_url": "https://api.github.com/users/jitseniesen/repos",
+ "events_url": "https://api.github.com/users/jitseniesen/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/jitseniesen/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 324
},
{
"login": "juanis2112",
@@ -285,28 +307,6 @@
"site_admin": false,
"contributions": 304
},
- {
- "login": "jitseniesen",
- "id": 7941918,
- "node_id": "MDQ6VXNlcjc5NDE5MTg=",
- "avatar_url": "https://avatars.githubusercontent.com/u/7941918?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jitseniesen",
- "html_url": "https://github.com/jitseniesen",
- "followers_url": "https://api.github.com/users/jitseniesen/followers",
- "following_url": "https://api.github.com/users/jitseniesen/following{/other_user}",
- "gists_url": "https://api.github.com/users/jitseniesen/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jitseniesen/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jitseniesen/subscriptions",
- "organizations_url": "https://api.github.com/users/jitseniesen/orgs",
- "repos_url": "https://api.github.com/users/jitseniesen/repos",
- "events_url": "https://api.github.com/users/jitseniesen/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jitseniesen/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 297
- },
{
"login": "hlouzada",
"id": 5204788,
@@ -327,7 +327,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 202
+ "contributions": 277
},
{
"login": "SylvainCorlay",
@@ -371,7 +371,7 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 176
+ "contributions": 178
},
{
"login": "bcolsen",
@@ -395,6 +395,28 @@
"site_admin": false,
"contributions": 136
},
+ {
+ "login": "jsbautista",
+ "id": 42411448,
+ "node_id": "MDQ6VXNlcjQyNDExNDQ4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/42411448?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/jsbautista",
+ "html_url": "https://github.com/jsbautista",
+ "followers_url": "https://api.github.com/users/jsbautista/followers",
+ "following_url": "https://api.github.com/users/jsbautista/following{/other_user}",
+ "gists_url": "https://api.github.com/users/jsbautista/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/jsbautista/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/jsbautista/subscriptions",
+ "organizations_url": "https://api.github.com/users/jsbautista/orgs",
+ "repos_url": "https://api.github.com/users/jsbautista/repos",
+ "events_url": "https://api.github.com/users/jsbautista/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/jsbautista/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 121
+ },
{
"login": "techtonik",
"id": 515889,
@@ -417,6 +439,28 @@
"site_admin": false,
"contributions": 119
},
+ {
+ "login": "rear1019",
+ "id": 33811443,
+ "node_id": "MDQ6VXNlcjMzODExNDQz",
+ "avatar_url": "https://avatars.githubusercontent.com/u/33811443?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/rear1019",
+ "html_url": "https://github.com/rear1019",
+ "followers_url": "https://api.github.com/users/rear1019/followers",
+ "following_url": "https://api.github.com/users/rear1019/following{/other_user}",
+ "gists_url": "https://api.github.com/users/rear1019/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/rear1019/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/rear1019/subscriptions",
+ "organizations_url": "https://api.github.com/users/rear1019/orgs",
+ "repos_url": "https://api.github.com/users/rear1019/repos",
+ "events_url": "https://api.github.com/users/rear1019/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/rear1019/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 117
+ },
{
"login": "mariacamilarg",
"id": 3608776,
@@ -439,28 +483,6 @@
"site_admin": false,
"contributions": 110
},
- {
- "login": "rear1019",
- "id": 33811443,
- "node_id": "MDQ6VXNlcjMzODExNDQz",
- "avatar_url": "https://avatars.githubusercontent.com/u/33811443?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/rear1019",
- "html_url": "https://github.com/rear1019",
- "followers_url": "https://api.github.com/users/rear1019/followers",
- "following_url": "https://api.github.com/users/rear1019/following{/other_user}",
- "gists_url": "https://api.github.com/users/rear1019/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/rear1019/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/rear1019/subscriptions",
- "organizations_url": "https://api.github.com/users/rear1019/orgs",
- "repos_url": "https://api.github.com/users/rear1019/repos",
- "events_url": "https://api.github.com/users/rear1019/events{/privacy}",
- "received_events_url": "https://api.github.com/users/rear1019/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 109
- },
{
"login": "ok97465",
"id": 22970578,
@@ -483,28 +505,6 @@
"site_admin": false,
"contributions": 98
},
- {
- "login": "jsbautista",
- "id": 42411448,
- "node_id": "MDQ6VXNlcjQyNDExNDQ4",
- "avatar_url": "https://avatars.githubusercontent.com/u/42411448?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jsbautista",
- "html_url": "https://github.com/jsbautista",
- "followers_url": "https://api.github.com/users/jsbautista/followers",
- "following_url": "https://api.github.com/users/jsbautista/following{/other_user}",
- "gists_url": "https://api.github.com/users/jsbautista/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jsbautista/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jsbautista/subscriptions",
- "organizations_url": "https://api.github.com/users/jsbautista/orgs",
- "repos_url": "https://api.github.com/users/jsbautista/repos",
- "events_url": "https://api.github.com/users/jsbautista/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jsbautista/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 95
- },
{
"login": "dhoegh",
"id": 7973946,
@@ -858,22 +858,22 @@
"contributions": 27
},
{
- "login": "pwoosam",
- "id": 18713517,
- "node_id": "MDQ6VXNlcjE4NzEzNTE3",
- "avatar_url": "https://avatars.githubusercontent.com/u/18713517?v=4",
+ "login": "skjerns",
+ "id": 14980558,
+ "node_id": "MDQ6VXNlcjE0OTgwNTU4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14980558?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/pwoosam",
- "html_url": "https://github.com/pwoosam",
- "followers_url": "https://api.github.com/users/pwoosam/followers",
- "following_url": "https://api.github.com/users/pwoosam/following{/other_user}",
- "gists_url": "https://api.github.com/users/pwoosam/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/pwoosam/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/pwoosam/subscriptions",
- "organizations_url": "https://api.github.com/users/pwoosam/orgs",
- "repos_url": "https://api.github.com/users/pwoosam/repos",
- "events_url": "https://api.github.com/users/pwoosam/events{/privacy}",
- "received_events_url": "https://api.github.com/users/pwoosam/received_events",
+ "url": "https://api.github.com/users/skjerns",
+ "html_url": "https://github.com/skjerns",
+ "followers_url": "https://api.github.com/users/skjerns/followers",
+ "following_url": "https://api.github.com/users/skjerns/following{/other_user}",
+ "gists_url": "https://api.github.com/users/skjerns/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/skjerns/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/skjerns/subscriptions",
+ "organizations_url": "https://api.github.com/users/skjerns/orgs",
+ "repos_url": "https://api.github.com/users/skjerns/repos",
+ "events_url": "https://api.github.com/users/skjerns/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/skjerns/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -902,22 +902,22 @@
"contributions": 22
},
{
- "login": "skjerns",
- "id": 14980558,
- "node_id": "MDQ6VXNlcjE0OTgwNTU4",
- "avatar_url": "https://avatars.githubusercontent.com/u/14980558?v=4",
+ "login": "pwoosam",
+ "id": 18713517,
+ "node_id": "MDQ6VXNlcjE4NzEzNTE3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/18713517?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/skjerns",
- "html_url": "https://github.com/skjerns",
- "followers_url": "https://api.github.com/users/skjerns/followers",
- "following_url": "https://api.github.com/users/skjerns/following{/other_user}",
- "gists_url": "https://api.github.com/users/skjerns/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/skjerns/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/skjerns/subscriptions",
- "organizations_url": "https://api.github.com/users/skjerns/orgs",
- "repos_url": "https://api.github.com/users/skjerns/repos",
- "events_url": "https://api.github.com/users/skjerns/events{/privacy}",
- "received_events_url": "https://api.github.com/users/skjerns/received_events",
+ "url": "https://api.github.com/users/pwoosam",
+ "html_url": "https://github.com/pwoosam",
+ "followers_url": "https://api.github.com/users/pwoosam/followers",
+ "following_url": "https://api.github.com/users/pwoosam/following{/other_user}",
+ "gists_url": "https://api.github.com/users/pwoosam/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/pwoosam/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/pwoosam/subscriptions",
+ "organizations_url": "https://api.github.com/users/pwoosam/orgs",
+ "repos_url": "https://api.github.com/users/pwoosam/repos",
+ "events_url": "https://api.github.com/users/pwoosam/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/pwoosam/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -1009,6 +1009,28 @@
"type": "User",
"user_view_type": "public",
"site_admin": false,
+ "contributions": 18
+ },
+ {
+ "login": "thepycoder",
+ "id": 11781950,
+ "node_id": "MDQ6VXNlcjExNzgxOTUw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/11781950?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/thepycoder",
+ "html_url": "https://github.com/thepycoder",
+ "followers_url": "https://api.github.com/users/thepycoder/followers",
+ "following_url": "https://api.github.com/users/thepycoder/following{/other_user}",
+ "gists_url": "https://api.github.com/users/thepycoder/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/thepycoder/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/thepycoder/subscriptions",
+ "organizations_url": "https://api.github.com/users/thepycoder/orgs",
+ "repos_url": "https://api.github.com/users/thepycoder/repos",
+ "events_url": "https://api.github.com/users/thepycoder/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/thepycoder/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
"contributions": 17
},
{
@@ -1033,28 +1055,6 @@
"site_admin": false,
"contributions": 17
},
- {
- "login": "thepycoder",
- "id": 11781950,
- "node_id": "MDQ6VXNlcjExNzgxOTUw",
- "avatar_url": "https://avatars.githubusercontent.com/u/11781950?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/thepycoder",
- "html_url": "https://github.com/thepycoder",
- "followers_url": "https://api.github.com/users/thepycoder/followers",
- "following_url": "https://api.github.com/users/thepycoder/following{/other_user}",
- "gists_url": "https://api.github.com/users/thepycoder/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/thepycoder/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/thepycoder/subscriptions",
- "organizations_url": "https://api.github.com/users/thepycoder/orgs",
- "repos_url": "https://api.github.com/users/thepycoder/repos",
- "events_url": "https://api.github.com/users/thepycoder/events{/privacy}",
- "received_events_url": "https://api.github.com/users/thepycoder/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 17
- },
{
"login": "sohnishi",
"id": 20334211,
@@ -1099,28 +1099,6 @@
"site_admin": false,
"contributions": 13
},
- {
- "login": "larsoner",
- "id": 2365790,
- "node_id": "MDQ6VXNlcjIzNjU3OTA=",
- "avatar_url": "https://avatars.githubusercontent.com/u/2365790?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/larsoner",
- "html_url": "https://github.com/larsoner",
- "followers_url": "https://api.github.com/users/larsoner/followers",
- "following_url": "https://api.github.com/users/larsoner/following{/other_user}",
- "gists_url": "https://api.github.com/users/larsoner/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/larsoner/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/larsoner/subscriptions",
- "organizations_url": "https://api.github.com/users/larsoner/orgs",
- "repos_url": "https://api.github.com/users/larsoner/repos",
- "events_url": "https://api.github.com/users/larsoner/events{/privacy}",
- "received_events_url": "https://api.github.com/users/larsoner/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 12
- },
{
"login": "JGoutin",
"id": 13535894,
@@ -1166,11 +1144,33 @@
"contributions": 12
},
{
- "login": "rhkarls",
- "id": 2330659,
- "node_id": "MDQ6VXNlcjIzMzA2NTk=",
- "avatar_url": "https://avatars.githubusercontent.com/u/2330659?v=4",
- "gravatar_id": "",
+ "login": "larsoner",
+ "id": 2365790,
+ "node_id": "MDQ6VXNlcjIzNjU3OTA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2365790?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/larsoner",
+ "html_url": "https://github.com/larsoner",
+ "followers_url": "https://api.github.com/users/larsoner/followers",
+ "following_url": "https://api.github.com/users/larsoner/following{/other_user}",
+ "gists_url": "https://api.github.com/users/larsoner/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/larsoner/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/larsoner/subscriptions",
+ "organizations_url": "https://api.github.com/users/larsoner/orgs",
+ "repos_url": "https://api.github.com/users/larsoner/repos",
+ "events_url": "https://api.github.com/users/larsoner/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/larsoner/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 12
+ },
+ {
+ "login": "rhkarls",
+ "id": 2330659,
+ "node_id": "MDQ6VXNlcjIzMzA2NTk=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2330659?v=4",
+ "gravatar_id": "",
"url": "https://api.github.com/users/rhkarls",
"html_url": "https://github.com/rhkarls",
"followers_url": "https://api.github.com/users/rhkarls/followers",
@@ -2728,22 +2728,22 @@
"contributions": 3
},
{
- "login": "blackPantherOS",
- "id": 12883566,
- "node_id": "MDQ6VXNlcjEyODgzNTY2",
- "avatar_url": "https://avatars.githubusercontent.com/u/12883566?v=4",
+ "login": "StefRe",
+ "id": 19879328,
+ "node_id": "MDQ6VXNlcjE5ODc5MzI4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/19879328?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/blackPantherOS",
- "html_url": "https://github.com/blackPantherOS",
- "followers_url": "https://api.github.com/users/blackPantherOS/followers",
- "following_url": "https://api.github.com/users/blackPantherOS/following{/other_user}",
- "gists_url": "https://api.github.com/users/blackPantherOS/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/blackPantherOS/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/blackPantherOS/subscriptions",
- "organizations_url": "https://api.github.com/users/blackPantherOS/orgs",
- "repos_url": "https://api.github.com/users/blackPantherOS/repos",
- "events_url": "https://api.github.com/users/blackPantherOS/events{/privacy}",
- "received_events_url": "https://api.github.com/users/blackPantherOS/received_events",
+ "url": "https://api.github.com/users/StefRe",
+ "html_url": "https://github.com/StefRe",
+ "followers_url": "https://api.github.com/users/StefRe/followers",
+ "following_url": "https://api.github.com/users/StefRe/following{/other_user}",
+ "gists_url": "https://api.github.com/users/StefRe/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/StefRe/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/StefRe/subscriptions",
+ "organizations_url": "https://api.github.com/users/StefRe/orgs",
+ "repos_url": "https://api.github.com/users/StefRe/repos",
+ "events_url": "https://api.github.com/users/StefRe/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/StefRe/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -2925,28 +2925,6 @@
"site_admin": false,
"contributions": 2
},
- {
- "login": "battaglia01",
- "id": 1020594,
- "node_id": "MDQ6VXNlcjEwMjA1OTQ=",
- "avatar_url": "https://avatars.githubusercontent.com/u/1020594?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/battaglia01",
- "html_url": "https://github.com/battaglia01",
- "followers_url": "https://api.github.com/users/battaglia01/followers",
- "following_url": "https://api.github.com/users/battaglia01/following{/other_user}",
- "gists_url": "https://api.github.com/users/battaglia01/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/battaglia01/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/battaglia01/subscriptions",
- "organizations_url": "https://api.github.com/users/battaglia01/orgs",
- "repos_url": "https://api.github.com/users/battaglia01/repos",
- "events_url": "https://api.github.com/users/battaglia01/events{/privacy}",
- "received_events_url": "https://api.github.com/users/battaglia01/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
{
"login": "stephenshank",
"id": 8673708,
@@ -2970,132 +2948,22 @@
"contributions": 2
},
{
- "login": "cbrnr",
- "id": 4377312,
- "node_id": "MDQ6VXNlcjQzNzczMTI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/4377312?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/cbrnr",
- "html_url": "https://github.com/cbrnr",
- "followers_url": "https://api.github.com/users/cbrnr/followers",
- "following_url": "https://api.github.com/users/cbrnr/following{/other_user}",
- "gists_url": "https://api.github.com/users/cbrnr/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/cbrnr/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/cbrnr/subscriptions",
- "organizations_url": "https://api.github.com/users/cbrnr/orgs",
- "repos_url": "https://api.github.com/users/cbrnr/repos",
- "events_url": "https://api.github.com/users/cbrnr/events{/privacy}",
- "received_events_url": "https://api.github.com/users/cbrnr/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "Mte90",
- "id": 403283,
- "node_id": "MDQ6VXNlcjQwMzI4Mw==",
- "avatar_url": "https://avatars.githubusercontent.com/u/403283?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Mte90",
- "html_url": "https://github.com/Mte90",
- "followers_url": "https://api.github.com/users/Mte90/followers",
- "following_url": "https://api.github.com/users/Mte90/following{/other_user}",
- "gists_url": "https://api.github.com/users/Mte90/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Mte90/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Mte90/subscriptions",
- "organizations_url": "https://api.github.com/users/Mte90/orgs",
- "repos_url": "https://api.github.com/users/Mte90/repos",
- "events_url": "https://api.github.com/users/Mte90/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Mte90/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "estraiton",
- "id": 32228416,
- "node_id": "MDQ6VXNlcjMyMjI4NDE2",
- "avatar_url": "https://avatars.githubusercontent.com/u/32228416?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/estraiton",
- "html_url": "https://github.com/estraiton",
- "followers_url": "https://api.github.com/users/estraiton/followers",
- "following_url": "https://api.github.com/users/estraiton/following{/other_user}",
- "gists_url": "https://api.github.com/users/estraiton/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/estraiton/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/estraiton/subscriptions",
- "organizations_url": "https://api.github.com/users/estraiton/orgs",
- "repos_url": "https://api.github.com/users/estraiton/repos",
- "events_url": "https://api.github.com/users/estraiton/events{/privacy}",
- "received_events_url": "https://api.github.com/users/estraiton/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "jfunez",
- "id": 805749,
- "node_id": "MDQ6VXNlcjgwNTc0OQ==",
- "avatar_url": "https://avatars.githubusercontent.com/u/805749?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jfunez",
- "html_url": "https://github.com/jfunez",
- "followers_url": "https://api.github.com/users/jfunez/followers",
- "following_url": "https://api.github.com/users/jfunez/following{/other_user}",
- "gists_url": "https://api.github.com/users/jfunez/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jfunez/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jfunez/subscriptions",
- "organizations_url": "https://api.github.com/users/jfunez/orgs",
- "repos_url": "https://api.github.com/users/jfunez/repos",
- "events_url": "https://api.github.com/users/jfunez/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jfunez/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "kevinsmia1939",
- "id": 11407922,
- "node_id": "MDQ6VXNlcjExNDA3OTIy",
- "avatar_url": "https://avatars.githubusercontent.com/u/11407922?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/kevinsmia1939",
- "html_url": "https://github.com/kevinsmia1939",
- "followers_url": "https://api.github.com/users/kevinsmia1939/followers",
- "following_url": "https://api.github.com/users/kevinsmia1939/following{/other_user}",
- "gists_url": "https://api.github.com/users/kevinsmia1939/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/kevinsmia1939/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/kevinsmia1939/subscriptions",
- "organizations_url": "https://api.github.com/users/kevinsmia1939/orgs",
- "repos_url": "https://api.github.com/users/kevinsmia1939/repos",
- "events_url": "https://api.github.com/users/kevinsmia1939/events{/privacy}",
- "received_events_url": "https://api.github.com/users/kevinsmia1939/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2
- },
- {
- "login": "StefRe",
- "id": 19879328,
- "node_id": "MDQ6VXNlcjE5ODc5MzI4",
- "avatar_url": "https://avatars.githubusercontent.com/u/19879328?v=4",
+ "login": "battaglia01",
+ "id": 1020594,
+ "node_id": "MDQ6VXNlcjEwMjA1OTQ=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1020594?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/StefRe",
- "html_url": "https://github.com/StefRe",
- "followers_url": "https://api.github.com/users/StefRe/followers",
- "following_url": "https://api.github.com/users/StefRe/following{/other_user}",
- "gists_url": "https://api.github.com/users/StefRe/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/StefRe/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/StefRe/subscriptions",
- "organizations_url": "https://api.github.com/users/StefRe/orgs",
- "repos_url": "https://api.github.com/users/StefRe/repos",
- "events_url": "https://api.github.com/users/StefRe/events{/privacy}",
- "received_events_url": "https://api.github.com/users/StefRe/received_events",
+ "url": "https://api.github.com/users/battaglia01",
+ "html_url": "https://github.com/battaglia01",
+ "followers_url": "https://api.github.com/users/battaglia01/followers",
+ "following_url": "https://api.github.com/users/battaglia01/following{/other_user}",
+ "gists_url": "https://api.github.com/users/battaglia01/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/battaglia01/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/battaglia01/subscriptions",
+ "organizations_url": "https://api.github.com/users/battaglia01/orgs",
+ "repos_url": "https://api.github.com/users/battaglia01/repos",
+ "events_url": "https://api.github.com/users/battaglia01/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/battaglia01/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3146,22 +3014,22 @@
"contributions": 2
},
{
- "login": "ximion",
- "id": 417468,
- "node_id": "MDQ6VXNlcjQxNzQ2OA==",
- "avatar_url": "https://avatars.githubusercontent.com/u/417468?v=4",
+ "login": "bioruffo",
+ "id": 24945128,
+ "node_id": "MDQ6VXNlcjI0OTQ1MTI4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/24945128?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/ximion",
- "html_url": "https://github.com/ximion",
- "followers_url": "https://api.github.com/users/ximion/followers",
- "following_url": "https://api.github.com/users/ximion/following{/other_user}",
- "gists_url": "https://api.github.com/users/ximion/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ximion/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ximion/subscriptions",
- "organizations_url": "https://api.github.com/users/ximion/orgs",
- "repos_url": "https://api.github.com/users/ximion/repos",
- "events_url": "https://api.github.com/users/ximion/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ximion/received_events",
+ "url": "https://api.github.com/users/bioruffo",
+ "html_url": "https://github.com/bioruffo",
+ "followers_url": "https://api.github.com/users/bioruffo/followers",
+ "following_url": "https://api.github.com/users/bioruffo/following{/other_user}",
+ "gists_url": "https://api.github.com/users/bioruffo/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/bioruffo/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/bioruffo/subscriptions",
+ "organizations_url": "https://api.github.com/users/bioruffo/orgs",
+ "repos_url": "https://api.github.com/users/bioruffo/repos",
+ "events_url": "https://api.github.com/users/bioruffo/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/bioruffo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3190,158 +3058,158 @@
"contributions": 2
},
{
- "login": "bioruffo",
- "id": 24945128,
- "node_id": "MDQ6VXNlcjI0OTQ1MTI4",
- "avatar_url": "https://avatars.githubusercontent.com/u/24945128?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/bioruffo",
- "html_url": "https://github.com/bioruffo",
- "followers_url": "https://api.github.com/users/bioruffo/followers",
- "following_url": "https://api.github.com/users/bioruffo/following{/other_user}",
- "gists_url": "https://api.github.com/users/bioruffo/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/bioruffo/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/bioruffo/subscriptions",
- "organizations_url": "https://api.github.com/users/bioruffo/orgs",
- "repos_url": "https://api.github.com/users/bioruffo/repos",
- "events_url": "https://api.github.com/users/bioruffo/events{/privacy}",
- "received_events_url": "https://api.github.com/users/bioruffo/received_events",
+ "login": "ximion",
+ "id": 417468,
+ "node_id": "MDQ6VXNlcjQxNzQ2OA==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/417468?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/ximion",
+ "html_url": "https://github.com/ximion",
+ "followers_url": "https://api.github.com/users/ximion/followers",
+ "following_url": "https://api.github.com/users/ximion/following{/other_user}",
+ "gists_url": "https://api.github.com/users/ximion/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/ximion/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/ximion/subscriptions",
+ "organizations_url": "https://api.github.com/users/ximion/orgs",
+ "repos_url": "https://api.github.com/users/ximion/repos",
+ "events_url": "https://api.github.com/users/ximion/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/ximion/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
- "login": "tlunet",
- "id": 12183839,
- "node_id": "MDQ6VXNlcjEyMTgzODM5",
- "avatar_url": "https://avatars.githubusercontent.com/u/12183839?v=4",
+ "login": "kevinsmia1939",
+ "id": 11407922,
+ "node_id": "MDQ6VXNlcjExNDA3OTIy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/11407922?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/tlunet",
- "html_url": "https://github.com/tlunet",
- "followers_url": "https://api.github.com/users/tlunet/followers",
- "following_url": "https://api.github.com/users/tlunet/following{/other_user}",
- "gists_url": "https://api.github.com/users/tlunet/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tlunet/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tlunet/subscriptions",
- "organizations_url": "https://api.github.com/users/tlunet/orgs",
- "repos_url": "https://api.github.com/users/tlunet/repos",
- "events_url": "https://api.github.com/users/tlunet/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tlunet/received_events",
+ "url": "https://api.github.com/users/kevinsmia1939",
+ "html_url": "https://github.com/kevinsmia1939",
+ "followers_url": "https://api.github.com/users/kevinsmia1939/followers",
+ "following_url": "https://api.github.com/users/kevinsmia1939/following{/other_user}",
+ "gists_url": "https://api.github.com/users/kevinsmia1939/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/kevinsmia1939/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/kevinsmia1939/subscriptions",
+ "organizations_url": "https://api.github.com/users/kevinsmia1939/orgs",
+ "repos_url": "https://api.github.com/users/kevinsmia1939/repos",
+ "events_url": "https://api.github.com/users/kevinsmia1939/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/kevinsmia1939/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "tovogt",
- "id": 57705593,
- "node_id": "MDQ6VXNlcjU3NzA1NTkz",
- "avatar_url": "https://avatars.githubusercontent.com/u/57705593?v=4",
+ "login": "jfunez",
+ "id": 805749,
+ "node_id": "MDQ6VXNlcjgwNTc0OQ==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/805749?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/tovogt",
- "html_url": "https://github.com/tovogt",
- "followers_url": "https://api.github.com/users/tovogt/followers",
- "following_url": "https://api.github.com/users/tovogt/following{/other_user}",
- "gists_url": "https://api.github.com/users/tovogt/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tovogt/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tovogt/subscriptions",
- "organizations_url": "https://api.github.com/users/tovogt/orgs",
- "repos_url": "https://api.github.com/users/tovogt/repos",
- "events_url": "https://api.github.com/users/tovogt/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tovogt/received_events",
+ "url": "https://api.github.com/users/jfunez",
+ "html_url": "https://github.com/jfunez",
+ "followers_url": "https://api.github.com/users/jfunez/followers",
+ "following_url": "https://api.github.com/users/jfunez/following{/other_user}",
+ "gists_url": "https://api.github.com/users/jfunez/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/jfunez/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/jfunez/subscriptions",
+ "organizations_url": "https://api.github.com/users/jfunez/orgs",
+ "repos_url": "https://api.github.com/users/jfunez/repos",
+ "events_url": "https://api.github.com/users/jfunez/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/jfunez/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "Ajax-Light",
- "id": 54140487,
- "node_id": "MDQ6VXNlcjU0MTQwNDg3",
- "avatar_url": "https://avatars.githubusercontent.com/u/54140487?v=4",
+ "login": "estraiton",
+ "id": 32228416,
+ "node_id": "MDQ6VXNlcjMyMjI4NDE2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/32228416?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/Ajax-Light",
- "html_url": "https://github.com/Ajax-Light",
- "followers_url": "https://api.github.com/users/Ajax-Light/followers",
- "following_url": "https://api.github.com/users/Ajax-Light/following{/other_user}",
- "gists_url": "https://api.github.com/users/Ajax-Light/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Ajax-Light/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Ajax-Light/subscriptions",
- "organizations_url": "https://api.github.com/users/Ajax-Light/orgs",
- "repos_url": "https://api.github.com/users/Ajax-Light/repos",
- "events_url": "https://api.github.com/users/Ajax-Light/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Ajax-Light/received_events",
+ "url": "https://api.github.com/users/estraiton",
+ "html_url": "https://github.com/estraiton",
+ "followers_url": "https://api.github.com/users/estraiton/followers",
+ "following_url": "https://api.github.com/users/estraiton/following{/other_user}",
+ "gists_url": "https://api.github.com/users/estraiton/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/estraiton/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/estraiton/subscriptions",
+ "organizations_url": "https://api.github.com/users/estraiton/orgs",
+ "repos_url": "https://api.github.com/users/estraiton/repos",
+ "events_url": "https://api.github.com/users/estraiton/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/estraiton/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "Virinas-code",
- "id": 61283052,
- "node_id": "MDQ6VXNlcjYxMjgzMDUy",
- "avatar_url": "https://avatars.githubusercontent.com/u/61283052?v=4",
+ "login": "Mte90",
+ "id": 403283,
+ "node_id": "MDQ6VXNlcjQwMzI4Mw==",
+ "avatar_url": "https://avatars.githubusercontent.com/u/403283?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/Virinas-code",
- "html_url": "https://github.com/Virinas-code",
- "followers_url": "https://api.github.com/users/Virinas-code/followers",
- "following_url": "https://api.github.com/users/Virinas-code/following{/other_user}",
- "gists_url": "https://api.github.com/users/Virinas-code/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Virinas-code/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Virinas-code/subscriptions",
- "organizations_url": "https://api.github.com/users/Virinas-code/orgs",
- "repos_url": "https://api.github.com/users/Virinas-code/repos",
- "events_url": "https://api.github.com/users/Virinas-code/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Virinas-code/received_events",
+ "url": "https://api.github.com/users/Mte90",
+ "html_url": "https://github.com/Mte90",
+ "followers_url": "https://api.github.com/users/Mte90/followers",
+ "following_url": "https://api.github.com/users/Mte90/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Mte90/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Mte90/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Mte90/subscriptions",
+ "organizations_url": "https://api.github.com/users/Mte90/orgs",
+ "repos_url": "https://api.github.com/users/Mte90/repos",
+ "events_url": "https://api.github.com/users/Mte90/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Mte90/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "alexfargus",
- "id": 1611282,
- "node_id": "MDQ6VXNlcjE2MTEyODI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/1611282?v=4",
+ "login": "cbrnr",
+ "id": 4377312,
+ "node_id": "MDQ6VXNlcjQzNzczMTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4377312?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/alexfargus",
- "html_url": "https://github.com/alexfargus",
- "followers_url": "https://api.github.com/users/alexfargus/followers",
- "following_url": "https://api.github.com/users/alexfargus/following{/other_user}",
- "gists_url": "https://api.github.com/users/alexfargus/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/alexfargus/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/alexfargus/subscriptions",
- "organizations_url": "https://api.github.com/users/alexfargus/orgs",
- "repos_url": "https://api.github.com/users/alexfargus/repos",
- "events_url": "https://api.github.com/users/alexfargus/events{/privacy}",
- "received_events_url": "https://api.github.com/users/alexfargus/received_events",
+ "url": "https://api.github.com/users/cbrnr",
+ "html_url": "https://github.com/cbrnr",
+ "followers_url": "https://api.github.com/users/cbrnr/followers",
+ "following_url": "https://api.github.com/users/cbrnr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/cbrnr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/cbrnr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/cbrnr/subscriptions",
+ "organizations_url": "https://api.github.com/users/cbrnr/orgs",
+ "repos_url": "https://api.github.com/users/cbrnr/repos",
+ "events_url": "https://api.github.com/users/cbrnr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/cbrnr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
- "login": "alfonsotwr",
- "id": 64971658,
- "node_id": "MDQ6VXNlcjY0OTcxNjU4",
- "avatar_url": "https://avatars.githubusercontent.com/u/64971658?v=4",
+ "login": "blackPantherOS",
+ "id": 12883566,
+ "node_id": "MDQ6VXNlcjEyODgzNTY2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12883566?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/alfonsotwr",
- "html_url": "https://github.com/alfonsotwr",
- "followers_url": "https://api.github.com/users/alfonsotwr/followers",
- "following_url": "https://api.github.com/users/alfonsotwr/following{/other_user}",
- "gists_url": "https://api.github.com/users/alfonsotwr/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/alfonsotwr/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/alfonsotwr/subscriptions",
- "organizations_url": "https://api.github.com/users/alfonsotwr/orgs",
- "repos_url": "https://api.github.com/users/alfonsotwr/repos",
- "events_url": "https://api.github.com/users/alfonsotwr/events{/privacy}",
- "received_events_url": "https://api.github.com/users/alfonsotwr/received_events",
+ "url": "https://api.github.com/users/blackPantherOS",
+ "html_url": "https://github.com/blackPantherOS",
+ "followers_url": "https://api.github.com/users/blackPantherOS/followers",
+ "following_url": "https://api.github.com/users/blackPantherOS/following{/other_user}",
+ "gists_url": "https://api.github.com/users/blackPantherOS/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/blackPantherOS/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/blackPantherOS/subscriptions",
+ "organizations_url": "https://api.github.com/users/blackPantherOS/orgs",
+ "repos_url": "https://api.github.com/users/blackPantherOS/repos",
+ "events_url": "https://api.github.com/users/blackPantherOS/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/blackPantherOS/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
- "contributions": 1
+ "contributions": 2
},
{
"login": "simonleetheprogrammer",
@@ -3365,28 +3233,6 @@
"site_admin": false,
"contributions": 1
},
- {
- "login": "wojnilowicz",
- "id": 22069602,
- "node_id": "MDQ6VXNlcjIyMDY5NjAy",
- "avatar_url": "https://avatars.githubusercontent.com/u/22069602?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/wojnilowicz",
- "html_url": "https://github.com/wojnilowicz",
- "followers_url": "https://api.github.com/users/wojnilowicz/followers",
- "following_url": "https://api.github.com/users/wojnilowicz/following{/other_user}",
- "gists_url": "https://api.github.com/users/wojnilowicz/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/wojnilowicz/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/wojnilowicz/subscriptions",
- "organizations_url": "https://api.github.com/users/wojnilowicz/orgs",
- "repos_url": "https://api.github.com/users/wojnilowicz/repos",
- "events_url": "https://api.github.com/users/wojnilowicz/events{/privacy}",
- "received_events_url": "https://api.github.com/users/wojnilowicz/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1
- },
{
"login": "azure-pipelines[bot]",
"id": 36771401,
@@ -3520,176 +3366,330 @@
"contributions": 1
},
{
- "login": "dzosz",
- "id": 13596691,
- "node_id": "MDQ6VXNlcjEzNTk2Njkx",
- "avatar_url": "https://avatars.githubusercontent.com/u/13596691?v=4",
+ "login": "wojnilowicz",
+ "id": 22069602,
+ "node_id": "MDQ6VXNlcjIyMDY5NjAy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/22069602?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/dzosz",
- "html_url": "https://github.com/dzosz",
- "followers_url": "https://api.github.com/users/dzosz/followers",
- "following_url": "https://api.github.com/users/dzosz/following{/other_user}",
- "gists_url": "https://api.github.com/users/dzosz/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/dzosz/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/dzosz/subscriptions",
- "organizations_url": "https://api.github.com/users/dzosz/orgs",
- "repos_url": "https://api.github.com/users/dzosz/repos",
- "events_url": "https://api.github.com/users/dzosz/events{/privacy}",
- "received_events_url": "https://api.github.com/users/dzosz/received_events",
+ "url": "https://api.github.com/users/wojnilowicz",
+ "html_url": "https://github.com/wojnilowicz",
+ "followers_url": "https://api.github.com/users/wojnilowicz/followers",
+ "following_url": "https://api.github.com/users/wojnilowicz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/wojnilowicz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/wojnilowicz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/wojnilowicz/subscriptions",
+ "organizations_url": "https://api.github.com/users/wojnilowicz/orgs",
+ "repos_url": "https://api.github.com/users/wojnilowicz/repos",
+ "events_url": "https://api.github.com/users/wojnilowicz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/wojnilowicz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "freddii",
- "id": 7213207,
- "node_id": "MDQ6VXNlcjcyMTMyMDc=",
- "avatar_url": "https://avatars.githubusercontent.com/u/7213207?v=4",
+ "login": "alfonsotwr",
+ "id": 64971658,
+ "node_id": "MDQ6VXNlcjY0OTcxNjU4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/64971658?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/freddii",
- "html_url": "https://github.com/freddii",
- "followers_url": "https://api.github.com/users/freddii/followers",
- "following_url": "https://api.github.com/users/freddii/following{/other_user}",
- "gists_url": "https://api.github.com/users/freddii/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/freddii/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/freddii/subscriptions",
- "organizations_url": "https://api.github.com/users/freddii/orgs",
- "repos_url": "https://api.github.com/users/freddii/repos",
- "events_url": "https://api.github.com/users/freddii/events{/privacy}",
- "received_events_url": "https://api.github.com/users/freddii/received_events",
+ "url": "https://api.github.com/users/alfonsotwr",
+ "html_url": "https://github.com/alfonsotwr",
+ "followers_url": "https://api.github.com/users/alfonsotwr/followers",
+ "following_url": "https://api.github.com/users/alfonsotwr/following{/other_user}",
+ "gists_url": "https://api.github.com/users/alfonsotwr/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/alfonsotwr/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/alfonsotwr/subscriptions",
+ "organizations_url": "https://api.github.com/users/alfonsotwr/orgs",
+ "repos_url": "https://api.github.com/users/alfonsotwr/repos",
+ "events_url": "https://api.github.com/users/alfonsotwr/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/alfonsotwr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "fxjaeckel",
- "id": 45701052,
- "node_id": "MDQ6VXNlcjQ1NzAxMDUy",
- "avatar_url": "https://avatars.githubusercontent.com/u/45701052?v=4",
+ "login": "alexfargus",
+ "id": 1611282,
+ "node_id": "MDQ6VXNlcjE2MTEyODI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1611282?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/fxjaeckel",
- "html_url": "https://github.com/fxjaeckel",
- "followers_url": "https://api.github.com/users/fxjaeckel/followers",
- "following_url": "https://api.github.com/users/fxjaeckel/following{/other_user}",
- "gists_url": "https://api.github.com/users/fxjaeckel/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/fxjaeckel/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/fxjaeckel/subscriptions",
- "organizations_url": "https://api.github.com/users/fxjaeckel/orgs",
- "repos_url": "https://api.github.com/users/fxjaeckel/repos",
- "events_url": "https://api.github.com/users/fxjaeckel/events{/privacy}",
- "received_events_url": "https://api.github.com/users/fxjaeckel/received_events",
+ "url": "https://api.github.com/users/alexfargus",
+ "html_url": "https://github.com/alexfargus",
+ "followers_url": "https://api.github.com/users/alexfargus/followers",
+ "following_url": "https://api.github.com/users/alexfargus/following{/other_user}",
+ "gists_url": "https://api.github.com/users/alexfargus/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/alexfargus/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/alexfargus/subscriptions",
+ "organizations_url": "https://api.github.com/users/alexfargus/orgs",
+ "repos_url": "https://api.github.com/users/alexfargus/repos",
+ "events_url": "https://api.github.com/users/alexfargus/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/alexfargus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "habibmy",
- "id": 29559410,
- "node_id": "MDQ6VXNlcjI5NTU5NDEw",
- "avatar_url": "https://avatars.githubusercontent.com/u/29559410?v=4",
+ "login": "Virinas-code",
+ "id": 61283052,
+ "node_id": "MDQ6VXNlcjYxMjgzMDUy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/61283052?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/habibmy",
- "html_url": "https://github.com/habibmy",
- "followers_url": "https://api.github.com/users/habibmy/followers",
- "following_url": "https://api.github.com/users/habibmy/following{/other_user}",
- "gists_url": "https://api.github.com/users/habibmy/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/habibmy/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/habibmy/subscriptions",
- "organizations_url": "https://api.github.com/users/habibmy/orgs",
- "repos_url": "https://api.github.com/users/habibmy/repos",
- "events_url": "https://api.github.com/users/habibmy/events{/privacy}",
- "received_events_url": "https://api.github.com/users/habibmy/received_events",
+ "url": "https://api.github.com/users/Virinas-code",
+ "html_url": "https://github.com/Virinas-code",
+ "followers_url": "https://api.github.com/users/Virinas-code/followers",
+ "following_url": "https://api.github.com/users/Virinas-code/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Virinas-code/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Virinas-code/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Virinas-code/subscriptions",
+ "organizations_url": "https://api.github.com/users/Virinas-code/orgs",
+ "repos_url": "https://api.github.com/users/Virinas-code/repos",
+ "events_url": "https://api.github.com/users/Virinas-code/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Virinas-code/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "javidcf",
- "id": 1098280,
- "node_id": "MDQ6VXNlcjEwOTgyODA=",
- "avatar_url": "https://avatars.githubusercontent.com/u/1098280?v=4",
+ "login": "Ajax-Light",
+ "id": 54140487,
+ "node_id": "MDQ6VXNlcjU0MTQwNDg3",
+ "avatar_url": "https://avatars.githubusercontent.com/u/54140487?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/javidcf",
- "html_url": "https://github.com/javidcf",
- "followers_url": "https://api.github.com/users/javidcf/followers",
- "following_url": "https://api.github.com/users/javidcf/following{/other_user}",
- "gists_url": "https://api.github.com/users/javidcf/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/javidcf/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/javidcf/subscriptions",
- "organizations_url": "https://api.github.com/users/javidcf/orgs",
- "repos_url": "https://api.github.com/users/javidcf/repos",
- "events_url": "https://api.github.com/users/javidcf/events{/privacy}",
- "received_events_url": "https://api.github.com/users/javidcf/received_events",
+ "url": "https://api.github.com/users/Ajax-Light",
+ "html_url": "https://github.com/Ajax-Light",
+ "followers_url": "https://api.github.com/users/Ajax-Light/followers",
+ "following_url": "https://api.github.com/users/Ajax-Light/following{/other_user}",
+ "gists_url": "https://api.github.com/users/Ajax-Light/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/Ajax-Light/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/Ajax-Light/subscriptions",
+ "organizations_url": "https://api.github.com/users/Ajax-Light/orgs",
+ "repos_url": "https://api.github.com/users/Ajax-Light/repos",
+ "events_url": "https://api.github.com/users/Ajax-Light/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/Ajax-Light/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "lpinner",
- "id": 4827816,
- "node_id": "MDQ6VXNlcjQ4Mjc4MTY=",
- "avatar_url": "https://avatars.githubusercontent.com/u/4827816?v=4",
+ "login": "tovogt",
+ "id": 57705593,
+ "node_id": "MDQ6VXNlcjU3NzA1NTkz",
+ "avatar_url": "https://avatars.githubusercontent.com/u/57705593?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/lpinner",
- "html_url": "https://github.com/lpinner",
- "followers_url": "https://api.github.com/users/lpinner/followers",
- "following_url": "https://api.github.com/users/lpinner/following{/other_user}",
- "gists_url": "https://api.github.com/users/lpinner/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/lpinner/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/lpinner/subscriptions",
- "organizations_url": "https://api.github.com/users/lpinner/orgs",
- "repos_url": "https://api.github.com/users/lpinner/repos",
- "events_url": "https://api.github.com/users/lpinner/events{/privacy}",
- "received_events_url": "https://api.github.com/users/lpinner/received_events",
+ "url": "https://api.github.com/users/tovogt",
+ "html_url": "https://github.com/tovogt",
+ "followers_url": "https://api.github.com/users/tovogt/followers",
+ "following_url": "https://api.github.com/users/tovogt/following{/other_user}",
+ "gists_url": "https://api.github.com/users/tovogt/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/tovogt/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/tovogt/subscriptions",
+ "organizations_url": "https://api.github.com/users/tovogt/orgs",
+ "repos_url": "https://api.github.com/users/tovogt/repos",
+ "events_url": "https://api.github.com/users/tovogt/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/tovogt/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "ptocca",
- "id": 12876344,
- "node_id": "MDQ6VXNlcjEyODc2MzQ0",
- "avatar_url": "https://avatars.githubusercontent.com/u/12876344?v=4",
+ "login": "tlunet",
+ "id": 12183839,
+ "node_id": "MDQ6VXNlcjEyMTgzODM5",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12183839?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/ptocca",
- "html_url": "https://github.com/ptocca",
- "followers_url": "https://api.github.com/users/ptocca/followers",
- "following_url": "https://api.github.com/users/ptocca/following{/other_user}",
- "gists_url": "https://api.github.com/users/ptocca/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ptocca/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ptocca/subscriptions",
- "organizations_url": "https://api.github.com/users/ptocca/orgs",
- "repos_url": "https://api.github.com/users/ptocca/repos",
- "events_url": "https://api.github.com/users/ptocca/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ptocca/received_events",
+ "url": "https://api.github.com/users/tlunet",
+ "html_url": "https://github.com/tlunet",
+ "followers_url": "https://api.github.com/users/tlunet/followers",
+ "following_url": "https://api.github.com/users/tlunet/following{/other_user}",
+ "gists_url": "https://api.github.com/users/tlunet/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/tlunet/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/tlunet/subscriptions",
+ "organizations_url": "https://api.github.com/users/tlunet/orgs",
+ "repos_url": "https://api.github.com/users/tlunet/repos",
+ "events_url": "https://api.github.com/users/tlunet/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/tlunet/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "ryohei22",
- "id": 65102983,
- "node_id": "MDQ6VXNlcjY1MTAyOTgz",
- "avatar_url": "https://avatars.githubusercontent.com/u/65102983?v=4",
+ "login": "afvincent",
+ "id": 17270724,
+ "node_id": "MDQ6VXNlcjE3MjcwNzI0",
+ "avatar_url": "https://avatars.githubusercontent.com/u/17270724?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/ryohei22",
- "html_url": "https://github.com/ryohei22",
- "followers_url": "https://api.github.com/users/ryohei22/followers",
- "following_url": "https://api.github.com/users/ryohei22/following{/other_user}",
- "gists_url": "https://api.github.com/users/ryohei22/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ryohei22/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ryohei22/subscriptions",
- "organizations_url": "https://api.github.com/users/ryohei22/orgs",
- "repos_url": "https://api.github.com/users/ryohei22/repos",
- "events_url": "https://api.github.com/users/ryohei22/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ryohei22/received_events",
+ "url": "https://api.github.com/users/afvincent",
+ "html_url": "https://github.com/afvincent",
+ "followers_url": "https://api.github.com/users/afvincent/followers",
+ "following_url": "https://api.github.com/users/afvincent/following{/other_user}",
+ "gists_url": "https://api.github.com/users/afvincent/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/afvincent/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/afvincent/subscriptions",
+ "organizations_url": "https://api.github.com/users/afvincent/orgs",
+ "repos_url": "https://api.github.com/users/afvincent/repos",
+ "events_url": "https://api.github.com/users/afvincent/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/afvincent/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "real-yfprojects",
+ "id": 62463991,
+ "node_id": "MDQ6VXNlcjYyNDYzOTkx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/62463991?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/real-yfprojects",
+ "html_url": "https://github.com/real-yfprojects",
+ "followers_url": "https://api.github.com/users/real-yfprojects/followers",
+ "following_url": "https://api.github.com/users/real-yfprojects/following{/other_user}",
+ "gists_url": "https://api.github.com/users/real-yfprojects/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/real-yfprojects/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/real-yfprojects/subscriptions",
+ "organizations_url": "https://api.github.com/users/real-yfprojects/orgs",
+ "repos_url": "https://api.github.com/users/real-yfprojects/repos",
+ "events_url": "https://api.github.com/users/real-yfprojects/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/real-yfprojects/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "amish",
+ "id": 9803532,
+ "node_id": "MDQ6VXNlcjk4MDM1MzI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/9803532?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/amish",
+ "html_url": "https://github.com/amish",
+ "followers_url": "https://api.github.com/users/amish/followers",
+ "following_url": "https://api.github.com/users/amish/following{/other_user}",
+ "gists_url": "https://api.github.com/users/amish/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/amish/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/amish/subscriptions",
+ "organizations_url": "https://api.github.com/users/amish/orgs",
+ "repos_url": "https://api.github.com/users/amish/repos",
+ "events_url": "https://api.github.com/users/amish/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/amish/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "trollodel",
+ "id": 33117082,
+ "node_id": "MDQ6VXNlcjMzMTE3MDgy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/33117082?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/trollodel",
+ "html_url": "https://github.com/trollodel",
+ "followers_url": "https://api.github.com/users/trollodel/followers",
+ "following_url": "https://api.github.com/users/trollodel/following{/other_user}",
+ "gists_url": "https://api.github.com/users/trollodel/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/trollodel/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/trollodel/subscriptions",
+ "organizations_url": "https://api.github.com/users/trollodel/orgs",
+ "repos_url": "https://api.github.com/users/trollodel/repos",
+ "events_url": "https://api.github.com/users/trollodel/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/trollodel/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "talkaminker",
+ "id": 13932998,
+ "node_id": "MDQ6VXNlcjEzOTMyOTk4",
+ "avatar_url": "https://avatars.githubusercontent.com/u/13932998?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/talkaminker",
+ "html_url": "https://github.com/talkaminker",
+ "followers_url": "https://api.github.com/users/talkaminker/followers",
+ "following_url": "https://api.github.com/users/talkaminker/following{/other_user}",
+ "gists_url": "https://api.github.com/users/talkaminker/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/talkaminker/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/talkaminker/subscriptions",
+ "organizations_url": "https://api.github.com/users/talkaminker/orgs",
+ "repos_url": "https://api.github.com/users/talkaminker/repos",
+ "events_url": "https://api.github.com/users/talkaminker/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/talkaminker/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "scottwedge",
+ "id": 3101154,
+ "node_id": "MDQ6VXNlcjMxMDExNTQ=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3101154?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/scottwedge",
+ "html_url": "https://github.com/scottwedge",
+ "followers_url": "https://api.github.com/users/scottwedge/followers",
+ "following_url": "https://api.github.com/users/scottwedge/following{/other_user}",
+ "gists_url": "https://api.github.com/users/scottwedge/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/scottwedge/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/scottwedge/subscriptions",
+ "organizations_url": "https://api.github.com/users/scottwedge/orgs",
+ "repos_url": "https://api.github.com/users/scottwedge/repos",
+ "events_url": "https://api.github.com/users/scottwedge/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/scottwedge/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "sphh",
+ "id": 4856462,
+ "node_id": "MDQ6VXNlcjQ4NTY0NjI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4856462?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/sphh",
+ "html_url": "https://github.com/sphh",
+ "followers_url": "https://api.github.com/users/sphh/followers",
+ "following_url": "https://api.github.com/users/sphh/following{/other_user}",
+ "gists_url": "https://api.github.com/users/sphh/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/sphh/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/sphh/subscriptions",
+ "organizations_url": "https://api.github.com/users/sphh/orgs",
+ "repos_url": "https://api.github.com/users/sphh/repos",
+ "events_url": "https://api.github.com/users/sphh/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/sphh/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
+ {
+ "login": "sonofeft",
+ "id": 13057199,
+ "node_id": "MDQ6VXNlcjEzMDU3MTk5",
+ "avatar_url": "https://avatars.githubusercontent.com/u/13057199?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/sonofeft",
+ "html_url": "https://github.com/sonofeft",
+ "followers_url": "https://api.github.com/users/sonofeft/followers",
+ "following_url": "https://api.github.com/users/sonofeft/following{/other_user}",
+ "gists_url": "https://api.github.com/users/sonofeft/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/sonofeft/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/sonofeft/subscriptions",
+ "organizations_url": "https://api.github.com/users/sonofeft/orgs",
+ "repos_url": "https://api.github.com/users/sonofeft/repos",
+ "events_url": "https://api.github.com/users/sonofeft/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/sonofeft/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3718,176 +3718,176 @@
"contributions": 1
},
{
- "login": "sonofeft",
- "id": 13057199,
- "node_id": "MDQ6VXNlcjEzMDU3MTk5",
- "avatar_url": "https://avatars.githubusercontent.com/u/13057199?v=4",
+ "login": "ryohei22",
+ "id": 65102983,
+ "node_id": "MDQ6VXNlcjY1MTAyOTgz",
+ "avatar_url": "https://avatars.githubusercontent.com/u/65102983?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/sonofeft",
- "html_url": "https://github.com/sonofeft",
- "followers_url": "https://api.github.com/users/sonofeft/followers",
- "following_url": "https://api.github.com/users/sonofeft/following{/other_user}",
- "gists_url": "https://api.github.com/users/sonofeft/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/sonofeft/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/sonofeft/subscriptions",
- "organizations_url": "https://api.github.com/users/sonofeft/orgs",
- "repos_url": "https://api.github.com/users/sonofeft/repos",
- "events_url": "https://api.github.com/users/sonofeft/events{/privacy}",
- "received_events_url": "https://api.github.com/users/sonofeft/received_events",
+ "url": "https://api.github.com/users/ryohei22",
+ "html_url": "https://github.com/ryohei22",
+ "followers_url": "https://api.github.com/users/ryohei22/followers",
+ "following_url": "https://api.github.com/users/ryohei22/following{/other_user}",
+ "gists_url": "https://api.github.com/users/ryohei22/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/ryohei22/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/ryohei22/subscriptions",
+ "organizations_url": "https://api.github.com/users/ryohei22/orgs",
+ "repos_url": "https://api.github.com/users/ryohei22/repos",
+ "events_url": "https://api.github.com/users/ryohei22/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/ryohei22/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "sphh",
- "id": 4856462,
- "node_id": "MDQ6VXNlcjQ4NTY0NjI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/4856462?v=4",
+ "login": "ptocca",
+ "id": 12876344,
+ "node_id": "MDQ6VXNlcjEyODc2MzQ0",
+ "avatar_url": "https://avatars.githubusercontent.com/u/12876344?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/sphh",
- "html_url": "https://github.com/sphh",
- "followers_url": "https://api.github.com/users/sphh/followers",
- "following_url": "https://api.github.com/users/sphh/following{/other_user}",
- "gists_url": "https://api.github.com/users/sphh/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/sphh/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/sphh/subscriptions",
- "organizations_url": "https://api.github.com/users/sphh/orgs",
- "repos_url": "https://api.github.com/users/sphh/repos",
- "events_url": "https://api.github.com/users/sphh/events{/privacy}",
- "received_events_url": "https://api.github.com/users/sphh/received_events",
+ "url": "https://api.github.com/users/ptocca",
+ "html_url": "https://github.com/ptocca",
+ "followers_url": "https://api.github.com/users/ptocca/followers",
+ "following_url": "https://api.github.com/users/ptocca/following{/other_user}",
+ "gists_url": "https://api.github.com/users/ptocca/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/ptocca/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/ptocca/subscriptions",
+ "organizations_url": "https://api.github.com/users/ptocca/orgs",
+ "repos_url": "https://api.github.com/users/ptocca/repos",
+ "events_url": "https://api.github.com/users/ptocca/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/ptocca/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "scottwedge",
- "id": 3101154,
- "node_id": "MDQ6VXNlcjMxMDExNTQ=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3101154?v=4",
+ "login": "lpinner",
+ "id": 4827816,
+ "node_id": "MDQ6VXNlcjQ4Mjc4MTY=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4827816?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/scottwedge",
- "html_url": "https://github.com/scottwedge",
- "followers_url": "https://api.github.com/users/scottwedge/followers",
- "following_url": "https://api.github.com/users/scottwedge/following{/other_user}",
- "gists_url": "https://api.github.com/users/scottwedge/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/scottwedge/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/scottwedge/subscriptions",
- "organizations_url": "https://api.github.com/users/scottwedge/orgs",
- "repos_url": "https://api.github.com/users/scottwedge/repos",
- "events_url": "https://api.github.com/users/scottwedge/events{/privacy}",
- "received_events_url": "https://api.github.com/users/scottwedge/received_events",
+ "url": "https://api.github.com/users/lpinner",
+ "html_url": "https://github.com/lpinner",
+ "followers_url": "https://api.github.com/users/lpinner/followers",
+ "following_url": "https://api.github.com/users/lpinner/following{/other_user}",
+ "gists_url": "https://api.github.com/users/lpinner/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/lpinner/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/lpinner/subscriptions",
+ "organizations_url": "https://api.github.com/users/lpinner/orgs",
+ "repos_url": "https://api.github.com/users/lpinner/repos",
+ "events_url": "https://api.github.com/users/lpinner/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/lpinner/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "talkaminker",
- "id": 13932998,
- "node_id": "MDQ6VXNlcjEzOTMyOTk4",
- "avatar_url": "https://avatars.githubusercontent.com/u/13932998?v=4",
+ "login": "javidcf",
+ "id": 1098280,
+ "node_id": "MDQ6VXNlcjEwOTgyODA=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/1098280?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/talkaminker",
- "html_url": "https://github.com/talkaminker",
- "followers_url": "https://api.github.com/users/talkaminker/followers",
- "following_url": "https://api.github.com/users/talkaminker/following{/other_user}",
- "gists_url": "https://api.github.com/users/talkaminker/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/talkaminker/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/talkaminker/subscriptions",
- "organizations_url": "https://api.github.com/users/talkaminker/orgs",
- "repos_url": "https://api.github.com/users/talkaminker/repos",
- "events_url": "https://api.github.com/users/talkaminker/events{/privacy}",
- "received_events_url": "https://api.github.com/users/talkaminker/received_events",
+ "url": "https://api.github.com/users/javidcf",
+ "html_url": "https://github.com/javidcf",
+ "followers_url": "https://api.github.com/users/javidcf/followers",
+ "following_url": "https://api.github.com/users/javidcf/following{/other_user}",
+ "gists_url": "https://api.github.com/users/javidcf/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/javidcf/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/javidcf/subscriptions",
+ "organizations_url": "https://api.github.com/users/javidcf/orgs",
+ "repos_url": "https://api.github.com/users/javidcf/repos",
+ "events_url": "https://api.github.com/users/javidcf/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/javidcf/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "trollodel",
- "id": 33117082,
- "node_id": "MDQ6VXNlcjMzMTE3MDgy",
- "avatar_url": "https://avatars.githubusercontent.com/u/33117082?v=4",
+ "login": "habibmy",
+ "id": 29559410,
+ "node_id": "MDQ6VXNlcjI5NTU5NDEw",
+ "avatar_url": "https://avatars.githubusercontent.com/u/29559410?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/trollodel",
- "html_url": "https://github.com/trollodel",
- "followers_url": "https://api.github.com/users/trollodel/followers",
- "following_url": "https://api.github.com/users/trollodel/following{/other_user}",
- "gists_url": "https://api.github.com/users/trollodel/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/trollodel/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/trollodel/subscriptions",
- "organizations_url": "https://api.github.com/users/trollodel/orgs",
- "repos_url": "https://api.github.com/users/trollodel/repos",
- "events_url": "https://api.github.com/users/trollodel/events{/privacy}",
- "received_events_url": "https://api.github.com/users/trollodel/received_events",
+ "url": "https://api.github.com/users/habibmy",
+ "html_url": "https://github.com/habibmy",
+ "followers_url": "https://api.github.com/users/habibmy/followers",
+ "following_url": "https://api.github.com/users/habibmy/following{/other_user}",
+ "gists_url": "https://api.github.com/users/habibmy/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/habibmy/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/habibmy/subscriptions",
+ "organizations_url": "https://api.github.com/users/habibmy/orgs",
+ "repos_url": "https://api.github.com/users/habibmy/repos",
+ "events_url": "https://api.github.com/users/habibmy/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/habibmy/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "amish",
- "id": 9803532,
- "node_id": "MDQ6VXNlcjk4MDM1MzI=",
- "avatar_url": "https://avatars.githubusercontent.com/u/9803532?v=4",
+ "login": "fxjaeckel",
+ "id": 45701052,
+ "node_id": "MDQ6VXNlcjQ1NzAxMDUy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/45701052?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/amish",
- "html_url": "https://github.com/amish",
- "followers_url": "https://api.github.com/users/amish/followers",
- "following_url": "https://api.github.com/users/amish/following{/other_user}",
- "gists_url": "https://api.github.com/users/amish/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/amish/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/amish/subscriptions",
- "organizations_url": "https://api.github.com/users/amish/orgs",
- "repos_url": "https://api.github.com/users/amish/repos",
- "events_url": "https://api.github.com/users/amish/events{/privacy}",
- "received_events_url": "https://api.github.com/users/amish/received_events",
+ "url": "https://api.github.com/users/fxjaeckel",
+ "html_url": "https://github.com/fxjaeckel",
+ "followers_url": "https://api.github.com/users/fxjaeckel/followers",
+ "following_url": "https://api.github.com/users/fxjaeckel/following{/other_user}",
+ "gists_url": "https://api.github.com/users/fxjaeckel/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/fxjaeckel/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/fxjaeckel/subscriptions",
+ "organizations_url": "https://api.github.com/users/fxjaeckel/orgs",
+ "repos_url": "https://api.github.com/users/fxjaeckel/repos",
+ "events_url": "https://api.github.com/users/fxjaeckel/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/fxjaeckel/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "real-yfprojects",
- "id": 62463991,
- "node_id": "MDQ6VXNlcjYyNDYzOTkx",
- "avatar_url": "https://avatars.githubusercontent.com/u/62463991?v=4",
+ "login": "freddii",
+ "id": 7213207,
+ "node_id": "MDQ6VXNlcjcyMTMyMDc=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7213207?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/real-yfprojects",
- "html_url": "https://github.com/real-yfprojects",
- "followers_url": "https://api.github.com/users/real-yfprojects/followers",
- "following_url": "https://api.github.com/users/real-yfprojects/following{/other_user}",
- "gists_url": "https://api.github.com/users/real-yfprojects/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/real-yfprojects/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/real-yfprojects/subscriptions",
- "organizations_url": "https://api.github.com/users/real-yfprojects/orgs",
- "repos_url": "https://api.github.com/users/real-yfprojects/repos",
- "events_url": "https://api.github.com/users/real-yfprojects/events{/privacy}",
- "received_events_url": "https://api.github.com/users/real-yfprojects/received_events",
+ "url": "https://api.github.com/users/freddii",
+ "html_url": "https://github.com/freddii",
+ "followers_url": "https://api.github.com/users/freddii/followers",
+ "following_url": "https://api.github.com/users/freddii/following{/other_user}",
+ "gists_url": "https://api.github.com/users/freddii/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/freddii/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/freddii/subscriptions",
+ "organizations_url": "https://api.github.com/users/freddii/orgs",
+ "repos_url": "https://api.github.com/users/freddii/repos",
+ "events_url": "https://api.github.com/users/freddii/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/freddii/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
},
{
- "login": "afvincent",
- "id": 17270724,
- "node_id": "MDQ6VXNlcjE3MjcwNzI0",
- "avatar_url": "https://avatars.githubusercontent.com/u/17270724?v=4",
+ "login": "dzosz",
+ "id": 13596691,
+ "node_id": "MDQ6VXNlcjEzNTk2Njkx",
+ "avatar_url": "https://avatars.githubusercontent.com/u/13596691?v=4",
"gravatar_id": "",
- "url": "https://api.github.com/users/afvincent",
- "html_url": "https://github.com/afvincent",
- "followers_url": "https://api.github.com/users/afvincent/followers",
- "following_url": "https://api.github.com/users/afvincent/following{/other_user}",
- "gists_url": "https://api.github.com/users/afvincent/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/afvincent/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/afvincent/subscriptions",
- "organizations_url": "https://api.github.com/users/afvincent/orgs",
- "repos_url": "https://api.github.com/users/afvincent/repos",
- "events_url": "https://api.github.com/users/afvincent/events{/privacy}",
- "received_events_url": "https://api.github.com/users/afvincent/received_events",
+ "url": "https://api.github.com/users/dzosz",
+ "html_url": "https://github.com/dzosz",
+ "followers_url": "https://api.github.com/users/dzosz/followers",
+ "following_url": "https://api.github.com/users/dzosz/following{/other_user}",
+ "gists_url": "https://api.github.com/users/dzosz/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/dzosz/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/dzosz/subscriptions",
+ "organizations_url": "https://api.github.com/users/dzosz/orgs",
+ "repos_url": "https://api.github.com/users/dzosz/repos",
+ "events_url": "https://api.github.com/users/dzosz/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/dzosz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
@@ -3915,6 +3915,28 @@
"site_admin": false,
"contributions": 1
},
+ {
+ "login": "a-detiste",
+ "id": 7994192,
+ "node_id": "MDQ6VXNlcjc5OTQxOTI=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7994192?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/a-detiste",
+ "html_url": "https://github.com/a-detiste",
+ "followers_url": "https://api.github.com/users/a-detiste/followers",
+ "following_url": "https://api.github.com/users/a-detiste/following{/other_user}",
+ "gists_url": "https://api.github.com/users/a-detiste/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/a-detiste/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/a-detiste/subscriptions",
+ "organizations_url": "https://api.github.com/users/a-detiste/orgs",
+ "repos_url": "https://api.github.com/users/a-detiste/repos",
+ "events_url": "https://api.github.com/users/a-detiste/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/a-detiste/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
+ },
{
"login": "kai3341",
"id": 3619375,
@@ -4530,5 +4552,27 @@
"user_view_type": "public",
"site_admin": false,
"contributions": 1
+ },
+ {
+ "login": "SimpleZion",
+ "id": 110653193,
+ "node_id": "U_kgDOBphvCQ",
+ "avatar_url": "https://avatars.githubusercontent.com/u/110653193?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/SimpleZion",
+ "html_url": "https://github.com/SimpleZion",
+ "followers_url": "https://api.github.com/users/SimpleZion/followers",
+ "following_url": "https://api.github.com/users/SimpleZion/following{/other_user}",
+ "gists_url": "https://api.github.com/users/SimpleZion/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/SimpleZion/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/SimpleZion/subscriptions",
+ "organizations_url": "https://api.github.com/users/SimpleZion/orgs",
+ "repos_url": "https://api.github.com/users/SimpleZion/repos",
+ "events_url": "https://api.github.com/users/SimpleZion/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/SimpleZion/received_events",
+ "type": "User",
+ "user_view_type": "public",
+ "site_admin": false,
+ "contributions": 1
}
]
\ No newline at end of file
diff --git a/static/data/hubspot.json b/static/data/hubspot.json
index 10c0d42e..655b030d 100644
--- a/static/data/hubspot.json
+++ b/static/data/hubspot.json
@@ -8,11 +8,11 @@
"amount": "30.00",
"createdate": "2024-11-05T15:27:55.386Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:12.602Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
"hs_object_id": "28743099954",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:12.602Z"
+ "updatedAt": "2025-07-24T00:49:46.301Z"
},
{
"createdAt": "2024-12-31T20:59:52.585Z",
@@ -22,11 +22,11 @@
"amount": "25.00",
"createdate": "2024-12-31T20:59:52.585Z",
"dealname": "Spyder One-Time Donation via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:16.598Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
"hs_object_id": "31266008965",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:16.598Z"
+ "updatedAt": "2025-07-24T00:49:46.031Z"
},
{
"createdAt": "2025-01-09T08:35:04.408Z",
@@ -36,11 +36,11 @@
"amount": "15.00",
"createdate": "2025-01-09T08:35:04.408Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:07.657Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
"hs_object_id": "31704199823",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:07.657Z"
+ "updatedAt": "2025-07-24T00:49:47.949Z"
},
{
"createdAt": "2025-03-30T21:19:04.375Z",
@@ -50,11 +50,11 @@
"amount": "5.00",
"createdate": "2025-03-30T21:19:04.375Z",
"dealname": "New Viewer pane: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:02.679Z",
+ "hs_lastmodifieddate": "2025-08-02T18:55:16.425Z",
"hs_object_id": "35240642058",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:02.679Z"
+ "updatedAt": "2025-08-02T18:55:16.425Z"
},
{
"createdAt": "2025-04-09T15:18:48.599Z",
@@ -64,11 +64,11 @@
"amount": "10.00",
"createdate": "2025-04-09T15:18:48.599Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:54.992Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
"hs_object_id": "35594316619",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:54.992Z"
+ "updatedAt": "2025-07-24T00:49:47.880Z"
},
{
"createdAt": "2025-04-09T17:22:23.099Z",
@@ -78,11 +78,11 @@
"amount": "20.00",
"createdate": "2025-04-09T17:22:23.099Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:49.454Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
"hs_object_id": "35625727668",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:49.454Z"
+ "updatedAt": "2025-07-24T00:49:47.901Z"
},
{
"createdAt": "2025-04-13T07:53:27.488Z",
@@ -92,11 +92,11 @@
"amount": "25.00",
"createdate": "2025-04-13T07:53:27.488Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:32:09.288Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
"hs_object_id": "35711256670",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:32:09.288Z"
+ "updatedAt": "2025-07-24T00:49:47.965Z"
},
{
"createdAt": "2025-04-14T01:13:19.442Z",
@@ -106,11 +106,11 @@
"amount": "20.00",
"createdate": "2025-04-14T01:13:19.442Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:59.781Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
"hs_object_id": "35723857267",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:59.781Z"
+ "updatedAt": "2025-07-24T00:49:47.875Z"
},
{
"createdAt": "2025-04-17T16:54:31.545Z",
@@ -120,11 +120,11 @@
"amount": "5.00",
"createdate": "2025-04-17T16:54:31.545Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:49.060Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
"hs_object_id": "35859805840",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:49.060Z"
+ "updatedAt": "2025-07-24T00:49:46.025Z"
},
{
"createdAt": "2025-04-17T20:57:16.478Z",
@@ -134,11 +134,11 @@
"amount": "50.00",
"createdate": "2025-04-17T20:57:16.478Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:45.183Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.062Z",
"hs_object_id": "35836379945",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:45.183Z"
+ "updatedAt": "2025-07-24T00:49:46.062Z"
},
{
"createdAt": "2025-04-18T09:54:45.965Z",
@@ -148,11 +148,11 @@
"amount": "240.00",
"createdate": "2025-04-18T09:54:45.965Z",
"dealname": "Level-up the Variable Explorer: Monthly via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:41.193Z",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.264Z",
"hs_object_id": "35891295603",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:41.193Z"
+ "updatedAt": "2025-07-24T01:12:11.264Z"
},
{
"createdAt": "2025-04-18T12:37:06.036Z",
@@ -162,11 +162,11 @@
"amount": "10.00",
"createdate": "2025-04-18T12:37:06.036Z",
"dealname": "Supercharge syntax highlighting: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:32.206Z",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.504Z",
"hs_object_id": "35895389081",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:32.206Z"
+ "updatedAt": "2025-07-24T01:11:46.504Z"
},
{
"createdAt": "2025-04-18T12:55:14.989Z",
@@ -176,11 +176,11 @@
"amount": "20.00",
"createdate": "2025-04-18T12:55:14.989Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:24.725Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
"hs_object_id": "35880854290",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:24.725Z"
+ "updatedAt": "2025-07-24T00:49:46.520Z"
},
{
"createdAt": "2025-04-18T15:45:54.411Z",
@@ -190,11 +190,11 @@
"amount": "40.00",
"createdate": "2025-04-18T15:45:54.411Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:22.102Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
"hs_object_id": "35897730114",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:22.102Z"
+ "updatedAt": "2025-07-24T00:49:46.520Z"
},
{
"createdAt": "2025-04-19T21:45:52.198Z",
@@ -204,11 +204,11 @@
"amount": "10.00",
"createdate": "2025-04-19T21:45:52.198Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:18.160Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
"hs_object_id": "35937273359",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:18.160Z"
+ "updatedAt": "2025-07-24T00:49:48.003Z"
},
{
"createdAt": "2025-04-20T08:12:12.733Z",
@@ -218,11 +218,11 @@
"amount": "50.00",
"createdate": "2025-04-20T08:12:12.733Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:15.581Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
"hs_object_id": "35953158972",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:15.581Z"
+ "updatedAt": "2025-07-24T00:49:47.982Z"
},
{
"createdAt": "2025-04-21T02:57:49.957Z",
@@ -232,11 +232,11 @@
"amount": "10.00",
"createdate": "2025-04-21T02:57:49.957Z",
"dealname": "Level-up the Variable Explorer: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:45.427Z",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.233Z",
"hs_object_id": "35995991825",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:45.427Z"
+ "updatedAt": "2025-07-24T01:12:11.233Z"
},
{
"createdAt": "2025-04-22T05:24:45.122Z",
@@ -246,11 +246,11 @@
"amount": "15.00",
"createdate": "2025-04-22T05:24:45.122Z",
"dealname": "Smarter code completion: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:10.003Z",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.491Z",
"hs_object_id": "36051856705",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:10.003Z"
+ "updatedAt": "2025-07-24T01:10:48.491Z"
},
{
"createdAt": "2025-04-23T12:01:37.506Z",
@@ -260,11 +260,11 @@
"amount": "20.00",
"createdate": "2025-04-23T12:01:37.506Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:02.812Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
"hs_object_id": "36115001092",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:02.812Z"
+ "updatedAt": "2025-07-24T00:49:47.824Z"
},
{
"createdAt": "2025-04-23T22:14:59.735Z",
@@ -274,11 +274,11 @@
"amount": "20.00",
"createdate": "2025-04-23T22:14:59.735Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:48.630Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
"hs_object_id": "36145295911",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:48.630Z"
+ "updatedAt": "2025-07-24T00:49:47.880Z"
},
{
"createdAt": "2025-04-24T07:00:32.701Z",
@@ -288,313 +288,3421 @@
"amount": "50.00",
"createdate": "2025-04-24T07:00:32.701Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T07:06:03.130Z",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
"hs_object_id": "36166714949",
- "pipeline": "691999256"
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T07:06:03.130Z"
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-04-27T19:47:18.244Z",
+ "archived": false,
+ "id": "36356682525",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-04-27T19:47:18.244Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "36356682525",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-04-27T20:51:17.893Z",
+ "archived": false,
+ "id": "36343578784",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-04-27T20:51:17.893Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36343578784",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-04-27T22:24:59.927Z",
+ "archived": false,
+ "id": "36343582855",
+ "properties": {
+ "amount": "17.00",
+ "createdate": "2025-04-27T22:24:59.927Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36343582855",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-04-28T13:25:54.714Z",
+ "archived": false,
+ "id": "36415253077",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-04-28T13:25:54.714Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "36415253077",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-04-29T17:03:41.997Z",
+ "archived": false,
+ "id": "36538113559",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-29T17:03:41.997Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36538113559",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-03T09:46:35.819Z",
+ "archived": false,
+ "id": "36669741836",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-03T09:46:35.819Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.659Z",
+ "hs_object_id": "36669741836",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.659Z"
+ },
+ {
+ "createdAt": "2025-05-03T11:31:49.309Z",
+ "archived": false,
+ "id": "36669445015",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-05-03T11:31:49.309Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "36669445015",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-05-04T01:52:57.487Z",
+ "archived": false,
+ "id": "36667340080",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-05-04T01:52:57.487Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.889Z",
+ "hs_object_id": "36667340080",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.889Z"
+ },
+ {
+ "createdAt": "2025-05-04T12:45:20.458Z",
+ "archived": false,
+ "id": "36680225375",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T12:45:20.458Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.512Z",
+ "hs_object_id": "36680225375",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.512Z"
+ },
+ {
+ "createdAt": "2025-05-04T18:50:16.137Z",
+ "archived": false,
+ "id": "36672569189",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T18:50:16.137Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36672569189",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-04T21:55:20.178Z",
+ "archived": false,
+ "id": "36687533695",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-04T21:55:20.178Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.471Z",
+ "hs_object_id": "36687533695",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.471Z"
+ },
+ {
+ "createdAt": "2025-05-06T20:46:16.006Z",
+ "archived": false,
+ "id": "36834640221",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-06T20:46:16.006Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36834640221",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-05-08T11:00:42.052Z",
+ "archived": false,
+ "id": "36896574053",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-08T11:00:42.052Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "36896574053",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-05-09T09:27:10.023Z",
+ "archived": false,
+ "id": "36964765007",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-09T09:27:10.023Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "36964765007",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-09T17:48:47.939Z",
+ "archived": false,
+ "id": "36989563671",
+ "properties": {
+ "amount": "2.00",
+ "createdate": "2025-05-09T17:48:47.939Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36989563671",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-10T15:55:00.982Z",
+ "archived": false,
+ "id": "37026677833",
+ "properties": {
+ "amount": "1.00",
+ "createdate": "2025-05-10T15:55:00.982Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "37026677833",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-11T08:23:17.592Z",
+ "archived": false,
+ "id": "37009328415",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-11T08:23:17.592Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "37009328415",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-05-12T15:21:05.818Z",
+ "archived": false,
+ "id": "37107403591",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-12T15:21:05.818Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.144Z",
+ "hs_object_id": "37107403591",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.144Z"
+ },
+ {
+ "createdAt": "2025-05-12T19:58:11.880Z",
+ "archived": false,
+ "id": "37127637853",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-12T19:58:11.880Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.698Z",
+ "hs_object_id": "37127637853",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.698Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:02:04.415Z",
+ "archived": false,
+ "id": "37143810663",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-13T13:02:04.415Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37143810663",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:07:51.758Z",
+ "archived": false,
+ "id": "37124041893",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-13T13:07:51.758Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37124041893",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T18:02:30.876Z",
+ "archived": false,
+ "id": "37131599656",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-13T18:02:30.876Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.926Z",
+ "hs_object_id": "37131599656",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.926Z"
+ },
+ {
+ "createdAt": "2025-05-18T20:50:32.354Z",
+ "archived": false,
+ "id": "37395734026",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-18T20:50:32.354Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "37395734026",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-05-19T01:50:44.429Z",
+ "archived": false,
+ "id": "37406526815",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-19T01:50:44.429Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:19.473Z",
+ "hs_object_id": "37406526815",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:19.473Z"
+ },
+ {
+ "createdAt": "2025-05-20T13:36:54.271Z",
+ "archived": false,
+ "id": "37472200612",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-20T13:36:54.271Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.124Z",
+ "hs_object_id": "37472200612",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.124Z"
+ },
+ {
+ "createdAt": "2025-05-23T03:37:00.394Z",
+ "archived": false,
+ "id": "37765132904",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-23T03:37:00.394Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:46.643Z",
+ "hs_object_id": "37765132904",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:46.643Z"
+ },
+ {
+ "createdAt": "2025-05-24T15:35:23.080Z",
+ "archived": false,
+ "id": "37885719047",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T15:35:23.080Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "37885719047",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-24T17:37:55.015Z",
+ "archived": false,
+ "id": "37931379865",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T17:37:55.015Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.406Z",
+ "hs_object_id": "37931379865",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.406Z"
+ },
+ {
+ "createdAt": "2025-05-27T06:41:32.116Z",
+ "archived": false,
+ "id": "37987691528",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-27T06:41:32.116Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37987691528",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-27T18:16:34.026Z",
+ "archived": false,
+ "id": "38051227649",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-27T18:16:34.026Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38051227649",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T14:26:32.206Z",
+ "archived": false,
+ "id": "38144782927",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-29T14:26:32.206Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38144782927",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T15:17:00.173Z",
+ "archived": false,
+ "id": "38158417666",
+ "properties": {
+ "amount": "11.50",
+ "createdate": "2025-05-29T15:17:00.173Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "38158417666",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-29T16:11:38.397Z",
+ "archived": false,
+ "id": "38210604426",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-29T16:11:38.397Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.172Z",
+ "hs_object_id": "38210604426",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.172Z"
+ },
+ {
+ "createdAt": "2025-05-30T14:58:43.205Z",
+ "archived": false,
+ "id": "38249483330",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-30T14:58:43.205Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.401Z",
+ "hs_object_id": "38249483330",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:46.401Z"
+ },
+ {
+ "createdAt": "2025-05-30T17:58:06.202Z",
+ "archived": false,
+ "id": "38268635719",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-30T17:58:06.202Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.080Z",
+ "hs_object_id": "38268635719",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.080Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:47:45.421Z",
+ "archived": false,
+ "id": "38311123737",
+ "properties": {
+ "amount": "500.00",
+ "createdate": "2025-06-02T08:47:45.421Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38311123737",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:54:26.976Z",
+ "archived": false,
+ "id": "38311479139",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:54:26.976Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.844Z",
+ "hs_object_id": "38311479139",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.844Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:56:26.660Z",
+ "archived": false,
+ "id": "38311673672",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:56:26.660Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:14.338Z",
+ "hs_object_id": "38311673672",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:14.338Z"
+ },
+ {
+ "createdAt": "2025-06-02T22:08:40.929Z",
+ "archived": false,
+ "id": "38329891970",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T22:08:40.929Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.260Z",
+ "hs_object_id": "38329891970",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.260Z"
+ },
+ {
+ "createdAt": "2025-06-03T11:35:05.893Z",
+ "archived": false,
+ "id": "38346856226",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-03T11:35:05.893Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.589Z",
+ "hs_object_id": "38346856226",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.589Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:04:56.187Z",
+ "archived": false,
+ "id": "38347530406",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-03T12:04:56.187Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "38347530406",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:50:53.610Z",
+ "archived": false,
+ "id": "38345333847",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-03T12:50:53.610Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38345333847",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-05T13:05:05.441Z",
+ "archived": false,
+ "id": "38528449603",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-05T13:05:05.441Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "38528449603",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-06-07T14:44:48.802Z",
+ "archived": false,
+ "id": "38616040627",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-07T14:44:48.802Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.693Z",
+ "hs_object_id": "38616040627",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.693Z"
+ },
+ {
+ "createdAt": "2025-06-08T00:09:03.366Z",
+ "archived": false,
+ "id": "38624297779",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-08T00:09:03.366Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "38624297779",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-06-09T17:44:07.802Z",
+ "archived": false,
+ "id": "38665140076",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-09T17:44:07.802Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.215Z",
+ "hs_object_id": "38665140076",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.215Z"
+ },
+ {
+ "createdAt": "2025-06-10T16:55:51.897Z",
+ "archived": false,
+ "id": "38729804081",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-10T16:55:51.897Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "38729804081",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-06-11T23:45:34.958Z",
+ "archived": false,
+ "id": "38788725328",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-11T23:45:34.958Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38788725328",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-12T22:03:20.494Z",
+ "archived": false,
+ "id": "38825619778",
+ "properties": {
+ "amount": "35.00",
+ "createdate": "2025-06-12T22:03:20.494Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "38825619778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-13T03:32:18.747Z",
+ "archived": false,
+ "id": "38829177434",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-13T03:32:18.747Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38829177434",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-15T12:21:32.605Z",
+ "archived": false,
+ "id": "38898539399",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-15T12:21:32.605Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38898539399",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-17T00:59:25.566Z",
+ "archived": false,
+ "id": "38953988654",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-17T00:59:25.566Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.564Z",
+ "hs_object_id": "38953988654",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.564Z"
+ },
+ {
+ "createdAt": "2025-06-19T06:50:29.250Z",
+ "archived": false,
+ "id": "39058692022",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-19T06:50:29.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "39058692022",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-19T17:18:48.724Z",
+ "archived": false,
+ "id": "39066297134",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-06-19T17:18:48.724Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.329Z",
+ "hs_object_id": "39066297134",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.329Z"
+ },
+ {
+ "createdAt": "2025-06-21T12:43:48.468Z",
+ "archived": false,
+ "id": "39108670994",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-21T12:43:48.468Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39108670994",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-23T19:29:48.687Z",
+ "archived": false,
+ "id": "39239432817",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-06-23T19:29:48.687Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.967Z",
+ "hs_object_id": "39239432817",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.967Z"
+ },
+ {
+ "createdAt": "2025-06-24T16:56:48.203Z",
+ "archived": false,
+ "id": "39256894309",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-24T16:56:48.203Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "39256894309",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-25T06:43:06.292Z",
+ "archived": false,
+ "id": "39267967832",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-25T06:43:06.292Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39267967832",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-25T08:32:28.479Z",
+ "archived": false,
+ "id": "39269837706",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-25T08:32:28.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.313Z",
+ "hs_object_id": "39269837706",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.313Z"
+ },
+ {
+ "createdAt": "2025-06-25T09:51:37.418Z",
+ "archived": false,
+ "id": "39264318101",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-25T09:51:37.418Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "39264318101",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-06-26T00:30:12.249Z",
+ "archived": false,
+ "id": "39292536602",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-26T00:30:12.249Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "39292536602",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-06-26T08:48:28.967Z",
+ "archived": false,
+ "id": "39309125394",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-26T08:48:28.967Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39309125394",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-29T12:07:41.551Z",
+ "archived": false,
+ "id": "39457053587",
+ "properties": {
+ "amount": "200.00",
+ "createdate": "2025-06-29T12:07:41.551Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "39457053587",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-06-29T13:39:44.175Z",
+ "archived": false,
+ "id": "39457548821",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-06-29T13:39:44.175Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39457548821",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-29T15:15:12.289Z",
+ "archived": false,
+ "id": "39464411980",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-29T15:15:12.289Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "39464411980",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-06-30T18:05:45.510Z",
+ "archived": false,
+ "id": "39514245985",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-30T18:05:45.510Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.688Z",
+ "hs_object_id": "39514245985",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.688Z"
+ },
+ {
+ "createdAt": "2025-07-02T13:34:52.479Z",
+ "archived": false,
+ "id": "39607572819",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-02T13:34:52.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "39607572819",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-07-03T07:00:40.910Z",
+ "archived": false,
+ "id": "39636448605",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-03T07:00:40.910Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39636448605",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-04T17:15:07.495Z",
+ "archived": false,
+ "id": "39698037686",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-07-04T17:15:07.495Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39698037686",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-07-06T13:21:20.114Z",
+ "archived": false,
+ "id": "39768507694",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-07-06T13:21:20.114Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39768507694",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-07-07T07:24:09.664Z",
+ "archived": false,
+ "id": "39805299124",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-07T07:24:09.664Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39805299124",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-07-08T06:47:49.250Z",
+ "archived": false,
+ "id": "39848597854",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-08T06:47:49.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.496Z",
+ "hs_object_id": "39848597854",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.496Z"
+ },
+ {
+ "createdAt": "2025-07-08T08:36:11.581Z",
+ "archived": false,
+ "id": "39842480413",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-08T08:36:11.581Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "39842480413",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-07-10T05:21:17.733Z",
+ "archived": false,
+ "id": "39925390942",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-10T05:21:17.733Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "39925390942",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-07-10T09:44:33.152Z",
+ "archived": false,
+ "id": "39940834582",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-10T09:44:33.152Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39940834582",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-10T16:39:46.401Z",
+ "archived": false,
+ "id": "39980252809",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-10T16:39:46.401Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39980252809",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-11T18:56:19.214Z",
+ "archived": false,
+ "id": "40012499753",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-11T18:56:19.214Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "40012499753",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-07-12T03:08:09.584Z",
+ "archived": false,
+ "id": "40059678258",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-07-12T03:08:09.584Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40059678258",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.875Z"
+ },
+ {
+ "createdAt": "2025-07-12T12:21:04.666Z",
+ "archived": false,
+ "id": "40086290944",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-12T12:21:04.666Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40086290944",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-07-12T16:14:21.272Z",
+ "archived": false,
+ "id": "40100062839",
+ "properties": {
+ "amount": "3.00",
+ "createdate": "2025-07-12T16:14:21.272Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40100062839",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-07-13T19:27:03.194Z",
+ "archived": false,
+ "id": "40154663440",
+ "properties": {
+ "amount": "36.00",
+ "createdate": "2025-07-13T19:27:03.194Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "40154663440",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-07-16T05:29:06.816Z",
+ "archived": false,
+ "id": "40297151772",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-16T05:29:06.816Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40297151772",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-07-16T11:56:13.418Z",
+ "archived": false,
+ "id": "40312153979",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-16T11:56:13.418Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "40312153979",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-07-16T13:43:43.042Z",
+ "archived": false,
+ "id": "40322190885",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-16T13:43:43.042Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "40322190885",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-16T15:29:12.525Z",
+ "archived": false,
+ "id": "40326223268",
+ "properties": {
+ "amount": "4.22",
+ "createdate": "2025-07-16T15:29:12.525Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "40326223268",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-07-16T16:35:54.168Z",
+ "archived": false,
+ "id": "40332153441",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-16T16:35:54.168Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "40332153441",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-07-17T10:40:10.832Z",
+ "archived": false,
+ "id": "40356174907",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-17T10:40:10.832Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40356174907",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-07-17T18:53:13.425Z",
+ "archived": false,
+ "id": "40411877968",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-07-17T18:53:13.425Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40411877968",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-07-19T06:51:18.752Z",
+ "archived": false,
+ "id": "40483957059",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-19T06:51:18.752Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.559Z",
+ "hs_object_id": "40483957059",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.559Z"
+ },
+ {
+ "createdAt": "2025-07-19T06:55:17.242Z",
+ "archived": false,
+ "id": "40489548728",
+ "properties": {
+ "amount": "84.00",
+ "createdate": "2025-07-19T06:55:17.242Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "40489548728",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-07-20T01:14:32.647Z",
+ "archived": false,
+ "id": "40518705722",
+ "properties": {
+ "amount": "2.00",
+ "createdate": "2025-07-20T01:14:32.647Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40518705722",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.875Z"
+ },
+ {
+ "createdAt": "2025-07-21T15:04:20.221Z",
+ "archived": false,
+ "id": "40575552537",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-21T15:04:20.221Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40575552537",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-07-22T16:34:06.118Z",
+ "archived": false,
+ "id": "40673678107",
+ "properties": {
+ "amount": "60.00",
+ "createdate": "2025-07-22T16:34:06.118Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:17.324Z",
+ "hs_object_id": "40673678107",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:17.324Z"
+ },
+ {
+ "createdAt": "2025-07-24T15:37:31.935Z",
+ "archived": false,
+ "id": "40760201012",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-24T15:37:31.935Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T20:09:29.281Z",
+ "hs_object_id": "40760201012",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T20:09:29.281Z"
+ },
+ {
+ "createdAt": "2025-07-25T13:29:23.122Z",
+ "archived": false,
+ "id": "40828495681",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-25T13:29:23.122Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-25T13:34:44.342Z",
+ "hs_object_id": "40828495681",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-25T13:34:44.342Z"
+ },
+ {
+ "createdAt": "2025-07-27T22:10:02.064Z",
+ "archived": false,
+ "id": "40923075914",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-27T22:10:02.064Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T22:11:11.229Z",
+ "hs_object_id": "40923075914",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T22:11:11.229Z"
+ },
+ {
+ "createdAt": "2025-07-27T23:13:41.447Z",
+ "archived": false,
+ "id": "40920368559",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-27T23:13:41.447Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T23:29:51.405Z",
+ "hs_object_id": "40920368559",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T23:29:51.405Z"
+ },
+ {
+ "createdAt": "2025-07-27T23:37:17.208Z",
+ "archived": false,
+ "id": "40939385523",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-27T23:37:17.208Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T23:53:29.400Z",
+ "hs_object_id": "40939385523",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T23:53:29.400Z"
+ },
+ {
+ "createdAt": "2025-07-28T13:08:24.566Z",
+ "archived": false,
+ "id": "40974422184",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-28T13:08:24.566Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-28T13:12:00.142Z",
+ "hs_object_id": "40974422184",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-28T13:12:00.142Z"
+ },
+ {
+ "createdAt": "2025-07-30T15:30:49.834Z",
+ "archived": false,
+ "id": "41068945962",
+ "properties": {
+ "amount": "40.00",
+ "createdate": "2025-07-30T15:30:49.834Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-30T15:36:52.801Z",
+ "hs_object_id": "41068945962",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-30T15:36:52.801Z"
+ },
+ {
+ "createdAt": "2025-07-31T06:45:07.226Z",
+ "archived": false,
+ "id": "41101724708",
+ "properties": {
+ "amount": "1.50",
+ "createdate": "2025-07-31T06:45:07.226Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T07:01:19.465Z",
+ "hs_object_id": "41101724708",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T07:01:19.465Z"
+ },
+ {
+ "createdAt": "2025-07-31T16:16:02.461Z",
+ "archived": false,
+ "id": "41129617778",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-31T16:16:02.461Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T16:17:52.812Z",
+ "hs_object_id": "41129617778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T16:17:52.812Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:02:04.442Z",
+ "archived": false,
+ "id": "41187758140",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:02:04.442Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T17:04:08.293Z",
+ "hs_object_id": "41187758140",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T17:04:08.293Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:55:21.724Z",
+ "archived": false,
+ "id": "41190839594",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:55:21.724Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T18:12:00.848Z",
+ "hs_object_id": "41190839594",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T18:12:00.848Z"
+ },
+ {
+ "createdAt": "2025-08-01T20:25:03.314Z",
+ "archived": false,
+ "id": "41193909518",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-01T20:25:03.314Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T20:41:24.769Z",
+ "hs_object_id": "41193909518",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T20:41:24.769Z"
+ },
+ {
+ "createdAt": "2025-08-04T08:53:39.504Z",
+ "archived": false,
+ "id": "41312378735",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-04T08:53:39.504Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T09:09:47.696Z",
+ "hs_object_id": "41312378735",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T09:09:47.696Z"
+ },
+ {
+ "createdAt": "2025-08-04T13:25:04.371Z",
+ "archived": false,
+ "id": "41298486314",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-04T13:25:04.371Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.608Z",
+ "hs_object_id": "41298486314",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.608Z"
+ },
+ {
+ "createdAt": "2025-08-04T23:29:01.565Z",
+ "archived": false,
+ "id": "41368915729",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-04T23:29:01.565Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T23:45:11.444Z",
+ "hs_object_id": "41368915729",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T23:45:11.444Z"
+ },
+ {
+ "createdAt": "2025-08-05T16:44:09.911Z",
+ "archived": false,
+ "id": "41357901724",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-05T16:44:09.911Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-05T17:01:56.435Z",
+ "hs_object_id": "41357901724",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-05T17:01:56.435Z"
+ },
+ {
+ "createdAt": "2025-08-07T09:21:23.756Z",
+ "archived": false,
+ "id": "41527070984",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-08-07T09:21:23.756Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-07T09:37:40.633Z",
+ "hs_object_id": "41527070984",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-07T09:37:40.633Z"
+ },
+ {
+ "createdAt": "2025-08-08T06:39:07.779Z",
+ "archived": false,
+ "id": "41564803453",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-08T06:39:07.779Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T06:40:17.889Z",
+ "hs_object_id": "41564803453",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T06:40:17.889Z"
}
],
"monthlyDeals": [
{
- "createdAt": "2025-04-18T09:54:45.965Z",
+ "createdAt": "2025-04-18T09:54:45.965Z",
+ "archived": false,
+ "id": "35891295603",
+ "properties": {
+ "amount": "240.00",
+ "createdate": "2025-04-18T09:54:45.965Z",
+ "dealname": "Level-up the Variable Explorer: Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.264Z",
+ "hs_object_id": "35891295603",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.264Z"
+ },
+ {
+ "createdAt": "2025-04-27T19:47:18.244Z",
+ "archived": false,
+ "id": "36356682525",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-04-27T19:47:18.244Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "36356682525",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-06-19T17:18:48.724Z",
+ "archived": false,
+ "id": "39066297134",
+ "properties": {
+ "amount": "120.00",
+ "createdate": "2025-06-19T17:18:48.724Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.329Z",
+ "hs_object_id": "39066297134",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.329Z"
+ },
+ {
+ "createdAt": "2025-07-13T19:27:03.194Z",
+ "archived": false,
+ "id": "40154663440",
+ "properties": {
+ "amount": "36.00",
+ "createdate": "2025-07-13T19:27:03.194Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "40154663440",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-07-19T06:55:17.242Z",
+ "archived": false,
+ "id": "40489548728",
+ "properties": {
+ "amount": "84.00",
+ "createdate": "2025-07-19T06:55:17.242Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "40489548728",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-07-22T16:34:06.118Z",
+ "archived": false,
+ "id": "40673678107",
+ "properties": {
+ "amount": "60.00",
+ "createdate": "2025-07-22T16:34:06.118Z",
+ "dealname": "Spyder Monthly via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:17.324Z",
+ "hs_object_id": "40673678107",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:17.324Z"
+ }
+ ],
+ "oneTimeDeals": [
+ {
+ "createdAt": "2024-11-05T15:27:55.386Z",
+ "archived": false,
+ "id": "28743099954",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2024-11-05T15:27:55.386Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "28743099954",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2024-12-31T20:59:52.585Z",
+ "archived": false,
+ "id": "31266008965",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2024-12-31T20:59:52.585Z",
+ "dealname": "Spyder One-Time Donation via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "31266008965",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-01-09T08:35:04.408Z",
+ "archived": false,
+ "id": "31704199823",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-01-09T08:35:04.408Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "31704199823",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-03-30T21:19:04.375Z",
+ "archived": false,
+ "id": "35240642058",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-03-30T21:19:04.375Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-02T18:55:16.425Z",
+ "hs_object_id": "35240642058",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-02T18:55:16.425Z"
+ },
+ {
+ "createdAt": "2025-04-09T15:18:48.599Z",
+ "archived": false,
+ "id": "35594316619",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-09T15:18:48.599Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "35594316619",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-04-09T17:22:23.099Z",
+ "archived": false,
+ "id": "35625727668",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-09T17:22:23.099Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "35625727668",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-04-13T07:53:27.488Z",
+ "archived": false,
+ "id": "35711256670",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-04-13T07:53:27.488Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "35711256670",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-04-14T01:13:19.442Z",
+ "archived": false,
+ "id": "35723857267",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-14T01:13:19.442Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "35723857267",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.875Z"
+ },
+ {
+ "createdAt": "2025-04-17T16:54:31.545Z",
+ "archived": false,
+ "id": "35859805840",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-04-17T16:54:31.545Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "35859805840",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-04-17T20:57:16.478Z",
+ "archived": false,
+ "id": "35836379945",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-04-17T20:57:16.478Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.062Z",
+ "hs_object_id": "35836379945",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.062Z"
+ },
+ {
+ "createdAt": "2025-04-18T12:37:06.036Z",
+ "archived": false,
+ "id": "35895389081",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-18T12:37:06.036Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.504Z",
+ "hs_object_id": "35895389081",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:46.504Z"
+ },
+ {
+ "createdAt": "2025-04-18T12:55:14.989Z",
+ "archived": false,
+ "id": "35880854290",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-18T12:55:14.989Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "35880854290",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-04-18T15:45:54.411Z",
+ "archived": false,
+ "id": "35897730114",
+ "properties": {
+ "amount": "40.00",
+ "createdate": "2025-04-18T15:45:54.411Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "35897730114",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-04-19T21:45:52.198Z",
+ "archived": false,
+ "id": "35937273359",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-19T21:45:52.198Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "35937273359",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-04-20T08:12:12.733Z",
+ "archived": false,
+ "id": "35953158972",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-04-20T08:12:12.733Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "35953158972",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-04-21T02:57:49.957Z",
+ "archived": false,
+ "id": "35995991825",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-04-21T02:57:49.957Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.233Z",
+ "hs_object_id": "35995991825",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.233Z"
+ },
+ {
+ "createdAt": "2025-04-22T05:24:45.122Z",
+ "archived": false,
+ "id": "36051856705",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-04-22T05:24:45.122Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.491Z",
+ "hs_object_id": "36051856705",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.491Z"
+ },
+ {
+ "createdAt": "2025-04-23T12:01:37.506Z",
+ "archived": false,
+ "id": "36115001092",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-23T12:01:37.506Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "36115001092",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-04-23T22:14:59.735Z",
+ "archived": false,
+ "id": "36145295911",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-23T22:14:59.735Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "36145295911",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-04-24T07:00:32.701Z",
+ "archived": false,
+ "id": "36166714949",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-04-24T07:00:32.701Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "36166714949",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-04-27T20:51:17.893Z",
+ "archived": false,
+ "id": "36343578784",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-04-27T20:51:17.893Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36343578784",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-04-27T22:24:59.927Z",
+ "archived": false,
+ "id": "36343582855",
+ "properties": {
+ "amount": "17.00",
+ "createdate": "2025-04-27T22:24:59.927Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36343582855",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-04-28T13:25:54.714Z",
+ "archived": false,
+ "id": "36415253077",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-04-28T13:25:54.714Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "36415253077",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-04-29T17:03:41.997Z",
+ "archived": false,
+ "id": "36538113559",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-04-29T17:03:41.997Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36538113559",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-03T09:46:35.819Z",
+ "archived": false,
+ "id": "36669741836",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-03T09:46:35.819Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.659Z",
+ "hs_object_id": "36669741836",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.659Z"
+ },
+ {
+ "createdAt": "2025-05-03T11:31:49.309Z",
+ "archived": false,
+ "id": "36669445015",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-05-03T11:31:49.309Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "36669445015",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-05-04T01:52:57.487Z",
+ "archived": false,
+ "id": "36667340080",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-05-04T01:52:57.487Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.889Z",
+ "hs_object_id": "36667340080",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.889Z"
+ },
+ {
+ "createdAt": "2025-05-04T12:45:20.458Z",
+ "archived": false,
+ "id": "36680225375",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T12:45:20.458Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.512Z",
+ "hs_object_id": "36680225375",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.512Z"
+ },
+ {
+ "createdAt": "2025-05-04T18:50:16.137Z",
+ "archived": false,
+ "id": "36672569189",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-04T18:50:16.137Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36672569189",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-04T21:55:20.178Z",
+ "archived": false,
+ "id": "36687533695",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-04T21:55:20.178Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.471Z",
+ "hs_object_id": "36687533695",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.471Z"
+ },
+ {
+ "createdAt": "2025-05-06T20:46:16.006Z",
+ "archived": false,
+ "id": "36834640221",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-05-06T20:46:16.006Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "36834640221",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-05-08T11:00:42.052Z",
+ "archived": false,
+ "id": "36896574053",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-08T11:00:42.052Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "36896574053",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-05-09T09:27:10.023Z",
+ "archived": false,
+ "id": "36964765007",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-09T09:27:10.023Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "36964765007",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-09T17:48:47.939Z",
+ "archived": false,
+ "id": "36989563671",
+ "properties": {
+ "amount": "2.00",
+ "createdate": "2025-05-09T17:48:47.939Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "36989563671",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-05-10T15:55:00.982Z",
+ "archived": false,
+ "id": "37026677833",
+ "properties": {
+ "amount": "1.00",
+ "createdate": "2025-05-10T15:55:00.982Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "37026677833",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-11T08:23:17.592Z",
+ "archived": false,
+ "id": "37009328415",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-11T08:23:17.592Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "37009328415",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-05-12T15:21:05.818Z",
+ "archived": false,
+ "id": "37107403591",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-12T15:21:05.818Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.144Z",
+ "hs_object_id": "37107403591",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.144Z"
+ },
+ {
+ "createdAt": "2025-05-12T19:58:11.880Z",
+ "archived": false,
+ "id": "37127637853",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-12T19:58:11.880Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.698Z",
+ "hs_object_id": "37127637853",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.698Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:02:04.415Z",
+ "archived": false,
+ "id": "37143810663",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-13T13:02:04.415Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37143810663",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T13:07:51.758Z",
+ "archived": false,
+ "id": "37124041893",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-13T13:07:51.758Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37124041893",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-13T18:02:30.876Z",
+ "archived": false,
+ "id": "37131599656",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-13T18:02:30.876Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.926Z",
+ "hs_object_id": "37131599656",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.926Z"
+ },
+ {
+ "createdAt": "2025-05-18T20:50:32.354Z",
+ "archived": false,
+ "id": "37395734026",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-18T20:50:32.354Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "37395734026",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-05-19T01:50:44.429Z",
+ "archived": false,
+ "id": "37406526815",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-19T01:50:44.429Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:19.473Z",
+ "hs_object_id": "37406526815",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:19.473Z"
+ },
+ {
+ "createdAt": "2025-05-20T13:36:54.271Z",
+ "archived": false,
+ "id": "37472200612",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-20T13:36:54.271Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.124Z",
+ "hs_object_id": "37472200612",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.124Z"
+ },
+ {
+ "createdAt": "2025-05-23T03:37:00.394Z",
+ "archived": false,
+ "id": "37765132904",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-05-23T03:37:00.394Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:46.643Z",
+ "hs_object_id": "37765132904",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:46.643Z"
+ },
+ {
+ "createdAt": "2025-05-24T15:35:23.080Z",
+ "archived": false,
+ "id": "37885719047",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T15:35:23.080Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "37885719047",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-24T17:37:55.015Z",
+ "archived": false,
+ "id": "37931379865",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-24T17:37:55.015Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.406Z",
+ "hs_object_id": "37931379865",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.406Z"
+ },
+ {
+ "createdAt": "2025-05-27T06:41:32.116Z",
+ "archived": false,
+ "id": "37987691528",
+ "properties": {
+ "amount": "30.00",
+ "createdate": "2025-05-27T06:41:32.116Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.028Z",
+ "hs_object_id": "37987691528",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.028Z"
+ },
+ {
+ "createdAt": "2025-05-27T18:16:34.026Z",
+ "archived": false,
+ "id": "38051227649",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-27T18:16:34.026Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38051227649",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T14:26:32.206Z",
+ "archived": false,
+ "id": "38144782927",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-05-29T14:26:32.206Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.880Z",
+ "hs_object_id": "38144782927",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.880Z"
+ },
+ {
+ "createdAt": "2025-05-29T15:17:00.173Z",
+ "archived": false,
+ "id": "38158417666",
+ "properties": {
+ "amount": "11.50",
+ "createdate": "2025-05-29T15:17:00.173Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "38158417666",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-05-29T16:11:38.397Z",
+ "archived": false,
+ "id": "38210604426",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-29T16:11:38.397Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.172Z",
+ "hs_object_id": "38210604426",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.172Z"
+ },
+ {
+ "createdAt": "2025-05-30T14:58:43.205Z",
+ "archived": false,
+ "id": "38249483330",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-05-30T14:58:43.205Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:46.401Z",
+ "hs_object_id": "38249483330",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:46.401Z"
+ },
+ {
+ "createdAt": "2025-05-30T17:58:06.202Z",
+ "archived": false,
+ "id": "38268635719",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-05-30T17:58:06.202Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T20:06:55.080Z",
+ "hs_object_id": "38268635719",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-08T20:06:55.080Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:47:45.421Z",
+ "archived": false,
+ "id": "38311123737",
+ "properties": {
+ "amount": "500.00",
+ "createdate": "2025-06-02T08:47:45.421Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38311123737",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:54:26.976Z",
+ "archived": false,
+ "id": "38311479139",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:54:26.976Z",
+ "dealname": "New Viewer pane: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:23.844Z",
+ "hs_object_id": "38311479139",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:23.844Z"
+ },
+ {
+ "createdAt": "2025-06-02T08:56:26.660Z",
+ "archived": false,
+ "id": "38311673672",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T08:56:26.660Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:14.338Z",
+ "hs_object_id": "38311673672",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:14.338Z"
+ },
+ {
+ "createdAt": "2025-06-02T22:08:40.929Z",
+ "archived": false,
+ "id": "38329891970",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-02T22:08:40.929Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.260Z",
+ "hs_object_id": "38329891970",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.260Z"
+ },
+ {
+ "createdAt": "2025-06-03T11:35:05.893Z",
+ "archived": false,
+ "id": "38346856226",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-03T11:35:05.893Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.589Z",
+ "hs_object_id": "38346856226",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.589Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:04:56.187Z",
+ "archived": false,
+ "id": "38347530406",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-03T12:04:56.187Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "38347530406",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-03T12:50:53.610Z",
+ "archived": false,
+ "id": "38345333847",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-03T12:50:53.610Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38345333847",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-05T13:05:05.441Z",
+ "archived": false,
+ "id": "38528449603",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-05T13:05:05.441Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "38528449603",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-06-07T14:44:48.802Z",
+ "archived": false,
+ "id": "38616040627",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-07T14:44:48.802Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.693Z",
+ "hs_object_id": "38616040627",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.693Z"
+ },
+ {
+ "createdAt": "2025-06-08T00:09:03.366Z",
+ "archived": false,
+ "id": "38624297779",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-08T00:09:03.366Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "38624297779",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.021Z"
+ },
+ {
+ "createdAt": "2025-06-09T17:44:07.802Z",
+ "archived": false,
+ "id": "38665140076",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-09T17:44:07.802Z",
+ "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:12:11.215Z",
+ "hs_object_id": "38665140076",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:12:11.215Z"
+ },
+ {
+ "createdAt": "2025-06-10T16:55:51.897Z",
+ "archived": false,
+ "id": "38729804081",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-10T16:55:51.897Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.520Z",
+ "hs_object_id": "38729804081",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.520Z"
+ },
+ {
+ "createdAt": "2025-06-11T23:45:34.958Z",
+ "archived": false,
+ "id": "38788725328",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-11T23:45:34.958Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38788725328",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-12T22:03:20.494Z",
+ "archived": false,
+ "id": "38825619778",
+ "properties": {
+ "amount": "35.00",
+ "createdate": "2025-06-12T22:03:20.494Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "38825619778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-13T03:32:18.747Z",
+ "archived": false,
+ "id": "38829177434",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-13T03:32:18.747Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "38829177434",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-06-15T12:21:32.605Z",
+ "archived": false,
+ "id": "38898539399",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-15T12:21:32.605Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "38898539399",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-17T00:59:25.566Z",
+ "archived": false,
+ "id": "38953988654",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-17T00:59:25.566Z",
+ "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:11:42.564Z",
+ "hs_object_id": "38953988654",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:11:42.564Z"
+ },
+ {
+ "createdAt": "2025-06-19T06:50:29.250Z",
+ "archived": false,
+ "id": "39058692022",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-19T06:50:29.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "39058692022",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-06-21T12:43:48.468Z",
+ "archived": false,
+ "id": "39108670994",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-21T12:43:48.468Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39108670994",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-23T19:29:48.687Z",
+ "archived": false,
+ "id": "39239432817",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-06-23T19:29:48.687Z",
+ "dealname": "Smarter code completion: One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T01:10:48.967Z",
+ "hs_object_id": "39239432817",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T01:10:48.967Z"
+ },
+ {
+ "createdAt": "2025-06-24T16:56:48.203Z",
+ "archived": false,
+ "id": "39256894309",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-24T16:56:48.203Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "39256894309",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-06-25T06:43:06.292Z",
+ "archived": false,
+ "id": "39267967832",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-06-25T06:43:06.292Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39267967832",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-25T08:32:28.479Z",
+ "archived": false,
+ "id": "39269837706",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-25T08:32:28.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.313Z",
+ "hs_object_id": "39269837706",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.313Z"
+ },
+ {
+ "createdAt": "2025-06-25T09:51:37.418Z",
+ "archived": false,
+ "id": "39264318101",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-25T09:51:37.418Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.368Z",
+ "hs_object_id": "39264318101",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.368Z"
+ },
+ {
+ "createdAt": "2025-06-26T00:30:12.249Z",
+ "archived": false,
+ "id": "39292536602",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-26T00:30:12.249Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "39292536602",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-06-26T08:48:28.967Z",
+ "archived": false,
+ "id": "39309125394",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-06-26T08:48:28.967Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39309125394",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.901Z"
+ },
+ {
+ "createdAt": "2025-06-29T12:07:41.551Z",
+ "archived": false,
+ "id": "39457053587",
+ "properties": {
+ "amount": "200.00",
+ "createdate": "2025-06-29T12:07:41.551Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "39457053587",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.965Z"
+ },
+ {
+ "createdAt": "2025-06-29T13:39:44.175Z",
+ "archived": false,
+ "id": "39457548821",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-06-29T13:39:44.175Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.927Z",
+ "hs_object_id": "39457548821",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.927Z"
+ },
+ {
+ "createdAt": "2025-06-29T15:15:12.289Z",
+ "archived": false,
+ "id": "39464411980",
+ "properties": {
+ "amount": "100.00",
+ "createdate": "2025-06-29T15:15:12.289Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.949Z",
+ "hs_object_id": "39464411980",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.949Z"
+ },
+ {
+ "createdAt": "2025-06-30T18:05:45.510Z",
+ "archived": false,
+ "id": "39514245985",
+ "properties": {
+ "amount": "10.00",
+ "createdate": "2025-06-30T18:05:45.510Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.688Z",
+ "hs_object_id": "39514245985",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.688Z"
+ },
+ {
+ "createdAt": "2025-07-02T13:34:52.479Z",
+ "archived": false,
+ "id": "39607572819",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-02T13:34:52.479Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "39607572819",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.003Z"
+ },
+ {
+ "createdAt": "2025-07-03T07:00:40.910Z",
"archived": false,
- "id": "35891295603",
+ "id": "39636448605",
"properties": {
- "amount": "240.00",
- "createdate": "2025-04-18T09:54:45.965Z",
- "dealname": "Level-up the Variable Explorer: Monthly via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:41.193Z",
- "hs_object_id": "35891295603",
- "pipeline": "691999256"
+ "amount": "20.00",
+ "createdate": "2025-07-03T07:00:40.910Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39636448605",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:41.193Z"
- }
- ],
- "oneTimeDeals": [
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
{
- "createdAt": "2024-11-05T15:27:55.386Z",
+ "createdAt": "2025-07-04T17:15:07.495Z",
"archived": false,
- "id": "28743099954",
+ "id": "39698037686",
"properties": {
- "amount": "30.00",
- "createdate": "2024-11-05T15:27:55.386Z",
+ "amount": "100.00",
+ "createdate": "2025-07-04T17:15:07.495Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:12.602Z",
- "hs_object_id": "28743099954",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.901Z",
+ "hs_object_id": "39698037686",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:12.602Z"
+ "updatedAt": "2025-07-24T00:49:47.901Z"
},
{
- "createdAt": "2024-12-31T20:59:52.585Z",
+ "createdAt": "2025-07-06T13:21:20.114Z",
"archived": false,
- "id": "31266008965",
+ "id": "39768507694",
"properties": {
- "amount": "25.00",
- "createdate": "2024-12-31T20:59:52.585Z",
- "dealname": "Spyder One-Time Donation via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:16.598Z",
- "hs_object_id": "31266008965",
- "pipeline": "691999256"
+ "amount": "10.00",
+ "createdate": "2025-07-06T13:21:20.114Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39768507694",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:16.598Z"
+ "updatedAt": "2025-07-24T00:49:46.025Z"
},
{
- "createdAt": "2025-01-09T08:35:04.408Z",
+ "createdAt": "2025-07-07T07:24:09.664Z",
"archived": false,
- "id": "31704199823",
+ "id": "39805299124",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-07T07:24:09.664Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.025Z",
+ "hs_object_id": "39805299124",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.025Z"
+ },
+ {
+ "createdAt": "2025-07-08T06:47:49.250Z",
+ "archived": false,
+ "id": "39848597854",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-08T06:47:49.250Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:49.496Z",
+ "hs_object_id": "39848597854",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:49.496Z"
+ },
+ {
+ "createdAt": "2025-07-08T08:36:11.581Z",
+ "archived": false,
+ "id": "39842480413",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-08T08:36:11.581Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "39842480413",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.301Z"
+ },
+ {
+ "createdAt": "2025-07-10T05:21:17.733Z",
+ "archived": false,
+ "id": "39925390942",
"properties": {
"amount": "15.00",
- "createdate": "2025-01-09T08:35:04.408Z",
+ "createdate": "2025-07-10T05:21:17.733Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:07.657Z",
- "hs_object_id": "31704199823",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.021Z",
+ "hs_object_id": "39925390942",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:07.657Z"
+ "updatedAt": "2025-07-24T00:49:48.021Z"
},
{
- "createdAt": "2025-03-30T21:19:04.375Z",
+ "createdAt": "2025-07-10T09:44:33.152Z",
"archived": false,
- "id": "35240642058",
+ "id": "39940834582",
"properties": {
- "amount": "5.00",
- "createdate": "2025-03-30T21:19:04.375Z",
- "dealname": "New Viewer pane: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:36:02.679Z",
- "hs_object_id": "35240642058",
- "pipeline": "691999256"
+ "amount": "20.00",
+ "createdate": "2025-07-10T09:44:33.152Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39940834582",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:36:02.679Z"
+ "updatedAt": "2025-07-24T00:49:47.982Z"
},
{
- "createdAt": "2025-04-09T15:18:48.599Z",
+ "createdAt": "2025-07-10T16:39:46.401Z",
"archived": false,
- "id": "35594316619",
+ "id": "39980252809",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-07-10T16:39:46.401Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "39980252809",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.982Z"
+ },
+ {
+ "createdAt": "2025-07-11T18:56:19.214Z",
+ "archived": false,
+ "id": "40012499753",
+ "properties": {
+ "amount": "50.00",
+ "createdate": "2025-07-11T18:56:19.214Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.031Z",
+ "hs_object_id": "40012499753",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.031Z"
+ },
+ {
+ "createdAt": "2025-07-12T03:08:09.584Z",
+ "archived": false,
+ "id": "40059678258",
"properties": {
"amount": "10.00",
- "createdate": "2025-04-09T15:18:48.599Z",
+ "createdate": "2025-07-12T03:08:09.584Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:54.992Z",
- "hs_object_id": "35594316619",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40059678258",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:54.992Z"
+ "updatedAt": "2025-07-24T00:49:47.875Z"
},
{
- "createdAt": "2025-04-09T17:22:23.099Z",
+ "createdAt": "2025-07-12T12:21:04.666Z",
"archived": false,
- "id": "35625727668",
+ "id": "40086290944",
"properties": {
"amount": "20.00",
- "createdate": "2025-04-09T17:22:23.099Z",
+ "createdate": "2025-07-12T12:21:04.666Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:35:49.454Z",
- "hs_object_id": "35625727668",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40086290944",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:35:49.454Z"
+ "updatedAt": "2025-07-24T00:49:46.094Z"
},
{
- "createdAt": "2025-04-13T07:53:27.488Z",
+ "createdAt": "2025-07-12T16:14:21.272Z",
"archived": false,
- "id": "35711256670",
+ "id": "40100062839",
+ "properties": {
+ "amount": "3.00",
+ "createdate": "2025-07-12T16:14:21.272Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.094Z",
+ "hs_object_id": "40100062839",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:46.094Z"
+ },
+ {
+ "createdAt": "2025-07-16T05:29:06.816Z",
+ "archived": false,
+ "id": "40297151772",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-16T05:29:06.816Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40297151772",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:47.824Z"
+ },
+ {
+ "createdAt": "2025-07-16T11:56:13.418Z",
+ "archived": false,
+ "id": "40312153979",
"properties": {
"amount": "25.00",
- "createdate": "2025-04-13T07:53:27.488Z",
+ "createdate": "2025-07-16T11:56:13.418Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:32:09.288Z",
- "hs_object_id": "35711256670",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.003Z",
+ "hs_object_id": "40312153979",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:32:09.288Z"
+ "updatedAt": "2025-07-24T00:49:48.003Z"
},
{
- "createdAt": "2025-04-14T01:13:19.442Z",
+ "createdAt": "2025-07-16T13:43:43.042Z",
"archived": false,
- "id": "35723857267",
+ "id": "40322190885",
"properties": {
- "amount": "20.00",
- "createdate": "2025-04-14T01:13:19.442Z",
+ "amount": "25.00",
+ "createdate": "2025-07-16T13:43:43.042Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:59.781Z",
- "hs_object_id": "35723857267",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.982Z",
+ "hs_object_id": "40322190885",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:59.781Z"
+ "updatedAt": "2025-07-24T00:49:47.982Z"
},
{
- "createdAt": "2025-04-17T16:54:31.545Z",
+ "createdAt": "2025-07-16T15:29:12.525Z",
"archived": false,
- "id": "35859805840",
+ "id": "40326223268",
+ "properties": {
+ "amount": "4.22",
+ "createdate": "2025-07-16T15:29:12.525Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:48.015Z",
+ "hs_object_id": "40326223268",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-24T00:49:48.015Z"
+ },
+ {
+ "createdAt": "2025-07-16T16:35:54.168Z",
+ "archived": false,
+ "id": "40332153441",
"properties": {
"amount": "5.00",
- "createdate": "2025-04-17T16:54:31.545Z",
+ "createdate": "2025-07-16T16:35:54.168Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:49.060Z",
- "hs_object_id": "35859805840",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.301Z",
+ "hs_object_id": "40332153441",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:49.060Z"
+ "updatedAt": "2025-07-24T00:49:46.301Z"
},
{
- "createdAt": "2025-04-17T20:57:16.478Z",
+ "createdAt": "2025-07-17T10:40:10.832Z",
"archived": false,
- "id": "35836379945",
+ "id": "40356174907",
"properties": {
"amount": "50.00",
- "createdate": "2025-04-17T20:57:16.478Z",
+ "createdate": "2025-07-17T10:40:10.832Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:45.183Z",
- "hs_object_id": "35836379945",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.824Z",
+ "hs_object_id": "40356174907",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:45.183Z"
+ "updatedAt": "2025-07-24T00:49:47.824Z"
},
{
- "createdAt": "2025-04-18T12:37:06.036Z",
+ "createdAt": "2025-07-17T18:53:13.425Z",
"archived": false,
- "id": "35895389081",
+ "id": "40411877968",
"properties": {
"amount": "10.00",
- "createdate": "2025-04-18T12:37:06.036Z",
- "dealname": "Supercharge syntax highlighting: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:32.206Z",
- "hs_object_id": "35895389081",
- "pipeline": "691999256"
+ "createdate": "2025-07-17T18:53:13.425Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40411877968",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:32.206Z"
+ "updatedAt": "2025-07-24T00:49:47.965Z"
},
{
- "createdAt": "2025-04-18T12:55:14.989Z",
+ "createdAt": "2025-07-19T06:51:18.752Z",
"archived": false,
- "id": "35880854290",
+ "id": "40483957059",
"properties": {
- "amount": "20.00",
- "createdate": "2025-04-18T12:55:14.989Z",
+ "amount": "50.00",
+ "createdate": "2025-07-19T06:51:18.752Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:24.725Z",
- "hs_object_id": "35880854290",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:46.559Z",
+ "hs_object_id": "40483957059",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:24.725Z"
+ "updatedAt": "2025-07-24T00:49:46.559Z"
},
{
- "createdAt": "2025-04-18T15:45:54.411Z",
+ "createdAt": "2025-07-20T01:14:32.647Z",
"archived": false,
- "id": "35897730114",
+ "id": "40518705722",
"properties": {
- "amount": "40.00",
- "createdate": "2025-04-18T15:45:54.411Z",
+ "amount": "2.00",
+ "createdate": "2025-07-20T01:14:32.647Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:22.102Z",
- "hs_object_id": "35897730114",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.875Z",
+ "hs_object_id": "40518705722",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:22.102Z"
+ "updatedAt": "2025-07-24T00:49:47.875Z"
},
{
- "createdAt": "2025-04-19T21:45:52.198Z",
+ "createdAt": "2025-07-21T15:04:20.221Z",
"archived": false,
- "id": "35937273359",
+ "id": "40575552537",
"properties": {
- "amount": "10.00",
- "createdate": "2025-04-19T21:45:52.198Z",
+ "amount": "50.00",
+ "createdate": "2025-07-21T15:04:20.221Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:18.160Z",
- "hs_object_id": "35937273359",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T00:49:47.965Z",
+ "hs_object_id": "40575552537",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:18.160Z"
+ "updatedAt": "2025-07-24T00:49:47.965Z"
},
{
- "createdAt": "2025-04-20T08:12:12.733Z",
+ "createdAt": "2025-07-24T15:37:31.935Z",
"archived": false,
- "id": "35953158972",
+ "id": "40760201012",
"properties": {
"amount": "50.00",
- "createdate": "2025-04-20T08:12:12.733Z",
+ "createdate": "2025-07-24T15:37:31.935Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:15.581Z",
- "hs_object_id": "35953158972",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-24T20:09:29.281Z",
+ "hs_object_id": "40760201012",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:15.581Z"
+ "updatedAt": "2025-07-24T20:09:29.281Z"
},
{
- "createdAt": "2025-04-21T02:57:49.957Z",
+ "createdAt": "2025-07-25T13:29:23.122Z",
"archived": false,
- "id": "35995991825",
+ "id": "40828495681",
"properties": {
- "amount": "10.00",
- "createdate": "2025-04-21T02:57:49.957Z",
- "dealname": "Level-up the Variable Explorer: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:45.427Z",
- "hs_object_id": "35995991825",
- "pipeline": "691999256"
+ "amount": "50.00",
+ "createdate": "2025-07-25T13:29:23.122Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-25T13:34:44.342Z",
+ "hs_object_id": "40828495681",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:45.427Z"
+ "updatedAt": "2025-07-25T13:34:44.342Z"
},
{
- "createdAt": "2025-04-22T05:24:45.122Z",
+ "createdAt": "2025-07-27T22:10:02.064Z",
"archived": false,
- "id": "36051856705",
+ "id": "40923075914",
"properties": {
- "amount": "15.00",
- "createdate": "2025-04-22T05:24:45.122Z",
+ "amount": "20.00",
+ "createdate": "2025-07-27T22:10:02.064Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T22:11:11.229Z",
+ "hs_object_id": "40923075914",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T22:11:11.229Z"
+ },
+ {
+ "createdAt": "2025-07-27T23:13:41.447Z",
+ "archived": false,
+ "id": "40920368559",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-27T23:13:41.447Z",
"dealname": "Smarter code completion: One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:10.003Z",
- "hs_object_id": "36051856705",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-07-27T23:29:51.405Z",
+ "hs_object_id": "40920368559",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:10.003Z"
+ "updatedAt": "2025-07-27T23:29:51.405Z"
},
{
- "createdAt": "2025-04-23T12:01:37.506Z",
+ "createdAt": "2025-07-27T23:37:17.208Z",
"archived": false,
- "id": "36115001092",
+ "id": "40939385523",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-07-27T23:37:17.208Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-27T23:53:29.400Z",
+ "hs_object_id": "40939385523",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-27T23:53:29.400Z"
+ },
+ {
+ "createdAt": "2025-07-28T13:08:24.566Z",
+ "archived": false,
+ "id": "40974422184",
+ "properties": {
+ "amount": "15.00",
+ "createdate": "2025-07-28T13:08:24.566Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-28T13:12:00.142Z",
+ "hs_object_id": "40974422184",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-28T13:12:00.142Z"
+ },
+ {
+ "createdAt": "2025-07-30T15:30:49.834Z",
+ "archived": false,
+ "id": "41068945962",
+ "properties": {
+ "amount": "40.00",
+ "createdate": "2025-07-30T15:30:49.834Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-30T15:36:52.801Z",
+ "hs_object_id": "41068945962",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-30T15:36:52.801Z"
+ },
+ {
+ "createdAt": "2025-07-31T06:45:07.226Z",
+ "archived": false,
+ "id": "41101724708",
+ "properties": {
+ "amount": "1.50",
+ "createdate": "2025-07-31T06:45:07.226Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T07:01:19.465Z",
+ "hs_object_id": "41101724708",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T07:01:19.465Z"
+ },
+ {
+ "createdAt": "2025-07-31T16:16:02.461Z",
+ "archived": false,
+ "id": "41129617778",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-07-31T16:16:02.461Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-07-31T16:17:52.812Z",
+ "hs_object_id": "41129617778",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-07-31T16:17:52.812Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:02:04.442Z",
+ "archived": false,
+ "id": "41187758140",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:02:04.442Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T17:04:08.293Z",
+ "hs_object_id": "41187758140",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T17:04:08.293Z"
+ },
+ {
+ "createdAt": "2025-08-01T17:55:21.724Z",
+ "archived": false,
+ "id": "41190839594",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-01T17:55:21.724Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T18:12:00.848Z",
+ "hs_object_id": "41190839594",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T18:12:00.848Z"
+ },
+ {
+ "createdAt": "2025-08-01T20:25:03.314Z",
+ "archived": false,
+ "id": "41193909518",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-01T20:25:03.314Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-01T20:41:24.769Z",
+ "hs_object_id": "41193909518",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-01T20:41:24.769Z"
+ },
+ {
+ "createdAt": "2025-08-04T08:53:39.504Z",
+ "archived": false,
+ "id": "41312378735",
+ "properties": {
+ "amount": "25.00",
+ "createdate": "2025-08-04T08:53:39.504Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T09:09:47.696Z",
+ "hs_object_id": "41312378735",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T09:09:47.696Z"
+ },
+ {
+ "createdAt": "2025-08-04T13:25:04.371Z",
+ "archived": false,
+ "id": "41298486314",
+ "properties": {
+ "amount": "5.00",
+ "createdate": "2025-08-04T13:25:04.371Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-04T13:30:15.608Z",
+ "hs_object_id": "41298486314",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-04T13:30:15.608Z"
+ },
+ {
+ "createdAt": "2025-08-04T23:29:01.565Z",
+ "archived": false,
+ "id": "41368915729",
"properties": {
"amount": "20.00",
- "createdate": "2025-04-23T12:01:37.506Z",
+ "createdate": "2025-08-04T23:29:01.565Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-23T15:31:02.812Z",
- "hs_object_id": "36115001092",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-08-04T23:45:11.444Z",
+ "hs_object_id": "41368915729",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-23T15:31:02.812Z"
+ "updatedAt": "2025-08-04T23:45:11.444Z"
},
{
- "createdAt": "2025-04-23T22:14:59.735Z",
+ "createdAt": "2025-08-05T16:44:09.911Z",
"archived": false,
- "id": "36145295911",
+ "id": "41357901724",
"properties": {
"amount": "20.00",
- "createdate": "2025-04-23T22:14:59.735Z",
+ "createdate": "2025-08-05T16:44:09.911Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T02:52:48.630Z",
- "hs_object_id": "36145295911",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-08-05T17:01:56.435Z",
+ "hs_object_id": "41357901724",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T02:52:48.630Z"
+ "updatedAt": "2025-08-05T17:01:56.435Z"
},
{
- "createdAt": "2025-04-24T07:00:32.701Z",
+ "createdAt": "2025-08-07T09:21:23.756Z",
"archived": false,
- "id": "36166714949",
+ "id": "41527070984",
"properties": {
"amount": "50.00",
- "createdate": "2025-04-24T07:00:32.701Z",
+ "createdate": "2025-08-07T09:21:23.756Z",
"dealname": "Spyder One-time via Payment Link",
- "hs_lastmodifieddate": "2025-04-24T07:06:03.130Z",
- "hs_object_id": "36166714949",
- "pipeline": "691999256"
+ "hs_lastmodifieddate": "2025-08-07T09:37:40.633Z",
+ "hs_object_id": "41527070984",
+ "pipeline": "768998503"
+ },
+ "updatedAt": "2025-08-07T09:37:40.633Z"
+ },
+ {
+ "createdAt": "2025-08-08T06:39:07.779Z",
+ "archived": false,
+ "id": "41564803453",
+ "properties": {
+ "amount": "20.00",
+ "createdate": "2025-08-08T06:39:07.779Z",
+ "dealname": "Spyder One-time via Payment Link",
+ "hs_lastmodifieddate": "2025-08-08T06:40:17.889Z",
+ "hs_object_id": "41564803453",
+ "pipeline": "768998503"
},
- "updatedAt": "2025-04-24T07:06:03.130Z"
+ "updatedAt": "2025-08-08T06:40:17.889Z"
}
],
- "totalDonations": 690,
- "totalMonthlyDonations": 240,
- "totalOneTimeDonations": 450,
- "lastUpdated": "2025-04-24T17:59:18.150Z"
+ "totalDonations": 4337.219999999999,
+ "totalMonthlyDonations": 660,
+ "totalOneTimeDonations": 3677.22,
+ "lastUpdated": "2025-08-08T21:06:15.714Z"
}
\ No newline at end of file
diff --git a/static/funding.json b/static/funding.json
new file mode 100644
index 00000000..72bf1ef0
--- /dev/null
+++ b/static/funding.json
@@ -0,0 +1,169 @@
+{
+ "version": "v1.0.0",
+ "entity": {
+ "type": "organisation",
+ "role": "other",
+ "name": "Spyder",
+ "email": "spyder.python@gmail.com",
+ "description": "The Spyder organization, a project of the NumFOCUS nonprofit",
+ "webpageUrl": {
+ "url": "https://www.spyder-ide.org"
+ }
+ },
+ "projects": [
+ {
+ "guid": "spyder-ide",
+ "name": "Spyder",
+ "description": "The scientific Python development environment",
+ "webpageUrl": {
+ "url": "https://www.spyder-ide.org"
+ },
+ "repositoryUrl": {
+ "url": "https://github.com/spyder-ide",
+ "wellKnown": "https://github.com/spyder-ide/spyder/raw/HEAD/.well-known/funding-manifest-urls"
+ },
+ "licenses": [
+ "spdx:MIT"
+ ],
+ "tags": [
+ "data",
+ "data-science",
+ "data-visualization",
+ "developer-tools",
+ "development",
+ "programming",
+ "science",
+ "scientific-computing",
+ "software-engineering",
+ "python"
+ ]
+ },
+ {
+ "guid": "python-lsp",
+ "name": "Python LSP Server",
+ "description": "The python-language-server project, maintained by the Spyder IDE team and the community",
+ "webpageUrl": {
+ "url": "https://github.com/python-lsp",
+ "wellKnown": "https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls"
+ },
+ "repositoryUrl": {
+ "url": "https://github.com/python-lsp/python-lsp-server",
+ "wellKnown": "https://github.com/python-lsp/python-lsp-server/raw/HEAD/.well-known/funding-manifest-urls"
+ },
+ "licenses": [
+ "spdx:MIT"
+ ],
+ "tags": [
+ "developer-tools",
+ "development",
+ "programming",
+ "software-engineering",
+ "ide",
+ "language-server-protocol",
+ "lsp",
+ "lsp-server",
+ "python"
+ ]
+ }
+ ],
+ "funding": {
+ "channels": [
+ {
+ "guid": "hubspot",
+ "type": "payment-provider",
+ "address": "https://numfocus.org/donate-for-spyder",
+ "description": "Spyder Hubspot donation page with NumFOCUS"
+ },
+ {
+ "guid": "numfocus",
+ "type": "other",
+ "address": "info@numfocus.org",
+ "description": "Contact NumFOCUS to coordinate a direct donation"
+ }
+ ],
+ "plans": [
+ {
+ "guid": "general-fund-onetime",
+ "status": "active",
+ "name": "Support Spyder one-time",
+ "description": "Support the Spyder project as a whole, with the money used where it is needed most.",
+ "amount": 0,
+ "currency": "USD",
+ "frequency": "one-time",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "general-fund-monthly",
+ "status": "active",
+ "name": "Support Spyder monthly",
+ "description": "Support the Spyder project as a whole with a monthly donation, with the money used where it is needed most.",
+ "amount": 0,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "individual",
+ "status": "active",
+ "name": "Individual Donor",
+ "description": "Support us with a monthly donation and help us continue our activities.",
+ "amount": 5,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "company",
+ "status": "active",
+ "name": "Company Sponsor",
+ "description": "Become a sponsor and get your logo on our README on Github with a link to your site.",
+ "amount": 100,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "junior-dev",
+ "status": "active",
+ "name": "Part Time Junior Developer",
+ "description": "Help pay a Junior Developer to work part time on the Spyder IDE.",
+ "amount": 500,
+ "currency": "USD",
+ "frequency": "monthly",
+ "channels": [
+ "hubspot"
+ ]
+ },
+ {
+ "guid": "baseline-maintenance",
+ "status": "active",
+ "name": "Baseline Development and Maintenance",
+ "description": "Help fund critical baseline development and maintenance for our worldwide community of hundreds of thousands of users.",
+ "amount": 50000,
+ "currency": "USD",
+ "frequency": "yearly",
+ "channels": [
+ "numfocus"
+ ]
+ }
+ ],
+ "history": [
+ {
+ "year": 2024,
+ "income": 150000,
+ "expenses": 150000,
+ "taxes": 0,
+ "currency": "USD",
+ "description": ""
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/svelte.config.js b/svelte.config.js
index d3a1f8e3..835af2cd 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -71,13 +71,13 @@ const blogImages = () => {
}
});
- // Then handle raw HTML to catch any embedded
tags
+ // Then handle raw HTML to catch any embedded
,
{$_("donate.page.title")}
-
+ mx-auto
+ mb-16
+ max-w-6xl
+ text-center
+ dark:text-neutral-200
+ md:text-xl"
+ >
-
- {#each projects as project}
-
- {/each}
-
+
+
+ {#if spyderProject}
+
+
+ {/if}
+
+
+ {#if otherProjects.length > 0}
+
+
+
+
+
+
+
+ {#if spyderProject.image}
+
+
+
+ {/if}
+
+ + {spyderProject.title} +
+
+ {#if spyderProject.donations}
+
+
+ {spyderProject.collected}:
+
+ {spyderProject.donations.total.toLocaleString($locale, currencyOptions)}
+
+
+ {/if}
+ {#if spyderProject.intro}
+ {spyderProject.intro}
+ {/if}
+ {#if spyderProject.button}
+
+ {#if spyderProject.button && spyderProject.button.text && spyderProject.donationLinkID}
+
+ {/if}
+ + {$_("donate.page.otherProjects.title")} +
+
+ {#each otherProjects as project}
+
+ {/each}
+
+ {/if}