@frontegg/rest-api 2.10.66 → 2.10.67

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.10.67](https://github.com/frontegg/typescript-rest-api/compare/v2.10.66...v2.10.67) (2022-05-16)
6
+
5
7
  ### [2.10.66](https://github.com/frontegg/typescript-rest-api/compare/v2.10.65...v2.10.66) (2022-05-02)
6
8
 
7
9
  ### [2.10.65](https://github.com/frontegg/typescript-rest-api/compare/v2.10.64...v2.10.65) (2022-05-01)
@@ -6,6 +6,7 @@ export interface IPlanResponse {
6
6
  name: string;
7
7
  description: string;
8
8
  price: IPlanResponsePriceResponse;
9
+ slug: string;
9
10
  }
10
11
  export interface IPlanResponsePriceResponse {
11
12
  id: string;
@@ -31,18 +32,6 @@ export interface ISubscriptionPlanResponse {
31
32
  export interface ISubscriptionCancellationResponse {
32
33
  policy: ISubscriptionCancellationPolicy;
33
34
  }
34
- export interface ISubscriptionItemResponse {
35
- id: string;
36
- externalId: string;
37
- planId: string;
38
- price: ISubscriptionItemPriceResponse;
39
- }
40
- export interface ISubscriptionItemPriceResponse {
41
- id: string;
42
- externalId: string;
43
- currency: string;
44
- amount: number;
45
- }
46
35
  export interface ISubscriptionInvoiceResponse {
47
36
  id: string;
48
37
  externalId: string;
@@ -6,6 +6,7 @@ export interface IPlanResponse {
6
6
  name: string;
7
7
  description: string;
8
8
  price: IPlanResponsePriceResponse;
9
+ slug: string;
9
10
  }
10
11
  export interface IPlanResponsePriceResponse {
11
12
  id: string;
@@ -31,18 +32,6 @@ export interface ISubscriptionPlanResponse {
31
32
  export interface ISubscriptionCancellationResponse {
32
33
  policy: ISubscriptionCancellationPolicy;
33
34
  }
34
- export interface ISubscriptionItemResponse {
35
- id: string;
36
- externalId: string;
37
- planId: string;
38
- price: ISubscriptionItemPriceResponse;
39
- }
40
- export interface ISubscriptionItemPriceResponse {
41
- id: string;
42
- externalId: string;
43
- currency: string;
44
- amount: number;
45
- }
46
35
  export interface ISubscriptionInvoiceResponse {
47
36
  id: string;
48
37
  externalId: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontegg/rest-api",
3
3
  "libName": "FronteggRestApi",
4
- "version": "2.10.66",
4
+ "version": "2.10.67",
5
5
  "author": "Frontegg LTD",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -13,6 +13,7 @@ export interface IPlanResponse {
13
13
  name: string;
14
14
  description: string;
15
15
  price: IPlanResponsePriceResponse;
16
+ slug: string;
16
17
  }
17
18
 
18
19
  export interface IPlanResponsePriceResponse {
@@ -43,20 +44,6 @@ export interface ISubscriptionCancellationResponse {
43
44
  policy: ISubscriptionCancellationPolicy;
44
45
  }
45
46
 
46
- export interface ISubscriptionItemResponse {
47
- id: string;
48
- externalId: string;
49
- planId: string;
50
- price: ISubscriptionItemPriceResponse;
51
- }
52
-
53
- export interface ISubscriptionItemPriceResponse {
54
- id: string;
55
- externalId: string;
56
- currency: string;
57
- amount: number;
58
- }
59
-
60
47
  export interface ISubscriptionInvoiceResponse {
61
48
  id: string;
62
49
  externalId: string;