@funnelsgrove/cli 0.1.15 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/contracts/step-contract-v2.json +733 -0
- package/dist/analyticsOutput.d.ts +30 -15
- package/dist/analyticsOutput.js +45 -28
- package/dist/apiClient.d.ts +85 -0
- package/dist/apiClient.js +225 -8
- package/dist/cli.d.ts +149 -1
- package/dist/cli.js +1232 -71
- package/dist/diagnosticOutput.d.ts +42 -0
- package/dist/diagnosticOutput.js +83 -0
- package/dist/docsOutput.d.ts +19 -0
- package/dist/docsOutput.js +73 -0
- package/dist/docsTransaction.d.ts +81 -0
- package/dist/docsTransaction.js +1755 -0
- package/dist/funnelValidation.d.ts +14 -0
- package/dist/funnelValidation.js +297 -0
- package/dist/localSync.d.ts +79 -0
- package/dist/localSync.js +400 -29
- package/dist/projectValidator.d.ts +27 -0
- package/dist/projectValidator.js +208 -0
- package/dist/reskin.js +27 -1
- package/dist/stepContractMigration.d.ts +71 -0
- package/dist/stepContractMigration.js +1323 -0
- package/dist/templateDocs.js +8 -25
- package/docs-release-history.json +66 -0
- package/legacy-docs-catalog.json +1012 -0
- package/package.json +13 -4
- package/template_docs/.funnelsgrove-docs.json +144 -0
- package/template_docs/AGENTS.md +30 -58
- package/template_docs/CLAUDE.md +0 -2
- package/template_docs/docs/funnelsgrove/START-HERE.md +73 -0
- package/template_docs/docs/funnelsgrove/contracts/analytics-events.md +59 -0
- package/template_docs/docs/funnelsgrove/contracts/content-answers.md +44 -0
- package/template_docs/docs/funnelsgrove/contracts/flow-routing.md +41 -0
- package/template_docs/docs/funnelsgrove/contracts/payments.md +42 -0
- package/template_docs/docs/funnelsgrove/contracts/step-metadata.md +57 -0
- package/template_docs/docs/funnelsgrove/migrations/step-contract-v3.md +39 -0
- package/template_docs/docs/funnelsgrove/qa/analytics.md +43 -0
- package/template_docs/docs/funnelsgrove/qa/local.md +42 -0
- package/template_docs/docs/funnelsgrove/qa/paywall-checkout.md +55 -0
- package/template_docs/docs/funnelsgrove/qa/publish.md +32 -0
- package/template_docs/docs/funnelsgrove/recipes/add-experiment.md +34 -0
- package/template_docs/docs/funnelsgrove/recipes/add-step.md +33 -0
- package/template_docs/docs/funnelsgrove/recipes/edit-step.md +31 -0
- package/template_docs/docs/funnelsgrove/steps/INDEX.md +26 -0
- package/template_docs/docs/funnelsgrove/steps/cancellation_offer.md +112 -0
- package/template_docs/docs/funnelsgrove/steps/checkout.md +120 -0
- package/template_docs/docs/funnelsgrove/steps/form_input.md +115 -0
- package/template_docs/docs/funnelsgrove/steps/intro_hero.md +110 -0
- package/template_docs/docs/funnelsgrove/steps/multi_select_choice.md +123 -0
- package/template_docs/docs/funnelsgrove/steps/paywall_offer.md +115 -0
- package/template_docs/docs/funnelsgrove/steps/progress_interstitial.md +111 -0
- package/template_docs/docs/funnelsgrove/steps/purchase_completed.md +117 -0
- package/template_docs/docs/funnelsgrove/steps/single_step_choice.md +122 -0
- package/template_docs/docs/funnelsgrove/steps/single_step_choice_emoji.md +122 -0
- package/template_docs/docs/funnelsgrove/steps/social_proof.md +110 -0
- package/template_docs/docs/funnelsgrove/steps/subscription_handoff.md +113 -0
- package/template_docs/docs/funnelsgrove/steps/subscription_management.md +112 -0
- package/template_docs/docs/funnelsgrove/steps/summary_confirmation.md +110 -0
- package/template_docs/docs/funnelsgrove/steps/upsell_offer.md +112 -0
- package/template_docs/docs/funnelsgrove/steps/value_prop_story.md +110 -0
- package/template_docs/funnel-docs.config.json +43 -0
- package/template_scaffold/.env.example +41 -0
- package/template_scaffold/.funnelsgrove-contract-tools.json +19 -0
- package/template_scaffold/.funnelsgrove-docs.json +144 -0
- package/template_scaffold/.funnelsgrove-scaffold.json +1078 -0
- package/template_scaffold/AGENTS.md +42 -0
- package/template_scaffold/CLAUDE.md +1 -0
- package/template_scaffold/PLAN.md +81 -0
- package/template_scaffold/PRODUCT_SENSE.md +28 -0
- package/template_scaffold/context/build-context.md +34 -0
- package/template_scaffold/docs/AGENT_FUNNEL_IMPLEMENTATION_SPEC.md +5 -0
- package/template_scaffold/docs/ARCHITECTURE.md +5 -0
- package/template_scaffold/docs/FLOW_CONFIG_AND_ROUTING.md +5 -0
- package/template_scaffold/docs/PAYWALL_AND_PAYMENTS.md +5 -0
- package/template_scaffold/docs/README.md +5 -0
- package/template_scaffold/docs/funnelsgrove/START-HERE.md +73 -0
- package/template_scaffold/docs/funnelsgrove/contracts/analytics-events.md +59 -0
- package/template_scaffold/docs/funnelsgrove/contracts/content-answers.md +44 -0
- package/template_scaffold/docs/funnelsgrove/contracts/flow-routing.md +41 -0
- package/template_scaffold/docs/funnelsgrove/contracts/payments.md +42 -0
- package/template_scaffold/docs/funnelsgrove/contracts/step-metadata.md +57 -0
- package/template_scaffold/docs/funnelsgrove/migrations/step-contract-v3.md +39 -0
- package/template_scaffold/docs/funnelsgrove/qa/analytics.md +43 -0
- package/template_scaffold/docs/funnelsgrove/qa/local.md +42 -0
- package/template_scaffold/docs/funnelsgrove/qa/paywall-checkout.md +55 -0
- package/template_scaffold/docs/funnelsgrove/qa/publish.md +32 -0
- package/template_scaffold/docs/funnelsgrove/recipes/add-experiment.md +34 -0
- package/template_scaffold/docs/funnelsgrove/recipes/add-step.md +33 -0
- package/template_scaffold/docs/funnelsgrove/recipes/edit-step.md +31 -0
- package/template_scaffold/docs/funnelsgrove/steps/INDEX.md +26 -0
- package/template_scaffold/docs/funnelsgrove/steps/cancellation_offer.md +112 -0
- package/template_scaffold/docs/funnelsgrove/steps/checkout.md +120 -0
- package/template_scaffold/docs/funnelsgrove/steps/form_input.md +115 -0
- package/template_scaffold/docs/funnelsgrove/steps/intro_hero.md +110 -0
- package/template_scaffold/docs/funnelsgrove/steps/multi_select_choice.md +123 -0
- package/template_scaffold/docs/funnelsgrove/steps/paywall_offer.md +115 -0
- package/template_scaffold/docs/funnelsgrove/steps/progress_interstitial.md +111 -0
- package/template_scaffold/docs/funnelsgrove/steps/purchase_completed.md +117 -0
- package/template_scaffold/docs/funnelsgrove/steps/single_step_choice.md +122 -0
- package/template_scaffold/docs/funnelsgrove/steps/single_step_choice_emoji.md +122 -0
- package/template_scaffold/docs/funnelsgrove/steps/social_proof.md +110 -0
- package/template_scaffold/docs/funnelsgrove/steps/subscription_handoff.md +113 -0
- package/template_scaffold/docs/funnelsgrove/steps/subscription_management.md +112 -0
- package/template_scaffold/docs/funnelsgrove/steps/summary_confirmation.md +110 -0
- package/template_scaffold/docs/funnelsgrove/steps/upsell_offer.md +112 -0
- package/template_scaffold/docs/funnelsgrove/steps/value_prop_story.md +110 -0
- package/template_scaffold/docs/references/funnel-sdk-user-answers.md +5 -0
- package/template_scaffold/eslint.config.mjs +16 -0
- package/template_scaffold/funnel-agent-docs.test.ts +699 -0
- package/template_scaffold/funnel-docs.config.json +43 -0
- package/template_scaffold/funnel.config.json +5 -0
- package/template_scaffold/gitignore.template +5 -0
- package/template_scaffold/next-env.d.ts +6 -0
- package/template_scaffold/next.config.ts +53 -0
- package/template_scaffold/package-lock.json +7737 -0
- package/template_scaffold/package.json +37 -0
- package/template_scaffold/package.test.ts +23 -0
- package/template_scaffold/public/claimbee/bee.png +0 -0
- package/template_scaffold/public/claimbee/device-iphone.png +0 -0
- package/template_scaffold/public/claimbee/device-macbook.png +0 -0
- package/template_scaffold/public/claimbee/device-none.png +0 -0
- package/template_scaffold/public/claimbee/device-watch.png +0 -0
- package/template_scaffold/public/claimbee/glow.svg +3 -0
- package/template_scaffold/public/claimbee/steps-sprite-alt.png +0 -0
- package/template_scaffold/public/claimbee/steps-sprite-default.png +0 -0
- package/template_scaffold/public/claimbee/testimonial-avatar.png +0 -0
- package/template_scaffold/public/claimbee/testimonial-star.svg +3 -0
- package/template_scaffold/public/paywall/ai-claim-assistant.png +0 -0
- package/template_scaffold/public/paywall/claim-history.png +0 -0
- package/template_scaffold/public/paywall/clear-progress.png +0 -0
- package/template_scaffold/public/paywall/hero.png +0 -0
- package/template_scaffold/public/paywall/money-alerts.png +0 -0
- package/template_scaffold/public/paywall/money-back-badge.png +0 -0
- package/template_scaffold/public/paywall/paywall-image.png +0 -0
- package/template_scaffold/public/paywall/r1.png +0 -0
- package/template_scaffold/public/paywall/r2.png +0 -0
- package/template_scaffold/public/paywall/r3.png +0 -0
- package/template_scaffold/public/paywall/r4.png +0 -0
- package/template_scaffold/public/paywall/r5.png +0 -0
- package/template_scaffold/public/paywall/r6.png +0 -0
- package/template_scaffold/public/paywall/special-offer-gift.png +0 -0
- package/template_scaffold/public/please/bee.png +0 -0
- package/template_scaffold/public/please/device-iphone.png +0 -0
- package/template_scaffold/public/please/device-macbook.png +0 -0
- package/template_scaffold/public/please/device-none.png +0 -0
- package/template_scaffold/public/please/device-watch.png +0 -0
- package/template_scaffold/public/please/glow.svg +3 -0
- package/template_scaffold/public/please/steps-sprite-alt.png +0 -0
- package/template_scaffold/public/please/steps-sprite-default.png +0 -0
- package/template_scaffold/public/please/testimonial-avatar.png +0 -0
- package/template_scaffold/public/please/testimonial-star.svg +3 -0
- package/template_scaffold/public/upsell/upgrade-hero.png +0 -0
- package/template_scaffold/src/app/[stepId]/page.test.tsx +59 -0
- package/template_scaffold/src/app/[stepId]/page.tsx +62 -0
- package/template_scaffold/src/app/globals.css +49 -0
- package/template_scaffold/src/app/layout.test.ts +26 -0
- package/template_scaffold/src/app/layout.tsx +61 -0
- package/template_scaffold/src/app/page.tsx +8 -0
- package/template_scaffold/src/app/sdk/page.tsx +673 -0
- package/template_scaffold/src/app/subscription-dashboard/page.tsx +274 -0
- package/template_scaffold/src/assets/claimbee/bee.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-iphone.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-macbook.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-none.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-watch.png +0 -0
- package/template_scaffold/src/assets/claimbee/glow.svg +3 -0
- package/template_scaffold/src/assets/claimbee/steps-sprite-alt.png +0 -0
- package/template_scaffold/src/assets/claimbee/steps-sprite-default.png +0 -0
- package/template_scaffold/src/assets/claimbee/testimonial-avatar.png +0 -0
- package/template_scaffold/src/assets/claimbee/testimonial-star.svg +3 -0
- package/template_scaffold/src/components/FunnelEditorPanel.tsx +194 -0
- package/template_scaffold/src/components/FunnelFlow.test.tsx +17 -0
- package/template_scaffold/src/components/FunnelFlow.tsx +114 -0
- package/template_scaffold/src/components/FunnelStepImage.test.ts +15 -0
- package/template_scaffold/src/components/FunnelStepImage.tsx +28 -0
- package/template_scaffold/src/components/step/FunnelStepHeader.tsx +35 -0
- package/template_scaffold/src/config/billing.plans.test.ts +143 -0
- package/template_scaffold/src/config/billing.plans.ts +69 -0
- package/template_scaffold/src/config/billing.test.plans.ts +32 -0
- package/template_scaffold/src/config/experiments.generated.ts +4 -0
- package/template_scaffold/src/config/experiments.test.ts +12 -0
- package/template_scaffold/src/config/experiments.ts +9 -0
- package/template_scaffold/src/config/funnel.config.ts +12 -0
- package/template_scaffold/src/config/funnel.manifest.test.ts +166 -0
- package/template_scaffold/src/config/funnel.manifest.ts +139 -0
- package/template_scaffold/src/config/offer-sets.generated.ts +4 -0
- package/template_scaffold/src/contract/funnel-project.validation.test.ts +80 -0
- package/template_scaffold/src/contract/funnel-project.validation.ts +44 -0
- package/template_scaffold/src/contract/funnel-validator.vite.config.ts +11 -0
- package/template_scaffold/src/contract/golden/cancellation_offer.fixture.ts +29 -0
- package/template_scaffold/src/contract/golden/checkout.fixture.ts +37 -0
- package/template_scaffold/src/contract/golden/form_input.fixture.ts +28 -0
- package/template_scaffold/src/contract/golden/golden-fixtures.test.ts +190 -0
- package/template_scaffold/src/contract/golden/intro_hero.fixture.ts +27 -0
- package/template_scaffold/src/contract/golden/multi_select_choice.fixture.ts +37 -0
- package/template_scaffold/src/contract/golden/paywall_offer.fixture.ts +30 -0
- package/template_scaffold/src/contract/golden/progress_interstitial.fixture.ts +28 -0
- package/template_scaffold/src/contract/golden/purchase_completed.fixture.ts +33 -0
- package/template_scaffold/src/contract/golden/single_step_choice.fixture.ts +36 -0
- package/template_scaffold/src/contract/golden/single_step_choice_emoji.fixture.ts +36 -0
- package/template_scaffold/src/contract/golden/social_proof.fixture.ts +27 -0
- package/template_scaffold/src/contract/golden/subscription_handoff.fixture.ts +30 -0
- package/template_scaffold/src/contract/golden/subscription_management.fixture.ts +29 -0
- package/template_scaffold/src/contract/golden/summary_confirmation.fixture.ts +27 -0
- package/template_scaffold/src/contract/golden/upsell_offer.fixture.ts +29 -0
- package/template_scaffold/src/contract/golden/value_prop_story.fixture.ts +27 -0
- package/template_scaffold/src/contract/validate-funnel.cli.test.ts +180 -0
- package/template_scaffold/src/contract/validate-funnel.cli.ts +199 -0
- package/template_scaffold/src/runtime/checkout-runtime-config.test.ts +60 -0
- package/template_scaffold/src/runtime/checkout-runtime-config.ts +26 -0
- package/template_scaffold/src/runtime/funnel-runtime.test.ts +25 -0
- package/template_scaffold/src/runtime/funnel-runtime.ts +118 -0
- package/template_scaffold/src/runtime/step-content-context.test.ts +38 -0
- package/template_scaffold/src/runtime/step-content-context.ts +65 -0
- package/template_scaffold/src/runtime/step-registry.ts +66 -0
- package/template_scaffold/src/runtime/step-variable-values.ts +31 -0
- package/template_scaffold/src/runtime/use-funnel-flow-controller.integration.test.ts +203 -0
- package/template_scaffold/src/runtime/use-funnel-flow-controller.test.ts +76 -0
- package/template_scaffold/src/runtime/use-funnel-flow-controller.ts +53 -0
- package/template_scaffold/src/steps/content/email-capture.content.ts +29 -0
- package/template_scaffold/src/steps/content/manage-subscription.content.ts +62 -0
- package/template_scaffold/src/steps/content/paywall.content.ts +191 -0
- package/template_scaffold/src/steps/content/step-01.content.ts +23 -0
- package/template_scaffold/src/steps/content/step-02.content.ts +77 -0
- package/template_scaffold/src/steps/content/step-03.content.ts +40 -0
- package/template_scaffold/src/steps/content/step-04.content.ts +49 -0
- package/template_scaffold/src/steps/content/step-32-paywall.content.ts +352 -0
- package/template_scaffold/src/steps/content/subscription-started.content.ts +68 -0
- package/template_scaffold/src/steps/editor/email-capture.editor.ts +58 -0
- package/template_scaffold/src/steps/editor/manage-subscription.editor.ts +179 -0
- package/template_scaffold/src/steps/editor/paywall.editor.ts +232 -0
- package/template_scaffold/src/steps/editor/step-01.editor.ts +22 -0
- package/template_scaffold/src/steps/editor/step-02.editor.ts +41 -0
- package/template_scaffold/src/steps/editor/step-03.editor.ts +58 -0
- package/template_scaffold/src/steps/editor/step-04.editor.ts +98 -0
- package/template_scaffold/src/steps/editor/step-32-paywall.editor.ts +478 -0
- package/template_scaffold/src/steps/editor/subscription-started.editor.ts +131 -0
- package/template_scaffold/src/steps/index.ts +25 -0
- package/template_scaffold/src/steps/paywall-checkout-options.test.ts +104 -0
- package/template_scaffold/src/steps/paywall-checkout-options.ts +130 -0
- package/template_scaffold/src/steps/pricing/paywall-b.pricing.ts +12 -0
- package/template_scaffold/src/steps/pricing/paywall.pricing.ts +12 -0
- package/template_scaffold/src/steps/pricing/shared-plan-order.ts +17 -0
- package/template_scaffold/src/steps/pricing/upsell-form.pricing.ts +16 -0
- package/template_scaffold/src/steps/shared-header-contract.test.ts +27 -0
- package/template_scaffold/src/steps/step-01.test.ts +38 -0
- package/template_scaffold/src/steps/step-01.tsx +108 -0
- package/template_scaffold/src/steps/step-02.test.ts +43 -0
- package/template_scaffold/src/steps/step-02.tsx +140 -0
- package/template_scaffold/src/steps/step-03.test.ts +15 -0
- package/template_scaffold/src/steps/step-03.tsx +262 -0
- package/template_scaffold/src/steps/step-04.test.ts +32 -0
- package/template_scaffold/src/steps/step-04.tsx +673 -0
- package/template_scaffold/src/steps/step-31-email-capture.test.ts +22 -0
- package/template_scaffold/src/steps/step-31-email-capture.tsx +195 -0
- package/template_scaffold/src/steps/step-32-paywall.test.ts +770 -0
- package/template_scaffold/src/steps/step-32-paywall.tsx +2253 -0
- package/template_scaffold/src/steps/step-32b-paywall-b.tsx +35 -0
- package/template_scaffold/src/steps/step-33-subscription-started.test.ts +26 -0
- package/template_scaffold/src/steps/step-33-subscription-started.tsx +86 -0
- package/template_scaffold/src/steps/step-34-upsell-form.test.ts +27 -0
- package/template_scaffold/src/steps/step-35-manage-subscription.tsx +46 -0
- package/template_scaffold/src/steps/step-content.registry.ts +45 -0
- package/template_scaffold/src/steps/step-image-migration.test.ts +20 -0
- package/template_scaffold/src/steps/styles/index.css +2 -0
- package/template_scaffold/src/steps/styles/shared/final-flow-shared.css +55 -0
- package/template_scaffold/src/steps/styles/shared/funnel-base.css +543 -0
- package/template_scaffold/src/steps/styles/shared/info-shared.css +139 -0
- package/template_scaffold/src/steps/styles/shared/progress-shared.css +117 -0
- package/template_scaffold/src/steps/styles/shared/question-shared.css +76 -0
- package/template_scaffold/src/steps/styles/shared/responsive-container.css +176 -0
- package/template_scaffold/src/steps/types.ts +7 -0
- package/template_scaffold/src/steps/use-claimbee-step-content.ts +15 -0
- package/template_scaffold/src/theme/theme.ts +81 -0
- package/template_scaffold/tsconfig.json +38 -0
- package/template_scaffold/vitest.config.ts +32 -0
- package/template_validation/.funnelsgrove-contract-tools.json +19 -0
- package/template_validation/src/contract/funnel-project.validation.ts +44 -0
- package/template_validation/src/contract/funnel-validator.vite.config.ts +11 -0
- package/template_validation/src/contract/validate-funnel.cli.ts +199 -0
- package/template_docs/docs/ab-experiments.md +0 -111
- package/template_docs/docs/analytics.md +0 -65
- package/template_docs/docs/editing-flow.md +0 -136
- package/template_docs/docs/editing-step.md +0 -125
- package/template_docs/docs/editor-and-content.md +0 -58
- package/template_docs/docs/funnel-runtime-architecture.md +0 -125
- package/template_docs/docs/meta-pixel-conversions-api.md +0 -50
- package/template_docs/docs/payment-plans-and-discounts.md +0 -106
- package/template_docs/docs/publishing-and-versioning.md +0 -117
- package/template_docs/docs/qa-checklist.md +0 -80
- package/template_docs/docs/sdk-api-endpoints.md +0 -78
- package/template_docs/docs/step-ui-guidelines.md +0 -110
- package/template_docs/docs/theme.md +0 -35
|
@@ -0,0 +1,1012 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"path": "agent.md",
|
|
5
|
+
"sha256": "30e643f8d0e1db75b899297d4990284b2e2c0f88cee990d039133f074d1a9d95"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"version": "0.1.0",
|
|
9
|
+
"path": "docs/ab-experiments.md",
|
|
10
|
+
"sha256": "a51898775d70b1567a7ed94105c9f6247b56e30574e90af131b79741522f2108"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"version": "0.1.0",
|
|
14
|
+
"path": "docs/analytics.md",
|
|
15
|
+
"sha256": "41cbdfbcc2817e1cb830819688519332e594f6cfb4f6297b001d560cfe3f4b89"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"version": "0.1.0",
|
|
19
|
+
"path": "docs/editing-flow.md",
|
|
20
|
+
"sha256": "8aee7f04f8d7aea926cb08e5e4a23583aeebeca5eb84d7cd77ee838fdc80576c"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"version": "0.1.0",
|
|
24
|
+
"path": "docs/editing-step.md",
|
|
25
|
+
"sha256": "1aecd141f7a6b18c36e3d19f95ea1d9cffdd9ba143d5d0c6c08d8096eebc946e"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"version": "0.1.0",
|
|
29
|
+
"path": "docs/editor-and-content.md",
|
|
30
|
+
"sha256": "b32b6f94fec7d467aaca1df33b86b937e26f7ed82cb6a9af339c59514896045b"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"version": "0.1.0",
|
|
34
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
35
|
+
"sha256": "21bff5596b1338ec35e08789b36fcc99c96fe965878676b3703affd47cf2327d"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"version": "0.1.0",
|
|
39
|
+
"path": "docs/publishing-and-versioning.md",
|
|
40
|
+
"sha256": "07172401be91e9bb2f3f8b1165e94a2eca84ac9f6accfb7106dc54e1d4d9d063"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"version": "0.1.0",
|
|
44
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
45
|
+
"sha256": "ca0194641c95a55b6b197e23f4cac18814e0b285cf6830ae2b2097f6dcacb99d"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"version": "0.1.0",
|
|
49
|
+
"path": "docs/theme.md",
|
|
50
|
+
"sha256": "775a2a5ab6aa2c8e0e3a64ce517eabe68aa2c1f1d0a842de0a53c2d7f5c602e2"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"version": "0.1.1",
|
|
54
|
+
"path": "agent.md",
|
|
55
|
+
"sha256": "30e643f8d0e1db75b899297d4990284b2e2c0f88cee990d039133f074d1a9d95"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"version": "0.1.1",
|
|
59
|
+
"path": "docs/ab-experiments.md",
|
|
60
|
+
"sha256": "a51898775d70b1567a7ed94105c9f6247b56e30574e90af131b79741522f2108"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"version": "0.1.1",
|
|
64
|
+
"path": "docs/analytics.md",
|
|
65
|
+
"sha256": "41cbdfbcc2817e1cb830819688519332e594f6cfb4f6297b001d560cfe3f4b89"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"version": "0.1.1",
|
|
69
|
+
"path": "docs/editing-flow.md",
|
|
70
|
+
"sha256": "8aee7f04f8d7aea926cb08e5e4a23583aeebeca5eb84d7cd77ee838fdc80576c"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"version": "0.1.1",
|
|
74
|
+
"path": "docs/editing-step.md",
|
|
75
|
+
"sha256": "1aecd141f7a6b18c36e3d19f95ea1d9cffdd9ba143d5d0c6c08d8096eebc946e"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"version": "0.1.1",
|
|
79
|
+
"path": "docs/editor-and-content.md",
|
|
80
|
+
"sha256": "b32b6f94fec7d467aaca1df33b86b937e26f7ed82cb6a9af339c59514896045b"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"version": "0.1.1",
|
|
84
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
85
|
+
"sha256": "21bff5596b1338ec35e08789b36fcc99c96fe965878676b3703affd47cf2327d"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"version": "0.1.1",
|
|
89
|
+
"path": "docs/publishing-and-versioning.md",
|
|
90
|
+
"sha256": "07172401be91e9bb2f3f8b1165e94a2eca84ac9f6accfb7106dc54e1d4d9d063"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"version": "0.1.1",
|
|
94
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
95
|
+
"sha256": "ca0194641c95a55b6b197e23f4cac18814e0b285cf6830ae2b2097f6dcacb99d"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"version": "0.1.1",
|
|
99
|
+
"path": "docs/theme.md",
|
|
100
|
+
"sha256": "775a2a5ab6aa2c8e0e3a64ce517eabe68aa2c1f1d0a842de0a53c2d7f5c602e2"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"version": "0.1.2",
|
|
104
|
+
"path": "agent.md",
|
|
105
|
+
"sha256": "2d84333e73e15c4ea8f7e434beec050739e1f812ee7f5521b12fecadd2655ae6"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"version": "0.1.2",
|
|
109
|
+
"path": "docs/ab-experiments.md",
|
|
110
|
+
"sha256": "a51898775d70b1567a7ed94105c9f6247b56e30574e90af131b79741522f2108"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"version": "0.1.2",
|
|
114
|
+
"path": "docs/analytics.md",
|
|
115
|
+
"sha256": "41cbdfbcc2817e1cb830819688519332e594f6cfb4f6297b001d560cfe3f4b89"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"version": "0.1.2",
|
|
119
|
+
"path": "docs/editing-flow.md",
|
|
120
|
+
"sha256": "8aee7f04f8d7aea926cb08e5e4a23583aeebeca5eb84d7cd77ee838fdc80576c"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"version": "0.1.2",
|
|
124
|
+
"path": "docs/editing-step.md",
|
|
125
|
+
"sha256": "1aecd141f7a6b18c36e3d19f95ea1d9cffdd9ba143d5d0c6c08d8096eebc946e"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"version": "0.1.2",
|
|
129
|
+
"path": "docs/editor-and-content.md",
|
|
130
|
+
"sha256": "b32b6f94fec7d467aaca1df33b86b937e26f7ed82cb6a9af339c59514896045b"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"version": "0.1.2",
|
|
134
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
135
|
+
"sha256": "21bff5596b1338ec35e08789b36fcc99c96fe965878676b3703affd47cf2327d"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"version": "0.1.2",
|
|
139
|
+
"path": "docs/publishing-and-versioning.md",
|
|
140
|
+
"sha256": "07172401be91e9bb2f3f8b1165e94a2eca84ac9f6accfb7106dc54e1d4d9d063"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"version": "0.1.2",
|
|
144
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
145
|
+
"sha256": "ca0194641c95a55b6b197e23f4cac18814e0b285cf6830ae2b2097f6dcacb99d"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"version": "0.1.2",
|
|
149
|
+
"path": "docs/theme.md",
|
|
150
|
+
"sha256": "775a2a5ab6aa2c8e0e3a64ce517eabe68aa2c1f1d0a842de0a53c2d7f5c602e2"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"version": "0.1.3",
|
|
154
|
+
"path": "agent.md",
|
|
155
|
+
"sha256": "2d84333e73e15c4ea8f7e434beec050739e1f812ee7f5521b12fecadd2655ae6"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"version": "0.1.3",
|
|
159
|
+
"path": "docs/ab-experiments.md",
|
|
160
|
+
"sha256": "a51898775d70b1567a7ed94105c9f6247b56e30574e90af131b79741522f2108"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"version": "0.1.3",
|
|
164
|
+
"path": "docs/analytics.md",
|
|
165
|
+
"sha256": "41cbdfbcc2817e1cb830819688519332e594f6cfb4f6297b001d560cfe3f4b89"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"version": "0.1.3",
|
|
169
|
+
"path": "docs/editing-flow.md",
|
|
170
|
+
"sha256": "8aee7f04f8d7aea926cb08e5e4a23583aeebeca5eb84d7cd77ee838fdc80576c"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"version": "0.1.3",
|
|
174
|
+
"path": "docs/editing-step.md",
|
|
175
|
+
"sha256": "1aecd141f7a6b18c36e3d19f95ea1d9cffdd9ba143d5d0c6c08d8096eebc946e"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"version": "0.1.3",
|
|
179
|
+
"path": "docs/editor-and-content.md",
|
|
180
|
+
"sha256": "b32b6f94fec7d467aaca1df33b86b937e26f7ed82cb6a9af339c59514896045b"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"version": "0.1.3",
|
|
184
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
185
|
+
"sha256": "21bff5596b1338ec35e08789b36fcc99c96fe965878676b3703affd47cf2327d"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"version": "0.1.3",
|
|
189
|
+
"path": "docs/publishing-and-versioning.md",
|
|
190
|
+
"sha256": "07172401be91e9bb2f3f8b1165e94a2eca84ac9f6accfb7106dc54e1d4d9d063"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"version": "0.1.3",
|
|
194
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
195
|
+
"sha256": "ca0194641c95a55b6b197e23f4cac18814e0b285cf6830ae2b2097f6dcacb99d"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"version": "0.1.3",
|
|
199
|
+
"path": "docs/theme.md",
|
|
200
|
+
"sha256": "775a2a5ab6aa2c8e0e3a64ce517eabe68aa2c1f1d0a842de0a53c2d7f5c602e2"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"version": "0.1.4",
|
|
204
|
+
"path": "AGENTS.md",
|
|
205
|
+
"sha256": "3073253b2db2e3af4303fd9369c7a85c929146429d8ee9e81a362ca668bfd355"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"version": "0.1.4",
|
|
209
|
+
"path": "CLAUDE.md",
|
|
210
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"version": "0.1.4",
|
|
214
|
+
"path": "docs/ab-experiments.md",
|
|
215
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"version": "0.1.4",
|
|
219
|
+
"path": "docs/analytics.md",
|
|
220
|
+
"sha256": "431d22c45c939541dd8928a55b44a5301db6e11eaa222cbdca067d0198489959"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"version": "0.1.4",
|
|
224
|
+
"path": "docs/editing-flow.md",
|
|
225
|
+
"sha256": "b0c7a92619673c68c14965cb637143a87b1c45e8e48256062eae3054e6fac3ba"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"version": "0.1.4",
|
|
229
|
+
"path": "docs/editing-step.md",
|
|
230
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"version": "0.1.4",
|
|
234
|
+
"path": "docs/editor-and-content.md",
|
|
235
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"version": "0.1.4",
|
|
239
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
240
|
+
"sha256": "b9eaafa7a5649c8b4eb12934d39b8cd54ca6708d6c3947a79ea6d1e3c39e0ba6"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"version": "0.1.4",
|
|
244
|
+
"path": "docs/publishing-and-versioning.md",
|
|
245
|
+
"sha256": "17956af1f111c0e1d0eb81a4b17bc1e13bc02c32d4b19f1a63a2aa308b40c42a"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"version": "0.1.4",
|
|
249
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
250
|
+
"sha256": "9710c2943a71d1a8a8a618168056c9f6036f8cfd80e3a87e5e131291b24c7032"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"version": "0.1.4",
|
|
254
|
+
"path": "docs/theme.md",
|
|
255
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"version": "0.1.5",
|
|
259
|
+
"path": "AGENTS.md",
|
|
260
|
+
"sha256": "3073253b2db2e3af4303fd9369c7a85c929146429d8ee9e81a362ca668bfd355"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"version": "0.1.5",
|
|
264
|
+
"path": "CLAUDE.md",
|
|
265
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"version": "0.1.5",
|
|
269
|
+
"path": "docs/ab-experiments.md",
|
|
270
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"version": "0.1.5",
|
|
274
|
+
"path": "docs/analytics.md",
|
|
275
|
+
"sha256": "431d22c45c939541dd8928a55b44a5301db6e11eaa222cbdca067d0198489959"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"version": "0.1.5",
|
|
279
|
+
"path": "docs/editing-flow.md",
|
|
280
|
+
"sha256": "b0c7a92619673c68c14965cb637143a87b1c45e8e48256062eae3054e6fac3ba"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"version": "0.1.5",
|
|
284
|
+
"path": "docs/editing-step.md",
|
|
285
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"version": "0.1.5",
|
|
289
|
+
"path": "docs/editor-and-content.md",
|
|
290
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"version": "0.1.5",
|
|
294
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
295
|
+
"sha256": "b9eaafa7a5649c8b4eb12934d39b8cd54ca6708d6c3947a79ea6d1e3c39e0ba6"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"version": "0.1.5",
|
|
299
|
+
"path": "docs/publishing-and-versioning.md",
|
|
300
|
+
"sha256": "17956af1f111c0e1d0eb81a4b17bc1e13bc02c32d4b19f1a63a2aa308b40c42a"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"version": "0.1.5",
|
|
304
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
305
|
+
"sha256": "9710c2943a71d1a8a8a618168056c9f6036f8cfd80e3a87e5e131291b24c7032"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"version": "0.1.5",
|
|
309
|
+
"path": "docs/theme.md",
|
|
310
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"version": "0.1.6",
|
|
314
|
+
"path": "AGENTS.md",
|
|
315
|
+
"sha256": "87485f92730400be0cf9e64f37cad1d623a46a694490415b15f70c36c975a1ce"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"version": "0.1.6",
|
|
319
|
+
"path": "CLAUDE.md",
|
|
320
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"version": "0.1.6",
|
|
324
|
+
"path": "docs/ab-experiments.md",
|
|
325
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"version": "0.1.6",
|
|
329
|
+
"path": "docs/analytics.md",
|
|
330
|
+
"sha256": "0893a8161f58bf15f03f4de8c76076a0754119893b1b10edb5105ec7425d6cc6"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"version": "0.1.6",
|
|
334
|
+
"path": "docs/editing-flow.md",
|
|
335
|
+
"sha256": "b0c7a92619673c68c14965cb637143a87b1c45e8e48256062eae3054e6fac3ba"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"version": "0.1.6",
|
|
339
|
+
"path": "docs/editing-step.md",
|
|
340
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"version": "0.1.6",
|
|
344
|
+
"path": "docs/editor-and-content.md",
|
|
345
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"version": "0.1.6",
|
|
349
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
350
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"version": "0.1.6",
|
|
354
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
355
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"version": "0.1.6",
|
|
359
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
360
|
+
"sha256": "b0c92f30af104d3d27024577315a1bf3dd52218b5c2499eac4603d70829b7b23"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"version": "0.1.6",
|
|
364
|
+
"path": "docs/publishing-and-versioning.md",
|
|
365
|
+
"sha256": "e94e289ed029b99cf0d60c44dfd499df38fdb2eeff91afb89d85fcfead78eedf"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"version": "0.1.6",
|
|
369
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
370
|
+
"sha256": "8d8dca8f11df43a404472f889cfe4c3e0e5459ca39c0abf58ef9fd1c4242ecfd"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"version": "0.1.6",
|
|
374
|
+
"path": "docs/theme.md",
|
|
375
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"version": "0.1.7",
|
|
379
|
+
"path": "AGENTS.md",
|
|
380
|
+
"sha256": "87485f92730400be0cf9e64f37cad1d623a46a694490415b15f70c36c975a1ce"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"version": "0.1.7",
|
|
384
|
+
"path": "CLAUDE.md",
|
|
385
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"version": "0.1.7",
|
|
389
|
+
"path": "docs/ab-experiments.md",
|
|
390
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"version": "0.1.7",
|
|
394
|
+
"path": "docs/analytics.md",
|
|
395
|
+
"sha256": "0893a8161f58bf15f03f4de8c76076a0754119893b1b10edb5105ec7425d6cc6"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"version": "0.1.7",
|
|
399
|
+
"path": "docs/editing-flow.md",
|
|
400
|
+
"sha256": "b0c7a92619673c68c14965cb637143a87b1c45e8e48256062eae3054e6fac3ba"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"version": "0.1.7",
|
|
404
|
+
"path": "docs/editing-step.md",
|
|
405
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"version": "0.1.7",
|
|
409
|
+
"path": "docs/editor-and-content.md",
|
|
410
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"version": "0.1.7",
|
|
414
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
415
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"version": "0.1.7",
|
|
419
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
420
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"version": "0.1.7",
|
|
424
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
425
|
+
"sha256": "b0c92f30af104d3d27024577315a1bf3dd52218b5c2499eac4603d70829b7b23"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"version": "0.1.7",
|
|
429
|
+
"path": "docs/publishing-and-versioning.md",
|
|
430
|
+
"sha256": "e94e289ed029b99cf0d60c44dfd499df38fdb2eeff91afb89d85fcfead78eedf"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"version": "0.1.7",
|
|
434
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
435
|
+
"sha256": "8d8dca8f11df43a404472f889cfe4c3e0e5459ca39c0abf58ef9fd1c4242ecfd"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"version": "0.1.7",
|
|
439
|
+
"path": "docs/theme.md",
|
|
440
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"version": "0.1.8",
|
|
444
|
+
"path": "AGENTS.md",
|
|
445
|
+
"sha256": "87485f92730400be0cf9e64f37cad1d623a46a694490415b15f70c36c975a1ce"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"version": "0.1.8",
|
|
449
|
+
"path": "CLAUDE.md",
|
|
450
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"version": "0.1.8",
|
|
454
|
+
"path": "docs/ab-experiments.md",
|
|
455
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"version": "0.1.8",
|
|
459
|
+
"path": "docs/analytics.md",
|
|
460
|
+
"sha256": "0893a8161f58bf15f03f4de8c76076a0754119893b1b10edb5105ec7425d6cc6"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"version": "0.1.8",
|
|
464
|
+
"path": "docs/editing-flow.md",
|
|
465
|
+
"sha256": "d357de6e0ddc7528fd9c29b72abe0f419bcd1dfba1f898ed97c966c20942fb07"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"version": "0.1.8",
|
|
469
|
+
"path": "docs/editing-step.md",
|
|
470
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"version": "0.1.8",
|
|
474
|
+
"path": "docs/editor-and-content.md",
|
|
475
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"version": "0.1.8",
|
|
479
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
480
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"version": "0.1.8",
|
|
484
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
485
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"version": "0.1.8",
|
|
489
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
490
|
+
"sha256": "04e1fd36dd188718bf175f1645b80735966d9f993f2b503ab64b57be1ae773de"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"version": "0.1.8",
|
|
494
|
+
"path": "docs/publishing-and-versioning.md",
|
|
495
|
+
"sha256": "e94e289ed029b99cf0d60c44dfd499df38fdb2eeff91afb89d85fcfead78eedf"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"version": "0.1.8",
|
|
499
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
500
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"version": "0.1.8",
|
|
504
|
+
"path": "docs/theme.md",
|
|
505
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"version": "0.1.9",
|
|
509
|
+
"path": "AGENTS.md",
|
|
510
|
+
"sha256": "87485f92730400be0cf9e64f37cad1d623a46a694490415b15f70c36c975a1ce"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"version": "0.1.9",
|
|
514
|
+
"path": "CLAUDE.md",
|
|
515
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"version": "0.1.9",
|
|
519
|
+
"path": "docs/ab-experiments.md",
|
|
520
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"version": "0.1.9",
|
|
524
|
+
"path": "docs/analytics.md",
|
|
525
|
+
"sha256": "0893a8161f58bf15f03f4de8c76076a0754119893b1b10edb5105ec7425d6cc6"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"version": "0.1.9",
|
|
529
|
+
"path": "docs/editing-flow.md",
|
|
530
|
+
"sha256": "d357de6e0ddc7528fd9c29b72abe0f419bcd1dfba1f898ed97c966c20942fb07"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"version": "0.1.9",
|
|
534
|
+
"path": "docs/editing-step.md",
|
|
535
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"version": "0.1.9",
|
|
539
|
+
"path": "docs/editor-and-content.md",
|
|
540
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"version": "0.1.9",
|
|
544
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
545
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"version": "0.1.9",
|
|
549
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
550
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"version": "0.1.9",
|
|
554
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
555
|
+
"sha256": "04e1fd36dd188718bf175f1645b80735966d9f993f2b503ab64b57be1ae773de"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"version": "0.1.9",
|
|
559
|
+
"path": "docs/publishing-and-versioning.md",
|
|
560
|
+
"sha256": "e94e289ed029b99cf0d60c44dfd499df38fdb2eeff91afb89d85fcfead78eedf"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"version": "0.1.9",
|
|
564
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
565
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"version": "0.1.9",
|
|
569
|
+
"path": "docs/theme.md",
|
|
570
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"version": "0.1.10",
|
|
574
|
+
"path": "AGENTS.md",
|
|
575
|
+
"sha256": "87485f92730400be0cf9e64f37cad1d623a46a694490415b15f70c36c975a1ce"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"version": "0.1.10",
|
|
579
|
+
"path": "CLAUDE.md",
|
|
580
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"version": "0.1.10",
|
|
584
|
+
"path": "docs/ab-experiments.md",
|
|
585
|
+
"sha256": "c88ed9e78f424bd7b12aef03f2f4dd9549592d8dcae3cea3c7576367d6168656"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"version": "0.1.10",
|
|
589
|
+
"path": "docs/analytics.md",
|
|
590
|
+
"sha256": "0893a8161f58bf15f03f4de8c76076a0754119893b1b10edb5105ec7425d6cc6"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"version": "0.1.10",
|
|
594
|
+
"path": "docs/editing-flow.md",
|
|
595
|
+
"sha256": "d357de6e0ddc7528fd9c29b72abe0f419bcd1dfba1f898ed97c966c20942fb07"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"version": "0.1.10",
|
|
599
|
+
"path": "docs/editing-step.md",
|
|
600
|
+
"sha256": "8e781c5cea9fa2db557ca0b9b71917d42c20b07b0686badd96a28e3c384ab6d1"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"version": "0.1.10",
|
|
604
|
+
"path": "docs/editor-and-content.md",
|
|
605
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"version": "0.1.10",
|
|
609
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
610
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"version": "0.1.10",
|
|
614
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
615
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"version": "0.1.10",
|
|
619
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
620
|
+
"sha256": "04e1fd36dd188718bf175f1645b80735966d9f993f2b503ab64b57be1ae773de"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"version": "0.1.10",
|
|
624
|
+
"path": "docs/publishing-and-versioning.md",
|
|
625
|
+
"sha256": "e94e289ed029b99cf0d60c44dfd499df38fdb2eeff91afb89d85fcfead78eedf"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"version": "0.1.10",
|
|
629
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
630
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"version": "0.1.10",
|
|
634
|
+
"path": "docs/theme.md",
|
|
635
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"version": "0.1.11",
|
|
639
|
+
"path": "AGENTS.md",
|
|
640
|
+
"sha256": "2ea3e89f1c10c66f9ffc1f1b3572596edfefedce02a15477db64c26d8c1392fe"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"version": "0.1.11",
|
|
644
|
+
"path": "CLAUDE.md",
|
|
645
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"version": "0.1.11",
|
|
649
|
+
"path": "docs/ab-experiments.md",
|
|
650
|
+
"sha256": "42d3d997db4ebde79c13d403b7a1dbf90ddfc44f96dad94ba0a86d7c0ddf3d8b"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"version": "0.1.11",
|
|
654
|
+
"path": "docs/analytics.md",
|
|
655
|
+
"sha256": "0893a8161f58bf15f03f4de8c76076a0754119893b1b10edb5105ec7425d6cc6"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"version": "0.1.11",
|
|
659
|
+
"path": "docs/editing-flow.md",
|
|
660
|
+
"sha256": "c1c4d6cf03c7cb4825feb8b1e0f33851a9ad7006d09fcf5a569f0a1fff0f8711"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"version": "0.1.11",
|
|
664
|
+
"path": "docs/editing-step.md",
|
|
665
|
+
"sha256": "8e11d1bbc6432c49298795fe6f964b7d7da3ad61ed0b09fe776f359cba2dd819"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"version": "0.1.11",
|
|
669
|
+
"path": "docs/editor-and-content.md",
|
|
670
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"version": "0.1.11",
|
|
674
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
675
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"version": "0.1.11",
|
|
679
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
680
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"version": "0.1.11",
|
|
684
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
685
|
+
"sha256": "5e83af799d8037e0ddcc7a1909888f7f5dc7cd45b9d0fd2085f7adc8c45b0704"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"version": "0.1.11",
|
|
689
|
+
"path": "docs/publishing-and-versioning.md",
|
|
690
|
+
"sha256": "9d2e2a1a6f3460c783f0c3de17a74fad16eecaf52002c4e1262e63cba4539170"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"version": "0.1.11",
|
|
694
|
+
"path": "docs/qa-checklist.md",
|
|
695
|
+
"sha256": "858cd66b17c009168eaccf43ab30690916808b42c6312720106f33c7dcb0757e"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"version": "0.1.11",
|
|
699
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
700
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"version": "0.1.11",
|
|
704
|
+
"path": "docs/step-ui-guidelines.md",
|
|
705
|
+
"sha256": "7f246d7096b1da59e5b9dc08b9832b4a5d6cc922ced075b8930f4232a11a9cfe"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"version": "0.1.11",
|
|
709
|
+
"path": "docs/theme.md",
|
|
710
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"version": "0.1.12",
|
|
714
|
+
"path": "AGENTS.md",
|
|
715
|
+
"sha256": "3c0ce719876d033b8d4571cdeb286fcb4dcc6f6bf1645ae5621a4eaffe47e9fd"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"version": "0.1.12",
|
|
719
|
+
"path": "CLAUDE.md",
|
|
720
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"version": "0.1.12",
|
|
724
|
+
"path": "docs/ab-experiments.md",
|
|
725
|
+
"sha256": "d7ae7a3c45753b27c68959eb06b9034cfa66640ac419ae4350b8b8103c435a6a"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"version": "0.1.12",
|
|
729
|
+
"path": "docs/analytics.md",
|
|
730
|
+
"sha256": "fa45aa98d19cf2c66eb61445462374e8e6c957f8f660defb991649ba65c5c748"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"version": "0.1.12",
|
|
734
|
+
"path": "docs/editing-flow.md",
|
|
735
|
+
"sha256": "508b14e787335eb170f522135e5ab0bbdb151248b250ba9ed30c0002b6b74b9c"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"version": "0.1.12",
|
|
739
|
+
"path": "docs/editing-step.md",
|
|
740
|
+
"sha256": "8f6b5b9f6fdc322194ef9da9bcaf3b88de2fb8c37679e6f7d8cacf1b772dbd2c"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"version": "0.1.12",
|
|
744
|
+
"path": "docs/editor-and-content.md",
|
|
745
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"version": "0.1.12",
|
|
749
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
750
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"version": "0.1.12",
|
|
754
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
755
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"version": "0.1.12",
|
|
759
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
760
|
+
"sha256": "5e83af799d8037e0ddcc7a1909888f7f5dc7cd45b9d0fd2085f7adc8c45b0704"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"version": "0.1.12",
|
|
764
|
+
"path": "docs/publishing-and-versioning.md",
|
|
765
|
+
"sha256": "8e6263f77820be49d8d724989c28247e1758b75a32ce887941032220f4166d11"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"version": "0.1.12",
|
|
769
|
+
"path": "docs/qa-checklist.md",
|
|
770
|
+
"sha256": "cf48b93ce8afc9b3cfeff12f62e3c70207697ff3dfffd52594b27d2446252e34"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"version": "0.1.12",
|
|
774
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
775
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"version": "0.1.12",
|
|
779
|
+
"path": "docs/step-ui-guidelines.md",
|
|
780
|
+
"sha256": "75bef4c549ba8990c87edd629b4134d5a3e8f909c2f499ef263a1eceb811314a"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"version": "0.1.12",
|
|
784
|
+
"path": "docs/theme.md",
|
|
785
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"version": "0.1.13",
|
|
789
|
+
"path": "AGENTS.md",
|
|
790
|
+
"sha256": "3c0ce719876d033b8d4571cdeb286fcb4dcc6f6bf1645ae5621a4eaffe47e9fd"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"version": "0.1.13",
|
|
794
|
+
"path": "CLAUDE.md",
|
|
795
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"version": "0.1.13",
|
|
799
|
+
"path": "docs/ab-experiments.md",
|
|
800
|
+
"sha256": "d7ae7a3c45753b27c68959eb06b9034cfa66640ac419ae4350b8b8103c435a6a"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"version": "0.1.13",
|
|
804
|
+
"path": "docs/analytics.md",
|
|
805
|
+
"sha256": "fa45aa98d19cf2c66eb61445462374e8e6c957f8f660defb991649ba65c5c748"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"version": "0.1.13",
|
|
809
|
+
"path": "docs/editing-flow.md",
|
|
810
|
+
"sha256": "508b14e787335eb170f522135e5ab0bbdb151248b250ba9ed30c0002b6b74b9c"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"version": "0.1.13",
|
|
814
|
+
"path": "docs/editing-step.md",
|
|
815
|
+
"sha256": "8f6b5b9f6fdc322194ef9da9bcaf3b88de2fb8c37679e6f7d8cacf1b772dbd2c"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"version": "0.1.13",
|
|
819
|
+
"path": "docs/editor-and-content.md",
|
|
820
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"version": "0.1.13",
|
|
824
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
825
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"version": "0.1.13",
|
|
829
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
830
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"version": "0.1.13",
|
|
834
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
835
|
+
"sha256": "5e83af799d8037e0ddcc7a1909888f7f5dc7cd45b9d0fd2085f7adc8c45b0704"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"version": "0.1.13",
|
|
839
|
+
"path": "docs/publishing-and-versioning.md",
|
|
840
|
+
"sha256": "8e6263f77820be49d8d724989c28247e1758b75a32ce887941032220f4166d11"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"version": "0.1.13",
|
|
844
|
+
"path": "docs/qa-checklist.md",
|
|
845
|
+
"sha256": "cf48b93ce8afc9b3cfeff12f62e3c70207697ff3dfffd52594b27d2446252e34"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"version": "0.1.13",
|
|
849
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
850
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"version": "0.1.13",
|
|
854
|
+
"path": "docs/step-ui-guidelines.md",
|
|
855
|
+
"sha256": "75bef4c549ba8990c87edd629b4134d5a3e8f909c2f499ef263a1eceb811314a"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"version": "0.1.13",
|
|
859
|
+
"path": "docs/theme.md",
|
|
860
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"version": "0.1.14",
|
|
864
|
+
"path": "AGENTS.md",
|
|
865
|
+
"sha256": "3c0ce719876d033b8d4571cdeb286fcb4dcc6f6bf1645ae5621a4eaffe47e9fd"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"version": "0.1.14",
|
|
869
|
+
"path": "CLAUDE.md",
|
|
870
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"version": "0.1.14",
|
|
874
|
+
"path": "docs/ab-experiments.md",
|
|
875
|
+
"sha256": "3628ca34dc2f6d1ecd9128f3694c54a0d7cd61124eb86f20da04adef23681eeb"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"version": "0.1.14",
|
|
879
|
+
"path": "docs/analytics.md",
|
|
880
|
+
"sha256": "fa45aa98d19cf2c66eb61445462374e8e6c957f8f660defb991649ba65c5c748"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"version": "0.1.14",
|
|
884
|
+
"path": "docs/editing-flow.md",
|
|
885
|
+
"sha256": "508b14e787335eb170f522135e5ab0bbdb151248b250ba9ed30c0002b6b74b9c"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"version": "0.1.14",
|
|
889
|
+
"path": "docs/editing-step.md",
|
|
890
|
+
"sha256": "8f6b5b9f6fdc322194ef9da9bcaf3b88de2fb8c37679e6f7d8cacf1b772dbd2c"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"version": "0.1.14",
|
|
894
|
+
"path": "docs/editor-and-content.md",
|
|
895
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"version": "0.1.14",
|
|
899
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
900
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"version": "0.1.14",
|
|
904
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
905
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"version": "0.1.14",
|
|
909
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
910
|
+
"sha256": "5e83af799d8037e0ddcc7a1909888f7f5dc7cd45b9d0fd2085f7adc8c45b0704"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"version": "0.1.14",
|
|
914
|
+
"path": "docs/publishing-and-versioning.md",
|
|
915
|
+
"sha256": "8e6263f77820be49d8d724989c28247e1758b75a32ce887941032220f4166d11"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"version": "0.1.14",
|
|
919
|
+
"path": "docs/qa-checklist.md",
|
|
920
|
+
"sha256": "cf48b93ce8afc9b3cfeff12f62e3c70207697ff3dfffd52594b27d2446252e34"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"version": "0.1.14",
|
|
924
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
925
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"version": "0.1.14",
|
|
929
|
+
"path": "docs/step-ui-guidelines.md",
|
|
930
|
+
"sha256": "75bef4c549ba8990c87edd629b4134d5a3e8f909c2f499ef263a1eceb811314a"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"version": "0.1.14",
|
|
934
|
+
"path": "docs/theme.md",
|
|
935
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"version": "0.1.15",
|
|
939
|
+
"path": "AGENTS.md",
|
|
940
|
+
"sha256": "3030d901f450ddeb7fc1560cac48f9df6bb52794011cc75cf0cf81b40f72593a"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"version": "0.1.15",
|
|
944
|
+
"path": "CLAUDE.md",
|
|
945
|
+
"sha256": "f308405b37e4e99d5de1584e4c2b2a2b982f2e8f30ca9860252537f5b8327c4a"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"version": "0.1.15",
|
|
949
|
+
"path": "docs/ab-experiments.md",
|
|
950
|
+
"sha256": "9ea8d9964393990d9306c644248e028cea52cb894261c894bb82582b3b3f6eee"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"version": "0.1.15",
|
|
954
|
+
"path": "docs/analytics.md",
|
|
955
|
+
"sha256": "fa45aa98d19cf2c66eb61445462374e8e6c957f8f660defb991649ba65c5c748"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"version": "0.1.15",
|
|
959
|
+
"path": "docs/editing-flow.md",
|
|
960
|
+
"sha256": "8e441fcc5a24fbd59b410cf884aaadd5024d91dd1cfe90982a39dd8e08017efb"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"version": "0.1.15",
|
|
964
|
+
"path": "docs/editing-step.md",
|
|
965
|
+
"sha256": "8f6b5b9f6fdc322194ef9da9bcaf3b88de2fb8c37679e6f7d8cacf1b772dbd2c"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"version": "0.1.15",
|
|
969
|
+
"path": "docs/editor-and-content.md",
|
|
970
|
+
"sha256": "0876f8133a67e58fd881e35e1d19177dea1e3d2c04352dd7d0d2b7f36bd9379d"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"version": "0.1.15",
|
|
974
|
+
"path": "docs/funnel-runtime-architecture.md",
|
|
975
|
+
"sha256": "8c4d04b2e3901f4d2811a93f240bf20f973ba76e6e9157c2402335cdd3cc499c"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"version": "0.1.15",
|
|
979
|
+
"path": "docs/meta-pixel-conversions-api.md",
|
|
980
|
+
"sha256": "3f05a1fe25e10c7466d3d28556100306772650e3d76507e34f6a2201d1812cfb"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"version": "0.1.15",
|
|
984
|
+
"path": "docs/payment-plans-and-discounts.md",
|
|
985
|
+
"sha256": "5e83af799d8037e0ddcc7a1909888f7f5dc7cd45b9d0fd2085f7adc8c45b0704"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"version": "0.1.15",
|
|
989
|
+
"path": "docs/publishing-and-versioning.md",
|
|
990
|
+
"sha256": "8e6263f77820be49d8d724989c28247e1758b75a32ce887941032220f4166d11"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"version": "0.1.15",
|
|
994
|
+
"path": "docs/qa-checklist.md",
|
|
995
|
+
"sha256": "cf48b93ce8afc9b3cfeff12f62e3c70207697ff3dfffd52594b27d2446252e34"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"version": "0.1.15",
|
|
999
|
+
"path": "docs/sdk-api-endpoints.md",
|
|
1000
|
+
"sha256": "5bfa9cf580e6fba239e713bdc7419fb68edda07f01d4f627d22d8d4a442cc966"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"version": "0.1.15",
|
|
1004
|
+
"path": "docs/step-ui-guidelines.md",
|
|
1005
|
+
"sha256": "75bef4c549ba8990c87edd629b4134d5a3e8f909c2f499ef263a1eceb811314a"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"version": "0.1.15",
|
|
1009
|
+
"path": "docs/theme.md",
|
|
1010
|
+
"sha256": "d76946e69afd6163fd1b359cad204990da90bdf6cc544388a4e4950dd7ceecd7"
|
|
1011
|
+
}
|
|
1012
|
+
]
|