@ptkl/sdk 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +23 -4
- package/dist/index.esm.js +16 -4
- package/dist/index.iife.js +24 -5
- package/dist/package.json +1 -1
- package/dist/types/api/component.d.ts +14 -13
- package/dist/types/api/integrations/dms.d.ts +17 -0
- package/dist/types/api/integrations.d.ts +2 -1
- package/dist/types/api/users.d.ts +1 -0
- package/dist/types/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -17977,6 +17977,17 @@ class Users extends PlatformBaseClient {
|
|
|
17977
17977
|
async permissions() {
|
|
17978
17978
|
return await this.client.delete(`/v1/user/role/permissions`);
|
|
17979
17979
|
}
|
|
17980
|
+
async auth(username, password, project) {
|
|
17981
|
+
return await this.client.post("/v1/user/login", {
|
|
17982
|
+
username,
|
|
17983
|
+
password,
|
|
17984
|
+
response_type: "token",
|
|
17985
|
+
}, {
|
|
17986
|
+
headers: {
|
|
17987
|
+
"X-Project-Uuid": project,
|
|
17988
|
+
}
|
|
17989
|
+
});
|
|
17990
|
+
}
|
|
17980
17991
|
}
|
|
17981
17992
|
|
|
17982
17993
|
class Apps extends PlatformBaseClient {
|
|
@@ -18091,9 +18102,10 @@ class Component extends PlatformBaseClient {
|
|
|
18091
18102
|
* })
|
|
18092
18103
|
**/
|
|
18093
18104
|
async findOne(filter, opts) {
|
|
18094
|
-
const {
|
|
18105
|
+
const { data } = await this.find({
|
|
18095
18106
|
$adv: filter
|
|
18096
18107
|
}, opts);
|
|
18108
|
+
const { items } = data || {};
|
|
18097
18109
|
if (items && items.length > 0) {
|
|
18098
18110
|
return items[0];
|
|
18099
18111
|
}
|
|
@@ -18426,7 +18438,7 @@ class IntegrationsBaseClient extends BaseClient {
|
|
|
18426
18438
|
}
|
|
18427
18439
|
}
|
|
18428
18440
|
|
|
18429
|
-
class
|
|
18441
|
+
class DMS extends IntegrationsBaseClient {
|
|
18430
18442
|
async list(data) {
|
|
18431
18443
|
return this.request('POST', 'media/list', { data });
|
|
18432
18444
|
}
|
|
@@ -18597,7 +18609,7 @@ class Integrations extends IntegrationsBaseClient {
|
|
|
18597
18609
|
this.integrations = {
|
|
18598
18610
|
'protokol-invoicing': new Invoicing().setClient(this.client),
|
|
18599
18611
|
'protokol-vpfr': new VPFR().setClient(this.client),
|
|
18600
|
-
'protokol-media': new
|
|
18612
|
+
'protokol-media': new DMS().setClient(this.client),
|
|
18601
18613
|
'serbia-utilities': new SerbiaUtil().setClient(this.client),
|
|
18602
18614
|
'protokol-payments': new Payments().setClient(this.client),
|
|
18603
18615
|
};
|
|
@@ -18635,13 +18647,20 @@ exports.APIUser = APIUser;
|
|
|
18635
18647
|
exports.Apps = Apps;
|
|
18636
18648
|
exports.Component = Component;
|
|
18637
18649
|
exports.ComponentUtils = ComponentUtils;
|
|
18650
|
+
exports.Forge = Forge;
|
|
18638
18651
|
exports.Functions = Functions;
|
|
18639
18652
|
exports.Integration = Integrations;
|
|
18653
|
+
exports.Integrations = Integrations;
|
|
18654
|
+
exports.Invoicing = Invoicing;
|
|
18655
|
+
exports.Media = DMS;
|
|
18656
|
+
exports.Payments = Payments;
|
|
18640
18657
|
exports.Ratchet = Ratchet;
|
|
18641
18658
|
exports.Roles = Roles;
|
|
18642
18659
|
exports.Sandbox = Sandbox;
|
|
18660
|
+
exports.SerbiaUtil = SerbiaUtil;
|
|
18643
18661
|
exports.System = System;
|
|
18644
18662
|
exports.Thunder = Thunder;
|
|
18645
|
-
exports.
|
|
18663
|
+
exports.User = Users;
|
|
18664
|
+
exports.VPFR = VPFR;
|
|
18646
18665
|
exports.Workflow = Workflow;
|
|
18647
18666
|
exports.default = Platform;
|
package/dist/index.esm.js
CHANGED
|
@@ -167,6 +167,17 @@ class Users extends PlatformBaseClient {
|
|
|
167
167
|
async permissions() {
|
|
168
168
|
return await this.client.delete(`/v1/user/role/permissions`);
|
|
169
169
|
}
|
|
170
|
+
async auth(username, password, project) {
|
|
171
|
+
return await this.client.post("/v1/user/login", {
|
|
172
|
+
username,
|
|
173
|
+
password,
|
|
174
|
+
response_type: "token",
|
|
175
|
+
}, {
|
|
176
|
+
headers: {
|
|
177
|
+
"X-Project-Uuid": project,
|
|
178
|
+
}
|
|
179
|
+
});
|
|
180
|
+
}
|
|
170
181
|
}
|
|
171
182
|
|
|
172
183
|
class Apps extends PlatformBaseClient {
|
|
@@ -281,9 +292,10 @@ class Component extends PlatformBaseClient {
|
|
|
281
292
|
* })
|
|
282
293
|
**/
|
|
283
294
|
async findOne(filter, opts) {
|
|
284
|
-
const {
|
|
295
|
+
const { data } = await this.find({
|
|
285
296
|
$adv: filter
|
|
286
297
|
}, opts);
|
|
298
|
+
const { items } = data || {};
|
|
287
299
|
if (items && items.length > 0) {
|
|
288
300
|
return items[0];
|
|
289
301
|
}
|
|
@@ -616,7 +628,7 @@ class IntegrationsBaseClient extends BaseClient {
|
|
|
616
628
|
}
|
|
617
629
|
}
|
|
618
630
|
|
|
619
|
-
class
|
|
631
|
+
class DMS extends IntegrationsBaseClient {
|
|
620
632
|
async list(data) {
|
|
621
633
|
return this.request('POST', 'media/list', { data });
|
|
622
634
|
}
|
|
@@ -787,7 +799,7 @@ class Integrations extends IntegrationsBaseClient {
|
|
|
787
799
|
this.integrations = {
|
|
788
800
|
'protokol-invoicing': new Invoicing().setClient(this.client),
|
|
789
801
|
'protokol-vpfr': new VPFR().setClient(this.client),
|
|
790
|
-
'protokol-media': new
|
|
802
|
+
'protokol-media': new DMS().setClient(this.client),
|
|
791
803
|
'serbia-utilities': new SerbiaUtil().setClient(this.client),
|
|
792
804
|
'protokol-payments': new Payments().setClient(this.client),
|
|
793
805
|
};
|
|
@@ -821,4 +833,4 @@ class Integrations extends IntegrationsBaseClient {
|
|
|
821
833
|
}
|
|
822
834
|
}
|
|
823
835
|
|
|
824
|
-
export { APIUser, Apps, Component, ComponentUtils, Functions, Integrations as Integration, Ratchet, Roles, Sandbox, System, Thunder, Users, Workflow, Platform as default };
|
|
836
|
+
export { APIUser, Apps, Component, ComponentUtils, Forge, Functions, Integrations as Integration, Integrations, Invoicing, DMS as Media, Payments, Ratchet, Roles, Sandbox, SerbiaUtil, System, Thunder, Users as User, VPFR, Workflow, Platform as default };
|
package/dist/index.iife.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var ProtokolSDK09 = (function (exports, axios) {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
class BaseClient {
|
|
@@ -168,6 +168,17 @@ var ProtokolSDK = (function (exports, axios) {
|
|
|
168
168
|
async permissions() {
|
|
169
169
|
return await this.client.delete(`/v1/user/role/permissions`);
|
|
170
170
|
}
|
|
171
|
+
async auth(username, password, project) {
|
|
172
|
+
return await this.client.post("/v1/user/login", {
|
|
173
|
+
username,
|
|
174
|
+
password,
|
|
175
|
+
response_type: "token",
|
|
176
|
+
}, {
|
|
177
|
+
headers: {
|
|
178
|
+
"X-Project-Uuid": project,
|
|
179
|
+
}
|
|
180
|
+
});
|
|
181
|
+
}
|
|
171
182
|
}
|
|
172
183
|
|
|
173
184
|
class Apps extends PlatformBaseClient {
|
|
@@ -282,9 +293,10 @@ var ProtokolSDK = (function (exports, axios) {
|
|
|
282
293
|
* })
|
|
283
294
|
**/
|
|
284
295
|
async findOne(filter, opts) {
|
|
285
|
-
const {
|
|
296
|
+
const { data } = await this.find({
|
|
286
297
|
$adv: filter
|
|
287
298
|
}, opts);
|
|
299
|
+
const { items } = data || {};
|
|
288
300
|
if (items && items.length > 0) {
|
|
289
301
|
return items[0];
|
|
290
302
|
}
|
|
@@ -617,7 +629,7 @@ var ProtokolSDK = (function (exports, axios) {
|
|
|
617
629
|
}
|
|
618
630
|
}
|
|
619
631
|
|
|
620
|
-
class
|
|
632
|
+
class DMS extends IntegrationsBaseClient {
|
|
621
633
|
async list(data) {
|
|
622
634
|
return this.request('POST', 'media/list', { data });
|
|
623
635
|
}
|
|
@@ -788,7 +800,7 @@ var ProtokolSDK = (function (exports, axios) {
|
|
|
788
800
|
this.integrations = {
|
|
789
801
|
'protokol-invoicing': new Invoicing().setClient(this.client),
|
|
790
802
|
'protokol-vpfr': new VPFR().setClient(this.client),
|
|
791
|
-
'protokol-media': new
|
|
803
|
+
'protokol-media': new DMS().setClient(this.client),
|
|
792
804
|
'serbia-utilities': new SerbiaUtil().setClient(this.client),
|
|
793
805
|
'protokol-payments': new Payments().setClient(this.client),
|
|
794
806
|
};
|
|
@@ -826,14 +838,21 @@ var ProtokolSDK = (function (exports, axios) {
|
|
|
826
838
|
exports.Apps = Apps;
|
|
827
839
|
exports.Component = Component;
|
|
828
840
|
exports.ComponentUtils = ComponentUtils;
|
|
841
|
+
exports.Forge = Forge;
|
|
829
842
|
exports.Functions = Functions;
|
|
830
843
|
exports.Integration = Integrations;
|
|
844
|
+
exports.Integrations = Integrations;
|
|
845
|
+
exports.Invoicing = Invoicing;
|
|
846
|
+
exports.Media = DMS;
|
|
847
|
+
exports.Payments = Payments;
|
|
831
848
|
exports.Ratchet = Ratchet;
|
|
832
849
|
exports.Roles = Roles;
|
|
833
850
|
exports.Sandbox = Sandbox;
|
|
851
|
+
exports.SerbiaUtil = SerbiaUtil;
|
|
834
852
|
exports.System = System;
|
|
835
853
|
exports.Thunder = Thunder;
|
|
836
|
-
exports.
|
|
854
|
+
exports.User = Users;
|
|
855
|
+
exports.VPFR = VPFR;
|
|
837
856
|
exports.Workflow = Workflow;
|
|
838
857
|
exports.default = Platform;
|
|
839
858
|
|
package/dist/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FindParams, FindOptions, FindResponse, FindAdvancedParams, FindAggregateParams, Model, UpdateOptions, ModifyOptions } from "src/types/component";
|
|
2
2
|
import PlatformBaseClient from "./platformBaseClient";
|
|
3
|
+
import { AxiosResponse } from "axios";
|
|
3
4
|
export default class Component extends PlatformBaseClient {
|
|
4
5
|
private ref;
|
|
5
6
|
constructor(ref?: string | null);
|
|
@@ -24,7 +25,7 @@ export default class Component extends PlatformBaseClient {
|
|
|
24
25
|
* }
|
|
25
26
|
* )
|
|
26
27
|
**/
|
|
27
|
-
find(filters: FindParams, opts?: FindOptions): Promise<FindResponse
|
|
28
|
+
find(filters: FindParams, opts?: FindOptions): Promise<AxiosResponse<FindResponse>>;
|
|
28
29
|
/**
|
|
29
30
|
* FindOne method to search for a single model
|
|
30
31
|
*
|
|
@@ -45,7 +46,7 @@ export default class Component extends PlatformBaseClient {
|
|
|
45
46
|
* @param uuid string - The uuid of the model
|
|
46
47
|
* @returns (Promise<Model>)
|
|
47
48
|
*/
|
|
48
|
-
get(uuid: string): Promise<Model
|
|
49
|
+
get(uuid: string): Promise<AxiosResponse<Model>>;
|
|
49
50
|
/**
|
|
50
51
|
* Update model by uuid
|
|
51
52
|
*
|
|
@@ -53,7 +54,7 @@ export default class Component extends PlatformBaseClient {
|
|
|
53
54
|
* @param data
|
|
54
55
|
* @returns
|
|
55
56
|
*/
|
|
56
|
-
update(uuid: string, data: Record<string, any>, options: UpdateOptions): Promise<
|
|
57
|
+
update(uuid: string, data: Record<string, any>, options: UpdateOptions): Promise<AxiosResponse<any, any>>;
|
|
57
58
|
/**
|
|
58
59
|
* Update many models
|
|
59
60
|
*
|
|
@@ -61,7 +62,7 @@ export default class Component extends PlatformBaseClient {
|
|
|
61
62
|
* @param options
|
|
62
63
|
* @returns
|
|
63
64
|
*/
|
|
64
|
-
updateMany(data: Record<string, any>[], options: UpdateOptions): Promise<
|
|
65
|
+
updateMany(data: Record<string, any>[], options: UpdateOptions): Promise<AxiosResponse<any, any>>;
|
|
65
66
|
/**
|
|
66
67
|
* Modify models by filters
|
|
67
68
|
*
|
|
@@ -69,7 +70,7 @@ export default class Component extends PlatformBaseClient {
|
|
|
69
70
|
* @param options
|
|
70
71
|
* @returns
|
|
71
72
|
*/
|
|
72
|
-
modify(filters: Record<string, any>, data: Record<string, any>, options: ModifyOptions): Promise<
|
|
73
|
+
modify(filters: Record<string, any>, data: Record<string, any>, options: ModifyOptions): Promise<AxiosResponse<any, any>>;
|
|
73
74
|
/**
|
|
74
75
|
* Concurrent update model by uuid
|
|
75
76
|
*
|
|
@@ -78,14 +79,14 @@ export default class Component extends PlatformBaseClient {
|
|
|
78
79
|
* @param data
|
|
79
80
|
* @returns
|
|
80
81
|
*/
|
|
81
|
-
concurrentUpdate(uuid: string, version: number, data: Record<string, any>, options: UpdateOptions): Promise<
|
|
82
|
-
create(model: Record<string, any>): Promise<
|
|
83
|
-
delete(uuid: string): Promise<
|
|
84
|
-
aggregate(pipeline: FindAggregateParams): Promise<
|
|
85
|
-
settings(): Promise<
|
|
86
|
-
saveSettings(settings: any, version: string): Promise<
|
|
82
|
+
concurrentUpdate(uuid: string, version: number, data: Record<string, any>, options: UpdateOptions): Promise<AxiosResponse<any, any>>;
|
|
83
|
+
create(model: Record<string, any>): Promise<AxiosResponse<any, any>>;
|
|
84
|
+
delete(uuid: string): Promise<AxiosResponse<any, any>>;
|
|
85
|
+
aggregate(pipeline: FindAggregateParams): Promise<AxiosResponse<any, any>>;
|
|
86
|
+
settings(): Promise<AxiosResponse<any, any>>;
|
|
87
|
+
saveSettings(settings: any, version: string): Promise<AxiosResponse<any, any>>;
|
|
87
88
|
saveTemplatesDist(version: string, sdkVersion: string, engine: string, dist: Record<string, string>): Promise<any>;
|
|
88
|
-
workflow(event: string, input: any): Promise<
|
|
89
|
-
function(name: string, input: any): Promise<
|
|
89
|
+
workflow(event: string, input: any): Promise<AxiosResponse<any, any>>;
|
|
90
|
+
function(name: string, input: any): Promise<AxiosResponse<any, any>>;
|
|
90
91
|
}
|
|
91
92
|
export { FindParams, FindOptions, FindResponse, FindAdvancedParams, FindAggregateParams, Model, UpdateOptions, };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import IntegrationsBaseClient from "../integrationsBaseClient";
|
|
2
|
+
export default class DMS extends IntegrationsBaseClient {
|
|
3
|
+
list(data: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
4
|
+
libraries(): Promise<import("axios").AxiosResponse<any, any>>;
|
|
5
|
+
upload(payload: any): Promise<import("axios").AxiosResponse<any, any> | undefined>;
|
|
6
|
+
delete(data: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
7
|
+
uploadBase64(data: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
8
|
+
getMedia(lib: string, key: string, encoding: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
9
|
+
download(lib: string, key: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
10
|
+
getExifData(lib: string, key: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
11
|
+
html2pdf(lib: string, data: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
12
|
+
createDir(lib: string, path: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
13
|
+
deleteDir(lib: string, path: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
14
|
+
dirs(lib: string, data: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
15
|
+
request(method: string, endpoint: string, params?: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
16
|
+
requestv1(method: string, endpoint: string, params?: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
17
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import IntegrationsBaseClient from "./integrationsBaseClient";
|
|
2
|
+
import Payments from "./integrations/payments";
|
|
2
3
|
export default class Integrations extends IntegrationsBaseClient {
|
|
3
4
|
private integrations;
|
|
4
5
|
constructor(options?: {
|
|
@@ -10,7 +11,7 @@ export default class Integrations extends IntegrationsBaseClient {
|
|
|
10
11
|
getDMS(): any;
|
|
11
12
|
getVPFR(): any;
|
|
12
13
|
getInvoicing(): any;
|
|
13
|
-
getPayments():
|
|
14
|
+
getPayments(): Payments;
|
|
14
15
|
isInstalled(id: string): Promise<boolean>;
|
|
15
16
|
getInterfaceOf(id: string): any;
|
|
16
17
|
}
|
|
@@ -3,4 +3,5 @@ export default class Users extends PlatformBaseClient {
|
|
|
3
3
|
invite(email: string, roles: string[]): Promise<import("axios").AxiosResponse<any, any>>;
|
|
4
4
|
delete(uuid: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
5
5
|
permissions(): Promise<import("axios").AxiosResponse<any, any>>;
|
|
6
|
+
auth(username: string, password: string, project: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
6
7
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export { default as Integration } from './api/integrations';
|
|
|
4
4
|
export { default as Ratchet } from './api/ratchet';
|
|
5
5
|
export { default as Sandbox } from './api/sandbox';
|
|
6
6
|
export { default as System } from './api/system';
|
|
7
|
-
export { default as
|
|
7
|
+
export { default as User } from './api/users';
|
|
8
8
|
export { default as Functions } from './api/functions';
|
|
9
9
|
export { default as APIUser } from './api/apiUser';
|
|
10
10
|
export { default as Roles } from './api/roles';
|
|
@@ -12,4 +12,13 @@ export { default as Apps } from './api/apps';
|
|
|
12
12
|
export { default as Workflow } from './api/workflow';
|
|
13
13
|
export { default as ComponentUtils } from './api/componentUtils';
|
|
14
14
|
export { default as Thunder } from './api/thunder';
|
|
15
|
+
export { default as Forge } from './api/forge';
|
|
16
|
+
export { default as Integrations } from './api/integrations';
|
|
17
|
+
export { default as Payments } from './api/integrations/payments';
|
|
18
|
+
export { default as Invoicing } from './api/integrations/invoicing';
|
|
19
|
+
export { default as Media } from './api/integrations/dms';
|
|
20
|
+
export { default as SerbiaUtil } from './api/integrations/serbiaUtil';
|
|
21
|
+
export { default as VPFR } from './api/integrations/vpfr';
|
|
22
|
+
export type * from './types/component';
|
|
23
|
+
export type * from './types/integrations';
|
|
15
24
|
export default Platform;
|