@arrowsphere/api-client 3.180.0-rc-bdj-5 → 3.180.0-rc-bdj-7

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.
@@ -5,6 +5,7 @@ export * from './types/entities/company';
5
5
  export * from './types/entities/country';
6
6
  export * from './types/entities/currency';
7
7
  export * from './types/entities/disclaimer';
8
+ export * from './types/entities/eav';
8
9
  export * from './types/entities/licenseBudget';
9
10
  export * from './types/entities/order';
10
11
  export * from './types/entities/organizationUnit';
@@ -21,6 +21,7 @@ __exportStar(require("./types/entities/company"), exports);
21
21
  __exportStar(require("./types/entities/country"), exports);
22
22
  __exportStar(require("./types/entities/currency"), exports);
23
23
  __exportStar(require("./types/entities/disclaimer"), exports);
24
+ __exportStar(require("./types/entities/eav"), exports);
24
25
  __exportStar(require("./types/entities/licenseBudget"), exports);
25
26
  __exportStar(require("./types/entities/order"), exports);
26
27
  __exportStar(require("./types/entities/organizationUnit"), exports);
@@ -0,0 +1,7 @@
1
+ export declare type GraphqlApiEavType = {
2
+ id?: number;
3
+ name?: string;
4
+ resourceId?: number;
5
+ type?: string;
6
+ value?: string;
7
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=eav.js.map
@@ -1,7 +1,8 @@
1
1
  import { ArrowCompanyType, EndCustomerType, PartnerType } from './company';
2
2
  import { ContactsType } from './contact';
3
+ import { GraphqlApiEavType } from './eav';
3
4
  import { GraphqlApiProgramType } from './program';
4
- import { ItemData } from './quote';
5
+ import { ItemData, QuoteType } from './quote';
5
6
  import { SpecialPriceRateType } from './specialPriceRate';
6
7
  import { GraphqlApiUnitType } from './unit';
7
8
  export declare type OrdersType = {
@@ -10,13 +11,18 @@ export declare type OrdersType = {
10
11
  arrowContact?: ContactsType;
11
12
  commitmentAmountTotal?: number;
12
13
  createdAt?: string;
14
+ eavs?: GraphqlApiEavType[];
13
15
  endCustomer?: EndCustomerType;
14
16
  endCustomerContact?: ContactsType;
17
+ endCustomerPoNumber?: string;
18
+ fulfilledAt?: string;
15
19
  items?: OrderItemsType[];
16
20
  partner?: PartnerType;
17
21
  partnerContact?: ContactsType;
18
- poNumber?: string;
22
+ partnerPoNumber?: string;
23
+ quote?: QuoteType;
19
24
  reference?: string;
25
+ scheludedAt?: string;
20
26
  status?: GraphqlApiOrderStatusType;
21
27
  totalRecurringPrice?: number;
22
28
  updatedAt?: string;
@@ -17,6 +17,7 @@ import { ItemData, QuoteItemType, QuoteType } from './entities/quote';
17
17
  import { QuoteVersion } from './entities/quoteVersion';
18
18
  import { Comment } from './entities/comment';
19
19
  import { GraphqlApiReportItemType, GraphqlApiReportStatusType, GraphqlApiReportType } from './entities/report';
20
+ import { GraphqlApiEavType } from './entities/eav';
20
21
  export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
21
22
  declare type MissingFieldsOfCompanySchema = {
22
23
  contacts?: ContactsSchema;
@@ -45,6 +46,7 @@ declare type MissingFieldsOfOrderItemSchema = {
45
46
  priceRates?: SpecialPriceRateSchema;
46
47
  };
47
48
  declare type MissingFieldsOfOrdersSchema = {
49
+ eavs?: GraphqlApiEavSchema;
48
50
  items?: OrderItemsSchema;
49
51
  };
50
52
  declare type MissingFieldsOfContactSchema = {
@@ -100,6 +102,7 @@ export declare type CompanyExtraInformationSchema = Schema<CompanyExtraInformati
100
102
  export declare type ContinentSchema = Schema<ContinentType, boolean>;
101
103
  export declare type CountrySchema = Merge<Schema<CountryType, boolean>, MissingFieldsOfCountrySchema>;
102
104
  export declare type CurrencySchema = Schema<CurrencyType, boolean>;
105
+ export declare type GraphqlApiEavSchema = Schema<GraphqlApiEavType, boolean>;
103
106
  export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
104
107
  export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
105
108
  export declare type BaseCompanySchema = Schema<BaseCompanyType, 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.180.0-rc-bdj-5",
7
+ "version": "3.180.0-rc-bdj-7",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",