Skip to content

Commit

Permalink
chore: sync with latest openapi master
Browse files Browse the repository at this point in the history
  • Loading branch information
shuowu committed Jun 18, 2020
1 parent 8ff54f5 commit 2dad876
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/models/InlineHook.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const InlineHookChannel = require('./InlineHookChannel');
* @property { string } id
* @property { dateTime } lastUpdated
* @property { string } name
* @property { string } status
* @property { string } type
* @property { InlineHookStatus } status
* @property { InlineHookType } type
* @property { string } version
*/
class InlineHook extends Resource {
Expand Down
31 changes: 31 additions & 0 deletions src/models/InlineHookStatus.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*!
* Copyright (c) 2017-2020, Okta, Inc. and/or its affiliates. All rights reserved.
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
*
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and limitations under the License.
*/


/* THIS FILE IS AUTO-GENERATED - SEE CONTRIBUTOR DOCUMENTATION */

var Resource = require('../resource');


/**
* @class InlineHookStatus
* @extends Resource
*/
class InlineHookStatus extends Resource {
constructor(resourceJson, client) {
super(resourceJson, client);

}

}

module.exports = InlineHookStatus;
31 changes: 31 additions & 0 deletions src/models/InlineHookType.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*!
* Copyright (c) 2017-2020, Okta, Inc. and/or its affiliates. All rights reserved.
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
*
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and limitations under the License.
*/


/* THIS FILE IS AUTO-GENERATED - SEE CONTRIBUTOR DOCUMENTATION */

var Resource = require('../resource');


/**
* @class InlineHookType
* @extends Resource
*/
class InlineHookType extends Resource {
constructor(resourceJson, client) {
super(resourceJson, client);

}

}

module.exports = InlineHookType;
2 changes: 1 addition & 1 deletion src/models/JsonWebKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var Resource = require('../resource');
* @property { string } alg
* @property { dateTime } created
* @property { string } e
* @property { string } expiresAt
* @property { dateTime } expiresAt
* @property { array } key_ops
* @property { string } kid
* @property { string } kty
Expand Down
2 changes: 1 addition & 1 deletion src/models/VerifyUserFactorResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var Resource = require('../resource');
* @extends Resource
* @property { hash } _embedded
* @property { hash } _links
* @property { string } expiresAt
* @property { dateTime } expiresAt
* @property { string } factorResult
* @property { string } factorResultMessage
*/
Expand Down
2 changes: 2 additions & 0 deletions src/models/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ exports.InlineHookPayload = require('./InlineHookPayload');
exports.InlineHookResponse = require('./InlineHookResponse');
exports.InlineHookResponseCommandValue = require('./InlineHookResponseCommandValue');
exports.InlineHookResponseCommands = require('./InlineHookResponseCommands');
exports.InlineHookStatus = require('./InlineHookStatus');
exports.InlineHookType = require('./InlineHookType');
exports.IonField = require('./IonField');
exports.IonForm = require('./IonForm');
exports.JsonWebKey = require('./JsonWebKey');
Expand Down

0 comments on commit 2dad876

Please sign in to comment.