@arrowsphere/api-client 3.184.0-rc-bdj-9 → 3.184.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 +12 -0
- package/build/orders/ordersClient.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.184.0] - 2025.04.01
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [orders] add archive order endpoint `archiveOrder`
|
|
10
|
+
- [orders] add cancel scheduled order endpoint `cancelOrder`
|
|
11
|
+
- [orders] add reject graded order endpoint `rejectGradedOrder`
|
|
12
|
+
- [orders] add resubmit order endpoint `resubmitOrder`
|
|
13
|
+
- [orders] add update contributor order endpoint `updateStaffContributorsOrder`
|
|
14
|
+
- [orders] add update additional information order endpoint `updateAdditionalInformationOrder`
|
|
15
|
+
- [graphql-api] add types `GraphqlApiContributorType`, `GraphqlApiStaffType`, `GraphqlApiContributorRoleType`, `GraphqlApiDisclaimerType`, `GraphqlApiEavType`, `GraphqlApiOrderStatusType`, `GraphqlApiOrderLinkType`, `GraphqlApiOrderHistoryType`
|
|
16
|
+
- [graphql-api] add many fields to types `OrdersType` `OrderItemsType`, `GraphqlApiProgramType`
|
|
17
|
+
|
|
6
18
|
## [3.183.0] - 2025.03.21
|
|
7
19
|
|
|
8
20
|
### Added
|
|
@@ -133,7 +133,7 @@ export declare enum UpdateOrderInputFields {
|
|
|
133
133
|
COLUMN_END_CUSTOMER_PO_NUMBER = "end_customer_PO_number"
|
|
134
134
|
}
|
|
135
135
|
export declare type UpdateOrderInputType = {
|
|
136
|
-
[UpdateOrderInputFields.COLUMN_PO_NUMBER]
|
|
136
|
+
[UpdateOrderInputFields.COLUMN_PO_NUMBER]?: string;
|
|
137
137
|
[UpdateOrderInputFields.COLUMN_END_CUSTOMER_PO_NUMBER]?: string;
|
|
138
138
|
};
|
|
139
139
|
export declare enum UpdateContributorItemOrderInputFields {
|
package/package.json
CHANGED