Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
frontend
Commits
ed740e71
Commit
ed740e71
authored
5 months ago
by
Miłosz Grocholewski
Browse files
Options
Downloads
Plain Diff
Merge branch 'feat/
MIN-23
-fetching-model-elements' into 'development'
Resolve "glyph type" Closes
MIN-23
See merge request
!257
parents
cbc6edbe
32d84004
No related branches found
No related tags found
1 merge request
!257
Resolve "glyph type"
Pipeline
#96402
passed with warnings
5 months ago
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/models/modelElementSchema.ts
+2
-1
2 additions, 1 deletion
src/models/modelElementSchema.ts
with
2 additions
and
1 deletion
src/models/modelElementSchema.ts
+
2
−
1
View file @
ed740e71
...
@@ -2,11 +2,12 @@ import { z } from 'zod';
...
@@ -2,11 +2,12 @@ import { z } from 'zod';
import
{
colorSchema
}
from
'
@/models/colorSchema
'
;
import
{
colorSchema
}
from
'
@/models/colorSchema
'
;
import
{
referenceSchema
}
from
'
@/models/referenceSchema
'
;
import
{
referenceSchema
}
from
'
@/models/referenceSchema
'
;
import
{
submodelSchema
}
from
'
@/models/submodelSchema
'
;
import
{
submodelSchema
}
from
'
@/models/submodelSchema
'
;
import
{
glyphSchema
}
from
'
@/models/glyphSchema
'
;
export
const
modelElementSchema
=
z
.
object
({
export
const
modelElementSchema
=
z
.
object
({
id
:
z
.
number
(),
id
:
z
.
number
(),
model
:
z
.
number
().
nullable
(),
model
:
z
.
number
().
nullable
(),
glyph
:
z
.
number
()
.
nullable
(),
glyph
:
glyphSchema
.
nullable
(),
submodel
:
submodelSchema
.
nullable
(),
submodel
:
submodelSchema
.
nullable
(),
x
:
z
.
number
(),
x
:
z
.
number
(),
y
:
z
.
number
(),
y
:
z
.
number
(),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment