-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.d.ts
295 lines (253 loc) · 6.84 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import type { ExecutionContext, KVNamespace } from "@cloudflare/workers-types/experimental";
import type { R2Bucket } from "@cloudflare/workers-types";
import type { HTMLTemplate } from "./templates/html/HTMLTemplate.js";
import type { JSONTemplate } from "./templates/json/JSONTemplate.js";
import type StorageClient from "./routes/products/StorageClient.js";
declare global {
export type SchemaOrgAvailability = 'BackOrder' | 'Discontinued' | 'InStock' | 'InStoreOnly' | 'LimitedAvailability' | 'MadeToOrder' | 'OnlineOnly' | 'OutOfStock' | 'PreOrder' | 'PreSale' | 'Reserved' | 'SoldOut';
export type SchemaOrgItemCondition = 'DamagedCondition' | 'NewCondition' | 'RefurbishedCondition' | 'UsedCondition';
export interface SchemaOrgAggregateRating {
ratingValue: number;
reviewCount: number;
bestRating?: number;
worstRating?: number;
}
export interface ProductBusPrice {
final: string;
currency: string;
regular?: string;
}
export interface ProductBusVariant {
sku: string;
name: string;
price?: ProductBusPrice;
url: string;
images: ProductBusImage[];
availability: SchemaOrgAvailability;
gtin?: string;
description?: string;
itemCondition?: SchemaOrgItemCondition;
custom?: Record<string, unknown>;
}
export interface ProductBusImage {
url: string;
label?: string;
roles?: string[];
}
/**
* Helix product-bus entry
*/
export interface ProductBusEntry {
/**
* Product data used to generate markup/json-ld
*/
sku: string;
urlKey: string;
name: string; // used for product name in json-ld
title?: string; // used for title in markup body
metaTitle?: string; // used for title in markup meta tag
description?: string;
metaDescription?: string;
url?: string;
brand?: string;
itemCondition?: SchemaOrgItemCondition;
aggregateRating?: SchemaOrgAggregateRating;
availability?: SchemaOrgAvailability;
images?: ProductBusImage[];
price?: ProductBusPrice;
variants?: ProductBusVariant[];
/**
* Override "escape hatch" for json-ld
*/
jsonld?: string;
/**
* Additional data that can be retrieved via .json API
*/
custom?: Record<string, unknown>;
}
/**
* The config for a single path pattern as stored in KV
*/
export interface RawConfigEntry {
/**
* API key for Core and Catalog
*/
apiKey?: string;
/**
* Magento env ID
*/
magentoEnvironmentId?: string;
/**
* Magento website code
*/
magentoWebsiteCode?: string;
/**
* Store code
*/
storeCode?: string;
/**
* Core Commerce endpoint
*/
coreEndpoint?: string;
/**
* Catalog Service endpoint, defaults to non-sandbox
*/
catalogEndpoint?: string;
/**
* Store view code
*/
storeViewCode?: string;
/**
* Sitekey to use for overrides filename
*/
siteOverridesKey?: string;
/**
* Host to use for absolute urls
*/
host?: string;
/**
* API key for Helix, used for preview/publish during Helix Catalog API PUTs
*/
helixApiKey?: string;
/**
* Headers to send with requests to Core and Catalog
*/
headers?: Record<string, string>;
/**
* Image roles to filter by, only include images with these roles
*/
imageRoles?: string[];
/**
* Order for images to appear in markup
* If not provided, images will not be sorted
* If image role doesn't exist in the order, it will be appended to the end
*/
imageRoleOrder?: string[];
/**
* Attributes to override using a different attribute name
*/
attributeOverrides?: AttributeOverrides;
/**
* Path pattern to use for offer variant URLs in JSON-LD
*/
offerVariantURLTemplate?: string;
/**
* Additional parameters to add to image URLs as query params.
*/
imageParams?: Record<string, string>;
// required for non-base entries
pageType: 'product' | string;
/**
* Attributes to include in the variant attributes table
*/
variantAttributes?: string[];
}
/**
* The config as stored in KV
* Each key, other than `base`, is a path pattern
* Path patterns use `{{arg}}` to denote `arg` as a path parameter
*/
export type RawConfig = {
base: RawConfigEntry;
[key: string]: RawConfigEntry;
}
/**
* { pathPattern => Config }
* alias
*/
export type ConfigMap = RawConfig;
export interface AttributeOverrides {
variant: {
// expected attribute name => actual attribute name
[key: string]: string;
};
product: {
// expected attribute name => actual attribute name
[key: string]: string;
}
}
/**
* Resolved config object
*/
export interface Config {
org: string;
site: string;
siteKey: string;
route: string;
pageType: 'product' | string;
origin?: string;
apiKey: string;
helixApiKey: string;
magentoEnvironmentId: string;
magentoWebsiteCode: string;
storeViewCode: string;
storeCode: string;
coreEndpoint: string;
catalogSource: string
catalogEndpoint?: string;
sku?: string;
matchedPatterns: string[];
imageRoles?: string[];
imageRoleOrder?: string[];
linkTypes?: string[];
host: string;
params: Record<string, string>;
headers: Record<string, string>;
offerVariantURLTemplate?: string;
attributeOverrides?: AttributeOverrides;
siteOverrides?: Record<string, Record<string, unknown>>;
imageParams?: Record<string, string>;
variantAttributes?: string[];
liveSearchEnabled?: boolean;
confMap: ConfigMap;
confMapStr: string;
}
export interface Env {
VERSION: string;
ENVIRONMENT: string;
SUPERUSER_KEY: string;
// KV namespaces
CONFIGS: KVNamespace<string>;
KEYS: KVNamespace<string>;
CATALOG_BUCKET: R2Bucket
[key: string]: string | KVNamespace<string> | R2Bucket;
}
export interface Context {
url: URL;
env: Env;
log: Console;
config: Config;
/** parsed from body or query params */
data: any;
info: {
filename: string;
method: string;
extension: string | undefined;
headers: Record<string, string>;
}
attributes: {
htmlTemplate?: HTMLTemplate;
jsonTemplate?: JSONTemplate;
storageClient?: StorageClient;
key?: string;
[key: string]: any;
}
executionContext: ExecutionContext;
}
interface BatchResult {
sku: string;
status: number;
message?: string;
paths: Record<string, AdminStatus>;
};
interface AdminStatus {
preview?: AdminResult;
live?: AdminResult;
}
interface AdminResult {
status: number;
message?: string;
}
export type RouteHandler = (ctx: Context, request: import("@cloudflare/workers-types").Request) => Promise<Response>;
}
export { };