Skip to content

Commit

Permalink
1.0.0.144 - Upsert-XrmRecord : Return full response
Browse files Browse the repository at this point in the history
  • Loading branch information
Aymeric committed Dec 8, 2023
1 parent 3266c2d commit 335fc1e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
12 changes: 6 additions & 6 deletions PowerDataOps.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Aymeric Mouillé
#
# Generated on: 31/10/2023
# Generated on: 08/12/2023
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'PowerDataOps'

# Version number of this module.
ModuleVersion = '1.0.0.142'
ModuleVersion = '1.0.0.144'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -32,20 +32,20 @@ Copyright = '(c) 2020 Aymeric Mouille. All rights reserved.'
# Description of the functionality provided by this module
Description = 'PowerShell module for Microsoft Dataverse (ex Common Data Service) and Power Platform automation (Data Management, administration and DevOps activities)'

# Minimum version of the Windows PowerShell engine required by this module
# Minimum version of the PowerShell engine required by this module
# PowerShellVersion = ''

# Name of the Windows PowerShell host required by this module
# Name of the PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# Minimum version of the PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# ClrVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
Expand Down
3 changes: 1 addition & 2 deletions src/Client/Upsert-XrmRecord.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ function Upsert-XrmRecord {
}

$response = Invoke-XrmRequest -XrmClient $XrmClient -Request $request;
$id = $response.Results["id"];
$id;
$response;
}
end {
$StopWatch.Stop();
Expand Down

0 comments on commit 335fc1e

Please sign in to comment.