paywall-resource 1.13.107

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/blocklet.md ADDED
@@ -0,0 +1,3 @@
1
+ ## Subscription Paywall
2
+
3
+ This is a simple resource blocklet that allows you to create a paywall for your content hosted in discuss-kit.
package/blocklet.yml ADDED
@@ -0,0 +1,45 @@
1
+ did: z2qaBSYsgYsVVEisboDG3r1EcxsKdmJ9QNXZN
2
+ name: z2qaBSYsgYsVVEisboDG3r1EcxsKdmJ9QNXZN
3
+ title: Subscription Paywall
4
+ description: Subscription based paywall setup for Discuss Kit and Blocklet Service
5
+ version: 1.13.107
6
+ logo: logo.jpeg
7
+ components: []
8
+ specVersion: 1.2.8
9
+ screenshots:
10
+ - payment.png
11
+ resource:
12
+ bundles:
13
+ - did: z2qaCNvKMv5GjouKdcDWexv6WqtHbpNPQDnAk
14
+ type: paywall
15
+ public: true
16
+ community: ''
17
+ documentation: ''
18
+ homepage: ''
19
+ license: ''
20
+ payment:
21
+ price: []
22
+ share: []
23
+ timeout:
24
+ start: 60
25
+ requirements:
26
+ server: '>=1.7.0'
27
+ os: '*'
28
+ cpu: '*'
29
+ nodejs: '*'
30
+ interfaces: []
31
+ environments:
32
+ - name: MONTH_PRICE
33
+ description: Monthly price of membership passport
34
+ required: true
35
+ default: '5'
36
+ secure: false
37
+ shared: false
38
+ - name: YEAR_PRICE
39
+ description: Yearly price of membership passport
40
+ required: true
41
+ default: '30'
42
+ secure: false
43
+ shared: false
44
+ capabilities:
45
+ navigation: true
package/logo.jpeg ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "paywall-resource",
3
+ "version": "1.13.107",
4
+ "scripts": {
5
+ "dev": "blocklet dev",
6
+ "clean": "rm -rf .blocklet",
7
+ "bundle": "npm run clean && blocklet bundle --zip --create-release",
8
+ "deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
9
+ "upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json"
10
+ },
11
+ "gitHead": "40d9eb4c215af29dc727fafab29b9ab7776f6e3a"
12
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "passports": ["blogSubscriber", "discussionSubscriber"],
3
+ "product": {
4
+ "livemode": true,
5
+ "name": "{appName}",
6
+ "description": "Become a subscribed member",
7
+ "price": {
8
+ "month": "{monthPrice}",
9
+ "year": "{yearPrice}",
10
+ "upsell": true
11
+ }
12
+ }
13
+ }
Binary file