@lcdp/api-react-rest-client 2.4.0-develop.5544924884 → 2.4.0-develop.5647169712

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 (82) hide show
  1. package/catalog/index.d.ts +1 -0
  2. package/catalog/index.js +17 -0
  3. package/catalog/src/apis/ManageProductInsightApi.d.ts +54 -0
  4. package/catalog/src/apis/ManageProductInsightApi.js +295 -0
  5. package/catalog/src/apis/SearchProductInsightApi.d.ts +53 -0
  6. package/catalog/src/apis/SearchProductInsightApi.js +246 -0
  7. package/catalog/src/apis/index.d.ts +2 -0
  8. package/catalog/src/apis/index.js +18 -0
  9. package/catalog/src/index.d.ts +3 -0
  10. package/catalog/src/index.js +19 -0
  11. package/catalog/src/models/Barcodes.d.ts +45 -0
  12. package/catalog/src/models/Barcodes.js +48 -0
  13. package/catalog/src/models/HttpLink.d.ts +27 -0
  14. package/catalog/src/models/HttpLink.js +41 -0
  15. package/catalog/src/models/LaboratoryLink.d.ts +34 -0
  16. package/catalog/src/models/LaboratoryLink.js +50 -0
  17. package/catalog/src/models/LaboratoryLinkAllOf.d.ts +33 -0
  18. package/catalog/src/models/LaboratoryLinkAllOf.js +44 -0
  19. package/catalog/src/models/PaginatedObject.d.ts +28 -0
  20. package/catalog/src/models/PaginatedObject.js +42 -0
  21. package/catalog/src/models/PaginatedProductInsights.d.ts +29 -0
  22. package/catalog/src/models/PaginatedProductInsights.js +50 -0
  23. package/catalog/src/models/PaginatedProductInsightsAllOf.d.ts +28 -0
  24. package/catalog/src/models/PaginatedProductInsightsAllOf.js +42 -0
  25. package/catalog/src/models/PagingMetadata.d.ts +45 -0
  26. package/catalog/src/models/PagingMetadata.js +47 -0
  27. package/catalog/src/models/ProductInsight.d.ts +106 -0
  28. package/catalog/src/models/ProductInsight.js +73 -0
  29. package/catalog/src/models/ProductInsightCreateOrUpdateParameters.d.ts +89 -0
  30. package/catalog/src/models/ProductInsightCreateOrUpdateParameters.js +64 -0
  31. package/catalog/src/models/ProductInsightJournal.d.ts +33 -0
  32. package/catalog/src/models/ProductInsightJournal.js +44 -0
  33. package/catalog/src/models/ProductSecondaryTypeLink.d.ts +34 -0
  34. package/catalog/src/models/ProductSecondaryTypeLink.js +50 -0
  35. package/catalog/src/models/ProductSecondaryTypeLinkAllOf.d.ts +33 -0
  36. package/catalog/src/models/ProductSecondaryTypeLinkAllOf.js +44 -0
  37. package/catalog/src/models/ProductStorageType.d.ts +25 -0
  38. package/catalog/src/models/ProductStorageType.js +40 -0
  39. package/catalog/src/models/ProductTypeLink.d.ts +34 -0
  40. package/catalog/src/models/ProductTypeLink.js +50 -0
  41. package/catalog/src/models/ProductTypeLinkAllOf.d.ts +33 -0
  42. package/catalog/src/models/ProductTypeLinkAllOf.js +44 -0
  43. package/catalog/src/models/RestError.d.ts +85 -0
  44. package/catalog/src/models/RestError.js +97 -0
  45. package/catalog/src/models/VatLink.d.ts +40 -0
  46. package/catalog/src/models/VatLink.js +50 -0
  47. package/catalog/src/models/VatLinkAllOf.d.ts +39 -0
  48. package/catalog/src/models/VatLinkAllOf.js +46 -0
  49. package/catalog/src/models/index.d.ts +19 -0
  50. package/catalog/src/models/index.js +35 -0
  51. package/catalog/src/runtime.d.ts +149 -0
  52. package/catalog/src/runtime.js +480 -0
  53. package/package.json +1 -1
  54. package/product/src/apis/ManageProductApi.d.ts +2 -0
  55. package/product/src/apis/ManageProductApi.js +6 -0
  56. package/product/src/apis/SearchProductApi.d.ts +1 -0
  57. package/product/src/apis/SearchProductApi.js +3 -0
  58. package/product/src/apis/SearchProductMetadataApi.d.ts +22 -0
  59. package/product/src/apis/SearchProductMetadataApi.js +154 -8
  60. package/product/src/models/{ProductProvider.d.ts → DataProvider.d.ts} +7 -5
  61. package/product/src/models/DataProvider.js +40 -0
  62. package/product/src/models/Image.d.ts +7 -0
  63. package/product/src/models/Image.js +3 -0
  64. package/product/src/models/Product.d.ts +44 -37
  65. package/product/src/models/Product.js +33 -31
  66. package/product/src/models/ProductCreationOrUpdateParameters.d.ts +6 -6
  67. package/product/src/models/ProductCreationOrUpdateParameters.js +2 -2
  68. package/product/src/models/ProductJournal.d.ts +27 -0
  69. package/product/src/models/ProductJournal.js +41 -0
  70. package/product/src/models/ProductProscription.d.ts +7 -0
  71. package/product/src/models/ProductProscription.js +3 -0
  72. package/product/src/models/ProductSource.d.ts +47 -0
  73. package/product/src/models/ProductSource.js +49 -0
  74. package/product/src/models/ProductSourceBcb.d.ts +39 -0
  75. package/product/src/models/ProductSourceBcb.js +46 -0
  76. package/product/src/models/ProductSourceFields.d.ts +131 -0
  77. package/product/src/models/ProductSourceFields.js +77 -0
  78. package/product/src/models/ProductSourceFieldsBarcodes.d.ts +46 -0
  79. package/product/src/models/ProductSourceFieldsBarcodes.js +48 -0
  80. package/product/src/models/index.d.ts +6 -1
  81. package/product/src/models/index.js +6 -1
  82. package/product/src/models/ProductProvider.js +0 -38
@@ -0,0 +1,2 @@
1
+ export * from './ManageProductInsightApi';
2
+ export * from './SearchProductInsightApi';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./ManageProductInsightApi"), exports);
18
+ __exportStar(require("./SearchProductInsightApi"), exports);
@@ -0,0 +1,3 @@
1
+ export * from './runtime';
2
+ export * from './apis';
3
+ export * from './models';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./runtime"), exports);
18
+ __exportStar(require("./apis"), exports);
19
+ __exportStar(require("./models"), exports);
@@ -0,0 +1,45 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface Barcodes
16
+ */
17
+ export interface Barcodes {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof Barcodes
22
+ */
23
+ cip?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof Barcodes
28
+ */
29
+ cip13?: string | null;
30
+ /**
31
+ *
32
+ * @type {Array<string>}
33
+ * @memberof Barcodes
34
+ */
35
+ eans?: Array<string> | null;
36
+ /**
37
+ * The principal is the referent barcode (for display, invoices, ...)
38
+ * @type {string}
39
+ * @memberof Barcodes
40
+ */
41
+ principal?: string;
42
+ }
43
+ export declare function BarcodesFromJSON(json: any): Barcodes;
44
+ export declare function BarcodesFromJSONTyped(json: any, ignoreDiscriminator: boolean): Barcodes;
45
+ export declare function BarcodesToJSON(value?: Barcodes | null): any;
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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.BarcodesToJSON = exports.BarcodesFromJSONTyped = exports.BarcodesFromJSON = void 0;
17
+ var runtime_1 = require("../runtime");
18
+ function BarcodesFromJSON(json) {
19
+ return BarcodesFromJSONTyped(json, false);
20
+ }
21
+ exports.BarcodesFromJSON = BarcodesFromJSON;
22
+ function BarcodesFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'cip': !(0, runtime_1.exists)(json, 'cip') ? json['cip'] : json['cip'],
28
+ 'cip13': !(0, runtime_1.exists)(json, 'cip13') ? json['cip13'] : json['cip13'],
29
+ 'eans': !(0, runtime_1.exists)(json, 'eans') ? json['eans'] : json['eans'],
30
+ 'principal': !(0, runtime_1.exists)(json, 'principal') ? undefined : json['principal'],
31
+ };
32
+ }
33
+ exports.BarcodesFromJSONTyped = BarcodesFromJSONTyped;
34
+ function BarcodesToJSON(value) {
35
+ if (value === undefined) {
36
+ return undefined;
37
+ }
38
+ if (value === null) {
39
+ return null;
40
+ }
41
+ return {
42
+ 'cip': value.cip,
43
+ 'cip13': value.cip13,
44
+ 'eans': value.eans,
45
+ 'principal': value.principal,
46
+ };
47
+ }
48
+ exports.BarcodesToJSON = BarcodesToJSON;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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
+ /**
13
+ * A base type of objects representing links to resources.
14
+ * @export
15
+ * @interface HttpLink
16
+ */
17
+ export interface HttpLink {
18
+ /**
19
+ * Any URL that is using http or https protocol
20
+ * @type {string}
21
+ * @memberof HttpLink
22
+ */
23
+ href: string;
24
+ }
25
+ export declare function HttpLinkFromJSON(json: any): HttpLink;
26
+ export declare function HttpLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): HttpLink;
27
+ export declare function HttpLinkToJSON(value?: HttpLink | null): any;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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.HttpLinkToJSON = exports.HttpLinkFromJSONTyped = exports.HttpLinkFromJSON = void 0;
17
+ function HttpLinkFromJSON(json) {
18
+ return HttpLinkFromJSONTyped(json, false);
19
+ }
20
+ exports.HttpLinkFromJSON = HttpLinkFromJSON;
21
+ function HttpLinkFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'href': json['href'],
27
+ };
28
+ }
29
+ exports.HttpLinkFromJSONTyped = HttpLinkFromJSONTyped;
30
+ function HttpLinkToJSON(value) {
31
+ if (value === undefined) {
32
+ return undefined;
33
+ }
34
+ if (value === null) {
35
+ return null;
36
+ }
37
+ return {
38
+ 'href': value.href,
39
+ };
40
+ }
41
+ exports.HttpLinkToJSON = HttpLinkToJSON;
@@ -0,0 +1,34 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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 { HttpLink } from './HttpLink';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface LaboratoryLink
17
+ */
18
+ export interface LaboratoryLink extends HttpLink {
19
+ /**
20
+ * Identifier of the laboratory
21
+ * @type {number}
22
+ * @memberof LaboratoryLink
23
+ */
24
+ id?: number;
25
+ /**
26
+ * Name of the laboratory
27
+ * @type {string}
28
+ * @memberof LaboratoryLink
29
+ */
30
+ name?: string;
31
+ }
32
+ export declare function LaboratoryLinkFromJSON(json: any): LaboratoryLink;
33
+ export declare function LaboratoryLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): LaboratoryLink;
34
+ export declare function LaboratoryLinkToJSON(value?: LaboratoryLink | null): any;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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
+ var __assign = (this && this.__assign) || function () {
16
+ __assign = Object.assign || function(t) {
17
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
18
+ s = arguments[i];
19
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
20
+ t[p] = s[p];
21
+ }
22
+ return t;
23
+ };
24
+ return __assign.apply(this, arguments);
25
+ };
26
+ Object.defineProperty(exports, "__esModule", { value: true });
27
+ exports.LaboratoryLinkToJSON = exports.LaboratoryLinkFromJSONTyped = exports.LaboratoryLinkFromJSON = void 0;
28
+ var runtime_1 = require("../runtime");
29
+ var HttpLink_1 = require("./HttpLink");
30
+ function LaboratoryLinkFromJSON(json) {
31
+ return LaboratoryLinkFromJSONTyped(json, false);
32
+ }
33
+ exports.LaboratoryLinkFromJSON = LaboratoryLinkFromJSON;
34
+ function LaboratoryLinkFromJSONTyped(json, ignoreDiscriminator) {
35
+ if ((json === undefined) || (json === null)) {
36
+ return json;
37
+ }
38
+ return __assign(__assign({}, (0, HttpLink_1.HttpLinkFromJSONTyped)(json, ignoreDiscriminator)), { 'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'], 'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'] });
39
+ }
40
+ exports.LaboratoryLinkFromJSONTyped = LaboratoryLinkFromJSONTyped;
41
+ function LaboratoryLinkToJSON(value) {
42
+ if (value === undefined) {
43
+ return undefined;
44
+ }
45
+ if (value === null) {
46
+ return null;
47
+ }
48
+ return __assign(__assign({}, (0, HttpLink_1.HttpLinkToJSON)(value)), { 'id': value.id, 'name': value.name });
49
+ }
50
+ exports.LaboratoryLinkToJSON = LaboratoryLinkToJSON;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface LaboratoryLinkAllOf
16
+ */
17
+ export interface LaboratoryLinkAllOf {
18
+ /**
19
+ * Identifier of the laboratory
20
+ * @type {number}
21
+ * @memberof LaboratoryLinkAllOf
22
+ */
23
+ id?: number;
24
+ /**
25
+ * Name of the laboratory
26
+ * @type {string}
27
+ * @memberof LaboratoryLinkAllOf
28
+ */
29
+ name?: string;
30
+ }
31
+ export declare function LaboratoryLinkAllOfFromJSON(json: any): LaboratoryLinkAllOf;
32
+ export declare function LaboratoryLinkAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): LaboratoryLinkAllOf;
33
+ export declare function LaboratoryLinkAllOfToJSON(value?: LaboratoryLinkAllOf | null): any;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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.LaboratoryLinkAllOfToJSON = exports.LaboratoryLinkAllOfFromJSONTyped = exports.LaboratoryLinkAllOfFromJSON = void 0;
17
+ var runtime_1 = require("../runtime");
18
+ function LaboratoryLinkAllOfFromJSON(json) {
19
+ return LaboratoryLinkAllOfFromJSONTyped(json, false);
20
+ }
21
+ exports.LaboratoryLinkAllOfFromJSON = LaboratoryLinkAllOfFromJSON;
22
+ function LaboratoryLinkAllOfFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
28
+ 'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
29
+ };
30
+ }
31
+ exports.LaboratoryLinkAllOfFromJSONTyped = LaboratoryLinkAllOfFromJSONTyped;
32
+ function LaboratoryLinkAllOfToJSON(value) {
33
+ if (value === undefined) {
34
+ return undefined;
35
+ }
36
+ if (value === null) {
37
+ return null;
38
+ }
39
+ return {
40
+ 'id': value.id,
41
+ 'name': value.name,
42
+ };
43
+ }
44
+ exports.LaboratoryLinkAllOfToJSON = LaboratoryLinkAllOfToJSON;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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 { PagingMetadata } from './PagingMetadata';
13
+ /**
14
+ * An object which is not complete (only a specific page is available)
15
+ * @export
16
+ * @interface PaginatedObject
17
+ */
18
+ export interface PaginatedObject {
19
+ /**
20
+ *
21
+ * @type {PagingMetadata}
22
+ * @memberof PaginatedObject
23
+ */
24
+ metadata: PagingMetadata;
25
+ }
26
+ export declare function PaginatedObjectFromJSON(json: any): PaginatedObject;
27
+ export declare function PaginatedObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedObject;
28
+ export declare function PaginatedObjectToJSON(value?: PaginatedObject | null): any;
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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.PaginatedObjectToJSON = exports.PaginatedObjectFromJSONTyped = exports.PaginatedObjectFromJSON = void 0;
17
+ var PagingMetadata_1 = require("./PagingMetadata");
18
+ function PaginatedObjectFromJSON(json) {
19
+ return PaginatedObjectFromJSONTyped(json, false);
20
+ }
21
+ exports.PaginatedObjectFromJSON = PaginatedObjectFromJSON;
22
+ function PaginatedObjectFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'metadata': (0, PagingMetadata_1.PagingMetadataFromJSON)(json['metadata']),
28
+ };
29
+ }
30
+ exports.PaginatedObjectFromJSONTyped = PaginatedObjectFromJSONTyped;
31
+ function PaginatedObjectToJSON(value) {
32
+ if (value === undefined) {
33
+ return undefined;
34
+ }
35
+ if (value === null) {
36
+ return null;
37
+ }
38
+ return {
39
+ 'metadata': (0, PagingMetadata_1.PagingMetadataToJSON)(value.metadata),
40
+ };
41
+ }
42
+ exports.PaginatedObjectToJSON = PaginatedObjectToJSON;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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 { PaginatedObject } from './PaginatedObject';
13
+ import { ProductInsight } from './ProductInsight';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PaginatedProductInsights
18
+ */
19
+ export interface PaginatedProductInsights extends PaginatedObject {
20
+ /**
21
+ *
22
+ * @type {Array<ProductInsight>}
23
+ * @memberof PaginatedProductInsights
24
+ */
25
+ records: Array<ProductInsight>;
26
+ }
27
+ export declare function PaginatedProductInsightsFromJSON(json: any): PaginatedProductInsights;
28
+ export declare function PaginatedProductInsightsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductInsights;
29
+ export declare function PaginatedProductInsightsToJSON(value?: PaginatedProductInsights | null): any;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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
+ var __assign = (this && this.__assign) || function () {
16
+ __assign = Object.assign || function(t) {
17
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
18
+ s = arguments[i];
19
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
20
+ t[p] = s[p];
21
+ }
22
+ return t;
23
+ };
24
+ return __assign.apply(this, arguments);
25
+ };
26
+ Object.defineProperty(exports, "__esModule", { value: true });
27
+ exports.PaginatedProductInsightsToJSON = exports.PaginatedProductInsightsFromJSONTyped = exports.PaginatedProductInsightsFromJSON = void 0;
28
+ var PaginatedObject_1 = require("./PaginatedObject");
29
+ var ProductInsight_1 = require("./ProductInsight");
30
+ function PaginatedProductInsightsFromJSON(json) {
31
+ return PaginatedProductInsightsFromJSONTyped(json, false);
32
+ }
33
+ exports.PaginatedProductInsightsFromJSON = PaginatedProductInsightsFromJSON;
34
+ function PaginatedProductInsightsFromJSONTyped(json, ignoreDiscriminator) {
35
+ if ((json === undefined) || (json === null)) {
36
+ return json;
37
+ }
38
+ return __assign(__assign({}, (0, PaginatedObject_1.PaginatedObjectFromJSONTyped)(json, ignoreDiscriminator)), { 'records': (json['records'].map(ProductInsight_1.ProductInsightFromJSON)) });
39
+ }
40
+ exports.PaginatedProductInsightsFromJSONTyped = PaginatedProductInsightsFromJSONTyped;
41
+ function PaginatedProductInsightsToJSON(value) {
42
+ if (value === undefined) {
43
+ return undefined;
44
+ }
45
+ if (value === null) {
46
+ return null;
47
+ }
48
+ return __assign(__assign({}, (0, PaginatedObject_1.PaginatedObjectToJSON)(value)), { 'records': (value.records.map(ProductInsight_1.ProductInsightToJSON)) });
49
+ }
50
+ exports.PaginatedProductInsightsToJSON = PaginatedProductInsightsToJSON;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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 { ProductInsight } from './ProductInsight';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PaginatedProductInsightsAllOf
17
+ */
18
+ export interface PaginatedProductInsightsAllOf {
19
+ /**
20
+ *
21
+ * @type {Array<ProductInsight>}
22
+ * @memberof PaginatedProductInsightsAllOf
23
+ */
24
+ records: Array<ProductInsight>;
25
+ }
26
+ export declare function PaginatedProductInsightsAllOfFromJSON(json: any): PaginatedProductInsightsAllOf;
27
+ export declare function PaginatedProductInsightsAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductInsightsAllOf;
28
+ export declare function PaginatedProductInsightsAllOfToJSON(value?: PaginatedProductInsightsAllOf | null): any;
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-catalog
6
+ * This is the REST API of LCDP catalog
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.PaginatedProductInsightsAllOfToJSON = exports.PaginatedProductInsightsAllOfFromJSONTyped = exports.PaginatedProductInsightsAllOfFromJSON = void 0;
17
+ var ProductInsight_1 = require("./ProductInsight");
18
+ function PaginatedProductInsightsAllOfFromJSON(json) {
19
+ return PaginatedProductInsightsAllOfFromJSONTyped(json, false);
20
+ }
21
+ exports.PaginatedProductInsightsAllOfFromJSON = PaginatedProductInsightsAllOfFromJSON;
22
+ function PaginatedProductInsightsAllOfFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'records': (json['records'].map(ProductInsight_1.ProductInsightFromJSON)),
28
+ };
29
+ }
30
+ exports.PaginatedProductInsightsAllOfFromJSONTyped = PaginatedProductInsightsAllOfFromJSONTyped;
31
+ function PaginatedProductInsightsAllOfToJSON(value) {
32
+ if (value === undefined) {
33
+ return undefined;
34
+ }
35
+ if (value === null) {
36
+ return null;
37
+ }
38
+ return {
39
+ 'records': (value.records.map(ProductInsight_1.ProductInsightToJSON)),
40
+ };
41
+ }
42
+ exports.PaginatedProductInsightsAllOfToJSON = PaginatedProductInsightsAllOfToJSON;
@@ -0,0 +1,45 @@
1
+ /**
2
+ * lcdp-catalog
3
+ * This is the REST API of LCDP catalog
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
+ /**
13
+ * All information about current and available pages
14
+ * @export
15
+ * @interface PagingMetadata
16
+ */
17
+ export interface PagingMetadata {
18
+ /**
19
+ * Current page requested. Start at 0.
20
+ * @type {number}
21
+ * @memberof PagingMetadata
22
+ */
23
+ page: number;
24
+ /**
25
+ * Number of item per page. 0 means that you only required metdata.
26
+ * @type {number}
27
+ * @memberof PagingMetadata
28
+ */
29
+ perPage: number;
30
+ /**
31
+ * Total number of item visible by the client in the request
32
+ * @type {number}
33
+ * @memberof PagingMetadata
34
+ */
35
+ totalVisible: number;
36
+ /**
37
+ * Total number of item found in database
38
+ * @type {number}
39
+ * @memberof PagingMetadata
40
+ */
41
+ totalFound: number;
42
+ }
43
+ export declare function PagingMetadataFromJSON(json: any): PagingMetadata;
44
+ export declare function PagingMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagingMetadata;
45
+ export declare function PagingMetadataToJSON(value?: PagingMetadata | null): any;