From 484ae83b23e08333a3434bbf80653a9cdeac31c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 15 Jul 2026 05:05:09 +0000 Subject: [PATCH] Update SDK to version v3.116.5 - Generated from OpenAPI spec version v3.116.5 - Auto-generated by GitHub Actions --- .sdk-version | 2 +- docs/CallEdge.md | 26 ++++++++++++++++++++++++++ v3/client.go | 2 +- v3/configuration.go | 2 +- v3/model_call_edge.go | 37 +++++++++++++++++++++++++++++++++++++ 5 files changed, 66 insertions(+), 3 deletions(-) diff --git a/.sdk-version b/.sdk-version index 29fc955..ee92a31 100644 --- a/.sdk-version +++ b/.sdk-version @@ -1 +1 @@ -v3.116.0 +v3.116.5 diff --git a/docs/CallEdge.md b/docs/CallEdge.md index 4ee98c5..64559e1 100644 --- a/docs/CallEdge.md +++ b/docs/CallEdge.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **CallerFunctionId** | **int64** | | **CallerName** | Pointer to **string** | | [optional] **CallerVaddr** | **int64** | Entry vaddr of the caller function (joined from function_t). | +**ImportedFunctionId** | Pointer to **int64** | Imported function ID for an external callee, resolved via the thunk/stub address. | [optional] **IsExternal** | **bool** | | **ThunkedVaddr** | Pointer to **int64** | | [optional] @@ -167,6 +168,31 @@ and a boolean to check if the value has been set. SetCallerVaddr sets CallerVaddr field to given value. +### GetImportedFunctionId + +`func (o *CallEdge) GetImportedFunctionId() int64` + +GetImportedFunctionId returns the ImportedFunctionId field if non-nil, zero value otherwise. + +### GetImportedFunctionIdOk + +`func (o *CallEdge) GetImportedFunctionIdOk() (*int64, bool)` + +GetImportedFunctionIdOk returns a tuple with the ImportedFunctionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetImportedFunctionId + +`func (o *CallEdge) SetImportedFunctionId(v int64)` + +SetImportedFunctionId sets ImportedFunctionId field to given value. + +### HasImportedFunctionId + +`func (o *CallEdge) HasImportedFunctionId() bool` + +HasImportedFunctionId returns a boolean if a field has been set. + ### GetIsExternal `func (o *CallEdge) GetIsExternal() bool` diff --git a/v3/client.go b/v3/client.go index dc4c4f6..24dce23 100644 --- a/v3/client.go +++ b/v3/client.go @@ -40,7 +40,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the RevEng.AI API API vv3.116.0 +// APIClient manages communication with the RevEng.AI API API vv3.116.5 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/v3/configuration.go b/v3/configuration.go index 2cc4332..52edd9d 100644 --- a/v3/configuration.go +++ b/v3/configuration.go @@ -91,7 +91,7 @@ type Configuration struct { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "OpenAPI-Generator/v3.116.0/go", + UserAgent: "OpenAPI-Generator/v3.116.5/go", Debug: false, Servers: ServerConfigurations{ { diff --git a/v3/model_call_edge.go b/v3/model_call_edge.go index 354b8a4..41aa177 100644 --- a/v3/model_call_edge.go +++ b/v3/model_call_edge.go @@ -27,6 +27,8 @@ type CallEdge struct { CallerName *string `json:"caller_name,omitempty"` // Entry vaddr of the caller function (joined from function_t). CallerVaddr int64 `json:"caller_vaddr"` + // Imported function ID for an external callee, resolved via the thunk/stub address. + ImportedFunctionId *int64 `json:"imported_function_id,omitempty"` IsExternal bool `json:"is_external"` ThunkedVaddr *int64 `json:"thunked_vaddr,omitempty"` } @@ -222,6 +224,38 @@ func (o *CallEdge) SetCallerVaddr(v int64) { o.CallerVaddr = v } +// GetImportedFunctionId returns the ImportedFunctionId field value if set, zero value otherwise. +func (o *CallEdge) GetImportedFunctionId() int64 { + if o == nil || IsNil(o.ImportedFunctionId) { + var ret int64 + return ret + } + return *o.ImportedFunctionId +} + +// GetImportedFunctionIdOk returns a tuple with the ImportedFunctionId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CallEdge) GetImportedFunctionIdOk() (*int64, bool) { + if o == nil || IsNil(o.ImportedFunctionId) { + return nil, false + } + return o.ImportedFunctionId, true +} + +// HasImportedFunctionId returns a boolean if a field has been set. +func (o *CallEdge) HasImportedFunctionId() bool { + if o != nil && !IsNil(o.ImportedFunctionId) { + return true + } + + return false +} + +// SetImportedFunctionId gets a reference to the given int64 and assigns it to the ImportedFunctionId field. +func (o *CallEdge) SetImportedFunctionId(v int64) { + o.ImportedFunctionId = &v +} + // GetIsExternal returns the IsExternal field value func (o *CallEdge) GetIsExternal() bool { if o == nil { @@ -300,6 +334,9 @@ func (o CallEdge) ToMap() (map[string]interface{}, error) { toSerialize["caller_name"] = o.CallerName } toSerialize["caller_vaddr"] = o.CallerVaddr + if !IsNil(o.ImportedFunctionId) { + toSerialize["imported_function_id"] = o.ImportedFunctionId + } toSerialize["is_external"] = o.IsExternal if !IsNil(o.ThunkedVaddr) { toSerialize["thunked_vaddr"] = o.ThunkedVaddr