* ci: add Go client integration tests Add test-go-client job to CI workflow following the same pattern as Python, TypeScript, and Rust client tests. The job: - Sets up Go 1.23 with dependency caching - Starts the Hindsight API server - Runs integration tests using the 'integration' build tag - Displays server logs on failure The integration tests (hindsight-clients/go/integration_test.go) cover all core operations: retain, recall, reflect, bank management, and end-to-end workflows. * Move Go cookbook content to hindsight-cookbook repo Removes Go-specific cookbook content that was added in PR #375: - applications/go-memory-service.md - recipes/go-quickstart.md - recipes/go-concurrent-pipeline.md These have been moved to the hindsight-cookbook repository where cookbook content should live per project conventions. * feat(go): add CI test for Go client and patch for ogen null handling - Add test-go-client job to GitHub Actions CI workflow - Create post-generation patch script (patch-ogen.sh) to fix ogen's handling of null values in optional string fields - Patch OptString.Decode() to check jx.Next() type before decoding, properly handling explicit null in JSON responses The patch ensures generated code persists across regenerations and handles the Hindsight API's nullable optional fields correctly. Fixes: Go client integration tests for retain and bank operations Note: Some tests still fail for nullable arrays/objects - those require additional patches for other Opt* types. * feat: use official go generator for Go client * feat: use official go generator for Go client * ci fixes * chore: sync Go client with latest OpenAPI spec - Add model_child_operation_status.go (new model) - Update model_operation_status_response.go with child operations - Update go.mod/go.sum dependencies - Update api/openapi.yaml
250 lines
6.5 KiB
Go
250 lines
6.5 KiB
Go
/*
|
|
Hindsight HTTP API
|
|
|
|
HTTP API for Hindsight
|
|
|
|
API version: 0.4.11
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package hindsight
|
|
|
|
import (
|
|
"encoding/json"
|
|
"bytes"
|
|
"fmt"
|
|
)
|
|
|
|
// checks if the DeleteResponse type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &DeleteResponse{}
|
|
|
|
// DeleteResponse Response model for delete operations.
|
|
type DeleteResponse struct {
|
|
Success bool `json:"success"`
|
|
Message NullableString `json:"message,omitempty"`
|
|
DeletedCount NullableInt32 `json:"deleted_count,omitempty"`
|
|
}
|
|
|
|
type _DeleteResponse DeleteResponse
|
|
|
|
// NewDeleteResponse instantiates a new DeleteResponse object
|
|
// This constructor will assign default values to properties that have it defined,
|
|
// and makes sure properties required by API are set, but the set of arguments
|
|
// will change when the set of required properties is changed
|
|
func NewDeleteResponse(success bool) *DeleteResponse {
|
|
this := DeleteResponse{}
|
|
this.Success = success
|
|
return &this
|
|
}
|
|
|
|
// NewDeleteResponseWithDefaults instantiates a new DeleteResponse object
|
|
// This constructor will only assign default values to properties that have it defined,
|
|
// but it doesn't guarantee that properties required by API are set
|
|
func NewDeleteResponseWithDefaults() *DeleteResponse {
|
|
this := DeleteResponse{}
|
|
return &this
|
|
}
|
|
|
|
// GetSuccess returns the Success field value
|
|
func (o *DeleteResponse) GetSuccess() bool {
|
|
if o == nil {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
|
|
return o.Success
|
|
}
|
|
|
|
// GetSuccessOk returns a tuple with the Success field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *DeleteResponse) GetSuccessOk() (*bool, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Success, true
|
|
}
|
|
|
|
// SetSuccess sets field value
|
|
func (o *DeleteResponse) SetSuccess(v bool) {
|
|
o.Success = v
|
|
}
|
|
|
|
// GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *DeleteResponse) GetMessage() string {
|
|
if o == nil || IsNil(o.Message.Get()) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Message.Get()
|
|
}
|
|
|
|
// GetMessageOk returns a tuple with the Message field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *DeleteResponse) GetMessageOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.Message.Get(), o.Message.IsSet()
|
|
}
|
|
|
|
// HasMessage returns a boolean if a field has been set.
|
|
func (o *DeleteResponse) HasMessage() bool {
|
|
if o != nil && o.Message.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetMessage gets a reference to the given NullableString and assigns it to the Message field.
|
|
func (o *DeleteResponse) SetMessage(v string) {
|
|
o.Message.Set(&v)
|
|
}
|
|
// SetMessageNil sets the value for Message to be an explicit nil
|
|
func (o *DeleteResponse) SetMessageNil() {
|
|
o.Message.Set(nil)
|
|
}
|
|
|
|
// UnsetMessage ensures that no value is present for Message, not even an explicit nil
|
|
func (o *DeleteResponse) UnsetMessage() {
|
|
o.Message.Unset()
|
|
}
|
|
|
|
// GetDeletedCount returns the DeletedCount field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *DeleteResponse) GetDeletedCount() int32 {
|
|
if o == nil || IsNil(o.DeletedCount.Get()) {
|
|
var ret int32
|
|
return ret
|
|
}
|
|
return *o.DeletedCount.Get()
|
|
}
|
|
|
|
// GetDeletedCountOk returns a tuple with the DeletedCount field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *DeleteResponse) GetDeletedCountOk() (*int32, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.DeletedCount.Get(), o.DeletedCount.IsSet()
|
|
}
|
|
|
|
// HasDeletedCount returns a boolean if a field has been set.
|
|
func (o *DeleteResponse) HasDeletedCount() bool {
|
|
if o != nil && o.DeletedCount.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetDeletedCount gets a reference to the given NullableInt32 and assigns it to the DeletedCount field.
|
|
func (o *DeleteResponse) SetDeletedCount(v int32) {
|
|
o.DeletedCount.Set(&v)
|
|
}
|
|
// SetDeletedCountNil sets the value for DeletedCount to be an explicit nil
|
|
func (o *DeleteResponse) SetDeletedCountNil() {
|
|
o.DeletedCount.Set(nil)
|
|
}
|
|
|
|
// UnsetDeletedCount ensures that no value is present for DeletedCount, not even an explicit nil
|
|
func (o *DeleteResponse) UnsetDeletedCount() {
|
|
o.DeletedCount.Unset()
|
|
}
|
|
|
|
func (o DeleteResponse) MarshalJSON() ([]byte, error) {
|
|
toSerialize,err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o DeleteResponse) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
toSerialize["success"] = o.Success
|
|
if o.Message.IsSet() {
|
|
toSerialize["message"] = o.Message.Get()
|
|
}
|
|
if o.DeletedCount.IsSet() {
|
|
toSerialize["deleted_count"] = o.DeletedCount.Get()
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
func (o *DeleteResponse) UnmarshalJSON(data []byte) (err error) {
|
|
// This validates that all required properties are included in the JSON object
|
|
// by unmarshalling the object into a generic map with string keys and checking
|
|
// that every required field exists as a key in the generic map.
|
|
requiredProperties := []string{
|
|
"success",
|
|
}
|
|
|
|
allProperties := make(map[string]interface{})
|
|
|
|
err = json.Unmarshal(data, &allProperties)
|
|
|
|
if err != nil {
|
|
return err;
|
|
}
|
|
|
|
for _, requiredProperty := range(requiredProperties) {
|
|
if _, exists := allProperties[requiredProperty]; !exists {
|
|
return fmt.Errorf("no value given for required property %v", requiredProperty)
|
|
}
|
|
}
|
|
|
|
varDeleteResponse := _DeleteResponse{}
|
|
|
|
decoder := json.NewDecoder(bytes.NewReader(data))
|
|
decoder.DisallowUnknownFields()
|
|
err = decoder.Decode(&varDeleteResponse)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*o = DeleteResponse(varDeleteResponse)
|
|
|
|
return err
|
|
}
|
|
|
|
type NullableDeleteResponse struct {
|
|
value *DeleteResponse
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableDeleteResponse) Get() *DeleteResponse {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableDeleteResponse) Set(val *DeleteResponse) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableDeleteResponse) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableDeleteResponse) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableDeleteResponse(val *DeleteResponse) *NullableDeleteResponse {
|
|
return &NullableDeleteResponse{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableDeleteResponse) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableDeleteResponse) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|
|
|
|
|