@arrowsphere/api-client 3.57.1 → 3.58.0-rc.pfe.1
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 +6 -0
- package/build/graphqlApi/types/entities/quote.d.ts +10 -0
- package/build/graphqlApi/types/entities/quote.js +3 -0
- package/build/graphqlApi/types/graphqlApiQueries.d.ts +3 -0
- package/build/graphqlApi/types/graphqlApiQueries.js +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.58.0] - 2023-10-19
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Added quote entity to the graphql API
|
|
11
|
+
|
|
6
12
|
## [3.57.1] - 2023-10-13
|
|
7
13
|
|
|
8
14
|
### Changed
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ArrowCompanyType, EndCustomerType, PartnerType } from './company';
|
|
2
|
+
export declare type QuoteType = {
|
|
3
|
+
id?: number;
|
|
4
|
+
arrowCompany?: ArrowCompanyType;
|
|
5
|
+
createdAt?: string;
|
|
6
|
+
endCustomer?: EndCustomerType;
|
|
7
|
+
partner?: PartnerType;
|
|
8
|
+
reference?: string;
|
|
9
|
+
updatedAt?: string;
|
|
10
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/company';
|
|
2
2
|
import { ContinentType, CountryType } from './entities/country';
|
|
3
3
|
import { PartnertagType } from './entities/partnertag';
|
|
4
|
+
import { QuoteType } from './entities/quote';
|
|
4
5
|
import { WorkgroupType } from './entities/workgroup';
|
|
5
6
|
import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema } from './graphqlApiSchemas';
|
|
6
7
|
/**
|
|
@@ -105,6 +106,7 @@ export declare enum SelectDataField {
|
|
|
105
106
|
END_CUSTOMER = "endCustomer",
|
|
106
107
|
PARTNER = "partner",
|
|
107
108
|
PARTNERTAG = "partnertag",
|
|
109
|
+
QUOTE = "quote",
|
|
108
110
|
WORKGROUP = "workgroup"
|
|
109
111
|
}
|
|
110
112
|
export declare type SelectAllResultType = {
|
|
@@ -121,6 +123,7 @@ export declare type SelectAllResponseDataType = {
|
|
|
121
123
|
[SelectDataField.END_CUSTOMER]?: EndCustomerType[];
|
|
122
124
|
[SelectDataField.PARTNER]?: PartnerType[];
|
|
123
125
|
[SelectDataField.PARTNERTAG]?: PartnertagType[];
|
|
126
|
+
[SelectDataField.QUOTE]?: QuoteType[];
|
|
124
127
|
[SelectDataField.WORKGROUP]?: WorkgroupType[];
|
|
125
128
|
};
|
|
126
129
|
export declare enum ErrorsField {
|
|
@@ -89,6 +89,7 @@ var SelectDataField;
|
|
|
89
89
|
SelectDataField["END_CUSTOMER"] = "endCustomer";
|
|
90
90
|
SelectDataField["PARTNER"] = "partner";
|
|
91
91
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
92
|
+
SelectDataField["QUOTE"] = "quote";
|
|
92
93
|
SelectDataField["WORKGROUP"] = "workgroup";
|
|
93
94
|
})(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
|
|
94
95
|
var ErrorsField;
|
|
@@ -2,6 +2,7 @@ import { Merge, Schema } from 'type-fest';
|
|
|
2
2
|
import { ArrowCompanyType, EndCustomerType, PartnerType } from './entities/company';
|
|
3
3
|
import { PartnertagType } from './entities/partnertag';
|
|
4
4
|
import { ContinentType, CountryType } from './entities/country';
|
|
5
|
+
import { QuoteType } from './entities/quote';
|
|
5
6
|
import { WorkgroupType } from './entities/workgroup';
|
|
6
7
|
import { ErrorsType, PageType, Queries, SelectDataField, SelectableField } from './graphqlApiQueries';
|
|
7
8
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
@@ -19,6 +20,7 @@ export declare type ContinentSchema = Schema<ContinentType, boolean>;
|
|
|
19
20
|
export declare type CountrySchema = Schema<CountryType, boolean>;
|
|
20
21
|
export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
21
22
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
23
|
+
export declare type QuoteSchema = Schema<QuoteType, boolean>;
|
|
22
24
|
export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
|
|
23
25
|
export declare type SelectAllResultSchema = {
|
|
24
26
|
[SelectableField.DATA]?: SelectAllResponseDataSchema;
|
|
@@ -32,6 +34,7 @@ export declare type SelectAllResponseDataSchema = {
|
|
|
32
34
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
33
35
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
34
36
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
37
|
+
[SelectDataField.QUOTE]?: QuoteSchema;
|
|
35
38
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
36
39
|
};
|
|
37
40
|
export declare type SelectOneResultSchema = {
|
|
@@ -45,6 +48,7 @@ export declare type SelectOneResponseDataSchema = {
|
|
|
45
48
|
[SelectDataField.END_CUSTOMER]?: EndCustomerSchema;
|
|
46
49
|
[SelectDataField.PARTNER]?: PartnerSchema;
|
|
47
50
|
[SelectDataField.PARTNERTAG]?: PartnertagSchema;
|
|
51
|
+
[SelectDataField.QUOTE]?: QuoteSchema;
|
|
48
52
|
[SelectDataField.WORKGROUP]?: WorkgroupSchema;
|
|
49
53
|
};
|
|
50
54
|
export declare type SelectAllQuerySchema = {
|
package/package.json
CHANGED