@ccci/micro-server 1.1.9 → 1.1.12

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/dist/index.d.ts CHANGED
@@ -30,5 +30,5 @@ export { BaseKafka } from './utils/BaseKafka';
30
30
  export { ServeKafka } from './utils/ServeKafka';
31
31
  export type { MessageHandler, MessageType, PublishType } from './types/BrokerType';
32
32
  export { default as BaseAuthenticatorModel } from './utils/BaseAuthenticatorModel';
33
- export { BaseRedis, BaseRedisCore, BaseRedisCrud, BaseRedisIndexing } from '@/utils/BaseRedis';
33
+ export { BaseRedis, BaseRedisCore, BaseRedisCrud, BaseRedisIndexing } from './utils/BaseRedis/index';
34
34
  //# sourceMappingURL=index.d.ts.map
@@ -1,7 +1,7 @@
1
1
  import { Application } from 'express';
2
2
  import Mailer from './Mailer';
3
3
  import BaseSocketHandler from './BaseSocketHandler';
4
- import { ApplicationOptionType } from '@/types/ApplicationOptionType';
4
+ import { ApplicationOptionType } from '../types/ApplicationOptionType';
5
5
  /**
6
6
  * Application Sever class
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { DataTypes, Model } from 'sequelize';
2
2
  import type { ModelAttributes } from "sequelize";
3
3
  import type IBaseModel from './IBaseModel';
4
- import { ModelOptions } from '@/types/BaseModelTypes';
4
+ import { ModelOptions } from '../types/BaseModelTypes';
5
5
  export default class BaseModel extends Model implements IBaseModel {
6
6
  id?: number;
7
7
  /**
@@ -1,4 +1,4 @@
1
- import type { NotificationType, NotificationOptions } from '@/types/NotificationTypes';
1
+ import type { NotificationType, NotificationOptions } from '../types/NotificationTypes';
2
2
  import admin from 'firebase-admin';
3
3
  import { BatchResponse } from 'firebase-admin/lib/messaging/messaging-api';
4
4
  export default class PushNotifier {
@@ -2,7 +2,7 @@
2
2
  import { UploadedFile } from 'express-fileupload';
3
3
  import * as minio from 'minio';
4
4
  import { ApplicationOptionType } from '..';
5
- import { UploadedFileType, InitUpload, UploadChunk, CompleteUploadResult, UploadTypes, UploadPart } from '@/types/UploadedFileType';
5
+ import { UploadedFileType, InitUpload, UploadChunk, CompleteUploadResult, UploadTypes, UploadPart } from '../types/UploadedFileType';
6
6
  import { RemoveOptions } from 'minio';
7
7
  export default class Uploader {
8
8
  static client: minio.Client;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
- import { ApplicationOptionType } from "@/types/ApplicationOptionType";
2
+ import { ApplicationOptionType } from "../types/ApplicationOptionType";
3
3
  import { S3, DeleteObjectRequest } from "@aws-sdk/client-s3";
4
- import { AttachmentMetadataType } from "@/types/AttachmentMetadataTypes";
4
+ import { AttachmentMetadataType } from "../types/AttachmentMetadataTypes";
5
5
  export default class UploaderS3 {
6
6
  static client: S3;
7
7
  static uploadSessions: Record<string, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ccci/micro-server",
3
- "version": "1.1.9",
3
+ "version": "1.1.12",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",