quidproquo-core 0.0.78 → 0.0.79

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.
@@ -21,7 +21,6 @@ export declare const getOwnedSecrets: (configs: QPQConfig) => SecretQPQConfigSet
21
21
  export declare const getUserDirectories: (configs: QPQConfig) => UserDirectoryQPQConfigSetting[];
22
22
  export declare const getOwnedParameters: (configs: QPQConfig) => ParameterQPQConfigSetting[];
23
23
  export declare const getSharedSecrets: (configs: QPQConfig) => SecretQPQConfigSetting[];
24
- export declare const getBuildPath: (configs: QPQConfig) => string;
25
24
  export declare const getUniqueKeyForSetting: (setting: QPQConfigSetting) => string;
26
25
  export declare const getScheduleEntryFullPath: (qpqConfig: QPQConfig, scheduleConfig: ScheduleQPQConfigSetting) => string;
27
26
  export declare const getStorageDriveUploadFullPath: (qpqConfig: QPQConfig, storageDriveConfig: StorageDriveQPQConfigSetting) => string;
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.getQueueQueueProcessors = exports.getQueueEntryFullPath = exports.getStorageDriveUploadFullPath = exports.getScheduleEntryFullPath = exports.getUniqueKeyForSetting = exports.getBuildPath = exports.getSharedSecrets = exports.getOwnedParameters = exports.getUserDirectories = exports.getOwnedSecrets = exports.getAllSrcEntries = exports.getQueueSrcEntries = exports.getScheduleEvents = exports.getActionProcessorSources = exports.getAllEventBusConfigs = exports.getStorageDriveNames = exports.getQueues = exports.getStorageDrives = exports.getApplicationModuleDeployRegion = exports.getApplicationModuleEnvironment = exports.getConfigRoot = exports.getApplicationModuleFeature = exports.getApplicationModuleName = exports.getApplicationName = exports.getApplicationModuleSetting = exports.getConfigSetting = exports.getConfigSettings = void 0;
26
+ exports.getQueueQueueProcessors = exports.getQueueEntryFullPath = exports.getStorageDriveUploadFullPath = exports.getScheduleEntryFullPath = exports.getUniqueKeyForSetting = exports.getSharedSecrets = exports.getOwnedParameters = exports.getUserDirectories = exports.getOwnedSecrets = exports.getAllSrcEntries = exports.getQueueSrcEntries = exports.getScheduleEvents = exports.getActionProcessorSources = exports.getAllEventBusConfigs = exports.getStorageDriveNames = exports.getQueues = exports.getStorageDrives = exports.getApplicationModuleDeployRegion = exports.getApplicationModuleEnvironment = exports.getConfigRoot = exports.getApplicationModuleFeature = exports.getApplicationModuleName = exports.getApplicationName = exports.getApplicationModuleSetting = exports.getConfigSetting = exports.getConfigSettings = void 0;
27
27
  const path = __importStar(require("path"));
28
28
  const QPQConfig_1 = require("./config/QPQConfig");
29
29
  const getConfigSettings = (configs, configSettingType) => {
@@ -124,15 +124,6 @@ const getSharedSecrets = (configs) => {
124
124
  return secrets.filter((s) => !s.owned);
125
125
  };
126
126
  exports.getSharedSecrets = getSharedSecrets;
127
- const getBuildPath = (configs) => {
128
- var _a;
129
- const buildPath = (_a = (0, exports.getConfigSetting)(configs, QPQConfig_1.QPQCoreConfigSettingType.buildPath)) === null || _a === void 0 ? void 0 : _a.buildPath;
130
- if (!buildPath) {
131
- throw new Error('please use defineBuildPath in your QPQ config');
132
- }
133
- return buildPath;
134
- };
135
- exports.getBuildPath = getBuildPath;
136
127
  const getUniqueKeyForSetting = (setting) => {
137
128
  const type = setting.configSettingType.split('/').pop();
138
129
  const key = setting.uniqueKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-core",
3
- "version": "0.0.78",
3
+ "version": "0.0.79",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.js",