forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools-manifest.json
More file actions
355 lines (355 loc) · 10.2 KB
/
Copy pathtools-manifest.json
File metadata and controls
355 lines (355 loc) · 10.2 KB
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
{
"api_name": "pagliacci",
"base_url": "https://pag-api.azurewebsites.net/api",
"description": "CLI for the Pagliacci Pizza ordering API. Browse stores, menus, and\navailable slices; manage your cart, place orders, and track delivery\nwindows; manage saved addresses, rewards, stored coupons, credit, and\ngifts. Backed by Pagliacci's Azure-hosted REST API and authenticated\nvia Chrome cookies (composed PagliacciAuth header).",
"mcp_ready": "partial",
"http_transport": "standard",
"auth": {
"type": "composed",
"header": "Authorization",
"format": "PagliacciAuth {customerId}|{authToken}",
"cookie_domain": "pagliacci.com"
},
"required_headers": [],
"tools": [
{
"name": "account_confirm_email",
"description": "Confirm a new account by clicking the email-confirmation link's token. Required: token. (public)",
"method": "GET",
"path": "/ConfirmEmail/{token}",
"no_auth": true,
"params": [
{
"name": "token",
"type": "string",
"location": "path",
"description": "token",
"required": true
}
]
},
{
"name": "account_login",
"description": "Authenticate with email/phone + password. Response sets customerId and authToken cookies. (public)",
"method": "POST",
"path": "/Login",
"no_auth": true,
"params": []
},
{
"name": "account_password_forgot",
"description": "Request a password reset email. (public)",
"method": "POST",
"path": "/PasswordForgot",
"no_auth": true,
"params": []
},
{
"name": "account_password_reset",
"description": "Reset a password using a token from PasswordForgot email. (public)",
"method": "POST",
"path": "/PasswordReset",
"no_auth": true,
"params": []
},
{
"name": "account_register",
"description": "Create a new customer account. (public)",
"method": "POST",
"path": "/Register",
"no_auth": true,
"params": []
},
{
"name": "address_get_info",
"description": "Get address info by saved ID. Required: id. (public)",
"method": "GET",
"path": "/AddressInfo/{id}",
"no_auth": true,
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "id",
"required": true
}
]
},
{
"name": "address_lookup",
"description": "Validate an address and check delivery zone (returns store ID if deliverable). (public)",
"method": "POST",
"path": "/AddressInfo",
"no_auth": true,
"params": []
},
{
"name": "cart_price_order",
"description": "Compute the total price for an order (cart contents, taxes, fees, delivery) before sending. (public)",
"method": "POST",
"path": "/OrderPrice",
"no_auth": true,
"params": []
},
{
"name": "cart_send_order",
"description": "Submit an order. Requires payment information for guests; uses stored payment for authenticated users. (public)",
"method": "POST",
"path": "/OrderSend",
"no_auth": true,
"params": []
},
{
"name": "customer_feedback_submit",
"description": "Submit customer feedback (guest or authenticated). (public)",
"method": "POST",
"path": "/Feedback",
"no_auth": true,
"params": []
},
{
"name": "gifts_check",
"description": "Check the balance of a gift card by ID and PIN (no auth required to check). Required: id, pin. (public)",
"method": "GET",
"path": "/CheckGift/{id}/{pin}",
"no_auth": true,
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "id",
"required": true
},
{
"name": "pin",
"type": "string",
"location": "path",
"description": "pin",
"required": true
}
]
},
{
"name": "menu_cache",
"description": "Get the full menu (categories, products, prices, descriptions, images) for a store. Required: storeId. (public)",
"method": "GET",
"path": "/MenuCache/{storeId}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
}
]
},
{
"name": "menu_product_price",
"description": "Calculate the price for a customized product (size, toppings, modifiers). (public)",
"method": "POST",
"path": "/ProductPrice",
"no_auth": true,
"params": []
},
{
"name": "menu_slices",
"description": "Get available slices across all stores for the current day (perishable, rotates daily). (public)",
"method": "GET",
"path": "/MenuSlices",
"no_auth": true,
"params": []
},
{
"name": "menu_top",
"description": "Get featured top-of-menu items for a store. Required: storeId. (public)",
"method": "GET",
"path": "/MenuTop/{storeId}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
}
]
},
{
"name": "rewards_coupon_lookup",
"description": "Look up a coupon by its serial number (validate before applying). Required: serial. (public)",
"method": "GET",
"path": "/CouponSerial/{serial}",
"no_auth": true,
"params": [
{
"name": "serial",
"type": "string",
"location": "path",
"description": "serial",
"required": true
}
]
},
{
"name": "scheduling_slot_list",
"description": "List available time-window slots for a store and service type. Required: storeId, serviceType. (public)",
"method": "GET",
"path": "/TimeWindows/{storeId}/{serviceType}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
},
{
"name": "serviceType",
"type": "string",
"location": "path",
"description": "serviceType",
"required": true
}
]
},
{
"name": "scheduling_slot_list_for_date",
"description": "List allowed slot times for a specific delivery/pickup date (YYYYMMDD). Required: storeId, serviceType, date. (public)",
"method": "GET",
"path": "/TimeWindows/{storeId}/{serviceType}/{date}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
},
{
"name": "serviceType",
"type": "string",
"location": "path",
"description": "serviceType",
"required": true
},
{
"name": "date",
"type": "string",
"location": "path",
"description": "date",
"required": true
}
]
},
{
"name": "scheduling_window_days",
"description": "List available delivery or pickup days for a store. serviceType is DEL (delivery) or PICK (pickup). Required: storeId, serviceType. (public)",
"method": "GET",
"path": "/TimeWindowDays/{storeId}/{serviceType}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
},
{
"name": "serviceType",
"type": "string",
"location": "path",
"description": "serviceType",
"required": true
}
]
},
{
"name": "store_compute_quote",
"description": "Compute a quote for a specific store with cart contents (returns Delivery, Drone, Pickup wait values). Required: storeId. (public)",
"method": "POST",
"path": "/QuoteStore/{storeId}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
}
]
},
{
"name": "store_get",
"description": "Get a single store by its numeric ID. Required: storeId. (public)",
"method": "GET",
"path": "/Store/{storeId}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
}
]
},
{
"name": "store_get_quote",
"description": "Get quote-store metadata (delivery fee, drone status, pickup wait time) for a single store. Required: storeId. (public)",
"method": "GET",
"path": "/QuoteStore/{storeId}",
"no_auth": true,
"params": [
{
"name": "storeId",
"type": "string",
"location": "path",
"description": "storeId",
"required": true
}
]
},
{
"name": "store_list",
"description": "List all Pagliacci store locations with addresses, hours, GPS, amenities, and available slices. (public)",
"method": "GET",
"path": "/Store",
"no_auth": true,
"params": []
},
{
"name": "store_list_quotes",
"description": "List quote-store metadata (delivery fee, drone status, pickup wait) for all stores. (public)",
"method": "GET",
"path": "/QuoteStore",
"no_auth": true,
"params": []
},
{
"name": "system_site_wide_message",
"description": "Get site-wide announcement banner text (closures, holiday hours, etc.). (public)",
"method": "GET",
"path": "/SiteWideMessage",
"no_auth": true,
"params": []
},
{
"name": "system_version",
"description": "Get the current API version. (public)",
"method": "GET",
"path": "/Version",
"no_auth": true,
"params": []
}
]
}