@randock/nameshift-api-client 0.0.462 → 0.0.463

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.462
1
+ ## @randock/nameshift-api-client@0.0.463
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @randock/nameshift-api-client@0.0.462 --save
39
+ npm install @randock/nameshift-api-client@0.0.463 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
- e453c45be2904b56ff930cd6fb9033472b3c9b31e6662891dbdc642d7d456d9a48962a7ba847074505a91a5cac3cbee4
47
+ ef515a5a3d74a65a729e66504944c596d93e46f19efad6cc063991b5f3115d471b1faa39aab12de1b47ce2436943e989
@@ -10,13 +10,15 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * Share of the leads the buyer started that ever reached an accepted deal: accepts_nothing (below 25%), normal (25-75%), accepts_anything (75% and up), or unknown when the buyer has a single lead and no accepted deal yet.
13
+ * Share of the leads the buyer started that ever reached an accepted deal: accepts_nothing (0%), accepts_very_little (below 25%), normal (25-75%), accepts_almost_anything (75-100%), accepts_anything (100%), or unknown when the buyer has a single lead and no accepted deal yet.
14
14
  * @export
15
15
  */
16
16
  export declare const BuyerAcceptanceEnum: {
17
17
  readonly UNKNOWN: "unknown";
18
18
  readonly ACCEPTS_NOTHING: "accepts_nothing";
19
+ readonly ACCEPTS_VERY_LITTLE: "accepts_very_little";
19
20
  readonly NORMAL: "normal";
21
+ readonly ACCEPTS_ALMOST_ANYTHING: "accepts_almost_anything";
20
22
  readonly ACCEPTS_ANYTHING: "accepts_anything";
21
23
  };
22
24
  export type BuyerAcceptanceEnum = typeof BuyerAcceptanceEnum[keyof typeof BuyerAcceptanceEnum];
@@ -20,13 +20,15 @@ exports.BuyerAcceptanceEnumFromJSONTyped = BuyerAcceptanceEnumFromJSONTyped;
20
20
  exports.BuyerAcceptanceEnumToJSON = BuyerAcceptanceEnumToJSON;
21
21
  exports.BuyerAcceptanceEnumToJSONTyped = BuyerAcceptanceEnumToJSONTyped;
22
22
  /**
23
- * Share of the leads the buyer started that ever reached an accepted deal: accepts_nothing (below 25%), normal (25-75%), accepts_anything (75% and up), or unknown when the buyer has a single lead and no accepted deal yet.
23
+ * Share of the leads the buyer started that ever reached an accepted deal: accepts_nothing (0%), accepts_very_little (below 25%), normal (25-75%), accepts_almost_anything (75-100%), accepts_anything (100%), or unknown when the buyer has a single lead and no accepted deal yet.
24
24
  * @export
25
25
  */
26
26
  exports.BuyerAcceptanceEnum = {
27
27
  UNKNOWN: 'unknown',
28
28
  ACCEPTS_NOTHING: 'accepts_nothing',
29
+ ACCEPTS_VERY_LITTLE: 'accepts_very_little',
29
30
  NORMAL: 'normal',
31
+ ACCEPTS_ALMOST_ANYTHING: 'accepts_almost_anything',
30
32
  ACCEPTS_ANYTHING: 'accepts_anything'
31
33
  };
32
34
  function instanceOfBuyerAcceptanceEnum(value) {
@@ -10,13 +10,15 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * Share of the leads the buyer started that were actually paid: pays_nothing (below 25%), normal (25-75%), pays_everything (75% and up), or unknown when the buyer has a single lead and no purchase yet.
13
+ * Share of the leads the buyer started that were actually paid: pays_nothing (0%), pays_very_little (below 25%), normal (25-75%), pays_almost_everything (75-100%), pays_everything (100%), or unknown when the buyer has a single lead and no purchase yet.
14
14
  * @export
15
15
  */
16
16
  export declare const BuyerPaymentEnum: {
17
17
  readonly UNKNOWN: "unknown";
18
18
  readonly PAYS_NOTHING: "pays_nothing";
19
+ readonly PAYS_VERY_LITTLE: "pays_very_little";
19
20
  readonly NORMAL: "normal";
21
+ readonly PAYS_ALMOST_EVERYTHING: "pays_almost_everything";
20
22
  readonly PAYS_EVERYTHING: "pays_everything";
21
23
  };
22
24
  export type BuyerPaymentEnum = typeof BuyerPaymentEnum[keyof typeof BuyerPaymentEnum];
@@ -20,13 +20,15 @@ exports.BuyerPaymentEnumFromJSONTyped = BuyerPaymentEnumFromJSONTyped;
20
20
  exports.BuyerPaymentEnumToJSON = BuyerPaymentEnumToJSON;
21
21
  exports.BuyerPaymentEnumToJSONTyped = BuyerPaymentEnumToJSONTyped;
22
22
  /**
23
- * Share of the leads the buyer started that were actually paid: pays_nothing (below 25%), normal (25-75%), pays_everything (75% and up), or unknown when the buyer has a single lead and no purchase yet.
23
+ * Share of the leads the buyer started that were actually paid: pays_nothing (0%), pays_very_little (below 25%), normal (25-75%), pays_almost_everything (75-100%), pays_everything (100%), or unknown when the buyer has a single lead and no purchase yet.
24
24
  * @export
25
25
  */
26
26
  exports.BuyerPaymentEnum = {
27
27
  UNKNOWN: 'unknown',
28
28
  PAYS_NOTHING: 'pays_nothing',
29
+ PAYS_VERY_LITTLE: 'pays_very_little',
29
30
  NORMAL: 'normal',
31
+ PAYS_ALMOST_EVERYTHING: 'pays_almost_everything',
30
32
  PAYS_EVERYTHING: 'pays_everything'
31
33
  };
32
34
  function instanceOfBuyerPaymentEnum(value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.462",
3
+ "version": "0.0.463",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -14,13 +14,15 @@
14
14
 
15
15
 
16
16
  /**
17
- * Share of the leads the buyer started that ever reached an accepted deal: accepts_nothing (below 25%), normal (25-75%), accepts_anything (75% and up), or unknown when the buyer has a single lead and no accepted deal yet.
17
+ * Share of the leads the buyer started that ever reached an accepted deal: accepts_nothing (0%), accepts_very_little (below 25%), normal (25-75%), accepts_almost_anything (75-100%), accepts_anything (100%), or unknown when the buyer has a single lead and no accepted deal yet.
18
18
  * @export
19
19
  */
20
20
  export const BuyerAcceptanceEnum = {
21
21
  UNKNOWN: 'unknown',
22
22
  ACCEPTS_NOTHING: 'accepts_nothing',
23
+ ACCEPTS_VERY_LITTLE: 'accepts_very_little',
23
24
  NORMAL: 'normal',
25
+ ACCEPTS_ALMOST_ANYTHING: 'accepts_almost_anything',
24
26
  ACCEPTS_ANYTHING: 'accepts_anything'
25
27
  } as const;
26
28
  export type BuyerAcceptanceEnum = typeof BuyerAcceptanceEnum[keyof typeof BuyerAcceptanceEnum];
@@ -14,13 +14,15 @@
14
14
 
15
15
 
16
16
  /**
17
- * Share of the leads the buyer started that were actually paid: pays_nothing (below 25%), normal (25-75%), pays_everything (75% and up), or unknown when the buyer has a single lead and no purchase yet.
17
+ * Share of the leads the buyer started that were actually paid: pays_nothing (0%), pays_very_little (below 25%), normal (25-75%), pays_almost_everything (75-100%), pays_everything (100%), or unknown when the buyer has a single lead and no purchase yet.
18
18
  * @export
19
19
  */
20
20
  export const BuyerPaymentEnum = {
21
21
  UNKNOWN: 'unknown',
22
22
  PAYS_NOTHING: 'pays_nothing',
23
+ PAYS_VERY_LITTLE: 'pays_very_little',
23
24
  NORMAL: 'normal',
25
+ PAYS_ALMOST_EVERYTHING: 'pays_almost_everything',
24
26
  PAYS_EVERYTHING: 'pays_everything'
25
27
  } as const;
26
28
  export type BuyerPaymentEnum = typeof BuyerPaymentEnum[keyof typeof BuyerPaymentEnum];