@arrowsphere/api-client 3.188.0-rc-bdj-3 → 3.188.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.
@@ -12,7 +12,6 @@ export * from './types/entities/order';
12
12
  export * from './types/entities/organizationUnit';
13
13
  export * from './types/entities/partnertag';
14
14
  export * from './types/entities/program';
15
- export * from './types/entities/provider';
16
15
  export * from './types/entities/quote';
17
16
  export * from './types/entities/report';
18
17
  export * from './types/entities/subscription';
@@ -28,7 +28,6 @@ __exportStar(require("./types/entities/order"), exports);
28
28
  __exportStar(require("./types/entities/organizationUnit"), exports);
29
29
  __exportStar(require("./types/entities/partnertag"), exports);
30
30
  __exportStar(require("./types/entities/program"), exports);
31
- __exportStar(require("./types/entities/provider"), exports);
32
31
  __exportStar(require("./types/entities/quote"), exports);
33
32
  __exportStar(require("./types/entities/report"), exports);
34
33
  __exportStar(require("./types/entities/subscription"), exports);
@@ -3,7 +3,6 @@ import { ContactsType } from './contact';
3
3
  import { GraphqlApiContributorType } from './contributor';
4
4
  import { GraphqlApiEavType } from './eav';
5
5
  import { GraphqlApiProgramType } from './program';
6
- import { GraphqlApiProviderInfoType } from './provider';
7
6
  import { ItemData, QuoteType } from './quote';
8
7
  import { SpecialPriceRateType } from './specialPriceRate';
9
8
  import { GraphqlApiUnitType } from './unit';
@@ -43,7 +42,7 @@ export declare type OrderItemsType = {
43
42
  order?: OrdersType;
44
43
  priceRates?: SpecialPriceRateType[];
45
44
  program?: GraphqlApiProgramType;
46
- providerInfo?: GraphqlApiProviderInfoType;
45
+ provisionError?: string;
47
46
  reference?: string;
48
47
  status?: GraphqlApiOrderStatusType;
49
48
  };
@@ -23,5 +23,8 @@ export declare enum OrderStatusEnum {
23
23
  ORDER_VALIDATED = "Order Validated",
24
24
  SCHEDULED_ORDER = "Scheduled Order",
25
25
  CANCELED = "Canceled",
26
- PENDING_FINANCE_VALIDATION = "Pending Finance validation"
26
+ PENDING_FINANCE_VALIDATION = "Pending Finance validation",
27
+ VALIDATED_BY_PARTNER = "Validated by partner",
28
+ VALIDATED_BY_COUNTRY_ADMIN = "Validated by country admin",
29
+ VALIDATED_BY_ARROW_FINANCE = "Validated by arrow finance"
27
30
  }
@@ -28,5 +28,8 @@ var OrderStatusEnum;
28
28
  OrderStatusEnum["SCHEDULED_ORDER"] = "Scheduled Order";
29
29
  OrderStatusEnum["CANCELED"] = "Canceled";
30
30
  OrderStatusEnum["PENDING_FINANCE_VALIDATION"] = "Pending Finance validation";
31
+ OrderStatusEnum["VALIDATED_BY_PARTNER"] = "Validated by partner";
32
+ OrderStatusEnum["VALIDATED_BY_COUNTRY_ADMIN"] = "Validated by country admin";
33
+ OrderStatusEnum["VALIDATED_BY_ARROW_FINANCE"] = "Validated by arrow finance";
31
34
  })(OrderStatusEnum = exports.OrderStatusEnum || (exports.OrderStatusEnum = {}));
32
35
  //# sourceMappingURL=orderStatus.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.188.0-rc-bdj-3",
7
+ "version": "3.188.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",
@@ -1,11 +0,0 @@
1
- export declare type GraphqlApiProviderType = {
2
- id?: number;
3
- name?: string;
4
- };
5
- export declare type GraphqlApiProviderInfoType = {
6
- id?: number;
7
- errorMessage?: string;
8
- isProvisioned?: boolean;
9
- provider?: GraphqlApiProviderType;
10
- sku?: string;
11
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=provider.js.map