@lcdp/api-react-rest-client 2.13.9-LDS-4699-etape-1-no-more-archive-of-frid.17041652471 → 2.13.9-LDS-4699-etape-1-no-more-archive-of-frid.17069308302
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
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { ProductStorageType } from './ProductStorageType';
|
|
13
12
|
import type { ProductMarketStatus } from './ProductMarketStatus';
|
|
14
13
|
import type { ProductStatus } from './ProductStatus';
|
|
15
14
|
import type { Barcodes } from './Barcodes';
|
|
@@ -93,11 +92,11 @@ export interface ProductCreationOrUpdateParameters {
|
|
|
93
92
|
*/
|
|
94
93
|
narcoticPrescription?: boolean | null;
|
|
95
94
|
/**
|
|
96
|
-
*
|
|
97
|
-
* @type {
|
|
95
|
+
* Product Storage Type Identifier
|
|
96
|
+
* @type {string}
|
|
98
97
|
* @memberof ProductCreationOrUpdateParameters
|
|
99
98
|
*/
|
|
100
|
-
storageType?:
|
|
99
|
+
storageType?: string | null;
|
|
101
100
|
/**
|
|
102
101
|
*
|
|
103
102
|
* @type {ProductMarketStatus}
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProductCreationOrUpdateParametersToJSON = exports.ProductCreationOrUpdateParametersFromJSONTyped = exports.ProductCreationOrUpdateParametersFromJSON = exports.instanceOfProductCreationOrUpdateParameters = void 0;
|
|
17
|
-
var ProductStorageType_1 = require("./ProductStorageType");
|
|
18
17
|
var ProductMarketStatus_1 = require("./ProductMarketStatus");
|
|
19
18
|
var ProductStatus_1 = require("./ProductStatus");
|
|
20
19
|
var Barcodes_1 = require("./Barcodes");
|
|
@@ -47,7 +46,7 @@ function ProductCreationOrUpdateParametersFromJSONTyped(json, ignoreDiscriminato
|
|
|
47
46
|
'laboratoryId': json['laboratoryId'],
|
|
48
47
|
'vatId': json['vatId'],
|
|
49
48
|
'narcoticPrescription': json['narcoticPrescription'],
|
|
50
|
-
'storageType':
|
|
49
|
+
'storageType': json['storageType'],
|
|
51
50
|
'marketStatus': (json['marketStatus'] === null || json['marketStatus'] === undefined) ? json['marketStatus'] : (0, ProductMarketStatus_1.ProductMarketStatusFromJSON)(json['marketStatus']),
|
|
52
51
|
'status': (json['status'] === null || json['status'] === undefined) ? json['status'] : (0, ProductStatus_1.ProductStatusFromJSON)(json['status']),
|
|
53
52
|
'dispensationPlace': (json['dispensationPlace'] === null || json['dispensationPlace'] === undefined) ? json['dispensationPlace'] : (0, ProductDispensationPlace_1.ProductDispensationPlaceFromJSON)(json['dispensationPlace']),
|
|
@@ -74,7 +73,7 @@ function ProductCreationOrUpdateParametersToJSON(value) {
|
|
|
74
73
|
'laboratoryId': value['laboratoryId'],
|
|
75
74
|
'vatId': value['vatId'],
|
|
76
75
|
'narcoticPrescription': value['narcoticPrescription'],
|
|
77
|
-
'storageType':
|
|
76
|
+
'storageType': value['storageType'],
|
|
78
77
|
'marketStatus': (0, ProductMarketStatus_1.ProductMarketStatusToJSON)(value['marketStatus']),
|
|
79
78
|
'status': (0, ProductStatus_1.ProductStatusToJSON)(value['status']),
|
|
80
79
|
'dispensationPlace': (0, ProductDispensationPlace_1.ProductDispensationPlaceToJSON)(value['dispensationPlace']),
|