@arrowsphere/api-client 3.171.1 → 3.172.0-rc-sbe-2
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,11 +3,6 @@
|
|
|
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.171.1] - 2025.02.11
|
|
7
|
-
|
|
8
|
-
### Updated
|
|
9
|
-
- [graphql-api] add fields to "Subscription" and "Program" schema
|
|
10
|
-
|
|
11
6
|
## [3.171.0] - 2025.02.11
|
|
12
7
|
|
|
13
8
|
### Added
|
|
@@ -3,16 +3,9 @@ import { SubscriptionType } from './subscription';
|
|
|
3
3
|
import { VendorsType } from './vendor';
|
|
4
4
|
export declare type GraphqlApiProgramType = {
|
|
5
5
|
id?: number;
|
|
6
|
-
bypassReport?: number;
|
|
7
6
|
internalName?: string;
|
|
8
7
|
name?: string;
|
|
9
8
|
vendor?: VendorsType;
|
|
10
|
-
type?: GraphqlApiProgramTypeType;
|
|
11
|
-
};
|
|
12
|
-
export declare type GraphqlApiProgramTypeType = {
|
|
13
|
-
id?: number;
|
|
14
|
-
accronym?: string;
|
|
15
|
-
name?: string;
|
|
16
9
|
};
|
|
17
10
|
export declare type GraphqlApiProgramLevelType = {
|
|
18
11
|
id?: number;
|
|
@@ -3,16 +3,10 @@ import { ContactsType } from './contact';
|
|
|
3
3
|
import { GraphqlApiProgramLevelType, GraphqlApiProgramType } from './program';
|
|
4
4
|
export declare type SubscriptionType = {
|
|
5
5
|
id?: number;
|
|
6
|
-
autoReporting?: boolean;
|
|
7
6
|
company?: PartnerType;
|
|
8
|
-
endedAt?: string;
|
|
9
7
|
level?: GraphqlApiProgramLevelType;
|
|
10
8
|
localContact?: ContactsType;
|
|
11
|
-
orderId?: string;
|
|
12
9
|
partnerContact?: ContactsType;
|
|
13
10
|
partnerId?: string;
|
|
14
11
|
program?: GraphqlApiProgramType;
|
|
15
|
-
startedAt?: string;
|
|
16
|
-
userNote?: string;
|
|
17
|
-
validatedAt?: string;
|
|
18
12
|
};
|
|
@@ -7,6 +7,7 @@ export declare enum CreateOrderInputFields {
|
|
|
7
7
|
COLUMN_CUSTOMER = "customer",
|
|
8
8
|
COLUMN_REFERENCE = "reference",
|
|
9
9
|
COLUMN_PO_NUMBER = "ponumber",
|
|
10
|
+
COLUMN_END_CUSTOMER_PO_NUMBER = "endCustomerPONumber",
|
|
10
11
|
COLUMN_PRODUCTS = "products",
|
|
11
12
|
COLUMN_ARROW_SPHERE_PRICE_BAND_SKU = "arrowSpherePriceBandSku",
|
|
12
13
|
COLUMN_SKU = "sku",
|
|
@@ -58,6 +59,7 @@ export declare type CreateOrderInputType = {
|
|
|
58
59
|
[CreateOrderInputFields.COLUMN_CUSTOMER]: {
|
|
59
60
|
[CreateOrderInputFields.COLUMN_REFERENCE]: string;
|
|
60
61
|
[CreateOrderInputFields.COLUMN_PO_NUMBER]?: string;
|
|
62
|
+
[CreateOrderInputFields.COLUMN_END_CUSTOMER_PO_NUMBER]?: string;
|
|
61
63
|
};
|
|
62
64
|
[CreateOrderInputFields.COLUMN_SCENARIO]?: scenarioType;
|
|
63
65
|
[CreateOrderInputFields.COLUMN_SCHEDULE_DATE]?: string;
|
|
@@ -11,6 +11,7 @@ var CreateOrderInputFields;
|
|
|
11
11
|
CreateOrderInputFields["COLUMN_CUSTOMER"] = "customer";
|
|
12
12
|
CreateOrderInputFields["COLUMN_REFERENCE"] = "reference";
|
|
13
13
|
CreateOrderInputFields["COLUMN_PO_NUMBER"] = "ponumber";
|
|
14
|
+
CreateOrderInputFields["COLUMN_END_CUSTOMER_PO_NUMBER"] = "endCustomerPONumber";
|
|
14
15
|
CreateOrderInputFields["COLUMN_PRODUCTS"] = "products";
|
|
15
16
|
CreateOrderInputFields["COLUMN_ARROW_SPHERE_PRICE_BAND_SKU"] = "arrowSpherePriceBandSku";
|
|
16
17
|
CreateOrderInputFields["COLUMN_SKU"] = "sku";
|
package/package.json
CHANGED