rez_core 5.0.313 → 5.0.314

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "5.0.313",
3
+ "version": "5.0.314",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -175,14 +175,14 @@ export class IntegrationService {
175
175
  async getActiveConfigs(
176
176
  levelId: number,
177
177
  levelType: string,
178
- app_code: string,
178
+ appcode: string,
179
179
  mode?: 'EMAIL' | 'SMS' | 'WA' | 'TELEPHONE',
180
180
  ): Promise<IntegrationConfig[]> {
181
181
  const queryBuilder = this.configRepository
182
182
  .createQueryBuilder('config')
183
183
  .where('config.level_id = :levelId', { levelId })
184
184
  .andWhere('config.level_type = :levelType', { levelType })
185
- .andWhere('config.app_code = :app_code', { app_code })
185
+ .andWhere('config.app_code = :appcode', { appcode })
186
186
  .andWhere('config.status = 1');
187
187
 
188
188
  if (mode) {