@arrowsphere/api-client 3.119.0-rc-bdj.3 → 3.119.0-rc-bdj.5
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/build/graphqlApi/index.d.ts +1 -0
- package/build/graphqlApi/index.js +1 -0
- package/build/graphqlApi/types/entities/contact.d.ts +2 -0
- package/build/graphqlApi/types/entities/organizationUnit.d.ts +4 -0
- package/build/graphqlApi/types/entities/organizationUnit.js +3 -0
- package/build/graphqlApi/types/entities/program.d.ts +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +10 -2
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export * from './types/entities/company';
|
|
|
5
5
|
export * from './types/entities/country';
|
|
6
6
|
export * from './types/entities/licenseBudget';
|
|
7
7
|
export * from './types/entities/order';
|
|
8
|
+
export * from './types/entities/organizationUnit';
|
|
8
9
|
export * from './types/entities/partnertag';
|
|
9
10
|
export * from './types/entities/subscription';
|
|
10
11
|
export * from './types/entities/specialPriceRate';
|
|
@@ -21,6 +21,7 @@ __exportStar(require("./types/entities/company"), exports);
|
|
|
21
21
|
__exportStar(require("./types/entities/country"), exports);
|
|
22
22
|
__exportStar(require("./types/entities/licenseBudget"), exports);
|
|
23
23
|
__exportStar(require("./types/entities/order"), exports);
|
|
24
|
+
__exportStar(require("./types/entities/organizationUnit"), exports);
|
|
24
25
|
__exportStar(require("./types/entities/partnertag"), exports);
|
|
25
26
|
__exportStar(require("./types/entities/subscription"), exports);
|
|
26
27
|
__exportStar(require("./types/entities/specialPriceRate"), exports);
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OrganizationUnitsType } from './organizationUnit';
|
|
1
2
|
export declare type ContactsType = {
|
|
2
3
|
id?: number;
|
|
3
4
|
active?: boolean;
|
|
@@ -8,6 +9,7 @@ export declare type ContactsType = {
|
|
|
8
9
|
firstname?: string;
|
|
9
10
|
lastname?: string;
|
|
10
11
|
locked?: boolean;
|
|
12
|
+
organizationUnits?: OrganizationUnitsType[];
|
|
11
13
|
phone?: string;
|
|
12
14
|
status?: string;
|
|
13
15
|
tseAccountStatus?: string;
|
|
@@ -13,6 +13,7 @@ import { VendorsType } from './entities/vendor';
|
|
|
13
13
|
import { SubscribedProgramType } from './entities/program';
|
|
14
14
|
import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
|
|
15
15
|
import { UserHistoryType, UserType } from './entities/user';
|
|
16
|
+
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
16
17
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
17
18
|
declare type MissingFieldsOfCompanySchema = {
|
|
18
19
|
contacts?: ContactsSchema;
|
|
@@ -40,9 +41,17 @@ declare type MissingFieldsOfOrderItemSchema = {
|
|
|
40
41
|
declare type MissingFieldsOfOrdersSchema = {
|
|
41
42
|
items?: OrderItemsSchema;
|
|
42
43
|
};
|
|
44
|
+
declare type MissingFieldsOfContactSchema = {
|
|
45
|
+
organizationUnits?: OrganizationUnitSchema;
|
|
46
|
+
};
|
|
47
|
+
declare type MissingFieldsOfUserSchema = {
|
|
48
|
+
contact?: ContactsSchema;
|
|
49
|
+
};
|
|
43
50
|
declare type MissingFieldsOfLicenseBudgetSchema = {
|
|
44
51
|
notifications?: LicenseBudgetNotificationSchema;
|
|
45
52
|
};
|
|
53
|
+
export declare type ContactsSchema = Merge<Schema<ContactsType, boolean>, MissingFieldsOfContactSchema>;
|
|
54
|
+
export declare type UserSchema = Merge<Schema<UserType, boolean>, MissingFieldsOfUserSchema>;
|
|
46
55
|
export declare type LicenseBudgetSchema = Merge<Schema<LicenseBudgetType, boolean>, MissingFieldsOfLicenseBudgetSchema>;
|
|
47
56
|
export declare type OrderItemsSchema = Merge<Schema<OrderItemsType, boolean>, MissingFieldsOfOrderItemSchema>;
|
|
48
57
|
export declare type OrdersSchema = Merge<Schema<OrdersType, boolean>, MissingFieldsOfOrdersSchema>;
|
|
@@ -50,17 +59,16 @@ export declare type EndCustomerSchema = Merge<Schema<EndCustomerType, boolean>,
|
|
|
50
59
|
export declare type PartnerSchema = Merge<Schema<PartnerType, boolean>, MissingFieldsOfCompanySchema>;
|
|
51
60
|
export declare type ArrowCompanySchema = Merge<Schema<ArrowCompanyType, boolean>, MissingFieldsOfArrowCompanySchema>;
|
|
52
61
|
export declare type CompanyExtraInformationSchema = Schema<CompanyExtraInformation, boolean>;
|
|
53
|
-
export declare type ContactsSchema = Schema<ContactsType, boolean>;
|
|
54
62
|
export declare type ContinentSchema = Schema<ContinentType, boolean>;
|
|
55
63
|
export declare type CountrySchema = Schema<CountryType, boolean>;
|
|
56
64
|
export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
57
65
|
export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
|
|
66
|
+
export declare type OrganizationUnitSchema = Schema<OrganizationUnitsType, boolean>;
|
|
58
67
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
59
68
|
export declare type ProgramSchema = Schema<ProgramType, boolean>;
|
|
60
69
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
61
70
|
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
62
71
|
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
|
63
|
-
export declare type UserSchema = Schema<UserType, boolean>;
|
|
64
72
|
export declare type UserHistorySchema = Schema<UserHistoryType, boolean>;
|
|
65
73
|
export declare type VendorSchema = Schema<VendorsType, boolean>;
|
|
66
74
|
export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
|
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.119.0-rc-bdj.
|
|
7
|
+
"version": "3.119.0-rc-bdj.5",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|