openlayer 0.2.1 → 0.3.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 +30 -0
- package/README.md +1 -4
- package/index.d.mts +7 -3
- package/index.d.ts +7 -3
- package/index.d.ts.map +1 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/index.mjs +4 -2
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/commits/test-results.d.ts +4 -4
- package/resources/commits/test-results.d.ts.map +1 -1
- package/resources/commits/test-results.js +3 -3
- package/resources/commits/test-results.js.map +1 -1
- package/resources/commits/test-results.mjs +3 -3
- package/resources/commits/test-results.mjs.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/inference-pipelines/data.d.ts +4 -4
- package/resources/inference-pipelines/data.d.ts.map +1 -1
- package/resources/inference-pipelines/data.js +3 -3
- package/resources/inference-pipelines/data.js.map +1 -1
- package/resources/inference-pipelines/data.mjs +3 -3
- package/resources/inference-pipelines/data.mjs.map +1 -1
- package/resources/inference-pipelines/test-results.d.ts +4 -8
- package/resources/inference-pipelines/test-results.d.ts.map +1 -1
- package/resources/inference-pipelines/test-results.js +3 -3
- package/resources/inference-pipelines/test-results.js.map +1 -1
- package/resources/inference-pipelines/test-results.mjs +3 -3
- package/resources/inference-pipelines/test-results.mjs.map +1 -1
- package/resources/projects/commits.d.ts +4 -4
- package/resources/projects/commits.d.ts.map +1 -1
- package/resources/projects/commits.js +3 -3
- package/resources/projects/commits.js.map +1 -1
- package/resources/projects/commits.mjs +3 -3
- package/resources/projects/commits.mjs.map +1 -1
- package/resources/projects/index.d.ts +2 -2
- package/resources/projects/index.d.ts.map +1 -1
- package/resources/projects/index.js.map +1 -1
- package/resources/projects/index.mjs +1 -1
- package/resources/projects/index.mjs.map +1 -1
- package/resources/projects/inference-pipelines.d.ts +83 -7
- package/resources/projects/inference-pipelines.d.ts.map +1 -1
- package/resources/projects/inference-pipelines.js +9 -3
- package/resources/projects/inference-pipelines.js.map +1 -1
- package/resources/projects/inference-pipelines.mjs +9 -3
- package/resources/projects/inference-pipelines.mjs.map +1 -1
- package/resources/projects/projects.d.ts +109 -22
- package/resources/projects/projects.d.ts.map +1 -1
- package/resources/projects/projects.js +6 -0
- package/resources/projects/projects.js.map +1 -1
- package/resources/projects/projects.mjs +6 -0
- package/resources/projects/projects.mjs.map +1 -1
- package/src/index.ts +8 -3
- package/src/resources/commits/test-results.ts +7 -7
- package/src/resources/index.ts +7 -1
- package/src/resources/inference-pipelines/data.ts +5 -5
- package/src/resources/inference-pipelines/test-results.ts +7 -12
- package/src/resources/projects/commits.ts +7 -7
- package/src/resources/projects/index.ts +9 -1
- package/src/resources/projects/inference-pipelines.ts +111 -11
- package/src/resources/projects/projects.ts +144 -27
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import * as Core from '../../core';
|
|
4
3
|
import { APIResource } from '../../resource';
|
|
5
4
|
import { isRequestOptions } from '../../core';
|
|
5
|
+
import * as Core from '../../core';
|
|
6
6
|
import * as CommitsAPI from './commits';
|
|
7
7
|
|
|
8
8
|
export class Commits extends APIResource {
|
|
9
9
|
/**
|
|
10
|
-
* List the commits (project versions)
|
|
10
|
+
* List the commits (project versions) in a project.
|
|
11
11
|
*/
|
|
12
12
|
list(
|
|
13
|
-
|
|
13
|
+
projectId: string,
|
|
14
14
|
query?: CommitListParams,
|
|
15
15
|
options?: Core.RequestOptions,
|
|
16
16
|
): Core.APIPromise<CommitListResponse>;
|
|
17
|
-
list(
|
|
17
|
+
list(projectId: string, options?: Core.RequestOptions): Core.APIPromise<CommitListResponse>;
|
|
18
18
|
list(
|
|
19
|
-
|
|
19
|
+
projectId: string,
|
|
20
20
|
query: CommitListParams | Core.RequestOptions = {},
|
|
21
21
|
options?: Core.RequestOptions,
|
|
22
22
|
): Core.APIPromise<CommitListResponse> {
|
|
23
23
|
if (isRequestOptions(query)) {
|
|
24
|
-
return this.list(
|
|
24
|
+
return this.list(projectId, {}, query);
|
|
25
25
|
}
|
|
26
|
-
return this._client.get(`/projects/${
|
|
26
|
+
return this._client.get(`/projects/${projectId}/versions`, { query, ...options });
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
export { CommitListResponse, CommitListParams, Commits } from './commits';
|
|
4
4
|
export {
|
|
5
|
+
InferencePipelineCreateResponse,
|
|
5
6
|
InferencePipelineListResponse,
|
|
7
|
+
InferencePipelineCreateParams,
|
|
6
8
|
InferencePipelineListParams,
|
|
7
9
|
InferencePipelines,
|
|
8
10
|
} from './inference-pipelines';
|
|
9
|
-
export {
|
|
11
|
+
export {
|
|
12
|
+
ProjectCreateResponse,
|
|
13
|
+
ProjectListResponse,
|
|
14
|
+
ProjectCreateParams,
|
|
15
|
+
ProjectListParams,
|
|
16
|
+
Projects,
|
|
17
|
+
} from './projects';
|
|
@@ -1,29 +1,120 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import * as Core from '../../core';
|
|
4
3
|
import { APIResource } from '../../resource';
|
|
5
4
|
import { isRequestOptions } from '../../core';
|
|
5
|
+
import * as Core from '../../core';
|
|
6
6
|
import * as InferencePipelinesAPI from './inference-pipelines';
|
|
7
7
|
|
|
8
8
|
export class InferencePipelines extends APIResource {
|
|
9
|
+
/**
|
|
10
|
+
* Create an inference pipeline in a project.
|
|
11
|
+
*/
|
|
12
|
+
create(
|
|
13
|
+
projectId: string,
|
|
14
|
+
body: InferencePipelineCreateParams,
|
|
15
|
+
options?: Core.RequestOptions,
|
|
16
|
+
): Core.APIPromise<InferencePipelineCreateResponse> {
|
|
17
|
+
return this._client.post(`/projects/${projectId}/inference-pipelines`, { body, ...options });
|
|
18
|
+
}
|
|
19
|
+
|
|
9
20
|
/**
|
|
10
21
|
* List the inference pipelines in a project.
|
|
11
22
|
*/
|
|
12
23
|
list(
|
|
13
|
-
|
|
24
|
+
projectId: string,
|
|
14
25
|
query?: InferencePipelineListParams,
|
|
15
26
|
options?: Core.RequestOptions,
|
|
16
27
|
): Core.APIPromise<InferencePipelineListResponse>;
|
|
17
|
-
list(
|
|
28
|
+
list(projectId: string, options?: Core.RequestOptions): Core.APIPromise<InferencePipelineListResponse>;
|
|
18
29
|
list(
|
|
19
|
-
|
|
30
|
+
projectId: string,
|
|
20
31
|
query: InferencePipelineListParams | Core.RequestOptions = {},
|
|
21
32
|
options?: Core.RequestOptions,
|
|
22
33
|
): Core.APIPromise<InferencePipelineListResponse> {
|
|
23
34
|
if (isRequestOptions(query)) {
|
|
24
|
-
return this.list(
|
|
35
|
+
return this.list(projectId, {}, query);
|
|
25
36
|
}
|
|
26
|
-
return this._client.get(`/projects/${
|
|
37
|
+
return this._client.get(`/projects/${projectId}/inference-pipelines`, { query, ...options });
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface InferencePipelineCreateResponse {
|
|
42
|
+
/**
|
|
43
|
+
* The inference pipeline id.
|
|
44
|
+
*/
|
|
45
|
+
id: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* The creation date.
|
|
49
|
+
*/
|
|
50
|
+
dateCreated: string;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* The last test evaluation date.
|
|
54
|
+
*/
|
|
55
|
+
dateLastEvaluated: string | null;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* The last data sample received date.
|
|
59
|
+
*/
|
|
60
|
+
dateLastSampleReceived: string | null;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* The next test evaluation date.
|
|
64
|
+
*/
|
|
65
|
+
dateOfNextEvaluation: string | null;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* The last updated date.
|
|
69
|
+
*/
|
|
70
|
+
dateUpdated: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* The inference pipeline description.
|
|
74
|
+
*/
|
|
75
|
+
description: string | null;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* The number of tests failing.
|
|
79
|
+
*/
|
|
80
|
+
failingGoalCount: number;
|
|
81
|
+
|
|
82
|
+
links: InferencePipelineCreateResponse.Links;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* The inference pipeline name.
|
|
86
|
+
*/
|
|
87
|
+
name: string;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* The number of tests passing.
|
|
91
|
+
*/
|
|
92
|
+
passingGoalCount: number;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* The project id.
|
|
96
|
+
*/
|
|
97
|
+
projectId: string;
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* The status of test evaluation for the inference pipeline.
|
|
101
|
+
*/
|
|
102
|
+
status: 'queued' | 'running' | 'paused' | 'failed' | 'completed' | 'unknown';
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* The status message of test evaluation for the inference pipeline.
|
|
106
|
+
*/
|
|
107
|
+
statusMessage: string | null;
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* The total number of tests.
|
|
111
|
+
*/
|
|
112
|
+
totalGoalCount: number;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export namespace InferencePipelineCreateResponse {
|
|
116
|
+
export interface Links {
|
|
117
|
+
app: string;
|
|
27
118
|
}
|
|
28
119
|
}
|
|
29
120
|
|
|
@@ -128,11 +219,6 @@ export namespace InferencePipelineListResponse {
|
|
|
128
219
|
* The total number of tests.
|
|
129
220
|
*/
|
|
130
221
|
totalGoalCount: number;
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* The storage type.
|
|
134
|
-
*/
|
|
135
|
-
storageType?: 'local' | 's3' | 'gcs' | 'azure';
|
|
136
222
|
}
|
|
137
223
|
|
|
138
224
|
export namespace Item {
|
|
@@ -142,6 +228,18 @@ export namespace InferencePipelineListResponse {
|
|
|
142
228
|
}
|
|
143
229
|
}
|
|
144
230
|
|
|
231
|
+
export interface InferencePipelineCreateParams {
|
|
232
|
+
/**
|
|
233
|
+
* The inference pipeline description.
|
|
234
|
+
*/
|
|
235
|
+
description: string | null;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* The inference pipeline name.
|
|
239
|
+
*/
|
|
240
|
+
name: string;
|
|
241
|
+
}
|
|
242
|
+
|
|
145
243
|
export interface InferencePipelineListParams {
|
|
146
244
|
/**
|
|
147
245
|
* Filter list of items by name.
|
|
@@ -160,6 +258,8 @@ export interface InferencePipelineListParams {
|
|
|
160
258
|
}
|
|
161
259
|
|
|
162
260
|
export namespace InferencePipelines {
|
|
261
|
+
export import InferencePipelineCreateResponse = InferencePipelinesAPI.InferencePipelineCreateResponse;
|
|
163
262
|
export import InferencePipelineListResponse = InferencePipelinesAPI.InferencePipelineListResponse;
|
|
263
|
+
export import InferencePipelineCreateParams = InferencePipelinesAPI.InferencePipelineCreateParams;
|
|
164
264
|
export import InferencePipelineListParams = InferencePipelinesAPI.InferencePipelineListParams;
|
|
165
265
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import * as Core from '../../core';
|
|
4
3
|
import { APIResource } from '../../resource';
|
|
5
4
|
import { isRequestOptions } from '../../core';
|
|
5
|
+
import * as Core from '../../core';
|
|
6
6
|
import * as ProjectsAPI from './projects';
|
|
7
7
|
import * as CommitsAPI from './commits';
|
|
8
8
|
import * as InferencePipelinesAPI from './inference-pipelines';
|
|
@@ -14,7 +14,14 @@ export class Projects extends APIResource {
|
|
|
14
14
|
);
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Create a project in your workspace.
|
|
18
|
+
*/
|
|
19
|
+
create(body: ProjectCreateParams, options?: Core.RequestOptions): Core.APIPromise<ProjectCreateResponse> {
|
|
20
|
+
return this._client.post('/projects', { body, ...options });
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* List your workspace's projects.
|
|
18
25
|
*/
|
|
19
26
|
list(query?: ProjectListParams, options?: Core.RequestOptions): Core.APIPromise<ProjectListResponse>;
|
|
20
27
|
list(options?: Core.RequestOptions): Core.APIPromise<ProjectListResponse>;
|
|
@@ -29,6 +36,120 @@ export class Projects extends APIResource {
|
|
|
29
36
|
}
|
|
30
37
|
}
|
|
31
38
|
|
|
39
|
+
export interface ProjectCreateResponse {
|
|
40
|
+
/**
|
|
41
|
+
* The project id.
|
|
42
|
+
*/
|
|
43
|
+
id: string;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* The project creator id.
|
|
47
|
+
*/
|
|
48
|
+
creatorId: string | null;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* The project creation date.
|
|
52
|
+
*/
|
|
53
|
+
dateCreated: string;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* The project last updated date.
|
|
57
|
+
*/
|
|
58
|
+
dateUpdated: string;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The number of tests in the development mode of the project.
|
|
62
|
+
*/
|
|
63
|
+
developmentGoalCount: number;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* The total number of tests in the project.
|
|
67
|
+
*/
|
|
68
|
+
goalCount: number;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* The number of inference pipelines in the project.
|
|
72
|
+
*/
|
|
73
|
+
inferencePipelineCount: number;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Links to the project.
|
|
77
|
+
*/
|
|
78
|
+
links: ProjectCreateResponse.Links;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* The number of tests in the monitoring mode of the project.
|
|
82
|
+
*/
|
|
83
|
+
monitoringGoalCount: number;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* The project name.
|
|
87
|
+
*/
|
|
88
|
+
name: string;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* The source of the project.
|
|
92
|
+
*/
|
|
93
|
+
source: 'web' | 'api' | 'null' | null;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* The task type of the project.
|
|
97
|
+
*/
|
|
98
|
+
taskType: 'llm-base' | 'tabular-classification' | 'tabular-regression' | 'text-classification';
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* The number of versions (commits) in the project.
|
|
102
|
+
*/
|
|
103
|
+
versionCount: number;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* The workspace id.
|
|
107
|
+
*/
|
|
108
|
+
workspaceId: string | null;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* The project description.
|
|
112
|
+
*/
|
|
113
|
+
description?: string | null;
|
|
114
|
+
|
|
115
|
+
gitRepo?: ProjectCreateResponse.GitRepo | null;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export namespace ProjectCreateResponse {
|
|
119
|
+
/**
|
|
120
|
+
* Links to the project.
|
|
121
|
+
*/
|
|
122
|
+
export interface Links {
|
|
123
|
+
app: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface GitRepo {
|
|
127
|
+
id: string;
|
|
128
|
+
|
|
129
|
+
dateConnected: string;
|
|
130
|
+
|
|
131
|
+
dateUpdated: string;
|
|
132
|
+
|
|
133
|
+
gitAccountId: string;
|
|
134
|
+
|
|
135
|
+
gitId: number;
|
|
136
|
+
|
|
137
|
+
name: string;
|
|
138
|
+
|
|
139
|
+
private: boolean;
|
|
140
|
+
|
|
141
|
+
projectId: string;
|
|
142
|
+
|
|
143
|
+
slug: string;
|
|
144
|
+
|
|
145
|
+
url: string;
|
|
146
|
+
|
|
147
|
+
branch?: string;
|
|
148
|
+
|
|
149
|
+
rootDir?: string;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
32
153
|
export interface ProjectListResponse {
|
|
33
154
|
_meta: ProjectListResponse._Meta;
|
|
34
155
|
|
|
@@ -109,11 +230,6 @@ export namespace ProjectListResponse {
|
|
|
109
230
|
*/
|
|
110
231
|
name: string;
|
|
111
232
|
|
|
112
|
-
/**
|
|
113
|
-
* Whether the project is a sample project or a user-created project.
|
|
114
|
-
*/
|
|
115
|
-
sample: boolean;
|
|
116
|
-
|
|
117
233
|
/**
|
|
118
234
|
* The source of the project.
|
|
119
235
|
*/
|
|
@@ -140,26 +256,6 @@ export namespace ProjectListResponse {
|
|
|
140
256
|
description?: string | null;
|
|
141
257
|
|
|
142
258
|
gitRepo?: Item.GitRepo | null;
|
|
143
|
-
|
|
144
|
-
/**
|
|
145
|
-
* The slack channel id connected to the project.
|
|
146
|
-
*/
|
|
147
|
-
slackChannelId?: string | null;
|
|
148
|
-
|
|
149
|
-
/**
|
|
150
|
-
* The slack channel connected to the project.
|
|
151
|
-
*/
|
|
152
|
-
slackChannelName?: string | null;
|
|
153
|
-
|
|
154
|
-
/**
|
|
155
|
-
* Whether slack channel notifications are enabled for the project.
|
|
156
|
-
*/
|
|
157
|
-
slackChannelNotificationsEnabled?: boolean;
|
|
158
|
-
|
|
159
|
-
/**
|
|
160
|
-
* The number of unread notifications in the project.
|
|
161
|
-
*/
|
|
162
|
-
unreadNotificationCount?: number;
|
|
163
259
|
}
|
|
164
260
|
|
|
165
261
|
export namespace Item {
|
|
@@ -198,6 +294,23 @@ export namespace ProjectListResponse {
|
|
|
198
294
|
}
|
|
199
295
|
}
|
|
200
296
|
|
|
297
|
+
export interface ProjectCreateParams {
|
|
298
|
+
/**
|
|
299
|
+
* The project name.
|
|
300
|
+
*/
|
|
301
|
+
name: string;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* The task type of the project.
|
|
305
|
+
*/
|
|
306
|
+
taskType: 'llm-base' | 'tabular-classification' | 'tabular-regression' | 'text-classification';
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* The project description.
|
|
310
|
+
*/
|
|
311
|
+
description?: string | null;
|
|
312
|
+
}
|
|
313
|
+
|
|
201
314
|
export interface ProjectListParams {
|
|
202
315
|
/**
|
|
203
316
|
* Filter list of items by project name.
|
|
@@ -221,12 +334,16 @@ export interface ProjectListParams {
|
|
|
221
334
|
}
|
|
222
335
|
|
|
223
336
|
export namespace Projects {
|
|
337
|
+
export import ProjectCreateResponse = ProjectsAPI.ProjectCreateResponse;
|
|
224
338
|
export import ProjectListResponse = ProjectsAPI.ProjectListResponse;
|
|
339
|
+
export import ProjectCreateParams = ProjectsAPI.ProjectCreateParams;
|
|
225
340
|
export import ProjectListParams = ProjectsAPI.ProjectListParams;
|
|
226
341
|
export import Commits = CommitsAPI.Commits;
|
|
227
342
|
export import CommitListResponse = CommitsAPI.CommitListResponse;
|
|
228
343
|
export import CommitListParams = CommitsAPI.CommitListParams;
|
|
229
344
|
export import InferencePipelines = InferencePipelinesAPI.InferencePipelines;
|
|
345
|
+
export import InferencePipelineCreateResponse = InferencePipelinesAPI.InferencePipelineCreateResponse;
|
|
230
346
|
export import InferencePipelineListResponse = InferencePipelinesAPI.InferencePipelineListResponse;
|
|
347
|
+
export import InferencePipelineCreateParams = InferencePipelinesAPI.InferencePipelineCreateParams;
|
|
231
348
|
export import InferencePipelineListParams = InferencePipelinesAPI.InferencePipelineListParams;
|
|
232
349
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.3.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.3.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.3.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|