@hubspot/local-dev-lib 3.19.1-beta.0 → 3.19.2-beta.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/api/localDevAuth.d.ts +1 -1
- package/lib/hubdb.d.ts +1 -1
- package/package.json +2 -2
package/api/localDevAuth.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export declare function fetchAccessToken(personalAccessKey: string, env?: Enviro
|
|
|
7
7
|
export declare function fetchScopeData(accountId: number, scopeGroup: string): HubSpotPromise<ScopeData>;
|
|
8
8
|
export declare function fetchScopeAuthorizationData(accountId: number): HubSpotPromise<ScopeAuthorizationResponse>;
|
|
9
9
|
export declare function fetchAppInstallationData(portalId: number, projectId: number, appUid: string, requiredScopeGroups: Array<string>, optionalScopeGroups?: Array<string>): HubSpotPromise<PublicAppInstallationData>;
|
|
10
|
-
export declare function fetchEnabledFeatures(accountId: number): Promise<import("axios").AxiosResponse<EnabledFeaturesResponse, any>>;
|
|
10
|
+
export declare function fetchEnabledFeatures(accountId: number): Promise<import("axios").AxiosResponse<EnabledFeaturesResponse, any, {}>>;
|
package/lib/hubdb.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare function createHubDbTable(accountId: number, src: string): Promis
|
|
|
8
8
|
tableId: string;
|
|
9
9
|
rowCount: number;
|
|
10
10
|
}>;
|
|
11
|
-
export declare function updateHubDbTable(accountId: number, tableId: string, src: string): Promise<AxiosResponse<Table, any>>;
|
|
11
|
+
export declare function updateHubDbTable(accountId: number, tableId: string, src: string): Promise<AxiosResponse<Table, any, {}>>;
|
|
12
12
|
export declare function downloadHubDbTable(accountId: number, tableId: string, dest: string): Promise<{
|
|
13
13
|
filePath: string;
|
|
14
14
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/local-dev-lib",
|
|
3
|
-
"version": "3.19.
|
|
3
|
+
"version": "3.19.2-beta.0",
|
|
4
4
|
"description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"address": "2.0.2",
|
|
64
|
-
"axios": "1.
|
|
64
|
+
"axios": "1.12.0",
|
|
65
65
|
"chalk": "2.4.2",
|
|
66
66
|
"chokidar": "3.6.0",
|
|
67
67
|
"content-disposition": "0.5.4",
|