@arrowsphere/api-client 3.219.0 → 3.220.0-rc-cpe-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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare type QueryProductArguments = {
|
|
5
5
|
paginate?: PaginateArgument;
|
|
6
|
-
searchBody:
|
|
6
|
+
searchBody: SearchBodyProductArgument;
|
|
7
7
|
};
|
|
8
8
|
/**
|
|
9
9
|
* For field __args
|
|
@@ -61,6 +61,9 @@ export declare type SearchBodyArgument = {
|
|
|
61
61
|
sort?: SortArgument | SortArgument[];
|
|
62
62
|
topOffers?: boolean;
|
|
63
63
|
};
|
|
64
|
+
export declare type SearchBodyProductArgument = SearchBodyArgument & {
|
|
65
|
+
ignoreCatalogPlan?: boolean;
|
|
66
|
+
};
|
|
64
67
|
export declare type SearchProductFilterArgument = {
|
|
65
68
|
name: string;
|
|
66
69
|
value?: string | string[] | string[][] | null;
|
|
@@ -71,7 +71,7 @@ export declare type IssueType = {
|
|
|
71
71
|
[IssueFields.COLUMN_TITLE]: string;
|
|
72
72
|
[IssueFields.COLUMN_DESCRIPTION]: string;
|
|
73
73
|
[IssueFields.COLUMN_TOPIC_ID]: string;
|
|
74
|
-
[IssueFields.COLUMN_TOPIC]
|
|
74
|
+
[IssueFields.COLUMN_TOPIC]?: string;
|
|
75
75
|
[IssueFields.COLUMN_END_CUSTOMER_REF]?: string;
|
|
76
76
|
[IssueFields.COLUMN_LANGUAGE]?: string;
|
|
77
77
|
[IssueFields.COLUMN_OFFER]?: IssueOfferType;
|
|
@@ -123,7 +123,7 @@ export declare class Issue extends AbstractEntity<IssueType> {
|
|
|
123
123
|
get title(): string;
|
|
124
124
|
get description(): string;
|
|
125
125
|
get topicId(): string;
|
|
126
|
-
get topic(): string;
|
|
126
|
+
get topic(): string | undefined;
|
|
127
127
|
get endCustomerRef(): string | undefined;
|
|
128
128
|
get language(): string | undefined;
|
|
129
129
|
get offer(): IssueOffer | undefined;
|
package/package.json
CHANGED