stripe-experiment-sync 1.0.7 → 1.0.8-beta.1765872477

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.
@@ -93,12 +93,17 @@ declare class SupabaseSetupClient {
93
93
  * Removes all Edge Functions, secrets, database resources, and Stripe webhooks
94
94
  */
95
95
  uninstall(stripeSecretKey: string): Promise<void>;
96
- install(stripeKey: string): Promise<void>;
96
+ /**
97
+ * Inject package version into Edge Function code
98
+ */
99
+ private injectPackageVersion;
100
+ install(stripeKey: string, packageVersion?: string): Promise<void>;
97
101
  }
98
102
  declare function install(params: {
99
103
  supabaseAccessToken: string;
100
104
  supabaseProjectRef: string;
101
105
  stripeKey: string;
106
+ packageVersion?: string;
102
107
  baseProjectUrl?: string;
103
108
  baseManagementApiUrl?: string;
104
109
  }): Promise<void>;
@@ -9,8 +9,8 @@ import {
9
9
  uninstall,
10
10
  webhookFunctionCode,
11
11
  workerFunctionCode
12
- } from "../chunk-SX3HLE4H.js";
13
- import "../chunk-YXQZXR7S.js";
12
+ } from "../chunk-E2HSDYSR.js";
13
+ import "../chunk-M3MYAMG2.js";
14
14
  export {
15
15
  INSTALLATION_ERROR_SUFFIX,
16
16
  INSTALLATION_INSTALLED_SUFFIX,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stripe-experiment-sync",
3
- "version": "1.0.7",
3
+ "version": "1.0.8-beta.1765872477",
4
4
  "private": false,
5
5
  "description": "Stripe Sync Engine to sync Stripe data to Postgres",
6
6
  "type": "module",