siteplane 0.1.47 → 0.1.48

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.
@@ -1864,6 +1864,7 @@ var activateSetupModulesInputSchema = activateSiteSetupInputSchema.extend({
1864
1864
  z16.object({ decision: z16.literal("pending") }).strict(),
1865
1865
  z16.object({
1866
1866
  decision: z16.literal("enable"),
1867
+ readinessTestRunId: z16.string().regex(/^analytics_owner_[0-9a-f-]{36}$/u),
1867
1868
  expectedInstallationGeneration: z16.number().int().positive(),
1868
1869
  measurementApproved: z16.literal(true)
1869
1870
  }).strict(),
@@ -2211,6 +2212,9 @@ var EARLY_ACCESS_PLAN = {
2211
2212
  bookingRemindersEnabled: true
2212
2213
  };
2213
2214
 
2215
+ // ../shared/dist/first-party-image-upload.js
2216
+ var maxFirstPartyImageUploadBytes = 4 * 1024 * 1024;
2217
+
2214
2218
  // ../shared/dist/readiness.js
2215
2219
  import { z as z23 } from "zod";
2216
2220
  var READINESS_CHECK_KEYS = [
@@ -5679,7 +5683,6 @@ async function setupDeployCommand(input, deps = defaults) {
5679
5683
  SITEPLANE_SETUP_RUN_ID: config.runId,
5680
5684
  SITEPLANE_PORTAL_PATH: task.site.portalPath,
5681
5685
  SITEPLANE_BUILD_FIELD_CONTRACT_HASH: config.fieldContractHash,
5682
- SITEPLANE_BUILD_REVISION: revision,
5683
5686
  ...analyticsPublicKey ? {
5684
5687
  NEXT_PUBLIC_SITEPLANE_ANALYTICS_SITE_KEY: analyticsPublicKey,
5685
5688
  NEXT_PUBLIC_SITEPLANE_ANALYTICS_ENDPOINT: `${config.apiBaseUrl.replace(/\/$/u, "")}/api/analytics/collect`
@@ -5687,6 +5690,7 @@ async function setupDeployCommand(input, deps = defaults) {
5687
5690
  };
5688
5691
  const fingerprint = digest({
5689
5692
  publicBindings,
5693
+ revision,
5690
5694
  siteId: config.siteId,
5691
5695
  publicKeyId: config.publicSiteKeyId,
5692
5696
  apiBaseUrl: config.apiBaseUrl,
package/dist/index.js CHANGED
@@ -1592,6 +1592,7 @@ var activateSetupModulesInputSchema = activateSiteSetupInputSchema.extend({
1592
1592
  z16.object({ decision: z16.literal("pending") }).strict(),
1593
1593
  z16.object({
1594
1594
  decision: z16.literal("enable"),
1595
+ readinessTestRunId: z16.string().regex(/^analytics_owner_[0-9a-f-]{36}$/u),
1595
1596
  expectedInstallationGeneration: z16.number().int().positive(),
1596
1597
  measurementApproved: z16.literal(true)
1597
1598
  }).strict(),
@@ -1939,6 +1940,9 @@ var EARLY_ACCESS_PLAN = {
1939
1940
  bookingRemindersEnabled: true
1940
1941
  };
1941
1942
 
1943
+ // ../shared/dist/first-party-image-upload.js
1944
+ var maxFirstPartyImageUploadBytes = 4 * 1024 * 1024;
1945
+
1942
1946
  // ../shared/dist/readiness.js
1943
1947
  import { z as z23 } from "zod";
1944
1948
  var READINESS_CHECK_KEYS = [
package/dist/next.js CHANGED
@@ -1795,6 +1795,7 @@ var activateSetupModulesInputSchema = activateSiteSetupInputSchema.extend({
1795
1795
  z16.object({ decision: z16.literal("pending") }).strict(),
1796
1796
  z16.object({
1797
1797
  decision: z16.literal("enable"),
1798
+ readinessTestRunId: z16.string().regex(/^analytics_owner_[0-9a-f-]{36}$/u),
1798
1799
  expectedInstallationGeneration: z16.number().int().positive(),
1799
1800
  measurementApproved: z16.literal(true)
1800
1801
  }).strict(),
@@ -2142,6 +2143,9 @@ var EARLY_ACCESS_PLAN = {
2142
2143
  bookingRemindersEnabled: true
2143
2144
  };
2144
2145
 
2146
+ // ../shared/dist/first-party-image-upload.js
2147
+ var maxFirstPartyImageUploadBytes = 4 * 1024 * 1024;
2148
+
2145
2149
  // ../shared/dist/readiness.js
2146
2150
  import { z as z23 } from "zod";
2147
2151
  var READINESS_CHECK_KEYS = [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "siteplane",
3
3
  "private": false,
4
- "version": "0.1.47",
4
+ "version": "0.1.48",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",
7
7
  "publishConfig": {