@arrowsphere/api-client 3.178.0 → 3.179.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 +10 -0
- package/build/graphqlApi/types/entities/organizationUnit.d.ts +3 -2
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +4 -0
- package/build/graphqlApi/types/graphqlApiQueries.js +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.179.0] - 2025.03.06
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- [graphql-api] add organizationUnit to SelectAllResponseDataSchema
|
|
11
|
+
|
|
12
|
+
### Updated
|
|
13
|
+
|
|
14
|
+
- [graphql-api] rename field endCustomer to endCustomers and change type to array
|
|
15
|
+
|
|
6
16
|
## [3.178.0] - 2025.03.05
|
|
7
17
|
|
|
8
18
|
### Added
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { EndCustomerType } from './company';
|
|
1
|
+
import { EndCustomerType, PartnerType } from './company';
|
|
2
2
|
import { ContactsType } from './contact';
|
|
3
3
|
export declare type OrganizationUnitsType = {
|
|
4
4
|
id?: number;
|
|
5
5
|
contacts?: ContactsType[];
|
|
6
|
-
|
|
6
|
+
endCustomers?: EndCustomerType[];
|
|
7
7
|
endCustomersCount?: number;
|
|
8
8
|
name?: string;
|
|
9
|
+
partner?: PartnerType;
|
|
9
10
|
usersCounts?: number;
|
|
10
11
|
};
|
|
@@ -2,6 +2,7 @@ import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/compa
|
|
|
2
2
|
import { ContactsType } from './entities/contact';
|
|
3
3
|
import { ContinentType, CountryType } from './entities/country';
|
|
4
4
|
import { LicenseBudgetType } from './entities/licenseBudget';
|
|
5
|
+
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
5
6
|
import { PartnertagType } from './entities/partnertag';
|
|
6
7
|
import { GraphqlApiProgramType, ProgramLevelOptionGroupType, SubscribedProgramType } from './entities/program';
|
|
7
8
|
import { QuoteType } from './entities/quote';
|
|
@@ -121,6 +122,7 @@ export declare enum SelectDataField {
|
|
|
121
122
|
COUNTRY = "country",
|
|
122
123
|
END_CUSTOMER = "endCustomer",
|
|
123
124
|
LICENSE_BUDGET = "licenseBudget",
|
|
125
|
+
ORGANIZATION_UNIT = "organizationUnit",
|
|
124
126
|
PARTNER = "partner",
|
|
125
127
|
PARTNERTAG = "partnertag",
|
|
126
128
|
PROGRAM = "program",
|
|
@@ -149,6 +151,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
149
151
|
[SelectDataField.COUNTRY]?: CountryType[];
|
|
150
152
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType[];
|
|
151
153
|
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType[];
|
|
154
|
+
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitsType[];
|
|
152
155
|
[SelectDataField.PARTNER]?: PartnerType[];
|
|
153
156
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
154
157
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType[];
|
|
@@ -226,6 +229,7 @@ export declare type SelectOneResponseDataType = {
|
|
|
226
229
|
[SelectDataField.COUNTRY]?: CountryType;
|
|
227
230
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType;
|
|
228
231
|
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetType;
|
|
232
|
+
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitsType;
|
|
229
233
|
[SelectDataField.PARTNER]?: PartnerType;
|
|
230
234
|
[SelectDataField.PARTNERTAG]?: PartnertagType;
|
|
231
235
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramType;
|
|
@@ -96,6 +96,7 @@ var SelectDataField;
|
|
|
96
96
|
SelectDataField["COUNTRY"] = "country";
|
|
97
97
|
SelectDataField["END_CUSTOMER"] = "endCustomer";
|
|
98
98
|
SelectDataField["LICENSE_BUDGET"] = "licenseBudget";
|
|
99
|
+
SelectDataField["ORGANIZATION_UNIT"] = "organizationUnit";
|
|
99
100
|
SelectDataField["PARTNER"] = "partner";
|
|
100
101
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
101
102
|
SelectDataField["PROGRAM"] = "program";
|
|
@@ -142,6 +142,7 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
142
142
|
[SelectDataField.COUNTRY]?: CountrySchema;
|
|
143
143
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
144
144
|
[SelectDataField.LICENSE_BUDGET]?: LicenseBudgetSchema;
|
|
145
|
+
[SelectDataField.ORGANIZATION_UNIT]?: OrganizationUnitSchema;
|
|
145
146
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
146
147
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
147
148
|
[SelectDataField.PROGRAM]?: GraphqlApiProgramSchema;
|
package/package.json
CHANGED