diff --git a/VERSION b/VERSION index 0eed1a2..feaae22 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12.0 +1.13.0 diff --git a/api/apis.ts b/api/apis.ts index 1637301..44931ed 100644 --- a/api/apis.ts +++ b/api/apis.ts @@ -38,7 +38,7 @@ export const queryParamsSerializer = (params) => { return Qs.stringify(params, { arrayFormat: "brackets" }); }; -export const USER_AGENT = "OpenAPI-Generator/1.12.0/node"; +export const USER_AGENT = "OpenAPI-Generator/1.13.0/node"; /** * Generates an object containing form data. diff --git a/dist/api.js b/dist/api.js index d87d020..ad99832 100644 --- a/dist/api.js +++ b/dist/api.js @@ -25195,6 +25195,11 @@ var TemplateResponseDocumentFormFieldDropdown = class _TemplateResponseDocumentF name: "group", baseName: "group", type: "string" + }, + { + name: "options", + baseName: "options", + type: "Array" } ]; } @@ -36333,7 +36338,7 @@ var HttpError = class extends Error { var queryParamsSerializer = (params) => { return import_qs.default.stringify(params, { arrayFormat: "brackets" }); }; -var USER_AGENT = "OpenAPI-Generator/1.12.0/node"; +var USER_AGENT = "OpenAPI-Generator/1.13.0/node"; var generateFormData = (obj, typemap) => { const data = {}; let localVarUseFormData = false; diff --git a/docs/model/TemplateResponseDocumentFormFieldDropdown.md b/docs/model/TemplateResponseDocumentFormFieldDropdown.md index 35cadab..24cfdba 100644 --- a/docs/model/TemplateResponseDocumentFormFieldDropdown.md +++ b/docs/model/TemplateResponseDocumentFormFieldDropdown.md @@ -8,5 +8,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- | `type`*_required_ | ```string``` | The type of this form field. See [field types](/api/reference/constants/#field-types).

* Text Field uses `TemplateResponseDocumentFormFieldText`
* Dropdown Field uses `TemplateResponseDocumentFormFieldDropdown`
* Hyperlink Field uses `TemplateResponseDocumentFormFieldHyperlink`
* Checkbox Field uses `TemplateResponseDocumentFormFieldCheckbox`
* Radio Field uses `TemplateResponseDocumentFormFieldRadio`
* Signature Field uses `TemplateResponseDocumentFormFieldSignature`
* Date Signed Field uses `TemplateResponseDocumentFormFieldDateSigned`
* Initials Field uses `TemplateResponseDocumentFormFieldInitials` | [default to 'dropdown'] | | `group` | ```string``` | The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. | | +| `options` | ```Array``` | The options available for this dropdown form field. | | [[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/model/templateResponseDocumentFormFieldDropdown.ts b/model/templateResponseDocumentFormFieldDropdown.ts index 0aeb3e4..4a71019 100644 --- a/model/templateResponseDocumentFormFieldDropdown.ts +++ b/model/templateResponseDocumentFormFieldDropdown.ts @@ -37,6 +37,10 @@ export class TemplateResponseDocumentFormFieldDropdown extends TemplateResponseD * The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. */ "group"?: string | null; + /** + * The options available for this dropdown form field. + */ + "options"?: Array; static discriminator: string | undefined = undefined; @@ -51,6 +55,11 @@ export class TemplateResponseDocumentFormFieldDropdown extends TemplateResponseD baseName: "group", type: "string", }, + { + name: "options", + baseName: "options", + type: "Array", + }, ]; static getAttributeTypeMap(): AttributeTypeMap { diff --git a/openapi-config.yaml b/openapi-config.yaml index ed97b26..06383e4 100644 --- a/openapi-config.yaml +++ b/openapi-config.yaml @@ -2,7 +2,7 @@ generatorName: typescript-node typeMappings: {} additionalProperties: npmName: "@dropbox/sign" - npmVersion: 1.12.0 + npmVersion: 1.13.0 supportsES6: true apiDocPath: ./docs/api modelDocPath: ./docs/model diff --git a/openapi-sdk.yaml b/openapi-sdk.yaml index ac9e788..576b442 100644 --- a/openapi-sdk.yaml +++ b/openapi-sdk.yaml @@ -13104,6 +13104,11 @@ components: description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.' type: string nullable: true + options: + description: 'The options available for this dropdown form field.' + type: array + items: + type: string type: object TemplateResponseDocumentFormFieldHyperlink: description: 'This class extends `TemplateResponseDocumentFormFieldBase`' diff --git a/package-lock.json b/package-lock.json index bbbd626..88f2e39 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dropbox/sign", - "version": "1.12.0", + "version": "1.13.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@dropbox/sign", - "version": "1.12.0", + "version": "1.13.0", "dependencies": { "axios": "^1.8.2", "bluebird": "^3.7.2", diff --git a/package.json b/package.json index eee953b..9d71c4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dropbox/sign", - "version": "1.12.0", + "version": "1.13.0", "description": "Official Node client for Dropbox Sign", "repository": { "type": "git", diff --git a/types/api/apis.d.ts b/types/api/apis.d.ts index d15f3ad..851d24a 100644 --- a/types/api/apis.d.ts +++ b/types/api/apis.d.ts @@ -23,7 +23,7 @@ export interface returnTypeI { body?: any; } export declare const queryParamsSerializer: (params: any) => string; -export declare const USER_AGENT = "OpenAPI-Generator/1.12.0/node"; +export declare const USER_AGENT = "OpenAPI-Generator/1.13.0/node"; export declare const generateFormData: (obj: any, typemap: AttributeTypeMap) => { localVarUseFormData: boolean; data: object; diff --git a/types/model/templateResponseDocumentFormFieldDropdown.d.ts b/types/model/templateResponseDocumentFormFieldDropdown.d.ts index b9f96a2..e125b2e 100644 --- a/types/model/templateResponseDocumentFormFieldDropdown.d.ts +++ b/types/model/templateResponseDocumentFormFieldDropdown.d.ts @@ -3,6 +3,7 @@ import { TemplateResponseDocumentFormFieldBase } from "./templateResponseDocumen export declare class TemplateResponseDocumentFormFieldDropdown extends TemplateResponseDocumentFormFieldBase { "type": string; "group"?: string | null; + "options"?: Array; static discriminator: string | undefined; static attributeTypeMap: AttributeTypeMap; static getAttributeTypeMap(): AttributeTypeMap;