@abyss-project/console 1.0.67 → 1.0.68

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.
@@ -64,8 +64,6 @@ export interface IShortLinkClickWorkflowTriggerData {
64
64
  export interface IFormCreateWorkflowTriggerData {
65
65
  formId: string;
66
66
  formName: string;
67
- userId: string;
68
- email?: string;
69
67
  projectId: string;
70
68
  createdAt: string;
71
69
  formFields?: Record<string, any>;
@@ -73,8 +71,6 @@ export interface IFormCreateWorkflowTriggerData {
73
71
  export interface IFormUpdateWorkflowTriggerData {
74
72
  formId: string;
75
73
  formName: string;
76
- userId: string;
77
- email?: string;
78
74
  projectId: string;
79
75
  updatedAt: string;
80
76
  changes?: Record<string, any>;
@@ -82,8 +78,6 @@ export interface IFormUpdateWorkflowTriggerData {
82
78
  export interface IFormDeleteWorkflowTriggerData {
83
79
  formId: string;
84
80
  formName: string;
85
- userId: string;
86
- email?: string;
87
81
  projectId: string;
88
82
  deletedAt: string;
89
83
  }
@@ -91,8 +85,6 @@ export interface IShortLinkCreateWorkflowTriggerData {
91
85
  shortLinkId: string;
92
86
  shortLinkCode: string;
93
87
  targetUrl: string;
94
- userId: string;
95
- email?: string;
96
88
  projectId: string;
97
89
  createdAt: string;
98
90
  expiresAt?: string;
@@ -101,8 +93,6 @@ export interface IShortLinkUpdateWorkflowTriggerData {
101
93
  shortLinkId: string;
102
94
  shortLinkCode: string;
103
95
  targetUrl: string;
104
- userId: string;
105
- email?: string;
106
96
  projectId: string;
107
97
  updatedAt: string;
108
98
  changes?: Record<string, any>;
@@ -111,8 +101,6 @@ export interface IShortLinkDeleteWorkflowTriggerData {
111
101
  shortLinkId: string;
112
102
  shortLinkCode: string;
113
103
  targetUrl: string;
114
- userId: string;
115
- email?: string;
116
104
  projectId: string;
117
105
  deletedAt: string;
118
106
  }
@@ -120,8 +108,6 @@ export interface IShortLinkRenewWorkflowTriggerData {
120
108
  shortLinkId: string;
121
109
  shortLinkCode: string;
122
110
  targetUrl: string;
123
- userId: string;
124
- email?: string;
125
111
  projectId: string;
126
112
  renewedAt: string;
127
113
  newExpiresAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/console",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "Core package to interact with AbyssConsole",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",