@connect-plus-online/ogabai-integrations 0.0.62 → 0.0.64

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/index.cjs.js CHANGED
@@ -931,18 +931,22 @@ var userAccountIntegration = createStandardEntityIntegration({
931
931
  nested: {
932
932
  userAccount: userAccountQuery,
933
933
  store: storeQuery,
934
+ address: addressQuery,
934
935
  privileges: privilegeQuery,
935
- user: userQuery
936
+ user: userQuery,
937
+ userRole: userRoleQuery
936
938
  }
937
939
  });
938
940
  var userAccountListIntegration = createListIntegration({
939
941
  key: "userAccounts",
940
942
  fields: userAccountQuery,
941
943
  nested: {
942
- privileges: privilegeQuery,
943
944
  userAccount: userAccountQuery,
944
945
  store: storeQuery,
945
- user: userQuery
946
+ address: addressQuery,
947
+ privileges: privilegeQuery,
948
+ user: userQuery,
949
+ userRole: userRoleQuery
946
950
  }
947
951
  });
948
952
  var userAccountDeleteIntegration = createDeleteIntegration(ENTITY);
@@ -1023,7 +1027,7 @@ var createUserAccountService = (client) => ({
1023
1027
  "createUserAccount",
1024
1028
  {
1025
1029
  schema: buildSchema(userAccountSchema.create),
1026
- defaultRootFields: userAccountIntegration.create.responseFields,
1030
+ defaultRootFields: [...userAccountIntegration.create.responseFields, "pin"],
1027
1031
  defaultNestedFields: userAccountIntegration.create.nestedFields
1028
1032
  }
1029
1033
  ),
@@ -1219,7 +1223,7 @@ var createApplicationFeatureService = (client) => ({
1219
1223
  "createApplicationFeature",
1220
1224
  {
1221
1225
  schema: buildSchema(applicationFeatureSchema.create),
1222
- defaultRootFields: [...applicationFeatureIntegration.create.responseFields, "pin"],
1226
+ defaultRootFields: applicationFeatureIntegration.create.responseFields,
1223
1227
  defaultNestedFields: applicationFeatureIntegration.create.nestedFields
1224
1228
  }
1225
1229
  ),