@pg-boss/proxy 0.1.0
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/README.md +419 -0
- package/dist/auth.d.ts +5 -0
- package/dist/auth.d.ts.map +1 -0
- package/dist/auth.js +14 -0
- package/dist/contracts.d.ts +288 -0
- package/dist/contracts.d.ts.map +1 -0
- package/dist/contracts.js +424 -0
- package/dist/home.d.ts +13 -0
- package/dist/home.d.ts.map +1 -0
- package/dist/home.js +145 -0
- package/dist/index.d.ts +39 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +270 -0
- package/dist/node.d.ts +31 -0
- package/dist/node.d.ts.map +1 -0
- package/dist/node.js +78 -0
- package/dist/routes.d.ts +22 -0
- package/dist/routes.d.ts.map +1 -0
- package/dist/routes.js +128 -0
- package/dist/shutdown.d.ts +12 -0
- package/dist/shutdown.d.ts.map +1 -0
- package/dist/shutdown.js +37 -0
- package/dist/types.d.ts +234 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +1 -0
- package/dist/version.d.ts +2 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +2 -0
- package/package.json +63 -0
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
import type * as types from './types.js';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
export declare const jsonRecordSchema: z.ZodType<types.HttpJsonRecord>;
|
|
4
|
+
export declare const nullableJsonRecordSchema: z.ZodType<types.HttpNullableJsonRecord>;
|
|
5
|
+
export declare const dateInputSchema: z.ZodType<types.HttpDateInput>;
|
|
6
|
+
export declare const queueNameSchema: z.ZodType<types.HttpQueueName>;
|
|
7
|
+
export declare const eventNameSchema: z.ZodType<types.HttpEventName>;
|
|
8
|
+
export declare const errorResultSchema: z.ZodType<types.HttpErrorResult>;
|
|
9
|
+
export declare const htmlResponseSchema: z.ZodType<types.HttpHtmlResponse>;
|
|
10
|
+
export declare const groupOptionsSchema: z.ZodObject<{
|
|
11
|
+
id: z.ZodString;
|
|
12
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
export declare const groupConcurrencyConfigSchema: z.ZodObject<{
|
|
15
|
+
default: z.ZodNumber;
|
|
16
|
+
tiers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
17
|
+
}, z.core.$strip>;
|
|
18
|
+
export declare const sendOptionsSchema: z.ZodObject<{
|
|
19
|
+
id: z.ZodOptional<z.ZodString>;
|
|
20
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
21
|
+
startAfter: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
22
|
+
singletonKey: z.ZodOptional<z.ZodString>;
|
|
23
|
+
singletonSeconds: z.ZodOptional<z.ZodNumber>;
|
|
24
|
+
singletonNextSlot: z.ZodOptional<z.ZodBoolean>;
|
|
25
|
+
keepUntil: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
26
|
+
group: z.ZodOptional<z.ZodObject<{
|
|
27
|
+
id: z.ZodString;
|
|
28
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
29
|
+
}, z.core.$strip>>;
|
|
30
|
+
deadLetter: z.ZodOptional<z.ZodString>;
|
|
31
|
+
expireInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
32
|
+
retentionSeconds: z.ZodOptional<z.ZodNumber>;
|
|
33
|
+
deleteAfterSeconds: z.ZodOptional<z.ZodNumber>;
|
|
34
|
+
retryLimit: z.ZodOptional<z.ZodNumber>;
|
|
35
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
36
|
+
retryBackoff: z.ZodOptional<z.ZodBoolean>;
|
|
37
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
38
|
+
heartbeatSeconds: z.ZodOptional<z.ZodNumber>;
|
|
39
|
+
}, z.core.$strip>;
|
|
40
|
+
export declare const queueOptionsSchema: z.ZodObject<{
|
|
41
|
+
expireInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
retentionSeconds: z.ZodOptional<z.ZodNumber>;
|
|
43
|
+
deleteAfterSeconds: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
retryLimit: z.ZodOptional<z.ZodNumber>;
|
|
45
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
retryBackoff: z.ZodOptional<z.ZodBoolean>;
|
|
47
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
48
|
+
heartbeatSeconds: z.ZodOptional<z.ZodNumber>;
|
|
49
|
+
}, z.core.$strip>;
|
|
50
|
+
export declare const scheduleOptionsSchema: z.ZodObject<{
|
|
51
|
+
id: z.ZodOptional<z.ZodString>;
|
|
52
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
53
|
+
startAfter: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
54
|
+
singletonKey: z.ZodOptional<z.ZodString>;
|
|
55
|
+
singletonSeconds: z.ZodOptional<z.ZodNumber>;
|
|
56
|
+
singletonNextSlot: z.ZodOptional<z.ZodBoolean>;
|
|
57
|
+
keepUntil: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
58
|
+
group: z.ZodOptional<z.ZodObject<{
|
|
59
|
+
id: z.ZodString;
|
|
60
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
61
|
+
}, z.core.$strip>>;
|
|
62
|
+
deadLetter: z.ZodOptional<z.ZodString>;
|
|
63
|
+
expireInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
64
|
+
retentionSeconds: z.ZodOptional<z.ZodNumber>;
|
|
65
|
+
deleteAfterSeconds: z.ZodOptional<z.ZodNumber>;
|
|
66
|
+
retryLimit: z.ZodOptional<z.ZodNumber>;
|
|
67
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
68
|
+
retryBackoff: z.ZodOptional<z.ZodBoolean>;
|
|
69
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
70
|
+
heartbeatSeconds: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
tz: z.ZodOptional<z.ZodString>;
|
|
72
|
+
key: z.ZodOptional<z.ZodString>;
|
|
73
|
+
}, z.core.$strip>;
|
|
74
|
+
export declare const fetchOptionsSchema: z.ZodObject<{
|
|
75
|
+
includeMetadata: z.ZodOptional<z.ZodBoolean>;
|
|
76
|
+
priority: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
orderByCreatedOn: z.ZodOptional<z.ZodBoolean>;
|
|
78
|
+
batchSize: z.ZodOptional<z.ZodNumber>;
|
|
79
|
+
ignoreStartAfter: z.ZodOptional<z.ZodBoolean>;
|
|
80
|
+
groupConcurrency: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
81
|
+
default: z.ZodNumber;
|
|
82
|
+
tiers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
83
|
+
}, z.core.$strip>]>>;
|
|
84
|
+
ignoreGroups: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
85
|
+
}, z.core.$strip>;
|
|
86
|
+
export declare const findJobsOptionsSchema: z.ZodObject<{
|
|
87
|
+
id: z.ZodOptional<z.ZodString>;
|
|
88
|
+
key: z.ZodOptional<z.ZodString>;
|
|
89
|
+
data: z.ZodOptional<z.ZodType<types.HttpJsonRecord, unknown, z.core.$ZodTypeInternals<types.HttpJsonRecord, unknown>>>;
|
|
90
|
+
queued: z.ZodOptional<z.ZodBoolean>;
|
|
91
|
+
}, z.core.$strip>;
|
|
92
|
+
export declare const insertOptionsSchema: z.ZodObject<{
|
|
93
|
+
returnId: z.ZodOptional<z.ZodBoolean>;
|
|
94
|
+
}, z.core.$strip>;
|
|
95
|
+
export declare const completeOptionsSchema: z.ZodObject<{
|
|
96
|
+
includeQueued: z.ZodOptional<z.ZodBoolean>;
|
|
97
|
+
}, z.core.$strip>;
|
|
98
|
+
export declare const jobInsertSchema: z.ZodObject<{
|
|
99
|
+
id: z.ZodOptional<z.ZodString>;
|
|
100
|
+
data: z.ZodOptional<z.ZodType<types.HttpJsonRecord, unknown, z.core.$ZodTypeInternals<types.HttpJsonRecord, unknown>>>;
|
|
101
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
102
|
+
retryLimit: z.ZodOptional<z.ZodNumber>;
|
|
103
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
104
|
+
retryBackoff: z.ZodOptional<z.ZodBoolean>;
|
|
105
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
106
|
+
startAfter: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
107
|
+
singletonKey: z.ZodOptional<z.ZodString>;
|
|
108
|
+
singletonSeconds: z.ZodOptional<z.ZodNumber>;
|
|
109
|
+
expireInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
110
|
+
deleteAfterSeconds: z.ZodOptional<z.ZodNumber>;
|
|
111
|
+
retentionSeconds: z.ZodOptional<z.ZodNumber>;
|
|
112
|
+
heartbeatSeconds: z.ZodOptional<z.ZodNumber>;
|
|
113
|
+
group: z.ZodOptional<z.ZodObject<{
|
|
114
|
+
id: z.ZodString;
|
|
115
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
116
|
+
}, z.core.$strip>>;
|
|
117
|
+
deadLetter: z.ZodOptional<z.ZodString>;
|
|
118
|
+
}, z.core.$strip>;
|
|
119
|
+
export declare const jobSchema: z.ZodObject<{
|
|
120
|
+
id: z.ZodString;
|
|
121
|
+
name: z.ZodString;
|
|
122
|
+
data: z.ZodType<types.HttpJsonRecord, unknown, z.core.$ZodTypeInternals<types.HttpJsonRecord, unknown>>;
|
|
123
|
+
expireInSeconds: z.ZodNumber;
|
|
124
|
+
heartbeatSeconds: z.ZodNullable<z.ZodNumber>;
|
|
125
|
+
groupId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
126
|
+
groupTier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
127
|
+
}, z.core.$strip>;
|
|
128
|
+
export declare const jobWithMetadataSchema: z.ZodObject<{
|
|
129
|
+
id: z.ZodString;
|
|
130
|
+
name: z.ZodString;
|
|
131
|
+
data: z.ZodType<types.HttpJsonRecord, unknown, z.core.$ZodTypeInternals<types.HttpJsonRecord, unknown>>;
|
|
132
|
+
expireInSeconds: z.ZodNumber;
|
|
133
|
+
heartbeatSeconds: z.ZodNullable<z.ZodNumber>;
|
|
134
|
+
groupId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
135
|
+
groupTier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
136
|
+
priority: z.ZodNumber;
|
|
137
|
+
state: z.ZodEnum<{
|
|
138
|
+
created: "created";
|
|
139
|
+
retry: "retry";
|
|
140
|
+
active: "active";
|
|
141
|
+
completed: "completed";
|
|
142
|
+
cancelled: "cancelled";
|
|
143
|
+
failed: "failed";
|
|
144
|
+
}>;
|
|
145
|
+
retryLimit: z.ZodNumber;
|
|
146
|
+
retryCount: z.ZodNumber;
|
|
147
|
+
retryDelay: z.ZodNumber;
|
|
148
|
+
retryBackoff: z.ZodBoolean;
|
|
149
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
150
|
+
startAfter: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
151
|
+
startedOn: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
152
|
+
singletonKey: z.ZodNullable<z.ZodString>;
|
|
153
|
+
singletonOn: z.ZodNullable<z.ZodString>;
|
|
154
|
+
deleteAfterSeconds: z.ZodNumber;
|
|
155
|
+
createdOn: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
156
|
+
completedOn: z.ZodPipe<z.ZodNullable<z.ZodISODateTime>, z.ZodTransform<Date | null, string | null>>;
|
|
157
|
+
keepUntil: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
158
|
+
policy: z.ZodString;
|
|
159
|
+
deadLetter: z.ZodString;
|
|
160
|
+
output: z.ZodType<types.HttpJsonRecord, unknown, z.core.$ZodTypeInternals<types.HttpJsonRecord, unknown>>;
|
|
161
|
+
}, z.core.$strip>;
|
|
162
|
+
export declare const commandResponseSchema: z.ZodObject<{
|
|
163
|
+
jobs: z.ZodArray<z.ZodString>;
|
|
164
|
+
requested: z.ZodNumber;
|
|
165
|
+
affected: z.ZodNumber;
|
|
166
|
+
}, z.core.$strip>;
|
|
167
|
+
export declare const queueResultSchema: z.ZodObject<{
|
|
168
|
+
name: z.ZodString;
|
|
169
|
+
expireInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
170
|
+
retentionSeconds: z.ZodOptional<z.ZodNumber>;
|
|
171
|
+
deleteAfterSeconds: z.ZodOptional<z.ZodNumber>;
|
|
172
|
+
retryLimit: z.ZodOptional<z.ZodNumber>;
|
|
173
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
174
|
+
retryBackoff: z.ZodOptional<z.ZodBoolean>;
|
|
175
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
176
|
+
policy: z.ZodOptional<z.ZodString>;
|
|
177
|
+
partition: z.ZodOptional<z.ZodBoolean>;
|
|
178
|
+
deadLetter: z.ZodOptional<z.ZodString>;
|
|
179
|
+
warningQueueSize: z.ZodOptional<z.ZodNumber>;
|
|
180
|
+
heartbeatSeconds: z.ZodOptional<z.ZodNumber>;
|
|
181
|
+
deferredCount: z.ZodNumber;
|
|
182
|
+
queuedCount: z.ZodNumber;
|
|
183
|
+
activeCount: z.ZodNumber;
|
|
184
|
+
totalCount: z.ZodNumber;
|
|
185
|
+
table: z.ZodString;
|
|
186
|
+
createdOn: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
187
|
+
updatedOn: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
188
|
+
singletonsActive: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
189
|
+
}, z.core.$strip>;
|
|
190
|
+
export declare const scheduleSchema: z.ZodObject<{
|
|
191
|
+
name: z.ZodString;
|
|
192
|
+
key: z.ZodString;
|
|
193
|
+
cron: z.ZodString;
|
|
194
|
+
timezone: z.ZodString;
|
|
195
|
+
data: z.ZodOptional<z.ZodType<types.HttpJsonRecord, unknown, z.core.$ZodTypeInternals<types.HttpJsonRecord, unknown>>>;
|
|
196
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
197
|
+
id: z.ZodOptional<z.ZodString>;
|
|
198
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
startAfter: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
200
|
+
singletonKey: z.ZodOptional<z.ZodString>;
|
|
201
|
+
singletonSeconds: z.ZodOptional<z.ZodNumber>;
|
|
202
|
+
singletonNextSlot: z.ZodOptional<z.ZodBoolean>;
|
|
203
|
+
keepUntil: z.ZodOptional<z.ZodType<types.HttpDateInput, unknown, z.core.$ZodTypeInternals<types.HttpDateInput, unknown>>>;
|
|
204
|
+
group: z.ZodOptional<z.ZodObject<{
|
|
205
|
+
id: z.ZodString;
|
|
206
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
207
|
+
}, z.core.$strip>>;
|
|
208
|
+
deadLetter: z.ZodOptional<z.ZodString>;
|
|
209
|
+
expireInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
210
|
+
retentionSeconds: z.ZodOptional<z.ZodNumber>;
|
|
211
|
+
deleteAfterSeconds: z.ZodOptional<z.ZodNumber>;
|
|
212
|
+
retryLimit: z.ZodOptional<z.ZodNumber>;
|
|
213
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
214
|
+
retryBackoff: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
+
retryDelayMax: z.ZodOptional<z.ZodNumber>;
|
|
216
|
+
heartbeatSeconds: z.ZodOptional<z.ZodNumber>;
|
|
217
|
+
}, z.core.$strip>>;
|
|
218
|
+
}, z.core.$strip>;
|
|
219
|
+
export declare const bamStatusSummarySchema: z.ZodObject<{
|
|
220
|
+
status: z.ZodEnum<{
|
|
221
|
+
completed: "completed";
|
|
222
|
+
failed: "failed";
|
|
223
|
+
pending: "pending";
|
|
224
|
+
in_progress: "in_progress";
|
|
225
|
+
}>;
|
|
226
|
+
count: z.ZodNumber;
|
|
227
|
+
lastCreatedOn: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
228
|
+
}, z.core.$strip>;
|
|
229
|
+
export declare const metaResultSchema: z.ZodType<types.HttpMetaResult>;
|
|
230
|
+
export declare const metaResponseSchema: z.ZodType<types.HttpMetaResponse>;
|
|
231
|
+
export declare const sendRequestSchema: z.ZodType<types.HttpSendRequest>;
|
|
232
|
+
export declare const sendResponseSchema: z.ZodType<types.HttpSendResponse>;
|
|
233
|
+
export declare const sendAfterRequestSchema: z.ZodType<types.HttpSendAfterRequest>;
|
|
234
|
+
export declare const sendAfterResponseSchema: z.ZodType<types.HttpSendAfterResponse>;
|
|
235
|
+
export declare const sendThrottledRequestSchema: z.ZodType<types.HttpSendThrottledRequest>;
|
|
236
|
+
export declare const sendThrottledResponseSchema: z.ZodType<types.HttpSendThrottledResponse>;
|
|
237
|
+
export declare const sendDebouncedRequestSchema: z.ZodType<types.HttpSendDebouncedRequest>;
|
|
238
|
+
export declare const sendDebouncedResponseSchema: z.ZodType<types.HttpSendDebouncedResponse>;
|
|
239
|
+
export declare const insertRequestSchema: z.ZodType<types.HttpInsertRequest>;
|
|
240
|
+
export declare const insertResponseSchema: z.ZodType<types.HttpInsertResponse>;
|
|
241
|
+
export declare const fetchRequestSchema: z.ZodType<types.HttpFetchRequest>;
|
|
242
|
+
export declare const fetchResponseSchema: z.ZodType<types.HttpFetchResponse>;
|
|
243
|
+
export declare const subscribeRequestSchema: z.ZodType<types.HttpSubscribeRequest>;
|
|
244
|
+
export declare const subscribeResponseSchema: z.ZodType<types.HttpSubscribeResponse>;
|
|
245
|
+
export declare const unsubscribeRequestSchema: z.ZodType<types.HttpUnsubscribeRequest>;
|
|
246
|
+
export declare const unsubscribeResponseSchema: z.ZodType<types.HttpUnsubscribeResponse>;
|
|
247
|
+
export declare const publishRequestSchema: z.ZodType<types.HttpPublishRequest>;
|
|
248
|
+
export declare const publishResponseSchema: z.ZodType<types.HttpPublishResponse>;
|
|
249
|
+
export declare const cancelRequestSchema: z.ZodType<types.HttpCancelRequest>;
|
|
250
|
+
export declare const cancelResponseSchema: z.ZodType<types.HttpCancelResponse>;
|
|
251
|
+
export declare const resumeRequestSchema: z.ZodType<types.HttpResumeRequest>;
|
|
252
|
+
export declare const resumeResponseSchema: z.ZodType<types.HttpResumeResponse>;
|
|
253
|
+
export declare const retryRequestSchema: z.ZodType<types.HttpRetryRequest>;
|
|
254
|
+
export declare const retryResponseSchema: z.ZodType<types.HttpRetryResponse>;
|
|
255
|
+
export declare const deleteJobRequestSchema: z.ZodType<types.HttpDeleteJobRequest>;
|
|
256
|
+
export declare const deleteJobResponseSchema: z.ZodType<types.HttpDeleteJobResponse>;
|
|
257
|
+
export declare const deleteQueuedJobsRequestSchema: z.ZodType<types.HttpDeleteQueuedJobsRequest>;
|
|
258
|
+
export declare const deleteQueuedJobsResponseSchema: z.ZodType<types.HttpDeleteQueuedJobsResponse>;
|
|
259
|
+
export declare const deleteStoredJobsRequestSchema: z.ZodType<types.HttpDeleteStoredJobsRequest>;
|
|
260
|
+
export declare const deleteStoredJobsResponseSchema: z.ZodType<types.HttpDeleteStoredJobsResponse>;
|
|
261
|
+
export declare const deleteAllJobsRequestSchema: z.ZodType<types.HttpDeleteAllJobsRequest>;
|
|
262
|
+
export declare const deleteAllJobsResponseSchema: z.ZodType<types.HttpDeleteAllJobsResponse>;
|
|
263
|
+
export declare const completeRequestSchema: z.ZodType<types.HttpCompleteRequest>;
|
|
264
|
+
export declare const completeResponseSchema: z.ZodType<types.HttpCompleteResponse>;
|
|
265
|
+
export declare const failRequestSchema: z.ZodType<types.HttpFailRequest>;
|
|
266
|
+
export declare const failResponseSchema: z.ZodType<types.HttpFailResponse>;
|
|
267
|
+
export declare const findJobsResponseSchema: z.ZodType<types.HttpFindJobsResponse>;
|
|
268
|
+
export declare const createQueueRequestSchema: z.ZodType<types.HttpCreateQueueRequest>;
|
|
269
|
+
export declare const createQueueResponseSchema: z.ZodType<types.HttpCreateQueueResponse>;
|
|
270
|
+
export declare const getBlockedKeysResponseSchema: z.ZodType<types.HttpGetBlockedKeysResponse>;
|
|
271
|
+
export declare const updateQueueRequestSchema: z.ZodType<types.HttpUpdateQueueRequest>;
|
|
272
|
+
export declare const updateQueueResponseSchema: z.ZodType<types.HttpUpdateQueueResponse>;
|
|
273
|
+
export declare const deleteQueueRequestSchema: z.ZodType<types.HttpDeleteQueueRequest>;
|
|
274
|
+
export declare const deleteQueueResponseSchema: z.ZodType<types.HttpDeleteQueueResponse>;
|
|
275
|
+
export declare const getQueuesResponseSchema: z.ZodType<types.HttpGetQueuesResponse>;
|
|
276
|
+
export declare const getQueueResponseSchema: z.ZodType<types.HttpGetQueueResponse>;
|
|
277
|
+
export declare const getQueueStatsResponseSchema: z.ZodType<types.HttpGetQueueStatsResponse>;
|
|
278
|
+
export declare const superviseRequestSchema: z.ZodType<types.HttpSuperviseRequest>;
|
|
279
|
+
export declare const superviseResponseSchema: z.ZodType<types.HttpSuperviseResponse>;
|
|
280
|
+
export declare const isInstalledResponseSchema: z.ZodType<types.HttpIsInstalledResponse>;
|
|
281
|
+
export declare const schemaVersionResponseSchema: z.ZodType<types.HttpSchemaVersionResponse>;
|
|
282
|
+
export declare const scheduleRequestSchema: z.ZodType<types.HttpScheduleRequest>;
|
|
283
|
+
export declare const scheduleResponseSchema: z.ZodType<types.HttpScheduleResponse>;
|
|
284
|
+
export declare const unscheduleRequestSchema: z.ZodType<types.HttpUnscheduleRequest>;
|
|
285
|
+
export declare const unscheduleResponseSchema: z.ZodType<types.HttpUnscheduleResponse>;
|
|
286
|
+
export declare const getSchedulesResponseSchema: z.ZodType<types.HttpGetSchedulesResponse>;
|
|
287
|
+
export declare const getBamStatusResponseSchema: z.ZodType<types.HttpGetBamStatusResponse>;
|
|
288
|
+
//# sourceMappingURL=contracts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contracts.d.ts","sourceRoot":"","sources":["../src/contracts.ts"],"names":[],"mappings":"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"}
|