feat: remove the layer filed for instance query (#81)

This commit is contained in:
Fine0830 2022-05-10 17:03:47 +08:00 committed by GitHub
parent 024a0fe44c
commit a0b57d0a5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 32 deletions

View File

@ -41,7 +41,6 @@ export const Instances = {
label: name label: name
language language
instanceUUID instanceUUID
layer
attributes { attributes {
name name
value value
@ -83,7 +82,6 @@ export const getInstance = {
label: name label: name
language language
instanceUUID instanceUUID
layer
attributes { attributes {
name name
value value

View File

@ -26,7 +26,6 @@ export type Service = {
export type Instance = { export type Instance = {
value: string; value: string;
label: string; label: string;
layer?: string;
language?: string; language?: string;
instanceUUID?: string; instanceUUID?: string;
attributes?: { name: string; value: string }[]; attributes?: { name: string; value: string }[];