oro-sdk-apis 1.29.0 → 1.30.0

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.29.0",
2
+ "version": "1.30.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -299,15 +299,19 @@ export type PracticeConfigPractitionerConsultList = PracticeConfig<
299
299
  PracticeConfigKind.PractitionerConsultList,
300
300
  {
301
301
  /**
302
- * Should hide the locality column
302
+ * Hides the locality column
303
303
  */
304
304
  hideLocality?: boolean
305
305
  /**
306
- * Should hide the fax column
306
+ * Hides the plan name column
307
+ */
308
+ hidePlan?: boolean
309
+ /**
310
+ * Hides the fax column
307
311
  */
308
312
  hideFax?: boolean
309
313
  /**
310
- * Should hide the expires at column
314
+ * Hides the expires at column
311
315
  */
312
316
  hideExpiresAt?: boolean
313
317
  }