-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add salesforce #172
base: main
Are you sure you want to change the base?
add salesforce #172
Conversation
scripts/start.ts
Outdated
@@ -252,5 +252,5 @@ const generateGraphQL = async () => { | |||
const generateDeco = () => import("deco/scripts/apps/bundle.ts"); | |||
|
|||
await generateOpenAPI(); | |||
await generateGraphQL(); | |||
//await generateGraphQL(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bring this back
salesforce/utils/utils.ts
Outdated
@@ -0,0 +1,77 @@ | |||
import { PricingRange } from "./types.ts"; | |||
|
|||
export function slugfy(url: string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is very slow, maybe we should use a map instead
salesforce/utils/session.ts
Outdated
const expireTokenDate = convertSecondsToDate(expires_in).toUTCString(); | ||
const expireRefTokenDate = convertSecondsToDate(refresh_token_expires_in) | ||
.toUTCString(); | ||
headers.set( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use deno setCookie
salesforce/utils/fetch.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this file
salesforce/utils/fetchSalesforce.ts
Outdated
@@ -0,0 +1,27 @@ | |||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need this file? can we remove it?
UPP!!! How we are here? @gustavo-vasconcellos @gustavo-adaptio |
We will put this PR on hold until we see more dev interested on salesforce integration. |
Implementation of new APP for Salesforce integration.