@violetbuse/rocktick 0.4.0 → 0.5.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/CHANGELOG.md +13 -0
- package/client.d.mts +4 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -4
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/cron.d.mts +12 -44
- package/resources/cron.d.mts.map +1 -1
- package/resources/cron.d.ts +12 -44
- package/resources/cron.d.ts.map +1 -1
- package/resources/executions.d.mts +12 -38
- package/resources/executions.d.mts.map +1 -1
- package/resources/executions.d.ts +12 -38
- package/resources/executions.d.ts.map +1 -1
- package/resources/executions.js.map +1 -1
- package/resources/executions.mjs.map +1 -1
- package/resources/index.d.mts +2 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/jobs.d.mts +5 -44
- package/resources/jobs.d.mts.map +1 -1
- package/resources/jobs.d.ts +5 -44
- package/resources/jobs.d.ts.map +1 -1
- package/resources/jobs.js.map +1 -1
- package/resources/jobs.mjs.map +1 -1
- package/src/client.ts +4 -0
- package/src/resources/cron.ts +10 -47
- package/src/resources/executions.ts +10 -40
- package/src/resources/index.ts +2 -0
- package/src/resources/jobs.ts +5 -52
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../core/resource';
|
|
4
|
+
import * as CronAPI from './cron';
|
|
4
5
|
import { APIPromise } from '../core/api-promise';
|
|
5
6
|
import { CursorPage, type CursorPageParams, PagePromise } from '../core/pagination';
|
|
6
7
|
import { RequestOptions } from '../internal/request-options';
|
|
@@ -31,7 +32,7 @@ export interface Execution {
|
|
|
31
32
|
|
|
32
33
|
region: string;
|
|
33
34
|
|
|
34
|
-
request:
|
|
35
|
+
request: CronAPI.HTTPRequest;
|
|
35
36
|
|
|
36
37
|
scheduled_at: number;
|
|
37
38
|
|
|
@@ -43,7 +44,7 @@ export interface Execution {
|
|
|
43
44
|
|
|
44
45
|
one_off_job_id?: string | null;
|
|
45
46
|
|
|
46
|
-
response?:
|
|
47
|
+
response?: HTTPResponse | null;
|
|
47
48
|
|
|
48
49
|
response_error?: string | null;
|
|
49
50
|
|
|
@@ -56,24 +57,12 @@ export interface Execution {
|
|
|
56
57
|
timeout_ms?: number | null;
|
|
57
58
|
}
|
|
58
59
|
|
|
59
|
-
export
|
|
60
|
-
|
|
61
|
-
headers: { [key: string]: string };
|
|
60
|
+
export interface HTTPResponse {
|
|
61
|
+
body: string;
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
headers: { [key: string]: string };
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
body?: string | null;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export interface Response {
|
|
71
|
-
body: string;
|
|
72
|
-
|
|
73
|
-
headers: { [key: string]: string };
|
|
74
|
-
|
|
75
|
-
status: number;
|
|
76
|
-
}
|
|
65
|
+
status: number;
|
|
77
66
|
}
|
|
78
67
|
|
|
79
68
|
export interface ExecutionListResponse {
|
|
@@ -83,7 +72,7 @@ export interface ExecutionListResponse {
|
|
|
83
72
|
|
|
84
73
|
region: string;
|
|
85
74
|
|
|
86
|
-
request:
|
|
75
|
+
request: CronAPI.HTTPRequest;
|
|
87
76
|
|
|
88
77
|
scheduled_at: number;
|
|
89
78
|
|
|
@@ -95,7 +84,7 @@ export interface ExecutionListResponse {
|
|
|
95
84
|
|
|
96
85
|
one_off_job_id?: string | null;
|
|
97
86
|
|
|
98
|
-
response?:
|
|
87
|
+
response?: HTTPResponse | null;
|
|
99
88
|
|
|
100
89
|
response_error?: string | null;
|
|
101
90
|
|
|
@@ -108,26 +97,6 @@ export interface ExecutionListResponse {
|
|
|
108
97
|
timeout_ms?: number | null;
|
|
109
98
|
}
|
|
110
99
|
|
|
111
|
-
export namespace ExecutionListResponse {
|
|
112
|
-
export interface Request {
|
|
113
|
-
headers: { [key: string]: string };
|
|
114
|
-
|
|
115
|
-
method: string;
|
|
116
|
-
|
|
117
|
-
url: string;
|
|
118
|
-
|
|
119
|
-
body?: string | null;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
export interface Response {
|
|
123
|
-
body: string;
|
|
124
|
-
|
|
125
|
-
headers: { [key: string]: string };
|
|
126
|
-
|
|
127
|
-
status: number;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
100
|
export interface ExecutionListParams extends CursorPageParams {
|
|
132
101
|
completed?: boolean | null;
|
|
133
102
|
|
|
@@ -143,6 +112,7 @@ export interface ExecutionListParams extends CursorPageParams {
|
|
|
143
112
|
export declare namespace Executions {
|
|
144
113
|
export {
|
|
145
114
|
type Execution as Execution,
|
|
115
|
+
type HTTPResponse as HTTPResponse,
|
|
146
116
|
type ExecutionListResponse as ExecutionListResponse,
|
|
147
117
|
type ExecutionListResponsesCursorPage as ExecutionListResponsesCursorPage,
|
|
148
118
|
type ExecutionListParams as ExecutionListParams,
|
package/src/resources/index.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
export {
|
|
4
4
|
Cron,
|
|
5
5
|
type CronJob,
|
|
6
|
+
type HTTPRequest,
|
|
6
7
|
type CronListResponse,
|
|
7
8
|
type CronCreateParams,
|
|
8
9
|
type CronUpdateParams,
|
|
@@ -12,6 +13,7 @@ export {
|
|
|
12
13
|
export {
|
|
13
14
|
Executions,
|
|
14
15
|
type Execution,
|
|
16
|
+
type HTTPResponse,
|
|
15
17
|
type ExecutionListResponse,
|
|
16
18
|
type ExecutionListParams,
|
|
17
19
|
type ExecutionListResponsesCursorPage,
|
package/src/resources/jobs.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../core/resource';
|
|
4
|
+
import * as CronAPI from './cron';
|
|
4
5
|
import * as ExecutionsAPI from './executions';
|
|
5
6
|
import { APIPromise } from '../core/api-promise';
|
|
6
7
|
import { CursorPage, type CursorPageParams, PagePromise } from '../core/pagination';
|
|
@@ -41,7 +42,7 @@ export interface OneOffJob {
|
|
|
41
42
|
|
|
42
43
|
region: string;
|
|
43
44
|
|
|
44
|
-
request:
|
|
45
|
+
request: CronAPI.HTTPRequest;
|
|
45
46
|
|
|
46
47
|
max_response_bytes?: number | null;
|
|
47
48
|
|
|
@@ -50,18 +51,6 @@ export interface OneOffJob {
|
|
|
50
51
|
timeout_ms?: number | null;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
|
-
export namespace OneOffJob {
|
|
54
|
-
export interface Request {
|
|
55
|
-
headers: { [key: string]: string };
|
|
56
|
-
|
|
57
|
-
method: string;
|
|
58
|
-
|
|
59
|
-
url: string;
|
|
60
|
-
|
|
61
|
-
body?: string | null;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
54
|
export interface JobListResponse {
|
|
66
55
|
id: string;
|
|
67
56
|
|
|
@@ -73,7 +62,7 @@ export interface JobListResponse {
|
|
|
73
62
|
|
|
74
63
|
region: string;
|
|
75
64
|
|
|
76
|
-
request:
|
|
65
|
+
request: CronAPI.HTTPRequest;
|
|
77
66
|
|
|
78
67
|
max_response_bytes?: number | null;
|
|
79
68
|
|
|
@@ -82,22 +71,10 @@ export interface JobListResponse {
|
|
|
82
71
|
timeout_ms?: number | null;
|
|
83
72
|
}
|
|
84
73
|
|
|
85
|
-
export namespace JobListResponse {
|
|
86
|
-
export interface Request {
|
|
87
|
-
headers: { [key: string]: string };
|
|
88
|
-
|
|
89
|
-
method: string;
|
|
90
|
-
|
|
91
|
-
url: string;
|
|
92
|
-
|
|
93
|
-
body?: string | null;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
74
|
export interface JobCreateParams {
|
|
98
75
|
execute_at: number;
|
|
99
76
|
|
|
100
|
-
request:
|
|
77
|
+
request: CronAPI.HTTPRequest;
|
|
101
78
|
|
|
102
79
|
max_response_bytes?: number | null;
|
|
103
80
|
|
|
@@ -108,18 +85,6 @@ export interface JobCreateParams {
|
|
|
108
85
|
timeout_ms?: number | null;
|
|
109
86
|
}
|
|
110
87
|
|
|
111
|
-
export namespace JobCreateParams {
|
|
112
|
-
export interface Request {
|
|
113
|
-
headers: { [key: string]: string };
|
|
114
|
-
|
|
115
|
-
method: string;
|
|
116
|
-
|
|
117
|
-
url: string;
|
|
118
|
-
|
|
119
|
-
body?: string | null;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
88
|
export interface JobUpdateParams {
|
|
124
89
|
execute_at?: number | null;
|
|
125
90
|
|
|
@@ -129,23 +94,11 @@ export interface JobUpdateParams {
|
|
|
129
94
|
|
|
130
95
|
region?: string | null;
|
|
131
96
|
|
|
132
|
-
request?:
|
|
97
|
+
request?: CronAPI.HTTPRequest | null;
|
|
133
98
|
|
|
134
99
|
timeout_ms?: number | null;
|
|
135
100
|
}
|
|
136
101
|
|
|
137
|
-
export namespace JobUpdateParams {
|
|
138
|
-
export interface Request {
|
|
139
|
-
headers: { [key: string]: string };
|
|
140
|
-
|
|
141
|
-
method: string;
|
|
142
|
-
|
|
143
|
-
url: string;
|
|
144
|
-
|
|
145
|
-
body?: string | null;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
|
|
149
102
|
export interface JobListParams extends CursorPageParams {}
|
|
150
103
|
|
|
151
104
|
export declare namespace Jobs {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.5.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.5.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.5.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.5.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|