@lcdp/api-react-rest-client 2.11.5-develop.14709693918 → 2.11.5-develop.15063689500

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.
Files changed (28) hide show
  1. package/inventory/src/apis/ManageInventoryApi.d.ts +1 -28
  2. package/inventory/src/apis/ManageInventoryApi.js +8 -165
  3. package/inventory/src/apis/ManageInventorySynchronizationApi.d.ts +93 -0
  4. package/inventory/src/apis/ManageInventorySynchronizationApi.js +515 -0
  5. package/inventory/src/apis/index.d.ts +1 -0
  6. package/inventory/src/apis/index.js +1 -0
  7. package/inventory/src/models/AnyBuffer.d.ts +26 -0
  8. package/inventory/src/models/AnyBuffer.js +50 -0
  9. package/inventory/src/models/Buffer.d.ts +33 -0
  10. package/inventory/src/models/Buffer.js +47 -0
  11. package/inventory/src/models/FixedBuffer.d.ts +37 -0
  12. package/inventory/src/models/FixedBuffer.js +49 -0
  13. package/inventory/src/models/IdentifiedSynchronization.d.ts +52 -0
  14. package/inventory/src/models/IdentifiedSynchronization.js +62 -0
  15. package/inventory/src/models/SalesForecastBuffer.d.ts +37 -0
  16. package/inventory/src/models/SalesForecastBuffer.js +49 -0
  17. package/inventory/src/models/Synchronization.d.ts +48 -0
  18. package/inventory/src/models/Synchronization.js +58 -0
  19. package/inventory/src/models/SynchronizationMode.d.ts +3 -3
  20. package/inventory/src/models/SynchronizationMode.js +3 -3
  21. package/inventory/src/models/SynchronizationProposal.d.ts +56 -0
  22. package/inventory/src/models/SynchronizationProposal.js +63 -0
  23. package/inventory/src/models/index.d.ts +7 -1
  24. package/inventory/src/models/index.js +7 -1
  25. package/package.json +1 -1
  26. package/shopping-cart/src/models/ProductLink.d.ts +1 -1
  27. package/inventory/src/models/ActiveProductUpdateParameters.d.ts +0 -32
  28. package/inventory/src/models/ActiveProductUpdateParameters.js +0 -46
@@ -1,32 +0,0 @@
1
- /**
2
- * lcdp-pharmaide-service
3
- * This is the REST API of LCDP products
4
- *
5
- * The version of the OpenAPI document: 1.0.0
6
- * Contact: contact@lecomptoirdespharmacies.fr
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import type { SynchronizationMode } from './SynchronizationMode';
13
- /**
14
- *
15
- * @export
16
- * @interface ActiveProductUpdateParameters
17
- */
18
- export interface ActiveProductUpdateParameters {
19
- /**
20
- *
21
- * @type {SynchronizationMode}
22
- * @memberof ActiveProductUpdateParameters
23
- */
24
- synchronizationMode?: SynchronizationMode;
25
- }
26
- /**
27
- * Check if a given object implements the ActiveProductUpdateParameters interface.
28
- */
29
- export declare function instanceOfActiveProductUpdateParameters(value: object): value is ActiveProductUpdateParameters;
30
- export declare function ActiveProductUpdateParametersFromJSON(json: any): ActiveProductUpdateParameters;
31
- export declare function ActiveProductUpdateParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActiveProductUpdateParameters;
32
- export declare function ActiveProductUpdateParametersToJSON(value?: ActiveProductUpdateParameters | null): any;
@@ -1,46 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * lcdp-pharmaide-service
6
- * This is the REST API of LCDP products
7
- *
8
- * The version of the OpenAPI document: 1.0.0
9
- * Contact: contact@lecomptoirdespharmacies.fr
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.ActiveProductUpdateParametersToJSON = exports.ActiveProductUpdateParametersFromJSONTyped = exports.ActiveProductUpdateParametersFromJSON = exports.instanceOfActiveProductUpdateParameters = void 0;
17
- var SynchronizationMode_1 = require("./SynchronizationMode");
18
- /**
19
- * Check if a given object implements the ActiveProductUpdateParameters interface.
20
- */
21
- function instanceOfActiveProductUpdateParameters(value) {
22
- return true;
23
- }
24
- exports.instanceOfActiveProductUpdateParameters = instanceOfActiveProductUpdateParameters;
25
- function ActiveProductUpdateParametersFromJSON(json) {
26
- return ActiveProductUpdateParametersFromJSONTyped(json, false);
27
- }
28
- exports.ActiveProductUpdateParametersFromJSON = ActiveProductUpdateParametersFromJSON;
29
- function ActiveProductUpdateParametersFromJSONTyped(json, ignoreDiscriminator) {
30
- if (json == null) {
31
- return json;
32
- }
33
- return {
34
- 'synchronizationMode': (json['synchronizationMode'] === null || json['synchronizationMode'] === undefined) ? json['synchronizationMode'] : (0, SynchronizationMode_1.SynchronizationModeFromJSON)(json['synchronizationMode']),
35
- };
36
- }
37
- exports.ActiveProductUpdateParametersFromJSONTyped = ActiveProductUpdateParametersFromJSONTyped;
38
- function ActiveProductUpdateParametersToJSON(value) {
39
- if (value == null) {
40
- return value;
41
- }
42
- return {
43
- 'synchronizationMode': (0, SynchronizationMode_1.SynchronizationModeToJSON)(value['synchronizationMode']),
44
- };
45
- }
46
- exports.ActiveProductUpdateParametersToJSON = ActiveProductUpdateParametersToJSON;