@bowmark/web 1.0.0 → 1.2.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: f5800ce1b32bab70e47d10acdfdc561ee2a242f65b2af263ba4dd9fe109e55e9
9
- // 199 checked, 20 unchecked.
8
+ // Manifest version: 11b1a109d7e69ffbbcccb30182dd5333770aeb23ab75946f15d55d7f7d84a7bf
9
+ // 202 checked, 20 unchecked.
10
10
 
11
11
  import type { ValidatorTable } from "../validate.js";
12
12
 
13
13
  export const VALIDATORS: ValidatorTable = {
14
- "version": "f5800ce1b32bab70e47d10acdfdc561ee2a242f65b2af263ba4dd9fe109e55e9",
14
+ "version": "11b1a109d7e69ffbbcccb30182dd5333770aeb23ab75946f15d55d7f7d84a7bf",
15
15
  "units": {
16
16
  "cars": {
17
17
  "defs": {
@@ -1990,6 +1990,93 @@ export const VALIDATORS: ValidatorTable = {
1990
1990
  ]
1991
1991
  }
1992
1992
  },
1993
+ "providers.chriscraft": {
1994
+ "defs": {
1995
+ "ChriscraftBoatType": {
1996
+ "k": "union",
1997
+ "of": [
1998
+ {
1999
+ "k": "literal",
2000
+ "v": "STERNDRIVE"
2001
+ },
2002
+ {
2003
+ "k": "literal",
2004
+ "v": "OUTBOARD"
2005
+ },
2006
+ {
2007
+ "k": "literal",
2008
+ "v": "SURF"
2009
+ }
2010
+ ]
2011
+ }
2012
+ },
2013
+ "functions": {
2014
+ "searchModels": [
2015
+ {
2016
+ "name": "query",
2017
+ "schema": {
2018
+ "k": "string"
2019
+ },
2020
+ "optional": true
2021
+ }
2022
+ ],
2023
+ "getConfigurator": [
2024
+ {
2025
+ "name": "modelId",
2026
+ "schema": {
2027
+ "k": "string"
2028
+ },
2029
+ "optional": false
2030
+ },
2031
+ {
2032
+ "name": "boatType",
2033
+ "schema": {
2034
+ "k": "ref",
2035
+ "name": "ChriscraftBoatType"
2036
+ },
2037
+ "optional": false
2038
+ }
2039
+ ],
2040
+ "priceConfiguration": [
2041
+ {
2042
+ "name": "modelId",
2043
+ "schema": {
2044
+ "k": "string"
2045
+ },
2046
+ "optional": false
2047
+ },
2048
+ {
2049
+ "name": "boatType",
2050
+ "schema": {
2051
+ "k": "ref",
2052
+ "name": "ChriscraftBoatType"
2053
+ },
2054
+ "optional": false
2055
+ },
2056
+ {
2057
+ "name": "selections",
2058
+ "schema": {
2059
+ "k": "record",
2060
+ "value": {
2061
+ "k": "union",
2062
+ "of": [
2063
+ {
2064
+ "k": "string"
2065
+ },
2066
+ {
2067
+ "k": "array",
2068
+ "of": {
2069
+ "k": "string"
2070
+ }
2071
+ }
2072
+ ]
2073
+ }
2074
+ },
2075
+ "optional": false
2076
+ }
2077
+ ]
2078
+ }
2079
+ },
1993
2080
  "providers.classpass": {
1994
2081
  "defs": {
1995
2082
  "ClasspassScheduleOptions": {
package/src/index.ts CHANGED
@@ -7,8 +7,7 @@
7
7
  // imported. An `import` of them would make them a module and every global below
8
8
  // would stop resolving. They ship INSIDE this package rather than beside it —
9
9
  // `npm i @bowmark/web` and nothing else is the promise, and it is what the
10
- // acceptance criteria are written against (`docs/plans/public-types-package.md`
11
- // → One package, not two).
10
+ // acceptance criteria are written against (`docs/decisions/2026-08-06-the-public-client-is-one-manifest-two-languages.md`).
12
11
  //
13
12
  // ── The same declarations describe TWO implementations, deliberately ──
14
13
  //