alepha 0.11.0 → 0.11.1
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/api/files.d.ts +166 -166
- package/api/jobs.d.ts +133 -133
- package/api/notifications.d.ts +99 -99
- package/api/users.d.ts +22 -22
- package/command.d.ts +4 -4
- package/core.d.ts +2 -2
- package/package.json +50 -50
- package/postgres.d.ts +14 -14
- package/scheduler.d.ts +6 -6
- package/security.d.ts +6 -5
- package/server/cookies.d.ts +3 -2
- package/ui.d.ts +16 -16
package/api/jobs.d.ts
CHANGED
|
@@ -2,43 +2,43 @@ import * as _alepha_core1 from "alepha";
|
|
|
2
2
|
import { Alepha, Static } from "alepha";
|
|
3
3
|
import "alepha/scheduler";
|
|
4
4
|
import "alepha/server/security";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _alepha_postgres49 from "alepha/postgres";
|
|
6
6
|
import * as _alepha_server0 from "alepha/server";
|
|
7
7
|
import { DateTimeProvider } from "alepha/datetime";
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
8
|
+
import * as typebox111 from "typebox";
|
|
9
|
+
import * as dayjs11 from "dayjs";
|
|
10
10
|
|
|
11
11
|
//#region src/schemas/jobExecutionQuerySchema.d.ts
|
|
12
|
-
declare const jobExecutionQuerySchema:
|
|
13
|
-
page:
|
|
14
|
-
size:
|
|
15
|
-
sort:
|
|
16
|
-
status:
|
|
17
|
-
job:
|
|
12
|
+
declare const jobExecutionQuerySchema: typebox111.TObject<{
|
|
13
|
+
page: typebox111.TOptional<typebox111.TInteger>;
|
|
14
|
+
size: typebox111.TOptional<typebox111.TInteger>;
|
|
15
|
+
sort: typebox111.TOptional<typebox111.TString>;
|
|
16
|
+
status: typebox111.TOptional<typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">>;
|
|
17
|
+
job: typebox111.TOptional<typebox111.TString>;
|
|
18
18
|
}>;
|
|
19
19
|
type JobExecutionQuery = Static<typeof jobExecutionQuerySchema>;
|
|
20
20
|
//#endregion
|
|
21
21
|
//#region src/services/JobService.d.ts
|
|
22
22
|
declare class JobService {
|
|
23
23
|
protected readonly alepha: Alepha;
|
|
24
|
-
protected readonly executionRepository:
|
|
25
|
-
id:
|
|
26
|
-
version:
|
|
27
|
-
createdAt:
|
|
28
|
-
updatedAt:
|
|
29
|
-
finishedAt:
|
|
30
|
-
job:
|
|
31
|
-
status:
|
|
32
|
-
error:
|
|
33
|
-
logs:
|
|
34
|
-
level:
|
|
35
|
-
message:
|
|
36
|
-
service:
|
|
37
|
-
module:
|
|
38
|
-
context:
|
|
39
|
-
app:
|
|
40
|
-
data:
|
|
41
|
-
timestamp:
|
|
24
|
+
protected readonly executionRepository: _alepha_postgres49.RepositoryDescriptor<typebox111.TObject<{
|
|
25
|
+
id: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TString, typeof _alepha_postgres49.PG_PRIMARY_KEY>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
26
|
+
version: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TInteger, typeof _alepha_postgres49.PG_VERSION>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
27
|
+
createdAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_CREATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
28
|
+
updatedAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_UPDATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
29
|
+
finishedAt: typebox111.TOptional<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>>;
|
|
30
|
+
job: typebox111.TString;
|
|
31
|
+
status: typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
|
|
32
|
+
error: typebox111.TOptional<typebox111.TString>;
|
|
33
|
+
logs: typebox111.TOptional<typebox111.TArray<typebox111.TObject<{
|
|
34
|
+
level: typebox111.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
35
|
+
message: typebox111.TString;
|
|
36
|
+
service: typebox111.TString;
|
|
37
|
+
module: typebox111.TString;
|
|
38
|
+
context: typebox111.TOptional<typebox111.TString>;
|
|
39
|
+
app: typebox111.TOptional<typebox111.TString>;
|
|
40
|
+
data: typebox111.TOptional<typebox111.TAny>;
|
|
41
|
+
timestamp: typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>;
|
|
42
42
|
}>>>;
|
|
43
43
|
}>>;
|
|
44
44
|
protected readonly dtp: DateTimeProvider;
|
|
@@ -50,7 +50,7 @@ declare class JobService {
|
|
|
50
50
|
message: string;
|
|
51
51
|
service: string;
|
|
52
52
|
module: string;
|
|
53
|
-
timestamp:
|
|
53
|
+
timestamp: dayjs11.Dayjs;
|
|
54
54
|
}[]>;
|
|
55
55
|
protected readonly onLogs: _alepha_core1.HookDescriptor<"log">;
|
|
56
56
|
protected readonly onSchedulerBegin: _alepha_core1.HookDescriptor<"scheduler:begin">;
|
|
@@ -58,43 +58,43 @@ declare class JobService {
|
|
|
58
58
|
readonly onSchedulerSuccess: _alepha_core1.HookDescriptor<"scheduler:success">;
|
|
59
59
|
readonly onSchedulerEnd: _alepha_core1.HookDescriptor<"scheduler:end">;
|
|
60
60
|
getJobs(): Promise<string[]>;
|
|
61
|
-
getJobExecutions(query?: JobExecutionQuery): Promise<
|
|
62
|
-
id:
|
|
63
|
-
version:
|
|
64
|
-
createdAt:
|
|
65
|
-
updatedAt:
|
|
66
|
-
finishedAt:
|
|
67
|
-
job:
|
|
68
|
-
status:
|
|
69
|
-
error:
|
|
70
|
-
logs:
|
|
71
|
-
level:
|
|
72
|
-
message:
|
|
73
|
-
service:
|
|
74
|
-
module:
|
|
75
|
-
context:
|
|
76
|
-
app:
|
|
77
|
-
data:
|
|
78
|
-
timestamp:
|
|
61
|
+
getJobExecutions(query?: JobExecutionQuery): Promise<_alepha_postgres49.Page<_alepha_postgres49.PgStatic<typebox111.TObject<{
|
|
62
|
+
id: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TString, typeof _alepha_postgres49.PG_PRIMARY_KEY>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
63
|
+
version: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TInteger, typeof _alepha_postgres49.PG_VERSION>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
64
|
+
createdAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_CREATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
65
|
+
updatedAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_UPDATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
66
|
+
finishedAt: typebox111.TOptional<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>>;
|
|
67
|
+
job: typebox111.TString;
|
|
68
|
+
status: typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
|
|
69
|
+
error: typebox111.TOptional<typebox111.TString>;
|
|
70
|
+
logs: typebox111.TOptional<typebox111.TArray<typebox111.TObject<{
|
|
71
|
+
level: typebox111.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
72
|
+
message: typebox111.TString;
|
|
73
|
+
service: typebox111.TString;
|
|
74
|
+
module: typebox111.TString;
|
|
75
|
+
context: typebox111.TOptional<typebox111.TString>;
|
|
76
|
+
app: typebox111.TOptional<typebox111.TString>;
|
|
77
|
+
data: typebox111.TOptional<typebox111.TAny>;
|
|
78
|
+
timestamp: typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>;
|
|
79
79
|
}>>>;
|
|
80
|
-
}>,
|
|
81
|
-
id:
|
|
82
|
-
version:
|
|
83
|
-
createdAt:
|
|
84
|
-
updatedAt:
|
|
85
|
-
finishedAt:
|
|
86
|
-
job:
|
|
87
|
-
status:
|
|
88
|
-
error:
|
|
89
|
-
logs:
|
|
90
|
-
level:
|
|
91
|
-
message:
|
|
92
|
-
service:
|
|
93
|
-
module:
|
|
94
|
-
context:
|
|
95
|
-
app:
|
|
96
|
-
data:
|
|
97
|
-
timestamp:
|
|
80
|
+
}>, _alepha_postgres49.PgRelationMap<typebox111.TObject<{
|
|
81
|
+
id: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TString, typeof _alepha_postgres49.PG_PRIMARY_KEY>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
82
|
+
version: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TInteger, typeof _alepha_postgres49.PG_VERSION>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
83
|
+
createdAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_CREATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
84
|
+
updatedAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_UPDATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
85
|
+
finishedAt: typebox111.TOptional<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>>;
|
|
86
|
+
job: typebox111.TString;
|
|
87
|
+
status: typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
|
|
88
|
+
error: typebox111.TOptional<typebox111.TString>;
|
|
89
|
+
logs: typebox111.TOptional<typebox111.TArray<typebox111.TObject<{
|
|
90
|
+
level: typebox111.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
91
|
+
message: typebox111.TString;
|
|
92
|
+
service: typebox111.TString;
|
|
93
|
+
module: typebox111.TString;
|
|
94
|
+
context: typebox111.TOptional<typebox111.TString>;
|
|
95
|
+
app: typebox111.TOptional<typebox111.TString>;
|
|
96
|
+
data: typebox111.TOptional<typebox111.TAny>;
|
|
97
|
+
timestamp: typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>;
|
|
98
98
|
}>>>;
|
|
99
99
|
}>>>>>;
|
|
100
100
|
triggerJob(name: string): Promise<{
|
|
@@ -108,98 +108,98 @@ declare class JobController {
|
|
|
108
108
|
protected readonly group: string;
|
|
109
109
|
protected readonly jobService: JobService;
|
|
110
110
|
readonly getJobs: _alepha_server0.ActionDescriptorFn<{
|
|
111
|
-
response:
|
|
111
|
+
response: typebox111.TArray<typebox111.TString>;
|
|
112
112
|
}>;
|
|
113
113
|
readonly getJobExecutions: _alepha_server0.ActionDescriptorFn<{
|
|
114
|
-
query:
|
|
115
|
-
page:
|
|
116
|
-
size:
|
|
117
|
-
sort:
|
|
118
|
-
status:
|
|
119
|
-
job:
|
|
114
|
+
query: typebox111.TObject<{
|
|
115
|
+
page: typebox111.TOptional<typebox111.TInteger>;
|
|
116
|
+
size: typebox111.TOptional<typebox111.TInteger>;
|
|
117
|
+
sort: typebox111.TOptional<typebox111.TString>;
|
|
118
|
+
status: typebox111.TOptional<typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">>;
|
|
119
|
+
job: typebox111.TOptional<typebox111.TString>;
|
|
120
120
|
}>;
|
|
121
|
-
response:
|
|
122
|
-
id:
|
|
123
|
-
version:
|
|
124
|
-
createdAt:
|
|
125
|
-
updatedAt:
|
|
126
|
-
finishedAt:
|
|
127
|
-
job:
|
|
128
|
-
status:
|
|
129
|
-
error:
|
|
130
|
-
logs:
|
|
131
|
-
level:
|
|
132
|
-
message:
|
|
133
|
-
service:
|
|
134
|
-
module:
|
|
135
|
-
context:
|
|
136
|
-
app:
|
|
137
|
-
data:
|
|
138
|
-
timestamp:
|
|
121
|
+
response: _alepha_postgres49.TPage<typebox111.TObject<{
|
|
122
|
+
id: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TString, typeof _alepha_postgres49.PG_PRIMARY_KEY>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
123
|
+
version: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TInteger, typeof _alepha_postgres49.PG_VERSION>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
124
|
+
createdAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_CREATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
125
|
+
updatedAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_UPDATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
126
|
+
finishedAt: typebox111.TOptional<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>>;
|
|
127
|
+
job: typebox111.TString;
|
|
128
|
+
status: typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
|
|
129
|
+
error: typebox111.TOptional<typebox111.TString>;
|
|
130
|
+
logs: typebox111.TOptional<typebox111.TArray<typebox111.TObject<{
|
|
131
|
+
level: typebox111.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
132
|
+
message: typebox111.TString;
|
|
133
|
+
service: typebox111.TString;
|
|
134
|
+
module: typebox111.TString;
|
|
135
|
+
context: typebox111.TOptional<typebox111.TString>;
|
|
136
|
+
app: typebox111.TOptional<typebox111.TString>;
|
|
137
|
+
data: typebox111.TOptional<typebox111.TAny>;
|
|
138
|
+
timestamp: typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>;
|
|
139
139
|
}>>>;
|
|
140
140
|
}>>;
|
|
141
141
|
}>;
|
|
142
142
|
readonly triggerJob: _alepha_server0.ActionDescriptorFn<{
|
|
143
|
-
body:
|
|
144
|
-
name:
|
|
143
|
+
body: typebox111.TObject<{
|
|
144
|
+
name: typebox111.TString;
|
|
145
145
|
}>;
|
|
146
|
-
response:
|
|
147
|
-
ok:
|
|
148
|
-
id:
|
|
149
|
-
count:
|
|
146
|
+
response: typebox111.TObject<{
|
|
147
|
+
ok: typebox111.TBoolean;
|
|
148
|
+
id: typebox111.TOptional<typebox111.TUnion<[typebox111.TString, typebox111.TInteger]>>;
|
|
149
|
+
count: typebox111.TOptional<typebox111.TNumber>;
|
|
150
150
|
}>;
|
|
151
151
|
}>;
|
|
152
152
|
}
|
|
153
153
|
//#endregion
|
|
154
154
|
//#region src/entities/jobExecutions.d.ts
|
|
155
|
-
declare const jobExecutions:
|
|
156
|
-
id:
|
|
157
|
-
version:
|
|
158
|
-
createdAt:
|
|
159
|
-
updatedAt:
|
|
160
|
-
finishedAt:
|
|
161
|
-
job:
|
|
162
|
-
status:
|
|
163
|
-
error:
|
|
164
|
-
logs:
|
|
165
|
-
level:
|
|
166
|
-
message:
|
|
167
|
-
service:
|
|
168
|
-
module:
|
|
169
|
-
context:
|
|
170
|
-
app:
|
|
171
|
-
data:
|
|
172
|
-
timestamp:
|
|
155
|
+
declare const jobExecutions: _alepha_postgres49.EntityDescriptor<typebox111.TObject<{
|
|
156
|
+
id: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TString, typeof _alepha_postgres49.PG_PRIMARY_KEY>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
157
|
+
version: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TInteger, typeof _alepha_postgres49.PG_VERSION>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
158
|
+
createdAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_CREATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
159
|
+
updatedAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_UPDATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
160
|
+
finishedAt: typebox111.TOptional<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>>;
|
|
161
|
+
job: typebox111.TString;
|
|
162
|
+
status: typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
|
|
163
|
+
error: typebox111.TOptional<typebox111.TString>;
|
|
164
|
+
logs: typebox111.TOptional<typebox111.TArray<typebox111.TObject<{
|
|
165
|
+
level: typebox111.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
166
|
+
message: typebox111.TString;
|
|
167
|
+
service: typebox111.TString;
|
|
168
|
+
module: typebox111.TString;
|
|
169
|
+
context: typebox111.TOptional<typebox111.TString>;
|
|
170
|
+
app: typebox111.TOptional<typebox111.TString>;
|
|
171
|
+
data: typebox111.TOptional<typebox111.TAny>;
|
|
172
|
+
timestamp: typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>;
|
|
173
173
|
}>>>;
|
|
174
174
|
}>>;
|
|
175
175
|
type JobExecutionEntity = Static<typeof jobExecutions.schema>;
|
|
176
176
|
//#endregion
|
|
177
177
|
//#region src/schemas/jobExecutionResourceSchema.d.ts
|
|
178
|
-
declare const jobExecutionResourceSchema:
|
|
179
|
-
id:
|
|
180
|
-
version:
|
|
181
|
-
createdAt:
|
|
182
|
-
updatedAt:
|
|
183
|
-
finishedAt:
|
|
184
|
-
job:
|
|
185
|
-
status:
|
|
186
|
-
error:
|
|
187
|
-
logs:
|
|
188
|
-
level:
|
|
189
|
-
message:
|
|
190
|
-
service:
|
|
191
|
-
module:
|
|
192
|
-
context:
|
|
193
|
-
app:
|
|
194
|
-
data:
|
|
195
|
-
timestamp:
|
|
178
|
+
declare const jobExecutionResourceSchema: typebox111.TObject<{
|
|
179
|
+
id: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TString, typeof _alepha_postgres49.PG_PRIMARY_KEY>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
180
|
+
version: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TInteger, typeof _alepha_postgres49.PG_VERSION>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
181
|
+
createdAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_CREATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
182
|
+
updatedAt: _alepha_postgres49.PgAttr<_alepha_postgres49.PgAttr<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>, typeof _alepha_postgres49.PG_UPDATED_AT>, typeof _alepha_postgres49.PG_DEFAULT>;
|
|
183
|
+
finishedAt: typebox111.TOptional<typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>>;
|
|
184
|
+
job: typebox111.TString;
|
|
185
|
+
status: typebox111.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
|
|
186
|
+
error: typebox111.TOptional<typebox111.TString>;
|
|
187
|
+
logs: typebox111.TOptional<typebox111.TArray<typebox111.TObject<{
|
|
188
|
+
level: typebox111.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
189
|
+
message: typebox111.TString;
|
|
190
|
+
service: typebox111.TString;
|
|
191
|
+
module: typebox111.TString;
|
|
192
|
+
context: typebox111.TOptional<typebox111.TString>;
|
|
193
|
+
app: typebox111.TOptional<typebox111.TString>;
|
|
194
|
+
data: typebox111.TOptional<typebox111.TAny>;
|
|
195
|
+
timestamp: typebox111.TCodec<typebox111.TString, dayjs11.Dayjs>;
|
|
196
196
|
}>>>;
|
|
197
197
|
}>;
|
|
198
198
|
type JobExecutionResource = Static<typeof jobExecutionResourceSchema>;
|
|
199
199
|
//#endregion
|
|
200
200
|
//#region src/schemas/triggerJobSchema.d.ts
|
|
201
|
-
declare const triggerJobSchema:
|
|
202
|
-
name:
|
|
201
|
+
declare const triggerJobSchema: typebox111.TObject<{
|
|
202
|
+
name: typebox111.TString;
|
|
203
203
|
}>;
|
|
204
204
|
type TriggerJob = Static<typeof triggerJobSchema>;
|
|
205
205
|
//#endregion
|