@bondsports/types 0.0.7 → 0.0.8
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/build/component.d.ts +2 -0
- package/build/index.d.ts +2 -1
- package/build/index.es.js +15 -0
- package/build/index.es.js.map +1 -0
- package/build/index.js +13 -4
- package/build/index.js.map +1 -1
- package/package.json +3 -1
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { BaseEntity } from 'typeorm';
|
|
2
2
|
import { Stripe } from 'stripe';
|
|
3
3
|
import moment from 'moment';
|
|
4
|
+
import { Component } from './component';
|
|
5
|
+
export { Component };
|
|
4
6
|
export declare class BasicActivityTimesDto {
|
|
5
7
|
dayOfWeek: number;
|
|
6
8
|
close: string;
|
|
@@ -4219,4 +4221,3 @@ export declare class FindShiftsByIdsDto {
|
|
|
4219
4221
|
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
4220
4222
|
mainAdminUserId?: number;
|
|
4221
4223
|
}
|
|
4222
|
-
export {};
|