@lcdp/api-react-rest-client 2.14.3-LDS-4747-chargebee.18225761899 → 2.14.3-LDS-4747-chargebee.18281803291
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/package.json
CHANGED
|
@@ -11,9 +11,10 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Status of company in our system against Offisante system.
|
|
14
|
-
* SET : Offisante know this resource
|
|
14
|
+
* SET : Offisante know this resource but not yet its stock
|
|
15
15
|
* NOT_SET : Offisante do not know this resource
|
|
16
16
|
* IN_PROGRESS : Offisante is going to know this resource in the future
|
|
17
|
+
* ACTIVE : Offisante know this resource and its stock
|
|
17
18
|
*
|
|
18
19
|
* @export
|
|
19
20
|
*/
|
|
@@ -21,6 +22,7 @@ export declare const OffisanteStatus: {
|
|
|
21
22
|
readonly SET: "SET";
|
|
22
23
|
readonly NOT_SET: "NOT_SET";
|
|
23
24
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
25
|
+
readonly ACTIVE: "ACTIVE";
|
|
24
26
|
};
|
|
25
27
|
export declare type OffisanteStatus = typeof OffisanteStatus[keyof typeof OffisanteStatus];
|
|
26
28
|
export declare function instanceOfOffisanteStatus(value: any): boolean;
|
|
@@ -16,16 +16,18 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.OffisanteStatusToJSON = exports.OffisanteStatusFromJSONTyped = exports.OffisanteStatusFromJSON = exports.instanceOfOffisanteStatus = exports.OffisanteStatus = void 0;
|
|
17
17
|
/**
|
|
18
18
|
* Status of company in our system against Offisante system.
|
|
19
|
-
* SET : Offisante know this resource
|
|
19
|
+
* SET : Offisante know this resource but not yet its stock
|
|
20
20
|
* NOT_SET : Offisante do not know this resource
|
|
21
21
|
* IN_PROGRESS : Offisante is going to know this resource in the future
|
|
22
|
+
* ACTIVE : Offisante know this resource and its stock
|
|
22
23
|
*
|
|
23
24
|
* @export
|
|
24
25
|
*/
|
|
25
26
|
exports.OffisanteStatus = {
|
|
26
27
|
SET: 'SET',
|
|
27
28
|
NOT_SET: 'NOT_SET',
|
|
28
|
-
IN_PROGRESS: 'IN_PROGRESS'
|
|
29
|
+
IN_PROGRESS: 'IN_PROGRESS',
|
|
30
|
+
ACTIVE: 'ACTIVE'
|
|
29
31
|
};
|
|
30
32
|
function instanceOfOffisanteStatus(value) {
|
|
31
33
|
for (var key in exports.OffisanteStatus) {
|