@pulsecharterconnect/types 0.2.122 → 0.2.123

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.
@@ -210,4 +210,5 @@ export declare class Organization implements IOrganization {
210
210
  isSystemAdmin(): boolean;
211
211
  isGroundTransportationEnabled(): boolean;
212
212
  dhrProposalModalEnabled(): boolean;
213
+ isScheduleEnabled(): boolean;
213
214
  }
@@ -237,5 +237,8 @@ class Organization {
237
237
  dhrProposalModalEnabled() {
238
238
  return this.featureFlags.some((flag) => flag.name === FeatureFlag_1.FeatureFlagName.DHR_PROPOSAL_MODAL && flag.enabled);
239
239
  }
240
+ isScheduleEnabled() {
241
+ return this.featureFlags.some((flag) => flag.name === FeatureFlag_1.FeatureFlagName.SCHEDULE && flag.enabled);
242
+ }
240
243
  }
241
244
  exports.Organization = Organization;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.122",
3
+ "version": "0.2.123",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",