@abyss-project/main 1.0.77 → 1.0.78

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.
@@ -217,5 +217,14 @@ export declare enum AbyssApplicationEvent {
217
217
  ABYSS_MEMORIES_EVENT_MEDIA_OCR_RECEIPT = "abyss-memories.event.media.ocr-receipt",
218
218
  ABYSS_MEMORIES_EVENT_EXPENSE_CREATE = "abyss-memories.event.expense.create",
219
219
  ABYSS_MEMORIES_EVENT_EXPENSE_UPDATE = "abyss-memories.event.expense.update",
220
- ABYSS_MEMORIES_EVENT_EXPENSE_DELETE = "abyss-memories.event.expense.delete"
220
+ ABYSS_MEMORIES_EVENT_EXPENSE_DELETE = "abyss-memories.event.expense.delete",
221
+ ABYSS_TRAINING_EXERCISE_CREATE = "abyss-training.exercise.create",
222
+ ABYSS_TRAINING_EXERCISE_UPDATE = "abyss-training.exercise.update",
223
+ ABYSS_TRAINING_EXERCISE_DELETE = "abyss-training.exercise.delete",
224
+ ABYSS_TRAINING_WORKOUT_TEMPLATE_CREATE = "abyss-training.workout-template.create",
225
+ ABYSS_TRAINING_WORKOUT_TEMPLATE_UPDATE = "abyss-training.workout-template.update",
226
+ ABYSS_TRAINING_WORKOUT_TEMPLATE_DELETE = "abyss-training.workout-template.delete",
227
+ ABYSS_TRAINING_WORKOUT_SESSION_CREATE = "abyss-training.workout-session.create",
228
+ ABYSS_TRAINING_WORKOUT_SESSION_UPDATE = "abyss-training.workout-session.update",
229
+ ABYSS_TRAINING_WORKOUT_SESSION_DELETE = "abyss-training.workout-session.delete"
221
230
  }
@@ -222,4 +222,13 @@ var AbyssApplicationEvent;
222
222
  AbyssApplicationEvent["ABYSS_MEMORIES_EVENT_EXPENSE_CREATE"] = "abyss-memories.event.expense.create";
223
223
  AbyssApplicationEvent["ABYSS_MEMORIES_EVENT_EXPENSE_UPDATE"] = "abyss-memories.event.expense.update";
224
224
  AbyssApplicationEvent["ABYSS_MEMORIES_EVENT_EXPENSE_DELETE"] = "abyss-memories.event.expense.delete";
225
+ AbyssApplicationEvent["ABYSS_TRAINING_EXERCISE_CREATE"] = "abyss-training.exercise.create";
226
+ AbyssApplicationEvent["ABYSS_TRAINING_EXERCISE_UPDATE"] = "abyss-training.exercise.update";
227
+ AbyssApplicationEvent["ABYSS_TRAINING_EXERCISE_DELETE"] = "abyss-training.exercise.delete";
228
+ AbyssApplicationEvent["ABYSS_TRAINING_WORKOUT_TEMPLATE_CREATE"] = "abyss-training.workout-template.create";
229
+ AbyssApplicationEvent["ABYSS_TRAINING_WORKOUT_TEMPLATE_UPDATE"] = "abyss-training.workout-template.update";
230
+ AbyssApplicationEvent["ABYSS_TRAINING_WORKOUT_TEMPLATE_DELETE"] = "abyss-training.workout-template.delete";
231
+ AbyssApplicationEvent["ABYSS_TRAINING_WORKOUT_SESSION_CREATE"] = "abyss-training.workout-session.create";
232
+ AbyssApplicationEvent["ABYSS_TRAINING_WORKOUT_SESSION_UPDATE"] = "abyss-training.workout-session.update";
233
+ AbyssApplicationEvent["ABYSS_TRAINING_WORKOUT_SESSION_DELETE"] = "abyss-training.workout-session.delete";
225
234
  })(AbyssApplicationEvent || (exports.AbyssApplicationEvent = AbyssApplicationEvent = {}));
@@ -1,2 +1,2 @@
1
1
  import { AbyssService } from '../types';
2
- export declare const getServiceName: (service: AbyssService) => "Abyss" | "Cloud" | "Crypt" | "Storage" | "Monitor" | "Memories" | "Banking" | "Odyssey" | "Spotlight" | "Form" | undefined;
2
+ export declare const getServiceName: (service: AbyssService) => "Abyss" | "Cloud" | "Crypt" | "Storage" | "Monitor" | "Memories" | "Banking" | "Odyssey" | "Spotlight" | "Form" | "Training" | undefined;
@@ -24,6 +24,8 @@ const getServiceName = (service) => {
24
24
  return 'Spotlight';
25
25
  case types_1.AbyssService.ABYSS_FORM:
26
26
  return 'Form';
27
+ case types_1.AbyssService.ABYSS_TRAINING:
28
+ return 'Training';
27
29
  default:
28
30
  break;
29
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/main",
3
- "version": "1.0.77",
3
+ "version": "1.0.78",
4
4
  "description": "Core package to interact with Abyss-Project",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",