@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.
@@ -1,6 +1,6 @@
1
1
  $ bun build:bundle && bun build:types
2
2
  $ tsdown
3
- ℹ tsdown v0.17.0 powered by rolldown v1.0.0-beta.53
3
+ ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
4
4
  ℹ config file: /home/runner/work/contractspec/contractspec/packages/examples/integration-stripe/tsdown.config.js
5
5
  ℹ entry: src/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
6
6
  ℹ target: esnext
@@ -15,5 +15,5 @@ $ tsdown
15
15
  ℹ dist/index.js 0.41 kB │ gzip: 0.20 kB
16
16
  ℹ dist/docs/index.js 0.04 kB │ gzip: 0.06 kB
17
17
  ℹ 8 files, total: 6.13 kB
18
- ✔ Build complete in 41ms
18
+ ✔ Build complete in 37ms
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-20251213172311
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-20251213172311
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-20251213172311",
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.0",
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 { OwnersEnum, StabilityEnum, TagsEnum } from '@lssm/lib.contracts/ownership';
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
- { type: 'favicon', url: 'https://cdn.artisanos.dev/branding/favicon.ico' },
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
-
@@ -19,4 +19,3 @@ export const stripeLiveConnection: IntegrationConnection = {
19
19
  secretRef: 'vault://integrations/artisan-co/conn-stripe-live',
20
20
  status: 'connected',
21
21
  };
22
-
package/src/docs/index.ts CHANGED
@@ -1,3 +1 @@
1
1
  import './integration-stripe.docblock';
2
-
3
-
package/src/example.ts CHANGED
@@ -23,5 +23,3 @@ const example = {
23
23
  } as const;
24
24
 
25
25
  export default example;
26
-
27
-
package/src/index.ts CHANGED
@@ -4,5 +4,3 @@ export * from './tenant';
4
4
  export * from './connection.sample';
5
5
  export { default as example } from './example';
6
6
  import './docs';
7
-
8
-
package/src/tenant.ts CHANGED
@@ -51,4 +51,3 @@ export const artisanStripeTenantConfig: TenantAppConfig = {
51
51
  },
52
52
  notes: 'Stripe connection bound for production payments.',
53
53
  };
54
-
package/src/workflow.ts CHANGED
@@ -1,5 +1,9 @@
1
1
  import type { WorkflowSpec } from '@lssm/lib.contracts/workflow/spec';
2
- import { OwnersEnum, StabilityEnum, TagsEnum } from '@lssm/lib.contracts/ownership';
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
-