@lssm/example.integration-stripe 0.0.0-canary-20251213172311 → 0.0.0-canary-20251215220103
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +2 -2
- package/package.json +2 -2
- package/src/blueprint.ts +9 -3
- package/src/connection.sample.ts +0 -1
- package/src/docs/index.ts +0 -2
- package/src/example.ts +0 -2
- package/src/index.ts +0 -2
- package/src/tenant.ts +0 -1
- package/src/workflow.ts +5 -8
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$ bun build:bundle && bun build:types
|
|
2
2
|
$ tsdown
|
|
3
|
-
[34mℹ[39m tsdown [2mv0.17.
|
|
3
|
+
[34mℹ[39m tsdown [2mv0.17.4[22m powered by rolldown [2mv1.0.0-beta.53[22m
|
|
4
4
|
[34mℹ[39m config file: [4m/home/runner/work/contractspec/contractspec/packages/examples/integration-stripe/tsdown.config.js[24m
|
|
5
5
|
[34mℹ[39m entry: [34msrc/blueprint.ts, src/connection.sample.ts, src/example.ts, src/index.ts, src/tenant.ts, src/workflow.ts, src/docs/index.ts, src/docs/integration-stripe.docblock.ts[39m
|
|
6
6
|
[34mℹ[39m target: [34mesnext[39m
|
|
@@ -15,5 +15,5 @@ $ tsdown
|
|
|
15
15
|
[34mℹ[39m [2mdist/[22m[1mindex.js[22m [2m0.41 kB[22m [2m│ gzip: 0.20 kB[22m
|
|
16
16
|
[34mℹ[39m [2mdist/[22m[1mdocs/index.js[22m [2m0.04 kB[22m [2m│ gzip: 0.06 kB[22m
|
|
17
17
|
[34mℹ[39m 8 files, total: 6.13 kB
|
|
18
|
-
[32m✔[39m Build complete in [
|
|
18
|
+
[32m✔[39m Build complete in [32m37ms[39m
|
|
19
19
|
$ tsc --noEmit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @lssm/example.integration-stripe
|
|
2
2
|
|
|
3
|
-
## 0.0.0-canary-
|
|
3
|
+
## 0.0.0-canary-20251215220103
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies [3086383]
|
|
8
|
-
- @lssm/lib.contracts@0.0.0-canary-
|
|
8
|
+
- @lssm/lib.contracts@0.0.0-canary-20251215220103
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.integration-stripe",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251215220103",
|
|
4
4
|
"description": "Integration example – Stripe Payments (blueprint + workflow + tenant config).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@lssm/tool.tsdown": "workspace:*",
|
|
35
35
|
"@lssm/tool.typescript": "workspace:*",
|
|
36
|
-
"tsdown": "^0.17.
|
|
36
|
+
"tsdown": "^0.17.4",
|
|
37
37
|
"typescript": "^5.9.3"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
package/src/blueprint.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { AppBlueprintSpec } from '@lssm/lib.contracts/app-config/spec';
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
OwnersEnum,
|
|
4
|
+
StabilityEnum,
|
|
5
|
+
TagsEnum,
|
|
6
|
+
} from '@lssm/lib.contracts/ownership';
|
|
3
7
|
|
|
4
8
|
export const artisanStripeBlueprint: AppBlueprintSpec = {
|
|
5
9
|
meta: {
|
|
@@ -32,7 +36,10 @@ export const artisanStripeBlueprint: AppBlueprintSpec = {
|
|
|
32
36
|
appNameKey: 'artisan.payments.appName',
|
|
33
37
|
assets: [
|
|
34
38
|
{ type: 'logo', url: 'https://cdn.artisanos.dev/branding/logo.png' },
|
|
35
|
-
{
|
|
39
|
+
{
|
|
40
|
+
type: 'favicon',
|
|
41
|
+
url: 'https://cdn.artisanos.dev/branding/favicon.ico',
|
|
42
|
+
},
|
|
36
43
|
],
|
|
37
44
|
colorTokens: {
|
|
38
45
|
primary: 'colors.brand.primary',
|
|
@@ -50,4 +57,3 @@ export const artisanStripeBlueprint: AppBlueprintSpec = {
|
|
|
50
57
|
notes:
|
|
51
58
|
'Install this blueprint and pair it with the Stripe integration connection to enable card collection.',
|
|
52
59
|
};
|
|
53
|
-
|
package/src/connection.sample.ts
CHANGED
package/src/docs/index.ts
CHANGED
package/src/example.ts
CHANGED
package/src/index.ts
CHANGED
package/src/tenant.ts
CHANGED
package/src/workflow.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { WorkflowSpec } from '@lssm/lib.contracts/workflow/spec';
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
OwnersEnum,
|
|
4
|
+
StabilityEnum,
|
|
5
|
+
TagsEnum,
|
|
6
|
+
} from '@lssm/lib.contracts/ownership';
|
|
3
7
|
|
|
4
8
|
export const collectPaymentWorkflow: WorkflowSpec = {
|
|
5
9
|
meta: {
|
|
@@ -47,10 +51,3 @@ export const collectPaymentWorkflow: WorkflowSpec = {
|
|
|
47
51
|
],
|
|
48
52
|
},
|
|
49
53
|
};
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|