jeff00seattle/ac3-state-management-examples 0
✨ Learn Apollo Client 3's state management best practices
jeff00seattle/circular-dependencies 0
Coding Challenge
jeff00seattle/code-examples-node 0
Node.js code examples and launcher
Fast, easy and reliable testing for anything that runs in a browser.
jeff00seattle/cypress-example-kitchensink 0
This is an example app used to showcase Cypress.io testing.
jeff00seattle/cypress-fail-fast 0
A Cypress plugin to skip tests on first failure.
jeff00seattle/cypress-tutorial-build-todo 0
Step by step code for the Cypress tutorial in which we build and test a todo app
issue commentHubSpot/hubspot-api-nodejs
Bug: FilesApi.archive, Performs a DELETE not a POST to upload a file.
Misunderstanding of the purpose of the method archive
.
In other APIs, archive
is import
or upload
file.
comment created time in 3 days
issue closedHubSpot/hubspot-api-nodejs
Bug: FilesApi.archive, Performs a DELETE not a POST to upload a file.
https://github.com/HubSpot/hubspot-api-nodejs/blob/master/codegen/files/apis/FilesApi.ts#L25-L66
closed time in 3 days
jeff00seattleissue openedHubSpot/hubspot-api-nodejs
Bug: FilesApi.archive, Performs a DELETE not a POST to upload a file.
https://github.com/HubSpot/hubspot-api-nodejs/blob/master/codegen/files/apis/FilesApi.ts#L25-L66
created time in 5 days
issue openedHubSpot/hubspot-api-nodejs
Request: Files/Folders API doSearch, consolidate params in single param of type Search options
REQUEST Files/Folders API doSearch, consolidate params in single param of type Search options.
It is ludicrous to provide undefined
value for almost every param if your goal is to search by param name
, path
, or parentFolderId
.
Create a new type SearchOptions
, and declare a single param of that type.
Node code Search Folders example taken from this endpoint documentation: https://developers.hubspot.com/docs/api/files/files#tab-2
const properties = undefined;
const after = undefined;
const before = undefined;
const limit = undefined;
const sort = undefined;
const id = undefined;
const createdAt = undefined;
const createdAtLte = undefined;
const createdAtGte = undefined;
const updatedAt = undefined;
const updatedAtLte = undefined;
const updatedAtGte = undefined;
const name = undefined;
const path = undefined;
const parentFolderId = undefined;
try {
const apiResponse = await hubspotClient.files.foldersApi.doSearch(properties, after, before, limit, sort, id, createdAt, createdAtLte, createdAtGte, updatedAt, updatedAtLte, updatedAtGte, name, path, parentFolderId);
created time in 9 days
issue commentkelektiv/node-cron
onTick may call onComplete at the end of each run. How?
@intcreator Thank you, I am good. I should have closed.
comment created time in 2 months