Comparing version 1.1.8 to 1.1.9
@@ -226,10 +226,10 @@ #!/usr/bin/env node | ||
program | ||
.version('1.1.8') | ||
.version('1.1.9') | ||
.option('-e, --environment <environment>', 'int1, sbx1 (default), stg1, etc.', 'sbx1') | ||
.option('-f, --file <file>', 'csv file to immerse') | ||
.option('-t, --target', 'target updates to specified fields'); | ||
.option('-t, --target', 'updates only fields in the csv file'); | ||
program | ||
.command('create <entity>') | ||
.description('creates specified entity i.e. Category, Media, Person, Playlist, Product') | ||
.description('creates Category, Media, Person, Playlist, or Product') | ||
.action(function (entity) { | ||
@@ -254,3 +254,3 @@ if (!program.file) { | ||
.command('update <entity>') | ||
.description('updates specified entity i.e. Category, Media, Person, Playlist, Product') | ||
.description('updates Category, Media, Person, Playlist, or Product') | ||
.action(function (entity) { | ||
@@ -257,0 +257,0 @@ if (!program.file) { |
{ | ||
"name": "immersion", | ||
"version": "1.1.8", | ||
"version": "1.1.9", | ||
"description": "content direct product catalog command line tool", | ||
@@ -5,0 +5,0 @@ "main": "immersion.js", |
@@ -7,3 +7,3 @@ # Immersion | ||
Immersion helps in ingesting categories, media, people, playlists, and products by pulling data from a CSV file. | ||
Immersion helps ingesting categories, media, people, playlists, and products by pulling data from a CSV file. | ||
@@ -23,3 +23,3 @@ ## Installation | ||
`Product.Id.Type,Product.Id.Value,Product.Name,Product.References[0].Type,Product.References[0].Value` | ||
`Product.Id.Type,Product.Id.Value,Product.Name,Product.References[0]` | ||
@@ -52,3 +52,3 @@ Objects are referenced using dot notation while arrays use brackets. | ||
Updates product objects in sandbox using targetted method. | ||
Updates product objects in sandbox using targeted method (only fields in the CSV file are updated). | ||
@@ -55,0 +55,0 @@ ## License |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13112