@lcdp/api-react-rest-client 2.14.7-LDS-4914-magic-cart-do-not-filter-sale-o.19367912869 → 2.14.7-LDS-5154-api-ajout-nouveu-status-offisan.19469953333
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
|
@@ -15,6 +15,7 @@
|
|
|
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
17
|
* ACTIVE : Offisante know this resource and its stock
|
|
18
|
+
* UNSET : Offisante no longer knows of this resource
|
|
18
19
|
*
|
|
19
20
|
* @export
|
|
20
21
|
*/
|
|
@@ -23,6 +24,7 @@ export declare const OffisanteStatus: {
|
|
|
23
24
|
readonly NOT_SET: "NOT_SET";
|
|
24
25
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
25
26
|
readonly ACTIVE: "ACTIVE";
|
|
27
|
+
readonly UNSET: "UNSET";
|
|
26
28
|
};
|
|
27
29
|
export declare type OffisanteStatus = typeof OffisanteStatus[keyof typeof OffisanteStatus];
|
|
28
30
|
export declare function instanceOfOffisanteStatus(value: any): boolean;
|
|
@@ -20,6 +20,7 @@ exports.OffisanteStatusToJSON = exports.OffisanteStatusFromJSONTyped = exports.O
|
|
|
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
22
|
* ACTIVE : Offisante know this resource and its stock
|
|
23
|
+
* UNSET : Offisante no longer knows of this resource
|
|
23
24
|
*
|
|
24
25
|
* @export
|
|
25
26
|
*/
|
|
@@ -27,7 +28,8 @@ exports.OffisanteStatus = {
|
|
|
27
28
|
SET: 'SET',
|
|
28
29
|
NOT_SET: 'NOT_SET',
|
|
29
30
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
30
|
-
ACTIVE: 'ACTIVE'
|
|
31
|
+
ACTIVE: 'ACTIVE',
|
|
32
|
+
UNSET: 'UNSET'
|
|
31
33
|
};
|
|
32
34
|
function instanceOfOffisanteStatus(value) {
|
|
33
35
|
for (var key in exports.OffisanteStatus) {
|