@palmetto/dispatch-sdk 0.2.0 → 0.2.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.
@@ -292,6 +292,8 @@ export interface components {
292
292
  systemSize: number;
293
293
  /** @example 12000 */
294
294
  firstYearProduction: number;
295
+ /** @example 5 */
296
+ batterySize?: number;
295
297
  };
296
298
  pricing: {
297
299
  /** @example 3.2 */
@@ -424,6 +426,8 @@ export interface components {
424
426
  systemSize: number;
425
427
  /** @example 12000 */
426
428
  firstYearProduction: number;
429
+ /** @example 5 */
430
+ batterySize?: number;
427
431
  };
428
432
  pricing: {
429
433
  /** @example 3.2 */
@@ -492,6 +496,8 @@ export interface components {
492
496
  systemSize: number;
493
497
  /** @example 12000 */
494
498
  firstYearProduction: number;
499
+ /** @example 5 */
500
+ batterySize?: number;
495
501
  };
496
502
  pricing?: {
497
503
  /** @example 3.2 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@palmetto/dispatch-sdk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "main": "./dist/main.js",
5
5
  "files": [
6
6
  "dist/**/*",
@@ -37,5 +37,9 @@
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "https://github.com/palmetto/dispatch"
40
44
  }
41
- }
45
+ }