Skip to content

Commit

Permalink
Merge pull request #37 from seamapi/fern-bot/03-01-2024-0503AM
Browse files Browse the repository at this point in the history
🌿 Fern Regeneration -- March 1, 2024
  • Loading branch information
dawnho committed Mar 1, 2024
2 parents 3657c1c + 730a91c commit 1473ef3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion acs/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ type CredentialsGetRequest struct {
}

type CredentialsListRequest struct {
IsMultiPhoneSyncCredential *bool `json:"is_multi_phone_sync_credential,omitempty" url:"is_multi_phone_sync_credential,omitempty"`
AcsUserId *string `json:"acs_user_id,omitempty" url:"acs_user_id,omitempty"`
AcsSystemId *string `json:"acs_system_id,omitempty" url:"acs_system_id,omitempty"`
UserIdentityId *string `json:"user_identity_id,omitempty" url:"user_identity_id,omitempty"`
IsMultiPhoneSyncCredential *bool `json:"is_multi_phone_sync_credential,omitempty" url:"is_multi_phone_sync_credential,omitempty"`
}

type CredentialsAssignResponse struct {
Expand Down
2 changes: 1 addition & 1 deletion core/request_option.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (r *RequestOptions) cloneHeader() http.Header {
headers := r.HTTPHeader.Clone()
headers.Set("X-Fern-Language", "Go")
headers.Set("X-Fern-SDK-Name", "github.com/seamapi/go")
headers.Set("X-Fern-SDK-Version", "v0.2.13")
headers.Set("X-Fern-SDK-Version", "v0.2.14")
return headers
}

Expand Down
9 changes: 4 additions & 5 deletions phones/simulate.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ import (
)

type SimulateCreateSandboxPhoneRequest struct {
AssaAbloyCredentialServiceAcsSystemId string `json:"assa_abloy_credential_service_acs_system_id" url:"assa_abloy_credential_service_acs_system_id"`
CustomSdkInstallationId *string `json:"custom_sdk_installation_id,omitempty" url:"custom_sdk_installation_id,omitempty"`
UserIdentityId string `json:"user_identity_id" url:"user_identity_id"`
PhoneMetadata *SimulateCreateSandboxPhoneRequestPhoneMetadata `json:"phone_metadata,omitempty" url:"phone_metadata,omitempty"`
AssaAbloyMetadata *SimulateCreateSandboxPhoneRequestAssaAbloyMetadata `json:"assa_abloy_metadata,omitempty" url:"assa_abloy_metadata,omitempty"`
CustomSdkInstallationId *string `json:"custom_sdk_installation_id,omitempty" url:"custom_sdk_installation_id,omitempty"`
UserIdentityId string `json:"user_identity_id" url:"user_identity_id"`
PhoneMetadata *SimulateCreateSandboxPhoneRequestPhoneMetadata `json:"phone_metadata,omitempty" url:"phone_metadata,omitempty"`
AssaAbloyMetadata *SimulateCreateSandboxPhoneRequestAssaAbloyMetadata `json:"assa_abloy_metadata,omitempty" url:"assa_abloy_metadata,omitempty"`
}

type SimulateCreateSandboxPhoneRequestAssaAbloyMetadata struct {
Expand Down
2 changes: 2 additions & 0 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,8 @@ type AcsSystem struct {
CreatedAt time.Time `json:"created_at" url:"created_at"`
WorkspaceId string `json:"workspace_id" url:"workspace_id"`
ConnectedAccountIds []string `json:"connected_account_ids,omitempty" url:"connected_account_ids,omitempty"`
ImageUrl string `json:"image_url" url:"image_url"`
ImageAltText string `json:"image_alt_text" url:"image_alt_text"`

_rawJSON json.RawMessage
}
Expand Down

0 comments on commit 1473ef3

Please sign in to comment.