@almadar/std 6.5.2 → 7.2.0
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/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-service-stripe",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-stripe as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceStripeOrbital",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
{
|
|
18
18
|
"name": "amount",
|
|
19
19
|
"type": "number",
|
|
20
|
-
"default": 0
|
|
20
|
+
"default": 0.0
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"name": "currency",
|
|
@@ -71,8 +71,73 @@
|
|
|
71
71
|
"traits": [
|
|
72
72
|
{
|
|
73
73
|
"name": "ServiceStripeStripe",
|
|
74
|
-
"linkedEntity": "ServiceStripe",
|
|
75
74
|
"category": "interaction",
|
|
75
|
+
"linkedEntity": "ServiceStripe",
|
|
76
|
+
"emits": [
|
|
77
|
+
{
|
|
78
|
+
"event": "ServiceStripeLoaded",
|
|
79
|
+
"description": "Fired when ServiceStripe finishes loading",
|
|
80
|
+
"scope": "internal",
|
|
81
|
+
"payload": [
|
|
82
|
+
{
|
|
83
|
+
"name": "id",
|
|
84
|
+
"type": "string",
|
|
85
|
+
"required": true
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "amount",
|
|
89
|
+
"type": "number"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "currency",
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "paymentIntentId",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "clientSecret",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "paymentStatus",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "error",
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "name",
|
|
113
|
+
"type": "string"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "description",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "status",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "createdAt",
|
|
125
|
+
"type": "string"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"event": "ServiceStripeLoadFailed",
|
|
131
|
+
"description": "Fired when ServiceStripe fails to load",
|
|
132
|
+
"scope": "internal",
|
|
133
|
+
"payload": [
|
|
134
|
+
{
|
|
135
|
+
"name": "message",
|
|
136
|
+
"type": "string"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
],
|
|
76
141
|
"stateMachine": {
|
|
77
142
|
"states": [
|
|
78
143
|
{
|
|
@@ -117,14 +182,6 @@
|
|
|
117
182
|
}
|
|
118
183
|
]
|
|
119
184
|
},
|
|
120
|
-
{
|
|
121
|
-
"key": "CONFIRM_PAYMENT",
|
|
122
|
-
"name": "Confirm Payment"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"key": "PAYMENT_CONFIRMED",
|
|
126
|
-
"name": "Payment Confirmed"
|
|
127
|
-
},
|
|
128
185
|
{
|
|
129
186
|
"key": "FAILED",
|
|
130
187
|
"name": "Failed",
|
|
@@ -137,12 +194,30 @@
|
|
|
137
194
|
]
|
|
138
195
|
},
|
|
139
196
|
{
|
|
140
|
-
"key": "
|
|
141
|
-
"name": "
|
|
197
|
+
"key": "PAYMENT_CONFIRMED",
|
|
198
|
+
"name": "Payment Confirmed"
|
|
142
199
|
},
|
|
143
200
|
{
|
|
144
201
|
"key": "RESET",
|
|
145
202
|
"name": "Reset"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"key": "RETRY",
|
|
206
|
+
"name": "Retry"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"key": "ServiceStripeLoaded",
|
|
210
|
+
"name": "ServiceStripe loaded"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"key": "ServiceStripeLoadFailed",
|
|
214
|
+
"name": "ServiceStripe load failed",
|
|
215
|
+
"payload": [
|
|
216
|
+
{
|
|
217
|
+
"name": "message",
|
|
218
|
+
"type": "string"
|
|
219
|
+
}
|
|
220
|
+
]
|
|
146
221
|
}
|
|
147
222
|
],
|
|
148
223
|
"transitions": [
|
|
@@ -153,79 +228,85 @@
|
|
|
153
228
|
"effects": [
|
|
154
229
|
[
|
|
155
230
|
"fetch",
|
|
156
|
-
"ServiceStripe"
|
|
231
|
+
"ServiceStripe",
|
|
232
|
+
{
|
|
233
|
+
"emit": {
|
|
234
|
+
"failure": "ServiceStripeLoadFailed",
|
|
235
|
+
"success": "ServiceStripeLoaded"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
157
238
|
],
|
|
158
239
|
[
|
|
159
240
|
"render-ui",
|
|
160
241
|
"main",
|
|
161
242
|
{
|
|
162
|
-
"type": "stack",
|
|
163
|
-
"direction": "vertical",
|
|
164
|
-
"gap": "lg",
|
|
165
243
|
"align": "center",
|
|
244
|
+
"direction": "vertical",
|
|
245
|
+
"type": "stack",
|
|
166
246
|
"children": [
|
|
167
247
|
{
|
|
168
|
-
"type": "stack",
|
|
169
|
-
"direction": "horizontal",
|
|
170
|
-
"gap": "md",
|
|
171
|
-
"align": "center",
|
|
172
248
|
"children": [
|
|
173
249
|
{
|
|
174
|
-
"type": "icon",
|
|
175
250
|
"name": "credit-card",
|
|
251
|
+
"type": "icon",
|
|
176
252
|
"size": "lg"
|
|
177
253
|
},
|
|
178
254
|
{
|
|
179
255
|
"type": "typography",
|
|
180
|
-
"
|
|
181
|
-
"
|
|
256
|
+
"variant": "h2",
|
|
257
|
+
"content": "Payment"
|
|
182
258
|
}
|
|
183
|
-
]
|
|
259
|
+
],
|
|
260
|
+
"type": "stack",
|
|
261
|
+
"gap": "md",
|
|
262
|
+
"align": "center",
|
|
263
|
+
"direction": "horizontal"
|
|
184
264
|
},
|
|
185
265
|
{
|
|
186
266
|
"type": "divider"
|
|
187
267
|
},
|
|
188
268
|
{
|
|
189
|
-
"type": "stack",
|
|
190
|
-
"direction": "vertical",
|
|
191
269
|
"gap": "md",
|
|
270
|
+
"direction": "vertical",
|
|
271
|
+
"type": "stack",
|
|
192
272
|
"children": [
|
|
193
273
|
{
|
|
194
|
-
"
|
|
195
|
-
"label": "Amount",
|
|
274
|
+
"placeholder": "0.00",
|
|
196
275
|
"field": "amount",
|
|
197
276
|
"inputType": "number",
|
|
198
|
-
"
|
|
277
|
+
"type": "input",
|
|
278
|
+
"label": "Amount"
|
|
199
279
|
},
|
|
200
280
|
{
|
|
201
281
|
"type": "select",
|
|
202
|
-
"label": "Currency",
|
|
203
|
-
"field": "currency",
|
|
204
282
|
"options": [
|
|
205
283
|
{
|
|
206
284
|
"label": "USD",
|
|
207
285
|
"value": "usd"
|
|
208
286
|
},
|
|
209
287
|
{
|
|
210
|
-
"
|
|
211
|
-
"
|
|
288
|
+
"value": "eur",
|
|
289
|
+
"label": "EUR"
|
|
212
290
|
},
|
|
213
291
|
{
|
|
214
|
-
"
|
|
215
|
-
"
|
|
292
|
+
"value": "gbp",
|
|
293
|
+
"label": "GBP"
|
|
216
294
|
}
|
|
217
|
-
]
|
|
295
|
+
],
|
|
296
|
+
"label": "Currency",
|
|
297
|
+
"field": "currency"
|
|
218
298
|
}
|
|
219
299
|
]
|
|
220
300
|
},
|
|
221
301
|
{
|
|
222
302
|
"type": "button",
|
|
223
|
-
"label": "Pay",
|
|
224
303
|
"event": "CREATE_PAYMENT",
|
|
304
|
+
"icon": "credit-card",
|
|
225
305
|
"variant": "primary",
|
|
226
|
-
"
|
|
306
|
+
"label": "Pay"
|
|
227
307
|
}
|
|
228
|
-
]
|
|
308
|
+
],
|
|
309
|
+
"gap": "lg"
|
|
229
310
|
}
|
|
230
311
|
]
|
|
231
312
|
]
|
|
@@ -249,8 +330,8 @@
|
|
|
249
330
|
"stripe",
|
|
250
331
|
"createPaymentIntent",
|
|
251
332
|
{
|
|
252
|
-
"
|
|
253
|
-
"
|
|
333
|
+
"currency": "@entity.currency",
|
|
334
|
+
"amount": "@entity.amount"
|
|
254
335
|
}
|
|
255
336
|
]
|
|
256
337
|
]
|
|
@@ -274,8 +355,8 @@
|
|
|
274
355
|
"render-ui",
|
|
275
356
|
"main",
|
|
276
357
|
{
|
|
277
|
-
"type": "loading-state",
|
|
278
358
|
"title": "Confirming payment...",
|
|
359
|
+
"type": "loading-state",
|
|
279
360
|
"message": "Processing your payment."
|
|
280
361
|
}
|
|
281
362
|
],
|
|
@@ -289,6 +370,28 @@
|
|
|
289
370
|
]
|
|
290
371
|
]
|
|
291
372
|
},
|
|
373
|
+
{
|
|
374
|
+
"from": "creating",
|
|
375
|
+
"to": "error",
|
|
376
|
+
"event": "FAILED",
|
|
377
|
+
"effects": [
|
|
378
|
+
[
|
|
379
|
+
"set",
|
|
380
|
+
"@entity.error",
|
|
381
|
+
"@payload.error"
|
|
382
|
+
],
|
|
383
|
+
[
|
|
384
|
+
"render-ui",
|
|
385
|
+
"main",
|
|
386
|
+
{
|
|
387
|
+
"type": "error-state",
|
|
388
|
+
"message": "@entity.error",
|
|
389
|
+
"onRetry": "RETRY",
|
|
390
|
+
"title": "Payment Failed"
|
|
391
|
+
}
|
|
392
|
+
]
|
|
393
|
+
]
|
|
394
|
+
},
|
|
292
395
|
{
|
|
293
396
|
"from": "confirming",
|
|
294
397
|
"to": "succeeded",
|
|
@@ -303,10 +406,7 @@
|
|
|
303
406
|
"render-ui",
|
|
304
407
|
"main",
|
|
305
408
|
{
|
|
306
|
-
"type": "stack",
|
|
307
|
-
"direction": "vertical",
|
|
308
409
|
"gap": "lg",
|
|
309
|
-
"align": "center",
|
|
310
410
|
"children": [
|
|
311
411
|
{
|
|
312
412
|
"type": "icon",
|
|
@@ -319,41 +419,22 @@
|
|
|
319
419
|
"message": "Payment successful!"
|
|
320
420
|
},
|
|
321
421
|
{
|
|
322
|
-
"
|
|
323
|
-
"variant": "body",
|
|
422
|
+
"content": "@entity.paymentIntentId",
|
|
324
423
|
"color": "muted",
|
|
325
|
-
"
|
|
424
|
+
"variant": "body",
|
|
425
|
+
"type": "typography"
|
|
326
426
|
},
|
|
327
427
|
{
|
|
328
|
-
"
|
|
428
|
+
"variant": "ghost",
|
|
329
429
|
"label": "New Payment",
|
|
430
|
+
"icon": "rotate-ccw",
|
|
330
431
|
"event": "RESET",
|
|
331
|
-
"
|
|
332
|
-
"icon": "rotate-ccw"
|
|
432
|
+
"type": "button"
|
|
333
433
|
}
|
|
334
|
-
]
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"from": "creating",
|
|
341
|
-
"to": "error",
|
|
342
|
-
"event": "FAILED",
|
|
343
|
-
"effects": [
|
|
344
|
-
[
|
|
345
|
-
"set",
|
|
346
|
-
"@entity.error",
|
|
347
|
-
"@payload.error"
|
|
348
|
-
],
|
|
349
|
-
[
|
|
350
|
-
"render-ui",
|
|
351
|
-
"main",
|
|
352
|
-
{
|
|
353
|
-
"type": "error-state",
|
|
354
|
-
"title": "Payment Failed",
|
|
355
|
-
"message": "@entity.error",
|
|
356
|
-
"onRetry": "RETRY"
|
|
434
|
+
],
|
|
435
|
+
"type": "stack",
|
|
436
|
+
"direction": "vertical",
|
|
437
|
+
"align": "center"
|
|
357
438
|
}
|
|
358
439
|
]
|
|
359
440
|
]
|
|
@@ -372,73 +453,69 @@
|
|
|
372
453
|
"render-ui",
|
|
373
454
|
"main",
|
|
374
455
|
{
|
|
375
|
-
"
|
|
376
|
-
"title": "Payment Failed",
|
|
456
|
+
"onRetry": "RETRY",
|
|
377
457
|
"message": "@entity.error",
|
|
378
|
-
"
|
|
458
|
+
"title": "Payment Failed",
|
|
459
|
+
"type": "error-state"
|
|
379
460
|
}
|
|
380
461
|
]
|
|
381
462
|
]
|
|
382
463
|
},
|
|
383
464
|
{
|
|
384
|
-
"from": "
|
|
465
|
+
"from": "succeeded",
|
|
385
466
|
"to": "idle",
|
|
386
|
-
"event": "
|
|
467
|
+
"event": "RESET",
|
|
387
468
|
"effects": [
|
|
388
469
|
[
|
|
389
470
|
"render-ui",
|
|
390
471
|
"main",
|
|
391
472
|
{
|
|
392
|
-
"type": "stack",
|
|
393
|
-
"direction": "vertical",
|
|
394
|
-
"gap": "lg",
|
|
395
473
|
"align": "center",
|
|
396
474
|
"children": [
|
|
397
475
|
{
|
|
398
|
-
"type": "stack",
|
|
399
|
-
"direction": "horizontal",
|
|
400
|
-
"gap": "md",
|
|
401
476
|
"align": "center",
|
|
402
477
|
"children": [
|
|
403
478
|
{
|
|
404
|
-
"type": "icon",
|
|
405
479
|
"name": "credit-card",
|
|
480
|
+
"type": "icon",
|
|
406
481
|
"size": "lg"
|
|
407
482
|
},
|
|
408
483
|
{
|
|
409
|
-
"type": "typography",
|
|
410
484
|
"content": "Payment",
|
|
485
|
+
"type": "typography",
|
|
411
486
|
"variant": "h2"
|
|
412
487
|
}
|
|
413
|
-
]
|
|
488
|
+
],
|
|
489
|
+
"type": "stack",
|
|
490
|
+
"direction": "horizontal",
|
|
491
|
+
"gap": "md"
|
|
414
492
|
},
|
|
415
493
|
{
|
|
416
494
|
"type": "divider"
|
|
417
495
|
},
|
|
418
496
|
{
|
|
419
497
|
"type": "stack",
|
|
420
|
-
"direction": "vertical",
|
|
421
498
|
"gap": "md",
|
|
422
499
|
"children": [
|
|
423
500
|
{
|
|
424
501
|
"type": "input",
|
|
425
|
-
"label": "Amount",
|
|
426
502
|
"field": "amount",
|
|
427
|
-
"
|
|
428
|
-
"placeholder": "0.00"
|
|
503
|
+
"label": "Amount",
|
|
504
|
+
"placeholder": "0.00",
|
|
505
|
+
"inputType": "number"
|
|
429
506
|
},
|
|
430
507
|
{
|
|
431
508
|
"type": "select",
|
|
432
|
-
"label": "Currency",
|
|
433
509
|
"field": "currency",
|
|
510
|
+
"label": "Currency",
|
|
434
511
|
"options": [
|
|
435
512
|
{
|
|
436
|
-
"
|
|
437
|
-
"
|
|
513
|
+
"value": "usd",
|
|
514
|
+
"label": "USD"
|
|
438
515
|
},
|
|
439
516
|
{
|
|
440
|
-
"
|
|
441
|
-
"
|
|
517
|
+
"value": "eur",
|
|
518
|
+
"label": "EUR"
|
|
442
519
|
},
|
|
443
520
|
{
|
|
444
521
|
"label": "GBP",
|
|
@@ -446,39 +523,36 @@
|
|
|
446
523
|
}
|
|
447
524
|
]
|
|
448
525
|
}
|
|
449
|
-
]
|
|
526
|
+
],
|
|
527
|
+
"direction": "vertical"
|
|
450
528
|
},
|
|
451
529
|
{
|
|
530
|
+
"event": "CREATE_PAYMENT",
|
|
452
531
|
"type": "button",
|
|
532
|
+
"icon": "credit-card",
|
|
453
533
|
"label": "Pay",
|
|
454
|
-
"
|
|
455
|
-
"variant": "primary",
|
|
456
|
-
"icon": "credit-card"
|
|
534
|
+
"variant": "primary"
|
|
457
535
|
}
|
|
458
|
-
]
|
|
536
|
+
],
|
|
537
|
+
"direction": "vertical",
|
|
538
|
+
"gap": "lg",
|
|
539
|
+
"type": "stack"
|
|
459
540
|
}
|
|
460
541
|
]
|
|
461
542
|
]
|
|
462
543
|
},
|
|
463
544
|
{
|
|
464
|
-
"from": "
|
|
545
|
+
"from": "error",
|
|
465
546
|
"to": "idle",
|
|
466
|
-
"event": "
|
|
547
|
+
"event": "RETRY",
|
|
467
548
|
"effects": [
|
|
468
549
|
[
|
|
469
550
|
"render-ui",
|
|
470
551
|
"main",
|
|
471
552
|
{
|
|
472
|
-
"type": "stack",
|
|
473
|
-
"direction": "vertical",
|
|
474
553
|
"gap": "lg",
|
|
475
|
-
"align": "center",
|
|
476
554
|
"children": [
|
|
477
555
|
{
|
|
478
|
-
"type": "stack",
|
|
479
|
-
"direction": "horizontal",
|
|
480
|
-
"gap": "md",
|
|
481
|
-
"align": "center",
|
|
482
556
|
"children": [
|
|
483
557
|
{
|
|
484
558
|
"type": "icon",
|
|
@@ -486,56 +560,63 @@
|
|
|
486
560
|
"size": "lg"
|
|
487
561
|
},
|
|
488
562
|
{
|
|
489
|
-
"type": "typography",
|
|
490
563
|
"content": "Payment",
|
|
564
|
+
"type": "typography",
|
|
491
565
|
"variant": "h2"
|
|
492
566
|
}
|
|
493
|
-
]
|
|
567
|
+
],
|
|
568
|
+
"align": "center",
|
|
569
|
+
"type": "stack",
|
|
570
|
+
"direction": "horizontal",
|
|
571
|
+
"gap": "md"
|
|
494
572
|
},
|
|
495
573
|
{
|
|
496
574
|
"type": "divider"
|
|
497
575
|
},
|
|
498
576
|
{
|
|
499
|
-
"type": "stack",
|
|
500
|
-
"direction": "vertical",
|
|
501
|
-
"gap": "md",
|
|
502
577
|
"children": [
|
|
503
578
|
{
|
|
504
|
-
"type": "input",
|
|
505
579
|
"label": "Amount",
|
|
506
|
-
"
|
|
580
|
+
"placeholder": "0.00",
|
|
507
581
|
"inputType": "number",
|
|
508
|
-
"
|
|
582
|
+
"field": "amount",
|
|
583
|
+
"type": "input"
|
|
509
584
|
},
|
|
510
585
|
{
|
|
511
|
-
"type": "select",
|
|
512
586
|
"label": "Currency",
|
|
513
|
-
"field": "currency",
|
|
514
587
|
"options": [
|
|
515
588
|
{
|
|
516
|
-
"
|
|
517
|
-
"
|
|
589
|
+
"value": "usd",
|
|
590
|
+
"label": "USD"
|
|
518
591
|
},
|
|
519
592
|
{
|
|
520
|
-
"
|
|
521
|
-
"
|
|
593
|
+
"value": "eur",
|
|
594
|
+
"label": "EUR"
|
|
522
595
|
},
|
|
523
596
|
{
|
|
524
|
-
"
|
|
525
|
-
"
|
|
597
|
+
"value": "gbp",
|
|
598
|
+
"label": "GBP"
|
|
526
599
|
}
|
|
527
|
-
]
|
|
600
|
+
],
|
|
601
|
+
"field": "currency",
|
|
602
|
+
"type": "select"
|
|
528
603
|
}
|
|
529
|
-
]
|
|
604
|
+
],
|
|
605
|
+
"gap": "md",
|
|
606
|
+
"type": "stack",
|
|
607
|
+
"direction": "vertical"
|
|
530
608
|
},
|
|
531
609
|
{
|
|
532
|
-
"
|
|
610
|
+
"icon": "credit-card",
|
|
533
611
|
"label": "Pay",
|
|
612
|
+
"type": "button",
|
|
534
613
|
"event": "CREATE_PAYMENT",
|
|
535
|
-
"variant": "primary"
|
|
536
|
-
"icon": "credit-card"
|
|
614
|
+
"variant": "primary"
|
|
537
615
|
}
|
|
538
|
-
]
|
|
616
|
+
],
|
|
617
|
+
"type": "stack",
|
|
618
|
+
"align": "center",
|
|
619
|
+
"direction": "vertical"
|
|
539
620
|
}
|
|
540
621
|
]
|
|
541
622
|
]
|
|
@@ -549,16 +630,12 @@
|
|
|
549
630
|
"render-ui",
|
|
550
631
|
"main",
|
|
551
632
|
{
|
|
552
|
-
"type": "stack",
|
|
553
|
-
"direction": "vertical",
|
|
554
633
|
"gap": "lg",
|
|
555
|
-
"
|
|
634
|
+
"direction": "vertical",
|
|
556
635
|
"children": [
|
|
557
636
|
{
|
|
558
|
-
"type": "stack",
|
|
559
637
|
"direction": "horizontal",
|
|
560
638
|
"gap": "md",
|
|
561
|
-
"align": "center",
|
|
562
639
|
"children": [
|
|
563
640
|
{
|
|
564
641
|
"type": "icon",
|
|
@@ -566,11 +643,13 @@
|
|
|
566
643
|
"size": "lg"
|
|
567
644
|
},
|
|
568
645
|
{
|
|
569
|
-
"type": "typography",
|
|
570
646
|
"content": "Payment",
|
|
571
|
-
"variant": "h2"
|
|
647
|
+
"variant": "h2",
|
|
648
|
+
"type": "typography"
|
|
572
649
|
}
|
|
573
|
-
]
|
|
650
|
+
],
|
|
651
|
+
"type": "stack",
|
|
652
|
+
"align": "center"
|
|
574
653
|
},
|
|
575
654
|
{
|
|
576
655
|
"type": "divider"
|
|
@@ -581,20 +660,18 @@
|
|
|
581
660
|
"gap": "md",
|
|
582
661
|
"children": [
|
|
583
662
|
{
|
|
663
|
+
"placeholder": "0.00",
|
|
664
|
+
"field": "amount",
|
|
584
665
|
"type": "input",
|
|
585
666
|
"label": "Amount",
|
|
586
|
-
"
|
|
587
|
-
"inputType": "number",
|
|
588
|
-
"placeholder": "0.00"
|
|
667
|
+
"inputType": "number"
|
|
589
668
|
},
|
|
590
669
|
{
|
|
591
670
|
"type": "select",
|
|
592
|
-
"label": "Currency",
|
|
593
|
-
"field": "currency",
|
|
594
671
|
"options": [
|
|
595
672
|
{
|
|
596
|
-
"
|
|
597
|
-
"
|
|
673
|
+
"value": "usd",
|
|
674
|
+
"label": "USD"
|
|
598
675
|
},
|
|
599
676
|
{
|
|
600
677
|
"label": "EUR",
|
|
@@ -604,24 +681,29 @@
|
|
|
604
681
|
"label": "GBP",
|
|
605
682
|
"value": "gbp"
|
|
606
683
|
}
|
|
607
|
-
]
|
|
684
|
+
],
|
|
685
|
+
"label": "Currency",
|
|
686
|
+
"field": "currency"
|
|
608
687
|
}
|
|
609
688
|
]
|
|
610
689
|
},
|
|
611
690
|
{
|
|
612
691
|
"type": "button",
|
|
692
|
+
"variant": "primary",
|
|
613
693
|
"label": "Pay",
|
|
614
694
|
"event": "CREATE_PAYMENT",
|
|
615
|
-
"variant": "primary",
|
|
616
695
|
"icon": "credit-card"
|
|
617
696
|
}
|
|
618
|
-
]
|
|
697
|
+
],
|
|
698
|
+
"align": "center",
|
|
699
|
+
"type": "stack"
|
|
619
700
|
}
|
|
620
701
|
]
|
|
621
702
|
]
|
|
622
703
|
}
|
|
623
704
|
]
|
|
624
|
-
}
|
|
705
|
+
},
|
|
706
|
+
"scope": "instance"
|
|
625
707
|
}
|
|
626
708
|
],
|
|
627
709
|
"pages": [
|
|
@@ -637,4 +719,4 @@
|
|
|
637
719
|
]
|
|
638
720
|
}
|
|
639
721
|
]
|
|
640
|
-
}
|
|
722
|
+
}
|