@gscdump/contracts 0.17.0 → 0.17.2

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +5 -1
  2. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -4492,6 +4492,10 @@ interface PartnerClient {
4492
4492
  attempts?: number;
4493
4493
  intervalMs?: number;
4494
4494
  }) => Promise<GscdumpUserStatus>;
4495
+ waitForUserLifecycleReady: (userId: string, options?: {
4496
+ attempts?: number;
4497
+ intervalMs?: number;
4498
+ }) => Promise<PartnerLifecycleResponse>;
4495
4499
  getUserSites: (userId: string) => Promise<{
4496
4500
  sites: GscdumpUserSite[];
4497
4501
  }>;
@@ -4505,7 +4509,7 @@ interface PartnerClient {
4505
4509
  success: boolean;
4506
4510
  }>;
4507
4511
  getAnalysisSources: (siteId: string, tables?: string[] | string) => Promise<GscdumpAnalysisSourcesResponse>;
4508
- getSiteSyncStatus: (siteId: string) => Promise<GscdumpSyncStatusResponse>;
4512
+ getSiteSyncStatus: (siteId: string, userId?: string) => Promise<GscdumpSyncStatusResponse>;
4509
4513
  getData: (siteId: string, state: BuilderState, options?: DataQueryOptions) => Promise<GscdumpDataResponse>;
4510
4514
  getDataDetail: (siteId: string, state: BuilderState, options?: DataDetailOptions) => Promise<GscdumpDataDetailResponse>;
4511
4515
  getAnalysis: (siteId: string, params: GscdumpAnalysisParams) => Promise<GscdumpAnalysisResponse>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/contracts",
3
3
  "type": "module",
4
- "version": "0.17.0",
4
+ "version": "0.17.2",
5
5
  "description": "Shared gscdump.com API, webhook, realtime, and lifecycle contracts.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",