@snugdesk/core 0.2.18 → 0.2.19

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.
@@ -1321,6 +1321,7 @@ const FIELDS_ENTITY_MINIMAL = `
1321
1321
  id
1322
1322
  externalId
1323
1323
  tenantId
1324
+ entityTypeId
1324
1325
  metadata
1325
1326
  name
1326
1327
  image {
@@ -1375,7 +1376,7 @@ class EntityService {
1375
1376
  const statement = /* GraphQL */ `
1376
1377
  mutation CreateEntity($input: CreateEntityInput!, $condition: ModelEntityConditionInput) {
1377
1378
  createEntity(input: $input, condition: $condition) {
1378
- ${FIELDS_ENTITY}
1379
+ ${FIELDS_ENTITY_MINIMAL}
1379
1380
  }
1380
1381
  }
1381
1382
  `;
@@ -1390,7 +1391,7 @@ class EntityService {
1390
1391
  const statement = /* GraphQL */ `
1391
1392
  mutation UpdateEntity($input: UpdateEntityInput!, $condition: ModelEntityConditionInput) {
1392
1393
  updateEntity(input: $input, condition: $condition) {
1393
- ${FIELDS_ENTITY}
1394
+ ${FIELDS_ENTITY_MINIMAL}
1394
1395
  }
1395
1396
  }
1396
1397
  `;
@@ -1449,7 +1450,7 @@ class EntityService {
1449
1450
  nextToken: $nextToken
1450
1451
  ) {
1451
1452
  items {
1452
- ${FIELDS_ENTITY_EXPANDED}
1453
+ ${FIELDS_ENTITY}
1453
1454
  }
1454
1455
  nextToken
1455
1456
  }