@arrowsphere/api-client 3.77.1-bdj.5 → 3.78.0-rc.bdj.1
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,11 @@
|
|
|
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.77.1] - 2023-12-15
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed get licenseRequest data structure
|
|
10
|
+
|
|
6
11
|
## [3.77.0] - 2023-12-13
|
|
7
12
|
|
|
8
13
|
### Changed
|
|
@@ -18,6 +18,7 @@ declare type BaseCompanyType = {
|
|
|
18
18
|
deletedAt?: string;
|
|
19
19
|
enabled?: boolean;
|
|
20
20
|
erpId?: string;
|
|
21
|
+
extraInformations?: CompanyExtraInformation[];
|
|
21
22
|
id?: number;
|
|
22
23
|
internalReference?: string;
|
|
23
24
|
locked?: boolean;
|
|
@@ -38,6 +39,16 @@ declare type CountableType = {
|
|
|
38
39
|
id?: number;
|
|
39
40
|
total?: number;
|
|
40
41
|
};
|
|
42
|
+
export declare type CompanyExtraInformation = {
|
|
43
|
+
id?: number;
|
|
44
|
+
companyId?: number;
|
|
45
|
+
code?: string;
|
|
46
|
+
label?: string;
|
|
47
|
+
name?: string;
|
|
48
|
+
type?: string;
|
|
49
|
+
value?: string;
|
|
50
|
+
programName?: string;
|
|
51
|
+
};
|
|
41
52
|
export declare type PartnerType = BaseCompanyType & {
|
|
42
53
|
contactsCount?: CountableType;
|
|
43
54
|
country?: CountryType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Merge, Schema } from 'type-fest';
|
|
2
|
-
import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/company';
|
|
2
|
+
import { ArrowCompanyType, CompanyExtraInformation, EndCustomerType, PartnerType } from './entities/company';
|
|
3
3
|
import { PartnertagType } from './entities/partnertag';
|
|
4
4
|
import { ContinentType, CountryType } from './entities/country';
|
|
5
5
|
import { WorkgroupType } from './entities/workgroup';
|
|
@@ -10,13 +10,16 @@ import { SubscriptionType } from './entities/subscription';
|
|
|
10
10
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
11
11
|
declare type MissingFieldsOfCompanySchema = {
|
|
12
12
|
contacts?: ContactsSchema;
|
|
13
|
+
extraInformations?: CompanyExtraInformationSchema;
|
|
13
14
|
partnerTags?: PartnertagSchema;
|
|
14
15
|
subscriptions?: SubscriptionSchema;
|
|
15
16
|
};
|
|
16
17
|
declare type MissingFieldsOfArrowCompanySchema = {
|
|
18
|
+
extraInformations?: CompanyExtraInformationSchema;
|
|
17
19
|
subscriptions?: SubscriptionSchema;
|
|
18
20
|
};
|
|
19
21
|
declare type MissingFieldsOfEndCustomerSchema = {
|
|
22
|
+
extraInformations?: CompanyExtraInformationSchema;
|
|
20
23
|
contacts?: ContactsSchema;
|
|
21
24
|
partnerTags?: PartnertagSchema;
|
|
22
25
|
partner?: PartnerSchema;
|
|
@@ -24,6 +27,7 @@ declare type MissingFieldsOfEndCustomerSchema = {
|
|
|
24
27
|
export declare type EndCustomerSchema = Merge<Schema<EndCustomerType, boolean>, MissingFieldsOfEndCustomerSchema>;
|
|
25
28
|
export declare type PartnerSchema = Merge<Schema<PartnerType, boolean>, MissingFieldsOfCompanySchema>;
|
|
26
29
|
export declare type ArrowCompanySchema = Merge<Schema<ArrowCompanyType, boolean>, MissingFieldsOfArrowCompanySchema>;
|
|
30
|
+
export declare type CompanyExtraInformationSchema = Schema<CompanyExtraInformation, boolean>;
|
|
27
31
|
export declare type ContactsSchema = Schema<ContactsType, boolean>;
|
|
28
32
|
export declare type ContinentSchema = Schema<ContinentType, boolean>;
|
|
29
33
|
export declare type CountrySchema = Schema<CountryType, boolean>;
|
package/build/orders/index.d.ts
CHANGED
|
@@ -8,4 +8,5 @@ export * from './entities/orders/products/program/productProgram';
|
|
|
8
8
|
export * from './entities/orders/products/products';
|
|
9
9
|
export * from '../shared/extraInformation/additionalExtraInformation';
|
|
10
10
|
export * from './entities/referenceLink';
|
|
11
|
+
export * from './types/orderStatus';
|
|
11
12
|
export * from './ordersClient';
|
package/build/orders/index.js
CHANGED
|
@@ -24,5 +24,6 @@ __exportStar(require("./entities/orders/products/program/productProgram"), expor
|
|
|
24
24
|
__exportStar(require("./entities/orders/products/products"), exports);
|
|
25
25
|
__exportStar(require("../shared/extraInformation/additionalExtraInformation"), exports);
|
|
26
26
|
__exportStar(require("./entities/referenceLink"), exports);
|
|
27
|
+
__exportStar(require("./types/orderStatus"), exports);
|
|
27
28
|
__exportStar(require("./ordersClient"), exports);
|
|
28
29
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.
|
|
7
|
+
"version": "3.78.0-rc.bdj.1",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|