@arrowsphere/api-client 3.170.0-rc-bdj-1 → 3.170.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,10 +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.170.0] - 2025.02.11
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [graphql-api] add entities report reportStatus
|
|
10
|
+
|
|
6
11
|
## [3.169.0] - 2025.02.07
|
|
7
12
|
|
|
8
13
|
### Added
|
|
9
|
-
- [order] Define a new type for programs
|
|
10
14
|
- [graphql-api] add queries getLocalContact, getSpecialPriceRatesHistory
|
|
11
15
|
### Updated
|
|
12
16
|
- [graphql-api] update query findOneById
|
|
@@ -5,7 +5,7 @@ import { LicenseBudgetType } from './entities/licenseBudget';
|
|
|
5
5
|
import { PartnertagType } from './entities/partnertag';
|
|
6
6
|
import { GraphqlApiProgramType, SubscribedProgramType } from './entities/program';
|
|
7
7
|
import { QuoteType } from './entities/quote';
|
|
8
|
-
import { GraphqlApiReportType } from './entities/report';
|
|
8
|
+
import { GraphqlApiReportStatusType, GraphqlApiReportType } from './entities/report';
|
|
9
9
|
import { SpecialPriceRateType } from './entities/specialPriceRate';
|
|
10
10
|
import { SubscriptionType } from './entities/subscription';
|
|
11
11
|
import { UserHistoryType, UserType } from './entities/user';
|
|
@@ -126,6 +126,7 @@ export declare enum SelectDataField {
|
|
|
126
126
|
PROGRAM = "program",
|
|
127
127
|
QUOTE = "quote",
|
|
128
128
|
REPORT = "report",
|
|
129
|
+
REPORT_STATUS = "reportStatus",
|
|
129
130
|
SPECIAL_PRICE_RATE = "specialPriceRate",
|
|
130
131
|
SUBSCRIBED_PROGRAM = "subscribedProgram",
|
|
131
132
|
SUBSCRIPTION = "subscription",
|
|
@@ -151,6 +152,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
151
152
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType[];
|
|
152
153
|
[SelectDataField.QUOTE]?: QuoteType[];
|
|
153
154
|
[SelectDataField.REPORT]?: GraphqlApiReportType[];
|
|
155
|
+
[SelectDataField.REPORT_STATUS]?: GraphqlApiReportStatusType[];
|
|
154
156
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
|
|
155
157
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
|
|
156
158
|
[SelectDataField.USER]?: UserType[];
|
|
@@ -225,6 +227,7 @@ export declare type SelectOneResponseDataType = {
|
|
|
225
227
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType;
|
|
226
228
|
[SelectDataField.QUOTE]?: QuoteType;
|
|
227
229
|
[SelectDataField.REPORT]?: GraphqlApiReportType;
|
|
230
|
+
[SelectDataField.REPORT_STATUS]?: GraphqlApiReportStatusType;
|
|
228
231
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
|
|
229
232
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionType;
|
|
230
233
|
[SelectDataField.USER]?: UserType;
|
|
@@ -101,6 +101,7 @@ var SelectDataField;
|
|
|
101
101
|
SelectDataField["PROGRAM"] = "program";
|
|
102
102
|
SelectDataField["QUOTE"] = "quote";
|
|
103
103
|
SelectDataField["REPORT"] = "report";
|
|
104
|
+
SelectDataField["REPORT_STATUS"] = "reportStatus";
|
|
104
105
|
SelectDataField["SPECIAL_PRICE_RATE"] = "specialPriceRate";
|
|
105
106
|
SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
|
|
106
107
|
SelectDataField["SUBSCRIPTION"] = "subscription";
|
|
@@ -17,7 +17,7 @@ import { CurrencyType } from './entities/currency';
|
|
|
17
17
|
import { ItemData, QuoteItemType, QuoteType } from './entities/quote';
|
|
18
18
|
import { QuoteVersion } from './entities/quoteVersion';
|
|
19
19
|
import { Comment } from './entities/comment';
|
|
20
|
-
import { GraphqlApiReportItemType, GraphqlApiReportType } from './entities/report';
|
|
20
|
+
import { GraphqlApiReportItemType, GraphqlApiReportStatusType, GraphqlApiReportType } from './entities/report';
|
|
21
21
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
22
22
|
declare type MissingFieldsOfCompanySchema = {
|
|
23
23
|
contacts?: ContactsSchema;
|
|
@@ -104,6 +104,7 @@ export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotifi
|
|
|
104
104
|
export declare type OrganizationUnitSchema = Schema<OrganizationUnitsType, boolean>;
|
|
105
105
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
106
106
|
export declare type GraphqlApiProgramSchema = Schema<GraphqlApiProgramType, boolean>;
|
|
107
|
+
export declare type ReportStatusSchema = Schema<GraphqlApiReportStatusType, boolean>;
|
|
107
108
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
108
109
|
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
109
110
|
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
|
@@ -126,6 +127,7 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
126
127
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramSchema;
|
|
127
128
|
[SelectDataField.QUOTE]?: QuoteSchema;
|
|
128
129
|
[SelectDataField.REPORT]?: ReportSchema;
|
|
130
|
+
[SelectDataField.REPORT_STATUS]?: ReportStatusSchema;
|
|
129
131
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
130
132
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
|
|
131
133
|
[SelectDataField.USER]?: UserSchema;
|
|
@@ -147,6 +149,7 @@ export declare type SelectOneResponseDataSchema = {
|
|
|
147
149
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramSchema;
|
|
148
150
|
[SelectDataField.QUOTE]?: QuoteSchema;
|
|
149
151
|
[SelectDataField.REPORT]?: ReportSchema;
|
|
152
|
+
[SelectDataField.REPORT_STATUS]?: ReportStatusSchema;
|
|
150
153
|
[SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
|
|
151
154
|
[SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
|
|
152
155
|
[SelectDataField.USER]?: UserSchema;
|
package/package.json
CHANGED