@arrowsphere/api-client 3.180.0-rc-bdj-9 → 3.180.0-rc-bdj-11

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.
@@ -30,8 +30,8 @@ export declare type OrdersType = {
30
30
  export declare type OrderItemsType = {
31
31
  id?: number;
32
32
  itemData?: ItemData;
33
- migratedFrom?: GraphqlApiOrderLinkType;
34
- migratedTo?: GraphqlApiOrderLinkType;
33
+ migratedFrom?: GraphqlApiOrderLinkType[];
34
+ migratedTo?: GraphqlApiOrderLinkType[];
35
35
  name?: string;
36
36
  order?: OrdersType;
37
37
  priceRates?: SpecialPriceRateType[];
@@ -7,7 +7,7 @@ import { ErrorsType, PageType, Queries, SelectDataField, SelectableField } from
7
7
  import { ContactsType } from './entities/contact';
8
8
  import { SubscriptionType } from './entities/subscription';
9
9
  import { SpecialPriceRateType } from './entities/specialPriceRate';
10
- import { OrderItemsType, OrdersType } from './entities/order';
10
+ import { GraphqlApiOrderLinkType, OrderItemsType, OrdersType } from './entities/order';
11
11
  import { GraphqlApiProgramType, ProgramBenefitType, ProgramLevelType, ProgramRequirementType, ProgramLevelOptionGroupType, ProgramLevelOptionType, SubscribedProgramType, SubscriptionExtraFieldType } from './entities/program';
12
12
  import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
13
13
  import { UserHistoryType, UserType } from './entities/user';
@@ -43,6 +43,8 @@ declare type MissingFieldsOfEndCustomerSchema = {
43
43
  country?: CountrySchema;
44
44
  };
45
45
  declare type MissingFieldsOfOrderItemSchema = {
46
+ migratedFrom?: OrderLinkSchema;
47
+ migratedTo?: OrderLinkSchema;
46
48
  priceRates?: SpecialPriceRateSchema;
47
49
  };
48
50
  declare type MissingFieldsOfOrdersSchema = {
@@ -107,6 +109,7 @@ export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
107
109
  export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
108
110
  export declare type BaseCompanySchema = Schema<BaseCompanyType, boolean>;
109
111
  export declare type OrganizationUnitSchema = Schema<OrganizationUnitsType, boolean>;
112
+ export declare type OrderLinkSchema = Schema<GraphqlApiOrderLinkType, boolean>;
110
113
  export declare type PageSchema = Schema<PageType, boolean>;
111
114
  export declare type ProgramBenefitSchema = Schema<ProgramBenefitType, boolean>;
112
115
  export declare type ProgramLevelOptionSchema = Schema<ProgramLevelOptionType, 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-9",
7
+ "version": "3.180.0-rc-bdj-11",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",