@connect-plus-online/ogabai-integrations 0.0.61 → 0.0.63
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 +3 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +8 -14
- package/dist/index.d.ts +8 -14
- package/dist/index.esm.js +3 -9
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1023,7 +1023,7 @@ var createUserAccountService = (client) => ({
|
|
|
1023
1023
|
"createUserAccount",
|
|
1024
1024
|
{
|
|
1025
1025
|
schema: buildSchema(userAccountSchema.create),
|
|
1026
|
-
defaultRootFields: userAccountIntegration.create.responseFields,
|
|
1026
|
+
defaultRootFields: [...userAccountIntegration.create.responseFields, "pin"],
|
|
1027
1027
|
defaultNestedFields: userAccountIntegration.create.nestedFields
|
|
1028
1028
|
}
|
|
1029
1029
|
),
|
|
@@ -1170,17 +1170,11 @@ var createUserRoleService = (client) => ({
|
|
|
1170
1170
|
var ENTITY3 = "applicationFeature";
|
|
1171
1171
|
var applicationFeatureIntegration = createStandardEntityIntegration({
|
|
1172
1172
|
key: ENTITY3,
|
|
1173
|
-
fields: applicationFeatureQuery
|
|
1174
|
-
nested: {
|
|
1175
|
-
privileges: privilegeQuery
|
|
1176
|
-
}
|
|
1173
|
+
fields: applicationFeatureQuery
|
|
1177
1174
|
});
|
|
1178
1175
|
var applicationFeatureListIntegration = createListIntegration({
|
|
1179
1176
|
key: "applicationFeatures",
|
|
1180
|
-
fields: applicationFeatureQuery
|
|
1181
|
-
nested: {
|
|
1182
|
-
privileges: privilegeQuery
|
|
1183
|
-
}
|
|
1177
|
+
fields: applicationFeatureQuery
|
|
1184
1178
|
});
|
|
1185
1179
|
var applicationFeatureDeleteIntegration = createDeleteIntegration(ENTITY3);
|
|
1186
1180
|
|