Skip to content

Commit

Permalink
Release 1.6.2 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtreminio-dropbox authored Sep 16, 2024
1 parent f84a654 commit 22505b2
Show file tree
Hide file tree
Showing 18 changed files with 43 additions and 18 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (C) 2023 dropbox.com
Copyright (c) 2024 dropbox.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
2 changes: 1 addition & 1 deletion api/apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const queryParamsSerializer = (params) => {
return Qs.stringify(params, { arrayFormat: "brackets" });
};

export const USER_AGENT = "OpenAPI-Generator/1.6.1/node";
export const USER_AGENT = "OpenAPI-Generator/1.6.2/node";

/**
* Generates an object containing form data.
Expand Down
2 changes: 1 addition & 1 deletion dist/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -32364,7 +32364,7 @@ var HttpError = class extends Error {
var queryParamsSerializer = (params) => {
return import_qs.default.stringify(params, { arrayFormat: "brackets" });
};
var USER_AGENT = "OpenAPI-Generator/1.6.1/node";
var USER_AGENT = "OpenAPI-Generator/1.6.2/node";
var generateFormData = (obj, typemap) => {
const data = {};
let localVarUseFormData = false;
Expand Down
24 changes: 14 additions & 10 deletions openapi-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,42 @@ generatorName: typescript-node
typeMappings: {}
additionalProperties:
npmName: "@dropbox/sign"
npmVersion: 1.6.1
npmVersion: 1.6.2
supportsES6: true
apiDocPath: ./docs/api
modelDocPath: ./docs/model
sortModelPropertiesByRequiredFlag: true
useCustomTemplateCode: true
licenseCopyrightYear: 2024
files:
npmignore:
dropbox-npmignore:
templateType: SupportingFiles
destinationFilename: .npmignore
api-doc.mustache:
dropbox-api-doc.mustache:
templateType: APIDocs
destinationFilename: .md
model-doc.mustache:
dropbox-model-doc.mustache:
templateType: ModelDocs
destinationFilename: .md
README.mustache:
dropbox-README.mustache:
templateType: SupportingFiles
destinationFilename: README.md
eventCallbackHelper.mustache:
dropbox-eventCallbackHelper.mustache:
templateType: SupportingFiles
destinationFilename: model/eventCallbackHelper.ts
VERSION.mustache:
dropbox-LICENSE.mustache:
templateType: SupportingFiles
destinationFilename: LICENSE
dropbox-VERSION.mustache:
templateType: SupportingFiles
destinationFilename: VERSION
api-index.mustache:
dropbox-api-index.mustache:
templateType: SupportingFiles
destinationFilename: api/index.ts
model-index.mustache:
dropbox-model-index.mustache:
templateType: SupportingFiles
destinationFilename: model/index.ts
prettierrc.cjs:
dropbox-prettierrc.cjs:
templateType: SupportingFiles
destinationFilename: .prettierrc.cjs
globalProperties:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dropbox/sign",
"version": "1.6.1",
"version": "1.6.2",
"description": "Official Node client for Dropbox Sign",
"repository": {
"type": "git",
Expand Down
21 changes: 21 additions & 0 deletions templates/dropbox-LICENSE.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) {{licenseCopyrightYear}} dropbox.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion types/api/apis.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface returnTypeI {
body?: any;
}
export declare const queryParamsSerializer: (params: any) => string;
export declare const USER_AGENT = "OpenAPI-Generator/1.6.1/node";
export declare const USER_AGENT = "OpenAPI-Generator/1.6.2/node";
export declare const generateFormData: (obj: any, typemap: AttributeTypeMap) => {
localVarUseFormData: boolean;
data: object;
Expand Down

0 comments on commit 22505b2

Please sign in to comment.