@nimee/shared-types 1.0.262 → 1.0.263

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.
@@ -132,4 +132,6 @@ export interface IMarketPlace {
132
132
  disableMarketplaceFee?: boolean;
133
133
  /** Optional array of supported calendar event types. Defaults to [ICalendarEventType.REGULAR, ICalendarEventType.WELLNESS, ICalendarEventType.TASK] */
134
134
  supportedCalendarEventTypes?: ICalendarEventType[];
135
+ /** Custom "Powered By" text for email footers. Defaults to "Powered By nimi.co.il" if not set */
136
+ poweredByText?: string;
135
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.262",
3
+ "version": "1.0.263",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -144,4 +144,6 @@ export interface IMarketPlace {
144
144
  disableMarketplaceFee?: boolean;
145
145
  /** Optional array of supported calendar event types. Defaults to [ICalendarEventType.REGULAR, ICalendarEventType.WELLNESS, ICalendarEventType.TASK] */
146
146
  supportedCalendarEventTypes?: ICalendarEventType[];
147
+ /** Custom "Powered By" text for email footers. Defaults to "Powered By nimi.co.il" if not set */
148
+ poweredByText?: string;
147
149
  }