primary_care_admin_binder 0.1.175 → 0.1.177

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 +132 -64
  2. package/package.json +1 -1
package/dist/index.cjs.js CHANGED
@@ -9280,6 +9280,7 @@ var generateReadJSON$5 = function generateReadJSON(data) {
9280
9280
  names: nameslist !== null && nameslist !== void 0 ? nameslist : [{}],
9281
9281
  details: {
9282
9282
  practitoner_id: data === null || data === void 0 ? void 0 : data.practitionerid,
9283
+ grcid: data !== null && data !== void 0 && data.grcid ? String(data === null || data === void 0 ? void 0 : data.grcid) : "",
9283
9284
  gender: {
9284
9285
  label: data === null || data === void 0 || (_data$gender = data.gender) === null || _data$gender === void 0 ? void 0 : _data$gender.display,
9285
9286
  _id: data === null || data === void 0 || (_data$gender2 = data.gender) === null || _data$gender2 === void 0 ? void 0 : _data$gender2._id
@@ -43931,6 +43932,18 @@ var queries$1 = {
43931
43932
  }
43932
43933
  };
43933
43934
  },
43935
+ formTypeMaster: function formTypeMaster() {
43936
+ return {
43937
+ appcode: dbName,
43938
+ requestid: query_ids.getCodingmasterByType,
43939
+ filter: {
43940
+ type: "FORMTYPE",
43941
+ code: "",
43942
+ status: true,
43943
+ sortField: "display"
43944
+ }
43945
+ };
43946
+ },
43934
43947
  upsert: function upsert(data) {
43935
43948
  var filter = {};
43936
43949
  var metadata = {};
@@ -43990,7 +44003,7 @@ var queries$1 = {
43990
44003
  form_name: data.form_name,
43991
44004
  form_type_id: data.form_type_id,
43992
44005
  is_active: data.is_active,
43993
- attachment: data.attachment || null,
44006
+ attachment: Array.isArray(data.attachment) ? data.attachment : data.attachment ? [data.attachment] : [],
43994
44007
  assessment: data.assessment
43995
44008
  }
43996
44009
  })];
@@ -44307,46 +44320,53 @@ var SYMPTOM_AND_SPECIALTY_MASTERS = createAsyncThunk("symptomAndSpecialtySlice/s
44307
44320
  }
44308
44321
  }, _callee5, null, [[1, 4]]);
44309
44322
  })));
44310
- var GUIDELINE_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/guideline_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee6() {
44311
- var payload,
44312
- _ref10,
44323
+ var FORM_TYPE_MASTERS = createAsyncThunk("symptomAndSpecialtySlice/form_type_master", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee6() {
44324
+ var _ref10,
44313
44325
  rejectWithValue,
44314
- queriesjson,
44315
- data,
44326
+ data_arr,
44327
+ arry,
44316
44328
  _args6 = arguments,
44317
44329
  _t6;
44318
44330
  return _regenerator().w(function (_context6) {
44319
44331
  while (1) switch (_context6.p = _context6.n) {
44320
44332
  case 0:
44321
- payload = _args6.length > 0 && _args6[0] !== undefined ? _args6[0] : {};
44322
44333
  _ref10 = _args6.length > 1 ? _args6[1] : undefined, rejectWithValue = _ref10.rejectWithValue;
44323
44334
  _context6.p = 1;
44324
- queriesjson = queries$1.form_upsert(payload);
44325
44335
  _context6.n = 2;
44326
44336
  return fetchData({
44327
- body: JSON.stringify(queriesjson)
44328
- }, __uspsertUrl__);
44337
+ body: JSON.stringify(queries$1.formTypeMaster())
44338
+ }, __baseUrl__$1);
44329
44339
  case 2:
44330
- data = _context6.v;
44340
+ data_arr = _context6.v;
44341
+ arry = [];
44342
+ _context6.n = 3;
44343
+ return data_arr.map(function (val) {
44344
+ var _val$display4, _val$_id3;
44345
+ arry.push(_objectSpread2(_objectSpread2({}, val), {}, {
44346
+ code: val === null || val === void 0 ? void 0 : val.code,
44347
+ label: (_val$display4 = val === null || val === void 0 ? void 0 : val.display) !== null && _val$display4 !== void 0 ? _val$display4 : "",
44348
+ value: (_val$_id3 = val === null || val === void 0 ? void 0 : val._id) !== null && _val$_id3 !== void 0 ? _val$_id3 : ""
44349
+ }));
44350
+ });
44351
+ case 3:
44331
44352
  return _context6.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44332
- data: data
44353
+ data: arry
44333
44354
  }));
44334
- case 3:
44335
- _context6.p = 3;
44355
+ case 4:
44356
+ _context6.p = 4;
44336
44357
  _t6 = _context6.v;
44337
44358
  return _context6.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44338
44359
  message: _t6.message
44339
44360
  })));
44340
44361
  }
44341
- }, _callee6, null, [[1, 3]]);
44362
+ }, _callee6, null, [[1, 4]]);
44342
44363
  })));
44343
- var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee7() {
44364
+ var GUIDELINE_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/guideline_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee7() {
44344
44365
  var payload,
44345
44366
  _ref12,
44346
44367
  rejectWithValue,
44347
44368
  queriesjson,
44348
44369
  data,
44349
- record,
44350
44370
  _args7 = arguments,
44351
44371
  _t7;
44352
44372
  return _regenerator().w(function (_context7) {
@@ -44355,17 +44375,15 @@ var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read",
44355
44375
  payload = _args7.length > 0 && _args7[0] !== undefined ? _args7[0] : {};
44356
44376
  _ref12 = _args7.length > 1 ? _args7[1] : undefined, rejectWithValue = _ref12.rejectWithValue;
44357
44377
  _context7.p = 1;
44358
- queriesjson = queries$1.form_read(payload.form_id);
44378
+ queriesjson = queries$1.form_upsert(payload);
44359
44379
  _context7.n = 2;
44360
44380
  return fetchData({
44361
44381
  body: JSON.stringify(queriesjson)
44362
- }, __baseUrl__$1);
44382
+ }, __uspsertUrl__);
44363
44383
  case 2:
44364
44384
  data = _context7.v;
44365
- // data is an array; return first match
44366
- record = Array.isArray(data) ? data[0] : null;
44367
44385
  return _context7.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44368
- data: record
44386
+ data: data
44369
44387
  }));
44370
44388
  case 3:
44371
44389
  _context7.p = 3;
@@ -44376,14 +44394,13 @@ var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read",
44376
44394
  }
44377
44395
  }, _callee7, null, [[1, 3]]);
44378
44396
  })));
44379
-
44380
- /* ── FORM_UPSERT ── */
44381
- var FORM_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/form_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee8() {
44397
+ var GUIDELINE_READ = createAsyncThunk("symptomAndSpecialtySlice/guideline_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee8() {
44382
44398
  var payload,
44383
44399
  _ref14,
44384
44400
  rejectWithValue,
44385
44401
  queriesjson,
44386
44402
  data,
44403
+ record,
44387
44404
  _args8 = arguments,
44388
44405
  _t8;
44389
44406
  return _regenerator().w(function (_context8) {
@@ -44392,15 +44409,17 @@ var FORM_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/form_upsert", /*#__
44392
44409
  payload = _args8.length > 0 && _args8[0] !== undefined ? _args8[0] : {};
44393
44410
  _ref14 = _args8.length > 1 ? _args8[1] : undefined, rejectWithValue = _ref14.rejectWithValue;
44394
44411
  _context8.p = 1;
44395
- queriesjson = queries$1.form_upsert(payload);
44412
+ queriesjson = queries$1.form_read(payload.form_id);
44396
44413
  _context8.n = 2;
44397
44414
  return fetchData({
44398
44415
  body: JSON.stringify(queriesjson)
44399
- }, __uspsertUrl__);
44416
+ }, __baseUrl__$1);
44400
44417
  case 2:
44401
44418
  data = _context8.v;
44419
+ // data is an array; return first match
44420
+ record = Array.isArray(data) ? data[0] : null;
44402
44421
  return _context8.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44403
- data: data
44422
+ data: record
44404
44423
  }));
44405
44424
  case 3:
44406
44425
  _context8.p = 3;
@@ -44412,14 +44431,13 @@ var FORM_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/form_upsert", /*#__
44412
44431
  }, _callee8, null, [[1, 3]]);
44413
44432
  })));
44414
44433
 
44415
- /* ── FORM_LIST ── */
44416
- var FORM_LIST = createAsyncThunk("symptomAndSpecialtySlice/form_list", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee9() {
44434
+ /* ── FORM_UPSERT ── */
44435
+ var FORM_UPSERT = createAsyncThunk("symptomAndSpecialtySlice/form_upsert", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee9() {
44417
44436
  var payload,
44418
44437
  _ref16,
44419
44438
  rejectWithValue,
44420
44439
  queriesjson,
44421
44440
  data,
44422
- arry,
44423
44441
  _args9 = arguments,
44424
44442
  _t9;
44425
44443
  return _regenerator().w(function (_context9) {
@@ -44428,34 +44446,15 @@ var FORM_LIST = createAsyncThunk("symptomAndSpecialtySlice/form_list", /*#__PURE
44428
44446
  payload = _args9.length > 0 && _args9[0] !== undefined ? _args9[0] : {};
44429
44447
  _ref16 = _args9.length > 1 ? _args9[1] : undefined, rejectWithValue = _ref16.rejectWithValue;
44430
44448
  _context9.p = 1;
44431
- queriesjson = queries$1.form_list(payload.offset, payload.count, payload.search);
44449
+ queriesjson = queries$1.form_upsert(payload);
44432
44450
  _context9.n = 2;
44433
44451
  return fetchData({
44434
44452
  body: JSON.stringify(queriesjson)
44435
- }, __baseUrl__$1);
44453
+ }, __uspsertUrl__);
44436
44454
  case 2:
44437
44455
  data = _context9.v;
44438
- arry = [];
44439
- if (Array.isArray(data)) {
44440
- data.forEach(function (val) {
44441
- if (val.form_id || val._key) {
44442
- var _val$TotalCount, _val$_id3, _val$_key, _val$form_id, _val$form_name, _val$form_type_id, _val$attachment;
44443
- arry.push({
44444
- TotalCount: (_val$TotalCount = val.TotalCount) !== null && _val$TotalCount !== void 0 ? _val$TotalCount : 0,
44445
- _id: (_val$_id3 = val._id) !== null && _val$_id3 !== void 0 ? _val$_id3 : "",
44446
- _key: (_val$_key = val._key) !== null && _val$_key !== void 0 ? _val$_key : "",
44447
- form_id: (_val$form_id = val.form_id) !== null && _val$form_id !== void 0 ? _val$form_id : "",
44448
- form_name: (_val$form_name = val.form_name) !== null && _val$form_name !== void 0 ? _val$form_name : "",
44449
- form_type_id: (_val$form_type_id = val.form_type_id) !== null && _val$form_type_id !== void 0 ? _val$form_type_id : "",
44450
- is_active: val.is_active,
44451
- assessment: val.assessment,
44452
- attachment: (_val$attachment = val.attachment) !== null && _val$attachment !== void 0 ? _val$attachment : null
44453
- });
44454
- }
44455
- });
44456
- }
44457
44456
  return _context9.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44458
- data: arry
44457
+ data: data
44459
44458
  }));
44460
44459
  case 3:
44461
44460
  _context9.p = 3;
@@ -44467,14 +44466,14 @@ var FORM_LIST = createAsyncThunk("symptomAndSpecialtySlice/form_list", /*#__PURE
44467
44466
  }, _callee9, null, [[1, 3]]);
44468
44467
  })));
44469
44468
 
44470
- /* ── FORM_READ ── */
44471
- var FORM_READ = createAsyncThunk("symptomAndSpecialtySlice/form_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee0() {
44469
+ /* ── FORM_LIST ── */
44470
+ var FORM_LIST = createAsyncThunk("symptomAndSpecialtySlice/form_list", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee0() {
44472
44471
  var payload,
44473
44472
  _ref18,
44474
44473
  rejectWithValue,
44475
44474
  queriesjson,
44476
44475
  data,
44477
- record,
44476
+ arry,
44478
44477
  _args0 = arguments,
44479
44478
  _t0;
44480
44479
  return _regenerator().w(function (_context0) {
@@ -44483,16 +44482,35 @@ var FORM_READ = createAsyncThunk("symptomAndSpecialtySlice/form_read", /*#__PURE
44483
44482
  payload = _args0.length > 0 && _args0[0] !== undefined ? _args0[0] : {};
44484
44483
  _ref18 = _args0.length > 1 ? _args0[1] : undefined, rejectWithValue = _ref18.rejectWithValue;
44485
44484
  _context0.p = 1;
44486
- queriesjson = queries$1.form_read(payload.form_id);
44485
+ queriesjson = queries$1.form_list(payload.offset, payload.count, payload.search);
44487
44486
  _context0.n = 2;
44488
44487
  return fetchData({
44489
44488
  body: JSON.stringify(queriesjson)
44490
44489
  }, __baseUrl__$1);
44491
44490
  case 2:
44492
44491
  data = _context0.v;
44493
- record = Array.isArray(data) ? data[0] : null;
44492
+ arry = [];
44493
+ if (Array.isArray(data)) {
44494
+ data.forEach(function (val) {
44495
+ if (val.form_id || val._key) {
44496
+ 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;
44497
+ arry.push({
44498
+ TotalCount: (_val$TotalCount = val.TotalCount) !== null && _val$TotalCount !== void 0 ? _val$TotalCount : 0,
44499
+ _id: (_val$_id4 = val._id) !== null && _val$_id4 !== void 0 ? _val$_id4 : "",
44500
+ _key: (_val$_key = val._key) !== null && _val$_key !== void 0 ? _val$_key : "",
44501
+ form_id: (_val$form_id = val.form_id) !== null && _val$form_id !== void 0 ? _val$form_id : "",
44502
+ form_name: (_val$form_name = val.form_name) !== null && _val$form_name !== void 0 ? _val$form_name : "",
44503
+ 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 : {},
44504
+ 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 : "",
44505
+ is_active: val.is_active,
44506
+ assessment: val.assessment,
44507
+ attachment: (_val$attachment = val.attachment) !== null && _val$attachment !== void 0 ? _val$attachment : null
44508
+ });
44509
+ }
44510
+ });
44511
+ }
44494
44512
  return _context0.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44495
- data: record
44513
+ data: arry
44496
44514
  }));
44497
44515
  case 3:
44498
44516
  _context0.p = 3;
@@ -44503,6 +44521,43 @@ var FORM_READ = createAsyncThunk("symptomAndSpecialtySlice/form_read", /*#__PURE
44503
44521
  }
44504
44522
  }, _callee0, null, [[1, 3]]);
44505
44523
  })));
44524
+
44525
+ /* ── FORM_READ ── */
44526
+ var FORM_READ = createAsyncThunk("symptomAndSpecialtySlice/form_read", /*#__PURE__*/_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee1() {
44527
+ var payload,
44528
+ _ref20,
44529
+ rejectWithValue,
44530
+ queriesjson,
44531
+ data,
44532
+ record,
44533
+ _args1 = arguments,
44534
+ _t1;
44535
+ return _regenerator().w(function (_context1) {
44536
+ while (1) switch (_context1.p = _context1.n) {
44537
+ case 0:
44538
+ payload = _args1.length > 0 && _args1[0] !== undefined ? _args1[0] : {};
44539
+ _ref20 = _args1.length > 1 ? _args1[1] : undefined, rejectWithValue = _ref20.rejectWithValue;
44540
+ _context1.p = 1;
44541
+ queriesjson = queries$1.form_read(payload.form_id);
44542
+ _context1.n = 2;
44543
+ return fetchData({
44544
+ body: JSON.stringify(queriesjson)
44545
+ }, __baseUrl__$1);
44546
+ case 2:
44547
+ data = _context1.v;
44548
+ record = Array.isArray(data) ? data[0] : null;
44549
+ return _context1.a(2, _objectSpread2(_objectSpread2({}, defaultState.List), {}, {
44550
+ data: record
44551
+ }));
44552
+ case 3:
44553
+ _context1.p = 3;
44554
+ _t1 = _context1.v;
44555
+ return _context1.a(2, rejectWithValue(_objectSpread2(_objectSpread2({}, defaultReject), {}, {
44556
+ message: _t1.message
44557
+ })));
44558
+ }
44559
+ }, _callee1, null, [[1, 3]]);
44560
+ })));
44506
44561
  var symptomAndSpecialtySlice = createSlice({
44507
44562
  name: "symptomAndSpecialtySlice",
44508
44563
  initialState: {
@@ -44515,7 +44570,8 @@ var symptomAndSpecialtySlice = createSlice({
44515
44570
  guideline_read: _objectSpread2({}, defaultState.List),
44516
44571
  form_upsert: _objectSpread2({}, defaultState.List),
44517
44572
  form_list: _objectSpread2({}, defaultState.List),
44518
- form_read: _objectSpread2({}, defaultState.List)
44573
+ form_read: _objectSpread2({}, defaultState.List),
44574
+ form_type_master: _objectSpread2({}, defaultState.List)
44519
44575
  },
44520
44576
  extraReducers: (_extraReducers$4 = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_extraReducers$4, SYMPTOM_AND_SPECIALTY_STATUS_CHANGE.fulfilled, function (state, action) {
44521
44577
  state.symptom_and_specialty_status_update.loading = false, state.symptom_and_specialty_status_update.error = false, state.symptom_and_specialty_status_update = action.payload;
@@ -44541,6 +44597,17 @@ var symptomAndSpecialtySlice = createSlice({
44541
44597
  state.symptom_and_specialty_master.loading = true, state.symptom_and_specialty_master.error = false, state.symptom_and_specialty_master.loading = true;
44542
44598
  }), SYMPTOM_AND_SPECIALTY_MASTERS.rejected, function (state, action) {
44543
44599
  state.symptom_and_specialty_master.loading = false, state.symptom_and_specialty_master.error = true, state.symptom_and_specialty_master = action.payload;
44600
+ }), FORM_TYPE_MASTERS.fulfilled, function (state, action) {
44601
+ state.form_type_master.loading = false;
44602
+ state.form_type_master.error = false;
44603
+ state.form_type_master = action.payload;
44604
+ }), FORM_TYPE_MASTERS.pending, function (state) {
44605
+ state.form_type_master.loading = true;
44606
+ state.form_type_master.error = false;
44607
+ }), FORM_TYPE_MASTERS.rejected, function (state, action) {
44608
+ state.form_type_master.loading = false;
44609
+ state.form_type_master.error = true;
44610
+ state.form_type_master = action.payload;
44544
44611
  }), SYMPTOM_AND_SPECIALTY_UPSERT.fulfilled, function (state, action) {
44545
44612
  state.symptom_and_specialty_upsert.loading = false;
44546
44613
  state.symptom_and_specialty_upsert.error = false;
@@ -44559,7 +44626,7 @@ var symptomAndSpecialtySlice = createSlice({
44559
44626
  }), GUIDELINE_UPSERT.pending, function (state) {
44560
44627
  state.guideline_upsert.loading = true;
44561
44628
  state.guideline_upsert.error = false;
44562
- }), GUIDELINE_UPSERT.rejected, function (state, action) {
44629
+ }), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_extraReducers$4, GUIDELINE_UPSERT.rejected, function (state, action) {
44563
44630
  state.guideline_upsert.loading = false;
44564
44631
  state.guideline_upsert.error = true;
44565
44632
  state.guideline_upsert = action.payload;
@@ -44570,7 +44637,7 @@ var symptomAndSpecialtySlice = createSlice({
44570
44637
  }), GUIDELINE_READ.pending, function (state) {
44571
44638
  state.guideline_read.loading = true;
44572
44639
  state.guideline_read.error = false;
44573
- }), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_extraReducers$4, GUIDELINE_READ.rejected, function (state, action) {
44640
+ }), GUIDELINE_READ.rejected, function (state, action) {
44574
44641
  state.guideline_read.loading = false;
44575
44642
  state.guideline_read.error = true;
44576
44643
  state.guideline_read = action.payload;
@@ -44596,7 +44663,7 @@ var symptomAndSpecialtySlice = createSlice({
44596
44663
  state.form_list.loading = false;
44597
44664
  state.form_list.error = true;
44598
44665
  state.form_list = action.payload;
44599
- }), FORM_READ.fulfilled, function (state, action) {
44666
+ }), _defineProperty(_defineProperty(_defineProperty(_extraReducers$4, FORM_READ.fulfilled, function (state, action) {
44600
44667
  state.form_read.loading = false;
44601
44668
  state.form_read.error = false;
44602
44669
  state.form_read = action.payload;
@@ -44619,7 +44686,8 @@ var symptomAndSpecialtyActions = {
44619
44686
  GUIDELINE_READ: GUIDELINE_READ,
44620
44687
  FORM_UPSERT: FORM_UPSERT,
44621
44688
  FORM_LIST: FORM_LIST,
44622
- FORM_READ: FORM_READ
44689
+ FORM_READ: FORM_READ,
44690
+ FORM_TYPE_MASTERS: FORM_TYPE_MASTERS
44623
44691
  };
44624
44692
  var symptomAndSpecialtySlice$1 = symptomAndSpecialtySlice.reducer;
44625
44693
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primary_care_admin_binder",
3
- "version": "0.1.175",
3
+ "version": "0.1.177",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",