@gscdump/contracts 0.17.1 → 0.17.3
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/index.d.mts +5 -1
- 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>;
|