@aldb2b/common 1.0.920 → 1.0.921

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 +1 @@
1
- {"version":3,"file":"record-type.enum.js","sourceRoot":"","sources":["../../src/types/record-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAsBX;AAtBD,WAAY,UAAU;IACpB,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,gDAAkC,CAAA;IAClC,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,yBAAW,CAAA;IACX,qCAAuB,CAAA;IACvB,wCAA0B,CAAA;IAC1B,oCAAsB,CAAA;IACtB,+BAAiB,CAAA;IACjB,mCAAqB,CAAA;IACrB,8CAAgC,CAAA;IAChC,2BAAa,CAAA;IACb,2CAA6B,CAAA;IAC7B,uCAAyB,CAAA;IACzB,6BAAe,CAAA;IACf,iCAAmB,CAAA;IACnB,sCAAwB,CAAA;IACxB,yBAAW,CAAA;IACX,4CAA8B,CAAA;AAChC,CAAC,EAtBW,UAAU,0BAAV,UAAU,QAsBrB"}
1
+ {"version":3,"file":"record-type.enum.js","sourceRoot":"","sources":["../../src/enums/record-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAsBX;AAtBD,WAAY,UAAU;IACpB,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,gDAAkC,CAAA;IAClC,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,yBAAW,CAAA;IACX,qCAAuB,CAAA;IACvB,wCAA0B,CAAA;IAC1B,oCAAsB,CAAA;IACtB,+BAAiB,CAAA;IACjB,mCAAqB,CAAA;IACrB,8CAAgC,CAAA;IAChC,2BAAa,CAAA;IACb,2CAA6B,CAAA;IAC7B,uCAAyB,CAAA;IACzB,6BAAe,CAAA;IACf,iCAAmB,CAAA;IACnB,sCAAwB,CAAA;IACxB,yBAAW,CAAA;IACX,4CAA8B,CAAA;AAChC,CAAC,EAtBW,UAAU,0BAAV,UAAU,QAsBrB"}
@@ -1,4 +1,4 @@
1
- import { RecordType } from '../types/record-type.enum';
1
+ import { RecordType } from '../enums/record-type.enum';
2
2
  import { Subjects } from './subjects';
3
3
  import { PropertyType } from './enums/property-type.enum';
4
4
  export declare namespace CreateProperty {
@@ -1,5 +1,5 @@
1
1
  import { Subjects } from './subjects';
2
- import { RecordType } from '../types/record-type.enum';
2
+ import { RecordType } from '../enums/record-type.enum';
3
3
  import { UserLanguage } from '../types/user-language.enum';
4
4
  import { NotificationType } from '../types/notification-type.enum';
5
5
  import { NotificationEvent } from '../types/notification-event.enum';
package/build/index.d.ts CHANGED
@@ -185,7 +185,7 @@ export * from './types/group-visibility.interface';
185
185
  export * from './types/notification-event.enum';
186
186
  export * from './types/calendar-source-type.enum';
187
187
  export * from './types/notification-type.enum';
188
- export * from './types/record-type.enum';
188
+ export * from './enums/record-type.enum';
189
189
  export * from './types/subscription-model.enum';
190
190
  export * from './types/user-language.enum';
191
191
  export * from './types/feature-type.enum';
package/build/index.js CHANGED
@@ -201,7 +201,7 @@ __exportStar(require("./types/group-visibility.interface"), exports);
201
201
  __exportStar(require("./types/notification-event.enum"), exports);
202
202
  __exportStar(require("./types/calendar-source-type.enum"), exports);
203
203
  __exportStar(require("./types/notification-type.enum"), exports);
204
- __exportStar(require("./types/record-type.enum"), exports);
204
+ __exportStar(require("./enums/record-type.enum"), exports);
205
205
  __exportStar(require("./types/subscription-model.enum"), exports);
206
206
  __exportStar(require("./types/user-language.enum"), exports);
207
207
  __exportStar(require("./types/feature-type.enum"), exports);
@@ -0,0 +1,6 @@
1
+ export interface BaseToken {
2
+ userId: string;
3
+ companyId: string;
4
+ contactId: string;
5
+ eventId: string;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=base-token.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-token.interface.js","sourceRoot":"","sources":["../../src/tokens/base-token.interface.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ import { BaseToken } from './base-token.interface';
2
+ export interface UserAvailabilityToken extends BaseToken {
3
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=user-availability-token.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-availability-token.interface.js","sourceRoot":"","sources":["../../src/tokens/user-availability-token.interface.ts"],"names":[],"mappings":""}