@arrowsphere/api-client 3.370.0 → 3.371.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 +4 -0
- package/build/graphqlApi/index.d.ts +1 -0
- package/build/graphqlApi/index.js +1 -0
- package/build/graphqlApi/types/entities/softwareProduct.d.ts +17 -0
- package/build/graphqlApi/types/entities/softwareProduct.js +3 -0
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +5 -1
- package/build/graphqlApi/types/graphqlApiQueries.js +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.371.0] - 2026.05.28
|
|
7
|
+
### Added
|
|
8
|
+
- [graphql-api] Add `softwareProduct` entity
|
|
9
|
+
|
|
6
10
|
## [3.370.0] - 2026.05.21
|
|
7
11
|
### Added
|
|
8
12
|
- [customer] New endpoint for GDAP relationship export
|
|
@@ -41,4 +41,5 @@ __exportStar(require("./types/entities/quoteVersion"), exports);
|
|
|
41
41
|
__exportStar(require("./types/entities/comment"), exports);
|
|
42
42
|
__exportStar(require("./types/entities/programAgreement"), exports);
|
|
43
43
|
__exportStar(require("./types/entities/providerAgreementHistory"), exports);
|
|
44
|
+
__exportStar(require("./types/entities/softwareProduct"), exports);
|
|
44
45
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare type SoftwareProductType = {
|
|
2
|
+
id?: string;
|
|
3
|
+
companyId?: number;
|
|
4
|
+
vendorName?: string;
|
|
5
|
+
programName?: string;
|
|
6
|
+
subscriptionId?: number;
|
|
7
|
+
productName?: string;
|
|
8
|
+
versionName?: string;
|
|
9
|
+
sku?: string;
|
|
10
|
+
tierMin?: number;
|
|
11
|
+
tierMax?: number;
|
|
12
|
+
sellPrice?: number;
|
|
13
|
+
price?: number;
|
|
14
|
+
unitSymbol?: string;
|
|
15
|
+
unitIfUsernoshow?: string;
|
|
16
|
+
priority?: number;
|
|
17
|
+
};
|
|
@@ -15,6 +15,7 @@ import { UserHistoryType, UserType } from './entities/user';
|
|
|
15
15
|
import { WorkgroupType } from './entities/workgroup';
|
|
16
16
|
import { GraphqlApiSupportLevel } from './entities/supportLevel';
|
|
17
17
|
import { GraphqlApiProgramAgreementType } from './entities/programAgreement';
|
|
18
|
+
import { SoftwareProductType } from './entities/softwareProduct';
|
|
18
19
|
import { ContactsSchema, ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema, SpecialPriceRateSchema } from './graphqlApiSchemas';
|
|
19
20
|
/**
|
|
20
21
|
* For field __args
|
|
@@ -148,7 +149,8 @@ export declare enum SelectDataField {
|
|
|
148
149
|
USER_HISTORY = "userHistory",
|
|
149
150
|
WORKGROUP = "workgroup",
|
|
150
151
|
SUPPORT_LEVEL = "supportLevel",
|
|
151
|
-
PROGRAM_AGREEMENT = "programAgreement"
|
|
152
|
+
PROGRAM_AGREEMENT = "programAgreement",
|
|
153
|
+
SOFTWARE_PRODUCT = "softwareProduct"
|
|
152
154
|
}
|
|
153
155
|
export declare type SelectAllResultType = {
|
|
154
156
|
[Queries.SELECT_ALL]: {
|
|
@@ -190,6 +192,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
190
192
|
[SelectDataField.WORKGROUP]?: WorkgroupType[];
|
|
191
193
|
[SelectDataField.SUPPORT_LEVEL]?: GraphqlApiSupportLevel[];
|
|
192
194
|
[SelectDataField.PROGRAM_AGREEMENT]?: GraphqlApiProgramAgreementType[];
|
|
195
|
+
[SelectDataField.SOFTWARE_PRODUCT]?: SoftwareProductType[];
|
|
193
196
|
};
|
|
194
197
|
export declare enum ErrorsField {
|
|
195
198
|
CODE = "code",
|
|
@@ -273,6 +276,7 @@ export declare type SelectOneResponseDataType = {
|
|
|
273
276
|
[SelectDataField.USER_HISTORY]?: UserHistoryType;
|
|
274
277
|
[SelectDataField.WORKGROUP]?: WorkgroupType;
|
|
275
278
|
[SelectDataField.SUPPORT_LEVEL]?: GraphqlApiSupportLevel;
|
|
279
|
+
[SelectDataField.SOFTWARE_PRODUCT]?: SoftwareProductType;
|
|
276
280
|
};
|
|
277
281
|
export declare enum QueryVariablesField {
|
|
278
282
|
AGGREGATOR_FILTER = "aggregatorFilter",
|
|
@@ -119,6 +119,7 @@ var SelectDataField;
|
|
|
119
119
|
SelectDataField["WORKGROUP"] = "workgroup";
|
|
120
120
|
SelectDataField["SUPPORT_LEVEL"] = "supportLevel";
|
|
121
121
|
SelectDataField["PROGRAM_AGREEMENT"] = "programAgreement";
|
|
122
|
+
SelectDataField["SOFTWARE_PRODUCT"] = "softwareProduct";
|
|
122
123
|
})(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
|
|
123
124
|
var ErrorsField;
|
|
124
125
|
(function (ErrorsField) {
|
|
@@ -20,6 +20,7 @@ import { GraphqlApiReportItemType, GraphqlApiReportStatusType, GraphqlApiReportT
|
|
|
20
20
|
import { GraphqlApiEavType } from './entities/eav';
|
|
21
21
|
import { GraphqlApiSupportLevel } from './entities/supportLevel';
|
|
22
22
|
import { GraphqlApiProgramAgreementType } from './entities/programAgreement';
|
|
23
|
+
import { SoftwareProductType } from './entities/softwareProduct';
|
|
23
24
|
import { GraphqlApiContributorRoleType, GraphqlApiStaffType } from './entities/contributor';
|
|
24
25
|
import { AttributesParameters } from '../../catalog';
|
|
25
26
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
@@ -154,6 +155,7 @@ export declare type UserHistorySchema = Schema<UserHistoryType, boolean>;
|
|
|
154
155
|
export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
|
|
155
156
|
export declare type SupportLevelSchema = Schema<GraphqlApiSupportLevel, boolean>;
|
|
156
157
|
export declare type ProgramAgreementSchema = Schema<GraphqlApiProgramAgreementType, boolean>;
|
|
158
|
+
export declare type SoftwareProductSchema = Schema<SoftwareProductType, boolean>;
|
|
157
159
|
export declare type ExportResultSchema = {
|
|
158
160
|
[SelectableField.DATA]?: SelectAllResponseDataSchema;
|
|
159
161
|
[SelectableField.ERRORS]?: ErrorsSchema;
|
|
@@ -189,6 +191,7 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
189
191
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
190
192
|
[SelectDataField.SUPPORT_LEVEL]?: SupportLevelSchema;
|
|
191
193
|
[SelectDataField.PROGRAM_AGREEMENT]?: ProgramAgreementSchema;
|
|
194
|
+
[SelectDataField.SOFTWARE_PRODUCT]?: SoftwareProductSchema;
|
|
192
195
|
};
|
|
193
196
|
export declare type SelectOneResultSchema = {
|
|
194
197
|
[SelectableField.DATA]?: SelectOneResponseDataSchema;
|
package/package.json
CHANGED