@funnelsgrove/cli 0.1.14 → 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 +428 -53
- 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 -55
- package/template_docs/docs/analytics.md +0 -65
- package/template_docs/docs/editing-flow.md +0 -125
- 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,1078 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"sourceTreeHash": "c8c6b159958cb49080b3c6f1a042920b739206210cce55035a7cc4aa6117d136",
|
|
4
|
+
"stepContractVersion": 3,
|
|
5
|
+
"docsBundleVersion": "2.0.6",
|
|
6
|
+
"files": [
|
|
7
|
+
{
|
|
8
|
+
"path": ".env.example",
|
|
9
|
+
"sha256": "240d0515b8d89df3267c88c98566484b29d5f076c5d23da7f67e4bcb0b167b71",
|
|
10
|
+
"mode": "100644"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"path": ".funnelsgrove-contract-tools.json",
|
|
14
|
+
"sha256": "b9ad23fb24eb97adaef5cd008c471e7529e4971244f48b756e2ed4e0a3dfc96a",
|
|
15
|
+
"mode": "100644"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"path": ".funnelsgrove-docs.json",
|
|
19
|
+
"sha256": "f78dd123c306b83d25204a96888a98b8bf94af4094f964be7eb95da66e99d91f",
|
|
20
|
+
"mode": "100644"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"path": "AGENTS.md",
|
|
24
|
+
"sha256": "952fbafb5841b8f2e6fadab5032374c98390ef90c1ca0ed27747a38d0cc009d7",
|
|
25
|
+
"mode": "100644"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"path": "CLAUDE.md",
|
|
29
|
+
"sha256": "336cc4fbf19beaada7ccf9986414fa91851a8d7a07dfb3ccbe800a69eed0ab49",
|
|
30
|
+
"mode": "100644"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "PLAN.md",
|
|
34
|
+
"sha256": "82dfdc84b66db65aac969e149d57d413b7b8d83d2b990a68cf9a69befea1d56d",
|
|
35
|
+
"mode": "100644"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"path": "PRODUCT_SENSE.md",
|
|
39
|
+
"sha256": "e3ce9cce4717798b3c90bbf0c8d44133a8a2537cb131a7f150a736be9e023d44",
|
|
40
|
+
"mode": "100644"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "context/build-context.md",
|
|
44
|
+
"sha256": "a50dffb3e1238fe7721cfd00acaf16fe2f6d80a8debc9b34be21403863a4ad13",
|
|
45
|
+
"mode": "100644"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "docs/AGENT_FUNNEL_IMPLEMENTATION_SPEC.md",
|
|
49
|
+
"sha256": "eaf3de420195260ee86b0bfc6ab6eedb42c5b0b6ea5e32f35111bac24ef583f8",
|
|
50
|
+
"mode": "100644"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"path": "docs/ARCHITECTURE.md",
|
|
54
|
+
"sha256": "9cb05a5ccbae96fd18bc4d397d89bf1638184941ad896aa584b3a65b932ecdcb",
|
|
55
|
+
"mode": "100644"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"path": "docs/FLOW_CONFIG_AND_ROUTING.md",
|
|
59
|
+
"sha256": "8a1c6266c69a1d1c775c5966e7a895f3bcc792dc6bfdc18540b856cca8841c08",
|
|
60
|
+
"mode": "100644"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"path": "docs/PAYWALL_AND_PAYMENTS.md",
|
|
64
|
+
"sha256": "b599ec24cb642a26856861c8c813067b9471a2b1b4f36f6989ca14a3419dd796",
|
|
65
|
+
"mode": "100644"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"path": "docs/README.md",
|
|
69
|
+
"sha256": "5ef5bb43dfc33d6159ef5c83ce72352284a22836bb4efd38c2dd40487485acd9",
|
|
70
|
+
"mode": "100644"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"path": "docs/funnelsgrove/START-HERE.md",
|
|
74
|
+
"sha256": "638615b66f771a36015d747fd8e8a1bf0af311ed24631c3dd041388e8e73c09d",
|
|
75
|
+
"mode": "100644"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"path": "docs/funnelsgrove/contracts/analytics-events.md",
|
|
79
|
+
"sha256": "743ca0d6b3a19b3b9e0bd489b228dab7be73d26073a86aab513a90477da481c6",
|
|
80
|
+
"mode": "100644"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"path": "docs/funnelsgrove/contracts/content-answers.md",
|
|
84
|
+
"sha256": "403b286060dd6cda33757df7c55c5b0e17395f2d90aad0fc133d6ba1919a04b3",
|
|
85
|
+
"mode": "100644"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"path": "docs/funnelsgrove/contracts/flow-routing.md",
|
|
89
|
+
"sha256": "050564846bf7d44afb267e1321d6fe277f032fe7b6237441741570c723543d0e",
|
|
90
|
+
"mode": "100644"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"path": "docs/funnelsgrove/contracts/payments.md",
|
|
94
|
+
"sha256": "1a003f83fa01dba60bd4bb3365fd0a753dadd73d13fed84fd16b70d1df3d2b60",
|
|
95
|
+
"mode": "100644"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"path": "docs/funnelsgrove/contracts/step-metadata.md",
|
|
99
|
+
"sha256": "de89a1a672abbe82d0e9c44da536d2a00893bf85fdec225b3aff7ecd7a965f20",
|
|
100
|
+
"mode": "100644"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"path": "docs/funnelsgrove/migrations/step-contract-v3.md",
|
|
104
|
+
"sha256": "ea1f65198292bfbb2f018fd39f583dfa5c6e1760b77612d804c91d59029ac98d",
|
|
105
|
+
"mode": "100644"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"path": "docs/funnelsgrove/qa/analytics.md",
|
|
109
|
+
"sha256": "5ac36e547155546be230b9f1df144c7875824686627859c97b43e33d6e3e116d",
|
|
110
|
+
"mode": "100644"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"path": "docs/funnelsgrove/qa/local.md",
|
|
114
|
+
"sha256": "97da7e26c5dbe8f63e654e4e0a035a4ecfbb9bcfd80db67d45c627141d6a2756",
|
|
115
|
+
"mode": "100644"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"path": "docs/funnelsgrove/qa/paywall-checkout.md",
|
|
119
|
+
"sha256": "6fc887772e52ddd99ab70d898d8fd9b89869ca49ce1b49152d232cbe32865aae",
|
|
120
|
+
"mode": "100644"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"path": "docs/funnelsgrove/qa/publish.md",
|
|
124
|
+
"sha256": "82b05b8c6eebf25d32d2cff6f05b08bc39661dcbb46caa6b912de6b803aed39c",
|
|
125
|
+
"mode": "100644"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"path": "docs/funnelsgrove/recipes/add-experiment.md",
|
|
129
|
+
"sha256": "832b4331d6690d0596800c5aeb969f608dd62cf63d9ae527054e832fb60f8abd",
|
|
130
|
+
"mode": "100644"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"path": "docs/funnelsgrove/recipes/add-step.md",
|
|
134
|
+
"sha256": "fba92b8394b0d622b9886a677af38ddb78042a633c60ab5cb6b1ff600abe2cb9",
|
|
135
|
+
"mode": "100644"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"path": "docs/funnelsgrove/recipes/edit-step.md",
|
|
139
|
+
"sha256": "49eb688c0b3145c025dffe30a9be35e5f5e018da66cbeddf2a08af6a1cc250dc",
|
|
140
|
+
"mode": "100644"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"path": "docs/funnelsgrove/steps/INDEX.md",
|
|
144
|
+
"sha256": "86db94292eae2fffcd89795dedeab1eca32ce4d360d36f5d4b0806698642384f",
|
|
145
|
+
"mode": "100644"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"path": "docs/funnelsgrove/steps/cancellation_offer.md",
|
|
149
|
+
"sha256": "144e31d14c8a3cc832abcb5404f47da67308c412ec630f88b8ef54cb19a6f73a",
|
|
150
|
+
"mode": "100644"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"path": "docs/funnelsgrove/steps/checkout.md",
|
|
154
|
+
"sha256": "272ce5ae593bd8354e18f20a529daf39005226ca3f57b89db20095017d64c94f",
|
|
155
|
+
"mode": "100644"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"path": "docs/funnelsgrove/steps/form_input.md",
|
|
159
|
+
"sha256": "650a2d84cabf309f90fa7d37ac4101ea4002b2f2da4548ce80ed86f2194eba9e",
|
|
160
|
+
"mode": "100644"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"path": "docs/funnelsgrove/steps/intro_hero.md",
|
|
164
|
+
"sha256": "85de9bd3e4f7ec6af3dedb44340de4087939f679748cf796b9f5214936a8737b",
|
|
165
|
+
"mode": "100644"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"path": "docs/funnelsgrove/steps/multi_select_choice.md",
|
|
169
|
+
"sha256": "d9c6d7d75ccc6c50697033b3ad2a6383554d815d8f952c75f8319e73b09db1d1",
|
|
170
|
+
"mode": "100644"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"path": "docs/funnelsgrove/steps/paywall_offer.md",
|
|
174
|
+
"sha256": "969ee556ca1da3bfa09c21f530726467735693537452fcbf3065f21644b90669",
|
|
175
|
+
"mode": "100644"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"path": "docs/funnelsgrove/steps/progress_interstitial.md",
|
|
179
|
+
"sha256": "7ed2d0bf4ac45ee74e36bd87865c250206353ddbd6b34b93975bf87fb0ea09bb",
|
|
180
|
+
"mode": "100644"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"path": "docs/funnelsgrove/steps/purchase_completed.md",
|
|
184
|
+
"sha256": "4fc5b6973ed5b9520619914e41f9633308ae3d46f391a57be44e5a1a7c210253",
|
|
185
|
+
"mode": "100644"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"path": "docs/funnelsgrove/steps/single_step_choice.md",
|
|
189
|
+
"sha256": "63efe3cdf363342eda69522f9c549f11203b53d2afe10af6ebce4eff90e5a53c",
|
|
190
|
+
"mode": "100644"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"path": "docs/funnelsgrove/steps/single_step_choice_emoji.md",
|
|
194
|
+
"sha256": "ed3593d6b1ff26dfccec515f858304001da1e3739dbc9a4d22dfafb5ebfbbc0c",
|
|
195
|
+
"mode": "100644"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"path": "docs/funnelsgrove/steps/social_proof.md",
|
|
199
|
+
"sha256": "cae4611e44d020ebe7a1792f91666b1a8d9df2798a226808a830f903f58feccb",
|
|
200
|
+
"mode": "100644"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"path": "docs/funnelsgrove/steps/subscription_handoff.md",
|
|
204
|
+
"sha256": "dd2e7fed11f1f08ecfa9a969ea0b55d7d41d28c5ab160f6e4a560ee2a7bc2ff3",
|
|
205
|
+
"mode": "100644"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"path": "docs/funnelsgrove/steps/subscription_management.md",
|
|
209
|
+
"sha256": "291d2c39d414a8ece0c73840b20eed14c86f88700323835c86a518c91382d02d",
|
|
210
|
+
"mode": "100644"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"path": "docs/funnelsgrove/steps/summary_confirmation.md",
|
|
214
|
+
"sha256": "a92a1a5c7e7072a0ac86f808940f72fd4be38f97624219d2a1e7a04580b73cc6",
|
|
215
|
+
"mode": "100644"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"path": "docs/funnelsgrove/steps/upsell_offer.md",
|
|
219
|
+
"sha256": "832ffb5506ccdc72b28c839e1b574e5c9ba0c01755fa6c4be105dbe1136b21d0",
|
|
220
|
+
"mode": "100644"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"path": "docs/funnelsgrove/steps/value_prop_story.md",
|
|
224
|
+
"sha256": "9c62b5c908ffade3dc478b95f67b574817af98d4e8c9359d7db20cccd5eca2b7",
|
|
225
|
+
"mode": "100644"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"path": "docs/references/funnel-sdk-user-answers.md",
|
|
229
|
+
"sha256": "5f947eb479da461f533f2e8971c813a74bf4adbab7b723a1f736a27c2467cb15",
|
|
230
|
+
"mode": "100644"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"path": "eslint.config.mjs",
|
|
234
|
+
"sha256": "059cab3c5d3244a3695879763e6ca845e862850598b6c23a3c7a62a30b085954",
|
|
235
|
+
"mode": "100644"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"path": "funnel-agent-docs.test.ts",
|
|
239
|
+
"sha256": "e976be0e42d8db7f3f02cab764c08c23d73249a0ef70a994449081a7f2da9676",
|
|
240
|
+
"mode": "100644"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"path": "funnel-docs.config.json",
|
|
244
|
+
"sha256": "1d255682f3394a650b2d1046de407d2772cec5049c6ff9872d66e893d30076d4",
|
|
245
|
+
"mode": "100644"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"path": "funnel.config.json",
|
|
249
|
+
"sha256": "6b5f7891fa9ef74e63d6b06f19a20c3aa3184a61541b76e18da4ce366e5faed8",
|
|
250
|
+
"mode": "100644"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"path": "gitignore.template",
|
|
254
|
+
"sha256": "3a92bf7904de32466cfc5521796fe60bcde1301b88f88e1417709060041e2aec",
|
|
255
|
+
"mode": "100644"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"path": "next-env.d.ts",
|
|
259
|
+
"sha256": "7b550dda9686c16f36a17bf9051d5dbf31e98555b30d114ac49fc49a1e712651",
|
|
260
|
+
"mode": "100644"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"path": "next.config.ts",
|
|
264
|
+
"sha256": "c3a2ef1d8988ee8fd193b31618de8487334883d59e67eb2f0cf00498ec698da2",
|
|
265
|
+
"mode": "100644"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"path": "package-lock.json",
|
|
269
|
+
"sha256": "4a84bf6894b49ada8de3d8e5f74e6a7bc8f9b5566f285c465264da7354f8515e",
|
|
270
|
+
"mode": "100644"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"path": "package.json",
|
|
274
|
+
"sha256": "ae265d1be2987123f7c54ae0829fbc8e044efb3100f097552170adb349880c08",
|
|
275
|
+
"mode": "100644"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"path": "package.test.ts",
|
|
279
|
+
"sha256": "0631d66d24d25e1486e0c9b9e3fe6bb23c5acf9e04e4888e36525ae12b7711aa",
|
|
280
|
+
"mode": "100644"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"path": "public/claimbee/bee.png",
|
|
284
|
+
"sha256": "994b0aaf645924c2f39403c01b9417c2363065ceadba7a5403bcd79b7745604a",
|
|
285
|
+
"mode": "100644"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"path": "public/claimbee/device-iphone.png",
|
|
289
|
+
"sha256": "0dfd6f84da9338e9eb112c5cd481d5a8fb4a77f0a391c3824311860fa8b041ce",
|
|
290
|
+
"mode": "100644"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"path": "public/claimbee/device-macbook.png",
|
|
294
|
+
"sha256": "fff7756ec1b32dc269c8fc43a022deee84173036ceb0fb8e529bf728e84eff5c",
|
|
295
|
+
"mode": "100644"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"path": "public/claimbee/device-none.png",
|
|
299
|
+
"sha256": "1ae0ed0b715d68a57fcad23e717ed2ea62b796325e9a91285cad02d33ae8f660",
|
|
300
|
+
"mode": "100644"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"path": "public/claimbee/device-watch.png",
|
|
304
|
+
"sha256": "d402a2a23195d9f510f979cfa32528501be36d6ce7f840c2c5a395c5b84c7253",
|
|
305
|
+
"mode": "100644"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"path": "public/claimbee/glow.svg",
|
|
309
|
+
"sha256": "d226931e23f1d1883fe0e52516c25aec195fa8f3ad3e3b4dda2bd135602b230e",
|
|
310
|
+
"mode": "100644"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "public/claimbee/steps-sprite-alt.png",
|
|
314
|
+
"sha256": "925bdc1c72b4511d8249160eacdc397f0edda23f6bb16d93d67ad3808960da23",
|
|
315
|
+
"mode": "100644"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"path": "public/claimbee/steps-sprite-default.png",
|
|
319
|
+
"sha256": "65c17094ca7842f18502bfae2ead2376478ebe16935af4783031aa902975d6a5",
|
|
320
|
+
"mode": "100644"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"path": "public/claimbee/testimonial-avatar.png",
|
|
324
|
+
"sha256": "655b8ab5ff32acf027838daba8cd2802766ad7e3245fd50462c73abd7f9e46c6",
|
|
325
|
+
"mode": "100644"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"path": "public/claimbee/testimonial-star.svg",
|
|
329
|
+
"sha256": "e3b355e669847214dd39e60f3510948b93ed31857b75235b94bf09822e17fd5f",
|
|
330
|
+
"mode": "100644"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"path": "public/paywall/ai-claim-assistant.png",
|
|
334
|
+
"sha256": "f5c9d31d7e414cb5ad69b24738e6de2e656ab7a966c98bc5f54731703593b68a",
|
|
335
|
+
"mode": "100644"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"path": "public/paywall/claim-history.png",
|
|
339
|
+
"sha256": "ae76cf0c6e988cdaa098e1d5ed69157b63e96e31afb3bd0e926dd609abbf8a0e",
|
|
340
|
+
"mode": "100644"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"path": "public/paywall/clear-progress.png",
|
|
344
|
+
"sha256": "01f66d30ee15553764e450af0270f50968a2d2febee590ca2e7d3541d2e19e2e",
|
|
345
|
+
"mode": "100644"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"path": "public/paywall/hero.png",
|
|
349
|
+
"sha256": "bf962a181fe72022f3bbecbfa2a875478456255e2beea04a1e3d2bf8a0d2f13f",
|
|
350
|
+
"mode": "100644"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"path": "public/paywall/money-alerts.png",
|
|
354
|
+
"sha256": "14917db07be0b84def907ff19911bb53dec9da662865ef8153c51521050e15bc",
|
|
355
|
+
"mode": "100644"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"path": "public/paywall/money-back-badge.png",
|
|
359
|
+
"sha256": "79c7ad7c5c0b7725a3665d3afafa4261804fe77fb82fd56c2aea0b704f5c414f",
|
|
360
|
+
"mode": "100644"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"path": "public/paywall/paywall-image.png",
|
|
364
|
+
"sha256": "d86fcb362ffd7020abe9438877040c9879516dddf36324292d19a5edb4a91e89",
|
|
365
|
+
"mode": "100644"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"path": "public/paywall/r1.png",
|
|
369
|
+
"sha256": "ceb878d3b3a2e6369b3734e681e4e09c3289a0ae2b08233fcf404711e4687e0d",
|
|
370
|
+
"mode": "100644"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"path": "public/paywall/r2.png",
|
|
374
|
+
"sha256": "ad9841ba9805a0232b07a1e903e6e464cfde069ff319acb4589cfc129cc0685e",
|
|
375
|
+
"mode": "100644"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"path": "public/paywall/r3.png",
|
|
379
|
+
"sha256": "176f6f8407f4875c868365c556c5f0f8b747b8ec6b4942be2d39c81245f3b142",
|
|
380
|
+
"mode": "100644"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"path": "public/paywall/r4.png",
|
|
384
|
+
"sha256": "890d96758147c139dfc6cfc69948476873010d8f750e9d33a3343d60180194b3",
|
|
385
|
+
"mode": "100644"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"path": "public/paywall/r5.png",
|
|
389
|
+
"sha256": "2071e213448e5b8feef3506f4800e69267b8e1e0501b3cd029e2f6488db0ba11",
|
|
390
|
+
"mode": "100644"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"path": "public/paywall/r6.png",
|
|
394
|
+
"sha256": "e91df52ac92e6f6c9511dfd44d18a92b513fd7502949d2755045d181665d0410",
|
|
395
|
+
"mode": "100644"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"path": "public/paywall/special-offer-gift.png",
|
|
399
|
+
"sha256": "03b6e347f3cc3c33d6b4d83e13979f5f08587875fa4177b6a6850959be861352",
|
|
400
|
+
"mode": "100644"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"path": "public/please/bee.png",
|
|
404
|
+
"sha256": "994b0aaf645924c2f39403c01b9417c2363065ceadba7a5403bcd79b7745604a",
|
|
405
|
+
"mode": "100644"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"path": "public/please/device-iphone.png",
|
|
409
|
+
"sha256": "0dfd6f84da9338e9eb112c5cd481d5a8fb4a77f0a391c3824311860fa8b041ce",
|
|
410
|
+
"mode": "100644"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"path": "public/please/device-macbook.png",
|
|
414
|
+
"sha256": "fff7756ec1b32dc269c8fc43a022deee84173036ceb0fb8e529bf728e84eff5c",
|
|
415
|
+
"mode": "100644"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"path": "public/please/device-none.png",
|
|
419
|
+
"sha256": "1ae0ed0b715d68a57fcad23e717ed2ea62b796325e9a91285cad02d33ae8f660",
|
|
420
|
+
"mode": "100644"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"path": "public/please/device-watch.png",
|
|
424
|
+
"sha256": "d402a2a23195d9f510f979cfa32528501be36d6ce7f840c2c5a395c5b84c7253",
|
|
425
|
+
"mode": "100644"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"path": "public/please/glow.svg",
|
|
429
|
+
"sha256": "d226931e23f1d1883fe0e52516c25aec195fa8f3ad3e3b4dda2bd135602b230e",
|
|
430
|
+
"mode": "100644"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"path": "public/please/steps-sprite-alt.png",
|
|
434
|
+
"sha256": "925bdc1c72b4511d8249160eacdc397f0edda23f6bb16d93d67ad3808960da23",
|
|
435
|
+
"mode": "100644"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"path": "public/please/steps-sprite-default.png",
|
|
439
|
+
"sha256": "65c17094ca7842f18502bfae2ead2376478ebe16935af4783031aa902975d6a5",
|
|
440
|
+
"mode": "100644"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"path": "public/please/testimonial-avatar.png",
|
|
444
|
+
"sha256": "655b8ab5ff32acf027838daba8cd2802766ad7e3245fd50462c73abd7f9e46c6",
|
|
445
|
+
"mode": "100644"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"path": "public/please/testimonial-star.svg",
|
|
449
|
+
"sha256": "e3b355e669847214dd39e60f3510948b93ed31857b75235b94bf09822e17fd5f",
|
|
450
|
+
"mode": "100644"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"path": "public/upsell/upgrade-hero.png",
|
|
454
|
+
"sha256": "fcff5d9b5fed1058de82e81d7cef0501cd94744827317ffb8f183c7b11e6c511",
|
|
455
|
+
"mode": "100644"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"path": "src/app/[stepId]/page.test.tsx",
|
|
459
|
+
"sha256": "918e1ac9c08355ae7c0f439a453473b498fae4c06784e8f73329cd852c38b17f",
|
|
460
|
+
"mode": "100644"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"path": "src/app/[stepId]/page.tsx",
|
|
464
|
+
"sha256": "292b9f12317d03061a72823b13ded89872c6f163b33502450ab418e6a397433e",
|
|
465
|
+
"mode": "100644"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"path": "src/app/globals.css",
|
|
469
|
+
"sha256": "91ff423c95f785d22bbecb82e81ee93a88b57f794ef391a7ac9cb4cc70267032",
|
|
470
|
+
"mode": "100644"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"path": "src/app/layout.test.ts",
|
|
474
|
+
"sha256": "039a68c7af445bc3f37df2ffa3697edf6e554a6da293c8daa64da9150674a93a",
|
|
475
|
+
"mode": "100644"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"path": "src/app/layout.tsx",
|
|
479
|
+
"sha256": "739926b65738b1e7e9e52394b8a360ec4ad1e3fb2c03e6f9218f85ba72ba7b12",
|
|
480
|
+
"mode": "100644"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"path": "src/app/page.tsx",
|
|
484
|
+
"sha256": "cff1f325c8547affee46e9fc0c8875382526fa8b4b5e97f83ce034c6e8e9a275",
|
|
485
|
+
"mode": "100644"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"path": "src/app/sdk/page.tsx",
|
|
489
|
+
"sha256": "2fc4212206514cf4792adb74fe0ae08005c26b83293a018176d3b4e17f23af56",
|
|
490
|
+
"mode": "100644"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"path": "src/app/subscription-dashboard/page.tsx",
|
|
494
|
+
"sha256": "765ebe25423289453891afa711423dd09e0e9a50cd12b55c2a1c878a12193ea9",
|
|
495
|
+
"mode": "100644"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"path": "src/assets/claimbee/bee.png",
|
|
499
|
+
"sha256": "994b0aaf645924c2f39403c01b9417c2363065ceadba7a5403bcd79b7745604a",
|
|
500
|
+
"mode": "100644"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"path": "src/assets/claimbee/device-iphone.png",
|
|
504
|
+
"sha256": "0dfd6f84da9338e9eb112c5cd481d5a8fb4a77f0a391c3824311860fa8b041ce",
|
|
505
|
+
"mode": "100644"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"path": "src/assets/claimbee/device-macbook.png",
|
|
509
|
+
"sha256": "fff7756ec1b32dc269c8fc43a022deee84173036ceb0fb8e529bf728e84eff5c",
|
|
510
|
+
"mode": "100644"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"path": "src/assets/claimbee/device-none.png",
|
|
514
|
+
"sha256": "1ae0ed0b715d68a57fcad23e717ed2ea62b796325e9a91285cad02d33ae8f660",
|
|
515
|
+
"mode": "100644"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"path": "src/assets/claimbee/device-watch.png",
|
|
519
|
+
"sha256": "d402a2a23195d9f510f979cfa32528501be36d6ce7f840c2c5a395c5b84c7253",
|
|
520
|
+
"mode": "100644"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"path": "src/assets/claimbee/glow.svg",
|
|
524
|
+
"sha256": "d226931e23f1d1883fe0e52516c25aec195fa8f3ad3e3b4dda2bd135602b230e",
|
|
525
|
+
"mode": "100644"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"path": "src/assets/claimbee/steps-sprite-alt.png",
|
|
529
|
+
"sha256": "925bdc1c72b4511d8249160eacdc397f0edda23f6bb16d93d67ad3808960da23",
|
|
530
|
+
"mode": "100644"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"path": "src/assets/claimbee/steps-sprite-default.png",
|
|
534
|
+
"sha256": "65c17094ca7842f18502bfae2ead2376478ebe16935af4783031aa902975d6a5",
|
|
535
|
+
"mode": "100644"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"path": "src/assets/claimbee/testimonial-avatar.png",
|
|
539
|
+
"sha256": "655b8ab5ff32acf027838daba8cd2802766ad7e3245fd50462c73abd7f9e46c6",
|
|
540
|
+
"mode": "100644"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"path": "src/assets/claimbee/testimonial-star.svg",
|
|
544
|
+
"sha256": "e3b355e669847214dd39e60f3510948b93ed31857b75235b94bf09822e17fd5f",
|
|
545
|
+
"mode": "100644"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"path": "src/components/FunnelEditorPanel.tsx",
|
|
549
|
+
"sha256": "36dc049600c2dd220c86d4e5ec684e4a3e2527121565efdf0bcf900b61636aa3",
|
|
550
|
+
"mode": "100644"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"path": "src/components/FunnelFlow.test.tsx",
|
|
554
|
+
"sha256": "7970d20d0105dca78812d7f220c8568320adf5fb3577753207dfe5ff64d9177a",
|
|
555
|
+
"mode": "100644"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"path": "src/components/FunnelFlow.tsx",
|
|
559
|
+
"sha256": "c3446a33f3c3763b7269ed8eb9281e7a20d82954193d5a7a877e10a3179bb3ac",
|
|
560
|
+
"mode": "100644"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"path": "src/components/FunnelStepImage.test.ts",
|
|
564
|
+
"sha256": "bcd6ae93cc75554734bc3ade665c05571f6da8bfbfc580e991a4db21398fc9bb",
|
|
565
|
+
"mode": "100644"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"path": "src/components/FunnelStepImage.tsx",
|
|
569
|
+
"sha256": "fc018e49106f9e7105467fccc21e0b164fc654b0d5f3c92f36315a1296be8a54",
|
|
570
|
+
"mode": "100644"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"path": "src/components/step/FunnelStepHeader.tsx",
|
|
574
|
+
"sha256": "214dc27da4de9554bbdc0d59a351bcfc34f94cbad08e748d90adf98326639795",
|
|
575
|
+
"mode": "100644"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"path": "src/config/billing.plans.test.ts",
|
|
579
|
+
"sha256": "6375cfad4c8ab34783b62132f8382e8f79455dcca39941ecfb6f79a5a46e577c",
|
|
580
|
+
"mode": "100644"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"path": "src/config/billing.plans.ts",
|
|
584
|
+
"sha256": "95f76f07a47dfe70d13cd21369aa5f1a389326b6d3e71b2246967865f1d13fa5",
|
|
585
|
+
"mode": "100644"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"path": "src/config/billing.test.plans.ts",
|
|
589
|
+
"sha256": "1a5ac5f14321748a7d19631adf32ca4412f2d129ed31080683ae2e25b21a1ef8",
|
|
590
|
+
"mode": "100644"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"path": "src/config/experiments.generated.ts",
|
|
594
|
+
"sha256": "f25744dcebf4932ce25f378c76f2bd270c997f7792093b07ed0abdd7c74a1049",
|
|
595
|
+
"mode": "100644"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"path": "src/config/experiments.test.ts",
|
|
599
|
+
"sha256": "049ff313dc5151a13102b2cd77654d3c0c695f8e066500fde9a288dd66a28d3a",
|
|
600
|
+
"mode": "100644"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"path": "src/config/experiments.ts",
|
|
604
|
+
"sha256": "f008ff0c04a267f03204e34e9d13bc0d897d14053e78287f700801484fc3f937",
|
|
605
|
+
"mode": "100644"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"path": "src/config/funnel.config.ts",
|
|
609
|
+
"sha256": "6826189cdc984b448b9049d80f94fbe78a96cc6101b868a93554004011a3c424",
|
|
610
|
+
"mode": "100644"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"path": "src/config/funnel.manifest.test.ts",
|
|
614
|
+
"sha256": "466cadbac9ae1ad832412779a6f534ce683271c5829fe27f15223347c9210764",
|
|
615
|
+
"mode": "100644"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"path": "src/config/funnel.manifest.ts",
|
|
619
|
+
"sha256": "9bdb5e41da57edb5d16afde77c5d108010658160168aeee2ad65f79fd9b82604",
|
|
620
|
+
"mode": "100644"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"path": "src/config/offer-sets.generated.ts",
|
|
624
|
+
"sha256": "732be9f47bb07165c967967196442e2e8c28fece3b651ef4d9907d7c5410bdea",
|
|
625
|
+
"mode": "100644"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"path": "src/contract/funnel-project.validation.test.ts",
|
|
629
|
+
"sha256": "87797b5e8de6ebc8e23b3c20e6ab4f5b93d411d39c334a0af15101b11c7b6d54",
|
|
630
|
+
"mode": "100644"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"path": "src/contract/funnel-project.validation.ts",
|
|
634
|
+
"sha256": "b0ec02eac1bd56812eef773be71628ae4e94f80fcd88837bbc5c8bf04e73a62c",
|
|
635
|
+
"mode": "100644"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"path": "src/contract/funnel-validator.vite.config.ts",
|
|
639
|
+
"sha256": "014c0c2c5e29d98e7c91548f233843d83630905ba20c10d248364271ca448e9b",
|
|
640
|
+
"mode": "100644"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"path": "src/contract/golden/cancellation_offer.fixture.ts",
|
|
644
|
+
"sha256": "9b0e8cbb4e0069893c98f3663a5192ab2de0e53bbfe0cd261e61a1ef60ccd8b4",
|
|
645
|
+
"mode": "100644"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"path": "src/contract/golden/checkout.fixture.ts",
|
|
649
|
+
"sha256": "52c491bfa65a40d173ad8a88bb9d7bd54e2e5aca923ecae20eda9356e573aeaf",
|
|
650
|
+
"mode": "100644"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"path": "src/contract/golden/form_input.fixture.ts",
|
|
654
|
+
"sha256": "46852bbbd36244a0fe513385bd59d585f92feb17049d4621a6ad829752f80e95",
|
|
655
|
+
"mode": "100644"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"path": "src/contract/golden/golden-fixtures.test.ts",
|
|
659
|
+
"sha256": "b0caad74c84bc0e3a2de09a88e0a6f685818c0138fab71f7fcbfd032b9a750b4",
|
|
660
|
+
"mode": "100644"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"path": "src/contract/golden/intro_hero.fixture.ts",
|
|
664
|
+
"sha256": "f9ff4676f115085b537e388e1ffd04cc5a09a9c58d8ff871aff92dfceabfd095",
|
|
665
|
+
"mode": "100644"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"path": "src/contract/golden/multi_select_choice.fixture.ts",
|
|
669
|
+
"sha256": "791a3a46a4bcadc70ae83d1a8168e0b0275e84755e7594050f2ccbd9b49a45b7",
|
|
670
|
+
"mode": "100644"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"path": "src/contract/golden/paywall_offer.fixture.ts",
|
|
674
|
+
"sha256": "5190c4977ac0ebabdbe4bd5c5e02fbba46bb8fc0f2b1ba62ac71a01cd572062b",
|
|
675
|
+
"mode": "100644"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"path": "src/contract/golden/progress_interstitial.fixture.ts",
|
|
679
|
+
"sha256": "35385be973fa72e8418bb1c937173b1715f0a2729c95d9f7883ae1f56fc52b7f",
|
|
680
|
+
"mode": "100644"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"path": "src/contract/golden/purchase_completed.fixture.ts",
|
|
684
|
+
"sha256": "2fa1f2de1dc0688c0004a4cbc49c0904f9c7cbb66d28d84079ee76fb506c47cc",
|
|
685
|
+
"mode": "100644"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"path": "src/contract/golden/single_step_choice.fixture.ts",
|
|
689
|
+
"sha256": "e1997d51d190e29d0f5ce6eeb3bb6f664b145b06d036921b9d7b16d784e70de2",
|
|
690
|
+
"mode": "100644"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"path": "src/contract/golden/single_step_choice_emoji.fixture.ts",
|
|
694
|
+
"sha256": "a89e1487fa8bbcf4a20584b24cb60c543b061dda8e79f0ffcfaedcf4bbb8a137",
|
|
695
|
+
"mode": "100644"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"path": "src/contract/golden/social_proof.fixture.ts",
|
|
699
|
+
"sha256": "e42c3bf6b8ab36a35ad5b181cd703187ce61f0aaf073a89b28dc79466a3c6b13",
|
|
700
|
+
"mode": "100644"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"path": "src/contract/golden/subscription_handoff.fixture.ts",
|
|
704
|
+
"sha256": "8d3f7d7890a13ea4a6241ef514dd8c8afa232cad744ea0d9120a18d2e2c80284",
|
|
705
|
+
"mode": "100644"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"path": "src/contract/golden/subscription_management.fixture.ts",
|
|
709
|
+
"sha256": "9d603fe6f9c640101a9ca91fc7bc26ae12a08d53f3522325f0b2ea66127e74ae",
|
|
710
|
+
"mode": "100644"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"path": "src/contract/golden/summary_confirmation.fixture.ts",
|
|
714
|
+
"sha256": "da029aeba7c769205950db5a02041f89411368dc05f7e44e096ae53de50aaf4b",
|
|
715
|
+
"mode": "100644"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"path": "src/contract/golden/upsell_offer.fixture.ts",
|
|
719
|
+
"sha256": "132d92adefeb0a5031bc0aee05a42efaac4014145dbc2a1b07aad2ba94fdeb05",
|
|
720
|
+
"mode": "100644"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"path": "src/contract/golden/value_prop_story.fixture.ts",
|
|
724
|
+
"sha256": "44a8edb337628083d516298b9acc6da67151ada9a13fbb6543b52223155ccda7",
|
|
725
|
+
"mode": "100644"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"path": "src/contract/validate-funnel.cli.test.ts",
|
|
729
|
+
"sha256": "ff231bc1c118a3fc7181927476e2a43e5a40752f3824fc057324d762d32052f4",
|
|
730
|
+
"mode": "100644"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"path": "src/contract/validate-funnel.cli.ts",
|
|
734
|
+
"sha256": "1b268b194865d633c760b704a0d4552adc2eb4526801da138ab2a4036f643d58",
|
|
735
|
+
"mode": "100644"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"path": "src/runtime/checkout-runtime-config.test.ts",
|
|
739
|
+
"sha256": "0e0171cf3c60a3d85ccd626231b38995e7dc26df9c0e95f24622480de11c49dc",
|
|
740
|
+
"mode": "100644"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"path": "src/runtime/checkout-runtime-config.ts",
|
|
744
|
+
"sha256": "aeb2f527d4850e507f9f16de3067f55ef4e3dc3374abf76c041a7a76661ea1da",
|
|
745
|
+
"mode": "100644"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"path": "src/runtime/funnel-runtime.test.ts",
|
|
749
|
+
"sha256": "1767fdd4d61f6f6d6642c7510386018a181715b0c2e4978fb417ece0331c9b0f",
|
|
750
|
+
"mode": "100644"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"path": "src/runtime/funnel-runtime.ts",
|
|
754
|
+
"sha256": "a657b8864df422ac16759351a6a1a221ca70f50d56d3e2b066fd5ab23eae79b9",
|
|
755
|
+
"mode": "100644"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"path": "src/runtime/step-content-context.test.ts",
|
|
759
|
+
"sha256": "c2a22459bc64cbfa1c2fd7d23e1f2863a0998273a6efed7131029c74414fbc7a",
|
|
760
|
+
"mode": "100644"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"path": "src/runtime/step-content-context.ts",
|
|
764
|
+
"sha256": "a354f949756e673faf2c9f940a5485abce8e618920ff6ae7766dba9d67250bde",
|
|
765
|
+
"mode": "100644"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"path": "src/runtime/step-registry.ts",
|
|
769
|
+
"sha256": "61e9906910cd6f6bab2ba7dff302a95994c46465f462d6097aae5ed223c14e10",
|
|
770
|
+
"mode": "100644"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"path": "src/runtime/step-variable-values.ts",
|
|
774
|
+
"sha256": "a6021318a562accf6c6872dfa1947a51ff1bb302837b60477a35d0b595544e5c",
|
|
775
|
+
"mode": "100644"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"path": "src/runtime/use-funnel-flow-controller.integration.test.ts",
|
|
779
|
+
"sha256": "d5900401cd2865ad1c0755339861e0a1a84b139dc3a88207927c061ab9a7ef01",
|
|
780
|
+
"mode": "100644"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"path": "src/runtime/use-funnel-flow-controller.test.ts",
|
|
784
|
+
"sha256": "68ee4fc973c32a44a1b51ab383a80929242c4f53542c0b508b184a05c697fded",
|
|
785
|
+
"mode": "100644"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"path": "src/runtime/use-funnel-flow-controller.ts",
|
|
789
|
+
"sha256": "9f12ab00b0c0685c3b520b9cc9bad22b7b04323164358b169356dc85338e0f50",
|
|
790
|
+
"mode": "100644"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"path": "src/steps/content/email-capture.content.ts",
|
|
794
|
+
"sha256": "b5770c01f838edc543fd32ea80a251d652586525029bff42cd0533a9bdd660e4",
|
|
795
|
+
"mode": "100644"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"path": "src/steps/content/manage-subscription.content.ts",
|
|
799
|
+
"sha256": "760e5adf994646b58b3cfd8242708ac8457cda25f4972041062ea6c4362bfe38",
|
|
800
|
+
"mode": "100644"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"path": "src/steps/content/paywall.content.ts",
|
|
804
|
+
"sha256": "48b627d2b559af2595a002a26e1eefbebdbfbfadd40a121b6af616c6d4f948c3",
|
|
805
|
+
"mode": "100644"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"path": "src/steps/content/step-01.content.ts",
|
|
809
|
+
"sha256": "2c2900bdd2599bfc241709242574d0d22e8868a86e72726fa2eea651dca4d086",
|
|
810
|
+
"mode": "100644"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"path": "src/steps/content/step-02.content.ts",
|
|
814
|
+
"sha256": "b0b07019d6bb0a747642dd681712e979a441c1b511fbf23dab677e2138489b65",
|
|
815
|
+
"mode": "100644"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"path": "src/steps/content/step-03.content.ts",
|
|
819
|
+
"sha256": "7c9b4d878e706f68a55bca337a57cfc4b1b97d315f7390796616441615eb32ba",
|
|
820
|
+
"mode": "100644"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"path": "src/steps/content/step-04.content.ts",
|
|
824
|
+
"sha256": "183a2f86914dbb0dbcb21d93ac4dca0205763f36dcc7832f5680838f5e0d33b4",
|
|
825
|
+
"mode": "100644"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"path": "src/steps/content/step-32-paywall.content.ts",
|
|
829
|
+
"sha256": "acc8c27da5b4605d1e4b9e8bdd880c1cc367972a303615629cf6a544f7a2230d",
|
|
830
|
+
"mode": "100644"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"path": "src/steps/content/subscription-started.content.ts",
|
|
834
|
+
"sha256": "1b50bdd85c3f5999891b43ba604adf4135129c1e9ef82ce42433e4a6c2969e1d",
|
|
835
|
+
"mode": "100644"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"path": "src/steps/editor/email-capture.editor.ts",
|
|
839
|
+
"sha256": "f2f8e2c58ab4dbf73433c895e9079cc16cc3b03fa5ec8722a7c86bead021ce14",
|
|
840
|
+
"mode": "100644"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"path": "src/steps/editor/manage-subscription.editor.ts",
|
|
844
|
+
"sha256": "5bf0b72a5bdd7641789bea816f8027c69e37b143cfb180a5651d8973a722ea36",
|
|
845
|
+
"mode": "100644"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"path": "src/steps/editor/paywall.editor.ts",
|
|
849
|
+
"sha256": "abab003fae758e7456c7b318cfc4fa11b5dc31e6612f2d6d3493c2b702a0e8ad",
|
|
850
|
+
"mode": "100644"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"path": "src/steps/editor/step-01.editor.ts",
|
|
854
|
+
"sha256": "84953933792a5775154845a975b71d74a0590441f7b7d25371e2392786459d5b",
|
|
855
|
+
"mode": "100644"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"path": "src/steps/editor/step-02.editor.ts",
|
|
859
|
+
"sha256": "066a6cf8d9a68456950fbdad52dde8bfe83b4fb0ccd16199d93358596ea8a72b",
|
|
860
|
+
"mode": "100644"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"path": "src/steps/editor/step-03.editor.ts",
|
|
864
|
+
"sha256": "ad28b929ed3fb06611b56a6d091944234ca48655003726216e3e5ef3fdfed33e",
|
|
865
|
+
"mode": "100644"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"path": "src/steps/editor/step-04.editor.ts",
|
|
869
|
+
"sha256": "170fbc4d29c5b62c09991d1bd0e7309034df2fc788241526175dfd71d9a32061",
|
|
870
|
+
"mode": "100644"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"path": "src/steps/editor/step-32-paywall.editor.ts",
|
|
874
|
+
"sha256": "4d40f9d4b11d02a0b6aad3c57ec874610535695b13e66b04364b900316cc2108",
|
|
875
|
+
"mode": "100644"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"path": "src/steps/editor/subscription-started.editor.ts",
|
|
879
|
+
"sha256": "5d1d1940620e17a33a85ec752fe35b8de947be4dfa63d57fc9433b780645e6e3",
|
|
880
|
+
"mode": "100644"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"path": "src/steps/index.ts",
|
|
884
|
+
"sha256": "21f146040b8c2e47923ee77cbff8ef6dc23481c3647f08de0659d34e0f46d0b8",
|
|
885
|
+
"mode": "100644"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"path": "src/steps/paywall-checkout-options.test.ts",
|
|
889
|
+
"sha256": "da32caee8dc694a220feef628cfc5b1d10d964ca1c514040568cc3a5f7c2fd32",
|
|
890
|
+
"mode": "100644"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"path": "src/steps/paywall-checkout-options.ts",
|
|
894
|
+
"sha256": "6c4a21ae44255f31d6dbdfa10312402ef4cf4538a2c73ef3272209923dd09a7b",
|
|
895
|
+
"mode": "100644"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"path": "src/steps/pricing/paywall-b.pricing.ts",
|
|
899
|
+
"sha256": "3c86e9360480071260dd28123684eec7679079a874a0a2b0fedb4d0010f73b7a",
|
|
900
|
+
"mode": "100644"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"path": "src/steps/pricing/paywall.pricing.ts",
|
|
904
|
+
"sha256": "35ffac055058ca2f861cbf9b3e39e513f43d6771fe18c79c8e9796f26f06dd2f",
|
|
905
|
+
"mode": "100644"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"path": "src/steps/pricing/shared-plan-order.ts",
|
|
909
|
+
"sha256": "8bf2ad7b8e96b082d87785ad181abe30bf619108d3ca111dd1a3b88c66cd9662",
|
|
910
|
+
"mode": "100644"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"path": "src/steps/pricing/upsell-form.pricing.ts",
|
|
914
|
+
"sha256": "38ae9ee7f6930ab295b4b389c42c6cea552514788ee67bdc845fd7d8f66b700f",
|
|
915
|
+
"mode": "100644"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"path": "src/steps/shared-header-contract.test.ts",
|
|
919
|
+
"sha256": "d2827459278da1d60f19f430629cb86f313ab8117fd8ad0f6d48c5d2683635db",
|
|
920
|
+
"mode": "100644"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"path": "src/steps/step-01.test.ts",
|
|
924
|
+
"sha256": "08c132d7027760196254cdfb6c49881e3bfefffaec518d647a4ce98e58b7328d",
|
|
925
|
+
"mode": "100644"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"path": "src/steps/step-01.tsx",
|
|
929
|
+
"sha256": "4a6fe1686abf2dfa3d711d540afedba976b09bdf463eeca7833b0f2431936a03",
|
|
930
|
+
"mode": "100644"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"path": "src/steps/step-02.test.ts",
|
|
934
|
+
"sha256": "b264710e40abe8efc041603a8b18b022a36bee593ebfb1eb18931508257173ef",
|
|
935
|
+
"mode": "100644"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"path": "src/steps/step-02.tsx",
|
|
939
|
+
"sha256": "e59949c12b1508d4ec1aa6fcd6af1ae8e5f3e2e1fb662af0442552db3da89630",
|
|
940
|
+
"mode": "100644"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"path": "src/steps/step-03.test.ts",
|
|
944
|
+
"sha256": "2aab2c01a3bdac1f7f731efa38b2b3411da83651cca21536b3f6e78ae3c2565f",
|
|
945
|
+
"mode": "100644"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"path": "src/steps/step-03.tsx",
|
|
949
|
+
"sha256": "6978118c821d94efede6585ef36a5f7c09f8ba9a9f1a87ef1f0f89ab7df79af2",
|
|
950
|
+
"mode": "100644"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"path": "src/steps/step-04.test.ts",
|
|
954
|
+
"sha256": "fba9a5c78f5a5b70f7a8f6e811f8dd211c3a02aa3e1cab7542f5a670041de858",
|
|
955
|
+
"mode": "100644"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"path": "src/steps/step-04.tsx",
|
|
959
|
+
"sha256": "d8a529fdef01ddc7f702ccee95ea9a586042b755c57c4e24ab1944c7f292a7f1",
|
|
960
|
+
"mode": "100644"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"path": "src/steps/step-31-email-capture.test.ts",
|
|
964
|
+
"sha256": "d76a7fb5571c3bce956d96886987b5d8793516a529b3624f46233800a8895e6a",
|
|
965
|
+
"mode": "100644"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"path": "src/steps/step-31-email-capture.tsx",
|
|
969
|
+
"sha256": "371398ca371b7a595e5c6f3ae19a5bc35a778ea0bad8195cee36bebda514506c",
|
|
970
|
+
"mode": "100644"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"path": "src/steps/step-32-paywall.test.ts",
|
|
974
|
+
"sha256": "954a6de5c65c7078ae36d1b7a5537366b6252452660b706b4e7df18c3060578d",
|
|
975
|
+
"mode": "100644"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"path": "src/steps/step-32-paywall.tsx",
|
|
979
|
+
"sha256": "efd87ae0e0f08f87596814754e8d1059f16d7b46931c3168c18b7993ab2cc3bb",
|
|
980
|
+
"mode": "100644"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"path": "src/steps/step-32b-paywall-b.tsx",
|
|
984
|
+
"sha256": "712383d2ec113a6289d25e2368bdc31f1c02ccd43d4bd997b872f4d50d63a733",
|
|
985
|
+
"mode": "100644"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"path": "src/steps/step-33-subscription-started.test.ts",
|
|
989
|
+
"sha256": "32ce3f81dfc14fceb9857040bb8aeab2db4b0fe66c423610b13e4d5a5fb11620",
|
|
990
|
+
"mode": "100644"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"path": "src/steps/step-33-subscription-started.tsx",
|
|
994
|
+
"sha256": "9544f3ac97ac276244633dbede033c880905177b9f29f779c5b14528307e9000",
|
|
995
|
+
"mode": "100644"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"path": "src/steps/step-34-upsell-form.test.ts",
|
|
999
|
+
"sha256": "7fc73e9a9f585889aefbe5fda05ea7a71847b443db8557b33082119a4f73978b",
|
|
1000
|
+
"mode": "100644"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"path": "src/steps/step-35-manage-subscription.tsx",
|
|
1004
|
+
"sha256": "f25f8eb61f0509e1f397c5dda67bfde571c5a586c4bcd90af09e13b61503032b",
|
|
1005
|
+
"mode": "100644"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"path": "src/steps/step-content.registry.ts",
|
|
1009
|
+
"sha256": "7e5182231e17d9436aa1761e0d0a0028978336f384823210f8f93da2d5644d2a",
|
|
1010
|
+
"mode": "100644"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"path": "src/steps/step-image-migration.test.ts",
|
|
1014
|
+
"sha256": "337be95754f771e9429a22db9ef9578993ee0eed0eaf326e302fdc7b29f031e1",
|
|
1015
|
+
"mode": "100644"
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"path": "src/steps/styles/index.css",
|
|
1019
|
+
"sha256": "3adf8dce39f0645fd27d3df97eb02baa908f6904b1844bcd276613295cccc8cd",
|
|
1020
|
+
"mode": "100644"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"path": "src/steps/styles/shared/final-flow-shared.css",
|
|
1024
|
+
"sha256": "15eb777b9b3c600ebee8f3468d3dd7d767fcb2c4a2ee06e049686532a96cf903",
|
|
1025
|
+
"mode": "100644"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"path": "src/steps/styles/shared/funnel-base.css",
|
|
1029
|
+
"sha256": "4e44e847e675922beaad9c78482bd94a20215b1cf0604f0201324c29a87f6782",
|
|
1030
|
+
"mode": "100644"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"path": "src/steps/styles/shared/info-shared.css",
|
|
1034
|
+
"sha256": "ebf206aee6bbaf542210aede356b60c947148044b8d74e28e1de77e997908bd1",
|
|
1035
|
+
"mode": "100644"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"path": "src/steps/styles/shared/progress-shared.css",
|
|
1039
|
+
"sha256": "74cc91377e2cde1917ed31e82b0070aaf9b065608ba5494af5b4f701bfe31f36",
|
|
1040
|
+
"mode": "100644"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"path": "src/steps/styles/shared/question-shared.css",
|
|
1044
|
+
"sha256": "c1cdfb2daf5f9652be3a039378a4631b2af9e37d136eb2059367ef2e8b45e91b",
|
|
1045
|
+
"mode": "100644"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"path": "src/steps/styles/shared/responsive-container.css",
|
|
1049
|
+
"sha256": "225c61ccffed6e2c0cb686c026300aec9b4f916ae2ec057400d167246da2e560",
|
|
1050
|
+
"mode": "100644"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"path": "src/steps/types.ts",
|
|
1054
|
+
"sha256": "20bf2c544094394b0e6644a214863df1fe3e6cf48008153202303ea1b97fc477",
|
|
1055
|
+
"mode": "100644"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"path": "src/steps/use-claimbee-step-content.ts",
|
|
1059
|
+
"sha256": "bcb3e34817493c3c65e752d9309b9d419225fbe7b384f73acc4a0069356eeb81",
|
|
1060
|
+
"mode": "100644"
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"path": "src/theme/theme.ts",
|
|
1064
|
+
"sha256": "9d776dca7729383f4b98156f82f9cd0a35be4e8efd903c14a7ffe10267cb1427",
|
|
1065
|
+
"mode": "100644"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"path": "tsconfig.json",
|
|
1069
|
+
"sha256": "d8886cd69d1895576e821ca1c1c8fc2d6e75b9741390b3a3a57b123f18695be3",
|
|
1070
|
+
"mode": "100644"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"path": "vitest.config.ts",
|
|
1074
|
+
"sha256": "60019594865106f483d16e204d47e894fdc0f12d6c759a0d40a2b24af480117d",
|
|
1075
|
+
"mode": "100644"
|
|
1076
|
+
}
|
|
1077
|
+
]
|
|
1078
|
+
}
|