primary_care_admin_binder 0.1.174 → 0.1.176

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 +278 -30
  2. package/package.json +1 -1
package/dist/index.cjs.js CHANGED
@@ -8922,6 +8922,7 @@ var query_ids = {
8922
8922
  "vitalsApplicableList": "7d5ed06f-91a4-4822-b409-9b189e49f439",
8923
8923
  "vitalsApplicableEdit": "a27804ae-8f06-471a-9216-e846860e8b8a",
8924
8924
  "ageCategory": "313b0701-3354-4421-8951-488f8daec57b",
8925
+ "form_list": "fbcd603d-eaa3-471c-ae12-2572cdb49c0e",
8925
8926
  "geoMasterTypeRead": "b283129b-9841-419b-bdfc-de5105ebbad7",
8926
8927
  "geoHierarchicalRead": "ad647bcf-edcc-44ac-9ca9-67c3b277b8df",
8927
8928
  "geoCountryRead": "e2cb9d5c-3491-40da-8a5b-c8f90c39e286",
@@ -43930,6 +43931,18 @@ var queries$1 = {
43930
43931
  }
43931
43932
  };
43932
43933
  },
43934
+ formTypeMaster: function formTypeMaster() {
43935
+ return {
43936
+ appcode: dbName,
43937
+ requestid: query_ids.getCodingmasterByType,
43938
+ filter: {
43939
+ type: "FORMTYPE",
43940
+ code: "",
43941
+ status: true,
43942
+ sortField: "display"
43943
+ }
43944
+ };
43945
+ },
43933
43946
  upsert: function upsert(data) {
43934
43947
  var filter = {};
43935
43948
  var metadata = {};
@@ -43969,7 +43982,7 @@ var queries$1 = {
43969
43982
  }
43970
43983
  })];
43971
43984
  },
43972
- guideline_upsert: function guideline_upsert(data) {
43985
+ form_upsert: function form_upsert(data) {
43973
43986
  var filter = {};
43974
43987
  if (data._key) {
43975
43988
  filter = {
@@ -43984,21 +43997,35 @@ var queries$1 = {
43984
43997
  }, filter), {}, {
43985
43998
  is_metadata: false,
43986
43999
  doc: {
43987
- _id: data._id,
44000
+ _id: data._id || "",
43988
44001
  form_id: data.form_id,
43989
44002
  form_name: data.form_name,
43990
44003
  form_type_id: data.form_type_id,
44004
+ is_active: data.is_active,
44005
+ attachment: Array.isArray(data.attachment) ? data.attachment : data.attachment ? [data.attachment] : [],
43991
44006
  assessment: data.assessment
43992
44007
  }
43993
44008
  })];
43994
44009
  },
43995
- guideline_read: function guideline_read(form_id) {
44010
+ form_list: function form_list(offset, count, search) {
43996
44011
  return {
43997
44012
  appcode: dbName,
44013
+ // TODO: Update requestid after creating the FORM_LIST query in QDM Query Tool
44014
+ requestid: query_ids.form_list,
44015
+ filter: {
44016
+ search: "".concat(search !== null && search !== void 0 ? search : ""),
44017
+ offset: offset !== null && offset !== void 0 ? offset : 0,
44018
+ count: count !== null && count !== void 0 ? count : 10
44019
+ }
44020
+ };
44021
+ },
44022
+ form_read: function form_read(form_id) {
44023
+ return {
44024
+ appcode: dbName,
44025
+ requestid: query_ids.getformsDetails,
43998
44026
  filter: {
43999
44027
  _id: form_id
44000
- },
44001
- requestid: query_ids.getformsDetails
44028
+ }
44002
44029
  };
44003
44030
  }
44004
44031
  };
@@ -44292,46 +44319,53 @@ var SYMPTOM_AND_SPECIALTY_MASTERS = createAsyncThunk("symptomAndSpecialtySlice/s
44292
44319
  }
44293
44320
  }, _callee5, null, [[1, 4]]);
44294
44321
  })));
44295
- var GUIDELINE_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/guideline_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee6() {
44296
- var payload,
44297
- _ref10,
44322
+ var FORM_TYPE_MASTERS = createAsyncThunk("symptomAndSpecialtySlice/form_type_master", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee6() {
44323
+ var _ref10,
44298
44324
  rejectWithValue,
44299
- queriesjson,
44300
- data,
44325
+ data_arr,
44326
+ arry,
44301
44327
  _args6 = arguments,
44302
44328
  _t6;
44303
44329
  return _regenerator().w(function (_context6) {
44304
44330
  while (1) switch (_context6.p = _context6.n) {
44305
44331
  case 0:
44306
- payload = _args6.length > 0 && _args6[0] !== undefined ? _args6[0] : {};
44307
44332
  _ref10 = _args6.length > 1 ? _args6[1] : undefined, rejectWithValue = _ref10.rejectWithValue;
44308
44333
  _context6.p = 1;
44309
- queriesjson = queries$1.guideline_upsert(payload);
44310
44334
  _context6.n = 2;
44311
44335
  return fetchData({
44312
- body: JSON.stringify(queriesjson)
44313
- }, __uspsertUrl__);
44336
+ body: JSON.stringify(queries$1.formTypeMaster())
44337
+ }, __baseUrl__$1);
44314
44338
  case 2:
44315
- data = _context6.v;
44339
+ data_arr = _context6.v;
44340
+ arry = [];
44341
+ _context6.n = 3;
44342
+ return data_arr.map(function (val) {
44343
+ var _val$display4, _val$_id3;
44344
+ arry.push(_objectSpread2(_objectSpread2({}, val), {}, {
44345
+ code: val === null || val === void 0 ? void 0 : val.code,
44346
+ label: (_val$display4 = val === null || val === void 0 ? void 0 : val.display) !== null && _val$display4 !== void 0 ? _val$display4 : "",
44347
+ value: (_val$_id3 = val === null || val === void 0 ? void 0 : val._id) !== null && _val$_id3 !== void 0 ? _val$_id3 : ""
44348
+ }));
44349
+ });
44350
+ case 3:
44316
44351
  return _context6.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44317
- data: data
44352
+ data: arry
44318
44353
  }));
44319
- case 3:
44320
- _context6.p = 3;
44354
+ case 4:
44355
+ _context6.p = 4;
44321
44356
  _t6 = _context6.v;
44322
44357
  return _context6.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44323
44358
  message: _t6.message
44324
44359
  })));
44325
44360
  }
44326
- }, _callee6, null, [[1, 3]]);
44361
+ }, _callee6, null, [[1, 4]]);
44327
44362
  })));
44328
- var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee7() {
44363
+ var GUIDELINE_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/guideline_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee7() {
44329
44364
  var payload,
44330
44365
  _ref12,
44331
44366
  rejectWithValue,
44332
44367
  queriesjson,
44333
44368
  data,
44334
- record,
44335
44369
  _args7 = arguments,
44336
44370
  _t7;
44337
44371
  return _regenerator().w(function (_context7) {
@@ -44340,17 +44374,15 @@ var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read",
44340
44374
  payload = _args7.length > 0 && _args7[0] !== undefined ? _args7[0] : {};
44341
44375
  _ref12 = _args7.length > 1 ? _args7[1] : undefined, rejectWithValue = _ref12.rejectWithValue;
44342
44376
  _context7.p = 1;
44343
- queriesjson = queries$1.guideline_read(payload.form_id);
44377
+ queriesjson = queries$1.form_upsert(payload);
44344
44378
  _context7.n = 2;
44345
44379
  return fetchData({
44346
44380
  body: JSON.stringify(queriesjson)
44347
- }, __baseUrl__$1);
44381
+ }, __uspsertUrl__);
44348
44382
  case 2:
44349
44383
  data = _context7.v;
44350
- // data is an array; return first match
44351
- record = Array.isArray(data) ? data[0] : null;
44352
44384
  return _context7.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44353
- data: record
44385
+ data: data
44354
44386
  }));
44355
44387
  case 3:
44356
44388
  _context7.p = 3;
@@ -44361,6 +44393,170 @@ var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read",
44361
44393
  }
44362
44394
  }, _callee7, null, [[1, 3]]);
44363
44395
  })));
44396
+ var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee8() {
44397
+ var payload,
44398
+ _ref14,
44399
+ rejectWithValue,
44400
+ queriesjson,
44401
+ data,
44402
+ record,
44403
+ _args8 = arguments,
44404
+ _t8;
44405
+ return _regenerator().w(function (_context8) {
44406
+ while (1) switch (_context8.p = _context8.n) {
44407
+ case 0:
44408
+ payload = _args8.length > 0 && _args8[0] !== undefined ? _args8[0] : {};
44409
+ _ref14 = _args8.length > 1 ? _args8[1] : undefined, rejectWithValue = _ref14.rejectWithValue;
44410
+ _context8.p = 1;
44411
+ queriesjson = queries$1.form_read(payload.form_id);
44412
+ _context8.n = 2;
44413
+ return fetchData({
44414
+ body: JSON.stringify(queriesjson)
44415
+ }, __baseUrl__$1);
44416
+ case 2:
44417
+ data = _context8.v;
44418
+ // data is an array; return first match
44419
+ record = Array.isArray(data) ? data[0] : null;
44420
+ return _context8.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44421
+ data: record
44422
+ }));
44423
+ case 3:
44424
+ _context8.p = 3;
44425
+ _t8 = _context8.v;
44426
+ return _context8.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44427
+ message: _t8.message
44428
+ })));
44429
+ }
44430
+ }, _callee8, null, [[1, 3]]);
44431
+ })));
44432
+
44433
+ /* ── FORM_UPSERT ── */
44434
+ var FORM_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/form_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee9() {
44435
+ var payload,
44436
+ _ref16,
44437
+ rejectWithValue,
44438
+ queriesjson,
44439
+ data,
44440
+ _args9 = arguments,
44441
+ _t9;
44442
+ return _regenerator().w(function (_context9) {
44443
+ while (1) switch (_context9.p = _context9.n) {
44444
+ case 0:
44445
+ payload = _args9.length > 0 && _args9[0] !== undefined ? _args9[0] : {};
44446
+ _ref16 = _args9.length > 1 ? _args9[1] : undefined, rejectWithValue = _ref16.rejectWithValue;
44447
+ _context9.p = 1;
44448
+ queriesjson = queries$1.form_upsert(payload);
44449
+ _context9.n = 2;
44450
+ return fetchData({
44451
+ body: JSON.stringify(queriesjson)
44452
+ }, __uspsertUrl__);
44453
+ case 2:
44454
+ data = _context9.v;
44455
+ return _context9.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44456
+ data: data
44457
+ }));
44458
+ case 3:
44459
+ _context9.p = 3;
44460
+ _t9 = _context9.v;
44461
+ return _context9.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44462
+ message: _t9.message
44463
+ })));
44464
+ }
44465
+ }, _callee9, null, [[1, 3]]);
44466
+ })));
44467
+
44468
+ /* ── FORM_LIST ── */
44469
+ var FORM_LIST = createAsyncThunk("symptomAndSpecialtySlice/form_list", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee0() {
44470
+ var payload,
44471
+ _ref18,
44472
+ rejectWithValue,
44473
+ queriesjson,
44474
+ data,
44475
+ arry,
44476
+ _args0 = arguments,
44477
+ _t0;
44478
+ return _regenerator().w(function (_context0) {
44479
+ while (1) switch (_context0.p = _context0.n) {
44480
+ case 0:
44481
+ payload = _args0.length > 0 && _args0[0] !== undefined ? _args0[0] : {};
44482
+ _ref18 = _args0.length > 1 ? _args0[1] : undefined, rejectWithValue = _ref18.rejectWithValue;
44483
+ _context0.p = 1;
44484
+ queriesjson = queries$1.form_list(payload.offset, payload.count, payload.search);
44485
+ _context0.n = 2;
44486
+ return fetchData({
44487
+ body: JSON.stringify(queriesjson)
44488
+ }, __baseUrl__$1);
44489
+ case 2:
44490
+ data = _context0.v;
44491
+ arry = [];
44492
+ if (Array.isArray(data)) {
44493
+ data.forEach(function (val) {
44494
+ if (val.form_id || val._key) {
44495
+ var _val$TotalCount, _val$_id4, _val$_key, _val$form_id, _val$form_name, _val$form_type_id, _val$form_type_id$dis, _val$form_type_id2, _val$attachment;
44496
+ arry.push({
44497
+ TotalCount: (_val$TotalCount = val.TotalCount) !== null && _val$TotalCount !== void 0 ? _val$TotalCount : 0,
44498
+ _id: (_val$_id4 = val._id) !== null && _val$_id4 !== void 0 ? _val$_id4 : "",
44499
+ _key: (_val$_key = val._key) !== null && _val$_key !== void 0 ? _val$_key : "",
44500
+ form_id: (_val$form_id = val.form_id) !== null && _val$form_id !== void 0 ? _val$form_id : "",
44501
+ form_name: (_val$form_name = val.form_name) !== null && _val$form_name !== void 0 ? _val$form_name : "",
44502
+ form_type_id: (_val$form_type_id = val === null || val === void 0 ? void 0 : val.form_type_id) !== null && _val$form_type_id !== void 0 ? _val$form_type_id : {},
44503
+ form_type_name: (_val$form_type_id$dis = val === null || val === void 0 || (_val$form_type_id2 = val.form_type_id) === null || _val$form_type_id2 === void 0 ? void 0 : _val$form_type_id2.display) !== null && _val$form_type_id$dis !== void 0 ? _val$form_type_id$dis : "",
44504
+ is_active: val.is_active,
44505
+ assessment: val.assessment,
44506
+ attachment: (_val$attachment = val.attachment) !== null && _val$attachment !== void 0 ? _val$attachment : null
44507
+ });
44508
+ }
44509
+ });
44510
+ }
44511
+ return _context0.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44512
+ data: arry
44513
+ }));
44514
+ case 3:
44515
+ _context0.p = 3;
44516
+ _t0 = _context0.v;
44517
+ return _context0.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44518
+ message: _t0.message
44519
+ })));
44520
+ }
44521
+ }, _callee0, null, [[1, 3]]);
44522
+ })));
44523
+
44524
+ /* ── FORM_READ ── */
44525
+ var FORM_READ = createAsyncThunk("symptomAndSpecialtySlice/form_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee1() {
44526
+ var payload,
44527
+ _ref20,
44528
+ rejectWithValue,
44529
+ queriesjson,
44530
+ data,
44531
+ record,
44532
+ _args1 = arguments,
44533
+ _t1;
44534
+ return _regenerator().w(function (_context1) {
44535
+ while (1) switch (_context1.p = _context1.n) {
44536
+ case 0:
44537
+ payload = _args1.length > 0 && _args1[0] !== undefined ? _args1[0] : {};
44538
+ _ref20 = _args1.length > 1 ? _args1[1] : undefined, rejectWithValue = _ref20.rejectWithValue;
44539
+ _context1.p = 1;
44540
+ queriesjson = queries$1.form_read(payload.form_id);
44541
+ _context1.n = 2;
44542
+ return fetchData({
44543
+ body: JSON.stringify(queriesjson)
44544
+ }, __baseUrl__$1);
44545
+ case 2:
44546
+ data = _context1.v;
44547
+ record = Array.isArray(data) ? data[0] : null;
44548
+ return _context1.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44549
+ data: record
44550
+ }));
44551
+ case 3:
44552
+ _context1.p = 3;
44553
+ _t1 = _context1.v;
44554
+ return _context1.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44555
+ message: _t1.message
44556
+ })));
44557
+ }
44558
+ }, _callee1, null, [[1, 3]]);
44559
+ })));
44364
44560
  var symptomAndSpecialtySlice = createSlice({
44365
44561
  name: "symptomAndSpecialtySlice",
44366
44562
  initialState: {
@@ -44370,7 +44566,11 @@ var symptomAndSpecialtySlice = createSlice({
44370
44566
  symptom_and_specialty_upsert: _objectSpread2({}, defaultState.List),
44371
44567
  symptom_and_specialty_master: _objectSpread2({}, defaultState.List),
44372
44568
  guideline_upsert: _objectSpread2({}, defaultState.List),
44373
- guideline_read: _objectSpread2({}, defaultState.List)
44569
+ guideline_read: _objectSpread2({}, defaultState.List),
44570
+ form_upsert: _objectSpread2({}, defaultState.List),
44571
+ form_list: _objectSpread2({}, defaultState.List),
44572
+ form_read: _objectSpread2({}, defaultState.List),
44573
+ form_type_master: _objectSpread2({}, defaultState.List)
44374
44574
  },
44375
44575
  extraReducers: (_extraReducers$4 = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_extraReducers$4, SYMPTOM_AND_SPECIALTY_STATUS_CHANGE.fulfilled, function (state, action) {
44376
44576
  state.symptom_and_specialty_status_update.loading = false, state.symptom_and_specialty_status_update.error = false, state.symptom_and_specialty_status_update = action.payload;
@@ -44396,6 +44596,17 @@ var symptomAndSpecialtySlice = createSlice({
44396
44596
  state.symptom_and_specialty_master.loading = true, state.symptom_and_specialty_master.error = false, state.symptom_and_specialty_master.loading = true;
44397
44597
  }), SYMPTOM_AND_SPECIALTY_MASTERS.rejected, function (state, action) {
44398
44598
  state.symptom_and_specialty_master.loading = false, state.symptom_and_specialty_master.error = true, state.symptom_and_specialty_master = action.payload;
44599
+ }), FORM_TYPE_MASTERS.fulfilled, function (state, action) {
44600
+ state.form_type_master.loading = false;
44601
+ state.form_type_master.error = false;
44602
+ state.form_type_master = action.payload;
44603
+ }), FORM_TYPE_MASTERS.pending, function (state) {
44604
+ state.form_type_master.loading = true;
44605
+ state.form_type_master.error = false;
44606
+ }), FORM_TYPE_MASTERS.rejected, function (state, action) {
44607
+ state.form_type_master.loading = false;
44608
+ state.form_type_master.error = true;
44609
+ state.form_type_master = action.payload;
44399
44610
  }), SYMPTOM_AND_SPECIALTY_UPSERT.fulfilled, function (state, action) {
44400
44611
  state.symptom_and_specialty_upsert.loading = false;
44401
44612
  state.symptom_and_specialty_upsert.error = false;
@@ -44414,7 +44625,7 @@ var symptomAndSpecialtySlice = createSlice({
44414
44625
  }), GUIDELINE_UPSERT.pending, function (state) {
44415
44626
  state.guideline_upsert.loading = true;
44416
44627
  state.guideline_upsert.error = false;
44417
- }), GUIDELINE_UPSERT.rejected, function (state, action) {
44628
+ }), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_extraReducers$4, GUIDELINE_UPSERT.rejected, function (state, action) {
44418
44629
  state.guideline_upsert.loading = false;
44419
44630
  state.guideline_upsert.error = true;
44420
44631
  state.guideline_upsert = action.payload;
@@ -44425,10 +44636,43 @@ var symptomAndSpecialtySlice = createSlice({
44425
44636
  }), GUIDELINE_READ.pending, function (state) {
44426
44637
  state.guideline_read.loading = true;
44427
44638
  state.guideline_read.error = false;
44428
- }), _defineProperty(_extraReducers$4, GUIDELINE_READ.rejected, function (state, action) {
44639
+ }), GUIDELINE_READ.rejected, function (state, action) {
44429
44640
  state.guideline_read.loading = false;
44430
44641
  state.guideline_read.error = true;
44431
44642
  state.guideline_read = action.payload;
44643
+ }), FORM_UPSERT.fulfilled, function (state, action) {
44644
+ state.form_upsert.loading = false;
44645
+ state.form_upsert.error = false;
44646
+ state.form_upsert = action.payload;
44647
+ }), FORM_UPSERT.pending, function (state) {
44648
+ state.form_upsert.loading = true;
44649
+ state.form_upsert.error = false;
44650
+ }), FORM_UPSERT.rejected, function (state, action) {
44651
+ state.form_upsert.loading = false;
44652
+ state.form_upsert.error = true;
44653
+ state.form_upsert = action.payload;
44654
+ }), FORM_LIST.fulfilled, function (state, action) {
44655
+ state.form_list.loading = false;
44656
+ state.form_list.error = false;
44657
+ state.form_list = action.payload;
44658
+ }), FORM_LIST.pending, function (state) {
44659
+ state.form_list.loading = true;
44660
+ state.form_list.error = false;
44661
+ }), FORM_LIST.rejected, function (state, action) {
44662
+ state.form_list.loading = false;
44663
+ state.form_list.error = true;
44664
+ state.form_list = action.payload;
44665
+ }), _defineProperty(_defineProperty(_defineProperty(_extraReducers$4, FORM_READ.fulfilled, function (state, action) {
44666
+ state.form_read.loading = false;
44667
+ state.form_read.error = false;
44668
+ state.form_read = action.payload;
44669
+ }), FORM_READ.pending, function (state) {
44670
+ state.form_read.loading = true;
44671
+ state.form_read.error = false;
44672
+ }), FORM_READ.rejected, function (state, action) {
44673
+ state.form_read.loading = false;
44674
+ state.form_read.error = true;
44675
+ state.form_read = action.payload;
44432
44676
  }))
44433
44677
  });
44434
44678
  var symptomAndSpecialtyActions = {
@@ -44438,7 +44682,11 @@ var symptomAndSpecialtyActions = {
44438
44682
  SYMPTOM_AND_SPECIALTY_UPSERT: SYMPTOM_AND_SPECIALTY_UPSERT,
44439
44683
  SYMPTOM_AND_SPECIALTY_SINGLE_READ: SYMPTOM_AND_SPECIALTY_SINGLE_READ,
44440
44684
  GUIDELINE_UPSERT: GUIDELINE_UPSERT,
44441
- GUIDELINE_READ: GUIDELINE_READ
44685
+ GUIDELINE_READ: GUIDELINE_READ,
44686
+ FORM_UPSERT: FORM_UPSERT,
44687
+ FORM_LIST: FORM_LIST,
44688
+ FORM_READ: FORM_READ,
44689
+ FORM_TYPE_MASTERS: FORM_TYPE_MASTERS
44442
44690
  };
44443
44691
  var symptomAndSpecialtySlice$1 = symptomAndSpecialtySlice.reducer;
44444
44692
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primary_care_admin_binder",
3
- "version": "0.1.174",
3
+ "version": "0.1.176",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",