@xapp/stentor-service 1.40.340 → 1.41.1

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.
@@ -18,7 +18,7 @@ export declare abstract class AbstractResourceService extends FetchService {
18
18
  readonly protocol: string;
19
19
  readonly hostname: string;
20
20
  readonly port: number;
21
- readonly headers?: Headers | string[][];
21
+ readonly headers?: HeadersInit;
22
22
  readonly resources: Resource<any>[];
23
23
  constructor(props?: ResourceService);
24
24
  /**
@@ -51,7 +51,7 @@ export interface ResourceService extends Service {
51
51
  protocol?: string;
52
52
  hostname: string;
53
53
  port?: number;
54
- headers?: Headers | string[][];
54
+ headers?: HeadersInit;
55
55
  resources?: Resource[];
56
56
  }
57
57
  /**
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.40.340",
7
+ "version": "1.41.1",
8
8
  "description": "Base service to be extended for making API calls",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -28,16 +28,16 @@
28
28
  "mocha": "10.1.0",
29
29
  "sinon": "14.0.1",
30
30
  "sinon-chai": "3.7.0",
31
- "stentor-constants": "1.56.117",
32
- "stentor-context": "1.56.117",
33
- "stentor-models": "1.56.117",
34
- "stentor-request": "1.56.117",
35
- "stentor-utils": "1.56.117",
31
+ "stentor-constants": "1.56.121",
32
+ "stentor-context": "1.56.122",
33
+ "stentor-models": "1.56.121",
34
+ "stentor-request": "1.56.122",
35
+ "stentor-utils": "1.56.122",
36
36
  "ts-node": "10.9.1",
37
- "typescript": "4.7.4"
37
+ "typescript": "4.8.4"
38
38
  },
39
39
  "dependencies": {
40
- "@xapp/stentor-app": "1.40.340",
40
+ "@xapp/stentor-app": "1.41.1",
41
41
  "abort-controller": "3.0.0",
42
42
  "isomorphic-fetch": "3.0.0",
43
43
  "jsonpath": "1.1.1",
@@ -61,5 +61,5 @@
61
61
  "clean": "rm -rf ./lib/*",
62
62
  "ftest": "mocha --recursive -r ts-node/register \"./src/**/*.ftest.ts\""
63
63
  },
64
- "gitHead": "ba25693f3bded59f62da1e418e67eb8d0566f170"
64
+ "gitHead": "c43c4c7d162fc17527f9ceb1032dec973b97009f"
65
65
  }