@rasadov/lumoar 2.1.5 → 2.1.6

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/dist/api.d.ts CHANGED
@@ -2436,6 +2436,19 @@ export interface HTTPValidationError {
2436
2436
  */
2437
2437
  'detail'?: Array<ValidationError>;
2438
2438
  }
2439
+ /**
2440
+ * Response for initiating a GitHub connection
2441
+ * @export
2442
+ * @interface InitiateGitHubConnectionResponse
2443
+ */
2444
+ export interface InitiateGitHubConnectionResponse {
2445
+ /**
2446
+ *
2447
+ * @type {string}
2448
+ * @memberof InitiateGitHubConnectionResponse
2449
+ */
2450
+ 'install_url': string;
2451
+ }
2439
2452
  /**
2440
2453
  *
2441
2454
  * @export
@@ -3859,6 +3872,17 @@ export interface SubscriptionResponse {
3859
3872
  */
3860
3873
  'subscribed_till': string;
3861
3874
  }
3875
+ /**
3876
+ * Subscription tiers ordered from lowest to highest.
3877
+ * @export
3878
+ * @enum {string}
3879
+ */
3880
+ export declare const SubscriptionTier: {
3881
+ readonly Trial: "trial";
3882
+ readonly Starter: "starter";
3883
+ readonly Professional: "professional";
3884
+ };
3885
+ export type SubscriptionTier = typeof SubscriptionTier[keyof typeof SubscriptionTier];
3862
3886
  /**
3863
3887
  *
3864
3888
  * @export
package/dist/api.js CHANGED
@@ -159,6 +159,16 @@ export const RiskLikelihood = {
159
159
  Likely: 'likely',
160
160
  VeryLikely: 'very_likely'
161
161
  };
162
+ /**
163
+ * Subscription tiers ordered from lowest to highest.
164
+ * @export
165
+ * @enum {string}
166
+ */
167
+ export const SubscriptionTier = {
168
+ Trial: 'trial',
169
+ Starter: 'starter',
170
+ Professional: 'professional'
171
+ };
162
172
  /**
163
173
  *
164
174
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rasadov/lumoar",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "description": "Lumoar API SDK for public use (API key authentication)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",