primary_care_admin_binder 0.1.195 → 0.1.197

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.
Files changed (2) hide show
  1. package/dist/index.cjs.js +14 -13
  2. package/package.json +1 -1
package/dist/index.cjs.js CHANGED
@@ -17404,9 +17404,10 @@ var queries$m = {
17404
17404
  OrderCategory: function OrderCategory() {
17405
17405
  return {
17406
17406
  appcode: dbName,
17407
+ requestid: "05b16081-f0f7-4f6a-a8bb-731192b6799e",
17407
17408
  filter: {
17408
- activestatus: true,
17409
- status: true
17409
+ status: true,
17410
+ sortField: "shortdesc"
17410
17411
  }
17411
17412
  };
17412
17413
  },
@@ -17575,7 +17576,7 @@ var ORDERCATEGORYMASTER = createAsyncThunk("ordertypeSlice/orderCategoryMaster",
17575
17576
  case 2:
17576
17577
  data = _context2.v;
17577
17578
  arry = [];
17578
- data.result.map(function (val) {
17579
+ (data || []).map(function (val) {
17579
17580
  if (val.activestatus && val.status) {
17580
17581
  arry.push({
17581
17582
  label: val.shortdesc,
@@ -18089,12 +18090,10 @@ var queries$k = {
18089
18090
  appcode: dbName,
18090
18091
  filter: {
18091
18092
  search: search || "",
18092
- activestatus: true
18093
+ page: page,
18094
+ perPage: perPage
18093
18095
  },
18094
- limit: {
18095
- offset: page,
18096
- count: perPage
18097
- }
18096
+ requestid: "b3994064-6ef8-4eb4-b309-b9953839cbe1"
18098
18097
  };
18099
18098
  },
18100
18099
  orderCategoryInsert: function orderCategoryInsert(data) {
@@ -18268,7 +18267,7 @@ var GET_ALL_ORDER_CATEGORY = createAsyncThunk("orderMaster/getAllOrderCategory",
18268
18267
  }, __readQdmQueries__);
18269
18268
  case 2:
18270
18269
  data = _context.v;
18271
- list = (data.result || []).map(function (v) {
18270
+ list = (data || []).map(function (v) {
18272
18271
  return {
18273
18272
  total_count: v === null || v === void 0 ? void 0 : v.TotalCount,
18274
18273
  category: v === null || v === void 0 ? void 0 : v.ordercategory,
@@ -44849,10 +44848,12 @@ var TARGET_REVENUE_DELETE = createAsyncThunk("targetRevenueSlice/targetRevenueDe
44849
44848
  body = {
44850
44849
  appcode: dbName,
44851
44850
  collection: "targetrevenue",
44852
- filter: "targetrevenue._id == '".concat(payload._id, "'"),
44853
- metadataId: metaDataId$1,
44854
- metadata_dbname: metaDatadbName$1,
44855
- is_metadata: true
44851
+ filter: {
44852
+ field: "_id",
44853
+ operator: "eq",
44854
+ value: payload._id
44855
+ },
44856
+ metadata_appcode: metaDatadbName$1
44856
44857
  };
44857
44858
  _context4.n = 2;
44858
44859
  return fetchData({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primary_care_admin_binder",
3
- "version": "0.1.195",
3
+ "version": "0.1.197",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",