@connect-plus-online/ogabai-integrations 0.0.93 → 0.0.95

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.esm.js CHANGED
@@ -132,7 +132,7 @@ var createTransport = (opts) => {
132
132
  try {
133
133
  parsed = JSON.parse(text);
134
134
  } catch (e) {
135
- resCtx.error = new Error("Invalid JSON response");
135
+ resCtx.error = new Error("Invalid JSON responseL " + text);
136
136
  resCtx.status = r.status;
137
137
  return;
138
138
  }
@@ -3610,7 +3610,7 @@ var expenseCategorySchema = {
3610
3610
  },
3611
3611
  list: {
3612
3612
  operation: "query",
3613
- name: "getExpenseCategorys",
3613
+ name: "getExpenseCategories",
3614
3614
  variables: "($limit: Int!, $skip: Int!, $search: String, $expenseCategory: ExpenseCategoryInput, $expenseCategoryIds: [String])",
3615
3615
  field: "(limit: $limit, skip: $skip, search: $search, expenseCategory: $expenseCategory, expenseCategoryIds: $expenseCategoryIds)"
3616
3616
  },
@@ -3674,7 +3674,7 @@ var createExpenseCategoryService = (client) => ({
3674
3674
  ),
3675
3675
  getExpenseCategorys: createOperationExecutor(
3676
3676
  client,
3677
- "getExpenseCategorys",
3677
+ "getExpenseCategories",
3678
3678
  {
3679
3679
  schema: buildSchema(expenseCategorySchema.list),
3680
3680
  defaultRootFields: [...expenseCategoryListIntegration.responseFields],