Skip to content

Commit a5aa653

Browse files
committed
[ClientSDKs] codegen
1 parent ac9aa86 commit a5aa653

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ Class | Method | HTTP request | Description
169169
- [RaiDbSdk.LoadData](docs/LoadData.md)
170170
- [RaiDbSdk.LoadDataAction](docs/LoadDataAction.md)
171171
- [RaiDbSdk.LoadDataActionResult](docs/LoadDataActionResult.md)
172-
- [RaiDbSdk.LoadDataProblem](docs/LoadDataProblem.md)
173172
- [RaiDbSdk.ModifyWorkspaceAction](docs/ModifyWorkspaceAction.md)
174173
- [RaiDbSdk.ModifyWorkspaceActionResult](docs/ModifyWorkspaceActionResult.md)
175174
- [RaiDbSdk.Nil](docs/Nil.md)
@@ -191,6 +190,7 @@ Class | Method | HTTP request | Description
191190
- [RaiDbSdk.Source](docs/Source.md)
192191
- [RaiDbSdk.StatusAction](docs/StatusAction.md)
193192
- [RaiDbSdk.StatusActionResult](docs/StatusActionResult.md)
193+
- [RaiDbSdk.StorageProblem](docs/StorageProblem.md)
194194
- [RaiDbSdk.SyntaxError](docs/SyntaxError.md)
195195
- [RaiDbSdk.SyntaxNode](docs/SyntaxNode.md)
196196
- [RaiDbSdk.Token](docs/Token.md)

client/docs/StorageProblem.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# RaiDbSdk.StorageProblem
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**exception** | **String** | | [default to '']
8+
9+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Delve Client SDK
33
* This is a Client SDK for Delve API
44
*
5-
* The version of the OpenAPI document: 1.0.9
5+
* The version of the OpenAPI document: 1.0.12
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@ import AbstractProblem from './AbstractProblem';
1717
/**
1818
* The StorageProblem model module.
1919
* @module model/StorageProblem
20-
* @version 1.0.9
20+
* @version 1.0.12
2121
*/
2222
class StorageProblem {
2323
/**
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Delve Client SDK
33
* This is a Client SDK for Delve API
44
*
5-
* The version of the OpenAPI document: 1.0.9
5+
* The version of the OpenAPI document: 1.0.12
66
* Contact: support@relational.ai
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -20,15 +20,15 @@
2020
factory(require('expect.js'), require(process.cwd()+'/src/index'));
2121
} else {
2222
// Browser globals (root is window)
23-
factory(root.expect, root.DelveClientSdk);
23+
factory(root.expect, root.RaiDbSdk);
2424
}
25-
}(this, function(expect, DelveClientSdk) {
25+
}(this, function(expect, RaiDbSdk) {
2626
'use strict';
2727

2828
var instance;
2929

3030
beforeEach(function() {
31-
instance = new DelveClientSdk.StorageProblem();
31+
instance = new RaiDbSdk.StorageProblem();
3232
});
3333

3434
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
5050
describe('StorageProblem', function() {
5151
it('should create an instance of StorageProblem', function() {
5252
// uncomment below and update the code to test StorageProblem
53-
//var instane = new DelveClientSdk.StorageProblem();
54-
//expect(instance).to.be.a(DelveClientSdk.StorageProblem);
53+
//var instane = new RaiDbSdk.StorageProblem();
54+
//expect(instance).to.be.a(RaiDbSdk.StorageProblem);
5555
});
5656

5757
it('should have the property exception (base name: "exception")', function() {
5858
// uncomment below and update the code to test the property exception
59-
//var instane = new DelveClientSdk.StorageProblem();
59+
//var instane = new RaiDbSdk.StorageProblem();
6060
//expect(instance).to.be();
6161
});
6262

0 commit comments

Comments
 (0)