Skip to content

Commit 623292c

Browse files
authored
Merge branch 'master' into issue-13804
2 parents bd50c3f + 8f91060 commit 623292c

File tree

7 files changed

+8
-4
lines changed

7 files changed

+8
-4
lines changed

platform/dist/constants.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export declare const DEFAULT_POLLING_SOURCE_TIMER_INTERVAL: number;
2+
export declare const PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID = "fnd4m13k1mjb6djallp1m9kr7o8kslcu";

platform/dist/constants.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3-
exports.DEFAULT_POLLING_SOURCE_TIMER_INTERVAL = void 0;
3+
exports.PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID = exports.DEFAULT_POLLING_SOURCE_TIMER_INTERVAL = void 0;
44
exports.DEFAULT_POLLING_SOURCE_TIMER_INTERVAL = 60 * 15;
5+
exports.PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID = "fnd4m13k1mjb6djallp1m9kr7o8kslcu";

platform/dist/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export { ConfigurationError, } from "./errors";
77
export { default as sqlProp, } from "./sql-prop";
88
export type { ColumnSchema, DbInfo, TableInfo, TableMetadata, TableSchema, } from "./sql-prop";
99
export { default as sqlProxy, } from "./sql-proxy";
10-
export { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL, } from "./constants";
10+
export { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL, PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID, } from "./constants";
1111
export declare const SendConfigEmail: t.PartialC<{
1212
html: t.StringC;
1313
subject: t.StringC;

platform/dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ var sql_proxy_1 = require("./sql-proxy");
1616
Object.defineProperty(exports, "sqlProxy", { enumerable: true, get: function () { return sql_proxy_1.default; } });
1717
var constants_1 = require("./constants");
1818
Object.defineProperty(exports, "DEFAULT_POLLING_SOURCE_TIMER_INTERVAL", { enumerable: true, get: function () { return constants_1.DEFAULT_POLLING_SOURCE_TIMER_INTERVAL; } });
19+
Object.defineProperty(exports, "PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID", { enumerable: true, get: function () { return constants_1.PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID; } });
1920
const SendPayload = t.union([
2021
t.string,
2122
t.object,

platform/lib/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export const DEFAULT_POLLING_SOURCE_TIMER_INTERVAL = 60 * 15;
2-
export const PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID = "38931588176-fnd4m13k1mjb6djallp1m9kr7o8kslcu.apps.googleusercontent.com";
2+
export const PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID = "fnd4m13k1mjb6djallp1m9kr7o8kslcu";

platform/lib/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export {
3131

3232
export {
3333
DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
34+
PD_OFFICIAL_GMAIL_OAUTH_CLIENT_ID,
3435
} from "./constants";
3536

3637
const SendPayload = t.union([

platform/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/platform",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "Pipedream platform globals (typing and runtime type checking)",
55
"homepage": "https://pipedream.com",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)