@multitenantkit/sdk 0.1.3 → 0.1.4

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.
@@ -46,7 +46,7 @@ import type { Express, Router } from 'express';
46
46
  * },
47
47
  * useCaseHooks: {
48
48
  * CreateUser: {
49
- * afterExecution: async ({ stepResults }) => {
49
+ * onSuccess: async ({ stepResults }) => {
50
50
  * await sendWelcomeEmail(stepResults.output.email);
51
51
  * }
52
52
  * }
package/dist/supabase.js CHANGED
@@ -145,7 +145,7 @@ function applySupabaseDefaults(options) {
145
145
  * },
146
146
  * useCaseHooks: {
147
147
  * CreateUser: {
148
- * afterExecution: async ({ stepResults }) => {
148
+ * onSuccess: async ({ stepResults }) => {
149
149
  * await sendWelcomeEmail(stepResults.output.email);
150
150
  * }
151
151
  * }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@multitenantkit/sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Complete SDK for building multi-tenant SaaS applications - includes all adapters and options",
5
5
  "keywords": [
6
6
  "multitenantkit",
@@ -63,8 +63,8 @@
63
63
  "@multitenantkit/adapter-transport-express": "^0.1.1",
64
64
  "@multitenantkit/api-handlers": "^0.1.2",
65
65
  "@multitenantkit/api-contracts": "^0.1.1",
66
- "@multitenantkit/domain-contracts": "^0.1.1",
67
- "@multitenantkit/domain": "^0.1.2",
66
+ "@multitenantkit/domain-contracts": "^0.1.2",
67
+ "@multitenantkit/domain": "^0.1.3",
68
68
  "@multitenantkit/composition": "^0.1.2"
69
69
  },
70
70
  "devDependencies": {