@arrowsphere/api-client 3.145.0-rc-cpu-1 → 3.145.0

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/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
4
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
- ## [3.145.0] - 2024.10.04
6
+ ## [3.145.0] - 2024.10.07
7
7
 
8
8
  ### Added
9
9
  - [orders] Added organizationUnitRef property in order entity
@@ -121,7 +121,7 @@ export declare type CreateOrderProductType = {
121
121
  export declare enum UpdateOrderInputFields {
122
122
  COLUMN_PO_NUMBER = "PO_number"
123
123
  }
124
- export declare type UpdateOrderType = {
124
+ export declare type UpdateOrderInputType = {
125
125
  [UpdateOrderInputFields.COLUMN_PO_NUMBER]: string;
126
126
  };
127
127
  export declare class OrdersClient extends AbstractRestfulClient {
@@ -132,5 +132,5 @@ export declare class OrdersClient extends AbstractRestfulClient {
132
132
  create(postData: CreateOrderInputType, parameters?: Parameters): Promise<GetResult<ReferenceLink>>;
133
133
  getListOrders(perPage?: number, page?: number, parameters?: Parameters): Promise<GetResult<DataListOrders>>;
134
134
  getOrder(orderReference: string, parameters?: Parameters): Promise<GetResult<DataListOrders>>;
135
- updateOrder(orderReference: string, payload: UpdateOrderType, parameters?: Parameters): Promise<GetResult<UpdateOrderResult>>;
135
+ updateOrder(orderReference: string, payload: UpdateOrderInputType, parameters?: Parameters): Promise<GetResult<UpdateOrderResult>>;
136
136
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.145.0-rc-cpu-1",
7
+ "version": "3.145.0",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",