piral-cli 0.15.8-beta.5219 → 0.15.8-beta.5229

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.
@@ -26,7 +26,7 @@ export interface PiletInjectorConfig extends KrasInjectorConfig {
26
26
  api: string;
27
27
  app: string;
28
28
  feed?: string;
29
- headers: Record<string, string>;
29
+ headers?: Record<string, string>;
30
30
  }
31
31
  interface PiletMetadata {
32
32
  name?: string;
@@ -7,7 +7,7 @@ export interface PiralInjectorConfig extends KrasInjectorConfig {
7
7
  bundler: Bundler;
8
8
  publicUrl: string;
9
9
  feed?: string;
10
- headers: Record<string, string>;
10
+ headers?: Record<string, string>;
11
11
  }
12
12
  export default class PiralInjector implements KrasInjector {
13
13
  config: PiralInjectorConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-cli",
3
- "version": "0.15.8-beta.5219",
3
+ "version": "0.15.8-beta.5229",
4
4
  "description": "The standard CLI for creating and building a Piral instance or a Pilet.",
5
5
  "keywords": [
6
6
  "portal",
@@ -80,5 +80,5 @@
80
80
  "typescript": "^4.0.0",
81
81
  "yargs": "^15.0.0"
82
82
  },
83
- "gitHead": "11e6b6a60fe6082d6a01ec67713f3acf85e04b57"
83
+ "gitHead": "8149d15bf5ea66fb4af6f04b6da9242ebd4db1db"
84
84
  }
@@ -33,7 +33,7 @@ export interface PiletInjectorConfig extends KrasInjectorConfig {
33
33
  api: string;
34
34
  app: string;
35
35
  feed?: string;
36
- headers: Record<string, string>;
36
+ headers?: Record<string, string>;
37
37
  }
38
38
 
39
39
  interface PiletMetadata {
@@ -14,7 +14,7 @@ export interface PiralInjectorConfig extends KrasInjectorConfig {
14
14
  bundler: Bundler;
15
15
  publicUrl: string;
16
16
  feed?: string;
17
- headers: Record<string, string>;
17
+ headers?: Record<string, string>;
18
18
  }
19
19
 
20
20
  export default class PiralInjector implements KrasInjector {