skyeye-svc-common-utils 1.0.113 → 1.0.115

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.
@@ -2,5 +2,6 @@ export declare class GrpcSubscriptionModel {
2
2
  organisationGuid: string;
3
3
  subscriptionPermissions: string[];
4
4
  subscriptionFeatures: string[];
5
+ guid: string;
5
6
  constructor();
6
7
  }
@@ -6,6 +6,7 @@ class GrpcSubscriptionModel {
6
6
  this.organisationGuid = null;
7
7
  this.subscriptionPermissions = new Array();
8
8
  this.subscriptionFeatures = new Array();
9
+ this.guid = null;
9
10
  }
10
11
  }
11
12
  exports.GrpcSubscriptionModel = GrpcSubscriptionModel;
@@ -1 +1 @@
1
- {"version":3,"file":"grpcSubscriptionModel.js","sourceRoot":"","sources":["../../../src/models/subscription/grpcSubscriptionModel.ts"],"names":[],"mappings":";;;AAAA,MAAa,qBAAqB;IAI9B;QACI,IAAI,CAAC,gBAAgB,GAAC,IAAI,CAAC;QAC3B,IAAI,CAAC,uBAAuB,GAAG,IAAI,KAAK,EAAU,CAAC;QACnD,IAAI,CAAC,oBAAoB,GAAG,IAAI,KAAK,EAAU,CAAC;IACpD,CAAC;CACJ;AATD,sDASC"}
1
+ {"version":3,"file":"grpcSubscriptionModel.js","sourceRoot":"","sources":["../../../src/models/subscription/grpcSubscriptionModel.ts"],"names":[],"mappings":";;;AAAA,MAAa,qBAAqB;IAK9B;QACI,IAAI,CAAC,gBAAgB,GAAC,IAAI,CAAC;QAC3B,IAAI,CAAC,uBAAuB,GAAG,IAAI,KAAK,EAAU,CAAC;QACnD,IAAI,CAAC,oBAAoB,GAAG,IAAI,KAAK,EAAU,CAAC;QAChD,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACrB,CAAC;CACJ;AAXD,sDAWC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skyeye-svc-common-utils",
3
- "version": "1.0.113",
3
+ "version": "1.0.115",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -58,7 +58,7 @@
58
58
  "node-fetch": "^2.6.0",
59
59
  "nyc": "^15.1.0",
60
60
  "rotating-file-stream": "^1.4.6",
61
- "skyeye-common-const": "1.0.72",
61
+ "skyeye-common-const": "1.0.73",
62
62
  "swagger-jsdoc": "^3.5.0",
63
63
  "swagger-ui-express": "^4.1.3",
64
64
  "ts-node": "^9.0.0",
@@ -68,7 +68,8 @@
68
68
  "typescript": "^4.8.4",
69
69
  "uuid": "^3.3.3",
70
70
  "winston": "^3.2.1",
71
- "winston-daily-rotate-file": "^4.2.1"
71
+ "winston-daily-rotate-file": "^4.2.1",
72
+ "follow-redirects": "^1.15.6"
72
73
  },
73
74
  "devDependencies": {
74
75
  "@types/dateformat": "^3.0.1",
@@ -2,9 +2,11 @@ export class GrpcSubscriptionModel {
2
2
  organisationGuid : string ;
3
3
  subscriptionPermissions : string[] ;
4
4
  subscriptionFeatures : string[] ;
5
+ guid: string;
5
6
  constructor(){
6
7
  this.organisationGuid=null;
7
8
  this.subscriptionPermissions = new Array<string>();
8
9
  this.subscriptionFeatures = new Array<string>();
10
+ this.guid = null;
9
11
  }
10
12
  }