Skip to content

Releases: yllieth/predicsis_ml_sdk-javascript

0.4.2

18 Sep 13:17
Compare
Choose a tag to compare
0.4.2 Pre-release
Pre-release

Fix issue #19 (Error while retreiving subsets)

Dataset not linked to a dictionary

0.4.1

09 Sep 16:00
Compare
Choose a tag to compare
0.4.1 Pre-release
Pre-release

Different parameter name between S3 and swift :

  • S3 is using a key parameter
  • swift is using an object parameter

0.4.0

01 Sep 21:19
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release

Upload files to S3 with a PUT method instead of a POST

0.3.2

23 Aug 14:55
Compare
Choose a tag to compare
0.3.2 Pre-release
Pre-release

Don't guess type of Authorization token. Application must define this type when calling setOauthToken() method. Previously, we automatically prefixed tokens by Bearer.

0.3.1

21 Aug 16:48
Compare
Choose a tag to compare
0.3.1 Pre-release
Pre-release

Allow outgoing requests with no Authorization header (predicsisAPI.setOauthToken(false))

0.3.0

21 Aug 08:34
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release
  • Add a data_file resource
  • Add a signed_url resource
  • BC break replace dataset.data_file and source.data_file objects by dataset.data_file_id and source.data_file_id reference:

Instead of

{
  "dataset": {
    "..."
    "data_file": {
      "id": "54edf76c6170700001870000",
      "filename": "hello.csv",
      "type": "S3",
      "size": 24,
      "url": "http://prod.kml-api.s3-us-west-2.amazonaws.com/uploads/5347b31750432d45a5020000/sources/1415101671848/hello.csv"
    }
    "..."
  }
 }

... we now have:

{
  "dataset": {
    "..."
    "data_file": "54edf76c6170700001870000",
    "..."
  }
 }
{
  "data_file": {
    "id": "54edf76c6170700001870000",
    "filename": "hello.csv",
    "type": "S3",
    "size": 24,
    "signed_url": {
      "links": {
        "self": "https://api.predicsis.com/data_files/53c7e7b668796493d3010000/signed_url"
      }
    },
    "fileable_type": "Dataset",
    "fileable_id": "5399a07170632d4b0c010000"
  }
}
{
  "data_file": {
    "signed_url": "http://prod.kml-api.s3-us-west-2.amazonaws.com/uploads/5347b31750432d45a5020000/sources/1415101671848/hello.csv"
  }
}

0.2.6

18 Aug 16:02
Compare
Choose a tag to compare
0.2.6 Pre-release
Pre-release

Separate Uploads and Datasets in two distinct concepts

0.2.5

07 Aug 12:39
Compare
Choose a tag to compare
0.2.5 Pre-release
Pre-release

remove dead code

0.2.4

06 Aug 14:56
Compare
Choose a tag to compare
0.2.4 Pre-release
Pre-release

Fix file upload (api.Datasets event emitter for first event "started")

0.2.3

06 Aug 13:02
Compare
Choose a tag to compare
0.2.3 Pre-release
Pre-release

Event based upload