@jealous-robot-dev/shared-types-responses 1.32.5 → 1.32.8

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.
@@ -1,2 +1,3 @@
1
1
  export * from './common';
2
2
  export * from './cancellation';
3
+ export * from './personal-refund-offer';
@@ -12,3 +12,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./common"), exports);
14
14
  __exportStar(require("./cancellation"), exports);
15
+ __exportStar(require("./personal-refund-offer"), exports);
@@ -0,0 +1,14 @@
1
+ export interface PersonalRefundOfferData {
2
+ active_till: string;
3
+ currency: string;
4
+ amount: number;
5
+ }
6
+ export interface PersonalRefundOfferPhrases {
7
+ page_title: string;
8
+ title: string;
9
+ active_till: string;
10
+ description: string;
11
+ to_refund: string;
12
+ accept: string;
13
+ cancel: string;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
+ export * from './unavailable-in-region';
1
2
  export * from './profile-basic-data';
2
3
  export * from './invite';
3
4
  export * from './collections';
@@ -10,6 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./unavailable-in-region"), exports);
13
14
  __exportStar(require("./profile-basic-data"), exports);
14
15
  __exportStar(require("./invite"), exports);
15
16
  __exportStar(require("./collections"), exports);
@@ -0,0 +1,6 @@
1
+ export interface UnavailableInRegion {
2
+ title: string;
3
+ go_back: string;
4
+ page_title: string;
5
+ description: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.32.5",
3
+ "version": "1.32.8",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",