grapp-common-se 0.6.62 → 0.6.65

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.
@@ -8,4 +8,17 @@ export interface Client {
8
8
  maximumLicenses: number;
9
9
  notificationsEmail: string;
10
10
  termsOfServiceHD: InnerFile;
11
+ REQUEST_URL: string;
12
+ REQUEST_HEADER: boolean;
13
+ refreshTokenRequired: boolean;
14
+ methods: RequestMethods;
15
+ }
16
+ export interface RequestMethods {
17
+ REQUESTS_API: string;
18
+ APPOINMENT_API: string;
19
+ UPDATE_APPOINMENT_API: string;
20
+ CANCEL_ORDER_API: string;
21
+ TOKEN_API: string;
22
+ TYPE_AUTHENTICATION?: string;
23
+ PASSWORD_TOKEN_API?: string;
11
24
  }
@@ -103,7 +103,9 @@ export declare enum SuccessCallTypeStatus {
103
103
  }
104
104
  export declare enum TransferStatus {
105
105
  TRANSFERRED = 0,
106
- CANCELED = 1
106
+ CANCELED = 1,
107
+ OFFERED = 2,
108
+ RETURN = 3
107
109
  }
108
110
  export declare enum OrderStatus {
109
111
  APROOVED = 0,
@@ -16,6 +16,8 @@ var TransferStatus;
16
16
  (function (TransferStatus) {
17
17
  TransferStatus[TransferStatus["TRANSFERRED"] = 0] = "TRANSFERRED";
18
18
  TransferStatus[TransferStatus["CANCELED"] = 1] = "CANCELED";
19
+ TransferStatus[TransferStatus["OFFERED"] = 2] = "OFFERED";
20
+ TransferStatus[TransferStatus["RETURN"] = 3] = "RETURN";
19
21
  })(TransferStatus = exports.TransferStatus || (exports.TransferStatus = {}));
20
22
  var OrderStatus;
21
23
  (function (OrderStatus) {
@@ -59,6 +59,8 @@ export interface RequestReduced extends Resource {
59
59
  imported?: boolean;
60
60
  origin?: string;
61
61
  nroatencion?: string;
62
+ files?: any[];
63
+ comments?: any[];
62
64
  }
63
65
  interface PrescribingDoctor {
64
66
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.62",
3
+ "version": "0.6.65",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {