@fabriktor/fx 0.0.70 → 0.0.71
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/dist/src/jobs/jobs.js +2 -2
- package/package.json +3 -3
package/dist/src/jobs/jobs.js
CHANGED
|
@@ -75,7 +75,7 @@ export class JobsFX {
|
|
|
75
75
|
async searchAccessibleLocations(opts = {}) {
|
|
76
76
|
return await runSearch({
|
|
77
77
|
...opts,
|
|
78
|
-
search: (searchOpts) => this.jobs.
|
|
78
|
+
search: (searchOpts) => this.jobs.searchMineLocations(searchOpts),
|
|
79
79
|
});
|
|
80
80
|
}
|
|
81
81
|
async replaceJobProgram(opts) {
|
|
@@ -101,7 +101,7 @@ export class JobsFX {
|
|
|
101
101
|
async searchAccessibleJobs(opts = {}) {
|
|
102
102
|
return await runSearch({
|
|
103
103
|
...opts,
|
|
104
|
-
search: (searchOpts) => this.jobs.
|
|
104
|
+
search: (searchOpts) => this.jobs.searchMineJobs(searchOpts),
|
|
105
105
|
});
|
|
106
106
|
}
|
|
107
107
|
async createJob(opts) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabriktor/fx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.71",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"typescript": "^6.0.3"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@fabriktor/client": "0.0.
|
|
21
|
-
"@fabriktor/schema": "0.0.
|
|
20
|
+
"@fabriktor/client": "0.0.64",
|
|
21
|
+
"@fabriktor/schema": "0.0.46"
|
|
22
22
|
}
|
|
23
23
|
}
|