@rlvt/datasources-query-openapi-client 1.0.105 → 1.0.108
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/build/api.d.ts +47 -50
- package/build/api.js +1 -1
- package/build/definitions.d.ts +3 -24
- package/build/definitions.js +3 -7
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from "axios";
|
|
2
|
-
import type { WorkerFetcherFetchOpts, IngesterFetcherFetchOpts, TrackingFetcherFetchOpts, ProxyFetcherFetchOpts, CarrefourStoresRetailsFetcherFetchOpts, CarrefourStoresWithDriveSlotsFetcherFetchOpts, CarrefourStoresWithFuelFetcherFetchOpts, BestWesternHotelsFetcherFetchOpts, FdjBetsFetcherFetchOpts, SarenzaSizesFetcherFetchOpts,
|
|
2
|
+
import type { WorkerFetcherFetchOpts, IngesterFetcherFetchOpts, TrackingFetcherFetchOpts, ProxyFetcherFetchOpts, CarrefourStoresRetailsFetcherFetchOpts, CarrefourStoresWithDriveSlotsFetcherFetchOpts, CarrefourStoresWithFuelFetcherFetchOpts, BestWesternHotelsFetcherFetchOpts, FdjBetsFetcherFetchOpts, SarenzaSizesFetcherFetchOpts, RenaultPricesFetcherFetchOpts, CPMeta, WorkerFetcherCountOpts, IngesterFetcherCountOpts, TrackingFetcherCountOpts, ProxyFetcherCountOpts, CarrefourStoresRetailsFetcherCountOpts, CarrefourStoresWithDriveSlotsFetcherCountOpts, BestWesternHotelsFetcherCountOpts, FdjBetsFetcherCountOpts, SarenzaSizesFetcherCountOpts, RenaultPricesFetcherCountOpts, WorkerFetcherFetchOpts_Without_Query_Limit_Cp_Geo_Sort, DatasourceLocation, DatasourceGeneric, DatasourceProduct, DatasourceAnalytics, IngesterFetcherFetchOpts_Without_Query_Limit_Sort_Group, TrackingFetcherFetchOpts_Without_Query_Limit_Date_ExcludeQuery_UserIds_ExcludeDate, ProxyFetcherFetchOpts_Without_Query, CarrefourStoresRetailsFetcherFetchOpts_Without_Query, CarrefourStoresWithDriveSlotsFetcherFetchOpts_Without_Query, CarrefourStoresWithFuelFetcherFetchOpts_Without_Query, BestWesternHotelsFetcherFetchOpts_Without_Query_Cp_Geo_Sort, FdjBetsFetcherFetchOpts_Without_Query, SarenzaSizesFetcherFetchOpts_Without_Query_Cp_Sort, RenaultPricesFetcherFetchOpts_Without_Query_Limit_Geo_Sort, CarrefourStoresWithFuelFetcherQueryOpts, FdjBetsFetcherQueryOpts, WorkerFetcherQueryOpts, IngesterFetcherQueryOpts, TrackingFetcherQueryOpts, ProxyFetcherQueryOpts, CarrefourStoresRetailsFetcherQueryOpts, CarrefourStoresWithDriveSlotsFetcherQueryOpts, BestWesternHotelsFetcherQueryOpts, SarenzaSizesFetcherQueryOpts, RenaultPricesFetcherQueryOpts } from "./definitions";
|
|
3
3
|
export * from "./definitions";
|
|
4
4
|
export default class {
|
|
5
5
|
axios: AxiosInstance;
|
|
@@ -11,97 +11,94 @@ export default class {
|
|
|
11
11
|
private queryValues;
|
|
12
12
|
get Data(): {
|
|
13
13
|
fetch: (params: {
|
|
14
|
-
'x-rlvt-no-cache'?: boolean;
|
|
15
|
-
}, data: WorkerFetcherFetchOpts | IngesterFetcherFetchOpts | TrackingFetcherFetchOpts | ProxyFetcherFetchOpts | CarrefourStoresRetailsFetcherFetchOpts | CarrefourStoresWithDriveSlotsFetcherFetchOpts | CarrefourStoresWithFuelFetcherFetchOpts | BestWesternHotelsFetcherFetchOpts | FdjBetsFetcherFetchOpts | SarenzaSizesFetcherFetchOpts |
|
|
14
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
15
|
+
}, data: WorkerFetcherFetchOpts | IngesterFetcherFetchOpts | TrackingFetcherFetchOpts | ProxyFetcherFetchOpts | CarrefourStoresRetailsFetcherFetchOpts | CarrefourStoresWithDriveSlotsFetcherFetchOpts | CarrefourStoresWithFuelFetcherFetchOpts | BestWesternHotelsFetcherFetchOpts | FdjBetsFetcherFetchOpts | SarenzaSizesFetcherFetchOpts | RenaultPricesFetcherFetchOpts, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
16
16
|
status: "success";
|
|
17
17
|
program: string;
|
|
18
18
|
version: string;
|
|
19
19
|
datetime: string;
|
|
20
|
-
code?: number;
|
|
20
|
+
code?: number | undefined;
|
|
21
21
|
message: string;
|
|
22
22
|
data: {
|
|
23
23
|
entries: {
|
|
24
|
-
distance?: number;
|
|
25
|
-
rlvt_lat?: number;
|
|
26
|
-
rlvt_lng?: number;
|
|
27
|
-
rlvt_productKey?: string;
|
|
28
|
-
rlvt_datasourceId?: string;
|
|
24
|
+
distance?: number | undefined;
|
|
25
|
+
rlvt_lat?: number | undefined;
|
|
26
|
+
rlvt_lng?: number | undefined;
|
|
27
|
+
rlvt_productKey?: string | undefined;
|
|
28
|
+
rlvt_datasourceId?: string | undefined;
|
|
29
29
|
}[];
|
|
30
|
-
meta?: CPMeta;
|
|
30
|
+
meta?: CPMeta | undefined;
|
|
31
31
|
};
|
|
32
32
|
}, any>>;
|
|
33
33
|
count: (params: {
|
|
34
|
-
'x-rlvt-no-cache'?: boolean;
|
|
35
|
-
}, data: CarrefourStoresWithFuelFetcherFetchOpts | WorkerFetcherCountOpts | IngesterFetcherCountOpts | TrackingFetcherCountOpts | ProxyFetcherCountOpts | CarrefourStoresRetailsFetcherCountOpts | CarrefourStoresWithDriveSlotsFetcherCountOpts | BestWesternHotelsFetcherCountOpts | FdjBetsFetcherCountOpts | SarenzaSizesFetcherCountOpts |
|
|
34
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
35
|
+
}, data: CarrefourStoresWithFuelFetcherFetchOpts | WorkerFetcherCountOpts | IngesterFetcherCountOpts | TrackingFetcherCountOpts | ProxyFetcherCountOpts | CarrefourStoresRetailsFetcherCountOpts | CarrefourStoresWithDriveSlotsFetcherCountOpts | BestWesternHotelsFetcherCountOpts | FdjBetsFetcherCountOpts | SarenzaSizesFetcherCountOpts | RenaultPricesFetcherCountOpts, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
36
36
|
status: "success";
|
|
37
37
|
program: string;
|
|
38
38
|
version: string;
|
|
39
39
|
datetime: string;
|
|
40
|
-
code?: number;
|
|
40
|
+
code?: number | undefined;
|
|
41
41
|
message: string;
|
|
42
42
|
data: number;
|
|
43
43
|
}, any>>;
|
|
44
44
|
findAndFetch: (params: {
|
|
45
|
-
'x-rlvt-no-cache'?: boolean;
|
|
45
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
46
46
|
}, data: (WorkerFetcherFetchOpts_Without_Query_Limit_Cp_Geo_Sort & {
|
|
47
47
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
48
|
-
companyId: string;
|
|
48
|
+
companyId: string | null;
|
|
49
49
|
}) | (IngesterFetcherFetchOpts_Without_Query_Limit_Sort_Group & {
|
|
50
50
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
51
|
-
companyId: string;
|
|
51
|
+
companyId: string | null;
|
|
52
52
|
}) | (TrackingFetcherFetchOpts_Without_Query_Limit_Date_ExcludeQuery_UserIds_ExcludeDate & {
|
|
53
53
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
54
|
-
companyId: string;
|
|
54
|
+
companyId: string | null;
|
|
55
55
|
}) | (ProxyFetcherFetchOpts_Without_Query & {
|
|
56
56
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
57
|
-
companyId: string;
|
|
57
|
+
companyId: string | null;
|
|
58
58
|
}) | (CarrefourStoresRetailsFetcherFetchOpts_Without_Query & {
|
|
59
59
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
60
|
-
companyId: string;
|
|
60
|
+
companyId: string | null;
|
|
61
61
|
}) | (CarrefourStoresWithDriveSlotsFetcherFetchOpts_Without_Query & {
|
|
62
62
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
63
|
-
companyId: string;
|
|
63
|
+
companyId: string | null;
|
|
64
64
|
}) | (CarrefourStoresWithFuelFetcherFetchOpts_Without_Query & {
|
|
65
65
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
66
|
-
companyId: string;
|
|
66
|
+
companyId: string | null;
|
|
67
67
|
}) | (BestWesternHotelsFetcherFetchOpts_Without_Query_Cp_Geo_Sort & {
|
|
68
68
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
69
|
-
companyId: string;
|
|
69
|
+
companyId: string | null;
|
|
70
70
|
}) | (FdjBetsFetcherFetchOpts_Without_Query & {
|
|
71
71
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
72
|
-
companyId: string;
|
|
72
|
+
companyId: string | null;
|
|
73
73
|
}) | (SarenzaSizesFetcherFetchOpts_Without_Query_Cp_Sort & {
|
|
74
74
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
75
|
-
companyId: string;
|
|
76
|
-
}) | (RecommenderFetcherFetchOpts_Without_Query_Limit & {
|
|
77
|
-
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
78
|
-
companyId: string;
|
|
75
|
+
companyId: string | null;
|
|
79
76
|
}) | (RenaultPricesFetcherFetchOpts_Without_Query_Limit_Geo_Sort & {
|
|
80
77
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceAnalytics;
|
|
81
|
-
companyId: string;
|
|
82
|
-
}), options?: AxiosRequestConfig<any>) => Promise<import("axios").AxiosResponse<{
|
|
78
|
+
companyId: string | null;
|
|
79
|
+
}), options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
83
80
|
status: "success";
|
|
84
81
|
program: string;
|
|
85
82
|
version: string;
|
|
86
83
|
datetime: string;
|
|
87
|
-
code?: number;
|
|
84
|
+
code?: number | undefined;
|
|
88
85
|
message: string;
|
|
89
86
|
data: {
|
|
90
87
|
entries: {
|
|
91
|
-
distance?: number;
|
|
92
|
-
rlvt_lat?: number;
|
|
93
|
-
rlvt_lng?: number;
|
|
94
|
-
rlvt_productKey?: string;
|
|
95
|
-
rlvt_datasourceId?: string;
|
|
88
|
+
distance?: number | undefined;
|
|
89
|
+
rlvt_lat?: number | undefined;
|
|
90
|
+
rlvt_lng?: number | undefined;
|
|
91
|
+
rlvt_productKey?: string | undefined;
|
|
92
|
+
rlvt_datasourceId?: string | undefined;
|
|
96
93
|
}[];
|
|
97
|
-
meta?: CPMeta;
|
|
94
|
+
meta?: CPMeta | undefined;
|
|
98
95
|
};
|
|
99
96
|
}, any>>;
|
|
100
97
|
query: (params: {
|
|
101
|
-
page?: number;
|
|
102
|
-
perPage?: number;
|
|
103
|
-
'x-rlvt-no-cache'?: boolean;
|
|
104
|
-
}, data: CarrefourStoresWithFuelFetcherQueryOpts | FdjBetsFetcherQueryOpts | WorkerFetcherQueryOpts | IngesterFetcherQueryOpts | TrackingFetcherQueryOpts | ProxyFetcherQueryOpts | CarrefourStoresRetailsFetcherQueryOpts | CarrefourStoresWithDriveSlotsFetcherQueryOpts | BestWesternHotelsFetcherQueryOpts | SarenzaSizesFetcherQueryOpts |
|
|
98
|
+
page?: number | undefined;
|
|
99
|
+
perPage?: number | undefined;
|
|
100
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
101
|
+
}, data: CarrefourStoresWithFuelFetcherQueryOpts | FdjBetsFetcherQueryOpts | WorkerFetcherQueryOpts | IngesterFetcherQueryOpts | TrackingFetcherQueryOpts | ProxyFetcherQueryOpts | CarrefourStoresRetailsFetcherQueryOpts | CarrefourStoresWithDriveSlotsFetcherQueryOpts | BestWesternHotelsFetcherQueryOpts | SarenzaSizesFetcherQueryOpts | RenaultPricesFetcherQueryOpts, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
105
102
|
paginationCount: number;
|
|
106
103
|
paginationPage: number;
|
|
107
104
|
paginationLimit: number;
|
|
@@ -109,31 +106,31 @@ export default class {
|
|
|
109
106
|
program: string;
|
|
110
107
|
version: string;
|
|
111
108
|
datetime: string;
|
|
112
|
-
code?: number;
|
|
109
|
+
code?: number | undefined;
|
|
113
110
|
message: string;
|
|
114
111
|
data: {
|
|
115
112
|
entries: {
|
|
116
|
-
distance?: number;
|
|
117
|
-
rlvt_lat?: number;
|
|
118
|
-
rlvt_lng?: number;
|
|
119
|
-
rlvt_productKey?: string;
|
|
120
|
-
rlvt_datasourceId?: string;
|
|
113
|
+
distance?: number | undefined;
|
|
114
|
+
rlvt_lat?: number | undefined;
|
|
115
|
+
rlvt_lng?: number | undefined;
|
|
116
|
+
rlvt_productKey?: string | undefined;
|
|
117
|
+
rlvt_datasourceId?: string | undefined;
|
|
121
118
|
}[];
|
|
122
119
|
count: number;
|
|
123
120
|
};
|
|
124
121
|
}, any>>;
|
|
125
122
|
queryValues: (params: {
|
|
126
|
-
'x-rlvt-no-cache'?: boolean;
|
|
123
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
127
124
|
}, data: {
|
|
128
125
|
datasourceId: string;
|
|
129
126
|
field: string;
|
|
130
|
-
query?: string;
|
|
131
|
-
}, options?: AxiosRequestConfig<any>) => Promise<import("axios").AxiosResponse<{
|
|
127
|
+
query?: string | undefined;
|
|
128
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
132
129
|
status: "success";
|
|
133
130
|
program: string;
|
|
134
131
|
version: string;
|
|
135
132
|
datetime: string;
|
|
136
|
-
code?: number;
|
|
133
|
+
code?: number | undefined;
|
|
137
134
|
message: string;
|
|
138
135
|
data: string[];
|
|
139
136
|
}, any>>;
|
package/build/api.js
CHANGED
|
@@ -68,4 +68,4 @@ function pick(obj, ...keys) {
|
|
|
68
68
|
});
|
|
69
69
|
return ret;
|
|
70
70
|
}
|
|
71
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
71
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7Ozs7Ozs7Ozs7QUFFcEIsa0RBQWlFO0FBR2pFLGdEQUE4QjtBQUU5QjtJQUdJLFlBQVksZ0JBQW9EO1FBQzVELElBQUksQ0FBQyxLQUFLLEdBQUcsY0FBYyxJQUFJLGdCQUFnQjtZQUMzQyxDQUFDLENBQUMsZ0JBQWdCO1lBQ2xCLENBQUMsQ0FBQyxlQUFLLENBQUMsTUFBTSxDQUFDLGdCQUFnQixDQUFDLENBQUE7SUFDeEMsQ0FBQztJQUVPLEtBQUssQ0FBQyxNQUViLEVBQUUsSUFBMFcsRUFBRSxPQUE0QjtRQUN2WSxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQWtCbEIsUUFBUSxFQUFFLElBQUksRUFDZCxNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1NBQzNDLEVBQ0QsT0FBTyxDQUNWLENBQ0osQ0FBQztJQUNOLENBQUM7SUFFTyxLQUFLLENBQUMsTUFFYixFQUFFLElBQTBXLEVBQUUsT0FBNEI7UUFDdlksT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FTbEIsUUFBUSxFQUFFLElBQUksRUFDZCxNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1NBQzNDLEVBQ0QsT0FBTyxDQUNWLENBQ0osQ0FBQztJQUNOLENBQUM7SUFFTyxZQUFZLENBQUMsTUFFcEIsRUFBRSxJQWlDRCxFQUFFLE9BQTRCO1FBQzVCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBa0JsQixpQkFBaUIsRUFBRSxJQUFJLEVBQ3ZCLE1BQU0sQ0FBQyxNQUFNLENBQ1QsRUFBRSxFQUNGO1lBQ0ksT0FBTyxFQUFFLElBQUksQ0FBQyxNQUFNLEVBQUUsaUJBQWlCLENBQUM7U0FDM0MsRUFDRCxPQUFPLENBQ1YsQ0FDSixDQUFDO0lBQ04sQ0FBQztJQUVPLEtBQUssQ0FBQyxNQUliLEVBQUUsSUFBMFcsRUFBRSxPQUE0QjtRQUN2WSxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQXFCbEIsUUFBUSxFQUFFLElBQUksRUFDZCxNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1lBQ3hDLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxTQUFTLENBQUM7U0FDMUMsRUFDRCxPQUFPLENBQ1YsQ0FDSixDQUFDO0lBQ04sQ0FBQztJQUVPLFdBQVcsQ0FBQyxNQUVuQixFQUFFLElBSUYsRUFBRSxPQUE0QjtRQUMzQixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQVNsQixlQUFlLEVBQUUsSUFBSSxFQUNyQixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1NBQzNDLEVBQ0QsT0FBTyxDQUNWLENBQ0osQ0FBQztJQUNOLENBQUM7SUFFRCxJQUFJLElBQUk7UUFDSixPQUFPO1lBQ0gsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQztZQUM1QixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1lBQzVCLFlBQVksRUFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUM7WUFDMUMsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQztZQUM1QixXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1NBQzNDLENBQUM7SUFDTixDQUFDO0NBQ0o7QUEzTUQsNEJBMk1DO0FBRUQsU0FBUyxJQUFJLENBQXVCLEdBQU0sRUFBRSxHQUFHLElBQVM7SUFDcEQsTUFBTSxHQUFHLEdBQWUsRUFBZ0IsQ0FBQztJQUN6QyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1FBQ2YsSUFBSSxHQUFHLElBQUksTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxRQUFRLENBQUMsR0FBYSxDQUFDO1lBQy9DLEdBQUcsQ0FBQyxHQUFHLENBQUMsR0FBRyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDNUIsQ0FBQyxDQUFDLENBQUM7SUFDSCxPQUFPLEdBQUcsQ0FBQztBQUNmLENBQUMifQ==
|
package/build/definitions.d.ts
CHANGED
|
@@ -118,11 +118,6 @@ export declare type SarenzaSizesFetcherFetchOpts = {
|
|
|
118
118
|
order: "desc" | "asc";
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
|
-
export declare type RecommenderFetcherFetchOpts = {
|
|
122
|
-
datasourceId: string;
|
|
123
|
-
query: string;
|
|
124
|
-
limit?: number;
|
|
125
|
-
};
|
|
126
121
|
export declare type RenaultPricesFetcherFetchOpts = {
|
|
127
122
|
datasourceId: string;
|
|
128
123
|
query: string;
|
|
@@ -200,11 +195,6 @@ export declare type SarenzaSizesFetcherCountOpts = {
|
|
|
200
195
|
order: "desc" | "asc";
|
|
201
196
|
};
|
|
202
197
|
};
|
|
203
|
-
export declare type RecommenderFetcherCountOpts = {
|
|
204
|
-
datasourceId: string;
|
|
205
|
-
query: string;
|
|
206
|
-
limit?: number;
|
|
207
|
-
};
|
|
208
198
|
export declare type RenaultPricesFetcherCountOpts = {
|
|
209
199
|
datasourceId: string;
|
|
210
200
|
query: string;
|
|
@@ -234,19 +224,16 @@ export declare type WorkerFetcherFetchOpts_Without_Query_Limit_Cp_Geo_Sort = {
|
|
|
234
224
|
export declare enum DatasourceLocationSubType {
|
|
235
225
|
USER = "user",
|
|
236
226
|
GOOGLE_MY_BUSINESS = "google_my_business",
|
|
237
|
-
PARTOO = "partoo"
|
|
227
|
+
PARTOO = "partoo",
|
|
228
|
+
WEATHER = "weather"
|
|
238
229
|
}
|
|
239
230
|
export declare type DatasourceLocation = {
|
|
240
231
|
name: "location";
|
|
241
232
|
subtype: DatasourceLocationSubType;
|
|
242
233
|
};
|
|
243
|
-
export declare enum DatasourceGenericSubType {
|
|
244
|
-
USER = "user",
|
|
245
|
-
RECOMMENDER = "recommender"
|
|
246
|
-
}
|
|
247
234
|
export declare type DatasourceGeneric = {
|
|
248
235
|
name: "generic";
|
|
249
|
-
subtype:
|
|
236
|
+
subtype: "user";
|
|
250
237
|
};
|
|
251
238
|
export declare enum DatasourceProductSubType {
|
|
252
239
|
USER = "user",
|
|
@@ -349,10 +336,6 @@ export declare type SarenzaSizesFetcherFetchOpts_Without_Query_Cp_Sort = {
|
|
|
349
336
|
order: "desc" | "asc";
|
|
350
337
|
};
|
|
351
338
|
};
|
|
352
|
-
export declare type RecommenderFetcherFetchOpts_Without_Query_Limit = {
|
|
353
|
-
query: string;
|
|
354
|
-
limit?: number;
|
|
355
|
-
};
|
|
356
339
|
export declare type RenaultPricesFetcherFetchOpts_Without_Query_Limit_Geo_Sort = {
|
|
357
340
|
query: string;
|
|
358
341
|
limit?: number;
|
|
@@ -433,10 +416,6 @@ export declare type SarenzaSizesFetcherQueryOpts = {
|
|
|
433
416
|
order: "desc" | "asc";
|
|
434
417
|
};
|
|
435
418
|
};
|
|
436
|
-
export declare type RecommenderFetcherQueryOpts = {
|
|
437
|
-
datasourceId: string;
|
|
438
|
-
query: string;
|
|
439
|
-
};
|
|
440
419
|
export declare type RenaultPricesFetcherQueryOpts = {
|
|
441
420
|
datasourceId: string;
|
|
442
421
|
query: string;
|
package/build/definitions.js
CHANGED
|
@@ -2,18 +2,14 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.DatasourceAnalyticsSubType = exports.DatasourceProductSubType = exports.
|
|
5
|
+
exports.DatasourceAnalyticsSubType = exports.DatasourceProductSubType = exports.DatasourceLocationSubType = void 0;
|
|
6
6
|
var DatasourceLocationSubType;
|
|
7
7
|
(function (DatasourceLocationSubType) {
|
|
8
8
|
DatasourceLocationSubType["USER"] = "user";
|
|
9
9
|
DatasourceLocationSubType["GOOGLE_MY_BUSINESS"] = "google_my_business";
|
|
10
10
|
DatasourceLocationSubType["PARTOO"] = "partoo";
|
|
11
|
+
DatasourceLocationSubType["WEATHER"] = "weather";
|
|
11
12
|
})(DatasourceLocationSubType = exports.DatasourceLocationSubType || (exports.DatasourceLocationSubType = {}));
|
|
12
|
-
var DatasourceGenericSubType;
|
|
13
|
-
(function (DatasourceGenericSubType) {
|
|
14
|
-
DatasourceGenericSubType["USER"] = "user";
|
|
15
|
-
DatasourceGenericSubType["RECOMMENDER"] = "recommender";
|
|
16
|
-
})(DatasourceGenericSubType = exports.DatasourceGenericSubType || (exports.DatasourceGenericSubType = {}));
|
|
17
13
|
var DatasourceProductSubType;
|
|
18
14
|
(function (DatasourceProductSubType) {
|
|
19
15
|
DatasourceProductSubType["USER"] = "user";
|
|
@@ -27,4 +23,4 @@ var DatasourceAnalyticsSubType;
|
|
|
27
23
|
DatasourceAnalyticsSubType["SHOPIFY"] = "shopify";
|
|
28
24
|
DatasourceAnalyticsSubType["WORKFLOW_EVENTS"] = "workflow_events";
|
|
29
25
|
})(DatasourceAnalyticsSubType = exports.DatasourceAnalyticsSubType || (exports.DatasourceAnalyticsSubType = {}));
|
|
30
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBa09wQixJQUFZLHlCQUtYO0FBTEQsV0FBWSx5QkFBeUI7SUFDakMsMENBQWEsQ0FBQTtJQUNiLHNFQUF5QyxDQUFBO0lBQ3pDLDhDQUFpQixDQUFBO0lBQ2pCLGdEQUFtQixDQUFBO0FBQ3ZCLENBQUMsRUFMVyx5QkFBeUIsR0FBekIsaUNBQXlCLEtBQXpCLGlDQUF5QixRQUtwQztBQVdELElBQVksd0JBSVg7QUFKRCxXQUFZLHdCQUF3QjtJQUNoQyx5Q0FBYSxDQUFBO0lBQ2IsK0NBQW1CLENBQUE7SUFDbkIseURBQTZCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHdCQUF3QixHQUF4QixnQ0FBd0IsS0FBeEIsZ0NBQXdCLFFBSW5DO0FBT0QsSUFBWSwwQkFLWDtBQUxELFdBQVksMEJBQTBCO0lBQ2xDLHFEQUF1QixDQUFBO0lBQ3ZCLHVFQUF5QyxDQUFBO0lBQ3pDLGlEQUFtQixDQUFBO0lBQ25CLGlFQUFtQyxDQUFBO0FBQ3ZDLENBQUMsRUFMVywwQkFBMEIsR0FBMUIsa0NBQTBCLEtBQTFCLGtDQUEwQixRQUtyQyJ9
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlvt/datasources-query-openapi-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.108+71398ed",
|
|
4
4
|
"description": "Openapi client for reelevant service",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"repository": "https://github.com/reelevant-tech/openapi-clients",
|