@photonhealth/elements 0.20.4 → 0.20.5

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.
@@ -1,8 +1,3 @@
1
1
  export declare const OrderCard: (props: {
2
2
  store: Record<string, any>;
3
- actions: Record<string, (...args: any) => any>;
4
- enableLocalPickup: boolean;
5
- enableSendToPatient: boolean;
6
- enableDeliveryPharmacies: boolean;
7
- mailOrderIds?: string;
8
3
  }) => import("solid-js").JSX.Element;
@@ -17,16 +17,11 @@ export type PrescribeProps = {
17
17
  hideTemplates: boolean;
18
18
  hidePatientCard: boolean;
19
19
  enableOrder: boolean;
20
- enableLocalPickup: boolean;
21
- enableSendToPatient: boolean;
22
20
  enableMedHistory: boolean;
23
21
  enableMedHistoryLinks: boolean;
24
22
  enableMedHistoryRefillButton: boolean;
25
23
  enableCombineAndDuplicate: boolean;
26
- enableDeliveryPharmacies: boolean;
27
24
  optionalPatientAddress: boolean;
28
- mailOrderIds?: string;
29
- pharmacyId?: string;
30
25
  address?: Address;
31
26
  weight?: number;
32
27
  weightUnit?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@photonhealth/elements",
3
- "version": "0.20.4",
3
+ "version": "0.20.5",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -10,11 +10,6 @@
10
10
  "build:prod": "npx nx run elements:build",
11
11
  "build:watch": "rimraf dist && vite build --watch",
12
12
  "prepublishOnly": "npm run build:prod",
13
- "upload-s3": "npm run upload-s3:package-json && npm run upload-s3:dist && npm run upload-s3:package-json-latest && npm run upload-s3:dist-latest",
14
- "upload-s3:package-json": "s3-deploy './package.json' --cwd './' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX",
15
- "upload-s3:dist": "s3-deploy './dist/**' --cwd './dist/' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX/dist",
16
- "upload-s3:package-json-latest": "s3-deploy './package.json' --cwd './' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX_LATEST",
17
- "upload-s3:dist-latest": "s3-deploy './dist/**' --cwd './dist/' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX_LATEST/dist",
18
13
  "lint": "eslint src",
19
14
  "lint:only-errors": "eslint src --quiet",
20
15
  "lint:fix": "eslint src --fix"