@bowmark/web 1.1.0 → 1.3.0

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.
@@ -5,13 +5,13 @@
5
5
  // declares no readable argument shape — not an absent one, which is what the
6
6
  // guard fails closed on.
7
7
  //
8
- // Manifest version: 11b1a109d7e69ffbbcccb30182dd5333770aeb23ab75946f15d55d7f7d84a7bf
9
- // 202 checked, 20 unchecked.
8
+ // Manifest version: 80346d8cf36c785e2b7fe0a77a87e5a51fa97ceb04ea11c951c71a9f7f75ad8e
9
+ // 208 checked, 20 unchecked.
10
10
 
11
11
  import type { ValidatorTable } from "../validate.js";
12
12
 
13
13
  export const VALIDATORS: ValidatorTable = {
14
- "version": "11b1a109d7e69ffbbcccb30182dd5333770aeb23ab75946f15d55d7f7d84a7bf",
14
+ "version": "80346d8cf36c785e2b7fe0a77a87e5a51fa97ceb04ea11c951c71a9f7f75ad8e",
15
15
  "units": {
16
16
  "cars": {
17
17
  "defs": {
@@ -2143,6 +2143,83 @@ export const VALIDATORS: ValidatorTable = {
2143
2143
  ]
2144
2144
  }
2145
2145
  },
2146
+ "providers.decked": {
2147
+ "defs": {
2148
+ "DeckedCabSideOption": {
2149
+ "k": "union",
2150
+ "of": [
2151
+ {
2152
+ "k": "literal",
2153
+ "v": "Cab-side Gap"
2154
+ },
2155
+ {
2156
+ "k": "literal",
2157
+ "v": "Load Floor"
2158
+ }
2159
+ ]
2160
+ }
2161
+ },
2162
+ "functions": {
2163
+ "searchFits": [
2164
+ {
2165
+ "name": "query",
2166
+ "schema": {
2167
+ "k": "string"
2168
+ },
2169
+ "optional": true
2170
+ }
2171
+ ],
2172
+ "getVehicleClass": [
2173
+ {
2174
+ "name": "vehicleClass",
2175
+ "schema": {
2176
+ "k": "string"
2177
+ },
2178
+ "optional": false
2179
+ }
2180
+ ],
2181
+ "resolveFitment": [
2182
+ {
2183
+ "name": "vehicleQuery",
2184
+ "schema": {
2185
+ "k": "string"
2186
+ },
2187
+ "optional": false
2188
+ },
2189
+ {
2190
+ "name": "bedLength",
2191
+ "schema": {
2192
+ "k": "string"
2193
+ },
2194
+ "optional": true
2195
+ }
2196
+ ],
2197
+ "priceCabSideOption": [
2198
+ {
2199
+ "name": "vehicleQuery",
2200
+ "schema": {
2201
+ "k": "string"
2202
+ },
2203
+ "optional": false
2204
+ },
2205
+ {
2206
+ "name": "bedLength",
2207
+ "schema": {
2208
+ "k": "string"
2209
+ },
2210
+ "optional": false
2211
+ },
2212
+ {
2213
+ "name": "option",
2214
+ "schema": {
2215
+ "k": "ref",
2216
+ "name": "DeckedCabSideOption"
2217
+ },
2218
+ "optional": false
2219
+ }
2220
+ ]
2221
+ }
2222
+ },
2146
2223
  "providers.dickssportinggoods": {
2147
2224
  "defs": {},
2148
2225
  "functions": {
@@ -4901,6 +4978,20 @@ export const VALIDATORS: ValidatorTable = {
4901
4978
  ]
4902
4979
  }
4903
4980
  },
4981
+ "providers.lonelyplanet": {
4982
+ "defs": {},
4983
+ "functions": {
4984
+ "search": [
4985
+ {
4986
+ "name": "query",
4987
+ "schema": {
4988
+ "k": "string"
4989
+ },
4990
+ "optional": false
4991
+ }
4992
+ ]
4993
+ }
4994
+ },
4904
4995
  "providers.lufthansa": {
4905
4996
  "defs": {},
4906
4997
  "functions": {
@@ -9014,6 +9105,48 @@ export const VALIDATORS: ValidatorTable = {
9014
9105
  "getMembershipPlans": []
9015
9106
  }
9016
9107
  },
9108
+ "providers.sears": {
9109
+ "defs": {
9110
+ "SearsSearchQuery": {
9111
+ "k": "object",
9112
+ "props": [
9113
+ {
9114
+ "name": "query",
9115
+ "schema": {
9116
+ "k": "string"
9117
+ },
9118
+ "optional": false
9119
+ },
9120
+ {
9121
+ "name": "zipCode",
9122
+ "schema": {
9123
+ "k": "string"
9124
+ },
9125
+ "optional": true
9126
+ },
9127
+ {
9128
+ "name": "limit",
9129
+ "schema": {
9130
+ "k": "number"
9131
+ },
9132
+ "optional": true
9133
+ }
9134
+ ]
9135
+ }
9136
+ },
9137
+ "functions": {
9138
+ "search": [
9139
+ {
9140
+ "name": "query",
9141
+ "schema": {
9142
+ "k": "ref",
9143
+ "name": "SearsSearchQuery"
9144
+ },
9145
+ "optional": false
9146
+ }
9147
+ ]
9148
+ }
9149
+ },
9017
9150
  "providers.selectblinds": {
9018
9151
  "defs": {},
9019
9152
  "functions": {
package/src/index.ts CHANGED
@@ -17,12 +17,14 @@
17
17
  // the two must stay in sync — see `packages/runtime/src/namespace.ts`.
18
18
 
19
19
  import { client } from "./session.js";
20
- import { type ClientOptions, type RunEnvelope, postRun, resolveClient } from "./transport.js";
20
+ import { type ClientOptions, postRun, type RunEnvelope, resolveClient } from "./transport.js";
21
21
 
22
+ export { type WireProblem, wireProblem } from "./guard.js";
23
+ export { client, openManagedSession, type SessionHandle, session } from "./session.js";
22
24
  export {
25
+ type AuthNeed,
23
26
  BowmarkError,
24
27
  BowmarkNeedsUserError,
25
- type AuthNeed,
26
28
  type CallEnvelope,
27
29
  type ClientOptions,
28
30
  type ClosedSession,
@@ -31,8 +33,6 @@ export {
31
33
  type OpenedSession,
32
34
  type RunEnvelope,
33
35
  } from "./transport.js";
34
- export { type WireProblem, wireProblem } from "./guard.js";
35
- export { type SessionHandle, client, openManagedSession, session } from "./session.js";
36
36
 
37
37
  /** The whole callable library, typed. `await bowmark.music.search("aphex twin")`.
38
38
  *