@lcdp/api-react-rest-client 1.3.17-react-codegen.2756 → 1.3.18-LDS-2686-publish-lcdp-api-as-one-react-s.2766

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.
@@ -16,6 +16,12 @@ import { ExpressOrderNeed } from './ExpressOrderNeed';
16
16
  * @interface ExpressOrderCreationParameters
17
17
  */
18
18
  export interface ExpressOrderCreationParameters {
19
+ /**
20
+ * User Id to do the request for
21
+ * @type {number}
22
+ * @memberof ExpressOrderCreationParameters
23
+ */
24
+ buyerId: number;
19
25
  /**
20
26
  * Products needed by the client
21
27
  * @type {Array<ExpressOrderNeed>}
@@ -25,6 +25,7 @@ function ExpressOrderCreationParametersFromJSONTyped(json, ignoreDiscriminator)
25
25
  return json;
26
26
  }
27
27
  return {
28
+ 'buyerId': json['buyerId'],
28
29
  'needs': !(0, runtime_1.exists)(json, 'needs') ? undefined : (json['needs'].map(ExpressOrderNeed_1.ExpressOrderNeedFromJSON)),
29
30
  };
30
31
  }
@@ -37,6 +38,7 @@ function ExpressOrderCreationParametersToJSON(value) {
37
38
  return null;
38
39
  }
39
40
  return {
41
+ 'buyerId': value.buyerId,
40
42
  'needs': value.needs === undefined ? undefined : (value.needs.map(ExpressOrderNeed_1.ExpressOrderNeedToJSON)),
41
43
  };
42
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lcdp/api-react-rest-client",
3
- "version": "1.3.17-react-codegen.2756",
3
+ "version": "1.3.18-LDS-2686-publish-lcdp-api-as-one-react-s.2766",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },