Unable to retrieve all properties for hubspot_crm_deals in cloudquery

Hi, I am trying to get all properties of hubspot_crm_deals but when I use the below YAML code I can’t get all of the properties. How should I modify this?

kind: source
spec:
  name: "hubspot"
  path: cloudquery/hubspot
  version: "v1.5.0"
  destinations: ["s3"]
  tables: ["hubspot_crm_pipelines", "hubspot_crm_deals", "hubspot_crm_contacts"]
  spec:
    max_requests_per_second: 5
    table_options:
      hubspot_crm_deals:
        properties: []
        associations: 
          - contacts
      hubspot_crm_contacts:
        properties: []

Any assistance would be greatly appreciated!

To get details about the hubspot_crm_deals, you need to fill in the properties array with the fields you want to sync. You can find out more about that API from the HubSpot documentation here.

These are the properties which we created in HubSpot. I tried to put them inside the bracket like:

properties: ['name', 'address']

But I still get other fields under properties as output. Is this the right way or is there any other difference for the properties which we created?