Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
b34fae5
support get without a login
milleniumfrog May 4, 2018
1d3df6f
ts setup, removed docs
milleniumfrog May 4, 2018
9d4428e
v0.3.0
milleniumfrog May 4, 2018
0758b67
build
milleniumfrog May 4, 2018
3880a63
Merge branch 'master' of https://github.com/LivingLogic/LivingApps.Ja…
milleniumfrog May 9, 2018
cb7326f
remove axios relative path
milleniumfrog May 9, 2018
0b3f302
added livingsdk.d.ts for cjs export
milleniumfrog May 9, 2018
d537e86
new dist structure
milleniumfrog May 11, 2018
cbe631b
fix main files
milleniumfrog May 11, 2018
bb303fc
get()
milleniumfrog May 11, 2018
d2134ae
hotfix
milleniumfrog May 11, 2018
d1ea05a
start testing env
milleniumfrog May 30, 2018
ac3161d
set config/tsconfig.umd.json as default tsconfig.json
milleniumfrog May 30, 2018
699d8f1
build
milleniumfrog May 30, 2018
d0920f2
ts: remove test outputs
milleniumfrog May 30, 2018
a35a9ac
hotfix templates as get parameters
milleniumfrog Jun 8, 2018
e7ac71b
removed dependecies
milleniumfrog Jun 8, 2018
7115443
changed tsconfig and rebuild
milleniumfrog Jun 8, 2018
12f2094
[test] wrong login data
milleniumfrog Jun 8, 2018
02cfc0e
.get() - testsuite added
milleniumfrog Jun 8, 2018
b7b075b
added missing semicolons
milleniumfrog Jun 8, 2018
154ba23
[test] ._insert()
milleniumfrog Jun 8, 2018
98beb8f
[test] insert after changing session
milleniumfrog Jun 8, 2018
19d73ef
[test] ._update(), ._delete()
milleniumfrog Jun 8, 2018
026062e
rebuild
milleniumfrog Jun 8, 2018
2a586d5
test - type update
milleniumfrog Jun 20, 2018
17ed1fb
- start to test on beta server
milleniumfrog Jun 27, 2018
a3679db
change pc
milleniumfrog Jul 27, 2018
4416e91
test update
Jul 31, 2018
7435ed1
removed unused variables
Aug 1, 2018
4d98715
merge ts and master
Aug 1, 2018
c211d12
removed debugger
milleniumfrog Aug 2, 2018
7da5c43
build
milleniumfrog Aug 2, 2018
7e85ad4
backwardcompatability removed
milleniumfrog Aug 8, 2018
bf29b49
build
milleniumfrog Aug 8, 2018
5c00418
hotfix, removed ul4onloads and d.ts file content
milleniumfrog Aug 8, 2018
6373288
build
milleniumfrog Aug 8, 2018
c51e487
added control attributes
milleniumfrog Aug 8, 2018
e132d26
ts - es2015 build pipeline like ul4 ts build pipeline
milleniumfrog Sep 5, 2018
a4a0e5f
unit testing with karma and mocha
milleniumfrog Sep 5, 2018
06f51f2
run build
milleniumfrog Sep 5, 2018
4c78e31
basic setup
milleniumfrog May 6, 2019
8c68d01
change proto typed based ul4 to class based ul4
milleniumfrog May 6, 2019
14fac6a
add asjson
milleniumfrog May 6, 2019
9cdcc96
build
milleniumfrog May 6, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
node_modules
test/config.js
package-lock.json
Archiv.zip
node.js
**/old_*
.vscode
**/config.ts
**/*.test.js*
**/*.test.d.ts
**/config.ts
**/config.js
**/config.d.ts
**/config.js.map
dist/test/
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
25 changes: 0 additions & 25 deletions client_testing/index.html

This file was deleted.

26 changes: 26 additions & 0 deletions dist/es2015/livingsdk.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { AxiosResponse } from 'axios';
export declare type Auth_Token = string;
export declare type LivingApi = any;
export declare type LAPIRecord = any;
export interface LivingSDKOptions {
url?: string;
loginRequired?: boolean;
}
export declare class LivingSDK {
private _password;
private _userName;
private _options;
private hostName;
private session;
constructor(options?: LivingSDKOptions, username?: string, password?: string);
login(): Promise<Auth_Token | undefined>;
get(appId: string, templateName?: string): Promise<LivingApi>;
_insert(app: any, values: any): Promise<LAPIRecord>;
_update(record: LAPIRecord, values: any): Promise<{
HTTPstatusCode: number;
recordid: any;
Record: any;
}>;
_delete(record: LAPIRecord): Promise<AxiosResponse<any>>;
}
export default LivingSDK;
150 changes: 150 additions & 0 deletions dist/es2015/livingsdk.js

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

1 change: 1 addition & 0 deletions dist/es2015/livingsdk.js.map

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

Loading