Skip to content

Commit 73badbc

Browse files
committed
update path import
1 parent 8522659 commit 73badbc

File tree

6 files changed

+73
-5
lines changed

6 files changed

+73
-5
lines changed
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"$id": "/tools/crs_converter/convert_file",
3+
"type": "object",
4+
"method": "POST",
5+
"properties": {
6+
"input_geode_object": {
7+
"type": "string"
8+
},
9+
"filename": {
10+
"type": "string"
11+
},
12+
"input_crs": {
13+
"type": "object",
14+
"properties": {
15+
"name": {
16+
"type": "string"
17+
},
18+
"code": {
19+
"type": "string"
20+
},
21+
"authority": {
22+
"type": "string"
23+
}
24+
},
25+
"required": ["name", "code", "authority"],
26+
"additionalProperties": false
27+
},
28+
"output_crs": {
29+
"type": "object",
30+
"properties": {
31+
"name": {
32+
"type": "string"
33+
},
34+
"code": {
35+
"type": "string"
36+
},
37+
"authority": {
38+
"type": "string"
39+
}
40+
},
41+
"required": ["name", "code", "authority"],
42+
"additionalProperties": false
43+
},
44+
"output_geode_object": {
45+
"type": "string"
46+
},
47+
"output_extension": {
48+
"type": "string"
49+
},
50+
"responseType": {
51+
"type": "string"
52+
},
53+
"responseEncoding": {
54+
"type": "string"
55+
}
56+
},
57+
"required": [
58+
"input_geode_object",
59+
"filename",
60+
"input_crs",
61+
"output_crs",
62+
"output_geode_object",
63+
"output_extension",
64+
"responseType",
65+
"responseEncoding"
66+
],
67+
"additionalProperties": false
68+
}

components/CrsSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</template>
2525

2626
<script setup>
27-
import schema from "@/assets/schemas/CrsSelector.json"
27+
import schema from "@geode/opengeodeweb-front/assets/schemas/CrsSelector.json"
2828
const emit = defineEmits([
2929
"update_values",
3030
"increment_step",

components/ExtensionSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</template>
4040

4141
<script setup>
42-
import schema from "@/assets/schemas/ExtensionSelector.json"
42+
import schema from "@geode/opengeodeweb-front/assets/schemas/ExtensionSelector.json"
4343
const emit = defineEmits([
4444
"update_values",
4545
"increment_step",

components/FileSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</template>
99

1010
<script setup>
11-
import schema from "@/assets/schemas/FileSelector.json"
11+
import schema from "@geode/opengeodeweb-front/assets/schemas/FileSelector.json"
1212
const emit = defineEmits([
1313
"update_values",
1414
"increment_current_step",

components/MissingFilesSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</template>
4444

4545
<script setup>
46-
import schema from "@/assets/schemas/MissingFilesSelector.json"
46+
import schema from "@geode/opengeodeweb-front/assets/schemas/MissingFilesSelector.json"
4747
const emit = defineEmits([
4848
"update_values",
4949
"increment_step",

components/ObjectSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<script setup>
3434
import geode_objects from "@/assets/geode_objects"
35-
import schema from "@/assets/schemas/ObjectSelector.json"
35+
import schema from "@geode/opengeodeweb-front/assets/schemas/ObjectSelector.json"
3636
3737
const emit = defineEmits(["update_values", "increment_step"])
3838

0 commit comments

Comments
 (0)