Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛fix: service reference update for share remove #39

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 0.2.10 (2023-10-25)


### Bug Fixes

* update references for share remove ([#38](https://github.com/hawks-atlanta/proxy-net/issues/38)) ([1d219fa](https://github.com/hawks-atlanta/proxy-net/commit/1d219fae5c5e5fd34cf0f12f7b05048288f8136d))

### 0.2.9 (2023-10-25)

### 0.2.8 (2023-10-22)

### 0.2.7 (2023-10-20)
Expand Down
87 changes: 44 additions & 43 deletions ServiceReference/Reference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,50 +125,11 @@ public string password
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://soap.gateway/")]
public partial class reqShareRemove
{

private string fileUUIDField;

private string otherUsernameField;

/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public string fileUUID
{
get
{
return this.fileUUIDField;
}
set
{
this.fileUUIDField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
public string otherUsername
{
get
{
return this.otherUsernameField;
}
set
{
this.otherUsernameField = value;
}
}
}

/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqShareFile))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqFileMove))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqAccPassword))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqShareRemove))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqFileNewDir))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqFileUpload))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(reqFile))]
Expand Down Expand Up @@ -318,6 +279,46 @@ public string newpassword
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://soap.gateway/")]
public partial class reqShareRemove : authorization
{

private string fileUUIDField;

private string otherUsernameField;

/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public string fileUUID
{
get
{
return this.fileUUIDField;
}
set
{
this.fileUUIDField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
public string otherUsername
{
get
{
return this.otherUsernameField;
}
set
{
this.otherUsernameField = value;
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
Expand Down Expand Up @@ -485,11 +486,11 @@ public string newName
public partial class reqFileDelete : authorization
{

private string[] fileUUIDField;
private string fileUUIDField;

/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("fileUUID", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=true, Order=0)]
public string[] fileUUID
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public string fileUUID
{
get
{
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"git-semver-tags": "^4.1.1",
"standard-version": "^9.5.0"
},
"version": "0.2.8"
"version": "0.2.10"
}