@connect-plus-online/ogabai-integrations 0.0.61 → 0.0.62
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
|
@@ -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
|
|
|
@@ -1225,7 +1219,7 @@ var createApplicationFeatureService = (client) => ({
|
|
|
1225
1219
|
"createApplicationFeature",
|
|
1226
1220
|
{
|
|
1227
1221
|
schema: buildSchema(applicationFeatureSchema.create),
|
|
1228
|
-
defaultRootFields: applicationFeatureIntegration.create.responseFields,
|
|
1222
|
+
defaultRootFields: [...applicationFeatureIntegration.create.responseFields, "pin"],
|
|
1229
1223
|
defaultNestedFields: applicationFeatureIntegration.create.nestedFields
|
|
1230
1224
|
}
|
|
1231
1225
|
),
|