Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
Feed API and Connectors API Question
-
I'm just looking to find out what properties in the data model are needed to set the below properties. I'm not able to find them specifically in the documentation here: https://docs.inedo.com/docs/proget-reference-api-feed-management
Feed Management API:
How to enable download statistics (disabled by default and we need enabled)
How to support both ODATA (v2) and JSON-LD (v3) (default is only ODATA (v2))Connectors API:
Which property in JSON controls the "Remove signature file" option (enabled by default but we need disabled)
-
How to enable download statistics (disabled by default and we need enabled)
This is controlled by
restrictPackageStatistics
property.How to support both ODATA (v2) and JSON-LD (v3) (default is only ODATA (v2))
There's no property for this; however it should be enabled by default (it is not). We can also add this as
useApiV3
Which property in JSON controls the "Remove signature file" option (enabled by default but we need disabled)
There's also no property for this....; however it IS currently disabled by default . We can also add this as
stripSignature
I made these changes as PG-2317, and they'll be in ProGet 2022.27 (which should ship next Friday).
-
Great thank you!