flexinet-api 0.0.554-prerelease0 → 0.0.555-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 +27 -2
- package/dist/api.d.ts +26 -2
- package/dist/esm/api.d.ts +26 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## flexinet-api@0.0.
|
|
1
|
+
## flexinet-api@0.0.555-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.555-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2064,6 +2064,25 @@ export const PromotionType = {
|
|
|
2064
2064
|
export type PromotionType = typeof PromotionType[keyof typeof PromotionType];
|
|
2065
2065
|
|
|
2066
2066
|
|
|
2067
|
+
/**
|
|
2068
|
+
*
|
|
2069
|
+
* @export
|
|
2070
|
+
* @interface PromotionWithProgress
|
|
2071
|
+
*/
|
|
2072
|
+
export interface PromotionWithProgress {
|
|
2073
|
+
/**
|
|
2074
|
+
*
|
|
2075
|
+
* @type {Promotion}
|
|
2076
|
+
* @memberof PromotionWithProgress
|
|
2077
|
+
*/
|
|
2078
|
+
'promotion': Promotion;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @type {Progress}
|
|
2082
|
+
* @memberof PromotionWithProgress
|
|
2083
|
+
*/
|
|
2084
|
+
'progress': Progress;
|
|
2085
|
+
}
|
|
2067
2086
|
/**
|
|
2068
2087
|
*
|
|
2069
2088
|
* @export
|
|
@@ -2724,10 +2743,10 @@ export interface Transaction {
|
|
|
2724
2743
|
'source': TransactionSource;
|
|
2725
2744
|
/**
|
|
2726
2745
|
*
|
|
2727
|
-
* @type {
|
|
2746
|
+
* @type {TransactionSourceReference}
|
|
2728
2747
|
* @memberof Transaction
|
|
2729
2748
|
*/
|
|
2730
|
-
'sourceReference'?:
|
|
2749
|
+
'sourceReference'?: TransactionSourceReference;
|
|
2731
2750
|
/**
|
|
2732
2751
|
*
|
|
2733
2752
|
* @type {number}
|
|
@@ -2870,6 +2889,12 @@ export const TransactionSource = {
|
|
|
2870
2889
|
export type TransactionSource = typeof TransactionSource[keyof typeof TransactionSource];
|
|
2871
2890
|
|
|
2872
2891
|
|
|
2892
|
+
/**
|
|
2893
|
+
* @type TransactionSourceReference
|
|
2894
|
+
* @export
|
|
2895
|
+
*/
|
|
2896
|
+
export type TransactionSourceReference = Balance | Order | PromotionWithProgress | User;
|
|
2897
|
+
|
|
2873
2898
|
/**
|
|
2874
2899
|
*
|
|
2875
2900
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -1964,6 +1964,25 @@ export declare const PromotionType: {
|
|
|
1964
1964
|
readonly CustomDeal: "custom_deal";
|
|
1965
1965
|
};
|
|
1966
1966
|
export type PromotionType = typeof PromotionType[keyof typeof PromotionType];
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @export
|
|
1970
|
+
* @interface PromotionWithProgress
|
|
1971
|
+
*/
|
|
1972
|
+
export interface PromotionWithProgress {
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {Promotion}
|
|
1976
|
+
* @memberof PromotionWithProgress
|
|
1977
|
+
*/
|
|
1978
|
+
'promotion': Promotion;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {Progress}
|
|
1982
|
+
* @memberof PromotionWithProgress
|
|
1983
|
+
*/
|
|
1984
|
+
'progress': Progress;
|
|
1985
|
+
}
|
|
1967
1986
|
/**
|
|
1968
1987
|
*
|
|
1969
1988
|
* @export
|
|
@@ -2580,10 +2599,10 @@ export interface Transaction {
|
|
|
2580
2599
|
'source': TransactionSource;
|
|
2581
2600
|
/**
|
|
2582
2601
|
*
|
|
2583
|
-
* @type {
|
|
2602
|
+
* @type {TransactionSourceReference}
|
|
2584
2603
|
* @memberof Transaction
|
|
2585
2604
|
*/
|
|
2586
|
-
'sourceReference'?:
|
|
2605
|
+
'sourceReference'?: TransactionSourceReference;
|
|
2587
2606
|
/**
|
|
2588
2607
|
*
|
|
2589
2608
|
* @type {number}
|
|
@@ -2714,6 +2733,11 @@ export declare const TransactionSource: {
|
|
|
2714
2733
|
readonly Transfer: "transfer";
|
|
2715
2734
|
};
|
|
2716
2735
|
export type TransactionSource = typeof TransactionSource[keyof typeof TransactionSource];
|
|
2736
|
+
/**
|
|
2737
|
+
* @type TransactionSourceReference
|
|
2738
|
+
* @export
|
|
2739
|
+
*/
|
|
2740
|
+
export type TransactionSourceReference = Balance | Order | PromotionWithProgress | User;
|
|
2717
2741
|
/**
|
|
2718
2742
|
*
|
|
2719
2743
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1964,6 +1964,25 @@ export declare const PromotionType: {
|
|
|
1964
1964
|
readonly CustomDeal: "custom_deal";
|
|
1965
1965
|
};
|
|
1966
1966
|
export type PromotionType = typeof PromotionType[keyof typeof PromotionType];
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @export
|
|
1970
|
+
* @interface PromotionWithProgress
|
|
1971
|
+
*/
|
|
1972
|
+
export interface PromotionWithProgress {
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {Promotion}
|
|
1976
|
+
* @memberof PromotionWithProgress
|
|
1977
|
+
*/
|
|
1978
|
+
'promotion': Promotion;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {Progress}
|
|
1982
|
+
* @memberof PromotionWithProgress
|
|
1983
|
+
*/
|
|
1984
|
+
'progress': Progress;
|
|
1985
|
+
}
|
|
1967
1986
|
/**
|
|
1968
1987
|
*
|
|
1969
1988
|
* @export
|
|
@@ -2580,10 +2599,10 @@ export interface Transaction {
|
|
|
2580
2599
|
'source': TransactionSource;
|
|
2581
2600
|
/**
|
|
2582
2601
|
*
|
|
2583
|
-
* @type {
|
|
2602
|
+
* @type {TransactionSourceReference}
|
|
2584
2603
|
* @memberof Transaction
|
|
2585
2604
|
*/
|
|
2586
|
-
'sourceReference'?:
|
|
2605
|
+
'sourceReference'?: TransactionSourceReference;
|
|
2587
2606
|
/**
|
|
2588
2607
|
*
|
|
2589
2608
|
* @type {number}
|
|
@@ -2714,6 +2733,11 @@ export declare const TransactionSource: {
|
|
|
2714
2733
|
readonly Transfer: "transfer";
|
|
2715
2734
|
};
|
|
2716
2735
|
export type TransactionSource = typeof TransactionSource[keyof typeof TransactionSource];
|
|
2736
|
+
/**
|
|
2737
|
+
* @type TransactionSourceReference
|
|
2738
|
+
* @export
|
|
2739
|
+
*/
|
|
2740
|
+
export type TransactionSourceReference = Balance | Order | PromotionWithProgress | User;
|
|
2717
2741
|
/**
|
|
2718
2742
|
*
|
|
2719
2743
|
* @export
|