diff --git a/openapi-sdk.yaml b/openapi-sdk.yaml index b614c06c4..d1055081c 100644 --- a/openapi-sdk.yaml +++ b/openapi-sdk.yaml @@ -7364,7 +7364,6 @@ paths: seo: title: 'Update Template | REST API | Dropbox Sign for Developers' description: 'The Dropbox Sign API easily allows you to build custom integrations. To find out how to update properties of an existing template, click here.' - x-hideOn: doc '/template/update_files/{template_id}': post: tags: @@ -9372,7 +9371,6 @@ components: type: boolean default: false deprecated: true - x-hideOn: doc is_eid: description: |- Send with a value of `true` if you wish to enable @@ -9474,7 +9472,6 @@ components: type: boolean default: false deprecated: true - x-hideOn: doc is_eid: description: |- Send with a value of `true` if you wish to enable diff --git a/openapi.yaml b/openapi.yaml index 17d567386..8e0edf1a3 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -7978,7 +7978,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object FaxLineAddUserRequest: required: @@ -8571,7 +8570,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk expires_at: description: 'When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.' type: integer @@ -8665,7 +8663,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestEditRequest: properties: @@ -8825,7 +8822,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestEditEmbeddedRequest: required: @@ -8983,7 +8979,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestEditEmbeddedWithTemplateRequest: required: @@ -9073,7 +9068,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestEditWithTemplateRequest: description: '' @@ -9167,7 +9161,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestRemindRequest: required: @@ -9339,7 +9332,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestSendWithTemplateRequest: description: '' @@ -9433,7 +9425,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object SignatureRequestUpdateRequest: required: @@ -10405,9 +10396,7 @@ components: - enabled - enabled_by_default - forced - x-hideOn: sdk type: object - x-hideOn: sdk SubTemplateRole: properties: name: @@ -10724,7 +10713,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object TemplateCreateEmbeddedDraftRequest: required: @@ -10872,7 +10860,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object TemplateRemoveUserRequest: properties: @@ -10912,7 +10899,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object TemplateUpdateFilesRequest: properties: @@ -11094,7 +11080,6 @@ components: allOf: - $ref: '#/components/schemas/SubSignerExperience' - x-hideOn: sdk type: object UnclaimedDraftCreateEmbeddedRequest: description: '' @@ -12306,7 +12291,6 @@ components: allOf: - $ref: '#/components/schemas/SignatureRequestSignerExperience' - x-hideOn: sdk type: object x-internal-class: true SignatureRequestResponseAttachment: @@ -12686,10 +12670,8 @@ components: - enabled - enabled_by_default - forced - x-hideOn: sdk type: object x-internal-class: true - x-hideOn: sdk TeamResponse: description: 'Contains information about your team and its members' properties: @@ -12866,7 +12848,6 @@ components: allOf: - $ref: '#/components/schemas/SignatureRequestSignerExperience' - x-hideOn: sdk type: object x-internal-class: true TemplateResponseAccount: diff --git a/src/Hello/OpenApi/RawFile.php b/src/Hello/OpenApi/RawFile.php index 0ecfe46a2..719856429 100644 --- a/src/Hello/OpenApi/RawFile.php +++ b/src/Hello/OpenApi/RawFile.php @@ -167,6 +167,7 @@ private function recurse(array $data, string $surface_id): TranslationResult unset($data[$k]); $empty_by_hiding = empty($data); } else { + unset($v[self::HIDE_ON]); $result = $this->recurse($v, $surface_id); if ($result->isAllHidden()) { unset($data[$k]);