@koda-sl/baker-cli 0.268.0 → 0.269.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.
- package/dist/cli.js +19 -0
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -12493,6 +12493,15 @@ var analyticsBeaconEventSchema = z24.object({
|
|
|
12493
12493
|
* copy of the answers on one key.
|
|
12494
12494
|
*/
|
|
12495
12495
|
submissionId: z24.string().max(128).optional(),
|
|
12496
|
+
/**
|
|
12497
|
+
* The Form execution this event belongs to, minted by the page when the Form
|
|
12498
|
+
* is wired and carried by every event that filling produces.
|
|
12499
|
+
*
|
|
12500
|
+
* The grain between `session_id` (one session holds several fillings) and
|
|
12501
|
+
* `submissionId` (minted per node), and the only one that can answer "how far
|
|
12502
|
+
* did this person get".
|
|
12503
|
+
*/
|
|
12504
|
+
attemptId: z24.string().max(128).optional(),
|
|
12496
12505
|
clickIds: analyticsBeaconClickIdsSchema.optional(),
|
|
12497
12506
|
/**
|
|
12498
12507
|
* Long-tail campaign parameters, already filtered by the page to the known
|
|
@@ -13962,6 +13971,16 @@ var submissionRecordRequestSchema = z25.object({
|
|
|
13962
13971
|
companyId: z25.string().min(1),
|
|
13963
13972
|
/** Shared with every destination this submit was sent to, and with its event. */
|
|
13964
13973
|
submissionId: z25.string().min(1).pipe(boundedReference(128)),
|
|
13974
|
+
/**
|
|
13975
|
+
* The Form execution this step belongs to, or `""` from a page published
|
|
13976
|
+
* before attempts existed.
|
|
13977
|
+
*
|
|
13978
|
+
* `submissionId` is minted per node, so two steps of one filling produce two
|
|
13979
|
+
* copies with nothing joining them. This is that join. It changes nothing
|
|
13980
|
+
* else here: a sealed copy is still per step, and still the only payload
|
|
13981
|
+
* anybody keeps.
|
|
13982
|
+
*/
|
|
13983
|
+
attemptId: boundedReference(128).default(""),
|
|
13965
13984
|
flowSlug: boundedReference(120).default(""),
|
|
13966
13985
|
nodeId: boundedReference(120).default(""),
|
|
13967
13986
|
nodeType: boundedReference(40).default(""),
|