flexinet-api 0.0.855-prerelease0 → 0.0.868-prerelease0
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 +2 -2
- package/api.ts +2 -1
- package/dist/api.d.ts +1 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## flexinet-api@0.0.
|
|
1
|
+
## flexinet-api@0.0.868-prerelease0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 flexinet-api@0.0.
|
|
39
|
+
npm install flexinet-api@0.0.868-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -883,7 +883,8 @@ export type EventCreationRequestDetails = TransactionEventDetails;
|
|
|
883
883
|
export const Feature = {
|
|
884
884
|
Promotions: 'promotions',
|
|
885
885
|
SalesBudget: 'sales_budget',
|
|
886
|
-
CustomDeals: 'custom_deals'
|
|
886
|
+
CustomDeals: 'custom_deals',
|
|
887
|
+
UserInfo: 'user_info'
|
|
887
888
|
} as const;
|
|
888
889
|
|
|
889
890
|
export type Feature = typeof Feature[keyof typeof Feature];
|
package/dist/api.d.ts
CHANGED
|
@@ -826,6 +826,7 @@ export declare const Feature: {
|
|
|
826
826
|
readonly Promotions: "promotions";
|
|
827
827
|
readonly SalesBudget: "sales_budget";
|
|
828
828
|
readonly CustomDeals: "custom_deals";
|
|
829
|
+
readonly UserInfo: "user_info";
|
|
829
830
|
};
|
|
830
831
|
export type Feature = typeof Feature[keyof typeof Feature];
|
|
831
832
|
/**
|
package/dist/api.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -826,6 +826,7 @@ export declare const Feature: {
|
|
|
826
826
|
readonly Promotions: "promotions";
|
|
827
827
|
readonly SalesBudget: "sales_budget";
|
|
828
828
|
readonly CustomDeals: "custom_deals";
|
|
829
|
+
readonly UserInfo: "user_info";
|
|
829
830
|
};
|
|
830
831
|
export type Feature = typeof Feature[keyof typeof Feature];
|
|
831
832
|
/**
|
package/dist/esm/api.js
CHANGED