@arrowsphere/api-client 3.378.0 → 3.378.2
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,6 +3,14 @@
|
|
|
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.378.2] - 2026.06.24
|
|
7
|
+
### Added
|
|
8
|
+
- [graphql-api] Add `fromId` and `toId` fields to `GraphqlApiOrderLinkType`
|
|
9
|
+
|
|
10
|
+
## [3.378.1] - 2026.06.23
|
|
11
|
+
### Updated
|
|
12
|
+
- [customer] fix GDAP relationship export payload
|
|
13
|
+
|
|
6
14
|
## [3.378.0] - 2026.06.22
|
|
7
15
|
### Added
|
|
8
16
|
- [catalog] Add `bundleBaseProducts` field to `ProductType` GraphQL type
|
|
@@ -145,7 +145,7 @@ export declare type BulkActionInputType = {
|
|
|
145
145
|
[UploadAttachmentInputFields.COLUMN_FILE_ENCODED]: string;
|
|
146
146
|
};
|
|
147
147
|
export declare enum ExportGdapRelationshipInputFields {
|
|
148
|
-
COLUMN_CUSTOMERS_REF = "
|
|
148
|
+
COLUMN_CUSTOMERS_REF = "customerRefs"
|
|
149
149
|
}
|
|
150
150
|
export declare type PostExportGdapListType = {
|
|
151
151
|
[ExportGdapRelationshipInputFields.COLUMN_CUSTOMERS_REF]: string[];
|
|
@@ -69,7 +69,7 @@ var UploadAttachmentInputFields;
|
|
|
69
69
|
})(UploadAttachmentInputFields = exports.UploadAttachmentInputFields || (exports.UploadAttachmentInputFields = {}));
|
|
70
70
|
var ExportGdapRelationshipInputFields;
|
|
71
71
|
(function (ExportGdapRelationshipInputFields) {
|
|
72
|
-
ExportGdapRelationshipInputFields["COLUMN_CUSTOMERS_REF"] = "
|
|
72
|
+
ExportGdapRelationshipInputFields["COLUMN_CUSTOMERS_REF"] = "customerRefs";
|
|
73
73
|
})(ExportGdapRelationshipInputFields = exports.ExportGdapRelationshipInputFields || (exports.ExportGdapRelationshipInputFields = {}));
|
|
74
74
|
class CustomersClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
75
75
|
constructor() {
|
package/package.json
CHANGED